diff --git a/parse/train/-TwO99rbVRu/-TwO99rbVRu.md b/parse/train/-TwO99rbVRu/-TwO99rbVRu.md new file mode 100644 index 0000000000000000000000000000000000000000..15ee7cf6ba04deb63baf4dc268897589b2604495 --- /dev/null +++ b/parse/train/-TwO99rbVRu/-TwO99rbVRu.md @@ -0,0 +1,331 @@ +# PSEUDOSEG: DESIGNING PSEUDO LABELS FOR SEMANTIC SEGMENTATION + +Yuliang $\mathbf { Z o u } ^ { 1 * }$ Zizhao Zhang2 Han Zhang3 Chun-Liang Li2 Xiao Bian2 Jia-Bin Huang1 Tomas Pfister2 1Virginia Tech 2Google Cloud AI 3Google Brain + +# ABSTRACT + +Recent advances in semi-supervised learning (SSL) demonstrate that a combination of consistency regularization and pseudo-labeling can effectively improve image classification accuracy in the low-data regime. Compared to classification, semantic segmentation tasks require much more intensive labeling costs. Thus, these tasks greatly benefit from data-efficient training methods. However, structured outputs in segmentation render particular difficulties (e.g., designing pseudo-labeling and augmentation) to apply existing SSL strategies. To address this problem, we present a simple and novel re-design of pseudo-labeling to generate well-calibrated structured pseudo labels for training with unlabeled or weaklylabeled data. Our proposed pseudo-labeling strategy is network structure agnostic to apply in a one-stage consistency training framework. We demonstrate the effectiveness of the proposed pseudo-labeling strategy in both low-data and highdata regimes. Extensive experiments have validated that pseudo labels generated from wisely fusing diverse sources and strong data augmentation are crucial to consistency training for semantic segmentation. The source code is available at https://github.com/googleinterns/wss. + +# 1 INTRODUCTION + +Image semantic segmentation is a core computer vision task that has been studied for decades. Compared with other vision tasks, such as image classification and object detection, human annotation of pixel-accurate segmentation is dramatically more expensive. Given sufficient pixellevel labeled training data (i.e., high-data regime), the current state-of-the-art segmentation models (e.g., DeepLabv $^ { 3 + }$ (Chen et al., 2018)) produce satisfactory segmentation prediction for common practical usage. Recent exploration demonstrates improvement over high-data regime settings with large-scale data, including self-training (Chen et al., 2020a; Zoph et al., 2020) and backbone pretraining (Zhang et al., 2020a). + +In contrast to the high-data regime, the performance of segmentation models drop significantly, given very limited pixel-labeled data (i.e., low-data regime). Such ineffectiveness at the low-data regime hinders the applicability of segmentation models. Therefore, instead of improving high-data regime segmentation, our work focuses on data-efficient segmentation training that only relies on few pixellabeled data and leverages the availability of extra unlabeled or weakly annotated (e.g., image-level) data to improve performance, with the aim of narrowing the gap to the supervised models trained with fully pixel-labeled data. + +Our work is inspired by the recent success in semi-supervised learning (SSL) for image classification, demonstrating promising performance given very limited labeled data and a sufficient amount of unlabeled data. Successful examples include MeanTeacher (Tarvainen & Valpola, 2017), UDA (Xie et al., 2019), MixMatch (Berthelot et al., 2019b), FeatMatch (Kuo et al., 2020), and FixMatch (Sohn et al., 2020a). One outstanding idea in this type of SSL is consistency training: making predictions consistent among multiple augmented images. FixMatch (Sohn et al., 2020a) shows that using high-confidence one-hot pseudo labels obtained from weakly-augmented unlabeled data to train strongly-augmented counterpart is the key to the success of SSL in image classification. + +However, effective pseudo labels and well-designed data augmentation are non-trivial to satisfy for semantic segmentation. Although we observe that many related works explore the second condition (i.e., augmentation) for image segmentation to enable consistency training framework (French et al., 2020; Ouali et al., 2020), we show that a wise design of pseudo labels for segmentation has great veiled potentials. + +In this paper, we propose PseudoSeg, a one-stage training framework to improve image semantic segmentation by leveraging additional data either with image-level labels (weakly-labeled data) or without any labels. PseudoSeg presents a novel design of pseudo-labeling to infer effective structured pseudo labels of additional data. It then optimizes the prediction of strongly-augmented data to match its corresponding pseudo labels. In summary, we make the following contributions: + +• We propose a simple one-stage framework to improve semantic segmentation by using a limited amount of pixel-labeled data and sufficient unlabeled data or image-level labeled data. Our framework is simple to apply and therefore network architecture agnostic. Directly applying consistency training approaches validated in image classification renders particular challenges in segmentation. We first demonstrate how well-calibrated soft pseudo labels obtained through wise fusion of predictions from diverse sources can greatly improve consistency training for segmentation. We conduct extensive experimental studies on the PASCAL VOC 2012 and COCO datasets. Comprehensive analyses are conducted to validate the effectiveness of this method at not only the low-data regime but also the high-data regime. Our experiments study multiple important open questions about transferring SSL advances to segmentation tasks. + +# 2 RELATED WORK + +Semi-supervised classification. Semi-supervised learning (SSL) aims to improve model performance by incorporating a large amount of unlabeled data during training. Consistency regularization and entropy minimization are two common strategies for SSL. The intuition behind consistencybased approaches (Laine & Aila, 2016; Sajjadi et al., 2016; Miyato et al., 2018; Tarvainen & Valpola, 2017) is that, the model output should remain unchanged when the input is perturbed. On the other hand, the entropy minimization strategy (Grandvalet & Bengio, 2005) argues that the unlabeled data can be used to ensured classes are well-separated, which can be achieved by encouraging the model to output low-entropy predictions. Pseudo-labeling (Lee, 2013) is one of the methods for implicit entropy minimization. Recently, holistic approaches (Berthelot et al., 2019b;a; Sohn et al., 2020a) combining both strategies have been proposed and achieved significant improvement. By redesigning the pseudo label, we propose an efficient one-stage semi-supervised learning framework of semantic segmentation for consistency training. + +Semi-supervised semantic segmentation. Collecting pixel-level annotations for semantic segmentation is costly and prone to error. Hence, leveraging unlabeled data in semantic segmentation is a natural fit. Early methods utilize a GAN-based model either to generate additional training data (Souly et al., 2017) or to learn a discriminator between the prediction and the ground truth mask (Hung et al., 2018; Mittal et al., 2019). Consistency regularization based approaches have also been proposed recently, by enforcing the predictions to be consistent, either from augmented input images (French et al., 2020; Kim et al., 2020), perturbed feature embeddings (Ouali et al., 2020), or different networks (Ke et al., 2020). Recently, Luo & Yang (2020) proposes a dual-branch training network to jointly learn from pixel-accurate and coarse labeled data, achieving good segmentation performance. To push the performance of state of the arts, iterative self-training approaches (Chen et al., 2020a; Zoph et al., 2020; Zhu et al., 2020) have been proposed. These methods usually assume the available labeled data is enough to train a good teacher model, which will be used to generate pseudo labels for the student model. However, this condition might not satisfy in the low-data regime. Our proposed method, on the other hand, realizing the ideas of both consistency regularization and pseudo-labeling in segmentation, consistently improves the supervised baseline in both low-data and high-data regimes. + +Weakly-supervised semantic segmentation. Instead of supervising network training with accurate pixel-level labels, many prior works exploit weaker forms of annotations (e.g., bounding boxes (Dai et al., 2015), scribbles (Lin et al., 2016), image-level labels). Most recent approaches use imagelevel labels as the supervisory signal, which exploits the idea of class activation map (CAM) (Zhou et al., 2016). Since the vanilla CAM only focus on the most discriminative region of objects, different ways to refine CAM have been proposed, including partial image/feature erasing (Hou et al., 2018; Wei et al., 2017; Li et al., 2018), using an additional saliency estimation model (Oh et al., 2017; Huang et al., 2018; Wei et al., 2018), utilizing pixel similarity to propagate the initial score map (Ahn & Kwak, 2018; Wang et al., 2020), or mining and co-segment the same category of objects across images (Sun et al., 2020; Zhang et al., 2020b). While achieving promising results using the approaches mentioned above, most of them require a multi-stage training strategy. The refined score maps are optimized again using a dense-CRF model (Krahenb ¨ uhl & Koltun ¨ , 2011), and then used as the target to train a separate segmentation network. On the other hand, we assume there exists a small number of fully-annotated data, which allows us to learn stronger segmentation models than general methods without needing pixel-labeled data. + +![](images/55439202eaf26b71f27a6328f988f0027a61cd98c089773b1b8032b98ac5ec58.jpg) +Figure 1: Overview of unlabeled data training branch. Given an image, the weakly augmented version is fed into the network to get the decoder prediction and Self-attention Grad-CAM (SGC). The two sources are then combined via a calibrated fusion strategy to form the pseudo label. The network is trained to make its decoder prediction from strongly augmented image to match the pseudo label by a per-pixel cross-entropy loss. + +# 3 THE PROPOSED METHOD + +In analogous to SSL for classification, our training objective in PseudoSeg consists of a supervised loss $\mathcal { L } _ { \mathrm { s } }$ applied to pixel-level labeled data $\mathcal { D } _ { l }$ , and a consistency constraint $\mathcal { L } _ { \mathrm { u } }$ applied to unlabeled data $\mathcal { D } _ { u }$ 1. Specifically, the supervised loss $\mathcal { L } _ { \mathrm { s } }$ is the standard pixel-wise cross-entropy loss on the weakly augmented pixel-level labeled examples: + +$$ +\mathcal { L } _ { \mathrm { s } } = \frac { 1 } { N \times | \mathcal { D } _ { l } | } \sum _ { x \in \mathcal { D } _ { l } } \sum _ { i = 0 } ^ { N - 1 } \mathrm { C r o s s E n t r o p y } \left( y _ { i } , f _ { \theta } ( \omega ( x _ { i } ) ) \right) , +$$ + +where $\theta$ represents the learnable parameters of the network function $f$ and $N$ denotes the number of valid labeled pixels in an image $\boldsymbol { x } \in \mathbb { R } ^ { H \times W \times 3 }$ . $y _ { i } \in \mathbb { R } ^ { C }$ is the ground truth label of a pixel $i$ in $H \times W$ dimensions, and $f _ { \theta } ( \omega ( x _ { i } ) ) \in \mathbb { R } ^ { C }$ is the predicted probability of pixel $i$ , where $C$ is the number of classes to predict and $\omega ( \cdot )$ denotes the weak (common) data augmentation operations used by Chen et al. (2018). + +During training, the proposed PseudoSeg estimates a pseudo label $\widetilde { y } \in \mathbb { R } ^ { H \times W \times C }$ for each stronglyaugmented unlabeled data $x$ in $\mathcal { D } _ { u }$ e, which is then used for computing the cross-entropy loss. The unsupervised objective can then be written as: + +$$ +\mathcal { L } _ { \sf u } = \frac { 1 } { N \times | \mathcal { D } _ { u } | } \sum _ { x \in \mathcal { D } _ { u } } \sum _ { i = 0 } ^ { N - 1 } \mathrm { C r o s s E n t r o p y } \left( \widetilde { y } _ { i } , f _ { \theta } ( \beta \circ \omega ( x _ { i } ) ) \right) , +$$ + +where $\beta ( \cdot )$ denotes a stronger data augmentation operation, which will be described in Section 3.2. +We illustrate the unlabeled data training branch in Figure 1. + +# 3.1 THE DESIGN OF STRUCTURED PSEUDO LABELS + +The next important question is how to generate the desirable pseudo label $\widetilde { y }$ . A straightforward soluetion is directly using the decoder output of a trained segmentation model after confidence thresholding, as suggested by Sohn et al. (2020a); Zoph et al. (2020); Xie et al. (2020); Sohn et al. (2020b). However, as we demonstrate later in the experiments, the generated pseudo hard/soft labels as well as other post-processing of outputs are barely satisfactory in the low-data regime, and thus yield inferior final results. To address this issue, our design of pseudo-labeling has two key insights. First, we seek for a distinct yet efficient decision mechanisms to compensate for the potential errors of decoder outputs. Second, wisely fusing multiple sources of predictions to generate an ensemble and better-calibrated version of pseudo labels. + +Starting with localization. Compared with precise segmentation, learning localization is a simpler task as it only needs to provide coarser-grained outputs than pixel level of objects in images. Based on this motivation, we improve decoder predictions from the localization perspective. Class activation map (CAM) (Zhou et al., 2016) is a popular approach to provide localization for class-specific regions. CAM-based methods (Hou et al., 2018; Wei et al., 2017; Ahn & Kwak, 2018) have been successfully adopted to tackle a different weakly supervised semantic segmentation task from us, where they assume only image-level labels are available. In practice, we adopt a variant of class activation map, Grad-CAM (Selvaraju et al., 2017) in PseudoSeg. + +From localization to segmentation. CAM estimates the strength of classifier responses on local feature maps. Thus, an inherent limitation of CAM-based approaches is that it is prone to attending only to the most discriminative regions. Although many weakly-supervised segmentation approaches (Ahn & Kwak, 2018; Ahn et al., 2019; Sun et al., 2020) aim at refining CAM localization maps to segmentation masks, most of them have complicated post-processing steps, such as dense CRF (Krahenb ¨ uhl & Koltun ¨ , 2011), which increases the model complexity when used for consistency training. Here we present a computationally efficient yet effective refinement alternative, which is learnable using available pixel-labeled data. + +Although CAM only localizes partial regions of interests, if we know the pairwise similarities between regions, we can propagate the CAM scores from the discriminative regions to the rest unattended regions. Actually, it has been shown in many works that the learned high-level deep features are usually good at similarity measurements of visual objects. In this paper, we find hypercolumn (Hariharan et al., 2015) with a learnable similarity measure function works fairly effective. + +Given the vanilla Grad-CAM output for all $C$ classes, which can be viewed as a spatially-flatten 2-D vector of weight $m \in \mathbb { R } ^ { L \times C }$ , where each row $m _ { i }$ is the response weight per class for one region $i$ . Using a kernel function $\mathcal { K } ( \cdot , \cdot ) : \mathbb { R } ^ { H } \times \mathbb { R } ^ { H } \mathbb { R }$ that measures element-wise similarity given feature $h \in { \bar { \mathbb { R } } } ^ { H }$ of two regions, the propagated score $\hat { m } _ { i } \in \mathbb { R } ^ { C }$ can be computed as follows + +$$ +\hat { m } _ { i } = \left( m _ { i } + \sum _ { j = 0 } ^ { L - 1 } \frac { e ^ { K ( W _ { k } h _ { i } , W _ { v } h _ { j } ) } } { \sum _ { k = 0 } ^ { L - 1 } e ^ { K ( W _ { k } h _ { i } , W _ { v } h _ { k } ) } } m _ { j } \right) \cdot W _ { c } . +$$ + +The goal of this function is to train $\Theta = \{ W _ { k } , W _ { v } \in \mathbb { R } ^ { H \times H } , W _ { c } \in \mathbb { R } ^ { C \times C } \}$ in order to propagate the high value in $m$ to all adjacent elements in the feature space $\mathbb { R } ^ { H }$ (i.e., hypercolumn features) to region $i$ . Adding $m _ { i }$ in equation 3 indicates the skip-connection. To compute propagated score for all regions, the operations in equation 3 can be efficiently implemented with self-attention dotproduct (Vaswani et al., 2017). For brevity, we denote this efficient refinement process output as selfattention Grad-CAM (SGC) maps in $\mathbb { R } ^ { H \times H \times C }$ . Figure 6 in Appendix A specifies the architecture. + +Calibrated prediction fusion. SGC maps are obtained from low-resolution feature maps. It is then resized to the desired output resolution, and thus not sufficient at delineating crisp boundaries. However, compared to the segmentation decoder, SGC is capable of generating more locally-consistent masks. Thus, we propose a novel calibrated fusion strategy to take advantage of both decoder and SCG predictions for better pseudo labels. + +Specifically, given a batch of decoder outputs (pre-softmax logits) $\hat { p } = f _ { \theta } ( \omega ( x ) )$ and SGC maps $\hat { m }$ computed from weakly-augmented data $\omega ( x )$ , we generate the pseudo labels $\widetilde { y }$ by + +$$ +\mathcal { F } ( \hat { p } , \hat { m } ) = \mathrm { S h a r p e n } \left( \gamma \operatorname { S o f t m a x } \left( \frac { \hat { p } } { \operatorname { N o r m } ( \hat { p } , \hat { m } ) } \right) + ( 1 - \gamma ) \operatorname { S o f t m a x } \left( \frac { \hat { m } } { \operatorname { N o r m } ( \hat { p } , \hat { m } ) } \right) , T \right) . +$$ + +Two critical procedures are proposed to use here to make the fusion process successful. First, $\hat { p }$ and $\hat { m }$ are from different decision mechanisms and they could have very different degrees of overconfidence. Therefore, we introduce the operation $\begin{array} { r } { \mathrm { N o r m } ( a , b ) = \sqrt { \sum _ { i } ^ { | a | } ( a _ { i } ^ { 2 } + b _ { i } ^ { 2 } ) } } \end{array}$ as a normalization factor. It alleviates the over-confident probability after softmax, which could unfavorably dominate the resulted $\gamma$ -averaged probability. Second, the distribution sharpening operation Sharpen $\begin{array} { r } { ( a , T ) _ { i } ~ = ~ a _ { i } ^ { 1 / T } / \sum _ { j } ^ { C } a _ { j } ^ { 1 / T } } \end{array}$ adjusts the temperature scalar $T$ of categorical distribution (Berthelot et al., 2019b; Chen et al., 2020b). Figure 2 illustrates the predictions from different sources. More importantly, we investigate the pseudo-labeling from a calibration perspective (Section 4.3), demonstrating that the proposed soft pseudo label $\widetilde { y }$ leads to a better calibration metric comparing to other possible fusion alternatives, and justifying why it benefits the final segmentation performance. + +![](images/da24262064ec7dc7f8d685b2d6566bc0dcda547c410ce0f2f99758c6eebe8bf2.jpg) +Figure 2: Visualization of pseudo labels and other predictions. The generated pseudo label by fusing the predictions from the decoder and SGC map is used to supervise the decoder (strong) predictions of the strongly-augmented counterpart. + +Training. Our final training objective contains two extra losses: a classification loss $\mathcal { L } _ { x }$ , and a segmentation loss $\mathcal { L } _ { s a }$ . First, to compute Grad-CAM, we add a one-layer classification head after the segmentation backbone and a multi-label classification loss $\mathcal { L } _ { x }$ . Second, as specified in Appendix A (Figure 6), SGC maps are scaled as pixel-wise probabilities using one-layer convolution followed by softmax in equation 3. Learning $\Theta$ to predict SGC maps needs pixel-labeled data $D _ { l }$ . It is achieved by an extra segmentation loss $\mathcal { L } _ { s a }$ between SGC maps of pixel-labeled data and corresponding ground truth. All the loss terms are jointly optimized (i.e., $\mathcal { L } _ { u } + \mathcal { L } _ { s } + \mathcal { L } _ { x } + \mathcal { L } _ { s a } )$ , while $\mathcal { L } _ { s a }$ only optimizes $\Theta$ (achieved by stopping gradient). See Figure 7 in the appendix for further details. + +# 3.2 INCORPORATING IMAGE-LEVEL LABELS AND AUGMENTATION + +The proposed PseudoSeg can easily incorporate image-level label information (if available) into our one-stage training framework, which also leads to consistent improvement as we demonstrate in experiments. We utilize the image-level data with two following steps. First, we directly use ground truth image-level labels to generate Grad-CAMs instead of using classifier outputs. Second, they are used to increase classification supervision beyond pixel-level labels for the classifier head. + +For strong data augmentation, we simply follow color jittering operations from SimCLR (Chen et al., 2020b) and remove all geometric transformations. The overall strength of augmentation can be controlled by a scalar (studied in experiments). We also apply once random CutOut (DeVries & Taylor, 2017) with a region of $5 0 \times 5 0$ pixels since we find it gives consistent though minor improvement (pixels inside CutOut regions are ignored in computing losses). + +# 4 EXPERIMENTAL RESULTS + +We start by specifying the experimental details. Then, we evaluate the method in the settings of using pixel-level labeled data and unlabeled data, as well as using pixel-level labeled data and image-level labeled data, respectively. Next, we conduct various ablation studies to justify our design choices. Lastly, we conduct more comparative experiments in specific settings. + +To evaluate the proposed method, we conduct the main experiments and ablation studies on the PASCAL VOC 2012 dataset (VOC12) (Everingham et al., 2015), which contains 21 classes including background. The standard VOC12 dataset has 1,449 images as the training set and 1,456 images as the validation set. We randomly subsample 1/2, 1/4, 1/8, and 1/16 of images in the standard training set to construct the pixel-level labeled data. The remaining images in the standard training set, together with the images in the augmented set (Hariharan et al., 2011) (around $9 \mathrm { k }$ images), are used as unlabeled or image-level labeled data. To further verify the effectiveness of the proposed method, we also conduct experiments on the COCO dataset (Lin et al., 2014). The COCO dataset has 118,287 images as the training set, and 5,000 images as the validation set. We evaluate on the 80 foreground classes and the background, as in the object detection task. As the COCO dataset is larger than VOC12, we randomly subsample smaller ratios, 1/32, 1/64, 1/128, 1/256, 1/512, of images from the training set to construct the pixel-level labeled data. The remaining images in the training set are used as unlabeled data or image-level labeled data. We evaluate the performance using the standard mean intersection-over-union (mIoU) metric. Implementation details can be found in Appendix B. + +![](images/97a7070768c40a2ee90f5b98acf7964c79ffade7edbbd0d82e10f3742a8ab33c.jpg) +Figure 3: Improvement over the strong supervised baseline, in a semi-supervised setting (w/ unlabeled data) on VOC12 val (left) and COCO val (right). + +# 4.1 EXPERIMENTS USING PIXEL-LEVEL LABELED DATA AND UNLABELED DATA + +Improvement over a strong baseline. We first demonstrate the effectiveness of the proposed method by comparing it with the DeepLabv $^ { 3 + }$ model trained with only the pixel-level labeled data. As shown in Figure 3 (a), the proposed method consistently outperforms the supervised training baseline on VOC12, by utilizing the pixel-level labeled data and the unlabeled data. The proposed method not only achieves a large performance boost in the low-data regime (when only $6 . 2 5 \%$ pixellevel labels available), but also improves the performance when the entire training set (1.4k images) is available. In Figure 3 (b), we again observe consistent improvement on the COCO dataset. + +Comparisons with the others. Next, we compare the proposed method with recent state of the arts on both the public $1 . 4 \mathrm { k } / 9 \mathrm { k }$ split (in Table 1) and the created low-data splits (in Table 2), on VOC12. Our method compares favorably with the others. + +Table 1: Comparison with state of the arts on VOC12 val set (w/ pixel-level labeled data and unlabeled data). We use the official training set (1.4k) as labeled data, and the augmented set (9k) as unlabeled data. + +
MethodNetworkmIoU (%)
GANSeg (Souly et al., 2017)VGG1664.10
AdvSemSeg (Hung et al., 2018)ResNet-10168.40
CCT (Ouali et al., 2020)ResNet-5069.40
PseudoSeg (Ours)ResNet-5071.00
PseudoSeg (Ours)ResNet-10173.23
+ +Table 2: Comparison with state of the arts on VOC12 val set (w/ pixel-level labeled data and unlabeled data) using low-data splits. The exact numbers of pixel-labeled images are shown in brackets. All the methods use ResNet-101 as backbone except CCT (Ouali et al., 2020), which uses ResNet-50. \* indicates implementation from Ke et al. (2020), \*\* indicates implementation from French et al. (2020). + +
Method1/2 (732)1/4 (366)1/8 (183)1/16 (92)
AdvSemSeg (Hung et al., 2018)65.2759.9747.5839.69
CCT (Ouali et al., 2020)62.1058.8047.6033.10
*MT (Tarvainen & Valpola, 2017)69.1663.0155.8148.70
GCT (Ke et al., 2020)70.6764.7154.9846.04
**VAT (Miyato et al., 2018)63.3456.8849.3536.92
CutMix (French et al., 2020)69.8468.3663.2055.58
PseudoSeg (Ours)72.4169.1465.5057.60
+ +![](images/e591d5f2246b80ae34e3f3b7d110f34c16cf3c68f8df57d4c593602c1b0a3fc4.jpg) +Figure 4: Improvement over the strong supervised baseline, in a semi-supervised setting (w/ image-level labeled data) on VOC12 val (left) and COCO val (right). + +Table 3: Comparison with state of the arts on VOC12 val set (w/ pixel-level labeled data and image-level labeled data). We use the official training set (1.4k) as labeled data, and the augmented set (9k) as image-level labeled data. + +
MethodModelNetworkmIoU (%)
WSSN (Papandreou et al., 2015)DeepLab-CRFVGG1664.60
GAIN (Li et al., 2018)DeepLab-CRF-LFOVVGG1660.50
MDC (Wei et al.,2018)DeepLab-CRF-LFOVVGG1665.70
DSRG (Huang et al.,2018)DeepLabv2VGG1664.30
GANSeg (Souly et al.,2017)FCNVGG1665.80
FickleNet (Lee et al.,2019)DeepLabv2ResNet-10165.80
CCT (Ouali et al., 2020)PSP-NetResNet-5073.20
PseudoSeg (Ours)DeepLabv3+ResNet-5073.80
+ +Table 4: Comparison with state of the arts on VOC12 val set with pixel-level labeled data and image-level labeled data. Four ratios of pixel-level labeled examples are tested. Both CCT (Ouali et al., 2020) and our method use ResNet-50 as backbone. + +
SplitCCTPseudoSeg
1/266.8073.51
1/467.6071.79
1/862.5069.15
1/1651.8065.44
+ +Similar to semi-supervised learning using pixel-level labeled data and unlabeled data, we first demonstrate the efficacy of our method by comparing it with a strong supervised baseline. As shown in Figure 4, the proposed method consistently improves the strong baseline on both datasets. In Table 3, we evaluate on the public $1 . 4 \mathrm { k } / 9 \mathrm { k }$ split. The proposed method compares favorably with the other methods. Moreover, we further compare to best compared CCT on the created low-data splits (in Table 4). Both experiments show that the proposed PseudoSeg is more robust than the compared method given less data. On all splits on both datasets, using pixel-level labeled data and image-labeled data shows higher mIoU than the setting using pixel-level labeled data and unlabeled data. + +# 4.3 ABLATION STUDY + +In this section, we conduct extensive ablation experiments on VOC12 to validate our design choices. + +How to construct pseudo label? We investigate the effectiveness of the proposed pseudo labeling. Table 5 demonstrates quantitative results, indicating that using either decoder output or SGC alone gives an inferior performance. Naively using decoder output as pseudo labels can hardly work well. The proposed fusion consistently performs better, either with or without additional image-level labels. To further answer why our pseudo labels are effective, we study from the model calibration perspective. We measure the expected calibration error (ECE) (Guo et al., 2017) scores of all the intermediate steps and other fusion variants. As shown in Figure 5 (a), the proposed fusion strategy (denoted as G in the figure) achieves the lowest ECE scores, indicating that the significance of jointly using normalization with sharpening (see equation 4) compared with other fusion alternatives. We hypothesize using well-calibrated soft labels makes model training less affected by label noises. The comprehensive calibration study is left as a future exploration direction. + +Using hypercolumn feature or not? In Figure 5 (b), we study the effectiveness of using hypercolumn features instead of the last feature maps in equation 3. We conduct the experiments on the 1/16 split of VOC12. As we can see, hypercolumn features substantially improve performance. + +Soft or hard pseudo label? How to utilize predictions as pseudo labels remains an active question in SSL. Next, we study whether we should use soft or hard one-hot pseudo labels. We conduct the experiments in the setting where pixel-level labeled data and image-level labeled data are available. As shown in Figure 5 (c), using all predictions as soft pseudo label yields better performance than selecting confident predictions. This suggests that well-calibrated soft pseudo labels might be important in segmentation than over-simplified confidence thresholding. + +Table 5: Comparison to alternative pseudo labeling strategies. We conduct experiments using 1/4, 1/8, 1/16 of the pixel-level labeled data, the exact numbers of images are shown in the brackets. + +
SourceUsing image-level labels1/4 (366)1/8 (183)1/16 (92)
Decoder only70.2269.3553.20
SGC only67.0762.6153.42
Calibrated fusion73.7973.1367.06
Decoder only73.9573.0567.54
SGC only71.7367.5764.26
Calibrated fusion75.2974.7071.22
+ +![](images/22e308dca704e89de560810e1f3d6d1ababe29fdb06d4ffaa1dc2fe834ea9bc0.jpg) +Figure 5: Ablation studies on different factors. See Section 4.3 for complete details. + +Temperature sharpening or not? We study the effect of temperature sharpening in equation 4. We conduct the experiments in the setting where pixel-level labeled data and image-level labeled data are available. As shown in Figure 5 (d), temperature sharpening shows consistent and clear improvements. + +Strong augmentation strength. In Figure 5 (e), we study the effects of color jittering in the strong augmentation. The magnitude of jittering strength is controlled by a scalar (Chen et al., 2020b). We conduct the experiments in the setting where pixel-level labeled data and unlabeled data are available. If the magnitude is too small, performance drops significantly, suggesting the importance of strong augmentation. + +Impact of different feature backbones. In Figure 5 (f), we compare the performance of using ResNet-50, ResNet-101, and Xception-65 as backbone architectures, respectively. We conduct the experiments in the setting where pixel-level labeled data and unlabeled data are available. As we can see, the proposed method consistently improves the baseline by a substantial margin across different backbone architectures. + +# 4.4 COMPARISON WITH SELF-TRAINING + +Several recent approaches (Chen et al., 2020a; Zoph et al., 2020) exploit the Student-Teacher selftraining idea to improve the performance with additional unlabeled data. However, these methods only apply self-training in the high-data regime (i.e., sufficient pixel-labeled data to train teachers). + +Table 6: Comparison with self-training. We use our supervised baseline as the teacher to generate one-hot pseudo labels, following Zoph et al. (2020). + +
MethodUsing image-level labels1/4 (366)1/8 (183)1/16 (92)
Supervised (Teacher)70.2064.0056.03
Self-training (Student)172.8569.8864.20
PseudoSeg (Ours)-73.7973.1367.06
PseudoSeg (Ours)75.2974.7071.22
+ +Here we compare these methods in the low-data regimes, where we focus on. To generate offline pseudo labels, we closely follow segmentation experiments in Zoph et al. (2020): pixels with a confidence score higher than 0.5 will be used as one-hot pseudo labels, while the remaining are treated as ignored regions. This step is considered important to suppress noisy labels. A student model is then trained using the combination of unlabeled data in VOC12 train and augmented sets with generated one-hot pseudo labels and all the available pixel-level labeled data. As shown in Table 6, although the self-training pretty well improves over the supervised baseline, it is inferior to the proposed method 2. We conjecture that the teacher model usually produces low confidence scores to pixels around boundaries, so pseudo labels of these pixels are filtered in student training. However, boundary pixels are important for improving the performance of segmentation (Kirillov et al., 2020). On the other hand, the design of our method (online soft pseudo labeling process) bypass this challenge. We will conduct more verification of this hypothesis in future work. + +# 5 IMPROVING THE FULLY-SUPERVISED METHOD WITH ADDITIONAL DAT + +We have validated the effectiveness of the proposed method in the low-data regime. In this section, we want to explore whether the proposed method can further improve supervised training in the full training set using additional data. We use the training set (1.4k) in VOC12 as the pixel-level labeled data. The additional data contains additional VOC 9k $( V _ { 9 k } )$ , COCO training set $( C _ { t r } )$ , and COCO unlabeled data $( C _ { u } )$ . More training details can be found in Appendix D. As shown in Table 7, the proposed PseudoSeg is able to improve upon the supervised baseline even in the high-data regime, using additional unlabeled or image-level labeled data. + +Table 7: Improving fully supervised model with extra data. No test-time augmentation is used. + +
MethodBaseline丨PseudoSeg (w/o image-level labels)丨PseudoSeg (w/image-level labels)
Extra data1Ctr+CuCtr + Cu + V9kCtrCtr +Vgk
mIoU (%)76.9677.40 (+0.44)78.20 (+1.24)77.80 (+0.84)79.28 (+2.32)
+ +# 5 DISCUSSION AND CONCLUSION + +The key to the good performance of our method in the low-data regime is the novel re-design of pseudo-labeling strategy, which pursues a different decision mechanism from weakly-supervised localization to “remedy” weak predictions from segmentation head. Then augmentation consistency training progressively improves segmentation head quality. For the first time, we demonstrate that, with well-calibrated soft pseudo labels, utilizing unlabeled or image-labeled data significantly improves segmentation at low-data regimes. Further exploration of fusing stronger and better-calibrated pseudo labels worth more study as future directions (e.g., multi-scaling). Although color jittering works within our method as strong data augmentation, we have extensively explored geometric augmentations (leveraging STN (Jaderberg et al., 2015) to align pixels in pseudo labels and strongly-augmented predictions) for segmentation but find it not helpful. We believe data augmentation needs re-thinking beyond current success in classification for segmentation usage. + +# ACKNOWLEDGEMENT + +We thank Liang-Chieh Chen and Barret Zoph for their valuable comments. + +# REFERENCES + +Jiwoon Ahn and Suha Kwak. Learning pixel-level semantic affinity with image-level supervision for weakly supervised semantic segmentation. In CVPR, 2018. 3, 4 + +Jiwoon Ahn, Sunghyun Cho, and Suha Kwak. Weakly supervised learning of instance segmentation with inter-pixel relations. In CVPR, 2019. 4, 14 + +David Berthelot, Nicholas Carlini, Ekin D Cubuk, Alex Kurakin, Kihyuk Sohn, Han Zhang, and Colin Raffel. Remixmatch: Semi-supervised learning with distribution matching and augmentation anchoring. In ICLR, 2019a. 2 + +David Berthelot, Nicholas Carlini, Ian Goodfellow, Nicolas Papernot, Avital Oliver, and Colin A Raffel. Mixmatch: A holistic approach to semi-supervised learning. In NeurIPS, 2019b. 1, 2, 5 + +Liang-Chieh Chen, Yukun Zhu, George Papandreou, Florian Schroff, and Hartwig Adam. Encoder-decoder with atrous separable convolution for semantic image segmentation. In ECCV, 2018. 1, 3, 15 + +Liang-Chieh Chen, Raphael Gontijo Lopes, Bowen Cheng, Maxwell D Collins, Ekin D Cubuk, Barret Zoph, Hartwig Adam, and Jonathon Shlens. Naive-student: Leveraging semi-supervised learning in video sequences for urban scene segmentation. In ECCV, 2020a. 1, 2, 8 + +Ting Chen, Simon Kornblith, Mohammad Norouzi, and Geoffrey Hinton. A simple framework for contrastive learning of visual representations. In ICML, 2020b. 5, 8 + +Franc¸ois Chollet. Xception: Deep learning with depthwise separable convolutions. In CVPR, 2017. 13 + +Marius Cordts, Mohamed Omran, Sebastian Ramos, Timo Rehfeld, Markus Enzweiler, Rodrigo Benenson, Uwe Franke, Stefan Roth, and Bernt Schiele. The cityscapes dataset for semantic urban scene understanding. In CVPR, 2016. 15 + +Jifeng Dai, Kaiming He, and Jian Sun. Boxsup: Exploiting bounding boxes to supervise convolutional networks for semantic segmentation. In ICCV, 2015. 2 + +Terrance DeVries and Graham W Taylor. Improved regularization of convolutional neural networks with cutout. arXiv preprint arXiv:1708.04552, 2017. 5 + +Mark Everingham, SM Ali Eslami, Luc Van Gool, Christopher KI Williams, John Winn, and Andrew Zisserman. The pascal visual object classes challenge: A retrospective. IJCV, 111(1):98–136, 2015. 5 + +Geoff French, Timo Aila, Samuli Laine, Michal Mackiewicz, and Graham Finlayson. Semi-supervised semantic segmentation needs strong, high-dimensional perturbations. In BMVC, 2020. 2, 6, 15 + +Yves Grandvalet and Yoshua Bengio. Semi-supervised learning by entropy minimization. In NeurIPS, 2005. 2 + +Chuan Guo, Geoff Pleiss, Yu Sun, and Kilian Q Weinberger. On calibration of modern neural networks. ICML, 2017. 7 + +Bharath Hariharan, Pablo Arbelaez, Lubomir Bourdev, Subhransu Maji, and Jitendra Malik. Semantic contours ´ from inverse detectors. In ICCV, 2011. 5 + +Bharath Hariharan, Pablo Arbelaez, Ross Girshick, and Jitendra Malik. Hypercolumns for object segmentation ´ and fine-grained localization. In CVPR, 2015. 4 + +Qibin Hou, PengTao Jiang, Yunchao Wei, and Ming-Ming Cheng. Self-erasing network for integral object attention. In NeurIPS, 2018. 3, 4 + +Zilong Huang, Xinggang Wang, Jiasi Wang, Wenyu Liu, and Jingdong Wang. Weakly-supervised semantic segmentation network with deep seeded region growing. In CVPR, 2018. 3, 7 + +Wei-Chih Hung, Yi-Hsuan Tsai, Yan-Ting Liou, Yen-Yu Lin, and Ming-Hsuan Yang. Adversarial learning for semi-supervised semantic segmentation. In BMVC, 2018. 2, 6 + +Max Jaderberg, Karen Simonyan, Andrew Zisserman, et al. Spatial transformer networks. In NeurIPS, 2015. 9 + +Peng-Tao Jiang, Qibin Hou, Yang Cao, Ming-Ming Cheng, Yunchao Wei, and Hong-Kai Xiong. Integral object mining via online attention accumulation. In ICCV, 2019. 14 + +Zhanghan Ke, Di Qiu, Kaican Li, Qiong Yan, and Rynson WH Lau. Guided collaborative training for pixel-wise semi-supervised learning. In ECCV, 2020. 2, 6 + +Jongmok Kim, Jooyoung Jang, and Hyunwoo Park. Structured consistency loss for semi-supervised semantic segmentation. arXiv preprint arXiv:2001.04647, 2020. 2 +Alexander Kirillov, Yuxin Wu, Kaiming He, and Ross Girshick. Pointrend: Image segmentation as rendering. In CVPR, 2020. 9 +Philipp Krahenb ¨ uhl and Vladlen Koltun. Efficient inference in fully connected crfs with gaussian edge poten- ¨ tials. In NeurIPS, 2011. 3, 4 +Chia-Wen Kuo, Chih-Yao Ma, Jia-Bin Huang, and Zsolt Kira. Featmatch: Feature-based augmentation for semi-supervised learning. In ECCV, 2020. 1 +Samuli Laine and Timo Aila. Temporal ensembling for semi-supervised learning. In ICLR, 2016. 2 +Dong-Hyun Lee. Pseudo-label: The simple and efficient semi-supervised learning method for deep neural networks. In ICML Workshop, 2013. 2 +Jungbeom Lee, Eunji Kim, Sungmin Lee, Jangho Lee, and Sungroh Yoon. Ficklenet: Weakly and semisupervised semantic image segmentation using stochastic inference. In CVPR, 2019. 7, 14 +Kunpeng Li, Ziyan Wu, Kuan-Chuan Peng, Jan Ernst, and Yun Fu. Tell me where to look: Guided attention inference network. In CVPR, 2018. 3, 7 +Di Lin, Jifeng Dai, Jiaya Jia, Kaiming He, and Jian Sun. Scribblesup: Scribble-supervised convolutional networks for semantic segmentation. In CVPR, 2016. 2 +Tsung-Yi Lin, Michael Maire, Serge Belongie, James Hays, Pietro Perona, Deva Ramanan, Piotr Dollar, and ´ C Lawrence Zitnick. Microsoft coco: Common objects in context. In ECCV, 2014. 5 +Wenfeng Luo and Meng Yang. Semi-supervised semantic segmentation via strong-weak dual-branch network. In ECCV, 2020. 2 +Sudhanshu Mittal, Maxim Tatarchenko, and Thomas Brox. Semi-supervised semantic segmentation with highand low-level consistency. TPAMI, 2019. 2 +Takeru Miyato, Shin-ichi Maeda, Masanori Koyama, and Shin Ishii. Virtual adversarial training: a regularization method for supervised and semi-supervised learning. TPAMI, 41(8):1979–1993, 2018. 2, 6 +Seong Joon Oh, Rodrigo Benenson, Anna Khoreva, Zeynep Akata, Mario Fritz, and Bernt Schiele. Exploiting saliency for object segmentation from image level labels. In CVPR, 2017. 3 +Yassine Ouali, Celine Hudelot, and Myriam Tami. Semi-supervised semantic segmentation with cross- ´ consistency training. In CVPR, 2020. 2, 6, 7 +George Papandreou, Liang-Chieh Chen, Kevin P Murphy, and Alan L Yuille. Weakly-and semi-supervised learning of a deep convolutional network for semantic image segmentation. In ICCV, 2015. 7 +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. IJCV, 115(3):211–252, 2015. 13 +Mehdi Sajjadi, Mehran Javanmardi, and Tolga Tasdizen. Regularization with stochastic transformations and perturbations for deep semi-supervised learning. In NeurIPS, 2016. 2 +Ramprasaath R Selvaraju, Michael Cogswell, Abhishek Das, Ramakrishna Vedantam, Devi Parikh, and Dhruv Batra. Grad-cam: Visual explanations from deep networks via gradient-based localization. In ICCV, 2017. 4 +Kihyuk Sohn, David Berthelot, Chun-Liang Li, Zizhao Zhang, Nicholas Carlini, Ekin D Cubuk, Alex Kurakin, Han Zhang, and Colin Raffel. Fixmatch: Simplifying semi-supervised learning with consistency and confidence. In NeurIPS, 2020a. 1, 2, 4 +Kihyuk Sohn, Zizhao Zhang, Chun-Liang Li, Han Zhang, Chen-Yu Lee, and Tomas Pfister. A simple semisupervised learning framework for object detection. arXiv preprint arXiv:2005.04757, 2020b. 4 +Nasim Souly, Concetto Spampinato, and Mubarak Shah. Semi supervised semantic segmentation using generative adversarial network. In ICCV, 2017. 2, 6, 7 +Guolei Sun, Wenguan Wang, Jifeng Dai, and Luc Van Gool. Mining cross-image semantics for weakly supervised semantic segmentation. In ECCV, 2020. 3, 4, 14 +Antti Tarvainen and Harri Valpola. Mean teachers are better role models: Weight-averaged consistency targets improve semi-supervised deep learning results. In NeurIPS, 2017. 1, 2, 6 +Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Łukasz Kaiser, and Illia Polosukhin. Attention is all you need. In NeurIPS, 2017. 4 +Yude Wang, Jie Zhang, Meina Kan, Shiguang Shan, and Xilin Chen. Self-supervised equivariant attention mechanism for weakly supervised semantic segmentation. In CVPR, 2020. 3, 14 +Yunchao Wei, Jiashi Feng, Xiaodan Liang, Ming-Ming Cheng, Yao Zhao, and Shuicheng Yan. Object region mining with adversarial erasing: A simple classification to semantic segmentation approach. In CVPR, 2017. 3, 4 +Yunchao Wei, Huaxin Xiao, Honghui Shi, Zequn Jie, Jiashi Feng, and Thomas S Huang. Revisiting dilated convolution: A simple approach for weakly-and semi-supervised semantic segmentation. In CVPR, 2018. 3, 7 +Qizhe Xie, Zihang Dai, Eduard Hovy, Minh-Thang Luong, and Quoc V. Le. Unsupervised data augmentation for consistency training. arXiv preprint arXiv:1904.12848, 2019. 1 +Qizhe Xie, Minh-Thang Luong, Eduard Hovy, and Quoc V Le. Self-training with noisy student improves imagenet classification. In CVPR, 2020. 4 +Hang Zhang, Chongruo Wu, Zhongyue Zhang, Yi Zhu, Zhi Zhang, Haibin Lin, Yue Sun, Tong He, Jonas Muller, R. Manmatha, Mu Li, and Alexander Smola. Resnest: Split-attention networks. arXiv preprint arXiv:2004.08955, 2020a. 1 +Xiaolin Zhang, Yunchao Wei, and Yi Yang. Inter-image communication for weakly supervised localization. In ECCV, 2020b. 3 +Bolei Zhou, Aditya Khosla, Agata Lapedriza, Aude Oliva, and Antonio Torralba. Learning deep features for discriminative localization. In CVPR, 2016. 2, 4 +Yi Zhu, Zhongyue Zhang, Chongruo Wu, Zhi Zhang, Tong He, Hang Zhang, R Manmatha, Mu Li, and Alexander Smola. Improving semantic segmentation via self-training. arXiv preprint arXiv:2004.14960, 2020. 2 +Barret Zoph, Golnaz Ghiasi, Tsung-Yi Lin, Yin Cui, Hanxiao Liu, Ekin D Cubuk, and Quoc V Le. Rethinking pre-training and self-training. arXiv preprint arXiv:2006.06882, 2020. 1, 2, 4, 8, 9 + +# APPENDIX + +# A SELF-ATTENTION GRAD-CAM + +We elaborate the detailed pipeline of generating Self-attention Grad-CAM (SGC) maps (equation 3) in Figure 6. To construct the hypercolumn feature, we extract the feature maps from the last two convolutional stages of the backbone network and concatenate them together. We then project the hypercolumn feature to two separate low-dimension embedding spaces to construct “key” and “query”, using two $1 \times 1$ convolutional layers. An attention matrix can then be computed via matrix multiplication of “key” and “query”. To construct “value”, we compute Grad-CAM for each foreground class and then concatenate them together. This results in a $H \times W \times ( C - 1 )$ score map, where the maximum score of each category is normalized to one separately. We then use image-level labels (either from classifier prediction or ground truth annotation) to set the score maps of non-existing classes to be zero. For each pixel localization, we use one to subtract the maximum score to construct the background score map, which is then concatenated with the foreground score maps to form “value” $( H \times W \times C )$ . The attention score matrix can then be used to reweight and propagate the scores in “value”. The propagated score is added back to the “value” score map, and the pass through a $1 \times 1$ convolution (w/ batch normalization) to output the SGC map. + +![](images/e601a68b369dd2bea5df204593cc86e5c58bb436da07925d9f96859b296a94ec.jpg) +Figure 6: Diagram of Self-attention Grad-CAM (SGC) . + +# B IMPLEMENTATION DETAILS + +We implement our method on top of the publicly available official DeepLab codebase.3 Unless specified, we adopt the DeepLabv $^ { 3 + }$ model with Xception-65 (Chollet, 2017) as the feature backbone, which is pre-trained on the ImageNet dataset (Russakovsky et al., 2015). We train our model following the default hyper-parameters (e.g., an initial learning rate of 0.007 with a polynomial learning rate decay schedule, a crop size of $5 1 3 \times 5 1 3$ , and an encoder output stride of 16), using 16 GPUs 4. We use a batch size of 4 for each GPU for pixel-level labeled data, and 4 for unlabeled/image-level labeled data. For VOC12, we train the model for 30,000 iterations. For COCO, we train the model for 200,000 iterations. We set $\gamma = 0 . 5$ and $T = 0 . 5$ unless specified. We do not apply any test time augmentations. + +# C LOW-DATA SAMPLING IN PASCAL VOC 2012 + +Unlike random sampling in image classification, it is difficult to sample uniformly in a low-data case for semantic segmentation due to the imbalance of rare classes. To avoid the missing classes at extremely low data regimes, we repeat the random sampling process for 1/16 three times (while ensuring each class has a certain amount) and report the results. We use Split 1 in the main manuscript. All splits will be released to encourage reproducibility. The results of all the three splits are shown as in Table 8. + +![](images/43b7ca0d025624a2b1b4a19d13c29bcfbb2a797f53df2327a7d1cf85d90a40e5.jpg) +Figure 7: Training. For each network component, we show the loss supervision and the corresponding data. + +Table 8: Full results of 1/16 split in VOC12. + +
MethodUsing image-level labelsSplit 1Split 2Split 3
Supervised56.0356.8755.92
PseudoSeg (Ours)167.0664.1266.09
PseudoSeg (Ours)71.2268.1169.72
+ +# D HIGH-DATA EXPERIMENTAL SETTINGS + +Here we provide more details about the experiments in Section 4.5. Since we have a lot more unlabeled/image-level labeled data, we adopt a longer training schedule (90,000 iterations) 5. We also adopt a slightly different fusion strategy in this setting by using $T = 0 . 7$ and $\gamma = 0 . 3$ . + +# E COMPARISON WITH WEAKLY-SUPERVISED APPROACHES + +In Table 9, we benchmark recent weakly supervised semantic segmentation performance on PASCAL VOC 2012 val set. Instead of enforcing the consistency between different augmented images as we do, these approaches tackle the semantic segmentation task from a different perspective, by exploiting the weaker annotations (image-level labels). As we can see, by exploiting the imagelevel labels with careful designs, weakly-supervised semantic segmentation methods could achieve reasonably well performance. We believe that both perspectives are feasible and promising for low-data regime semantic segmentation tasks, and complementary to each other. Therefore, these designs could be potentially integrated into our framework to generate better pseudo labels, which leads to improved performance. + +Table 9: Benchmarking state-of-the-art weakly supervised semantic segmentation methods. All the methods use image-level labels from VOC12 training (1.4k) and augmented (9k) sets. + +
MethodPixel-level labeled datamIoU (%)
FickleNet (Lee et al., 2019)64.9
IRNet (Ahn et al., 2019)63.5
OAA+ (Jiang et al., 2019)65.2
SEAM (Wang et al., 2020)64.5
MCIS (Sun et al., 2020)66.2
PseudoSeg (Ours)1/16 (92)71.22
+ +# F PERFORMANCE ANALYSIS FOR TEMPERATURE SHARPENING + +We conduct an additional performance analysis for temporal sharpening. We conduct experiments over T on the 1/16 split of VOC using pixel-level labeled data and image-level labeled data. As shown in Table 10, adopting a $T < 1$ for distribution sharpening generally leads to improved performance. + +Table 10: Performance analysis over T. + +
Temperature (T)mIoU (%)
0.171.11
0.370.11
0.5 (default)71.22
0.772.37
1.0 (no sharpening)68.15
+ +# G EXPERIMENTS ON CITYSCAPES + +In this section, we conduct additional experiments on the Cityscapes dataset (Cordts et al., 2016). The Cityscapes dataset contains 50 real-world driving sequences. Among these video sequences, 2,975 frames are selected as the training set, and 500 frames are selected as the validation set. Following previous common practice, we evaluate on 19 semantic classes. + +Comparison with state of the art. We compare our method with the current state-of-the-art method (French et al., 2020), in the setting of using pixel-level labeled and unlabeled data. We randomly subsample 1/4, 1/8, and 1/30 of the training set to construct the pixel-level labeled data, using the first random seed provided by French et al. (2020). Both French et al. (2020) and our method use ResNet-101 as the feature backbone and DeepLabv $^ { 3 + }$ (Chen et al., 2018) as the segmentation model. As shown in Table 11, the proposed method achieves promising results on all the three label ratios. + +Table 11: Experiments on Cityscapes (w/ pixel-level labeled data and unlabeled data). + +
Method1/4 (744)1/8 (372)1/30 (100)
CutMix (French et al., 2020)68.3365.8255.71
PseudoSeg (Ours)72.3669.8160.96
+ +Per-class performance analysis. Next, we provide per-class performance break down analysis. We compare our method with the supervised baseline on the 1/30 split, using pixel-level labeled data and unlabeled data. As shown in Table 12, the distribution of the labeled pixels is severely imbalanced. Although our method does not in particular address the data imbalance issue, our method improves upon the supervised baseline on most of the classes (except for “Wall” and “Pole”). + +Table 12: Per-class performance analysis on Cityscapes (w/ pixel-level labeled data and unlabeled data). + +
Class Pixel ratio (%)Road 36.36Sidewalk 5.61Building 20.99Wall 0.53Fence 0.98Pole 1.19Traffic light 0.14Traffic sign 0.51Vegetation 19.61Terrain 1.29
Supervised PseudoSeg (Ours)96.0371.2687.5319.7529.1152.1950.1968.0989.9345.79
96.6475.0688.6319.6734.0951.7558.1969.9590.4350.48
ClassSkyPersonRiderCarTruckBusTrainMotorcycleBicycle
Pixel ratio (%)3.701.100.166.490.380.130.230.060.54
Supervised91.0174.1243.9189.917.6814.1917.7825.8669.88
PseudoSeg (Ours)92.9975.1646.0991.6020.3926.3022.1343.9671.30
+ +Discussion. Although the scene layouts are quite similar for all the full images, it is still feasible to generate different image-level labels through a more aggressive geometric data augmentation (e.g., scaling, cropping, translation, etc.). In practice, standard segmentation preprocessing steps only crop a sub-region of the whole training images. It only contains partial images with a certain subset of image labels, making the training batches have diverse image-level labels (converted from pixellevel labels, in the fully-labeled+unlabeled setting). Moreover, in the fully-labeled+weakly-labeled setting, in practice, we can collect diverse Internet images and weakly label them, instead of weakly labeling images from Cityscapes. + +# H QUALITATIVE RESULTS + +We visualize several model prediction results for PASCAL VOC 2012 (Figure 8) and COCO (Figure 9). As we can see, the supervised baseline struggles to segment some of the categories and small objects, when trained in the low-data regime. On the other hand, PseudoSeg utilizes unlabeled or weakly-labeled data to generate more satisfying predictions. + +![](images/135161c6e5516766b8441d8a505a601aedeabfbaf045d2d39d9f58370fe109db.jpg) +Figure 8: Qualitative results of PASCAL VOC 2012. Models are trained with 1/16 pixel-level labeled data in the training set. + +![](images/bb1c575e94a6e95b23b16542a8e7720bafb4f0dec7ccae56a226c86d7f8ac3c3.jpg) +Figure 9: Qualitative results of COCO. Models are trained with 1/512 pixel-level labeled data in the training set. Note that white pixel in the ground truth indicates this pixel is not annotated for evaluation. \ No newline at end of file diff --git a/parse/train/-TwO99rbVRu/-TwO99rbVRu_content_list.json b/parse/train/-TwO99rbVRu/-TwO99rbVRu_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..d6fca8ffaa0c447db72a78796463b8a9c0ca7db5 --- /dev/null +++ b/parse/train/-TwO99rbVRu/-TwO99rbVRu_content_list.json @@ -0,0 +1,1615 @@ +[ + { + "type": "text", + "text": "PSEUDOSEG: DESIGNING PSEUDO LABELS FOR SEMANTIC SEGMENTATION ", + "text_level": 1, + "bbox": [ + 176, + 98, + 745, + 146 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Yuliang $\\mathbf { Z o u } ^ { 1 * }$ Zizhao Zhang2 Han Zhang3 Chun-Liang Li2 Xiao Bian2 Jia-Bin Huang1 Tomas Pfister2 1Virginia Tech 2Google Cloud AI 3Google Brain ", + "bbox": [ + 186, + 169, + 624, + 213 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 250, + 544, + 265 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Recent advances in semi-supervised learning (SSL) demonstrate that a combination of consistency regularization and pseudo-labeling can effectively improve image classification accuracy in the low-data regime. Compared to classification, semantic segmentation tasks require much more intensive labeling costs. Thus, these tasks greatly benefit from data-efficient training methods. However, structured outputs in segmentation render particular difficulties (e.g., designing pseudo-labeling and augmentation) to apply existing SSL strategies. To address this problem, we present a simple and novel re-design of pseudo-labeling to generate well-calibrated structured pseudo labels for training with unlabeled or weaklylabeled data. Our proposed pseudo-labeling strategy is network structure agnostic to apply in a one-stage consistency training framework. We demonstrate the effectiveness of the proposed pseudo-labeling strategy in both low-data and highdata regimes. Extensive experiments have validated that pseudo labels generated from wisely fusing diverse sources and strong data augmentation are crucial to consistency training for semantic segmentation. The source code is available at https://github.com/googleinterns/wss. ", + "bbox": [ + 233, + 284, + 764, + 503 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 535, + 336, + 550 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Image semantic segmentation is a core computer vision task that has been studied for decades. Compared with other vision tasks, such as image classification and object detection, human annotation of pixel-accurate segmentation is dramatically more expensive. Given sufficient pixellevel labeled training data (i.e., high-data regime), the current state-of-the-art segmentation models (e.g., DeepLabv $^ { 3 + }$ (Chen et al., 2018)) produce satisfactory segmentation prediction for common practical usage. Recent exploration demonstrates improvement over high-data regime settings with large-scale data, including self-training (Chen et al., 2020a; Zoph et al., 2020) and backbone pretraining (Zhang et al., 2020a). ", + "bbox": [ + 174, + 564, + 823, + 675 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "In contrast to the high-data regime, the performance of segmentation models drop significantly, given very limited pixel-labeled data (i.e., low-data regime). Such ineffectiveness at the low-data regime hinders the applicability of segmentation models. Therefore, instead of improving high-data regime segmentation, our work focuses on data-efficient segmentation training that only relies on few pixellabeled data and leverages the availability of extra unlabeled or weakly annotated (e.g., image-level) data to improve performance, with the aim of narrowing the gap to the supervised models trained with fully pixel-labeled data. ", + "bbox": [ + 174, + 683, + 825, + 780 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Our work is inspired by the recent success in semi-supervised learning (SSL) for image classification, demonstrating promising performance given very limited labeled data and a sufficient amount of unlabeled data. Successful examples include MeanTeacher (Tarvainen & Valpola, 2017), UDA (Xie et al., 2019), MixMatch (Berthelot et al., 2019b), FeatMatch (Kuo et al., 2020), and FixMatch (Sohn et al., 2020a). One outstanding idea in this type of SSL is consistency training: making predictions consistent among multiple augmented images. FixMatch (Sohn et al., 2020a) shows that using high-confidence one-hot pseudo labels obtained from weakly-augmented unlabeled data to train strongly-augmented counterpart is the key to the success of SSL in image classification. ", + "bbox": [ + 174, + 786, + 825, + 898 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "However, effective pseudo labels and well-designed data augmentation are non-trivial to satisfy for semantic segmentation. Although we observe that many related works explore the second condition (i.e., augmentation) for image segmentation to enable consistency training framework (French et al., 2020; Ouali et al., 2020), we show that a wise design of pseudo labels for segmentation has great veiled potentials. ", + "bbox": [ + 174, + 103, + 825, + 174 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In this paper, we propose PseudoSeg, a one-stage training framework to improve image semantic segmentation by leveraging additional data either with image-level labels (weakly-labeled data) or without any labels. PseudoSeg presents a novel design of pseudo-labeling to infer effective structured pseudo labels of additional data. It then optimizes the prediction of strongly-augmented data to match its corresponding pseudo labels. In summary, we make the following contributions: ", + "bbox": [ + 176, + 180, + 825, + 251 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "• We propose a simple one-stage framework to improve semantic segmentation by using a limited amount of pixel-labeled data and sufficient unlabeled data or image-level labeled data. Our framework is simple to apply and therefore network architecture agnostic. Directly applying consistency training approaches validated in image classification renders particular challenges in segmentation. We first demonstrate how well-calibrated soft pseudo labels obtained through wise fusion of predictions from diverse sources can greatly improve consistency training for segmentation. We conduct extensive experimental studies on the PASCAL VOC 2012 and COCO datasets. Comprehensive analyses are conducted to validate the effectiveness of this method at not only the low-data regime but also the high-data regime. Our experiments study multiple important open questions about transferring SSL advances to segmentation tasks. ", + "bbox": [ + 215, + 255, + 825, + 410 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 RELATED WORK ", + "text_level": 1, + "bbox": [ + 176, + 429, + 344, + 446 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Semi-supervised classification. Semi-supervised learning (SSL) aims to improve model performance by incorporating a large amount of unlabeled data during training. Consistency regularization and entropy minimization are two common strategies for SSL. The intuition behind consistencybased approaches (Laine & Aila, 2016; Sajjadi et al., 2016; Miyato et al., 2018; Tarvainen & Valpola, 2017) is that, the model output should remain unchanged when the input is perturbed. On the other hand, the entropy minimization strategy (Grandvalet & Bengio, 2005) argues that the unlabeled data can be used to ensured classes are well-separated, which can be achieved by encouraging the model to output low-entropy predictions. Pseudo-labeling (Lee, 2013) is one of the methods for implicit entropy minimization. Recently, holistic approaches (Berthelot et al., 2019b;a; Sohn et al., 2020a) combining both strategies have been proposed and achieved significant improvement. By redesigning the pseudo label, we propose an efficient one-stage semi-supervised learning framework of semantic segmentation for consistency training. ", + "bbox": [ + 173, + 457, + 825, + 623 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Semi-supervised semantic segmentation. Collecting pixel-level annotations for semantic segmentation is costly and prone to error. Hence, leveraging unlabeled data in semantic segmentation is a natural fit. Early methods utilize a GAN-based model either to generate additional training data (Souly et al., 2017) or to learn a discriminator between the prediction and the ground truth mask (Hung et al., 2018; Mittal et al., 2019). Consistency regularization based approaches have also been proposed recently, by enforcing the predictions to be consistent, either from augmented input images (French et al., 2020; Kim et al., 2020), perturbed feature embeddings (Ouali et al., 2020), or different networks (Ke et al., 2020). Recently, Luo & Yang (2020) proposes a dual-branch training network to jointly learn from pixel-accurate and coarse labeled data, achieving good segmentation performance. To push the performance of state of the arts, iterative self-training approaches (Chen et al., 2020a; Zoph et al., 2020; Zhu et al., 2020) have been proposed. These methods usually assume the available labeled data is enough to train a good teacher model, which will be used to generate pseudo labels for the student model. However, this condition might not satisfy in the low-data regime. Our proposed method, on the other hand, realizing the ideas of both consistency regularization and pseudo-labeling in segmentation, consistently improves the supervised baseline in both low-data and high-data regimes. ", + "bbox": [ + 174, + 628, + 825, + 849 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Weakly-supervised semantic segmentation. Instead of supervising network training with accurate pixel-level labels, many prior works exploit weaker forms of annotations (e.g., bounding boxes (Dai et al., 2015), scribbles (Lin et al., 2016), image-level labels). Most recent approaches use imagelevel labels as the supervisory signal, which exploits the idea of class activation map (CAM) (Zhou et al., 2016). Since the vanilla CAM only focus on the most discriminative region of objects, different ways to refine CAM have been proposed, including partial image/feature erasing (Hou et al., 2018; Wei et al., 2017; Li et al., 2018), using an additional saliency estimation model (Oh et al., 2017; Huang et al., 2018; Wei et al., 2018), utilizing pixel similarity to propagate the initial score map (Ahn & Kwak, 2018; Wang et al., 2020), or mining and co-segment the same category of objects across images (Sun et al., 2020; Zhang et al., 2020b). While achieving promising results using the approaches mentioned above, most of them require a multi-stage training strategy. The refined score maps are optimized again using a dense-CRF model (Krahenb ¨ uhl & Koltun ¨ , 2011), and then used as the target to train a separate segmentation network. On the other hand, we assume there exists a small number of fully-annotated data, which allows us to learn stronger segmentation models than general methods without needing pixel-labeled data. ", + "bbox": [ + 174, + 854, + 823, + 924 + ], + "page_idx": 1 + }, + { + "type": "image", + "img_path": "images/55439202eaf26b71f27a6328f988f0027a61cd98c089773b1b8032b98ac5ec58.jpg", + "image_caption": [ + "Figure 1: Overview of unlabeled data training branch. Given an image, the weakly augmented version is fed into the network to get the decoder prediction and Self-attention Grad-CAM (SGC). The two sources are then combined via a calibrated fusion strategy to form the pseudo label. The network is trained to make its decoder prediction from strongly augmented image to match the pseudo label by a per-pixel cross-entropy loss. " + ], + "image_footnote": [], + "bbox": [ + 176, + 104, + 820, + 228 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 320, + 825, + 462 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 THE PROPOSED METHOD ", + "text_level": 1, + "bbox": [ + 176, + 482, + 411, + 498 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In analogous to SSL for classification, our training objective in PseudoSeg consists of a supervised loss $\\mathcal { L } _ { \\mathrm { s } }$ applied to pixel-level labeled data $\\mathcal { D } _ { l }$ , and a consistency constraint $\\mathcal { L } _ { \\mathrm { u } }$ applied to unlabeled data $\\mathcal { D } _ { u }$ 1. Specifically, the supervised loss $\\mathcal { L } _ { \\mathrm { s } }$ is the standard pixel-wise cross-entropy loss on the weakly augmented pixel-level labeled examples: ", + "bbox": [ + 174, + 511, + 825, + 568 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/c4e6ef258681327d5a51db4fbe3715327b16f29a336a86c4284b030629a615d4.jpg", + "text": "$$\n\\mathcal { L } _ { \\mathrm { s } } = \\frac { 1 } { N \\times | \\mathcal { D } _ { l } | } \\sum _ { x \\in \\mathcal { D } _ { l } } \\sum _ { i = 0 } ^ { N - 1 } \\mathrm { C r o s s E n t r o p y } \\left( y _ { i } , f _ { \\theta } ( \\omega ( x _ { i } ) ) \\right) ,\n$$", + "text_format": "latex", + "bbox": [ + 312, + 569, + 684, + 616 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $\\theta$ represents the learnable parameters of the network function $f$ and $N$ denotes the number of valid labeled pixels in an image $\\boldsymbol { x } \\in \\mathbb { R } ^ { H \\times W \\times 3 }$ . $y _ { i } \\in \\mathbb { R } ^ { C }$ is the ground truth label of a pixel $i$ in $H \\times W$ dimensions, and $f _ { \\theta } ( \\omega ( x _ { i } ) ) \\in \\mathbb { R } ^ { C }$ is the predicted probability of pixel $i$ , where $C$ is the number of classes to predict and $\\omega ( \\cdot )$ denotes the weak (common) data augmentation operations used by Chen et al. (2018). ", + "bbox": [ + 174, + 617, + 825, + 688 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "During training, the proposed PseudoSeg estimates a pseudo label $\\widetilde { y } \\in \\mathbb { R } ^ { H \\times W \\times C }$ for each stronglyaugmented unlabeled data $x$ in $\\mathcal { D } _ { u }$ e, which is then used for computing the cross-entropy loss. The unsupervised objective can then be written as: ", + "bbox": [ + 174, + 694, + 825, + 736 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/10f5c9adc85e295e82223bd240ae987ee529c2d193b4b7a1eec4a96192fbde37.jpg", + "text": "$$\n\\mathcal { L } _ { \\sf u } = \\frac { 1 } { N \\times | \\mathcal { D } _ { u } | } \\sum _ { x \\in \\mathcal { D } _ { u } } \\sum _ { i = 0 } ^ { N - 1 } \\mathrm { C r o s s E n t r o p y } \\left( \\widetilde { y } _ { i } , f _ { \\theta } ( \\beta \\circ \\omega ( x _ { i } ) ) \\right) ,\n$$", + "text_format": "latex", + "bbox": [ + 295, + 738, + 700, + 785 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $\\beta ( \\cdot )$ denotes a stronger data augmentation operation, which will be described in Section 3.2. \nWe illustrate the unlabeled data training branch in Figure 1. ", + "bbox": [ + 173, + 787, + 823, + 816 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3.1 THE DESIGN OF STRUCTURED PSEUDO LABELS ", + "text_level": 1, + "bbox": [ + 174, + 833, + 547, + 848 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The next important question is how to generate the desirable pseudo label $\\widetilde { y }$ . A straightforward soluetion is directly using the decoder output of a trained segmentation model after confidence thresholding, as suggested by Sohn et al. (2020a); Zoph et al. (2020); Xie et al. (2020); Sohn et al. (2020b). However, as we demonstrate later in the experiments, the generated pseudo hard/soft labels as well as other post-processing of outputs are barely satisfactory in the low-data regime, and thus yield inferior final results. To address this issue, our design of pseudo-labeling has two key insights. First, we seek for a distinct yet efficient decision mechanisms to compensate for the potential errors of decoder outputs. Second, wisely fusing multiple sources of predictions to generate an ensemble and better-calibrated version of pseudo labels. ", + "bbox": [ + 174, + 857, + 820, + 887 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 103, + 825, + 202 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Starting with localization. Compared with precise segmentation, learning localization is a simpler task as it only needs to provide coarser-grained outputs than pixel level of objects in images. Based on this motivation, we improve decoder predictions from the localization perspective. Class activation map (CAM) (Zhou et al., 2016) is a popular approach to provide localization for class-specific regions. CAM-based methods (Hou et al., 2018; Wei et al., 2017; Ahn & Kwak, 2018) have been successfully adopted to tackle a different weakly supervised semantic segmentation task from us, where they assume only image-level labels are available. In practice, we adopt a variant of class activation map, Grad-CAM (Selvaraju et al., 2017) in PseudoSeg. ", + "bbox": [ + 173, + 205, + 825, + 318 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "From localization to segmentation. CAM estimates the strength of classifier responses on local feature maps. Thus, an inherent limitation of CAM-based approaches is that it is prone to attending only to the most discriminative regions. Although many weakly-supervised segmentation approaches (Ahn & Kwak, 2018; Ahn et al., 2019; Sun et al., 2020) aim at refining CAM localization maps to segmentation masks, most of them have complicated post-processing steps, such as dense CRF (Krahenb ¨ uhl & Koltun ¨ , 2011), which increases the model complexity when used for consistency training. Here we present a computationally efficient yet effective refinement alternative, which is learnable using available pixel-labeled data. ", + "bbox": [ + 173, + 320, + 825, + 433 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Although CAM only localizes partial regions of interests, if we know the pairwise similarities between regions, we can propagate the CAM scores from the discriminative regions to the rest unattended regions. Actually, it has been shown in many works that the learned high-level deep features are usually good at similarity measurements of visual objects. In this paper, we find hypercolumn (Hariharan et al., 2015) with a learnable similarity measure function works fairly effective. ", + "bbox": [ + 174, + 439, + 823, + 510 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Given the vanilla Grad-CAM output for all $C$ classes, which can be viewed as a spatially-flatten 2-D vector of weight $m \\in \\mathbb { R } ^ { L \\times C }$ , where each row $m _ { i }$ is the response weight per class for one region $i$ . Using a kernel function $\\mathcal { K } ( \\cdot , \\cdot ) : \\mathbb { R } ^ { H } \\times \\mathbb { R } ^ { H } \\mathbb { R }$ that measures element-wise similarity given feature $h \\in { \\bar { \\mathbb { R } } } ^ { H }$ of two regions, the propagated score $\\hat { m } _ { i } \\in \\mathbb { R } ^ { C }$ can be computed as follows ", + "bbox": [ + 174, + 515, + 825, + 573 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/315a83a19acb724a2334523b444d0778b85206c5895fe1814d98891b2b465de8.jpg", + "text": "$$\n\\hat { m } _ { i } = \\left( m _ { i } + \\sum _ { j = 0 } ^ { L - 1 } \\frac { e ^ { K ( W _ { k } h _ { i } , W _ { v } h _ { j } ) } } { \\sum _ { k = 0 } ^ { L - 1 } e ^ { K ( W _ { k } h _ { i } , W _ { v } h _ { k } ) } } m _ { j } \\right) \\cdot W _ { c } .\n$$", + "text_format": "latex", + "bbox": [ + 323, + 575, + 674, + 625 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The goal of this function is to train $\\Theta = \\{ W _ { k } , W _ { v } \\in \\mathbb { R } ^ { H \\times H } , W _ { c } \\in \\mathbb { R } ^ { C \\times C } \\}$ in order to propagate the high value in $m$ to all adjacent elements in the feature space $\\mathbb { R } ^ { H }$ (i.e., hypercolumn features) to region $i$ . Adding $m _ { i }$ in equation 3 indicates the skip-connection. To compute propagated score for all regions, the operations in equation 3 can be efficiently implemented with self-attention dotproduct (Vaswani et al., 2017). For brevity, we denote this efficient refinement process output as selfattention Grad-CAM (SGC) maps in $\\mathbb { R } ^ { H \\times H \\times C }$ . Figure 6 in Appendix A specifies the architecture. ", + "bbox": [ + 173, + 627, + 825, + 713 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Calibrated prediction fusion. SGC maps are obtained from low-resolution feature maps. It is then resized to the desired output resolution, and thus not sufficient at delineating crisp boundaries. However, compared to the segmentation decoder, SGC is capable of generating more locally-consistent masks. Thus, we propose a novel calibrated fusion strategy to take advantage of both decoder and SCG predictions for better pseudo labels. ", + "bbox": [ + 174, + 717, + 825, + 787 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Specifically, given a batch of decoder outputs (pre-softmax logits) $\\hat { p } = f _ { \\theta } ( \\omega ( x ) )$ and SGC maps $\\hat { m }$ computed from weakly-augmented data $\\omega ( x )$ , we generate the pseudo labels $\\widetilde { y }$ by ", + "bbox": [ + 173, + 792, + 825, + 823 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/8a2cc9c7dadb07213de1f86511ba990a5e698739952cb66fb24d2207c967f266.jpg", + "text": "$$\n\\mathcal { F } ( \\hat { p } , \\hat { m } ) = \\mathrm { S h a r p e n } \\left( \\gamma \\operatorname { S o f t m a x } \\left( \\frac { \\hat { p } } { \\operatorname { N o r m } ( \\hat { p } , \\hat { m } ) } \\right) + ( 1 - \\gamma ) \\operatorname { S o f t m a x } \\left( \\frac { \\hat { m } } { \\operatorname { N o r m } ( \\hat { p } , \\hat { m } ) } \\right) , T \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 186, + 825, + 790, + 861 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Two critical procedures are proposed to use here to make the fusion process successful. First, $\\hat { p }$ and $\\hat { m }$ are from different decision mechanisms and they could have very different degrees of overconfidence. Therefore, we introduce the operation $\\begin{array} { r } { \\mathrm { N o r m } ( a , b ) = \\sqrt { \\sum _ { i } ^ { | a | } ( a _ { i } ^ { 2 } + b _ { i } ^ { 2 } ) } } \\end{array}$ as a normalization factor. It alleviates the over-confident probability after softmax, which could unfavorably dominate the resulted $\\gamma$ -averaged probability. Second, the distribution sharpening operation Sharpen $\\begin{array} { r } { ( a , T ) _ { i } ~ = ~ a _ { i } ^ { 1 / T } / \\sum _ { j } ^ { C } a _ { j } ^ { 1 / T } } \\end{array}$ adjusts the temperature scalar $T$ of categorical distribution (Berthelot et al., 2019b; Chen et al., 2020b). Figure 2 illustrates the predictions from different sources. More importantly, we investigate the pseudo-labeling from a calibration perspective (Section 4.3), demonstrating that the proposed soft pseudo label $\\widetilde { y }$ leads to a better calibration metric comparing to other possible fusion alternatives, and justifying why it benefits the final segmentation performance. ", + "bbox": [ + 173, + 862, + 825, + 915 + ], + "page_idx": 3 + }, + { + "type": "image", + "img_path": "images/da24262064ec7dc7f8d685b2d6566bc0dcda547c410ce0f2f99758c6eebe8bf2.jpg", + "image_caption": [ + "Figure 2: Visualization of pseudo labels and other predictions. The generated pseudo label by fusing the predictions from the decoder and SGC map is used to supervise the decoder (strong) predictions of the strongly-augmented counterpart. " + ], + "image_footnote": [], + "bbox": [ + 174, + 101, + 816, + 162 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 224, + 825, + 340 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Training. Our final training objective contains two extra losses: a classification loss $\\mathcal { L } _ { x }$ , and a segmentation loss $\\mathcal { L } _ { s a }$ . First, to compute Grad-CAM, we add a one-layer classification head after the segmentation backbone and a multi-label classification loss $\\mathcal { L } _ { x }$ . Second, as specified in Appendix A (Figure 6), SGC maps are scaled as pixel-wise probabilities using one-layer convolution followed by softmax in equation 3. Learning $\\Theta$ to predict SGC maps needs pixel-labeled data $D _ { l }$ . It is achieved by an extra segmentation loss $\\mathcal { L } _ { s a }$ between SGC maps of pixel-labeled data and corresponding ground truth. All the loss terms are jointly optimized (i.e., $\\mathcal { L } _ { u } + \\mathcal { L } _ { s } + \\mathcal { L } _ { x } + \\mathcal { L } _ { s a } )$ , while $\\mathcal { L } _ { s a }$ only optimizes $\\Theta$ (achieved by stopping gradient). See Figure 7 in the appendix for further details. ", + "bbox": [ + 174, + 344, + 825, + 457 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.2 INCORPORATING IMAGE-LEVEL LABELS AND AUGMENTATION ", + "text_level": 1, + "bbox": [ + 176, + 474, + 642, + 488 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The proposed PseudoSeg can easily incorporate image-level label information (if available) into our one-stage training framework, which also leads to consistent improvement as we demonstrate in experiments. We utilize the image-level data with two following steps. First, we directly use ground truth image-level labels to generate Grad-CAMs instead of using classifier outputs. Second, they are used to increase classification supervision beyond pixel-level labels for the classifier head. ", + "bbox": [ + 174, + 497, + 825, + 566 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "For strong data augmentation, we simply follow color jittering operations from SimCLR (Chen et al., 2020b) and remove all geometric transformations. The overall strength of augmentation can be controlled by a scalar (studied in experiments). We also apply once random CutOut (DeVries & Taylor, 2017) with a region of $5 0 \\times 5 0$ pixels since we find it gives consistent though minor improvement (pixels inside CutOut regions are ignored in computing losses). ", + "bbox": [ + 174, + 574, + 825, + 643 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4 EXPERIMENTAL RESULTS ", + "text_level": 1, + "bbox": [ + 176, + 665, + 419, + 680 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We start by specifying the experimental details. Then, we evaluate the method in the settings of using pixel-level labeled data and unlabeled data, as well as using pixel-level labeled data and image-level labeled data, respectively. Next, we conduct various ablation studies to justify our design choices. Lastly, we conduct more comparative experiments in specific settings. ", + "bbox": [ + 174, + 694, + 825, + 750 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "To evaluate the proposed method, we conduct the main experiments and ablation studies on the PASCAL VOC 2012 dataset (VOC12) (Everingham et al., 2015), which contains 21 classes including background. The standard VOC12 dataset has 1,449 images as the training set and 1,456 images as the validation set. We randomly subsample 1/2, 1/4, 1/8, and 1/16 of images in the standard training set to construct the pixel-level labeled data. The remaining images in the standard training set, together with the images in the augmented set (Hariharan et al., 2011) (around $9 \\mathrm { k }$ images), are used as unlabeled or image-level labeled data. To further verify the effectiveness of the proposed method, we also conduct experiments on the COCO dataset (Lin et al., 2014). The COCO dataset has 118,287 images as the training set, and 5,000 images as the validation set. We evaluate on the 80 foreground classes and the background, as in the object detection task. As the COCO dataset is larger than VOC12, we randomly subsample smaller ratios, 1/32, 1/64, 1/128, 1/256, 1/512, of images from the training set to construct the pixel-level labeled data. The remaining images in the training set are used as unlabeled data or image-level labeled data. We evaluate the performance using the standard mean intersection-over-union (mIoU) metric. Implementation details can be found in Appendix B. ", + "bbox": [ + 174, + 757, + 825, + 924 + ], + "page_idx": 4 + }, + { + "type": "image", + "img_path": "images/97a7070768c40a2ee90f5b98acf7964c79ffade7edbbd0d82e10f3742a8ab33c.jpg", + "image_caption": [ + "Figure 3: Improvement over the strong supervised baseline, in a semi-supervised setting (w/ unlabeled data) on VOC12 val (left) and COCO val (right). " + ], + "image_footnote": [], + "bbox": [ + 204, + 103, + 800, + 256 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 305, + 825, + 347 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.1 EXPERIMENTS USING PIXEL-LEVEL LABELED DATA AND UNLABELED DATA ", + "text_level": 1, + "bbox": [ + 174, + 369, + 733, + 382 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Improvement over a strong baseline. We first demonstrate the effectiveness of the proposed method by comparing it with the DeepLabv $^ { 3 + }$ model trained with only the pixel-level labeled data. As shown in Figure 3 (a), the proposed method consistently outperforms the supervised training baseline on VOC12, by utilizing the pixel-level labeled data and the unlabeled data. The proposed method not only achieves a large performance boost in the low-data regime (when only $6 . 2 5 \\%$ pixellevel labels available), but also improves the performance when the entire training set (1.4k images) is available. In Figure 3 (b), we again observe consistent improvement on the COCO dataset. ", + "bbox": [ + 174, + 390, + 825, + 488 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Comparisons with the others. Next, we compare the proposed method with recent state of the arts on both the public $1 . 4 \\mathrm { k } / 9 \\mathrm { k }$ split (in Table 1) and the created low-data splits (in Table 2), on VOC12. Our method compares favorably with the others. ", + "bbox": [ + 174, + 492, + 823, + 535 + ], + "page_idx": 5 + }, + { + "type": "table", + "img_path": "images/7dc01ac8aa35a31e2e6ee4fc30ab2876ef40c10e92c233a07ab5670dfc41cdf0.jpg", + "table_caption": [ + "Table 1: Comparison with state of the arts on VOC12 val set (w/ pixel-level labeled data and unlabeled data). We use the official training set (1.4k) as labeled data, and the augmented set (9k) as unlabeled data. " + ], + "table_footnote": [], + "table_body": "
MethodNetworkmIoU (%)
GANSeg (Souly et al., 2017)VGG1664.10
AdvSemSeg (Hung et al., 2018)ResNet-10168.40
CCT (Ouali et al., 2020)ResNet-5069.40
PseudoSeg (Ours)ResNet-5071.00
PseudoSeg (Ours)ResNet-10173.23
", + "bbox": [ + 290, + 595, + 707, + 703 + ], + "page_idx": 5 + }, + { + "type": "table", + "img_path": "images/9203a0f288452039135c22a7ed17100e16fb37d08c9e0dc9a4259bcec589a2f7.jpg", + "table_caption": [ + "Table 2: Comparison with state of the arts on VOC12 val set (w/ pixel-level labeled data and unlabeled data) using low-data splits. The exact numbers of pixel-labeled images are shown in brackets. All the methods use ResNet-101 as backbone except CCT (Ouali et al., 2020), which uses ResNet-50. \\* indicates implementation from Ke et al. (2020), \\*\\* indicates implementation from French et al. (2020). " + ], + "table_footnote": [], + "table_body": "
Method1/2 (732)1/4 (366)1/8 (183)1/16 (92)
AdvSemSeg (Hung et al., 2018)65.2759.9747.5839.69
CCT (Ouali et al., 2020)62.1058.8047.6033.10
*MT (Tarvainen & Valpola, 2017)69.1663.0155.8148.70
GCT (Ke et al., 2020)70.6764.7154.9846.04
**VAT (Miyato et al., 2018)63.3456.8849.3536.92
CutMix (French et al., 2020)69.8468.3663.2055.58
PseudoSeg (Ours)72.4169.1465.5057.60
", + "bbox": [ + 235, + 797, + 754, + 921 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/e591d5f2246b80ae34e3f3b7d110f34c16cf3c68f8df57d4c593602c1b0a3fc4.jpg", + "image_caption": [ + "Figure 4: Improvement over the strong supervised baseline, in a semi-supervised setting (w/ image-level labeled data) on VOC12 val (left) and COCO val (right). " + ], + "image_footnote": [], + "bbox": [ + 215, + 103, + 802, + 250 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/eb7b923cd88434032cfbcc8bcc469b576f879830405bd525e8c663d309aec896.jpg", + "table_caption": [ + "Table 3: Comparison with state of the arts on VOC12 val set (w/ pixel-level labeled data and image-level labeled data). We use the official training set (1.4k) as labeled data, and the augmented set (9k) as image-level labeled data. " + ], + "table_footnote": [], + "table_body": "
MethodModelNetworkmIoU (%)
WSSN (Papandreou et al., 2015)DeepLab-CRFVGG1664.60
GAIN (Li et al., 2018)DeepLab-CRF-LFOVVGG1660.50
MDC (Wei et al.,2018)DeepLab-CRF-LFOVVGG1665.70
DSRG (Huang et al.,2018)DeepLabv2VGG1664.30
GANSeg (Souly et al.,2017)FCNVGG1665.80
FickleNet (Lee et al.,2019)DeepLabv2ResNet-10165.80
CCT (Ouali et al., 2020)PSP-NetResNet-5073.20
PseudoSeg (Ours)DeepLabv3+ResNet-5073.80
", + "bbox": [ + 176, + 352, + 550, + 446 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/bed5989fe8e0872d448e030d1d8d57de1db612740b64cbb18930fedff50be1c6.jpg", + "table_caption": [ + "Table 4: Comparison with state of the arts on VOC12 val set with pixel-level labeled data and image-level labeled data. Four ratios of pixel-level labeled examples are tested. Both CCT (Ouali et al., 2020) and our method use ResNet-50 as backbone. " + ], + "table_footnote": [], + "table_body": "
SplitCCTPseudoSeg
1/266.8073.51
1/467.6071.79
1/862.5069.15
1/1651.8065.44
", + "bbox": [ + 604, + 385, + 789, + 463 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Similar to semi-supervised learning using pixel-level labeled data and unlabeled data, we first demonstrate the efficacy of our method by comparing it with a strong supervised baseline. As shown in Figure 4, the proposed method consistently improves the strong baseline on both datasets. In Table 3, we evaluate on the public $1 . 4 \\mathrm { k } / 9 \\mathrm { k }$ split. The proposed method compares favorably with the other methods. Moreover, we further compare to best compared CCT on the created low-data splits (in Table 4). Both experiments show that the proposed PseudoSeg is more robust than the compared method given less data. On all splits on both datasets, using pixel-level labeled data and image-labeled data shows higher mIoU than the setting using pixel-level labeled data and unlabeled data. ", + "bbox": [ + 173, + 505, + 825, + 630 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.3 ABLATION STUDY ", + "text_level": 1, + "bbox": [ + 176, + 648, + 339, + 662 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "In this section, we conduct extensive ablation experiments on VOC12 to validate our design choices. ", + "bbox": [ + 173, + 672, + 821, + 688 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "How to construct pseudo label? We investigate the effectiveness of the proposed pseudo labeling. Table 5 demonstrates quantitative results, indicating that using either decoder output or SGC alone gives an inferior performance. Naively using decoder output as pseudo labels can hardly work well. The proposed fusion consistently performs better, either with or without additional image-level labels. To further answer why our pseudo labels are effective, we study from the model calibration perspective. We measure the expected calibration error (ECE) (Guo et al., 2017) scores of all the intermediate steps and other fusion variants. As shown in Figure 5 (a), the proposed fusion strategy (denoted as G in the figure) achieves the lowest ECE scores, indicating that the significance of jointly using normalization with sharpening (see equation 4) compared with other fusion alternatives. We hypothesize using well-calibrated soft labels makes model training less affected by label noises. The comprehensive calibration study is left as a future exploration direction. ", + "bbox": [ + 174, + 691, + 825, + 844 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Using hypercolumn feature or not? In Figure 5 (b), we study the effectiveness of using hypercolumn features instead of the last feature maps in equation 3. We conduct the experiments on the 1/16 split of VOC12. As we can see, hypercolumn features substantially improve performance. ", + "bbox": [ + 174, + 849, + 825, + 891 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Soft or hard pseudo label? How to utilize predictions as pseudo labels remains an active question in SSL. Next, we study whether we should use soft or hard one-hot pseudo labels. We conduct the experiments in the setting where pixel-level labeled data and image-level labeled data are available. As shown in Figure 5 (c), using all predictions as soft pseudo label yields better performance than selecting confident predictions. This suggests that well-calibrated soft pseudo labels might be important in segmentation than over-simplified confidence thresholding. ", + "bbox": [ + 173, + 895, + 823, + 924 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/1428232eb8af7478e83809145a4cde79932a04e250f1fcd9c83f6c06df1cca51.jpg", + "table_caption": [ + "Table 5: Comparison to alternative pseudo labeling strategies. We conduct experiments using 1/4, 1/8, 1/16 of the pixel-level labeled data, the exact numbers of images are shown in the brackets. " + ], + "table_footnote": [], + "table_body": "
SourceUsing image-level labels1/4 (366)1/8 (183)1/16 (92)
Decoder only70.2269.3553.20
SGC only67.0762.6153.42
Calibrated fusion73.7973.1367.06
Decoder only73.9573.0567.54
SGC only71.7367.5764.26
Calibrated fusion75.2974.7071.22
", + "bbox": [ + 235, + 132, + 756, + 244 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/22e308dca704e89de560810e1f3d6d1ababe29fdb06d4ffaa1dc2fe834ea9bc0.jpg", + "image_caption": [ + "Figure 5: Ablation studies on different factors. See Section 4.3 for complete details. " + ], + "image_footnote": [], + "bbox": [ + 174, + 260, + 823, + 535 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 571, + 825, + 628 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Temperature sharpening or not? We study the effect of temperature sharpening in equation 4. We conduct the experiments in the setting where pixel-level labeled data and image-level labeled data are available. As shown in Figure 5 (d), temperature sharpening shows consistent and clear improvements. ", + "bbox": [ + 174, + 632, + 823, + 688 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Strong augmentation strength. In Figure 5 (e), we study the effects of color jittering in the strong augmentation. The magnitude of jittering strength is controlled by a scalar (Chen et al., 2020b). We conduct the experiments in the setting where pixel-level labeled data and unlabeled data are available. If the magnitude is too small, performance drops significantly, suggesting the importance of strong augmentation. ", + "bbox": [ + 174, + 693, + 825, + 762 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Impact of different feature backbones. In Figure 5 (f), we compare the performance of using ResNet-50, ResNet-101, and Xception-65 as backbone architectures, respectively. We conduct the experiments in the setting where pixel-level labeled data and unlabeled data are available. As we can see, the proposed method consistently improves the baseline by a substantial margin across different backbone architectures. ", + "bbox": [ + 174, + 767, + 825, + 837 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "4.4 COMPARISON WITH SELF-TRAINING ", + "text_level": 1, + "bbox": [ + 176, + 858, + 462, + 871 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Several recent approaches (Chen et al., 2020a; Zoph et al., 2020) exploit the Student-Teacher selftraining idea to improve the performance with additional unlabeled data. However, these methods only apply self-training in the high-data regime (i.e., sufficient pixel-labeled data to train teachers). ", + "bbox": [ + 176, + 882, + 823, + 924 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/2715b1a36b360cce6e5e8e954ddad46481951e5efe9bfac4ffd4e9083d94e9a5.jpg", + "table_caption": [ + "Table 6: Comparison with self-training. We use our supervised baseline as the teacher to generate one-hot pseudo labels, following Zoph et al. (2020). " + ], + "table_footnote": [], + "table_body": "
MethodUsing image-level labels1/4 (366)1/8 (183)1/16 (92)
Supervised (Teacher)70.2064.0056.03
Self-training (Student)172.8569.8864.20
PseudoSeg (Ours)-73.7973.1367.06
PseudoSeg (Ours)75.2974.7071.22
", + "bbox": [ + 220, + 132, + 772, + 218 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Here we compare these methods in the low-data regimes, where we focus on. To generate offline pseudo labels, we closely follow segmentation experiments in Zoph et al. (2020): pixels with a confidence score higher than 0.5 will be used as one-hot pseudo labels, while the remaining are treated as ignored regions. This step is considered important to suppress noisy labels. A student model is then trained using the combination of unlabeled data in VOC12 train and augmented sets with generated one-hot pseudo labels and all the available pixel-level labeled data. As shown in Table 6, although the self-training pretty well improves over the supervised baseline, it is inferior to the proposed method 2. We conjecture that the teacher model usually produces low confidence scores to pixels around boundaries, so pseudo labels of these pixels are filtered in student training. However, boundary pixels are important for improving the performance of segmentation (Kirillov et al., 2020). On the other hand, the design of our method (online soft pseudo labeling process) bypass this challenge. We will conduct more verification of this hypothesis in future work. ", + "bbox": [ + 173, + 233, + 825, + 400 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "5 IMPROVING THE FULLY-SUPERVISED METHOD WITH ADDITIONAL DAT ", + "text_level": 1, + "bbox": [ + 194, + 417, + 691, + 430 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We have validated the effectiveness of the proposed method in the low-data regime. In this section, we want to explore whether the proposed method can further improve supervised training in the full training set using additional data. We use the training set (1.4k) in VOC12 as the pixel-level labeled data. The additional data contains additional VOC 9k $( V _ { 9 k } )$ , COCO training set $( C _ { t r } )$ , and COCO unlabeled data $( C _ { u } )$ . More training details can be found in Appendix D. As shown in Table 7, the proposed PseudoSeg is able to improve upon the supervised baseline even in the high-data regime, using additional unlabeled or image-level labeled data. ", + "bbox": [ + 174, + 439, + 825, + 537 + ], + "page_idx": 8 + }, + { + "type": "table", + "img_path": "images/ff061b56d6ee624a1ae28039431568030c3c487b3a4ade5abd9338e0c6c7e09f.jpg", + "table_caption": [ + "Table 7: Improving fully supervised model with extra data. No test-time augmentation is used. " + ], + "table_footnote": [], + "table_body": "
MethodBaseline丨PseudoSeg (w/o image-level labels)丨PseudoSeg (w/image-level labels)
Extra data1Ctr+CuCtr + Cu + V9kCtrCtr +Vgk
mIoU (%)76.9677.40 (+0.44)78.20 (+1.24)77.80 (+0.84)79.28 (+2.32)
", + "bbox": [ + 187, + 568, + 803, + 627 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "5 DISCUSSION AND CONCLUSION ", + "text_level": 1, + "bbox": [ + 176, + 648, + 470, + 665 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "The key to the good performance of our method in the low-data regime is the novel re-design of pseudo-labeling strategy, which pursues a different decision mechanism from weakly-supervised localization to “remedy” weak predictions from segmentation head. Then augmentation consistency training progressively improves segmentation head quality. For the first time, we demonstrate that, with well-calibrated soft pseudo labels, utilizing unlabeled or image-labeled data significantly improves segmentation at low-data regimes. Further exploration of fusing stronger and better-calibrated pseudo labels worth more study as future directions (e.g., multi-scaling). Although color jittering works within our method as strong data augmentation, we have extensively explored geometric augmentations (leveraging STN (Jaderberg et al., 2015) to align pixels in pseudo labels and strongly-augmented predictions) for segmentation but find it not helpful. We believe data augmentation needs re-thinking beyond current success in classification for segmentation usage. ", + "bbox": [ + 173, + 670, + 825, + 823 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "ACKNOWLEDGEMENT ", + "text_level": 1, + "bbox": [ + 176, + 845, + 357, + 858 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We thank Liang-Chieh Chen and Barret Zoph for their valuable comments. ", + "bbox": [ + 174, + 875, + 663, + 888 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 174, + 103, + 285, + 117 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jiwoon Ahn and Suha Kwak. Learning pixel-level semantic affinity with image-level supervision for weakly supervised semantic segmentation. In CVPR, 2018. 3, 4 ", + "bbox": [ + 176, + 125, + 821, + 151 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jiwoon Ahn, Sunghyun Cho, and Suha Kwak. Weakly supervised learning of instance segmentation with inter-pixel relations. In CVPR, 2019. 4, 14 ", + "bbox": [ + 173, + 159, + 820, + 185 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "David Berthelot, Nicholas Carlini, Ekin D Cubuk, Alex Kurakin, Kihyuk Sohn, Han Zhang, and Colin Raffel. Remixmatch: Semi-supervised learning with distribution matching and augmentation anchoring. In ICLR, 2019a. 2 ", + "bbox": [ + 171, + 194, + 821, + 233 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "David Berthelot, Nicholas Carlini, Ian Goodfellow, Nicolas Papernot, Avital Oliver, and Colin A Raffel. Mixmatch: A holistic approach to semi-supervised learning. In NeurIPS, 2019b. 1, 2, 5 ", + "bbox": [ + 173, + 242, + 821, + 270 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Liang-Chieh Chen, Yukun Zhu, George Papandreou, Florian Schroff, and Hartwig Adam. Encoder-decoder with atrous separable convolution for semantic image segmentation. In ECCV, 2018. 1, 3, 15 ", + "bbox": [ + 171, + 277, + 823, + 304 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Liang-Chieh Chen, Raphael Gontijo Lopes, Bowen Cheng, Maxwell D Collins, Ekin D Cubuk, Barret Zoph, Hartwig Adam, and Jonathon Shlens. Naive-student: Leveraging semi-supervised learning in video sequences for urban scene segmentation. In ECCV, 2020a. 1, 2, 8 ", + "bbox": [ + 174, + 313, + 825, + 352 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ting Chen, Simon Kornblith, Mohammad Norouzi, and Geoffrey Hinton. A simple framework for contrastive learning of visual representations. In ICML, 2020b. 5, 8 ", + "bbox": [ + 176, + 361, + 821, + 387 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Franc¸ois Chollet. Xception: Deep learning with depthwise separable convolutions. In CVPR, 2017. 13 ", + "bbox": [ + 171, + 395, + 781, + 410 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Marius Cordts, Mohamed Omran, Sebastian Ramos, Timo Rehfeld, Markus Enzweiler, Rodrigo Benenson, Uwe Franke, Stefan Roth, and Bernt Schiele. The cityscapes dataset for semantic urban scene understanding. In CVPR, 2016. 15 ", + "bbox": [ + 174, + 417, + 823, + 457 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jifeng Dai, Kaiming He, and Jian Sun. Boxsup: Exploiting bounding boxes to supervise convolutional networks for semantic segmentation. In ICCV, 2015. 2 ", + "bbox": [ + 173, + 465, + 823, + 492 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Terrance DeVries and Graham W Taylor. Improved regularization of convolutional neural networks with cutout. arXiv preprint arXiv:1708.04552, 2017. 5 ", + "bbox": [ + 173, + 501, + 823, + 527 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Mark Everingham, SM Ali Eslami, Luc Van Gool, Christopher KI Williams, John Winn, and Andrew Zisserman. The pascal visual object classes challenge: A retrospective. IJCV, 111(1):98–136, 2015. 5 ", + "bbox": [ + 174, + 535, + 820, + 563 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Geoff French, Timo Aila, Samuli Laine, Michal Mackiewicz, and Graham Finlayson. Semi-supervised semantic segmentation needs strong, high-dimensional perturbations. In BMVC, 2020. 2, 6, 15 ", + "bbox": [ + 176, + 570, + 820, + 598 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Yves Grandvalet and Yoshua Bengio. Semi-supervised learning by entropy minimization. In NeurIPS, 2005. 2 ", + "bbox": [ + 174, + 606, + 821, + 621 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Chuan Guo, Geoff Pleiss, Yu Sun, and Kilian Q Weinberger. On calibration of modern neural networks. ICML, 2017. 7 ", + "bbox": [ + 174, + 628, + 823, + 656 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Bharath Hariharan, Pablo Arbelaez, Lubomir Bourdev, Subhransu Maji, and Jitendra Malik. Semantic contours ´ from inverse detectors. In ICCV, 2011. 5 ", + "bbox": [ + 173, + 664, + 823, + 690 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Bharath Hariharan, Pablo Arbelaez, Ross Girshick, and Jitendra Malik. Hypercolumns for object segmentation ´ and fine-grained localization. In CVPR, 2015. 4 ", + "bbox": [ + 176, + 699, + 823, + 726 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Qibin Hou, PengTao Jiang, Yunchao Wei, and Ming-Ming Cheng. Self-erasing network for integral object attention. In NeurIPS, 2018. 3, 4 ", + "bbox": [ + 176, + 734, + 821, + 761 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Zilong Huang, Xinggang Wang, Jiasi Wang, Wenyu Liu, and Jingdong Wang. Weakly-supervised semantic segmentation network with deep seeded region growing. In CVPR, 2018. 3, 7 ", + "bbox": [ + 173, + 768, + 823, + 796 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Wei-Chih Hung, Yi-Hsuan Tsai, Yan-Ting Liou, Yen-Yu Lin, and Ming-Hsuan Yang. Adversarial learning for semi-supervised semantic segmentation. In BMVC, 2018. 2, 6 ", + "bbox": [ + 173, + 804, + 821, + 832 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Max Jaderberg, Karen Simonyan, Andrew Zisserman, et al. Spatial transformer networks. In NeurIPS, 2015. 9 ", + "bbox": [ + 174, + 840, + 823, + 854 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Peng-Tao Jiang, Qibin Hou, Yang Cao, Ming-Ming Cheng, Yunchao Wei, and Hong-Kai Xiong. Integral object mining via online attention accumulation. In ICCV, 2019. 14 ", + "bbox": [ + 173, + 862, + 821, + 888 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Zhanghan Ke, Di Qiu, Kaican Li, Qiong Yan, and Rynson WH Lau. Guided collaborative training for pixel-wise semi-supervised learning. In ECCV, 2020. 2, 6 ", + "bbox": [ + 171, + 897, + 825, + 924 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jongmok Kim, Jooyoung Jang, and Hyunwoo Park. Structured consistency loss for semi-supervised semantic segmentation. arXiv preprint arXiv:2001.04647, 2020. 2 \nAlexander Kirillov, Yuxin Wu, Kaiming He, and Ross Girshick. Pointrend: Image segmentation as rendering. In CVPR, 2020. 9 \nPhilipp Krahenb ¨ uhl and Vladlen Koltun. Efficient inference in fully connected crfs with gaussian edge poten- ¨ tials. In NeurIPS, 2011. 3, 4 \nChia-Wen Kuo, Chih-Yao Ma, Jia-Bin Huang, and Zsolt Kira. Featmatch: Feature-based augmentation for semi-supervised learning. In ECCV, 2020. 1 \nSamuli Laine and Timo Aila. Temporal ensembling for semi-supervised learning. In ICLR, 2016. 2 \nDong-Hyun Lee. Pseudo-label: The simple and efficient semi-supervised learning method for deep neural networks. In ICML Workshop, 2013. 2 \nJungbeom Lee, Eunji Kim, Sungmin Lee, Jangho Lee, and Sungroh Yoon. Ficklenet: Weakly and semisupervised semantic image segmentation using stochastic inference. In CVPR, 2019. 7, 14 \nKunpeng Li, Ziyan Wu, Kuan-Chuan Peng, Jan Ernst, and Yun Fu. Tell me where to look: Guided attention inference network. In CVPR, 2018. 3, 7 \nDi Lin, Jifeng Dai, Jiaya Jia, Kaiming He, and Jian Sun. Scribblesup: Scribble-supervised convolutional networks for semantic segmentation. In CVPR, 2016. 2 \nTsung-Yi Lin, Michael Maire, Serge Belongie, James Hays, Pietro Perona, Deva Ramanan, Piotr Dollar, and ´ C Lawrence Zitnick. Microsoft coco: Common objects in context. In ECCV, 2014. 5 \nWenfeng Luo and Meng Yang. Semi-supervised semantic segmentation via strong-weak dual-branch network. In ECCV, 2020. 2 \nSudhanshu Mittal, Maxim Tatarchenko, and Thomas Brox. Semi-supervised semantic segmentation with highand low-level consistency. TPAMI, 2019. 2 \nTakeru Miyato, Shin-ichi Maeda, Masanori Koyama, and Shin Ishii. Virtual adversarial training: a regularization method for supervised and semi-supervised learning. TPAMI, 41(8):1979–1993, 2018. 2, 6 \nSeong Joon Oh, Rodrigo Benenson, Anna Khoreva, Zeynep Akata, Mario Fritz, and Bernt Schiele. Exploiting saliency for object segmentation from image level labels. In CVPR, 2017. 3 \nYassine Ouali, Celine Hudelot, and Myriam Tami. Semi-supervised semantic segmentation with cross- ´ consistency training. In CVPR, 2020. 2, 6, 7 \nGeorge Papandreou, Liang-Chieh Chen, Kevin P Murphy, and Alan L Yuille. Weakly-and semi-supervised learning of a deep convolutional network for semantic image segmentation. In ICCV, 2015. 7 \nOlga 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. IJCV, 115(3):211–252, 2015. 13 \nMehdi Sajjadi, Mehran Javanmardi, and Tolga Tasdizen. Regularization with stochastic transformations and perturbations for deep semi-supervised learning. In NeurIPS, 2016. 2 \nRamprasaath R Selvaraju, Michael Cogswell, Abhishek Das, Ramakrishna Vedantam, Devi Parikh, and Dhruv Batra. Grad-cam: Visual explanations from deep networks via gradient-based localization. In ICCV, 2017. 4 \nKihyuk Sohn, David Berthelot, Chun-Liang Li, Zizhao Zhang, Nicholas Carlini, Ekin D Cubuk, Alex Kurakin, Han Zhang, and Colin Raffel. Fixmatch: Simplifying semi-supervised learning with consistency and confidence. In NeurIPS, 2020a. 1, 2, 4 \nKihyuk Sohn, Zizhao Zhang, Chun-Liang Li, Han Zhang, Chen-Yu Lee, and Tomas Pfister. A simple semisupervised learning framework for object detection. arXiv preprint arXiv:2005.04757, 2020b. 4 \nNasim Souly, Concetto Spampinato, and Mubarak Shah. Semi supervised semantic segmentation using generative adversarial network. In ICCV, 2017. 2, 6, 7 \nGuolei Sun, Wenguan Wang, Jifeng Dai, and Luc Van Gool. Mining cross-image semantics for weakly supervised semantic segmentation. In ECCV, 2020. 3, 4, 14 \nAntti Tarvainen and Harri Valpola. Mean teachers are better role models: Weight-averaged consistency targets improve semi-supervised deep learning results. In NeurIPS, 2017. 1, 2, 6 \nAshish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Łukasz Kaiser, and Illia Polosukhin. Attention is all you need. In NeurIPS, 2017. 4 \nYude Wang, Jie Zhang, Meina Kan, Shiguang Shan, and Xilin Chen. Self-supervised equivariant attention mechanism for weakly supervised semantic segmentation. In CVPR, 2020. 3, 14 \nYunchao Wei, Jiashi Feng, Xiaodan Liang, Ming-Ming Cheng, Yao Zhao, and Shuicheng Yan. Object region mining with adversarial erasing: A simple classification to semantic segmentation approach. In CVPR, 2017. 3, 4 \nYunchao Wei, Huaxin Xiao, Honghui Shi, Zequn Jie, Jiashi Feng, and Thomas S Huang. Revisiting dilated convolution: A simple approach for weakly-and semi-supervised semantic segmentation. In CVPR, 2018. 3, 7 \nQizhe Xie, Zihang Dai, Eduard Hovy, Minh-Thang Luong, and Quoc V. Le. Unsupervised data augmentation for consistency training. arXiv preprint arXiv:1904.12848, 2019. 1 \nQizhe Xie, Minh-Thang Luong, Eduard Hovy, and Quoc V Le. Self-training with noisy student improves imagenet classification. In CVPR, 2020. 4 \nHang Zhang, Chongruo Wu, Zhongyue Zhang, Yi Zhu, Zhi Zhang, Haibin Lin, Yue Sun, Tong He, Jonas Muller, R. Manmatha, Mu Li, and Alexander Smola. Resnest: Split-attention networks. arXiv preprint arXiv:2004.08955, 2020a. 1 \nXiaolin Zhang, Yunchao Wei, and Yi Yang. Inter-image communication for weakly supervised localization. In ECCV, 2020b. 3 \nBolei Zhou, Aditya Khosla, Agata Lapedriza, Aude Oliva, and Antonio Torralba. Learning deep features for discriminative localization. In CVPR, 2016. 2, 4 \nYi Zhu, Zhongyue Zhang, Chongruo Wu, Zhi Zhang, Tong He, Hang Zhang, R Manmatha, Mu Li, and Alexander Smola. Improving semantic segmentation via self-training. arXiv preprint arXiv:2004.14960, 2020. 2 \nBarret Zoph, Golnaz Ghiasi, Tsung-Yi Lin, Yin Cui, Hanxiao Liu, Ekin D Cubuk, and Quoc V Le. Rethinking pre-training and self-training. arXiv preprint arXiv:2006.06882, 2020. 1, 2, 4, 8, 9 ", + "bbox": [ + 171, + 87, + 826, + 929 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 93, + 826, + 574 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "APPENDIX ", + "text_level": 1, + "bbox": [ + 176, + 103, + 263, + 117 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "A SELF-ATTENTION GRAD-CAM ", + "text_level": 1, + "bbox": [ + 178, + 137, + 418, + 151 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "We elaborate the detailed pipeline of generating Self-attention Grad-CAM (SGC) maps (equation 3) in Figure 6. To construct the hypercolumn feature, we extract the feature maps from the last two convolutional stages of the backbone network and concatenate them together. We then project the hypercolumn feature to two separate low-dimension embedding spaces to construct “key” and “query”, using two $1 \\times 1$ convolutional layers. An attention matrix can then be computed via matrix multiplication of “key” and “query”. To construct “value”, we compute Grad-CAM for each foreground class and then concatenate them together. This results in a $H \\times W \\times ( C - 1 )$ score map, where the maximum score of each category is normalized to one separately. We then use image-level labels (either from classifier prediction or ground truth annotation) to set the score maps of non-existing classes to be zero. For each pixel localization, we use one to subtract the maximum score to construct the background score map, which is then concatenated with the foreground score maps to form “value” $( H \\times W \\times C )$ . The attention score matrix can then be used to reweight and propagate the scores in “value”. The propagated score is added back to the “value” score map, and the pass through a $1 \\times 1$ convolution (w/ batch normalization) to output the SGC map. ", + "bbox": [ + 173, + 166, + 825, + 359 + ], + "page_idx": 12 + }, + { + "type": "image", + "img_path": "images/e601a68b369dd2bea5df204593cc86e5c58bb436da07925d9f96859b296a94ec.jpg", + "image_caption": [ + "Figure 6: Diagram of Self-attention Grad-CAM (SGC) . " + ], + "image_footnote": [], + "bbox": [ + 178, + 380, + 825, + 523 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "B IMPLEMENTATION DETAILS ", + "text_level": 1, + "bbox": [ + 176, + 588, + 395, + 602 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "We implement our method on top of the publicly available official DeepLab codebase.3 Unless specified, we adopt the DeepLabv $^ { 3 + }$ model with Xception-65 (Chollet, 2017) as the feature backbone, which is pre-trained on the ImageNet dataset (Russakovsky et al., 2015). We train our model following the default hyper-parameters (e.g., an initial learning rate of 0.007 with a polynomial learning rate decay schedule, a crop size of $5 1 3 \\times 5 1 3$ , and an encoder output stride of 16), using 16 GPUs 4. We use a batch size of 4 for each GPU for pixel-level labeled data, and 4 for unlabeled/image-level labeled data. For VOC12, we train the model for 30,000 iterations. For COCO, we train the model for 200,000 iterations. We set $\\gamma = 0 . 5$ and $T = 0 . 5$ unless specified. We do not apply any test time augmentations. ", + "bbox": [ + 173, + 616, + 825, + 742 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "C LOW-DATA SAMPLING IN PASCAL VOC 2012 ", + "text_level": 1, + "bbox": [ + 174, + 765, + 531, + 780 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Unlike random sampling in image classification, it is difficult to sample uniformly in a low-data case for semantic segmentation due to the imbalance of rare classes. To avoid the missing classes at extremely low data regimes, we repeat the random sampling process for 1/16 three times (while ensuring each class has a certain amount) and report the results. We use Split 1 in the main manuscript. All splits will be released to encourage reproducibility. The results of all the three splits are shown as in Table 8. ", + "bbox": [ + 174, + 792, + 825, + 876 + ], + "page_idx": 12 + }, + { + "type": "image", + "img_path": "images/43b7ca0d025624a2b1b4a19d13c29bcfbb2a797f53df2327a7d1cf85d90a40e5.jpg", + "image_caption": [ + "Figure 7: Training. For each network component, we show the loss supervision and the corresponding data. " + ], + "image_footnote": [], + "bbox": [ + 238, + 111, + 754, + 296 + ], + "page_idx": 13 + }, + { + "type": "table", + "img_path": "images/e9b82779e99eaed63ad8c809cc6d6dc842d8807f08589ccf327db27ce8cbd91e.jpg", + "table_caption": [ + "Table 8: Full results of 1/16 split in VOC12. " + ], + "table_footnote": [], + "table_body": "
MethodUsing image-level labelsSplit 1Split 2Split 3
Supervised56.0356.8755.92
PseudoSeg (Ours)167.0664.1266.09
PseudoSeg (Ours)71.2268.1169.72
", + "bbox": [ + 243, + 373, + 754, + 445 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "D HIGH-DATA EXPERIMENTAL SETTINGS ", + "text_level": 1, + "bbox": [ + 176, + 472, + 475, + 487 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Here we provide more details about the experiments in Section 4.5. Since we have a lot more unlabeled/image-level labeled data, we adopt a longer training schedule (90,000 iterations) 5. We also adopt a slightly different fusion strategy in this setting by using $T = 0 . 7$ and $\\gamma = 0 . 3$ . ", + "bbox": [ + 176, + 500, + 825, + 541 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "E COMPARISON WITH WEAKLY-SUPERVISED APPROACHES ", + "text_level": 1, + "bbox": [ + 174, + 563, + 588, + 575 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "In Table 9, we benchmark recent weakly supervised semantic segmentation performance on PASCAL VOC 2012 val set. Instead of enforcing the consistency between different augmented images as we do, these approaches tackle the semantic segmentation task from a different perspective, by exploiting the weaker annotations (image-level labels). As we can see, by exploiting the imagelevel labels with careful designs, weakly-supervised semantic segmentation methods could achieve reasonably well performance. We believe that both perspectives are feasible and promising for low-data regime semantic segmentation tasks, and complementary to each other. Therefore, these designs could be potentially integrated into our framework to generate better pseudo labels, which leads to improved performance. ", + "bbox": [ + 173, + 587, + 825, + 713 + ], + "page_idx": 13 + }, + { + "type": "table", + "img_path": "images/4d0847f24656dd0475d73e7048e0a6968e21e34dda181eb6e7f0646acb151e5a.jpg", + "table_caption": [ + "Table 9: Benchmarking state-of-the-art weakly supervised semantic segmentation methods. All the methods use image-level labels from VOC12 training (1.4k) and augmented (9k) sets. " + ], + "table_footnote": [], + "table_body": "
MethodPixel-level labeled datamIoU (%)
FickleNet (Lee et al., 2019)64.9
IRNet (Ahn et al., 2019)63.5
OAA+ (Jiang et al., 2019)65.2
SEAM (Wang et al., 2020)64.5
MCIS (Sun et al., 2020)66.2
PseudoSeg (Ours)1/16 (92)71.22
", + "bbox": [ + 266, + 758, + 730, + 880 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "F PERFORMANCE ANALYSIS FOR TEMPERATURE SHARPENING", + "text_level": 1, + "bbox": [ + 181, + 104, + 614, + 117 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "We conduct an additional performance analysis for temporal sharpening. We conduct experiments over T on the 1/16 split of VOC using pixel-level labeled data and image-level labeled data. As shown in Table 10, adopting a $T < 1$ for distribution sharpening generally leads to improved performance. ", + "bbox": [ + 173, + 128, + 825, + 185 + ], + "page_idx": 14 + }, + { + "type": "table", + "img_path": "images/b8c478af059105baa12a29931140f43e29439d24d1c3e40c9ea022b42ed5c14a.jpg", + "table_caption": [ + "Table 10: Performance analysis over T. " + ], + "table_footnote": [], + "table_body": "
Temperature (T)mIoU (%)
0.171.11
0.370.11
0.5 (default)71.22
0.772.37
1.0 (no sharpening)68.15
", + "bbox": [ + 377, + 213, + 616, + 313 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "G EXPERIMENTS ON CITYSCAPES ", + "text_level": 1, + "bbox": [ + 176, + 327, + 423, + 342 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "In this section, we conduct additional experiments on the Cityscapes dataset (Cordts et al., 2016). The Cityscapes dataset contains 50 real-world driving sequences. Among these video sequences, 2,975 frames are selected as the training set, and 500 frames are selected as the validation set. Following previous common practice, we evaluate on 19 semantic classes. ", + "bbox": [ + 173, + 353, + 825, + 410 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Comparison with state of the art. We compare our method with the current state-of-the-art method (French et al., 2020), in the setting of using pixel-level labeled and unlabeled data. We randomly subsample 1/4, 1/8, and 1/30 of the training set to construct the pixel-level labeled data, using the first random seed provided by French et al. (2020). Both French et al. (2020) and our method use ResNet-101 as the feature backbone and DeepLabv $^ { 3 + }$ (Chen et al., 2018) as the segmentation model. As shown in Table 11, the proposed method achieves promising results on all the three label ratios. ", + "bbox": [ + 173, + 414, + 825, + 511 + ], + "page_idx": 14 + }, + { + "type": "table", + "img_path": "images/614e49f5ab8345f6334ef24d10e80e6811aa3249760ac77af38650c91eb5769a.jpg", + "table_caption": [ + "Table 11: Experiments on Cityscapes (w/ pixel-level labeled data and unlabeled data). " + ], + "table_footnote": [], + "table_body": "
Method1/4 (744)1/8 (372)1/30 (100)
CutMix (French et al., 2020)68.3365.8255.71
PseudoSeg (Ours)72.3669.8160.96
", + "bbox": [ + 263, + 539, + 728, + 597 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Per-class performance analysis. Next, we provide per-class performance break down analysis. We compare our method with the supervised baseline on the 1/30 split, using pixel-level labeled data and unlabeled data. As shown in Table 12, the distribution of the labeled pixels is severely imbalanced. Although our method does not in particular address the data imbalance issue, our method improves upon the supervised baseline on most of the classes (except for “Wall” and “Pole”). ", + "bbox": [ + 173, + 609, + 825, + 681 + ], + "page_idx": 14 + }, + { + "type": "table", + "img_path": "images/d5a02c39eb789c1b3d3f8abc44df37bc5e9229a425f57e56447e631dfb53e845.jpg", + "table_caption": [ + "Table 12: Per-class performance analysis on Cityscapes (w/ pixel-level labeled data and unlabeled data). " + ], + "table_footnote": [], + "table_body": "
Class Pixel ratio (%)Road 36.36Sidewalk 5.61Building 20.99Wall 0.53Fence 0.98Pole 1.19Traffic light 0.14Traffic sign 0.51Vegetation 19.61Terrain 1.29
Supervised PseudoSeg (Ours)96.0371.2687.5319.7529.1152.1950.1968.0989.9345.79
96.6475.0688.6319.6734.0951.7558.1969.9590.4350.48
ClassSkyPersonRiderCarTruckBusTrainMotorcycleBicycle
Pixel ratio (%)3.701.100.166.490.380.130.230.060.54
Supervised91.0174.1243.9189.917.6814.1917.7825.8669.88
PseudoSeg (Ours)92.9975.1646.0991.6020.3926.3022.1343.9671.30
", + "bbox": [ + 174, + 723, + 821, + 829 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Discussion. Although the scene layouts are quite similar for all the full images, it is still feasible to generate different image-level labels through a more aggressive geometric data augmentation (e.g., scaling, cropping, translation, etc.). In practice, standard segmentation preprocessing steps only crop a sub-region of the whole training images. It only contains partial images with a certain subset of image labels, making the training batches have diverse image-level labels (converted from pixellevel labels, in the fully-labeled+unlabeled setting). Moreover, in the fully-labeled+weakly-labeled setting, in practice, we can collect diverse Internet images and weakly label them, instead of weakly labeling images from Cityscapes. ", + "bbox": [ + 173, + 840, + 825, + 924 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 103, + 823, + 132 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "H QUALITATIVE RESULTS ", + "text_level": 1, + "bbox": [ + 176, + 148, + 364, + 164 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "We visualize several model prediction results for PASCAL VOC 2012 (Figure 8) and COCO (Figure 9). As we can see, the supervised baseline struggles to segment some of the categories and small objects, when trained in the low-data regime. On the other hand, PseudoSeg utilizes unlabeled or weakly-labeled data to generate more satisfying predictions. ", + "bbox": [ + 174, + 174, + 825, + 231 + ], + "page_idx": 15 + }, + { + "type": "image", + "img_path": "images/135161c6e5516766b8441d8a505a601aedeabfbaf045d2d39d9f58370fe109db.jpg", + "image_caption": [ + "Figure 8: Qualitative results of PASCAL VOC 2012. Models are trained with 1/16 pixel-level labeled data in the training set. " + ], + "image_footnote": [], + "bbox": [ + 174, + 94, + 816, + 906 + ], + "page_idx": 16 + }, + { + "type": "image", + "img_path": "images/bb1c575e94a6e95b23b16542a8e7720bafb4f0dec7ccae56a226c86d7f8ac3c3.jpg", + "image_caption": [ + "Figure 9: Qualitative results of COCO. Models are trained with 1/512 pixel-level labeled data in the training set. Note that white pixel in the ground truth indicates this pixel is not annotated for evaluation. " + ], + "image_footnote": [], + "bbox": [ + 174, + 101, + 816, + 887 + ], + "page_idx": 17 + } +] \ No newline at end of file diff --git a/parse/train/-TwO99rbVRu/-TwO99rbVRu_middle.json b/parse/train/-TwO99rbVRu/-TwO99rbVRu_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..959c48b2440738370d93503fe949f7508d6fe940 --- /dev/null +++ b/parse/train/-TwO99rbVRu/-TwO99rbVRu_middle.json @@ -0,0 +1,37906 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 456, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 459, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 459, + 97 + ], + "score": 1.0, + "content": "PSEUDOSEG: DESIGNING PSEUDO LABELS FOR", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 97, + 311, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 97, + 311, + 118 + ], + "score": 1.0, + "content": "SEMANTIC SEGMENTATION", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 114, + 134, + 382, + 169 + ], + "lines": [ + { + "bbox": [ + 115, + 134, + 382, + 147 + ], + "spans": [ + { + "bbox": [ + 115, + 134, + 150, + 147 + ], + "score": 1.0, + "content": "Yuliang", + "type": "text" + }, + { + "bbox": [ + 150, + 135, + 178, + 146 + ], + "score": 0.8, + "content": "\\mathbf { Z o u } ^ { 1 * }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 134, + 382, + 147 + ], + "score": 1.0, + "content": "Zizhao Zhang2 Han Zhang3 Chun-Liang Li2", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 114, + 145, + 309, + 159 + ], + "spans": [ + { + "bbox": [ + 114, + 145, + 309, + 159 + ], + "score": 1.0, + "content": "Xiao Bian2 Jia-Bin Huang1 Tomas Pfister2", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 157, + 318, + 170 + ], + "spans": [ + { + "bbox": [ + 115, + 157, + 318, + 170 + ], + "score": 1.0, + "content": "1Virginia Tech 2Google Cloud AI 3Google Brain", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "title", + "bbox": [ + 278, + 198, + 333, + 210 + ], + "lines": [ + { + "bbox": [ + 276, + 198, + 335, + 211 + ], + "spans": [ + { + "bbox": [ + 276, + 198, + 335, + 211 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 143, + 225, + 468, + 399 + ], + "lines": [ + { + "bbox": [ + 142, + 225, + 469, + 237 + ], + "spans": [ + { + "bbox": [ + 142, + 225, + 469, + 237 + ], + "score": 1.0, + "content": "Recent advances in semi-supervised learning (SSL) demonstrate that a combi-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 235, + 469, + 248 + ], + "spans": [ + { + "bbox": [ + 141, + 235, + 469, + 248 + ], + "score": 1.0, + "content": "nation of consistency regularization and pseudo-labeling can effectively improve", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 247, + 469, + 259 + ], + "spans": [ + { + "bbox": [ + 141, + 247, + 469, + 259 + ], + "score": 1.0, + "content": "image classification accuracy in the low-data regime. Compared to classifica-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 258, + 469, + 270 + ], + "spans": [ + { + "bbox": [ + 141, + 258, + 469, + 270 + ], + "score": 1.0, + "content": "tion, semantic segmentation tasks require much more intensive labeling costs.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 268, + 469, + 281 + ], + "spans": [ + { + "bbox": [ + 141, + 268, + 469, + 281 + ], + "score": 1.0, + "content": "Thus, these tasks greatly benefit from data-efficient training methods. However,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 279, + 469, + 292 + ], + "spans": [ + { + "bbox": [ + 141, + 279, + 469, + 292 + ], + "score": 1.0, + "content": "structured outputs in segmentation render particular difficulties (e.g., designing", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 290, + 469, + 303 + ], + "spans": [ + { + "bbox": [ + 141, + 290, + 469, + 303 + ], + "score": 1.0, + "content": "pseudo-labeling and augmentation) to apply existing SSL strategies. To address", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 300, + 469, + 314 + ], + "spans": [ + { + "bbox": [ + 141, + 300, + 469, + 314 + ], + "score": 1.0, + "content": "this problem, we present a simple and novel re-design of pseudo-labeling to gener-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 312, + 469, + 325 + ], + "spans": [ + { + "bbox": [ + 141, + 312, + 469, + 325 + ], + "score": 1.0, + "content": "ate well-calibrated structured pseudo labels for training with unlabeled or weakly-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 323, + 469, + 335 + ], + "spans": [ + { + "bbox": [ + 141, + 323, + 469, + 335 + ], + "score": 1.0, + "content": "labeled data. Our proposed pseudo-labeling strategy is network structure agnos-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 334, + 470, + 347 + ], + "spans": [ + { + "bbox": [ + 141, + 334, + 470, + 347 + ], + "score": 1.0, + "content": "tic to apply in a one-stage consistency training framework. We demonstrate the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 345, + 469, + 358 + ], + "spans": [ + { + "bbox": [ + 141, + 345, + 469, + 358 + ], + "score": 1.0, + "content": "effectiveness of the proposed pseudo-labeling strategy in both low-data and high-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 356, + 470, + 369 + ], + "spans": [ + { + "bbox": [ + 141, + 356, + 470, + 369 + ], + "score": 1.0, + "content": "data regimes. Extensive experiments have validated that pseudo labels generated", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 366, + 470, + 381 + ], + "spans": [ + { + "bbox": [ + 141, + 366, + 470, + 381 + ], + "score": 1.0, + "content": "from wisely fusing diverse sources and strong data augmentation are crucial to", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 378, + 469, + 389 + ], + "spans": [ + { + "bbox": [ + 141, + 378, + 469, + 389 + ], + "score": 1.0, + "content": "consistency training for semantic segmentation. The source code is available at", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 389, + 362, + 401 + ], + "spans": [ + { + "bbox": [ + 141, + 389, + 362, + 401 + ], + "score": 1.0, + "content": "https://github.com/googleinterns/wss.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 13.5 + }, + { + "type": "title", + "bbox": [ + 108, + 424, + 206, + 436 + ], + "lines": [ + { + "bbox": [ + 105, + 422, + 208, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 208, + 439 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 447, + 504, + 535 + ], + "lines": [ + { + "bbox": [ + 105, + 447, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 505, + 460 + ], + "score": 1.0, + "content": "Image semantic segmentation is a core computer vision task that has been studied for decades.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 458, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 506, + 470 + ], + "score": 1.0, + "content": "Compared with other vision tasks, such as image classification and object detection, human an-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 470, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 470, + 505, + 480 + ], + "score": 1.0, + "content": "notation of pixel-accurate segmentation is dramatically more expensive. Given sufficient pixel-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 480, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 505, + 492 + ], + "score": 1.0, + "content": "level labeled training data (i.e., high-data regime), the current state-of-the-art segmentation models", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 491, + 506, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 172, + 503 + ], + "score": 1.0, + "content": "(e.g., DeepLabv", + "type": "text" + }, + { + "bbox": [ + 172, + 492, + 184, + 501 + ], + "score": 0.53, + "content": "^ { 3 + }", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 491, + 506, + 503 + ], + "score": 1.0, + "content": "(Chen et al., 2018)) produce satisfactory segmentation prediction for common", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 502, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 505, + 514 + ], + "score": 1.0, + "content": "practical usage. Recent exploration demonstrates improvement over high-data regime settings with", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 513, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 505, + 525 + ], + "score": 1.0, + "content": "large-scale data, including self-training (Chen et al., 2020a; Zoph et al., 2020) and backbone pre-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 524, + 227, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 227, + 536 + ], + "score": 1.0, + "content": "training (Zhang et al., 2020a).", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 107, + 541, + 505, + 618 + ], + "lines": [ + { + "bbox": [ + 105, + 541, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 505, + 554 + ], + "score": 1.0, + "content": "In contrast to the high-data regime, the performance of segmentation models drop significantly, given", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 551, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 505, + 565 + ], + "score": 1.0, + "content": "very limited pixel-labeled data (i.e., low-data regime). Such ineffectiveness at the low-data regime", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 563, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 505, + 576 + ], + "score": 1.0, + "content": "hinders the applicability of segmentation models. Therefore, instead of improving high-data regime", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 574, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 506, + 587 + ], + "score": 1.0, + "content": "segmentation, our work focuses on data-efficient segmentation training that only relies on few pixel-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 584, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 505, + 597 + ], + "score": 1.0, + "content": "labeled data and leverages the availability of extra unlabeled or weakly annotated (e.g., image-level)", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "score": 1.0, + "content": "data to improve performance, with the aim of narrowing the gap to the supervised models trained", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 607, + 225, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 225, + 619 + ], + "score": 1.0, + "content": "with fully pixel-labeled data.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 623, + 505, + 712 + ], + "lines": [ + { + "bbox": [ + 105, + 622, + 505, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 505, + 636 + ], + "score": 1.0, + "content": "Our work is inspired by the recent success in semi-supervised learning (SSL) for image classifica-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 635, + 505, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 505, + 647 + ], + "score": 1.0, + "content": "tion, demonstrating promising performance given very limited labeled data and a sufficient amount", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 645, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 505, + 657 + ], + "score": 1.0, + "content": "of unlabeled data. Successful examples include MeanTeacher (Tarvainen & Valpola, 2017), UDA", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 656, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 505, + 668 + ], + "score": 1.0, + "content": "(Xie et al., 2019), MixMatch (Berthelot et al., 2019b), FeatMatch (Kuo et al., 2020), and FixMatch", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 505, + 680 + ], + "score": 1.0, + "content": "(Sohn et al., 2020a). One outstanding idea in this type of SSL is consistency training: making", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 678, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 506, + 691 + ], + "score": 1.0, + "content": "predictions consistent among multiple augmented images. FixMatch (Sohn et al., 2020a) shows", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 690, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 690, + 505, + 701 + ], + "score": 1.0, + "content": "that using high-confidence one-hot pseudo labels obtained from weakly-augmented unlabeled data", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 700, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 505, + 712 + ], + "score": 1.0, + "content": "to train strongly-augmented counterpart is the key to the success of SSL in image classification.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 41.5 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 119, + 721, + 338, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 720, + 338, + 733 + ], + "spans": [ + { + "bbox": [ + 118, + 720, + 338, + 733 + ], + "score": 1.0, + "content": "∗Work done during internship at Google Cloud AI Research.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 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": [ + 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, + 456, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 459, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 459, + 97 + ], + "score": 1.0, + "content": "PSEUDOSEG: DESIGNING PSEUDO LABELS FOR", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 97, + 311, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 97, + 311, + 118 + ], + "score": 1.0, + "content": "SEMANTIC SEGMENTATION", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 114, + 134, + 382, + 169 + ], + "lines": [ + { + "bbox": [ + 115, + 134, + 382, + 147 + ], + "spans": [ + { + "bbox": [ + 115, + 134, + 150, + 147 + ], + "score": 1.0, + "content": "Yuliang", + "type": "text" + }, + { + "bbox": [ + 150, + 135, + 178, + 146 + ], + "score": 0.8, + "content": "\\mathbf { Z o u } ^ { 1 * }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 134, + 382, + 147 + ], + "score": 1.0, + "content": "Zizhao Zhang2 Han Zhang3 Chun-Liang Li2", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 114, + 145, + 309, + 159 + ], + "spans": [ + { + "bbox": [ + 114, + 145, + 309, + 159 + ], + "score": 1.0, + "content": "Xiao Bian2 Jia-Bin Huang1 Tomas Pfister2", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 157, + 318, + 170 + ], + "spans": [ + { + "bbox": [ + 115, + 157, + 318, + 170 + ], + "score": 1.0, + "content": "1Virginia Tech 2Google Cloud AI 3Google Brain", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 114, + 134, + 382, + 170 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 198, + 333, + 210 + ], + "lines": [ + { + "bbox": [ + 276, + 198, + 335, + 211 + ], + "spans": [ + { + "bbox": [ + 276, + 198, + 335, + 211 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 143, + 225, + 468, + 399 + ], + "lines": [ + { + "bbox": [ + 142, + 225, + 469, + 237 + ], + "spans": [ + { + "bbox": [ + 142, + 225, + 469, + 237 + ], + "score": 1.0, + "content": "Recent advances in semi-supervised learning (SSL) demonstrate that a combi-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 235, + 469, + 248 + ], + "spans": [ + { + "bbox": [ + 141, + 235, + 469, + 248 + ], + "score": 1.0, + "content": "nation of consistency regularization and pseudo-labeling can effectively improve", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 247, + 469, + 259 + ], + "spans": [ + { + "bbox": [ + 141, + 247, + 469, + 259 + ], + "score": 1.0, + "content": "image classification accuracy in the low-data regime. Compared to classifica-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 258, + 469, + 270 + ], + "spans": [ + { + "bbox": [ + 141, + 258, + 469, + 270 + ], + "score": 1.0, + "content": "tion, semantic segmentation tasks require much more intensive labeling costs.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 268, + 469, + 281 + ], + "spans": [ + { + "bbox": [ + 141, + 268, + 469, + 281 + ], + "score": 1.0, + "content": "Thus, these tasks greatly benefit from data-efficient training methods. However,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 279, + 469, + 292 + ], + "spans": [ + { + "bbox": [ + 141, + 279, + 469, + 292 + ], + "score": 1.0, + "content": "structured outputs in segmentation render particular difficulties (e.g., designing", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 290, + 469, + 303 + ], + "spans": [ + { + "bbox": [ + 141, + 290, + 469, + 303 + ], + "score": 1.0, + "content": "pseudo-labeling and augmentation) to apply existing SSL strategies. To address", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 300, + 469, + 314 + ], + "spans": [ + { + "bbox": [ + 141, + 300, + 469, + 314 + ], + "score": 1.0, + "content": "this problem, we present a simple and novel re-design of pseudo-labeling to gener-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 312, + 469, + 325 + ], + "spans": [ + { + "bbox": [ + 141, + 312, + 469, + 325 + ], + "score": 1.0, + "content": "ate well-calibrated structured pseudo labels for training with unlabeled or weakly-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 323, + 469, + 335 + ], + "spans": [ + { + "bbox": [ + 141, + 323, + 469, + 335 + ], + "score": 1.0, + "content": "labeled data. Our proposed pseudo-labeling strategy is network structure agnos-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 334, + 470, + 347 + ], + "spans": [ + { + "bbox": [ + 141, + 334, + 470, + 347 + ], + "score": 1.0, + "content": "tic to apply in a one-stage consistency training framework. We demonstrate the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 345, + 469, + 358 + ], + "spans": [ + { + "bbox": [ + 141, + 345, + 469, + 358 + ], + "score": 1.0, + "content": "effectiveness of the proposed pseudo-labeling strategy in both low-data and high-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 356, + 470, + 369 + ], + "spans": [ + { + "bbox": [ + 141, + 356, + 470, + 369 + ], + "score": 1.0, + "content": "data regimes. Extensive experiments have validated that pseudo labels generated", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 366, + 470, + 381 + ], + "spans": [ + { + "bbox": [ + 141, + 366, + 470, + 381 + ], + "score": 1.0, + "content": "from wisely fusing diverse sources and strong data augmentation are crucial to", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 378, + 469, + 389 + ], + "spans": [ + { + "bbox": [ + 141, + 378, + 469, + 389 + ], + "score": 1.0, + "content": "consistency training for semantic segmentation. The source code is available at", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 389, + 362, + 401 + ], + "spans": [ + { + "bbox": [ + 141, + 389, + 362, + 401 + ], + "score": 1.0, + "content": "https://github.com/googleinterns/wss.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 13.5, + "bbox_fs": [ + 141, + 225, + 470, + 401 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 424, + 206, + 436 + ], + "lines": [ + { + "bbox": [ + 105, + 422, + 208, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 208, + 439 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 447, + 504, + 535 + ], + "lines": [ + { + "bbox": [ + 105, + 447, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 505, + 460 + ], + "score": 1.0, + "content": "Image semantic segmentation is a core computer vision task that has been studied for decades.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 458, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 506, + 470 + ], + "score": 1.0, + "content": "Compared with other vision tasks, such as image classification and object detection, human an-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 470, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 470, + 505, + 480 + ], + "score": 1.0, + "content": "notation of pixel-accurate segmentation is dramatically more expensive. Given sufficient pixel-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 480, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 505, + 492 + ], + "score": 1.0, + "content": "level labeled training data (i.e., high-data regime), the current state-of-the-art segmentation models", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 491, + 506, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 172, + 503 + ], + "score": 1.0, + "content": "(e.g., DeepLabv", + "type": "text" + }, + { + "bbox": [ + 172, + 492, + 184, + 501 + ], + "score": 0.53, + "content": "^ { 3 + }", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 491, + 506, + 503 + ], + "score": 1.0, + "content": "(Chen et al., 2018)) produce satisfactory segmentation prediction for common", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 502, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 505, + 514 + ], + "score": 1.0, + "content": "practical usage. Recent exploration demonstrates improvement over high-data regime settings with", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 513, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 505, + 525 + ], + "score": 1.0, + "content": "large-scale data, including self-training (Chen et al., 2020a; Zoph et al., 2020) and backbone pre-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 524, + 227, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 227, + 536 + ], + "score": 1.0, + "content": "training (Zhang et al., 2020a).", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 447, + 506, + 536 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 541, + 505, + 618 + ], + "lines": [ + { + "bbox": [ + 105, + 541, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 505, + 554 + ], + "score": 1.0, + "content": "In contrast to the high-data regime, the performance of segmentation models drop significantly, given", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 551, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 505, + 565 + ], + "score": 1.0, + "content": "very limited pixel-labeled data (i.e., low-data regime). Such ineffectiveness at the low-data regime", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 563, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 505, + 576 + ], + "score": 1.0, + "content": "hinders the applicability of segmentation models. Therefore, instead of improving high-data regime", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 574, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 506, + 587 + ], + "score": 1.0, + "content": "segmentation, our work focuses on data-efficient segmentation training that only relies on few pixel-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 584, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 505, + 597 + ], + "score": 1.0, + "content": "labeled data and leverages the availability of extra unlabeled or weakly annotated (e.g., image-level)", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "score": 1.0, + "content": "data to improve performance, with the aim of narrowing the gap to the supervised models trained", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 607, + 225, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 225, + 619 + ], + "score": 1.0, + "content": "with fully pixel-labeled data.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 541, + 506, + 619 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 623, + 505, + 712 + ], + "lines": [ + { + "bbox": [ + 105, + 622, + 505, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 505, + 636 + ], + "score": 1.0, + "content": "Our work is inspired by the recent success in semi-supervised learning (SSL) for image classifica-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 635, + 505, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 505, + 647 + ], + "score": 1.0, + "content": "tion, demonstrating promising performance given very limited labeled data and a sufficient amount", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 645, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 505, + 657 + ], + "score": 1.0, + "content": "of unlabeled data. Successful examples include MeanTeacher (Tarvainen & Valpola, 2017), UDA", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 656, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 505, + 668 + ], + "score": 1.0, + "content": "(Xie et al., 2019), MixMatch (Berthelot et al., 2019b), FeatMatch (Kuo et al., 2020), and FixMatch", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 505, + 680 + ], + "score": 1.0, + "content": "(Sohn et al., 2020a). One outstanding idea in this type of SSL is consistency training: making", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 678, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 506, + 691 + ], + "score": 1.0, + "content": "predictions consistent among multiple augmented images. FixMatch (Sohn et al., 2020a) shows", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 690, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 690, + 505, + 701 + ], + "score": 1.0, + "content": "that using high-confidence one-hot pseudo labels obtained from weakly-augmented unlabeled data", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 700, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 505, + 712 + ], + "score": 1.0, + "content": "to train strongly-augmented counterpart is the key to the success of SSL in image classification.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 622, + 506, + 712 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 138 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 93 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 93 + ], + "score": 1.0, + "content": "However, effective pseudo labels and well-designed data augmentation are non-trivial to satisfy for", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "semantic segmentation. Although we observe that many related works explore the second condition", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 118 + ], + "score": 1.0, + "content": "(i.e., augmentation) for image segmentation to enable consistency training framework (French et al.,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 128 + ], + "score": 1.0, + "content": "2020; Ouali et al., 2020), we show that a wise design of pseudo labels for segmentation has great", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 126, + 177, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 126, + 177, + 138 + ], + "score": 1.0, + "content": "veiled potentials.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 108, + 143, + 505, + 199 + ], + "lines": [ + { + "bbox": [ + 106, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "In this paper, we propose PseudoSeg, a one-stage training framework to improve image semantic", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 153, + 506, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 506, + 168 + ], + "score": 1.0, + "content": "segmentation by leveraging additional data either with image-level labels (weakly-labeled data) or", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 164, + 506, + 179 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 506, + 179 + ], + "score": 1.0, + "content": "without any labels. PseudoSeg presents a novel design of pseudo-labeling to infer effective struc-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 176, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 505, + 189 + ], + "score": 1.0, + "content": "tured pseudo labels of additional data. It then optimizes the prediction of strongly-augmented data", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 187, + 478, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 187, + 478, + 200 + ], + "score": 1.0, + "content": "to match its corresponding pseudo labels. In summary, we make the following contributions:", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 132, + 202, + 505, + 325 + ], + "lines": [ + { + "bbox": [ + 132, + 202, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 132, + 202, + 505, + 214 + ], + "score": 1.0, + "content": "• We propose a simple one-stage framework to improve semantic segmentation by using a", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 213, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 141, + 213, + 505, + 226 + ], + "score": 1.0, + "content": "limited amount of pixel-labeled data and sufficient unlabeled data or image-level labeled", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 224, + 479, + 236 + ], + "spans": [ + { + "bbox": [ + 141, + 224, + 479, + 236 + ], + "score": 1.0, + "content": "data. Our framework is simple to apply and therefore network architecture agnostic.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 139, + 236, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 139, + 236, + 505, + 249 + ], + "score": 1.0, + "content": "Directly applying consistency training approaches validated in image classification ren-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 247, + 505, + 259 + ], + "spans": [ + { + "bbox": [ + 141, + 247, + 505, + 259 + ], + "score": 1.0, + "content": "ders particular challenges in segmentation. We first demonstrate how well-calibrated soft", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 258, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 141, + 258, + 505, + 272 + ], + "score": 1.0, + "content": "pseudo labels obtained through wise fusion of predictions from diverse sources can greatly", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 142, + 270, + 332, + 281 + ], + "spans": [ + { + "bbox": [ + 142, + 270, + 332, + 281 + ], + "score": 1.0, + "content": "improve consistency training for segmentation.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 280, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 141, + 280, + 505, + 293 + ], + "score": 1.0, + "content": "We conduct extensive experimental studies on the PASCAL VOC 2012 and COCO datasets.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 291, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 141, + 291, + 506, + 304 + ], + "score": 1.0, + "content": "Comprehensive analyses are conducted to validate the effectiveness of this method at not", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 142, + 303, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 142, + 303, + 505, + 316 + ], + "score": 1.0, + "content": "only the low-data regime but also the high-data regime. Our experiments study multiple", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 142, + 314, + 469, + 327 + ], + "spans": [ + { + "bbox": [ + 142, + 314, + 469, + 327 + ], + "score": 1.0, + "content": "important open questions about transferring SSL advances to segmentation tasks.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 15 + }, + { + "type": "title", + "bbox": [ + 108, + 340, + 211, + 354 + ], + "lines": [ + { + "bbox": [ + 105, + 340, + 213, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 213, + 356 + ], + "score": 1.0, + "content": "2 RELATED WORK", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 362, + 505, + 494 + ], + "lines": [ + { + "bbox": [ + 106, + 362, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 362, + 505, + 374 + ], + "score": 1.0, + "content": "Semi-supervised classification. Semi-supervised learning (SSL) aims to improve model perfor-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 373, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 505, + 385 + ], + "score": 1.0, + "content": "mance by incorporating a large amount of unlabeled data during training. Consistency regularization", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 383, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 505, + 397 + ], + "score": 1.0, + "content": "and entropy minimization are two common strategies for SSL. The intuition behind consistency-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 394, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 505, + 407 + ], + "score": 1.0, + "content": "based approaches (Laine & Aila, 2016; Sajjadi et al., 2016; Miyato et al., 2018; Tarvainen & Valpola,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 405, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 106, + 405, + 505, + 418 + ], + "score": 1.0, + "content": "2017) is that, the model output should remain unchanged when the input is perturbed. On the other", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "score": 1.0, + "content": "hand, the entropy minimization strategy (Grandvalet & Bengio, 2005) argues that the unlabeled", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 427, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 505, + 440 + ], + "score": 1.0, + "content": "data can be used to ensured classes are well-separated, which can be achieved by encouraging the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 438, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 505, + 451 + ], + "score": 1.0, + "content": "model to output low-entropy predictions. Pseudo-labeling (Lee, 2013) is one of the methods for", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 448, + 505, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 505, + 463 + ], + "score": 1.0, + "content": "implicit entropy minimization. Recently, holistic approaches (Berthelot et al., 2019b;a; Sohn et al.,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 460, + 504, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 504, + 473 + ], + "score": 1.0, + "content": "2020a) combining both strategies have been proposed and achieved significant improvement. By re-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 471, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 505, + 484 + ], + "score": 1.0, + "content": "designing the pseudo label, we propose an efficient one-stage semi-supervised learning framework", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 482, + 309, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 309, + 496 + ], + "score": 1.0, + "content": "of semantic segmentation for consistency training.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 107, + 498, + 505, + 673 + ], + "lines": [ + { + "bbox": [ + 105, + 495, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 505, + 511 + ], + "score": 1.0, + "content": "Semi-supervised semantic segmentation. Collecting pixel-level annotations for semantic seg-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 508, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 505, + 520 + ], + "score": 1.0, + "content": "mentation is costly and prone to error. Hence, leveraging unlabeled data in semantic segmentation", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 517, + 506, + 533 + ], + "spans": [ + { + "bbox": [ + 104, + 517, + 506, + 533 + ], + "score": 1.0, + "content": "is a natural fit. Early methods utilize a GAN-based model either to generate additional training", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 530, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 505, + 542 + ], + "score": 1.0, + "content": "data (Souly et al., 2017) or to learn a discriminator between the prediction and the ground truth", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 540, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 505, + 552 + ], + "score": 1.0, + "content": "mask (Hung et al., 2018; Mittal et al., 2019). Consistency regularization based approaches have also", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 552, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 505, + 564 + ], + "score": 1.0, + "content": "been proposed recently, by enforcing the predictions to be consistent, either from augmented input", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 562, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 506, + 576 + ], + "score": 1.0, + "content": "images (French et al., 2020; Kim et al., 2020), perturbed feature embeddings (Ouali et al., 2020), or", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 573, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 505, + 587 + ], + "score": 1.0, + "content": "different networks (Ke et al., 2020). Recently, Luo & Yang (2020) proposes a dual-branch training", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 585, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 505, + 597 + ], + "score": 1.0, + "content": "network to jointly learn from pixel-accurate and coarse labeled data, achieving good segmentation", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 596, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 505, + 608 + ], + "score": 1.0, + "content": "performance. To push the performance of state of the arts, iterative self-training approaches (Chen", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 606, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 505, + 619 + ], + "score": 1.0, + "content": "et al., 2020a; Zoph et al., 2020; Zhu et al., 2020) have been proposed. These methods usually assume", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 618, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 505, + 630 + ], + "score": 1.0, + "content": "the available labeled data is enough to train a good teacher model, which will be used to generate", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 628, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 505, + 641 + ], + "score": 1.0, + "content": "pseudo labels for the student model. However, this condition might not satisfy in the low-data", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 640, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 505, + 652 + ], + "score": 1.0, + "content": "regime. Our proposed method, on the other hand, realizing the ideas of both consistency regular-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 651, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 505, + 663 + ], + "score": 1.0, + "content": "ization and pseudo-labeling in segmentation, consistently improves the supervised baseline in both", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 661, + 237, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 237, + 675 + ], + "score": 1.0, + "content": "low-data and high-data regimes.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 41.5 + }, + { + "type": "text", + "bbox": [ + 107, + 677, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 107, + 677, + 505, + 688 + ], + "spans": [ + { + "bbox": [ + 107, + 677, + 505, + 688 + ], + "score": 1.0, + "content": "Weakly-supervised semantic segmentation. Instead of supervising network training with accurate", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "pixel-level labels, many prior works exploit weaker forms of annotations (e.g., bounding boxes (Dai", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 697, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 505, + 712 + ], + "score": 1.0, + "content": "et al., 2015), scribbles (Lin et al., 2016), image-level labels). Most recent approaches use image-", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 709, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 721 + ], + "score": 1.0, + "content": "level labels as the supervisory signal, which exploits the idea of class activation map (CAM) (Zhou", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 721, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 732 + ], + "score": 1.0, + "content": "et al., 2016). Since the vanilla CAM only focus on the most discriminative region of objects, dif-", + "type": "text" + } + ], + "index": 54 + } + ], + "index": 52 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 138 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 93 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 93 + ], + "score": 1.0, + "content": "However, effective pseudo labels and well-designed data augmentation are non-trivial to satisfy for", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "semantic segmentation. Although we observe that many related works explore the second condition", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 118 + ], + "score": 1.0, + "content": "(i.e., augmentation) for image segmentation to enable consistency training framework (French et al.,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 128 + ], + "score": 1.0, + "content": "2020; Ouali et al., 2020), we show that a wise design of pseudo labels for segmentation has great", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 126, + 177, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 126, + 177, + 138 + ], + "score": 1.0, + "content": "veiled potentials.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 83, + 505, + 138 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 143, + 505, + 199 + ], + "lines": [ + { + "bbox": [ + 106, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "In this paper, we propose PseudoSeg, a one-stage training framework to improve image semantic", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 153, + 506, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 506, + 168 + ], + "score": 1.0, + "content": "segmentation by leveraging additional data either with image-level labels (weakly-labeled data) or", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 164, + 506, + 179 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 506, + 179 + ], + "score": 1.0, + "content": "without any labels. PseudoSeg presents a novel design of pseudo-labeling to infer effective struc-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 176, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 505, + 189 + ], + "score": 1.0, + "content": "tured pseudo labels of additional data. It then optimizes the prediction of strongly-augmented data", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 187, + 478, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 187, + 478, + 200 + ], + "score": 1.0, + "content": "to match its corresponding pseudo labels. In summary, we make the following contributions:", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 143, + 506, + 200 + ] + }, + { + "type": "text", + "bbox": [ + 132, + 202, + 505, + 325 + ], + "lines": [ + { + "bbox": [ + 132, + 202, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 132, + 202, + 505, + 214 + ], + "score": 1.0, + "content": "• We propose a simple one-stage framework to improve semantic segmentation by using a", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 213, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 141, + 213, + 505, + 226 + ], + "score": 1.0, + "content": "limited amount of pixel-labeled data and sufficient unlabeled data or image-level labeled", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 224, + 479, + 236 + ], + "spans": [ + { + "bbox": [ + 141, + 224, + 479, + 236 + ], + "score": 1.0, + "content": "data. Our framework is simple to apply and therefore network architecture agnostic.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 139, + 236, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 139, + 236, + 505, + 249 + ], + "score": 1.0, + "content": "Directly applying consistency training approaches validated in image classification ren-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 247, + 505, + 259 + ], + "spans": [ + { + "bbox": [ + 141, + 247, + 505, + 259 + ], + "score": 1.0, + "content": "ders particular challenges in segmentation. We first demonstrate how well-calibrated soft", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 258, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 141, + 258, + 505, + 272 + ], + "score": 1.0, + "content": "pseudo labels obtained through wise fusion of predictions from diverse sources can greatly", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 142, + 270, + 332, + 281 + ], + "spans": [ + { + "bbox": [ + 142, + 270, + 332, + 281 + ], + "score": 1.0, + "content": "improve consistency training for segmentation.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 280, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 141, + 280, + 505, + 293 + ], + "score": 1.0, + "content": "We conduct extensive experimental studies on the PASCAL VOC 2012 and COCO datasets.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 291, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 141, + 291, + 506, + 304 + ], + "score": 1.0, + "content": "Comprehensive analyses are conducted to validate the effectiveness of this method at not", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 142, + 303, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 142, + 303, + 505, + 316 + ], + "score": 1.0, + "content": "only the low-data regime but also the high-data regime. Our experiments study multiple", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 142, + 314, + 469, + 327 + ], + "spans": [ + { + "bbox": [ + 142, + 314, + 469, + 327 + ], + "score": 1.0, + "content": "important open questions about transferring SSL advances to segmentation tasks.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 15, + "bbox_fs": [ + 132, + 202, + 506, + 327 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 340, + 211, + 354 + ], + "lines": [ + { + "bbox": [ + 105, + 340, + 213, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 213, + 356 + ], + "score": 1.0, + "content": "2 RELATED WORK", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 362, + 505, + 494 + ], + "lines": [ + { + "bbox": [ + 106, + 362, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 362, + 505, + 374 + ], + "score": 1.0, + "content": "Semi-supervised classification. Semi-supervised learning (SSL) aims to improve model perfor-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 373, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 505, + 385 + ], + "score": 1.0, + "content": "mance by incorporating a large amount of unlabeled data during training. Consistency regularization", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 383, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 505, + 397 + ], + "score": 1.0, + "content": "and entropy minimization are two common strategies for SSL. The intuition behind consistency-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 394, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 505, + 407 + ], + "score": 1.0, + "content": "based approaches (Laine & Aila, 2016; Sajjadi et al., 2016; Miyato et al., 2018; Tarvainen & Valpola,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 405, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 106, + 405, + 505, + 418 + ], + "score": 1.0, + "content": "2017) is that, the model output should remain unchanged when the input is perturbed. On the other", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "score": 1.0, + "content": "hand, the entropy minimization strategy (Grandvalet & Bengio, 2005) argues that the unlabeled", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 427, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 505, + 440 + ], + "score": 1.0, + "content": "data can be used to ensured classes are well-separated, which can be achieved by encouraging the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 438, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 505, + 451 + ], + "score": 1.0, + "content": "model to output low-entropy predictions. Pseudo-labeling (Lee, 2013) is one of the methods for", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 448, + 505, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 505, + 463 + ], + "score": 1.0, + "content": "implicit entropy minimization. Recently, holistic approaches (Berthelot et al., 2019b;a; Sohn et al.,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 460, + 504, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 504, + 473 + ], + "score": 1.0, + "content": "2020a) combining both strategies have been proposed and achieved significant improvement. By re-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 471, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 505, + 484 + ], + "score": 1.0, + "content": "designing the pseudo label, we propose an efficient one-stage semi-supervised learning framework", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 482, + 309, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 309, + 496 + ], + "score": 1.0, + "content": "of semantic segmentation for consistency training.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 362, + 505, + 496 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 498, + 505, + 673 + ], + "lines": [ + { + "bbox": [ + 105, + 495, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 505, + 511 + ], + "score": 1.0, + "content": "Semi-supervised semantic segmentation. Collecting pixel-level annotations for semantic seg-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 508, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 505, + 520 + ], + "score": 1.0, + "content": "mentation is costly and prone to error. Hence, leveraging unlabeled data in semantic segmentation", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 517, + 506, + 533 + ], + "spans": [ + { + "bbox": [ + 104, + 517, + 506, + 533 + ], + "score": 1.0, + "content": "is a natural fit. Early methods utilize a GAN-based model either to generate additional training", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 530, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 505, + 542 + ], + "score": 1.0, + "content": "data (Souly et al., 2017) or to learn a discriminator between the prediction and the ground truth", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 540, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 505, + 552 + ], + "score": 1.0, + "content": "mask (Hung et al., 2018; Mittal et al., 2019). Consistency regularization based approaches have also", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 552, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 505, + 564 + ], + "score": 1.0, + "content": "been proposed recently, by enforcing the predictions to be consistent, either from augmented input", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 562, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 506, + 576 + ], + "score": 1.0, + "content": "images (French et al., 2020; Kim et al., 2020), perturbed feature embeddings (Ouali et al., 2020), or", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 573, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 505, + 587 + ], + "score": 1.0, + "content": "different networks (Ke et al., 2020). Recently, Luo & Yang (2020) proposes a dual-branch training", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 585, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 505, + 597 + ], + "score": 1.0, + "content": "network to jointly learn from pixel-accurate and coarse labeled data, achieving good segmentation", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 596, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 505, + 608 + ], + "score": 1.0, + "content": "performance. To push the performance of state of the arts, iterative self-training approaches (Chen", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 606, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 505, + 619 + ], + "score": 1.0, + "content": "et al., 2020a; Zoph et al., 2020; Zhu et al., 2020) have been proposed. These methods usually assume", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 618, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 505, + 630 + ], + "score": 1.0, + "content": "the available labeled data is enough to train a good teacher model, which will be used to generate", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 628, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 505, + 641 + ], + "score": 1.0, + "content": "pseudo labels for the student model. However, this condition might not satisfy in the low-data", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 640, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 505, + 652 + ], + "score": 1.0, + "content": "regime. Our proposed method, on the other hand, realizing the ideas of both consistency regular-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 651, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 505, + 663 + ], + "score": 1.0, + "content": "ization and pseudo-labeling in segmentation, consistently improves the supervised baseline in both", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 661, + 237, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 237, + 675 + ], + "score": 1.0, + "content": "low-data and high-data regimes.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 41.5, + "bbox_fs": [ + 104, + 495, + 506, + 675 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 677, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 107, + 677, + 505, + 688 + ], + "spans": [ + { + "bbox": [ + 107, + 677, + 505, + 688 + ], + "score": 1.0, + "content": "Weakly-supervised semantic segmentation. Instead of supervising network training with accurate", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "pixel-level labels, many prior works exploit weaker forms of annotations (e.g., bounding boxes (Dai", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 697, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 505, + 712 + ], + "score": 1.0, + "content": "et al., 2015), scribbles (Lin et al., 2016), image-level labels). Most recent approaches use image-", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 709, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 721 + ], + "score": 1.0, + "content": "level labels as the supervisory signal, which exploits the idea of class activation map (CAM) (Zhou", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 721, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 732 + ], + "score": 1.0, + "content": "et al., 2016). Since the vanilla CAM only focus on the most discriminative region of objects, dif-", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 106, + 254, + 504, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 504, + 267 + ], + "score": 1.0, + "content": "ferent ways to refine CAM have been proposed, including partial image/feature erasing (Hou et al.,", + "type": "text", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 266, + 505, + 278 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 505, + 278 + ], + "score": 1.0, + "content": "2018; Wei et al., 2017; Li et al., 2018), using an additional saliency estimation model (Oh et al.,", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 276, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 505, + 289 + ], + "score": 1.0, + "content": "2017; Huang et al., 2018; Wei et al., 2018), utilizing pixel similarity to propagate the initial score", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 287, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 104, + 287, + 505, + 300 + ], + "score": 1.0, + "content": "map (Ahn & Kwak, 2018; Wang et al., 2020), or mining and co-segment the same category of ob-", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 297, + 506, + 312 + ], + "spans": [ + { + "bbox": [ + 104, + 297, + 506, + 312 + ], + "score": 1.0, + "content": "jects across images (Sun et al., 2020; Zhang et al., 2020b). While achieving promising results using", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 309, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 505, + 322 + ], + "score": 1.0, + "content": "the approaches mentioned above, most of them require a multi-stage training strategy. The refined", + "type": "text", + "cross_page": true + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 320, + 506, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 506, + 333 + ], + "score": 1.0, + "content": "score maps are optimized again using a dense-CRF model (Krahenb ¨ uhl & Koltun ¨ , 2011), and then", + "type": "text", + "cross_page": true + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 332, + 505, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 332, + 505, + 344 + ], + "score": 1.0, + "content": "used as the target to train a separate segmentation network. On the other hand, we assume there ex-", + "type": "text", + "cross_page": true + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 342, + 505, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 505, + 354 + ], + "score": 1.0, + "content": "ists a small number of fully-annotated data, which allows us to learn stronger segmentation models", + "type": "text", + "cross_page": true + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 354, + 337, + 365 + ], + "spans": [ + { + "bbox": [ + 106, + 354, + 337, + 365 + ], + "score": 1.0, + "content": "than general methods without needing pixel-labeled data.", + "type": "text", + "cross_page": true + } + ], + "index": 17 + } + ], + "index": 52, + "bbox_fs": [ + 105, + 677, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 83, + 502, + 181 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 83, + 502, + 181 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 83, + 502, + 181 + ], + "spans": [ + { + "bbox": [ + 108, + 83, + 502, + 181 + ], + "score": 0.962, + "type": "image", + "image_path": "55439202eaf26b71f27a6328f988f0027a61cd98c089773b1b8032b98ac5ec58.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 83, + 502, + 115.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 115.66666666666666, + 502, + 148.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 148.33333333333331, + 502, + 180.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 186, + 500, + 241 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 186, + 498, + 198 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 498, + 198 + ], + "score": 1.0, + "content": "Figure 1: Overview of unlabeled data training branch. Given an image, the weakly augmented", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 198, + 499, + 209 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 499, + 209 + ], + "score": 1.0, + "content": "version is fed into the network to get the decoder prediction and Self-attention Grad-CAM (SGC).", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 208, + 496, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 208, + 496, + 221 + ], + "score": 1.0, + "content": "The two sources are then combined via a calibrated fusion strategy to form the pseudo label. The", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 219, + 486, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 486, + 232 + ], + "score": 1.0, + "content": "network is trained to make its decoder prediction from strongly augmented image to match the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 230, + 294, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 294, + 243 + ], + "score": 1.0, + "content": "pseudo label by a per-pixel cross-entropy loss.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "text", + "bbox": [ + 106, + 254, + 505, + 366 + ], + "lines": [ + { + "bbox": [ + 106, + 254, + 504, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 504, + 267 + ], + "score": 1.0, + "content": "ferent ways to refine CAM have been proposed, including partial image/feature erasing (Hou et al.,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 266, + 505, + 278 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 505, + 278 + ], + "score": 1.0, + "content": "2018; Wei et al., 2017; Li et al., 2018), using an additional saliency estimation model (Oh et al.,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 276, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 505, + 289 + ], + "score": 1.0, + "content": "2017; Huang et al., 2018; Wei et al., 2018), utilizing pixel similarity to propagate the initial score", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 287, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 104, + 287, + 505, + 300 + ], + "score": 1.0, + "content": "map (Ahn & Kwak, 2018; Wang et al., 2020), or mining and co-segment the same category of ob-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 297, + 506, + 312 + ], + "spans": [ + { + "bbox": [ + 104, + 297, + 506, + 312 + ], + "score": 1.0, + "content": "jects across images (Sun et al., 2020; Zhang et al., 2020b). While achieving promising results using", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 309, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 505, + 322 + ], + "score": 1.0, + "content": "the approaches mentioned above, most of them require a multi-stage training strategy. The refined", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 320, + 506, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 506, + 333 + ], + "score": 1.0, + "content": "score maps are optimized again using a dense-CRF model (Krahenb ¨ uhl & Koltun ¨ , 2011), and then", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 332, + 505, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 332, + 505, + 344 + ], + "score": 1.0, + "content": "used as the target to train a separate segmentation network. On the other hand, we assume there ex-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 342, + 505, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 505, + 354 + ], + "score": 1.0, + "content": "ists a small number of fully-annotated data, which allows us to learn stronger segmentation models", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 354, + 337, + 365 + ], + "spans": [ + { + "bbox": [ + 106, + 354, + 337, + 365 + ], + "score": 1.0, + "content": "than general methods without needing pixel-labeled data.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 12.5 + }, + { + "type": "title", + "bbox": [ + 108, + 382, + 252, + 395 + ], + "lines": [ + { + "bbox": [ + 105, + 381, + 253, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 253, + 396 + ], + "score": 1.0, + "content": "3 THE PROPOSED METHOD", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 405, + 505, + 450 + ], + "lines": [ + { + "bbox": [ + 105, + 406, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 505, + 417 + ], + "score": 1.0, + "content": "In analogous to SSL for classification, our training objective in PseudoSeg consists of a supervised", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 416, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 125, + 429 + ], + "score": 1.0, + "content": "loss", + "type": "text" + }, + { + "bbox": [ + 125, + 417, + 136, + 428 + ], + "score": 0.88, + "content": "\\mathcal { L } _ { \\mathrm { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 416, + 276, + 429 + ], + "score": 1.0, + "content": "applied to pixel-level labeled data", + "type": "text" + }, + { + "bbox": [ + 276, + 417, + 288, + 428 + ], + "score": 0.88, + "content": "\\mathcal { D } _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 416, + 407, + 429 + ], + "score": 1.0, + "content": ", and a consistency constraint", + "type": "text" + }, + { + "bbox": [ + 408, + 417, + 420, + 428 + ], + "score": 0.89, + "content": "\\mathcal { L } _ { \\mathrm { u } }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 416, + 506, + 429 + ], + "score": 1.0, + "content": "applied to unlabeled", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 426, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 126, + 441 + ], + "score": 1.0, + "content": "data", + "type": "text" + }, + { + "bbox": [ + 126, + 428, + 140, + 438 + ], + "score": 0.83, + "content": "\\mathcal { D } _ { u }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 426, + 283, + 441 + ], + "score": 1.0, + "content": "1. Specifically, the supervised loss", + "type": "text" + }, + { + "bbox": [ + 284, + 428, + 295, + 438 + ], + "score": 0.88, + "content": "\\mathcal { L } _ { \\mathrm { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 426, + 506, + 441 + ], + "score": 1.0, + "content": "is the standard pixel-wise cross-entropy loss on the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 438, + 302, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 302, + 451 + ], + "score": 1.0, + "content": "weakly augmented pixel-level labeled examples:", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20.5 + }, + { + "type": "interline_equation", + "bbox": [ + 191, + 451, + 419, + 488 + ], + "lines": [ + { + "bbox": [ + 191, + 451, + 419, + 488 + ], + "spans": [ + { + "bbox": [ + 191, + 451, + 419, + 488 + ], + "score": 0.94, + "content": "\\mathcal { L } _ { \\mathrm { s } } = \\frac { 1 } { N \\times | \\mathcal { D } _ { l } | } \\sum _ { x \\in \\mathcal { D } _ { l } } \\sum _ { i = 0 } ^ { N - 1 } \\mathrm { C r o s s E n t r o p y } \\left( y _ { i } , f _ { \\theta } ( \\omega ( x _ { i } ) ) \\right) ,", + "type": "interline_equation", + "image_path": "c4e6ef258681327d5a51db4fbe3715327b16f29a336a86c4284b030629a615d4.jpg" + } + ] + } + ], + "index": 23.5, + "virtual_lines": [ + { + "bbox": [ + 191, + 451, + 419, + 469.5 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 191, + 469.5, + 419, + 488.0 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 489, + 505, + 545 + ], + "lines": [ + { + "bbox": [ + 105, + 489, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 133, + 502 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 490, + 140, + 500 + ], + "score": 0.8, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 489, + 385, + 502 + ], + "score": 1.0, + "content": "represents the learnable parameters of the network function", + "type": "text" + }, + { + "bbox": [ + 385, + 490, + 392, + 501 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 489, + 411, + 502 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 411, + 490, + 422, + 500 + ], + "score": 0.84, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 489, + 506, + 502 + ], + "score": 1.0, + "content": "denotes the number", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 496, + 504, + 515 + ], + "spans": [ + { + "bbox": [ + 104, + 496, + 250, + 515 + ], + "score": 1.0, + "content": "of valid labeled pixels in an image", + "type": "text" + }, + { + "bbox": [ + 250, + 500, + 311, + 510 + ], + "score": 0.89, + "content": "\\boldsymbol { x } \\in \\mathbb { R } ^ { H \\times W \\times 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 496, + 316, + 515 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 317, + 500, + 354, + 512 + ], + "score": 0.91, + "content": "y _ { i } \\in \\mathbb { R } ^ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 496, + 499, + 515 + ], + "score": 1.0, + "content": "is the ground truth label of a pixel", + "type": "text" + }, + { + "bbox": [ + 499, + 501, + 504, + 510 + ], + "score": 0.72, + "content": "i", + "type": "inline_equation" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 510, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 104, + 510, + 117, + 524 + ], + "score": 1.0, + "content": "in", + "type": "text" + }, + { + "bbox": [ + 117, + 512, + 146, + 522 + ], + "score": 0.9, + "content": "H \\times W", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 510, + 217, + 524 + ], + "score": 1.0, + "content": "dimensions, and", + "type": "text" + }, + { + "bbox": [ + 217, + 511, + 285, + 523 + ], + "score": 0.91, + "content": "f _ { \\theta } ( \\omega ( x _ { i } ) ) \\in \\mathbb { R } ^ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 510, + 433, + 524 + ], + "score": 1.0, + "content": "is the predicted probability of pixel", + "type": "text" + }, + { + "bbox": [ + 434, + 513, + 438, + 522 + ], + "score": 0.7, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 510, + 470, + 524 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 470, + 512, + 479, + 522 + ], + "score": 0.83, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 510, + 506, + 524 + ], + "score": 1.0, + "content": "is the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 521, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 244, + 535 + ], + "score": 1.0, + "content": "number of classes to predict and", + "type": "text" + }, + { + "bbox": [ + 244, + 523, + 262, + 534 + ], + "score": 0.9, + "content": "\\omega ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 521, + 505, + 535 + ], + "score": 1.0, + "content": "denotes the weak (common) data augmentation operations", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 532, + 216, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 216, + 545 + ], + "score": 1.0, + "content": "used by Chen et al. (2018).", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 550, + 505, + 583 + ], + "lines": [ + { + "bbox": [ + 103, + 546, + 506, + 566 + ], + "spans": [ + { + "bbox": [ + 103, + 546, + 370, + 566 + ], + "score": 1.0, + "content": "During training, the proposed PseudoSeg estimates a pseudo label", + "type": "text" + }, + { + "bbox": [ + 371, + 549, + 431, + 562 + ], + "score": 0.94, + "content": "\\widetilde { y } \\in \\mathbb { R } ^ { H \\times W \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 546, + 506, + 566 + ], + "score": 1.0, + "content": "for each strongly-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 561, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 214, + 573 + ], + "score": 1.0, + "content": "augmented unlabeled data", + "type": "text" + }, + { + "bbox": [ + 215, + 563, + 222, + 571 + ], + "score": 0.78, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 561, + 234, + 573 + ], + "score": 1.0, + "content": "in", + "type": "text" + }, + { + "bbox": [ + 234, + 562, + 248, + 572 + ], + "score": 0.9, + "content": "\\mathcal { D } _ { u }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 561, + 505, + 573 + ], + "score": 1.0, + "content": "e, which is then used for computing the cross-entropy loss. The", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 572, + 293, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 293, + 585 + ], + "score": 1.0, + "content": "unsupervised objective can then be written as:", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31 + }, + { + "type": "interline_equation", + "bbox": [ + 181, + 585, + 429, + 622 + ], + "lines": [ + { + "bbox": [ + 181, + 585, + 429, + 622 + ], + "spans": [ + { + "bbox": [ + 181, + 585, + 429, + 622 + ], + "score": 0.94, + "content": "\\mathcal { L } _ { \\sf u } = \\frac { 1 } { N \\times | \\mathcal { D } _ { u } | } \\sum _ { x \\in \\mathcal { D } _ { u } } \\sum _ { i = 0 } ^ { N - 1 } \\mathrm { C r o s s E n t r o p y } \\left( \\widetilde { y } _ { i } , f _ { \\theta } ( \\beta \\circ \\omega ( x _ { i } ) ) \\right) ,", + "type": "interline_equation", + "image_path": "10f5c9adc85e295e82223bd240ae987ee529c2d193b4b7a1eec4a96192fbde37.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 181, + 585, + 429, + 597.3333333333334 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 181, + 597.3333333333334, + 429, + 609.6666666666667 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 181, + 609.6666666666667, + 429, + 622.0000000000001 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 624, + 504, + 647 + ], + "lines": [ + { + "bbox": [ + 106, + 623, + 505, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 133, + 636 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 624, + 151, + 636 + ], + "score": 0.89, + "content": "\\beta ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 623, + 505, + 636 + ], + "score": 1.0, + "content": "denotes a stronger data augmentation operation, which will be described in Section 3.2.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 634, + 346, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 634, + 346, + 646 + ], + "score": 1.0, + "content": "We illustrate the unlabeled data training branch in Figure 1.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "title", + "bbox": [ + 107, + 660, + 335, + 672 + ], + "lines": [ + { + "bbox": [ + 105, + 659, + 335, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 335, + 673 + ], + "score": 1.0, + "content": "3.1 THE DESIGN OF STRUCTURED PSEUDO LABELS", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 679, + 502, + 703 + ], + "lines": [ + { + "bbox": [ + 106, + 679, + 504, + 692 + ], + "spans": [ + { + "bbox": [ + 106, + 679, + 399, + 692 + ], + "score": 1.0, + "content": "The next important question is how to generate the desirable pseudo label", + "type": "text" + }, + { + "bbox": [ + 399, + 680, + 405, + 691 + ], + "score": 0.83, + "content": "\\widetilde { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 679, + 504, + 692 + ], + "score": 1.0, + "content": ". A straightforward solu-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 690, + 504, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 504, + 702 + ], + "score": 1.0, + "content": "etion is directly using the decoder output of a trained segmentation model after confidence threshold-", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 105, + 711, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 710, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 119, + 710, + 505, + 723 + ], + "score": 1.0, + "content": "1For simplicity, here we illustrate the method with unlabeled data and then show it can be easily adapted to", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 721, + 264, + 731 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 264, + 731 + ], + "score": 1.0, + "content": "use image-level labeled data in Section 3.2.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 83, + 502, + 181 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 83, + 502, + 181 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 83, + 502, + 181 + ], + "spans": [ + { + "bbox": [ + 108, + 83, + 502, + 181 + ], + "score": 0.962, + "type": "image", + "image_path": "55439202eaf26b71f27a6328f988f0027a61cd98c089773b1b8032b98ac5ec58.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 83, + 502, + 115.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 115.66666666666666, + 502, + 148.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 148.33333333333331, + 502, + 180.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 186, + 500, + 241 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 186, + 498, + 198 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 498, + 198 + ], + "score": 1.0, + "content": "Figure 1: Overview of unlabeled data training branch. Given an image, the weakly augmented", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 198, + 499, + 209 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 499, + 209 + ], + "score": 1.0, + "content": "version is fed into the network to get the decoder prediction and Self-attention Grad-CAM (SGC).", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 208, + 496, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 208, + 496, + 221 + ], + "score": 1.0, + "content": "The two sources are then combined via a calibrated fusion strategy to form the pseudo label. The", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 219, + 486, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 486, + 232 + ], + "score": 1.0, + "content": "network is trained to make its decoder prediction from strongly augmented image to match the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 230, + 294, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 294, + 243 + ], + "score": 1.0, + "content": "pseudo label by a per-pixel cross-entropy loss.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "text", + "bbox": [ + 106, + 254, + 505, + 366 + ], + "lines": [], + "index": 12.5, + "bbox_fs": [ + 104, + 254, + 506, + 365 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 382, + 252, + 395 + ], + "lines": [ + { + "bbox": [ + 105, + 381, + 253, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 253, + 396 + ], + "score": 1.0, + "content": "3 THE PROPOSED METHOD", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 405, + 505, + 450 + ], + "lines": [ + { + "bbox": [ + 105, + 406, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 505, + 417 + ], + "score": 1.0, + "content": "In analogous to SSL for classification, our training objective in PseudoSeg consists of a supervised", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 416, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 125, + 429 + ], + "score": 1.0, + "content": "loss", + "type": "text" + }, + { + "bbox": [ + 125, + 417, + 136, + 428 + ], + "score": 0.88, + "content": "\\mathcal { L } _ { \\mathrm { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 416, + 276, + 429 + ], + "score": 1.0, + "content": "applied to pixel-level labeled data", + "type": "text" + }, + { + "bbox": [ + 276, + 417, + 288, + 428 + ], + "score": 0.88, + "content": "\\mathcal { D } _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 416, + 407, + 429 + ], + "score": 1.0, + "content": ", and a consistency constraint", + "type": "text" + }, + { + "bbox": [ + 408, + 417, + 420, + 428 + ], + "score": 0.89, + "content": "\\mathcal { L } _ { \\mathrm { u } }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 416, + 506, + 429 + ], + "score": 1.0, + "content": "applied to unlabeled", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 426, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 126, + 441 + ], + "score": 1.0, + "content": "data", + "type": "text" + }, + { + "bbox": [ + 126, + 428, + 140, + 438 + ], + "score": 0.83, + "content": "\\mathcal { D } _ { u }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 426, + 283, + 441 + ], + "score": 1.0, + "content": "1. Specifically, the supervised loss", + "type": "text" + }, + { + "bbox": [ + 284, + 428, + 295, + 438 + ], + "score": 0.88, + "content": "\\mathcal { L } _ { \\mathrm { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 426, + 506, + 441 + ], + "score": 1.0, + "content": "is the standard pixel-wise cross-entropy loss on the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 438, + 302, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 302, + 451 + ], + "score": 1.0, + "content": "weakly augmented pixel-level labeled examples:", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 406, + 506, + 451 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 191, + 451, + 419, + 488 + ], + "lines": [ + { + "bbox": [ + 191, + 451, + 419, + 488 + ], + "spans": [ + { + "bbox": [ + 191, + 451, + 419, + 488 + ], + "score": 0.94, + "content": "\\mathcal { L } _ { \\mathrm { s } } = \\frac { 1 } { N \\times | \\mathcal { D } _ { l } | } \\sum _ { x \\in \\mathcal { D } _ { l } } \\sum _ { i = 0 } ^ { N - 1 } \\mathrm { C r o s s E n t r o p y } \\left( y _ { i } , f _ { \\theta } ( \\omega ( x _ { i } ) ) \\right) ,", + "type": "interline_equation", + "image_path": "c4e6ef258681327d5a51db4fbe3715327b16f29a336a86c4284b030629a615d4.jpg" + } + ] + } + ], + "index": 23.5, + "virtual_lines": [ + { + "bbox": [ + 191, + 451, + 419, + 469.5 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 191, + 469.5, + 419, + 488.0 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 489, + 505, + 545 + ], + "lines": [ + { + "bbox": [ + 105, + 489, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 133, + 502 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 490, + 140, + 500 + ], + "score": 0.8, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 489, + 385, + 502 + ], + "score": 1.0, + "content": "represents the learnable parameters of the network function", + "type": "text" + }, + { + "bbox": [ + 385, + 490, + 392, + 501 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 489, + 411, + 502 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 411, + 490, + 422, + 500 + ], + "score": 0.84, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 489, + 506, + 502 + ], + "score": 1.0, + "content": "denotes the number", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 496, + 504, + 515 + ], + "spans": [ + { + "bbox": [ + 104, + 496, + 250, + 515 + ], + "score": 1.0, + "content": "of valid labeled pixels in an image", + "type": "text" + }, + { + "bbox": [ + 250, + 500, + 311, + 510 + ], + "score": 0.89, + "content": "\\boldsymbol { x } \\in \\mathbb { R } ^ { H \\times W \\times 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 496, + 316, + 515 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 317, + 500, + 354, + 512 + ], + "score": 0.91, + "content": "y _ { i } \\in \\mathbb { R } ^ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 496, + 499, + 515 + ], + "score": 1.0, + "content": "is the ground truth label of a pixel", + "type": "text" + }, + { + "bbox": [ + 499, + 501, + 504, + 510 + ], + "score": 0.72, + "content": "i", + "type": "inline_equation" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 510, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 104, + 510, + 117, + 524 + ], + "score": 1.0, + "content": "in", + "type": "text" + }, + { + "bbox": [ + 117, + 512, + 146, + 522 + ], + "score": 0.9, + "content": "H \\times W", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 510, + 217, + 524 + ], + "score": 1.0, + "content": "dimensions, and", + "type": "text" + }, + { + "bbox": [ + 217, + 511, + 285, + 523 + ], + "score": 0.91, + "content": "f _ { \\theta } ( \\omega ( x _ { i } ) ) \\in \\mathbb { R } ^ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 510, + 433, + 524 + ], + "score": 1.0, + "content": "is the predicted probability of pixel", + "type": "text" + }, + { + "bbox": [ + 434, + 513, + 438, + 522 + ], + "score": 0.7, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 510, + 470, + 524 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 470, + 512, + 479, + 522 + ], + "score": 0.83, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 510, + 506, + 524 + ], + "score": 1.0, + "content": "is the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 521, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 244, + 535 + ], + "score": 1.0, + "content": "number of classes to predict and", + "type": "text" + }, + { + "bbox": [ + 244, + 523, + 262, + 534 + ], + "score": 0.9, + "content": "\\omega ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 521, + 505, + 535 + ], + "score": 1.0, + "content": "denotes the weak (common) data augmentation operations", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 532, + 216, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 216, + 545 + ], + "score": 1.0, + "content": "used by Chen et al. (2018).", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27, + "bbox_fs": [ + 104, + 489, + 506, + 545 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 550, + 505, + 583 + ], + "lines": [ + { + "bbox": [ + 103, + 546, + 506, + 566 + ], + "spans": [ + { + "bbox": [ + 103, + 546, + 370, + 566 + ], + "score": 1.0, + "content": "During training, the proposed PseudoSeg estimates a pseudo label", + "type": "text" + }, + { + "bbox": [ + 371, + 549, + 431, + 562 + ], + "score": 0.94, + "content": "\\widetilde { y } \\in \\mathbb { R } ^ { H \\times W \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 546, + 506, + 566 + ], + "score": 1.0, + "content": "for each strongly-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 561, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 214, + 573 + ], + "score": 1.0, + "content": "augmented unlabeled data", + "type": "text" + }, + { + "bbox": [ + 215, + 563, + 222, + 571 + ], + "score": 0.78, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 561, + 234, + 573 + ], + "score": 1.0, + "content": "in", + "type": "text" + }, + { + "bbox": [ + 234, + 562, + 248, + 572 + ], + "score": 0.9, + "content": "\\mathcal { D } _ { u }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 561, + 505, + 573 + ], + "score": 1.0, + "content": "e, which is then used for computing the cross-entropy loss. The", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 572, + 293, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 293, + 585 + ], + "score": 1.0, + "content": "unsupervised objective can then be written as:", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31, + "bbox_fs": [ + 103, + 546, + 506, + 585 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 181, + 585, + 429, + 622 + ], + "lines": [ + { + "bbox": [ + 181, + 585, + 429, + 622 + ], + "spans": [ + { + "bbox": [ + 181, + 585, + 429, + 622 + ], + "score": 0.94, + "content": "\\mathcal { L } _ { \\sf u } = \\frac { 1 } { N \\times | \\mathcal { D } _ { u } | } \\sum _ { x \\in \\mathcal { D } _ { u } } \\sum _ { i = 0 } ^ { N - 1 } \\mathrm { C r o s s E n t r o p y } \\left( \\widetilde { y } _ { i } , f _ { \\theta } ( \\beta \\circ \\omega ( x _ { i } ) ) \\right) ,", + "type": "interline_equation", + "image_path": "10f5c9adc85e295e82223bd240ae987ee529c2d193b4b7a1eec4a96192fbde37.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 181, + 585, + 429, + 597.3333333333334 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 181, + 597.3333333333334, + 429, + 609.6666666666667 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 181, + 609.6666666666667, + 429, + 622.0000000000001 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "list", + "bbox": [ + 106, + 624, + 504, + 647 + ], + "lines": [ + { + "bbox": [ + 106, + 623, + 505, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 133, + 636 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 624, + 151, + 636 + ], + "score": 0.89, + "content": "\\beta ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 623, + 505, + 636 + ], + "score": 1.0, + "content": "denotes a stronger data augmentation operation, which will be described in Section 3.2.", + "type": "text" + } + ], + "index": 36, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 634, + 346, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 634, + 346, + 646 + ], + "score": 1.0, + "content": "We illustrate the unlabeled data training branch in Figure 1.", + "type": "text" + } + ], + "index": 37, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 36.5, + "bbox_fs": [ + 106, + 623, + 505, + 646 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 660, + 335, + 672 + ], + "lines": [ + { + "bbox": [ + 105, + 659, + 335, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 335, + 673 + ], + "score": 1.0, + "content": "3.1 THE DESIGN OF STRUCTURED PSEUDO LABELS", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 679, + 502, + 703 + ], + "lines": [ + { + "bbox": [ + 106, + 679, + 504, + 692 + ], + "spans": [ + { + "bbox": [ + 106, + 679, + 399, + 692 + ], + "score": 1.0, + "content": "The next important question is how to generate the desirable pseudo label", + "type": "text" + }, + { + "bbox": [ + 399, + 680, + 405, + 691 + ], + "score": 0.83, + "content": "\\widetilde { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 679, + 504, + 692 + ], + "score": 1.0, + "content": ". A straightforward solu-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 690, + 504, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 504, + 702 + ], + "score": 1.0, + "content": "etion is directly using the decoder output of a trained segmentation model after confidence threshold-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 82, + 504, + 94 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 504, + 94 + ], + "score": 1.0, + "content": "ing, as suggested by Sohn et al. (2020a); Zoph et al. (2020); Xie et al. (2020); Sohn et al. (2020b).", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "However, as we demonstrate later in the experiments, the generated pseudo hard/soft labels as well", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "as other post-processing of outputs are barely satisfactory in the low-data regime, and thus yield", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 116, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 505, + 127 + ], + "score": 1.0, + "content": "inferior final results. To address this issue, our design of pseudo-labeling has two key insights. First,", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 126, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 126, + 505, + 138 + ], + "score": 1.0, + "content": "we seek for a distinct yet efficient decision mechanisms to compensate for the potential errors of", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "decoder outputs. Second, wisely fusing multiple sources of predictions to generate an ensemble and", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 149, + 275, + 160 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 275, + 160 + ], + "score": 1.0, + "content": "better-calibrated version of pseudo labels.", + "type": "text", + "cross_page": true + } + ], + "index": 6 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 679, + 504, + 702 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 160 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 504, + 94 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 504, + 94 + ], + "score": 1.0, + "content": "ing, as suggested by Sohn et al. (2020a); Zoph et al. (2020); Xie et al. (2020); Sohn et al. (2020b).", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "However, as we demonstrate later in the experiments, the generated pseudo hard/soft labels as well", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "as other post-processing of outputs are barely satisfactory in the low-data regime, and thus yield", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 116, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 505, + 127 + ], + "score": 1.0, + "content": "inferior final results. To address this issue, our design of pseudo-labeling has two key insights. First,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 126, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 126, + 505, + 138 + ], + "score": 1.0, + "content": "we seek for a distinct yet efficient decision mechanisms to compensate for the potential errors of", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "decoder outputs. Second, wisely fusing multiple sources of predictions to generate an ensemble and", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 149, + 275, + 160 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 275, + 160 + ], + "score": 1.0, + "content": "better-calibrated version of pseudo labels.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 106, + 163, + 505, + 252 + ], + "lines": [ + { + "bbox": [ + 105, + 162, + 505, + 176 + ], + "spans": [ + { + "bbox": [ + 105, + 162, + 505, + 176 + ], + "score": 1.0, + "content": "Starting with localization. Compared with precise segmentation, learning localization is a simpler", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 174, + 505, + 187 + ], + "spans": [ + { + "bbox": [ + 106, + 174, + 505, + 187 + ], + "score": 1.0, + "content": "task as it only needs to provide coarser-grained outputs than pixel level of objects in images. Based", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 186, + 504, + 197 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 504, + 197 + ], + "score": 1.0, + "content": "on this motivation, we improve decoder predictions from the localization perspective. Class activa-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 196, + 505, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 505, + 208 + ], + "score": 1.0, + "content": "tion map (CAM) (Zhou et al., 2016) is a popular approach to provide localization for class-specific", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 206, + 505, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 206, + 505, + 219 + ], + "score": 1.0, + "content": "regions. CAM-based methods (Hou et al., 2018; Wei et al., 2017; Ahn & Kwak, 2018) have been", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 217, + 505, + 231 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 505, + 231 + ], + "score": 1.0, + "content": "successfully adopted to tackle a different weakly supervised semantic segmentation task from us,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 230, + 504, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 504, + 240 + ], + "score": 1.0, + "content": "where they assume only image-level labels are available. In practice, we adopt a variant of class", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 239, + 370, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 370, + 253 + ], + "score": 1.0, + "content": "activation map, Grad-CAM (Selvaraju et al., 2017) in PseudoSeg.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 106, + 254, + 505, + 343 + ], + "lines": [ + { + "bbox": [ + 106, + 255, + 504, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 255, + 504, + 267 + ], + "score": 1.0, + "content": "From localization to segmentation. CAM estimates the strength of classifier responses on lo-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 266, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 505, + 277 + ], + "score": 1.0, + "content": "cal feature maps. Thus, an inherent limitation of CAM-based approaches is that it is prone to at-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 277, + 504, + 289 + ], + "spans": [ + { + "bbox": [ + 106, + 277, + 504, + 289 + ], + "score": 1.0, + "content": "tending only to the most discriminative regions. Although many weakly-supervised segmentation", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 287, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 505, + 300 + ], + "score": 1.0, + "content": "approaches (Ahn & Kwak, 2018; Ahn et al., 2019; Sun et al., 2020) aim at refining CAM local-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 299, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 505, + 311 + ], + "score": 1.0, + "content": "ization maps to segmentation masks, most of them have complicated post-processing steps, such as", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 310, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 106, + 310, + 505, + 322 + ], + "score": 1.0, + "content": "dense CRF (Krahenb ¨ uhl & Koltun ¨ , 2011), which increases the model complexity when used for con-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 321, + 506, + 333 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 506, + 333 + ], + "score": 1.0, + "content": "sistency training. Here we present a computationally efficient yet effective refinement alternative,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 332, + 319, + 343 + ], + "spans": [ + { + "bbox": [ + 106, + 332, + 319, + 343 + ], + "score": 1.0, + "content": "which is learnable using available pixel-labeled data.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 107, + 348, + 504, + 404 + ], + "lines": [ + { + "bbox": [ + 105, + 348, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 505, + 361 + ], + "score": 1.0, + "content": "Although CAM only localizes partial regions of interests, if we know the pairwise similarities be-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 359, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 505, + 372 + ], + "score": 1.0, + "content": "tween regions, we can propagate the CAM scores from the discriminative regions to the rest un-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 370, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 505, + 383 + ], + "score": 1.0, + "content": "attended regions. Actually, it has been shown in many works that the learned high-level deep fea-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 381, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 506, + 394 + ], + "score": 1.0, + "content": "tures are usually good at similarity measurements of visual objects. In this paper, we find hypercol-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 392, + 491, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 491, + 405 + ], + "score": 1.0, + "content": "umn (Hariharan et al., 2015) with a learnable similarity measure function works fairly effective.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 408, + 505, + 454 + ], + "lines": [ + { + "bbox": [ + 106, + 409, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 106, + 409, + 278, + 421 + ], + "score": 1.0, + "content": "Given the vanilla Grad-CAM output for all", + "type": "text" + }, + { + "bbox": [ + 279, + 412, + 287, + 419 + ], + "score": 0.87, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 409, + 505, + 421 + ], + "score": 1.0, + "content": "classes, which can be viewed as a spatially-flatten 2-D", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 417, + 507, + 434 + ], + "spans": [ + { + "bbox": [ + 104, + 417, + 174, + 434 + ], + "score": 1.0, + "content": "vector of weight", + "type": "text" + }, + { + "bbox": [ + 175, + 420, + 223, + 430 + ], + "score": 0.9, + "content": "m \\in \\mathbb { R } ^ { L \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 417, + 294, + 434 + ], + "score": 1.0, + "content": ", where each row", + "type": "text" + }, + { + "bbox": [ + 294, + 425, + 306, + 431 + ], + "score": 0.78, + "content": "m _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 417, + 497, + 434 + ], + "score": 1.0, + "content": "is the response weight per class for one region", + "type": "text" + }, + { + "bbox": [ + 497, + 422, + 501, + 430 + ], + "score": 0.74, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 417, + 507, + 434 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 201, + 444 + ], + "score": 1.0, + "content": "Using a kernel function", + "type": "text" + }, + { + "bbox": [ + 202, + 432, + 298, + 443 + ], + "score": 0.9, + "content": "\\mathcal { K } ( \\cdot , \\cdot ) : \\mathbb { R } ^ { H } \\times \\mathbb { R } ^ { H } \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 430, + 505, + 444 + ], + "score": 1.0, + "content": "that measures element-wise similarity given feature", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 441, + 443, + 455 + ], + "spans": [ + { + "bbox": [ + 107, + 442, + 140, + 452 + ], + "score": 0.91, + "content": "h \\in { \\bar { \\mathbb { R } } } ^ { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 441, + 289, + 455 + ], + "score": 1.0, + "content": "of two regions, the propagated score", + "type": "text" + }, + { + "bbox": [ + 289, + 442, + 327, + 453 + ], + "score": 0.92, + "content": "\\hat { m } _ { i } \\in \\mathbb { R } ^ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 441, + 443, + 455 + ], + "score": 1.0, + "content": "can be computed as follows", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5 + }, + { + "type": "interline_equation", + "bbox": [ + 198, + 456, + 413, + 495 + ], + "lines": [ + { + "bbox": [ + 198, + 456, + 413, + 495 + ], + "spans": [ + { + "bbox": [ + 198, + 456, + 413, + 495 + ], + "score": 0.93, + "content": "\\hat { m } _ { i } = \\left( m _ { i } + \\sum _ { j = 0 } ^ { L - 1 } \\frac { e ^ { K ( W _ { k } h _ { i } , W _ { v } h _ { j } ) } } { \\sum _ { k = 0 } ^ { L - 1 } e ^ { K ( W _ { k } h _ { i } , W _ { v } h _ { k } ) } } m _ { j } \\right) \\cdot W _ { c } .", + "type": "interline_equation", + "image_path": "315a83a19acb724a2334523b444d0778b85206c5895fe1814d98891b2b465de8.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 198, + 456, + 413, + 469.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 198, + 469.0, + 413, + 482.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 198, + 482.0, + 413, + 495.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 497, + 505, + 565 + ], + "lines": [ + { + "bbox": [ + 104, + 495, + 507, + 513 + ], + "spans": [ + { + "bbox": [ + 104, + 495, + 251, + 513 + ], + "score": 1.0, + "content": "The goal of this function is to train", + "type": "text" + }, + { + "bbox": [ + 251, + 498, + 416, + 511 + ], + "score": 0.87, + "content": "\\Theta = \\{ W _ { k } , W _ { v } \\in \\mathbb { R } ^ { H \\times H } , W _ { c } \\in \\mathbb { R } ^ { C \\times C } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 495, + 507, + 513 + ], + "score": 1.0, + "content": "in order to propagate", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 507, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 178, + 523 + ], + "score": 1.0, + "content": "the high value in", + "type": "text" + }, + { + "bbox": [ + 179, + 511, + 189, + 519 + ], + "score": 0.73, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 507, + 372, + 523 + ], + "score": 1.0, + "content": "to all adjacent elements in the feature space", + "type": "text" + }, + { + "bbox": [ + 373, + 510, + 388, + 520 + ], + "score": 0.84, + "content": "\\mathbb { R } ^ { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 507, + 506, + 523 + ], + "score": 1.0, + "content": "(i.e., hypercolumn features)", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 521, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 521, + 145, + 533 + ], + "score": 1.0, + "content": "to region", + "type": "text" + }, + { + "bbox": [ + 146, + 522, + 150, + 531 + ], + "score": 0.57, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 521, + 189, + 533 + ], + "score": 1.0, + "content": ". Adding", + "type": "text" + }, + { + "bbox": [ + 189, + 522, + 202, + 532 + ], + "score": 0.87, + "content": "m _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 521, + 505, + 533 + ], + "score": 1.0, + "content": "in equation 3 indicates the skip-connection. To compute propagated score", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 531, + 505, + 544 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 505, + 544 + ], + "score": 1.0, + "content": "for all regions, the operations in equation 3 can be efficiently implemented with self-attention dot-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 542, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 505, + 555 + ], + "score": 1.0, + "content": "product (Vaswani et al., 2017). For brevity, we denote this efficient refinement process output as self-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 550, + 504, + 567 + ], + "spans": [ + { + "bbox": [ + 104, + 550, + 255, + 567 + ], + "score": 1.0, + "content": "attention Grad-CAM (SGC) maps in", + "type": "text" + }, + { + "bbox": [ + 255, + 552, + 296, + 563 + ], + "score": 0.91, + "content": "\\mathbb { R } ^ { H \\times H \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 550, + 504, + 567 + ], + "score": 1.0, + "content": ". Figure 6 in Appendix A specifies the architecture.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 107, + 568, + 505, + 624 + ], + "lines": [ + { + "bbox": [ + 106, + 568, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 505, + 580 + ], + "score": 1.0, + "content": "Calibrated prediction fusion. SGC maps are obtained from low-resolution feature maps. It is then", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 578, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 505, + 592 + ], + "score": 1.0, + "content": "resized to the desired output resolution, and thus not sufficient at delineating crisp boundaries. How-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 590, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 505, + 603 + ], + "score": 1.0, + "content": "ever, compared to the segmentation decoder, SGC is capable of generating more locally-consistent", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 601, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 505, + 614 + ], + "score": 1.0, + "content": "masks. Thus, we propose a novel calibrated fusion strategy to take advantage of both decoder and", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 613, + 272, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 613, + 272, + 623 + ], + "score": 1.0, + "content": "SCG predictions for better pseudo labels.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 106, + 628, + 505, + 652 + ], + "lines": [ + { + "bbox": [ + 106, + 628, + 504, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 628, + 372, + 642 + ], + "score": 1.0, + "content": "Specifically, given a batch of decoder outputs (pre-softmax logits)", + "type": "text" + }, + { + "bbox": [ + 373, + 629, + 429, + 641 + ], + "score": 0.93, + "content": "\\hat { p } = f _ { \\theta } ( \\omega ( x ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 628, + 494, + 642 + ], + "score": 1.0, + "content": "and SGC maps", + "type": "text" + }, + { + "bbox": [ + 494, + 630, + 504, + 639 + ], + "score": 0.77, + "content": "\\hat { m }", + "type": "inline_equation" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 640, + 434, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 267, + 654 + ], + "score": 1.0, + "content": "computed from weakly-augmented data", + "type": "text" + }, + { + "bbox": [ + 268, + 640, + 289, + 652 + ], + "score": 0.92, + "content": "\\omega ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 640, + 414, + 654 + ], + "score": 1.0, + "content": ", we generate the pseudo labels", + "type": "text" + }, + { + "bbox": [ + 414, + 641, + 421, + 652 + ], + "score": 0.83, + "content": "\\widetilde { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 640, + 434, + 654 + ], + "score": 1.0, + "content": "by", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46.5 + }, + { + "type": "interline_equation", + "bbox": [ + 114, + 654, + 484, + 682 + ], + "lines": [ + { + "bbox": [ + 114, + 654, + 484, + 682 + ], + "spans": [ + { + "bbox": [ + 114, + 654, + 484, + 682 + ], + "score": 0.91, + "content": "\\mathcal { F } ( \\hat { p } , \\hat { m } ) = \\mathrm { S h a r p e n } \\left( \\gamma \\operatorname { S o f t m a x } \\left( \\frac { \\hat { p } } { \\operatorname { N o r m } ( \\hat { p } , \\hat { m } ) } \\right) + ( 1 - \\gamma ) \\operatorname { S o f t m a x } \\left( \\frac { \\hat { m } } { \\operatorname { N o r m } ( \\hat { p } , \\hat { m } ) } \\right) , T \\right) .", + "type": "interline_equation", + "image_path": "8a2cc9c7dadb07213de1f86511ba990a5e698739952cb66fb24d2207c967f266.jpg" + } + ] + } + ], + "index": 49, + "virtual_lines": [ + { + "bbox": [ + 114, + 654, + 484, + 663.3333333333334 + ], + "spans": [], + "index": 48 + }, + { + "bbox": [ + 114, + 663.3333333333334, + 484, + 672.6666666666667 + ], + "spans": [], + "index": 49 + }, + { + "bbox": [ + 114, + 672.6666666666667, + 484, + 682.0000000000001 + ], + "spans": [], + "index": 50 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 683, + 505, + 725 + ], + "lines": [ + { + "bbox": [ + 106, + 683, + 505, + 696 + ], + "spans": [ + { + "bbox": [ + 106, + 683, + 505, + 696 + ], + "score": 1.0, + "content": "Two critical procedures are proposed to use here to make the fusion process successful. First,", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 106, + 693, + 505, + 707 + ], + "spans": [ + { + "bbox": [ + 106, + 695, + 113, + 706 + ], + "score": 0.83, + "content": "\\hat { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 693, + 133, + 707 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 133, + 695, + 144, + 704 + ], + "score": 0.82, + "content": "\\hat { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 693, + 505, + 707 + ], + "score": 1.0, + "content": "are from different decision mechanisms and they could have very different degrees of", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 103, + 705, + 507, + 728 + ], + "spans": [ + { + "bbox": [ + 103, + 705, + 333, + 728 + ], + "score": 1.0, + "content": "overconfidence. Therefore, we introduce the operation", + "type": "text" + }, + { + "bbox": [ + 333, + 705, + 465, + 726 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\mathrm { N o r m } ( a , b ) = \\sqrt { \\sum _ { i } ^ { | a | } ( a _ { i } ^ { 2 } + b _ { i } ^ { 2 } ) } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 705, + 507, + 728 + ], + "score": 1.0, + "content": "as a nor-", + "type": "text" + } + ], + "index": 53 + } + ], + "index": 52 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 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, + 160 + ], + "lines": [], + "index": 3, + "bbox_fs": [ + 105, + 82, + 505, + 160 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 163, + 505, + 252 + ], + "lines": [ + { + "bbox": [ + 105, + 162, + 505, + 176 + ], + "spans": [ + { + "bbox": [ + 105, + 162, + 505, + 176 + ], + "score": 1.0, + "content": "Starting with localization. Compared with precise segmentation, learning localization is a simpler", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 174, + 505, + 187 + ], + "spans": [ + { + "bbox": [ + 106, + 174, + 505, + 187 + ], + "score": 1.0, + "content": "task as it only needs to provide coarser-grained outputs than pixel level of objects in images. Based", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 186, + 504, + 197 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 504, + 197 + ], + "score": 1.0, + "content": "on this motivation, we improve decoder predictions from the localization perspective. Class activa-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 196, + 505, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 505, + 208 + ], + "score": 1.0, + "content": "tion map (CAM) (Zhou et al., 2016) is a popular approach to provide localization for class-specific", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 206, + 505, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 206, + 505, + 219 + ], + "score": 1.0, + "content": "regions. CAM-based methods (Hou et al., 2018; Wei et al., 2017; Ahn & Kwak, 2018) have been", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 217, + 505, + 231 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 505, + 231 + ], + "score": 1.0, + "content": "successfully adopted to tackle a different weakly supervised semantic segmentation task from us,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 230, + 504, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 504, + 240 + ], + "score": 1.0, + "content": "where they assume only image-level labels are available. In practice, we adopt a variant of class", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 239, + 370, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 370, + 253 + ], + "score": 1.0, + "content": "activation map, Grad-CAM (Selvaraju et al., 2017) in PseudoSeg.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 162, + 505, + 253 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 254, + 505, + 343 + ], + "lines": [ + { + "bbox": [ + 106, + 255, + 504, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 255, + 504, + 267 + ], + "score": 1.0, + "content": "From localization to segmentation. CAM estimates the strength of classifier responses on lo-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 266, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 505, + 277 + ], + "score": 1.0, + "content": "cal feature maps. Thus, an inherent limitation of CAM-based approaches is that it is prone to at-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 277, + 504, + 289 + ], + "spans": [ + { + "bbox": [ + 106, + 277, + 504, + 289 + ], + "score": 1.0, + "content": "tending only to the most discriminative regions. Although many weakly-supervised segmentation", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 287, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 505, + 300 + ], + "score": 1.0, + "content": "approaches (Ahn & Kwak, 2018; Ahn et al., 2019; Sun et al., 2020) aim at refining CAM local-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 299, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 505, + 311 + ], + "score": 1.0, + "content": "ization maps to segmentation masks, most of them have complicated post-processing steps, such as", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 310, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 106, + 310, + 505, + 322 + ], + "score": 1.0, + "content": "dense CRF (Krahenb ¨ uhl & Koltun ¨ , 2011), which increases the model complexity when used for con-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 321, + 506, + 333 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 506, + 333 + ], + "score": 1.0, + "content": "sistency training. Here we present a computationally efficient yet effective refinement alternative,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 332, + 319, + 343 + ], + "spans": [ + { + "bbox": [ + 106, + 332, + 319, + 343 + ], + "score": 1.0, + "content": "which is learnable using available pixel-labeled data.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 255, + 506, + 343 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 348, + 504, + 404 + ], + "lines": [ + { + "bbox": [ + 105, + 348, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 505, + 361 + ], + "score": 1.0, + "content": "Although CAM only localizes partial regions of interests, if we know the pairwise similarities be-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 359, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 505, + 372 + ], + "score": 1.0, + "content": "tween regions, we can propagate the CAM scores from the discriminative regions to the rest un-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 370, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 505, + 383 + ], + "score": 1.0, + "content": "attended regions. Actually, it has been shown in many works that the learned high-level deep fea-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 381, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 506, + 394 + ], + "score": 1.0, + "content": "tures are usually good at similarity measurements of visual objects. In this paper, we find hypercol-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 392, + 491, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 491, + 405 + ], + "score": 1.0, + "content": "umn (Hariharan et al., 2015) with a learnable similarity measure function works fairly effective.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 348, + 506, + 405 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 408, + 505, + 454 + ], + "lines": [ + { + "bbox": [ + 106, + 409, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 106, + 409, + 278, + 421 + ], + "score": 1.0, + "content": "Given the vanilla Grad-CAM output for all", + "type": "text" + }, + { + "bbox": [ + 279, + 412, + 287, + 419 + ], + "score": 0.87, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 409, + 505, + 421 + ], + "score": 1.0, + "content": "classes, which can be viewed as a spatially-flatten 2-D", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 417, + 507, + 434 + ], + "spans": [ + { + "bbox": [ + 104, + 417, + 174, + 434 + ], + "score": 1.0, + "content": "vector of weight", + "type": "text" + }, + { + "bbox": [ + 175, + 420, + 223, + 430 + ], + "score": 0.9, + "content": "m \\in \\mathbb { R } ^ { L \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 417, + 294, + 434 + ], + "score": 1.0, + "content": ", where each row", + "type": "text" + }, + { + "bbox": [ + 294, + 425, + 306, + 431 + ], + "score": 0.78, + "content": "m _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 417, + 497, + 434 + ], + "score": 1.0, + "content": "is the response weight per class for one region", + "type": "text" + }, + { + "bbox": [ + 497, + 422, + 501, + 430 + ], + "score": 0.74, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 417, + 507, + 434 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 201, + 444 + ], + "score": 1.0, + "content": "Using a kernel function", + "type": "text" + }, + { + "bbox": [ + 202, + 432, + 298, + 443 + ], + "score": 0.9, + "content": "\\mathcal { K } ( \\cdot , \\cdot ) : \\mathbb { R } ^ { H } \\times \\mathbb { R } ^ { H } \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 430, + 505, + 444 + ], + "score": 1.0, + "content": "that measures element-wise similarity given feature", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 441, + 443, + 455 + ], + "spans": [ + { + "bbox": [ + 107, + 442, + 140, + 452 + ], + "score": 0.91, + "content": "h \\in { \\bar { \\mathbb { R } } } ^ { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 441, + 289, + 455 + ], + "score": 1.0, + "content": "of two regions, the propagated score", + "type": "text" + }, + { + "bbox": [ + 289, + 442, + 327, + 453 + ], + "score": 0.92, + "content": "\\hat { m } _ { i } \\in \\mathbb { R } ^ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 441, + 443, + 455 + ], + "score": 1.0, + "content": "can be computed as follows", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5, + "bbox_fs": [ + 104, + 409, + 507, + 455 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 198, + 456, + 413, + 495 + ], + "lines": [ + { + "bbox": [ + 198, + 456, + 413, + 495 + ], + "spans": [ + { + "bbox": [ + 198, + 456, + 413, + 495 + ], + "score": 0.93, + "content": "\\hat { m } _ { i } = \\left( m _ { i } + \\sum _ { j = 0 } ^ { L - 1 } \\frac { e ^ { K ( W _ { k } h _ { i } , W _ { v } h _ { j } ) } } { \\sum _ { k = 0 } ^ { L - 1 } e ^ { K ( W _ { k } h _ { i } , W _ { v } h _ { k } ) } } m _ { j } \\right) \\cdot W _ { c } .", + "type": "interline_equation", + "image_path": "315a83a19acb724a2334523b444d0778b85206c5895fe1814d98891b2b465de8.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 198, + 456, + 413, + 469.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 198, + 469.0, + 413, + 482.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 198, + 482.0, + 413, + 495.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 497, + 505, + 565 + ], + "lines": [ + { + "bbox": [ + 104, + 495, + 507, + 513 + ], + "spans": [ + { + "bbox": [ + 104, + 495, + 251, + 513 + ], + "score": 1.0, + "content": "The goal of this function is to train", + "type": "text" + }, + { + "bbox": [ + 251, + 498, + 416, + 511 + ], + "score": 0.87, + "content": "\\Theta = \\{ W _ { k } , W _ { v } \\in \\mathbb { R } ^ { H \\times H } , W _ { c } \\in \\mathbb { R } ^ { C \\times C } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 495, + 507, + 513 + ], + "score": 1.0, + "content": "in order to propagate", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 507, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 178, + 523 + ], + "score": 1.0, + "content": "the high value in", + "type": "text" + }, + { + "bbox": [ + 179, + 511, + 189, + 519 + ], + "score": 0.73, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 507, + 372, + 523 + ], + "score": 1.0, + "content": "to all adjacent elements in the feature space", + "type": "text" + }, + { + "bbox": [ + 373, + 510, + 388, + 520 + ], + "score": 0.84, + "content": "\\mathbb { R } ^ { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 507, + 506, + 523 + ], + "score": 1.0, + "content": "(i.e., hypercolumn features)", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 521, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 521, + 145, + 533 + ], + "score": 1.0, + "content": "to region", + "type": "text" + }, + { + "bbox": [ + 146, + 522, + 150, + 531 + ], + "score": 0.57, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 521, + 189, + 533 + ], + "score": 1.0, + "content": ". Adding", + "type": "text" + }, + { + "bbox": [ + 189, + 522, + 202, + 532 + ], + "score": 0.87, + "content": "m _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 521, + 505, + 533 + ], + "score": 1.0, + "content": "in equation 3 indicates the skip-connection. To compute propagated score", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 531, + 505, + 544 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 505, + 544 + ], + "score": 1.0, + "content": "for all regions, the operations in equation 3 can be efficiently implemented with self-attention dot-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 542, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 505, + 555 + ], + "score": 1.0, + "content": "product (Vaswani et al., 2017). For brevity, we denote this efficient refinement process output as self-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 550, + 504, + 567 + ], + "spans": [ + { + "bbox": [ + 104, + 550, + 255, + 567 + ], + "score": 1.0, + "content": "attention Grad-CAM (SGC) maps in", + "type": "text" + }, + { + "bbox": [ + 255, + 552, + 296, + 563 + ], + "score": 0.91, + "content": "\\mathbb { R } ^ { H \\times H \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 550, + 504, + 567 + ], + "score": 1.0, + "content": ". Figure 6 in Appendix A specifies the architecture.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37.5, + "bbox_fs": [ + 104, + 495, + 507, + 567 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 568, + 505, + 624 + ], + "lines": [ + { + "bbox": [ + 106, + 568, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 505, + 580 + ], + "score": 1.0, + "content": "Calibrated prediction fusion. SGC maps are obtained from low-resolution feature maps. It is then", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 578, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 505, + 592 + ], + "score": 1.0, + "content": "resized to the desired output resolution, and thus not sufficient at delineating crisp boundaries. How-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 590, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 505, + 603 + ], + "score": 1.0, + "content": "ever, compared to the segmentation decoder, SGC is capable of generating more locally-consistent", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 601, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 505, + 614 + ], + "score": 1.0, + "content": "masks. Thus, we propose a novel calibrated fusion strategy to take advantage of both decoder and", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 613, + 272, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 613, + 272, + 623 + ], + "score": 1.0, + "content": "SCG predictions for better pseudo labels.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 568, + 505, + 623 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 628, + 505, + 652 + ], + "lines": [ + { + "bbox": [ + 106, + 628, + 504, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 628, + 372, + 642 + ], + "score": 1.0, + "content": "Specifically, given a batch of decoder outputs (pre-softmax logits)", + "type": "text" + }, + { + "bbox": [ + 373, + 629, + 429, + 641 + ], + "score": 0.93, + "content": "\\hat { p } = f _ { \\theta } ( \\omega ( x ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 628, + 494, + 642 + ], + "score": 1.0, + "content": "and SGC maps", + "type": "text" + }, + { + "bbox": [ + 494, + 630, + 504, + 639 + ], + "score": 0.77, + "content": "\\hat { m }", + "type": "inline_equation" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 640, + 434, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 267, + 654 + ], + "score": 1.0, + "content": "computed from weakly-augmented data", + "type": "text" + }, + { + "bbox": [ + 268, + 640, + 289, + 652 + ], + "score": 0.92, + "content": "\\omega ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 640, + 414, + 654 + ], + "score": 1.0, + "content": ", we generate the pseudo labels", + "type": "text" + }, + { + "bbox": [ + 414, + 641, + 421, + 652 + ], + "score": 0.83, + "content": "\\widetilde { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 640, + 434, + 654 + ], + "score": 1.0, + "content": "by", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46.5, + "bbox_fs": [ + 105, + 628, + 504, + 654 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 114, + 654, + 484, + 682 + ], + "lines": [ + { + "bbox": [ + 114, + 654, + 484, + 682 + ], + "spans": [ + { + "bbox": [ + 114, + 654, + 484, + 682 + ], + "score": 0.91, + "content": "\\mathcal { F } ( \\hat { p } , \\hat { m } ) = \\mathrm { S h a r p e n } \\left( \\gamma \\operatorname { S o f t m a x } \\left( \\frac { \\hat { p } } { \\operatorname { N o r m } ( \\hat { p } , \\hat { m } ) } \\right) + ( 1 - \\gamma ) \\operatorname { S o f t m a x } \\left( \\frac { \\hat { m } } { \\operatorname { N o r m } ( \\hat { p } , \\hat { m } ) } \\right) , T \\right) .", + "type": "interline_equation", + "image_path": "8a2cc9c7dadb07213de1f86511ba990a5e698739952cb66fb24d2207c967f266.jpg" + } + ] + } + ], + "index": 49, + "virtual_lines": [ + { + "bbox": [ + 114, + 654, + 484, + 663.3333333333334 + ], + "spans": [], + "index": 48 + }, + { + "bbox": [ + 114, + 663.3333333333334, + 484, + 672.6666666666667 + ], + "spans": [], + "index": 49 + }, + { + "bbox": [ + 114, + 672.6666666666667, + 484, + 682.0000000000001 + ], + "spans": [], + "index": 50 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 683, + 505, + 725 + ], + "lines": [ + { + "bbox": [ + 106, + 683, + 505, + 696 + ], + "spans": [ + { + "bbox": [ + 106, + 683, + 505, + 696 + ], + "score": 1.0, + "content": "Two critical procedures are proposed to use here to make the fusion process successful. First,", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 106, + 693, + 505, + 707 + ], + "spans": [ + { + "bbox": [ + 106, + 695, + 113, + 706 + ], + "score": 0.83, + "content": "\\hat { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 693, + 133, + 707 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 133, + 695, + 144, + 704 + ], + "score": 0.82, + "content": "\\hat { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 693, + 505, + 707 + ], + "score": 1.0, + "content": "are from different decision mechanisms and they could have very different degrees of", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 103, + 705, + 507, + 728 + ], + "spans": [ + { + "bbox": [ + 103, + 705, + 333, + 728 + ], + "score": 1.0, + "content": "overconfidence. Therefore, we introduce the operation", + "type": "text" + }, + { + "bbox": [ + 333, + 705, + 465, + 726 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\mathrm { N o r m } ( a , b ) = \\sqrt { \\sum _ { i } ^ { | a | } ( a _ { i } ^ { 2 } + b _ { i } ^ { 2 } ) } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 705, + 507, + 728 + ], + "score": 1.0, + "content": "as a nor-", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 178, + 504, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 178, + 504, + 190 + ], + "score": 1.0, + "content": "malization factor. It alleviates the over-confident probability after softmax, which could unfavor-", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 189, + 505, + 202 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 217, + 202 + ], + "score": 1.0, + "content": "ably dominate the resulted", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 218, + 191, + 225, + 200 + ], + "score": 0.79, + "content": "\\gamma", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 225, + 189, + 505, + 202 + ], + "score": 1.0, + "content": "-averaged probability. Second, the distribution sharpening operation", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 200, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 139, + 214 + ], + "score": 1.0, + "content": "Sharpen", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 140, + 200, + 253, + 217 + ], + "score": 0.92, + "content": "\\begin{array} { r } { ( a , T ) _ { i } ~ = ~ a _ { i } ^ { 1 / T } / \\sum _ { j } ^ { C } a _ { j } ^ { 1 / T } } \\end{array}", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 255, + 202, + 384, + 216 + ], + "score": 1.0, + "content": "adjusts the temperature scalar", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 385, + 203, + 393, + 213 + ], + "score": 0.76, + "content": "T", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 394, + 202, + 505, + 216 + ], + "score": 1.0, + "content": "of categorical distribution", + "type": "text", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 214, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 214, + 505, + 227 + ], + "score": 1.0, + "content": "(Berthelot et al., 2019b; Chen et al., 2020b). Figure 2 illustrates the predictions from different", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 226, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 505, + 238 + ], + "score": 1.0, + "content": "sources. More importantly, we investigate the pseudo-labeling from a calibration perspective (Sec-", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 237, + 504, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 353, + 249 + ], + "score": 1.0, + "content": "tion 4.3), demonstrating that the proposed soft pseudo label", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 353, + 237, + 361, + 248 + ], + "score": 0.84, + "content": "\\widetilde { y }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 361, + 237, + 504, + 249 + ], + "score": 1.0, + "content": "leads to a better calibration metric", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 249, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 106, + 249, + 505, + 260 + ], + "score": 1.0, + "content": "comparing to other possible fusion alternatives, and justifying why it benefits the final segmentation", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 260, + 162, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 260, + 162, + 271 + ], + "score": 1.0, + "content": "performance.", + "type": "text", + "cross_page": true + } + ], + "index": 13 + } + ], + "index": 52, + "bbox_fs": [ + 103, + 683, + 507, + 728 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 80, + 500, + 129 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 80, + 500, + 129 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 80, + 500, + 129 + ], + "spans": [ + { + "bbox": [ + 107, + 80, + 500, + 129 + ], + "score": 0.962, + "type": "image", + "image_path": "da24262064ec7dc7f8d685b2d6566bc0dcda547c410ce0f2f99758c6eebe8bf2.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 80, + 500, + 96.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 96.33333333333333, + 500, + 112.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 112.66666666666666, + 500, + 129.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 131, + 493, + 165 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 131, + 495, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 495, + 145 + ], + "score": 1.0, + "content": "Figure 2: Visualization of pseudo labels and other predictions. The generated pseudo label by", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 141, + 487, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 487, + 156 + ], + "score": 1.0, + "content": "fusing the predictions from the decoder and SGC map is used to supervise the decoder (strong)", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 153, + 311, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 311, + 167 + ], + "score": 1.0, + "content": "predictions of the strongly-augmented counterpart.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 178, + 505, + 270 + ], + "lines": [ + { + "bbox": [ + 105, + 178, + 504, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 178, + 504, + 190 + ], + "score": 1.0, + "content": "malization factor. It alleviates the over-confident probability after softmax, which could unfavor-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 189, + 505, + 202 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 217, + 202 + ], + "score": 1.0, + "content": "ably dominate the resulted", + "type": "text" + }, + { + "bbox": [ + 218, + 191, + 225, + 200 + ], + "score": 0.79, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 189, + 505, + 202 + ], + "score": 1.0, + "content": "-averaged probability. Second, the distribution sharpening operation", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 200, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 139, + 214 + ], + "score": 1.0, + "content": "Sharpen", + "type": "text" + }, + { + "bbox": [ + 140, + 200, + 253, + 217 + ], + "score": 0.92, + "content": "\\begin{array} { r } { ( a , T ) _ { i } ~ = ~ a _ { i } ^ { 1 / T } / \\sum _ { j } ^ { C } a _ { j } ^ { 1 / T } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 202, + 384, + 216 + ], + "score": 1.0, + "content": "adjusts the temperature scalar", + "type": "text" + }, + { + "bbox": [ + 385, + 203, + 393, + 213 + ], + "score": 0.76, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 202, + 505, + 216 + ], + "score": 1.0, + "content": "of categorical distribution", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 214, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 214, + 505, + 227 + ], + "score": 1.0, + "content": "(Berthelot et al., 2019b; Chen et al., 2020b). Figure 2 illustrates the predictions from different", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 226, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 505, + 238 + ], + "score": 1.0, + "content": "sources. More importantly, we investigate the pseudo-labeling from a calibration perspective (Sec-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 237, + 504, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 353, + 249 + ], + "score": 1.0, + "content": "tion 4.3), demonstrating that the proposed soft pseudo label", + "type": "text" + }, + { + "bbox": [ + 353, + 237, + 361, + 248 + ], + "score": 0.84, + "content": "\\widetilde { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 237, + 504, + 249 + ], + "score": 1.0, + "content": "leads to a better calibration metric", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 249, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 106, + 249, + 505, + 260 + ], + "score": 1.0, + "content": "comparing to other possible fusion alternatives, and justifying why it benefits the final segmentation", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 260, + 162, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 260, + 162, + 271 + ], + "score": 1.0, + "content": "performance.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 107, + 273, + 505, + 362 + ], + "lines": [ + { + "bbox": [ + 105, + 273, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 462, + 286 + ], + "score": 1.0, + "content": "Training. Our final training objective contains two extra losses: a classification loss", + "type": "text" + }, + { + "bbox": [ + 462, + 274, + 475, + 285 + ], + "score": 0.88, + "content": "\\mathcal { L } _ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 273, + 506, + 286 + ], + "score": 1.0, + "content": ", and a", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 285, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 179, + 297 + ], + "score": 1.0, + "content": "segmentation loss", + "type": "text" + }, + { + "bbox": [ + 179, + 285, + 195, + 296 + ], + "score": 0.89, + "content": "\\mathcal { L } _ { s a }", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 285, + 505, + 297 + ], + "score": 1.0, + "content": ". First, to compute Grad-CAM, we add a one-layer classification head after the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 296, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 344, + 308 + ], + "score": 1.0, + "content": "segmentation backbone and a multi-label classification loss", + "type": "text" + }, + { + "bbox": [ + 344, + 296, + 357, + 307 + ], + "score": 0.88, + "content": "\\mathcal { L } _ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 296, + 505, + 308 + ], + "score": 1.0, + "content": ". Second, as specified in Appendix A", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 307, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 505, + 318 + ], + "score": 1.0, + "content": "(Figure 6), SGC maps are scaled as pixel-wise probabilities using one-layer convolution followed by", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 318, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 237, + 330 + ], + "score": 1.0, + "content": "softmax in equation 3. Learning", + "type": "text" + }, + { + "bbox": [ + 237, + 318, + 246, + 327 + ], + "score": 0.78, + "content": "\\Theta", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 318, + 432, + 330 + ], + "score": 1.0, + "content": "to predict SGC maps needs pixel-labeled data", + "type": "text" + }, + { + "bbox": [ + 433, + 318, + 445, + 329 + ], + "score": 0.87, + "content": "D _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 318, + 505, + 330 + ], + "score": 1.0, + "content": ". It is achieved", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 328, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 234, + 342 + ], + "score": 1.0, + "content": "by an extra segmentation loss", + "type": "text" + }, + { + "bbox": [ + 234, + 329, + 250, + 340 + ], + "score": 0.9, + "content": "\\mathcal { L } _ { s a }", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 328, + 505, + 342 + ], + "score": 1.0, + "content": "between SGC maps of pixel-labeled data and corresponding", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 339, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 344, + 353 + ], + "score": 1.0, + "content": "ground truth. All the loss terms are jointly optimized (i.e.,", + "type": "text" + }, + { + "bbox": [ + 344, + 339, + 437, + 351 + ], + "score": 0.9, + "content": "\\mathcal { L } _ { u } + \\mathcal { L } _ { s } + \\mathcal { L } _ { x } + \\mathcal { L } _ { s a } )", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 339, + 466, + 353 + ], + "score": 1.0, + "content": ", while", + "type": "text" + }, + { + "bbox": [ + 466, + 340, + 483, + 351 + ], + "score": 0.9, + "content": "\\mathcal { L } _ { s a }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 339, + 505, + 353 + ], + "score": 1.0, + "content": "only", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 351, + 481, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 147, + 363 + ], + "score": 1.0, + "content": "optimizes", + "type": "text" + }, + { + "bbox": [ + 148, + 351, + 157, + 361 + ], + "score": 0.79, + "content": "\\Theta", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 351, + 481, + 363 + ], + "score": 1.0, + "content": "(achieved by stopping gradient). See Figure 7 in the appendix for further details.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 17.5 + }, + { + "type": "title", + "bbox": [ + 108, + 376, + 393, + 387 + ], + "lines": [ + { + "bbox": [ + 105, + 375, + 394, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 394, + 389 + ], + "score": 1.0, + "content": "3.2 INCORPORATING IMAGE-LEVEL LABELS AND AUGMENTATION", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 394, + 505, + 449 + ], + "lines": [ + { + "bbox": [ + 107, + 394, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 107, + 394, + 505, + 406 + ], + "score": 1.0, + "content": "The proposed PseudoSeg can easily incorporate image-level label information (if available) into our", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 406, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 505, + 418 + ], + "score": 1.0, + "content": "one-stage training framework, which also leads to consistent improvement as we demonstrate in", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "score": 1.0, + "content": "experiments. We utilize the image-level data with two following steps. First, we directly use ground", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 427, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 505, + 441 + ], + "score": 1.0, + "content": "truth image-level labels to generate Grad-CAMs instead of using classifier outputs. Second, they are", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 439, + 468, + 451 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 468, + 451 + ], + "score": 1.0, + "content": "used to increase classification supervision beyond pixel-level labels for the classifier head.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 455, + 505, + 510 + ], + "lines": [ + { + "bbox": [ + 105, + 455, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 505, + 467 + ], + "score": 1.0, + "content": "For strong data augmentation, we simply follow color jittering operations from SimCLR (Chen", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 465, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 505, + 479 + ], + "score": 1.0, + "content": "et al., 2020b) and remove all geometric transformations. The overall strength of augmentation can", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 477, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 505, + 489 + ], + "score": 1.0, + "content": "be controlled by a scalar (studied in experiments). We also apply once random CutOut (DeVries", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 487, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 247, + 501 + ], + "score": 1.0, + "content": "& Taylor, 2017) with a region of", + "type": "text" + }, + { + "bbox": [ + 247, + 488, + 282, + 499 + ], + "score": 0.9, + "content": "5 0 \\times 5 0", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 487, + 505, + 501 + ], + "score": 1.0, + "content": "pixels since we find it gives consistent though minor", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 499, + 415, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 415, + 512 + ], + "score": 1.0, + "content": "improvement (pixels inside CutOut regions are ignored in computing losses).", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30 + }, + { + "type": "title", + "bbox": [ + 108, + 527, + 257, + 539 + ], + "lines": [ + { + "bbox": [ + 105, + 525, + 258, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 258, + 541 + ], + "score": 1.0, + "content": "4 EXPERIMENTAL RESULTS", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 550, + 505, + 594 + ], + "lines": [ + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "We start by specifying the experimental details. Then, we evaluate the method in the settings of using", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "pixel-level labeled data and unlabeled data, as well as using pixel-level labeled data and image-level", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "labeled data, respectively. Next, we conduct various ablation studies to justify our design choices.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 583, + 388, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 388, + 596 + ], + "score": 1.0, + "content": "Lastly, we conduct more comparative experiments in specific settings.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 107, + 600, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 600, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 505, + 612 + ], + "score": 1.0, + "content": "To evaluate the proposed method, we conduct the main experiments and ablation studies on the PAS-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 610, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 505, + 623 + ], + "score": 1.0, + "content": "CAL VOC 2012 dataset (VOC12) (Everingham et al., 2015), which contains 21 classes including", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 621, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 635 + ], + "score": 1.0, + "content": "background. The standard VOC12 dataset has 1,449 images as the training set and 1,456 images", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "as the validation set. We randomly subsample 1/2, 1/4, 1/8, and 1/16 of images in the standard", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 642, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 506, + 657 + ], + "score": 1.0, + "content": "training set to construct the pixel-level labeled data. The remaining images in the standard training", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 655, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 440, + 667 + ], + "score": 1.0, + "content": "set, together with the images in the augmented set (Hariharan et al., 2011) (around", + "type": "text" + }, + { + "bbox": [ + 441, + 655, + 453, + 666 + ], + "score": 0.35, + "content": "9 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 655, + 506, + 667 + ], + "score": 1.0, + "content": "images), are", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "used as unlabeled or image-level labeled data. To further verify the effectiveness of the proposed", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 676, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 689 + ], + "score": 1.0, + "content": "method, we also conduct experiments on the COCO dataset (Lin et al., 2014). The COCO dataset", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 688, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 699 + ], + "score": 1.0, + "content": "has 118,287 images as the training set, and 5,000 images as the validation set. We evaluate on the", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "80 foreground classes and the background, as in the object detection task. As the COCO dataset", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "is larger than VOC12, we randomly subsample smaller ratios, 1/32, 1/64, 1/128, 1/256, 1/512, of", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "images from the training set to construct the pixel-level labeled data. The remaining images in the", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 43.5 + } + ], + "page_idx": 4, + "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, + 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": [ + 107, + 80, + 500, + 129 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 80, + 500, + 129 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 80, + 500, + 129 + ], + "spans": [ + { + "bbox": [ + 107, + 80, + 500, + 129 + ], + "score": 0.962, + "type": "image", + "image_path": "da24262064ec7dc7f8d685b2d6566bc0dcda547c410ce0f2f99758c6eebe8bf2.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 80, + 500, + 96.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 96.33333333333333, + 500, + 112.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 112.66666666666666, + 500, + 129.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 131, + 493, + 165 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 131, + 495, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 495, + 145 + ], + "score": 1.0, + "content": "Figure 2: Visualization of pseudo labels and other predictions. The generated pseudo label by", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 141, + 487, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 487, + 156 + ], + "score": 1.0, + "content": "fusing the predictions from the decoder and SGC map is used to supervise the decoder (strong)", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 153, + 311, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 311, + 167 + ], + "score": 1.0, + "content": "predictions of the strongly-augmented counterpart.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 178, + 505, + 270 + ], + "lines": [], + "index": 9.5, + "bbox_fs": [ + 105, + 178, + 505, + 271 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 273, + 505, + 362 + ], + "lines": [ + { + "bbox": [ + 105, + 273, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 462, + 286 + ], + "score": 1.0, + "content": "Training. Our final training objective contains two extra losses: a classification loss", + "type": "text" + }, + { + "bbox": [ + 462, + 274, + 475, + 285 + ], + "score": 0.88, + "content": "\\mathcal { L } _ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 273, + 506, + 286 + ], + "score": 1.0, + "content": ", and a", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 285, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 179, + 297 + ], + "score": 1.0, + "content": "segmentation loss", + "type": "text" + }, + { + "bbox": [ + 179, + 285, + 195, + 296 + ], + "score": 0.89, + "content": "\\mathcal { L } _ { s a }", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 285, + 505, + 297 + ], + "score": 1.0, + "content": ". First, to compute Grad-CAM, we add a one-layer classification head after the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 296, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 344, + 308 + ], + "score": 1.0, + "content": "segmentation backbone and a multi-label classification loss", + "type": "text" + }, + { + "bbox": [ + 344, + 296, + 357, + 307 + ], + "score": 0.88, + "content": "\\mathcal { L } _ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 296, + 505, + 308 + ], + "score": 1.0, + "content": ". Second, as specified in Appendix A", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 307, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 505, + 318 + ], + "score": 1.0, + "content": "(Figure 6), SGC maps are scaled as pixel-wise probabilities using one-layer convolution followed by", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 318, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 237, + 330 + ], + "score": 1.0, + "content": "softmax in equation 3. Learning", + "type": "text" + }, + { + "bbox": [ + 237, + 318, + 246, + 327 + ], + "score": 0.78, + "content": "\\Theta", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 318, + 432, + 330 + ], + "score": 1.0, + "content": "to predict SGC maps needs pixel-labeled data", + "type": "text" + }, + { + "bbox": [ + 433, + 318, + 445, + 329 + ], + "score": 0.87, + "content": "D _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 318, + 505, + 330 + ], + "score": 1.0, + "content": ". It is achieved", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 328, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 234, + 342 + ], + "score": 1.0, + "content": "by an extra segmentation loss", + "type": "text" + }, + { + "bbox": [ + 234, + 329, + 250, + 340 + ], + "score": 0.9, + "content": "\\mathcal { L } _ { s a }", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 328, + 505, + 342 + ], + "score": 1.0, + "content": "between SGC maps of pixel-labeled data and corresponding", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 339, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 344, + 353 + ], + "score": 1.0, + "content": "ground truth. All the loss terms are jointly optimized (i.e.,", + "type": "text" + }, + { + "bbox": [ + 344, + 339, + 437, + 351 + ], + "score": 0.9, + "content": "\\mathcal { L } _ { u } + \\mathcal { L } _ { s } + \\mathcal { L } _ { x } + \\mathcal { L } _ { s a } )", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 339, + 466, + 353 + ], + "score": 1.0, + "content": ", while", + "type": "text" + }, + { + "bbox": [ + 466, + 340, + 483, + 351 + ], + "score": 0.9, + "content": "\\mathcal { L } _ { s a }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 339, + 505, + 353 + ], + "score": 1.0, + "content": "only", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 351, + 481, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 147, + 363 + ], + "score": 1.0, + "content": "optimizes", + "type": "text" + }, + { + "bbox": [ + 148, + 351, + 157, + 361 + ], + "score": 0.79, + "content": "\\Theta", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 351, + 481, + 363 + ], + "score": 1.0, + "content": "(achieved by stopping gradient). See Figure 7 in the appendix for further details.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 273, + 506, + 363 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 376, + 393, + 387 + ], + "lines": [ + { + "bbox": [ + 105, + 375, + 394, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 394, + 389 + ], + "score": 1.0, + "content": "3.2 INCORPORATING IMAGE-LEVEL LABELS AND AUGMENTATION", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 394, + 505, + 449 + ], + "lines": [ + { + "bbox": [ + 107, + 394, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 107, + 394, + 505, + 406 + ], + "score": 1.0, + "content": "The proposed PseudoSeg can easily incorporate image-level label information (if available) into our", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 406, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 505, + 418 + ], + "score": 1.0, + "content": "one-stage training framework, which also leads to consistent improvement as we demonstrate in", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "score": 1.0, + "content": "experiments. We utilize the image-level data with two following steps. First, we directly use ground", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 427, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 505, + 441 + ], + "score": 1.0, + "content": "truth image-level labels to generate Grad-CAMs instead of using classifier outputs. Second, they are", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 439, + 468, + 451 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 468, + 451 + ], + "score": 1.0, + "content": "used to increase classification supervision beyond pixel-level labels for the classifier head.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 394, + 505, + 451 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 455, + 505, + 510 + ], + "lines": [ + { + "bbox": [ + 105, + 455, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 505, + 467 + ], + "score": 1.0, + "content": "For strong data augmentation, we simply follow color jittering operations from SimCLR (Chen", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 465, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 505, + 479 + ], + "score": 1.0, + "content": "et al., 2020b) and remove all geometric transformations. The overall strength of augmentation can", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 477, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 505, + 489 + ], + "score": 1.0, + "content": "be controlled by a scalar (studied in experiments). We also apply once random CutOut (DeVries", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 487, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 247, + 501 + ], + "score": 1.0, + "content": "& Taylor, 2017) with a region of", + "type": "text" + }, + { + "bbox": [ + 247, + 488, + 282, + 499 + ], + "score": 0.9, + "content": "5 0 \\times 5 0", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 487, + 505, + 501 + ], + "score": 1.0, + "content": "pixels since we find it gives consistent though minor", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 499, + 415, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 415, + 512 + ], + "score": 1.0, + "content": "improvement (pixels inside CutOut regions are ignored in computing losses).", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 455, + 505, + 512 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 527, + 257, + 539 + ], + "lines": [ + { + "bbox": [ + 105, + 525, + 258, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 258, + 541 + ], + "score": 1.0, + "content": "4 EXPERIMENTAL RESULTS", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 550, + 505, + 594 + ], + "lines": [ + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "We start by specifying the experimental details. Then, we evaluate the method in the settings of using", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "pixel-level labeled data and unlabeled data, as well as using pixel-level labeled data and image-level", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "labeled data, respectively. Next, we conduct various ablation studies to justify our design choices.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 583, + 388, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 388, + 596 + ], + "score": 1.0, + "content": "Lastly, we conduct more comparative experiments in specific settings.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 550, + 505, + 596 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 600, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 600, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 505, + 612 + ], + "score": 1.0, + "content": "To evaluate the proposed method, we conduct the main experiments and ablation studies on the PAS-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 610, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 505, + 623 + ], + "score": 1.0, + "content": "CAL VOC 2012 dataset (VOC12) (Everingham et al., 2015), which contains 21 classes including", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 621, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 635 + ], + "score": 1.0, + "content": "background. The standard VOC12 dataset has 1,449 images as the training set and 1,456 images", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "as the validation set. We randomly subsample 1/2, 1/4, 1/8, and 1/16 of images in the standard", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 642, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 506, + 657 + ], + "score": 1.0, + "content": "training set to construct the pixel-level labeled data. The remaining images in the standard training", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 655, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 440, + 667 + ], + "score": 1.0, + "content": "set, together with the images in the augmented set (Hariharan et al., 2011) (around", + "type": "text" + }, + { + "bbox": [ + 441, + 655, + 453, + 666 + ], + "score": 0.35, + "content": "9 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 655, + 506, + 667 + ], + "score": 1.0, + "content": "images), are", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "used as unlabeled or image-level labeled data. To further verify the effectiveness of the proposed", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 676, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 689 + ], + "score": 1.0, + "content": "method, we also conduct experiments on the COCO dataset (Lin et al., 2014). The COCO dataset", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 688, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 699 + ], + "score": 1.0, + "content": "has 118,287 images as the training set, and 5,000 images as the validation set. We evaluate on the", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "80 foreground classes and the background, as in the object detection task. As the COCO dataset", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "is larger than VOC12, we randomly subsample smaller ratios, 1/32, 1/64, 1/128, 1/256, 1/512, of", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "images from the training set to construct the pixel-level labeled data. The remaining images in the", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 241, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 505, + 255 + ], + "score": 1.0, + "content": "training set are used as unlabeled data or image-level labeled data. We evaluate the performance us-", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 253, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 505, + 265 + ], + "score": 1.0, + "content": "ing the standard mean intersection-over-union (mIoU) metric. Implementation details can be found", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 263, + 171, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 171, + 277 + ], + "score": 1.0, + "content": "in Appendix B.", + "type": "text", + "cross_page": true + } + ], + "index": 7 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 600, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 125, + 82, + 490, + 203 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 125, + 82, + 490, + 203 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 125, + 82, + 490, + 203 + ], + "spans": [ + { + "bbox": [ + 125, + 82, + 490, + 203 + ], + "score": 0.823, + "type": "image", + "image_path": "97a7070768c40a2ee90f5b98acf7964c79ffade7edbbd0d82e10f3742a8ab33c.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 125, + 82, + 490, + 122.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 125, + 122.33333333333334, + 490, + 162.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 125, + 162.66666666666669, + 490, + 203.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 204, + 475, + 226 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 203, + 475, + 216 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 475, + 216 + ], + "score": 1.0, + "content": "Figure 3: Improvement over the strong supervised baseline, in a semi-supervised setting (w/", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 213, + 344, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 344, + 227 + ], + "score": 1.0, + "content": "unlabeled data) on VOC12 val (left) and COCO val (right).", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 107, + 242, + 505, + 275 + ], + "lines": [ + { + "bbox": [ + 105, + 241, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 505, + 255 + ], + "score": 1.0, + "content": "training set are used as unlabeled data or image-level labeled data. We evaluate the performance us-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 253, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 505, + 265 + ], + "score": 1.0, + "content": "ing the standard mean intersection-over-union (mIoU) metric. Implementation details can be found", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 263, + 171, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 171, + 277 + ], + "score": 1.0, + "content": "in Appendix B.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "title", + "bbox": [ + 107, + 293, + 449, + 303 + ], + "lines": [ + { + "bbox": [ + 105, + 291, + 450, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 450, + 305 + ], + "score": 1.0, + "content": "4.1 EXPERIMENTS USING PIXEL-LEVEL LABELED DATA AND UNLABELED DATA", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 309, + 505, + 387 + ], + "lines": [ + { + "bbox": [ + 106, + 309, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 106, + 309, + 505, + 322 + ], + "score": 1.0, + "content": "Improvement over a strong baseline. We first demonstrate the effectiveness of the proposed", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 320, + 504, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 281, + 333 + ], + "score": 1.0, + "content": "method by comparing it with the DeepLabv", + "type": "text" + }, + { + "bbox": [ + 282, + 321, + 294, + 331 + ], + "score": 0.51, + "content": "^ { 3 + }", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 320, + 504, + 333 + ], + "score": 1.0, + "content": "model trained with only the pixel-level labeled data.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 330, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 505, + 345 + ], + "score": 1.0, + "content": "As shown in Figure 3 (a), the proposed method consistently outperforms the supervised training", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 342, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 506, + 356 + ], + "score": 1.0, + "content": "baseline on VOC12, by utilizing the pixel-level labeled data and the unlabeled data. The proposed", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 353, + 505, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 451, + 366 + ], + "score": 1.0, + "content": "method not only achieves a large performance boost in the low-data regime (when only", + "type": "text" + }, + { + "bbox": [ + 452, + 354, + 479, + 364 + ], + "score": 0.87, + "content": "6 . 2 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 353, + 505, + 366 + ], + "score": 1.0, + "content": "pixel-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 363, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 505, + 378 + ], + "score": 1.0, + "content": "level labels available), but also improves the performance when the entire training set (1.4k images)", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 376, + 479, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 479, + 388 + ], + "score": 1.0, + "content": "is available. In Figure 3 (b), we again observe consistent improvement on the COCO dataset.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 390, + 504, + 424 + ], + "lines": [ + { + "bbox": [ + 105, + 389, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 505, + 403 + ], + "score": 1.0, + "content": "Comparisons with the others. Next, we compare the proposed method with recent state of the arts", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 402, + 504, + 413 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 181, + 413 + ], + "score": 1.0, + "content": "on both the public", + "type": "text" + }, + { + "bbox": [ + 181, + 402, + 213, + 412 + ], + "score": 0.62, + "content": "1 . 4 \\mathrm { k } / 9 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 402, + 504, + 413 + ], + "score": 1.0, + "content": "split (in Table 1) and the created low-data splits (in Table 2), on VOC12.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 412, + 302, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 302, + 425 + ], + "score": 1.0, + "content": "Our method compares favorably with the others.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17 + }, + { + "type": "table", + "bbox": [ + 178, + 472, + 433, + 557 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 437, + 502, + 470 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 436, + 497, + 448 + ], + "spans": [ + { + "bbox": [ + 106, + 436, + 497, + 448 + ], + "score": 1.0, + "content": "Table 1: Comparison with state of the arts on VOC12 val set (w/ pixel-level labeled data and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 447, + 502, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 502, + 461 + ], + "score": 1.0, + "content": "unlabeled data). We use the official training set (1.4k) as labeled data, and the augmented set (9k)", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 459, + 180, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 459, + 180, + 470 + ], + "score": 1.0, + "content": "as unlabeled data.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + }, + { + "type": "table_body", + "bbox": [ + 178, + 472, + 433, + 557 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 178, + 472, + 433, + 557 + ], + "spans": [ + { + "bbox": [ + 178, + 472, + 433, + 557 + ], + "score": 0.977, + "html": "
MethodNetworkmIoU (%)
GANSeg (Souly et al., 2017)VGG1664.10
AdvSemSeg (Hung et al., 2018)ResNet-10168.40
CCT (Ouali et al., 2020)ResNet-5069.40
PseudoSeg (Ours)ResNet-5071.00
PseudoSeg (Ours)ResNet-10173.23
", + "type": "table", + "image_path": "7dc01ac8aa35a31e2e6ee4fc30ab2876ef40c10e92c233a07ab5670dfc41cdf0.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 178, + 472, + 433, + 500.3333333333333 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 178, + 500.3333333333333, + 433, + 528.6666666666666 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 178, + 528.6666666666666, + 433, + 557.0 + ], + "spans": [], + "index": 24 + } + ] + } + ], + "index": 21.5 + }, + { + "type": "table", + "bbox": [ + 144, + 632, + 462, + 730 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 575, + 505, + 630 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 574, + 497, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 574, + 497, + 588 + ], + "score": 1.0, + "content": "Table 2: Comparison with state of the arts on VOC12 val set (w/ pixel-level labeled data and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 586, + 495, + 598 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 495, + 598 + ], + "score": 1.0, + "content": "unlabeled data) using low-data splits. The exact numbers of pixel-labeled images are shown in", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 597, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 597, + 505, + 609 + ], + "score": 1.0, + "content": "brackets. All the methods use ResNet-101 as backbone except CCT (Ouali et al., 2020), which uses", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 606, + 492, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 492, + 621 + ], + "score": 1.0, + "content": "ResNet-50. * indicates implementation from Ke et al. (2020), ** indicates implementation from", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 619, + 189, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 189, + 631 + ], + "score": 1.0, + "content": "French et al. (2020).", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27 + }, + { + "type": "table_body", + "bbox": [ + 144, + 632, + 462, + 730 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 144, + 632, + 462, + 730 + ], + "spans": [ + { + "bbox": [ + 144, + 632, + 462, + 730 + ], + "score": 0.981, + "html": "
Method1/2 (732)1/4 (366)1/8 (183)1/16 (92)
AdvSemSeg (Hung et al., 2018)65.2759.9747.5839.69
CCT (Ouali et al., 2020)62.1058.8047.6033.10
*MT (Tarvainen & Valpola, 2017)69.1663.0155.8148.70
GCT (Ke et al., 2020)70.6764.7154.9846.04
**VAT (Miyato et al., 2018)63.3456.8849.3536.92
CutMix (French et al., 2020)69.8468.3663.2055.58
PseudoSeg (Ours)72.4169.1465.5057.60
", + "type": "table", + "image_path": "9203a0f288452039135c22a7ed17100e16fb37d08c9e0dc9a4259bcec589a2f7.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 144, + 632, + 462, + 664.6666666666666 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 144, + 664.6666666666666, + 462, + 697.3333333333333 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 144, + 697.3333333333333, + 462, + 729.9999999999999 + ], + "spans": [], + "index": 32 + } + ] + } + ], + "index": 29.0 + } + ], + "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": [ + 302, + 751, + 309, + 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": [ + 125, + 82, + 490, + 203 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 125, + 82, + 490, + 203 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 125, + 82, + 490, + 203 + ], + "spans": [ + { + "bbox": [ + 125, + 82, + 490, + 203 + ], + "score": 0.823, + "type": "image", + "image_path": "97a7070768c40a2ee90f5b98acf7964c79ffade7edbbd0d82e10f3742a8ab33c.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 125, + 82, + 490, + 122.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 125, + 122.33333333333334, + 490, + 162.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 125, + 162.66666666666669, + 490, + 203.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 204, + 475, + 226 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 203, + 475, + 216 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 475, + 216 + ], + "score": 1.0, + "content": "Figure 3: Improvement over the strong supervised baseline, in a semi-supervised setting (w/", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 213, + 344, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 344, + 227 + ], + "score": 1.0, + "content": "unlabeled data) on VOC12 val (left) and COCO val (right).", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 107, + 242, + 505, + 275 + ], + "lines": [], + "index": 6, + "bbox_fs": [ + 105, + 241, + 505, + 277 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 107, + 293, + 449, + 303 + ], + "lines": [ + { + "bbox": [ + 105, + 291, + 450, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 450, + 305 + ], + "score": 1.0, + "content": "4.1 EXPERIMENTS USING PIXEL-LEVEL LABELED DATA AND UNLABELED DATA", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 309, + 505, + 387 + ], + "lines": [ + { + "bbox": [ + 106, + 309, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 106, + 309, + 505, + 322 + ], + "score": 1.0, + "content": "Improvement over a strong baseline. We first demonstrate the effectiveness of the proposed", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 320, + 504, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 281, + 333 + ], + "score": 1.0, + "content": "method by comparing it with the DeepLabv", + "type": "text" + }, + { + "bbox": [ + 282, + 321, + 294, + 331 + ], + "score": 0.51, + "content": "^ { 3 + }", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 320, + 504, + 333 + ], + "score": 1.0, + "content": "model trained with only the pixel-level labeled data.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 330, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 505, + 345 + ], + "score": 1.0, + "content": "As shown in Figure 3 (a), the proposed method consistently outperforms the supervised training", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 342, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 506, + 356 + ], + "score": 1.0, + "content": "baseline on VOC12, by utilizing the pixel-level labeled data and the unlabeled data. The proposed", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 353, + 505, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 451, + 366 + ], + "score": 1.0, + "content": "method not only achieves a large performance boost in the low-data regime (when only", + "type": "text" + }, + { + "bbox": [ + 452, + 354, + 479, + 364 + ], + "score": 0.87, + "content": "6 . 2 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 353, + 505, + 366 + ], + "score": 1.0, + "content": "pixel-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 363, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 505, + 378 + ], + "score": 1.0, + "content": "level labels available), but also improves the performance when the entire training set (1.4k images)", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 376, + 479, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 479, + 388 + ], + "score": 1.0, + "content": "is available. In Figure 3 (b), we again observe consistent improvement on the COCO dataset.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 309, + 506, + 388 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 390, + 504, + 424 + ], + "lines": [ + { + "bbox": [ + 105, + 389, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 505, + 403 + ], + "score": 1.0, + "content": "Comparisons with the others. Next, we compare the proposed method with recent state of the arts", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 402, + 504, + 413 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 181, + 413 + ], + "score": 1.0, + "content": "on both the public", + "type": "text" + }, + { + "bbox": [ + 181, + 402, + 213, + 412 + ], + "score": 0.62, + "content": "1 . 4 \\mathrm { k } / 9 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 402, + 504, + 413 + ], + "score": 1.0, + "content": "split (in Table 1) and the created low-data splits (in Table 2), on VOC12.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 412, + 302, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 302, + 425 + ], + "score": 1.0, + "content": "Our method compares favorably with the others.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 389, + 505, + 425 + ] + }, + { + "type": "table", + "bbox": [ + 178, + 472, + 433, + 557 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 437, + 502, + 470 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 436, + 497, + 448 + ], + "spans": [ + { + "bbox": [ + 106, + 436, + 497, + 448 + ], + "score": 1.0, + "content": "Table 1: Comparison with state of the arts on VOC12 val set (w/ pixel-level labeled data and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 447, + 502, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 502, + 461 + ], + "score": 1.0, + "content": "unlabeled data). We use the official training set (1.4k) as labeled data, and the augmented set (9k)", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 459, + 180, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 459, + 180, + 470 + ], + "score": 1.0, + "content": "as unlabeled data.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + }, + { + "type": "table_body", + "bbox": [ + 178, + 472, + 433, + 557 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 178, + 472, + 433, + 557 + ], + "spans": [ + { + "bbox": [ + 178, + 472, + 433, + 557 + ], + "score": 0.977, + "html": "
MethodNetworkmIoU (%)
GANSeg (Souly et al., 2017)VGG1664.10
AdvSemSeg (Hung et al., 2018)ResNet-10168.40
CCT (Ouali et al., 2020)ResNet-5069.40
PseudoSeg (Ours)ResNet-5071.00
PseudoSeg (Ours)ResNet-10173.23
", + "type": "table", + "image_path": "7dc01ac8aa35a31e2e6ee4fc30ab2876ef40c10e92c233a07ab5670dfc41cdf0.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 178, + 472, + 433, + 500.3333333333333 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 178, + 500.3333333333333, + 433, + 528.6666666666666 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 178, + 528.6666666666666, + 433, + 557.0 + ], + "spans": [], + "index": 24 + } + ] + } + ], + "index": 21.5 + }, + { + "type": "table", + "bbox": [ + 144, + 632, + 462, + 730 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 575, + 505, + 630 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 574, + 497, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 574, + 497, + 588 + ], + "score": 1.0, + "content": "Table 2: Comparison with state of the arts on VOC12 val set (w/ pixel-level labeled data and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 586, + 495, + 598 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 495, + 598 + ], + "score": 1.0, + "content": "unlabeled data) using low-data splits. The exact numbers of pixel-labeled images are shown in", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 597, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 597, + 505, + 609 + ], + "score": 1.0, + "content": "brackets. All the methods use ResNet-101 as backbone except CCT (Ouali et al., 2020), which uses", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 606, + 492, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 492, + 621 + ], + "score": 1.0, + "content": "ResNet-50. * indicates implementation from Ke et al. (2020), ** indicates implementation from", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 619, + 189, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 189, + 631 + ], + "score": 1.0, + "content": "French et al. (2020).", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27 + }, + { + "type": "table_body", + "bbox": [ + 144, + 632, + 462, + 730 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 144, + 632, + 462, + 730 + ], + "spans": [ + { + "bbox": [ + 144, + 632, + 462, + 730 + ], + "score": 0.981, + "html": "
Method1/2 (732)1/4 (366)1/8 (183)1/16 (92)
AdvSemSeg (Hung et al., 2018)65.2759.9747.5839.69
CCT (Ouali et al., 2020)62.1058.8047.6033.10
*MT (Tarvainen & Valpola, 2017)69.1663.0155.8148.70
GCT (Ke et al., 2020)70.6764.7154.9846.04
**VAT (Miyato et al., 2018)63.3456.8849.3536.92
CutMix (French et al., 2020)69.8468.3663.2055.58
PseudoSeg (Ours)72.4169.1465.5057.60
", + "type": "table", + "image_path": "9203a0f288452039135c22a7ed17100e16fb37d08c9e0dc9a4259bcec589a2f7.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 144, + 632, + 462, + 664.6666666666666 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 144, + 664.6666666666666, + 462, + 697.3333333333333 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 144, + 697.3333333333333, + 462, + 729.9999999999999 + ], + "spans": [], + "index": 32 + } + ] + } + ], + "index": 29.0 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 132, + 82, + 491, + 198 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 132, + 82, + 491, + 198 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 132, + 82, + 491, + 198 + ], + "spans": [ + { + "bbox": [ + 132, + 82, + 491, + 198 + ], + "score": 0.753, + "type": "image", + "image_path": "e591d5f2246b80ae34e3f3b7d110f34c16cf3c68f8df57d4c593602c1b0a3fc4.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 132, + 82, + 491, + 120.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 132, + 120.66666666666666, + 491, + 159.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 132, + 159.33333333333331, + 491, + 197.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 104, + 199, + 476, + 221 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 198, + 476, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 476, + 212 + ], + "score": 1.0, + "content": "Figure 4: Improvement over the strong supervised baseline, in a semi-supervised setting (w/", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 208, + 383, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 383, + 223 + ], + "score": 1.0, + "content": "image-level labeled data) on VOC12 val (left) and COCO val (right).", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "table", + "bbox": [ + 108, + 279, + 337, + 354 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 233, + 347, + 277 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 233, + 349, + 245 + ], + "spans": [ + { + "bbox": [ + 107, + 233, + 349, + 245 + ], + "score": 1.0, + "content": "Table 3: Comparison with state of the arts on VOC12 val", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 244, + 339, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 339, + 256 + ], + "score": 1.0, + "content": "set (w/ pixel-level labeled data and image-level labeled", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 255, + 349, + 268 + ], + "spans": [ + { + "bbox": [ + 106, + 255, + 349, + 268 + ], + "score": 1.0, + "content": "data). We use the official training set (1.4k) as labeled data,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 107, + 266, + 330, + 279 + ], + "spans": [ + { + "bbox": [ + 107, + 266, + 330, + 279 + ], + "score": 1.0, + "content": "and the augmented set (9k) as image-level labeled data.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.5 + }, + { + "type": "table_body", + "bbox": [ + 108, + 279, + 337, + 354 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 279, + 337, + 354 + ], + "spans": [ + { + "bbox": [ + 108, + 279, + 337, + 354 + ], + "score": 0.974, + "html": "
MethodModelNetworkmIoU (%)
WSSN (Papandreou et al., 2015)DeepLab-CRFVGG1664.60
GAIN (Li et al., 2018)DeepLab-CRF-LFOVVGG1660.50
MDC (Wei et al.,2018)DeepLab-CRF-LFOVVGG1665.70
DSRG (Huang et al.,2018)DeepLabv2VGG1664.30
GANSeg (Souly et al.,2017)FCNVGG1665.80
FickleNet (Lee et al.,2019)DeepLabv2ResNet-10165.80
CCT (Ouali et al., 2020)PSP-NetResNet-5073.20
PseudoSeg (Ours)DeepLabv3+ResNet-5073.80
", + "type": "table", + "image_path": "eb7b923cd88434032cfbcc8bcc469b576f879830405bd525e8c663d309aec896.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 108, + 279, + 337, + 294.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 108, + 294.0, + 337, + 309.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 108, + 309.0, + 337, + 324.0 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 108, + 324.0, + 337, + 339.0 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 108, + 339.0, + 337, + 354.0 + ], + "spans": [], + "index": 20 + } + ] + } + ], + "index": 12.25 + }, + { + "type": "table", + "bbox": [ + 370, + 305, + 483, + 367 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 351, + 234, + 501, + 303 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 350, + 233, + 502, + 245 + ], + "spans": [ + { + "bbox": [ + 350, + 233, + 502, + 245 + ], + "score": 1.0, + "content": "Table 4: Comparison with state of the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 350, + 244, + 498, + 255 + ], + "spans": [ + { + "bbox": [ + 350, + 244, + 498, + 255 + ], + "score": 1.0, + "content": "arts on VOC12 val set with pixel-level", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 350, + 253, + 492, + 265 + ], + "spans": [ + { + "bbox": [ + 350, + 253, + 492, + 265 + ], + "score": 1.0, + "content": "labeled data and image-level labeled", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 351, + 264, + 492, + 274 + ], + "spans": [ + { + "bbox": [ + 351, + 264, + 492, + 274 + ], + "score": 1.0, + "content": "data. Four ratios of pixel-level labeled", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 350, + 274, + 491, + 284 + ], + "spans": [ + { + "bbox": [ + 350, + 274, + 491, + 284 + ], + "score": 1.0, + "content": "examples are tested. Both CCT (Ouali", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 350, + 282, + 470, + 295 + ], + "spans": [ + { + "bbox": [ + 350, + 282, + 470, + 295 + ], + "score": 1.0, + "content": "et al., 2020) and our method use", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 351, + 293, + 440, + 304 + ], + "spans": [ + { + "bbox": [ + 351, + 293, + 440, + 304 + ], + "score": 1.0, + "content": "ResNet-50 as backbone.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14 + }, + { + "type": "table_body", + "bbox": [ + 370, + 305, + 483, + 367 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 370, + 305, + 483, + 367 + ], + "spans": [ + { + "bbox": [ + 370, + 305, + 483, + 367 + ], + "score": 0.97, + "html": "
SplitCCTPseudoSeg
1/266.8073.51
1/467.6071.79
1/862.5069.15
1/1651.8065.44
", + "type": "table", + "image_path": "bed5989fe8e0872d448e030d1d8d57de1db612740b64cbb18930fedff50be1c6.jpg" + } + ] + } + ], + "index": 21.5, + "virtual_lines": [ + { + "bbox": [ + 370, + 305, + 483, + 336.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 370, + 336.0, + 483, + 367.0 + ], + "spans": [], + "index": 22 + } + ] + } + ], + "index": 17.75 + }, + { + "type": "text", + "bbox": [ + 106, + 400, + 505, + 499 + ], + "lines": [ + { + "bbox": [ + 106, + 400, + 506, + 413 + ], + "spans": [ + { + "bbox": [ + 106, + 400, + 506, + 413 + ], + "score": 1.0, + "content": "Similar to semi-supervised learning using pixel-level labeled data and unlabeled data, we first", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 411, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 505, + 423 + ], + "score": 1.0, + "content": "demonstrate the efficacy of our method by comparing it with a strong supervised baseline. As", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 422, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 505, + 435 + ], + "score": 1.0, + "content": "shown in Figure 4, the proposed method consistently improves the strong baseline on both datasets.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 257, + 446 + ], + "score": 1.0, + "content": "In Table 3, we evaluate on the public", + "type": "text" + }, + { + "bbox": [ + 257, + 433, + 289, + 444 + ], + "score": 0.64, + "content": "1 . 4 \\mathrm { k } / 9 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 433, + 505, + 446 + ], + "score": 1.0, + "content": "split. The proposed method compares favorably with", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 443, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 506, + 457 + ], + "score": 1.0, + "content": "the other methods. Moreover, we further compare to best compared CCT on the created low-data", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 454, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 506, + 468 + ], + "score": 1.0, + "content": "splits (in Table 4). Both experiments show that the proposed PseudoSeg is more robust than the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 465, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 506, + 478 + ], + "score": 1.0, + "content": "compared method given less data. On all splits on both datasets, using pixel-level labeled data and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 477, + 506, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 506, + 490 + ], + "score": 1.0, + "content": "image-labeled data shows higher mIoU than the setting using pixel-level labeled data and unlabeled", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 487, + 128, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 128, + 500 + ], + "score": 1.0, + "content": "data.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 27 + }, + { + "type": "title", + "bbox": [ + 108, + 514, + 208, + 525 + ], + "lines": [ + { + "bbox": [ + 105, + 513, + 209, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 209, + 527 + ], + "score": 1.0, + "content": "4.3 ABLATION STUDY", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 533, + 503, + 545 + ], + "lines": [ + { + "bbox": [ + 105, + 532, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 505, + 546 + ], + "score": 1.0, + "content": "In this section, we conduct extensive ablation experiments on VOC12 to validate our design choices.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 548, + 505, + 669 + ], + "lines": [ + { + "bbox": [ + 105, + 547, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 505, + 562 + ], + "score": 1.0, + "content": "How to construct pseudo label? We investigate the effectiveness of the proposed pseudo labeling.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 559, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 505, + 572 + ], + "score": 1.0, + "content": "Table 5 demonstrates quantitative results, indicating that using either decoder output or SGC alone", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 570, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 505, + 582 + ], + "score": 1.0, + "content": "gives an inferior performance. Naively using decoder output as pseudo labels can hardly work", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "score": 1.0, + "content": "well. The proposed fusion consistently performs better, either with or without additional image-level", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 592, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 505, + 604 + ], + "score": 1.0, + "content": "labels. To further answer why our pseudo labels are effective, we study from the model calibration", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 604, + 505, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 615 + ], + "score": 1.0, + "content": "perspective. We measure the expected calibration error (ECE) (Guo et al., 2017) scores of all the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 612, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 505, + 628 + ], + "score": 1.0, + "content": "intermediate steps and other fusion variants. As shown in Figure 5 (a), the proposed fusion strategy", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 625, + 505, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 505, + 637 + ], + "score": 1.0, + "content": "(denoted as G in the figure) achieves the lowest ECE scores, indicating that the significance of jointly", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 636, + 505, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 505, + 648 + ], + "score": 1.0, + "content": "using normalization with sharpening (see equation 4) compared with other fusion alternatives. We", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 648, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 659 + ], + "score": 1.0, + "content": "hypothesize using well-calibrated soft labels makes model training less affected by label noises. The", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 658, + 395, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 395, + 671 + ], + "score": 1.0, + "content": "comprehensive calibration study is left as a future exploration direction.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 673, + 505, + 706 + ], + "lines": [ + { + "bbox": [ + 106, + 673, + 504, + 685 + ], + "spans": [ + { + "bbox": [ + 106, + 673, + 504, + 685 + ], + "score": 1.0, + "content": "Using hypercolumn feature or not? In Figure 5 (b), we study the effectiveness of using hypercol-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 684, + 505, + 696 + ], + "spans": [ + { + "bbox": [ + 105, + 684, + 505, + 696 + ], + "score": 1.0, + "content": "umn features instead of the last feature maps in equation 3. We conduct the experiments on the 1/16", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 694, + 468, + 708 + ], + "spans": [ + { + "bbox": [ + 105, + 694, + 468, + 708 + ], + "score": 1.0, + "content": "split of VOC12. As we can see, hypercolumn features substantially improve performance.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Soft or hard pseudo label? How to utilize predictions as pseudo labels remains an active question", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "in SSL. Next, we study whether we should use soft or hard one-hot pseudo labels. We conduct", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 48.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": [ + 107, + 382, + 498, + 392 + ], + "lines": [ + { + "bbox": [ + 106, + 381, + 499, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 381, + 499, + 393 + ], + "score": 1.0, + "content": "4.2 EXPERIMENTS USING PIXEL-LEVEL LABELED DATA AND IMAGE-LEVEL LABELED DATA", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 303, + 751, + 309, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 132, + 82, + 491, + 198 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 132, + 82, + 491, + 198 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 132, + 82, + 491, + 198 + ], + "spans": [ + { + "bbox": [ + 132, + 82, + 491, + 198 + ], + "score": 0.753, + "type": "image", + "image_path": "e591d5f2246b80ae34e3f3b7d110f34c16cf3c68f8df57d4c593602c1b0a3fc4.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 132, + 82, + 491, + 120.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 132, + 120.66666666666666, + 491, + 159.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 132, + 159.33333333333331, + 491, + 197.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 104, + 199, + 476, + 221 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 198, + 476, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 476, + 212 + ], + "score": 1.0, + "content": "Figure 4: Improvement over the strong supervised baseline, in a semi-supervised setting (w/", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 208, + 383, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 383, + 223 + ], + "score": 1.0, + "content": "image-level labeled data) on VOC12 val (left) and COCO val (right).", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "table", + "bbox": [ + 108, + 279, + 337, + 354 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 233, + 347, + 277 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 233, + 349, + 245 + ], + "spans": [ + { + "bbox": [ + 107, + 233, + 349, + 245 + ], + "score": 1.0, + "content": "Table 3: Comparison with state of the arts on VOC12 val", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 244, + 339, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 339, + 256 + ], + "score": 1.0, + "content": "set (w/ pixel-level labeled data and image-level labeled", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 255, + 349, + 268 + ], + "spans": [ + { + "bbox": [ + 106, + 255, + 349, + 268 + ], + "score": 1.0, + "content": "data). We use the official training set (1.4k) as labeled data,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 107, + 266, + 330, + 279 + ], + "spans": [ + { + "bbox": [ + 107, + 266, + 330, + 279 + ], + "score": 1.0, + "content": "and the augmented set (9k) as image-level labeled data.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.5 + }, + { + "type": "table_body", + "bbox": [ + 108, + 279, + 337, + 354 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 279, + 337, + 354 + ], + "spans": [ + { + "bbox": [ + 108, + 279, + 337, + 354 + ], + "score": 0.974, + "html": "
MethodModelNetworkmIoU (%)
WSSN (Papandreou et al., 2015)DeepLab-CRFVGG1664.60
GAIN (Li et al., 2018)DeepLab-CRF-LFOVVGG1660.50
MDC (Wei et al.,2018)DeepLab-CRF-LFOVVGG1665.70
DSRG (Huang et al.,2018)DeepLabv2VGG1664.30
GANSeg (Souly et al.,2017)FCNVGG1665.80
FickleNet (Lee et al.,2019)DeepLabv2ResNet-10165.80
CCT (Ouali et al., 2020)PSP-NetResNet-5073.20
PseudoSeg (Ours)DeepLabv3+ResNet-5073.80
", + "type": "table", + "image_path": "eb7b923cd88434032cfbcc8bcc469b576f879830405bd525e8c663d309aec896.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 108, + 279, + 337, + 294.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 108, + 294.0, + 337, + 309.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 108, + 309.0, + 337, + 324.0 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 108, + 324.0, + 337, + 339.0 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 108, + 339.0, + 337, + 354.0 + ], + "spans": [], + "index": 20 + } + ] + } + ], + "index": 12.25 + }, + { + "type": "table", + "bbox": [ + 370, + 305, + 483, + 367 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 351, + 234, + 501, + 303 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 350, + 233, + 502, + 245 + ], + "spans": [ + { + "bbox": [ + 350, + 233, + 502, + 245 + ], + "score": 1.0, + "content": "Table 4: Comparison with state of the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 350, + 244, + 498, + 255 + ], + "spans": [ + { + "bbox": [ + 350, + 244, + 498, + 255 + ], + "score": 1.0, + "content": "arts on VOC12 val set with pixel-level", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 350, + 253, + 492, + 265 + ], + "spans": [ + { + "bbox": [ + 350, + 253, + 492, + 265 + ], + "score": 1.0, + "content": "labeled data and image-level labeled", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 351, + 264, + 492, + 274 + ], + "spans": [ + { + "bbox": [ + 351, + 264, + 492, + 274 + ], + "score": 1.0, + "content": "data. Four ratios of pixel-level labeled", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 350, + 274, + 491, + 284 + ], + "spans": [ + { + "bbox": [ + 350, + 274, + 491, + 284 + ], + "score": 1.0, + "content": "examples are tested. Both CCT (Ouali", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 350, + 282, + 470, + 295 + ], + "spans": [ + { + "bbox": [ + 350, + 282, + 470, + 295 + ], + "score": 1.0, + "content": "et al., 2020) and our method use", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 351, + 293, + 440, + 304 + ], + "spans": [ + { + "bbox": [ + 351, + 293, + 440, + 304 + ], + "score": 1.0, + "content": "ResNet-50 as backbone.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14 + }, + { + "type": "table_body", + "bbox": [ + 370, + 305, + 483, + 367 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 370, + 305, + 483, + 367 + ], + "spans": [ + { + "bbox": [ + 370, + 305, + 483, + 367 + ], + "score": 0.97, + "html": "
SplitCCTPseudoSeg
1/266.8073.51
1/467.6071.79
1/862.5069.15
1/1651.8065.44
", + "type": "table", + "image_path": "bed5989fe8e0872d448e030d1d8d57de1db612740b64cbb18930fedff50be1c6.jpg" + } + ] + } + ], + "index": 21.5, + "virtual_lines": [ + { + "bbox": [ + 370, + 305, + 483, + 336.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 370, + 336.0, + 483, + 367.0 + ], + "spans": [], + "index": 22 + } + ] + } + ], + "index": 17.75 + }, + { + "type": "text", + "bbox": [ + 106, + 400, + 505, + 499 + ], + "lines": [ + { + "bbox": [ + 106, + 400, + 506, + 413 + ], + "spans": [ + { + "bbox": [ + 106, + 400, + 506, + 413 + ], + "score": 1.0, + "content": "Similar to semi-supervised learning using pixel-level labeled data and unlabeled data, we first", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 411, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 505, + 423 + ], + "score": 1.0, + "content": "demonstrate the efficacy of our method by comparing it with a strong supervised baseline. As", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 422, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 505, + 435 + ], + "score": 1.0, + "content": "shown in Figure 4, the proposed method consistently improves the strong baseline on both datasets.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 257, + 446 + ], + "score": 1.0, + "content": "In Table 3, we evaluate on the public", + "type": "text" + }, + { + "bbox": [ + 257, + 433, + 289, + 444 + ], + "score": 0.64, + "content": "1 . 4 \\mathrm { k } / 9 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 433, + 505, + 446 + ], + "score": 1.0, + "content": "split. The proposed method compares favorably with", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 443, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 506, + 457 + ], + "score": 1.0, + "content": "the other methods. Moreover, we further compare to best compared CCT on the created low-data", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 454, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 506, + 468 + ], + "score": 1.0, + "content": "splits (in Table 4). Both experiments show that the proposed PseudoSeg is more robust than the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 465, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 506, + 478 + ], + "score": 1.0, + "content": "compared method given less data. On all splits on both datasets, using pixel-level labeled data and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 477, + 506, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 506, + 490 + ], + "score": 1.0, + "content": "image-labeled data shows higher mIoU than the setting using pixel-level labeled data and unlabeled", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 487, + 128, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 128, + 500 + ], + "score": 1.0, + "content": "data.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 400, + 506, + 500 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 514, + 208, + 525 + ], + "lines": [ + { + "bbox": [ + 105, + 513, + 209, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 209, + 527 + ], + "score": 1.0, + "content": "4.3 ABLATION STUDY", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 533, + 503, + 545 + ], + "lines": [ + { + "bbox": [ + 105, + 532, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 505, + 546 + ], + "score": 1.0, + "content": "In this section, we conduct extensive ablation experiments on VOC12 to validate our design choices.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 532, + 505, + 546 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 548, + 505, + 669 + ], + "lines": [ + { + "bbox": [ + 105, + 547, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 505, + 562 + ], + "score": 1.0, + "content": "How to construct pseudo label? We investigate the effectiveness of the proposed pseudo labeling.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 559, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 505, + 572 + ], + "score": 1.0, + "content": "Table 5 demonstrates quantitative results, indicating that using either decoder output or SGC alone", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 570, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 505, + 582 + ], + "score": 1.0, + "content": "gives an inferior performance. Naively using decoder output as pseudo labels can hardly work", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "score": 1.0, + "content": "well. The proposed fusion consistently performs better, either with or without additional image-level", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 592, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 505, + 604 + ], + "score": 1.0, + "content": "labels. To further answer why our pseudo labels are effective, we study from the model calibration", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 604, + 505, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 615 + ], + "score": 1.0, + "content": "perspective. We measure the expected calibration error (ECE) (Guo et al., 2017) scores of all the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 612, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 505, + 628 + ], + "score": 1.0, + "content": "intermediate steps and other fusion variants. As shown in Figure 5 (a), the proposed fusion strategy", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 625, + 505, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 505, + 637 + ], + "score": 1.0, + "content": "(denoted as G in the figure) achieves the lowest ECE scores, indicating that the significance of jointly", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 636, + 505, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 505, + 648 + ], + "score": 1.0, + "content": "using normalization with sharpening (see equation 4) compared with other fusion alternatives. We", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 648, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 659 + ], + "score": 1.0, + "content": "hypothesize using well-calibrated soft labels makes model training less affected by label noises. The", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 658, + 395, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 395, + 671 + ], + "score": 1.0, + "content": "comprehensive calibration study is left as a future exploration direction.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 547, + 505, + 671 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 673, + 505, + 706 + ], + "lines": [ + { + "bbox": [ + 106, + 673, + 504, + 685 + ], + "spans": [ + { + "bbox": [ + 106, + 673, + 504, + 685 + ], + "score": 1.0, + "content": "Using hypercolumn feature or not? In Figure 5 (b), we study the effectiveness of using hypercol-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 684, + 505, + 696 + ], + "spans": [ + { + "bbox": [ + 105, + 684, + 505, + 696 + ], + "score": 1.0, + "content": "umn features instead of the last feature maps in equation 3. We conduct the experiments on the 1/16", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 694, + 468, + 708 + ], + "spans": [ + { + "bbox": [ + 105, + 694, + 468, + 708 + ], + "score": 1.0, + "content": "split of VOC12. As we can see, hypercolumn features substantially improve performance.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46, + "bbox_fs": [ + 105, + 673, + 505, + 708 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Soft or hard pseudo label? How to utilize predictions as pseudo labels remains an active question", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "in SSL. Next, we study whether we should use soft or hard one-hot pseudo labels. We conduct", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 453, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 505, + 466 + ], + "score": 1.0, + "content": "the experiments in the setting where pixel-level labeled data and image-level labeled data are avail-", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 464, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 505, + 477 + ], + "score": 1.0, + "content": "able. As shown in Figure 5 (c), using all predictions as soft pseudo label yields better performance", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 475, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 505, + 488 + ], + "score": 1.0, + "content": "than selecting confident predictions. This suggests that well-calibrated soft pseudo labels might be", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 486, + 396, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 396, + 500 + ], + "score": 1.0, + "content": "important in segmentation than over-simplified confidence thresholding.", + "type": "text", + "cross_page": true + } + ], + "index": 12 + } + ], + "index": 48.5, + "bbox_fs": [ + 105, + 709, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 144, + 105, + 463, + 194 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 80, + 502, + 103 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 78, + 495, + 94 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 495, + 94 + ], + "score": 1.0, + "content": "Table 5: Comparison to alternative pseudo labeling strategies. We conduct experiments using", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 91, + 504, + 102 + ], + "spans": [ + { + "bbox": [ + 107, + 91, + 504, + 102 + ], + "score": 1.0, + "content": "1/4, 1/8, 1/16 of the pixel-level labeled data, the exact numbers of images are shown in the brackets.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 144, + 105, + 463, + 194 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 144, + 105, + 463, + 194 + ], + "spans": [ + { + "bbox": [ + 144, + 105, + 463, + 194 + ], + "score": 0.941, + "html": "
SourceUsing image-level labels1/4 (366)1/8 (183)1/16 (92)
Decoder only70.2269.3553.20
SGC only67.0762.6153.42
Calibrated fusion73.7973.1367.06
Decoder only73.9573.0567.54
SGC only71.7367.5764.26
Calibrated fusion75.2974.7071.22
", + "type": "table", + "image_path": "1428232eb8af7478e83809145a4cde79932a04e250f1fcd9c83f6c06df1cca51.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 144, + 105, + 463, + 134.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 144, + 134.66666666666666, + 463, + 164.33333333333331 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 144, + 164.33333333333331, + 463, + 193.99999999999997 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 1.75 + }, + { + "type": "image", + "bbox": [ + 107, + 206, + 504, + 424 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 206, + 504, + 424 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 206, + 504, + 424 + ], + "spans": [ + { + "bbox": [ + 107, + 206, + 504, + 424 + ], + "score": 0.967, + "type": "image", + "image_path": "22e308dca704e89de560810e1f3d6d1ababe29fdb06d4ffaa1dc2fe834ea9bc0.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 107, + 206, + 504, + 278.6666666666667 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 107, + 278.6666666666667, + 504, + 351.33333333333337 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 107, + 351.33333333333337, + 504, + 424.00000000000006 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 131, + 427, + 478, + 438 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 131, + 426, + 479, + 440 + ], + "spans": [ + { + "bbox": [ + 131, + 426, + 479, + 440 + ], + "score": 1.0, + "content": "Figure 5: Ablation studies on different factors. See Section 4.3 for complete details.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + } + ], + "index": 7.0 + }, + { + "type": "text", + "bbox": [ + 106, + 453, + 505, + 498 + ], + "lines": [ + { + "bbox": [ + 105, + 453, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 505, + 466 + ], + "score": 1.0, + "content": "the experiments in the setting where pixel-level labeled data and image-level labeled data are avail-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 464, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 505, + 477 + ], + "score": 1.0, + "content": "able. As shown in Figure 5 (c), using all predictions as soft pseudo label yields better performance", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 475, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 505, + 488 + ], + "score": 1.0, + "content": "than selecting confident predictions. This suggests that well-calibrated soft pseudo labels might be", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 486, + 396, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 396, + 500 + ], + "score": 1.0, + "content": "important in segmentation than over-simplified confidence thresholding.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 107, + 501, + 504, + 545 + ], + "lines": [ + { + "bbox": [ + 106, + 502, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 502, + 505, + 513 + ], + "score": 1.0, + "content": "Temperature sharpening or not? We study the effect of temperature sharpening in equation 4.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 512, + 506, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 506, + 525 + ], + "score": 1.0, + "content": "We conduct the experiments in the setting where pixel-level labeled data and image-level labeled", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 523, + 506, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 506, + 536 + ], + "score": 1.0, + "content": "data are available. As shown in Figure 5 (d), temperature sharpening shows consistent and clear", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 536, + 168, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 168, + 546 + ], + "score": 1.0, + "content": "improvements.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 107, + 549, + 505, + 604 + ], + "lines": [ + { + "bbox": [ + 105, + 548, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 548, + 505, + 563 + ], + "score": 1.0, + "content": "Strong augmentation strength. In Figure 5 (e), we study the effects of color jittering in the strong", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "score": 1.0, + "content": "augmentation. The magnitude of jittering strength is controlled by a scalar (Chen et al., 2020b).", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 570, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 505, + 584 + ], + "score": 1.0, + "content": "We conduct the experiments in the setting where pixel-level labeled data and unlabeled data are", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "score": 1.0, + "content": "available. If the magnitude is too small, performance drops significantly, suggesting the importance", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 594, + 203, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 203, + 605 + ], + "score": 1.0, + "content": "of strong augmentation.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 608, + 505, + 663 + ], + "lines": [ + { + "bbox": [ + 105, + 607, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 505, + 622 + ], + "score": 1.0, + "content": "Impact of different feature backbones. In Figure 5 (f), we compare the performance of using", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 619, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 619, + 505, + 631 + ], + "score": 1.0, + "content": "ResNet-50, ResNet-101, and Xception-65 as backbone architectures, respectively. We conduct the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 628, + 505, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 505, + 643 + ], + "score": 1.0, + "content": "experiments in the setting where pixel-level labeled data and unlabeled data are available. As we can", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 641, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 505, + 654 + ], + "score": 1.0, + "content": "see, the proposed method consistently improves the baseline by a substantial margin across different", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 651, + 203, + 664 + ], + "spans": [ + { + "bbox": [ + 106, + 651, + 203, + 664 + ], + "score": 1.0, + "content": "backbone architectures.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24 + }, + { + "type": "title", + "bbox": [ + 108, + 680, + 283, + 690 + ], + "lines": [ + { + "bbox": [ + 106, + 679, + 285, + 691 + ], + "spans": [ + { + "bbox": [ + 106, + 679, + 285, + 691 + ], + "score": 1.0, + "content": "4.4 COMPARISON WITH SELF-TRAINING", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "Several recent approaches (Chen et al., 2020a; Zoph et al., 2020) exploit the Student-Teacher self-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 709, + 506, + 721 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 721 + ], + "score": 1.0, + "content": "training idea to improve the performance with additional unlabeled data. However, these methods", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 506, + 733 + ], + "score": 1.0, + "content": "only apply self-training in the high-data regime (i.e., sufficient pixel-labeled data to train teachers).", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + } + ], + "page_idx": 7, + "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": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 144, + 105, + 463, + 194 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 80, + 502, + 103 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 78, + 495, + 94 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 495, + 94 + ], + "score": 1.0, + "content": "Table 5: Comparison to alternative pseudo labeling strategies. We conduct experiments using", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 91, + 504, + 102 + ], + "spans": [ + { + "bbox": [ + 107, + 91, + 504, + 102 + ], + "score": 1.0, + "content": "1/4, 1/8, 1/16 of the pixel-level labeled data, the exact numbers of images are shown in the brackets.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 144, + 105, + 463, + 194 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 144, + 105, + 463, + 194 + ], + "spans": [ + { + "bbox": [ + 144, + 105, + 463, + 194 + ], + "score": 0.941, + "html": "
SourceUsing image-level labels1/4 (366)1/8 (183)1/16 (92)
Decoder only70.2269.3553.20
SGC only67.0762.6153.42
Calibrated fusion73.7973.1367.06
Decoder only73.9573.0567.54
SGC only71.7367.5764.26
Calibrated fusion75.2974.7071.22
", + "type": "table", + "image_path": "1428232eb8af7478e83809145a4cde79932a04e250f1fcd9c83f6c06df1cca51.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 144, + 105, + 463, + 134.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 144, + 134.66666666666666, + 463, + 164.33333333333331 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 144, + 164.33333333333331, + 463, + 193.99999999999997 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 1.75 + }, + { + "type": "image", + "bbox": [ + 107, + 206, + 504, + 424 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 206, + 504, + 424 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 206, + 504, + 424 + ], + "spans": [ + { + "bbox": [ + 107, + 206, + 504, + 424 + ], + "score": 0.967, + "type": "image", + "image_path": "22e308dca704e89de560810e1f3d6d1ababe29fdb06d4ffaa1dc2fe834ea9bc0.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 107, + 206, + 504, + 278.6666666666667 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 107, + 278.6666666666667, + 504, + 351.33333333333337 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 107, + 351.33333333333337, + 504, + 424.00000000000006 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 131, + 427, + 478, + 438 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 131, + 426, + 479, + 440 + ], + "spans": [ + { + "bbox": [ + 131, + 426, + 479, + 440 + ], + "score": 1.0, + "content": "Figure 5: Ablation studies on different factors. See Section 4.3 for complete details.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + } + ], + "index": 7.0 + }, + { + "type": "text", + "bbox": [ + 106, + 453, + 505, + 498 + ], + "lines": [], + "index": 10.5, + "bbox_fs": [ + 105, + 453, + 505, + 500 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 501, + 504, + 545 + ], + "lines": [ + { + "bbox": [ + 106, + 502, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 502, + 505, + 513 + ], + "score": 1.0, + "content": "Temperature sharpening or not? We study the effect of temperature sharpening in equation 4.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 512, + 506, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 506, + 525 + ], + "score": 1.0, + "content": "We conduct the experiments in the setting where pixel-level labeled data and image-level labeled", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 523, + 506, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 506, + 536 + ], + "score": 1.0, + "content": "data are available. As shown in Figure 5 (d), temperature sharpening shows consistent and clear", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 536, + 168, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 168, + 546 + ], + "score": 1.0, + "content": "improvements.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 502, + 506, + 546 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 549, + 505, + 604 + ], + "lines": [ + { + "bbox": [ + 105, + 548, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 548, + 505, + 563 + ], + "score": 1.0, + "content": "Strong augmentation strength. In Figure 5 (e), we study the effects of color jittering in the strong", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "score": 1.0, + "content": "augmentation. The magnitude of jittering strength is controlled by a scalar (Chen et al., 2020b).", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 570, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 505, + 584 + ], + "score": 1.0, + "content": "We conduct the experiments in the setting where pixel-level labeled data and unlabeled data are", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "score": 1.0, + "content": "available. If the magnitude is too small, performance drops significantly, suggesting the importance", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 594, + 203, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 203, + 605 + ], + "score": 1.0, + "content": "of strong augmentation.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 548, + 505, + 605 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 608, + 505, + 663 + ], + "lines": [ + { + "bbox": [ + 105, + 607, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 505, + 622 + ], + "score": 1.0, + "content": "Impact of different feature backbones. In Figure 5 (f), we compare the performance of using", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 619, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 619, + 505, + 631 + ], + "score": 1.0, + "content": "ResNet-50, ResNet-101, and Xception-65 as backbone architectures, respectively. We conduct the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 628, + 505, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 505, + 643 + ], + "score": 1.0, + "content": "experiments in the setting where pixel-level labeled data and unlabeled data are available. As we can", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 641, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 505, + 654 + ], + "score": 1.0, + "content": "see, the proposed method consistently improves the baseline by a substantial margin across different", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 651, + 203, + 664 + ], + "spans": [ + { + "bbox": [ + 106, + 651, + 203, + 664 + ], + "score": 1.0, + "content": "backbone architectures.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 607, + 505, + 664 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 680, + 283, + 690 + ], + "lines": [ + { + "bbox": [ + 106, + 679, + 285, + 691 + ], + "spans": [ + { + "bbox": [ + 106, + 679, + 285, + 691 + ], + "score": 1.0, + "content": "4.4 COMPARISON WITH SELF-TRAINING", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "Several recent approaches (Chen et al., 2020a; Zoph et al., 2020) exploit the Student-Teacher self-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 709, + 506, + 721 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 721 + ], + "score": 1.0, + "content": "training idea to improve the performance with additional unlabeled data. However, these methods", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 506, + 733 + ], + "score": 1.0, + "content": "only apply self-training in the high-data regime (i.e., sufficient pixel-labeled data to train teachers).", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 698, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 135, + 105, + 473, + 173 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 80, + 503, + 103 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 79, + 505, + 93 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 505, + 93 + ], + "score": 1.0, + "content": "Table 6: Comparison with self-training. We use our supervised baseline as the teacher to generate", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 91, + 316, + 104 + ], + "spans": [ + { + "bbox": [ + 106, + 91, + 316, + 104 + ], + "score": 1.0, + "content": "one-hot pseudo labels, following Zoph et al. (2020).", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 135, + 105, + 473, + 173 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 135, + 105, + 473, + 173 + ], + "spans": [ + { + "bbox": [ + 135, + 105, + 473, + 173 + ], + "score": 0.982, + "html": "
MethodUsing image-level labels1/4 (366)1/8 (183)1/16 (92)
Supervised (Teacher)70.2064.0056.03
Self-training (Student)172.8569.8864.20
PseudoSeg (Ours)-73.7973.1367.06
PseudoSeg (Ours)75.2974.7071.22
", + "type": "table", + "image_path": "2715b1a36b360cce6e5e8e954ddad46481951e5efe9bfac4ffd4e9083d94e9a5.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 135, + 105, + 473, + 127.66666666666667 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 135, + 127.66666666666667, + 473, + 150.33333333333334 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 135, + 150.33333333333334, + 473, + 173.0 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 1.75 + }, + { + "type": "text", + "bbox": [ + 106, + 185, + 505, + 317 + ], + "lines": [ + { + "bbox": [ + 106, + 185, + 505, + 197 + ], + "spans": [ + { + "bbox": [ + 106, + 185, + 505, + 197 + ], + "score": 1.0, + "content": "Here we compare these methods in the low-data regimes, where we focus on. To generate offline", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 195, + 507, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 195, + 507, + 209 + ], + "score": 1.0, + "content": "pseudo labels, we closely follow segmentation experiments in Zoph et al. (2020): pixels with a", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 205, + 505, + 220 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 505, + 220 + ], + "score": 1.0, + "content": "confidence score higher than 0.5 will be used as one-hot pseudo labels, while the remaining are", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 218, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 106, + 218, + 505, + 230 + ], + "score": 1.0, + "content": "treated as ignored regions. This step is considered important to suppress noisy labels. A student", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 229, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 229, + 505, + 240 + ], + "score": 1.0, + "content": "model is then trained using the combination of unlabeled data in VOC12 train and augmented sets", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 240, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 240, + 505, + 252 + ], + "score": 1.0, + "content": "with generated one-hot pseudo labels and all the available pixel-level labeled data. As shown in", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 250, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 505, + 263 + ], + "score": 1.0, + "content": "Table 6, although the self-training pretty well improves over the supervised baseline, it is inferior", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 261, + 505, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 505, + 274 + ], + "score": 1.0, + "content": "to the proposed method 2. We conjecture that the teacher model usually produces low confidence", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 271, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 104, + 271, + 505, + 286 + ], + "score": 1.0, + "content": "scores to pixels around boundaries, so pseudo labels of these pixels are filtered in student training.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 284, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 505, + 296 + ], + "score": 1.0, + "content": "However, boundary pixels are important for improving the performance of segmentation (Kirillov", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 294, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 505, + 307 + ], + "score": 1.0, + "content": "et al., 2020). On the other hand, the design of our method (online soft pseudo labeling process)", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 306, + 470, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 306, + 470, + 318 + ], + "score": 1.0, + "content": "bypass this challenge. We will conduct more verification of this hypothesis in future work.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 10.5 + }, + { + "type": "title", + "bbox": [ + 119, + 331, + 423, + 341 + ], + "lines": [ + { + "bbox": [ + 116, + 330, + 425, + 342 + ], + "spans": [ + { + "bbox": [ + 116, + 330, + 425, + 342 + ], + "score": 1.0, + "content": "5 IMPROVING THE FULLY-SUPERVISED METHOD WITH ADDITIONAL DAT", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 348, + 505, + 426 + ], + "lines": [ + { + "bbox": [ + 105, + 348, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 505, + 362 + ], + "score": 1.0, + "content": "We have validated the effectiveness of the proposed method in the low-data regime. In this section,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 360, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 505, + 372 + ], + "score": 1.0, + "content": "we want to explore whether the proposed method can further improve supervised training in the full", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 371, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 505, + 383 + ], + "score": 1.0, + "content": "training set using additional data. We use the training set (1.4k) in VOC12 as the pixel-level labeled", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 381, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 326, + 394 + ], + "score": 1.0, + "content": "data. The additional data contains additional VOC 9k", + "type": "text" + }, + { + "bbox": [ + 326, + 382, + 348, + 393 + ], + "score": 0.83, + "content": "( V _ { 9 k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 381, + 432, + 394 + ], + "score": 1.0, + "content": ", COCO training set", + "type": "text" + }, + { + "bbox": [ + 432, + 382, + 453, + 393 + ], + "score": 0.85, + "content": "( C _ { t r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 381, + 505, + 394 + ], + "score": 1.0, + "content": ", and COCO", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 393, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 168, + 405 + ], + "score": 1.0, + "content": "unlabeled data", + "type": "text" + }, + { + "bbox": [ + 169, + 393, + 187, + 404 + ], + "score": 0.79, + "content": "( C _ { u } )", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 393, + 505, + 405 + ], + "score": 1.0, + "content": ". More training details can be found in Appendix D. As shown in Table 7, the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 403, + 506, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 506, + 417 + ], + "score": 1.0, + "content": "proposed PseudoSeg is able to improve upon the supervised baseline even in the high-data regime,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 415, + 327, + 428 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 327, + 428 + ], + "score": 1.0, + "content": "using additional unlabeled or image-level labeled data.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21 + }, + { + "type": "table", + "bbox": [ + 115, + 450, + 492, + 497 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 108, + 436, + 502, + 448 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 108, + 435, + 503, + 449 + ], + "spans": [ + { + "bbox": [ + 108, + 435, + 503, + 449 + ], + "score": 1.0, + "content": "Table 7: Improving fully supervised model with extra data. No test-time augmentation is used.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "table_body", + "bbox": [ + 115, + 450, + 492, + 497 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 115, + 450, + 492, + 497 + ], + "spans": [ + { + "bbox": [ + 115, + 450, + 492, + 497 + ], + "score": 0.973, + "html": "
MethodBaseline丨PseudoSeg (w/o image-level labels)丨PseudoSeg (w/image-level labels)
Extra data1Ctr+CuCtr + Cu + V9kCtrCtr +Vgk
mIoU (%)76.9677.40 (+0.44)78.20 (+1.24)77.80 (+0.84)79.28 (+2.32)
", + "type": "table", + "image_path": "ff061b56d6ee624a1ae28039431568030c3c487b3a4ade5abd9338e0c6c7e09f.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 115, + 450, + 492, + 465.6666666666667 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 115, + 465.6666666666667, + 492, + 481.33333333333337 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 115, + 481.33333333333337, + 492, + 497.00000000000006 + ], + "spans": [], + "index": 28 + } + ] + } + ], + "index": 26.0 + }, + { + "type": "title", + "bbox": [ + 108, + 514, + 288, + 527 + ], + "lines": [ + { + "bbox": [ + 105, + 512, + 290, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 290, + 529 + ], + "score": 1.0, + "content": "5 DISCUSSION AND CONCLUSION", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 531, + 505, + 652 + ], + "lines": [ + { + "bbox": [ + 106, + 531, + 506, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 506, + 543 + ], + "score": 1.0, + "content": "The key to the good performance of our method in the low-data regime is the novel re-design of", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 542, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 505, + 554 + ], + "score": 1.0, + "content": "pseudo-labeling strategy, which pursues a different decision mechanism from weakly-supervised", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 553, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 553, + 505, + 565 + ], + "score": 1.0, + "content": "localization to “remedy” weak predictions from segmentation head. Then augmentation consis-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 564, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 505, + 577 + ], + "score": 1.0, + "content": "tency training progressively improves segmentation head quality. For the first time, we demon-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 573, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 104, + 573, + 505, + 590 + ], + "score": 1.0, + "content": "strate that, with well-calibrated soft pseudo labels, utilizing unlabeled or image-labeled data sig-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 587, + 505, + 598 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 505, + 598 + ], + "score": 1.0, + "content": "nificantly improves segmentation at low-data regimes. Further exploration of fusing stronger and", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 597, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 505, + 609 + ], + "score": 1.0, + "content": "better-calibrated pseudo labels worth more study as future directions (e.g., multi-scaling). Although", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 609, + 504, + 620 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 504, + 620 + ], + "score": 1.0, + "content": "color jittering works within our method as strong data augmentation, we have extensively explored", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 618, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 506, + 632 + ], + "score": 1.0, + "content": "geometric augmentations (leveraging STN (Jaderberg et al., 2015) to align pixels in pseudo labels", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 628, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 505, + 644 + ], + "score": 1.0, + "content": "and strongly-augmented predictions) for segmentation but find it not helpful. We believe data aug-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 640, + 477, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 477, + 654 + ], + "score": 1.0, + "content": "mentation needs re-thinking beyond current success in classification for segmentation usage.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 35 + }, + { + "type": "title", + "bbox": [ + 108, + 670, + 219, + 680 + ], + "lines": [ + { + "bbox": [ + 106, + 668, + 221, + 684 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 221, + 684 + ], + "score": 1.0, + "content": "ACKNOWLEDGEMENT", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 107, + 693, + 406, + 704 + ], + "lines": [ + { + "bbox": [ + 106, + 692, + 408, + 706 + ], + "spans": [ + { + "bbox": [ + 106, + 692, + 408, + 706 + ], + "score": 1.0, + "content": "We thank Liang-Chieh Chen and Barret Zoph for their valuable comments.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 712, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 117, + 709, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 117, + 709, + 506, + 724 + ], + "score": 1.0, + "content": "2It is difficult to directly compare to Zoph et al. (2020) in their setting because of enormous parallel training,", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 721, + 329, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 329, + 732 + ], + "score": 1.0, + "content": "uncommon backbones, and inaccessible pre-training datasets.", + "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": "table", + "bbox": [ + 135, + 105, + 473, + 173 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 80, + 503, + 103 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 79, + 505, + 93 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 505, + 93 + ], + "score": 1.0, + "content": "Table 6: Comparison with self-training. We use our supervised baseline as the teacher to generate", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 91, + 316, + 104 + ], + "spans": [ + { + "bbox": [ + 106, + 91, + 316, + 104 + ], + "score": 1.0, + "content": "one-hot pseudo labels, following Zoph et al. (2020).", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 135, + 105, + 473, + 173 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 135, + 105, + 473, + 173 + ], + "spans": [ + { + "bbox": [ + 135, + 105, + 473, + 173 + ], + "score": 0.982, + "html": "
MethodUsing image-level labels1/4 (366)1/8 (183)1/16 (92)
Supervised (Teacher)70.2064.0056.03
Self-training (Student)172.8569.8864.20
PseudoSeg (Ours)-73.7973.1367.06
PseudoSeg (Ours)75.2974.7071.22
", + "type": "table", + "image_path": "2715b1a36b360cce6e5e8e954ddad46481951e5efe9bfac4ffd4e9083d94e9a5.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 135, + 105, + 473, + 127.66666666666667 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 135, + 127.66666666666667, + 473, + 150.33333333333334 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 135, + 150.33333333333334, + 473, + 173.0 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 1.75 + }, + { + "type": "text", + "bbox": [ + 106, + 185, + 505, + 317 + ], + "lines": [ + { + "bbox": [ + 106, + 185, + 505, + 197 + ], + "spans": [ + { + "bbox": [ + 106, + 185, + 505, + 197 + ], + "score": 1.0, + "content": "Here we compare these methods in the low-data regimes, where we focus on. To generate offline", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 195, + 507, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 195, + 507, + 209 + ], + "score": 1.0, + "content": "pseudo labels, we closely follow segmentation experiments in Zoph et al. (2020): pixels with a", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 205, + 505, + 220 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 505, + 220 + ], + "score": 1.0, + "content": "confidence score higher than 0.5 will be used as one-hot pseudo labels, while the remaining are", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 218, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 106, + 218, + 505, + 230 + ], + "score": 1.0, + "content": "treated as ignored regions. This step is considered important to suppress noisy labels. A student", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 229, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 229, + 505, + 240 + ], + "score": 1.0, + "content": "model is then trained using the combination of unlabeled data in VOC12 train and augmented sets", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 240, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 240, + 505, + 252 + ], + "score": 1.0, + "content": "with generated one-hot pseudo labels and all the available pixel-level labeled data. As shown in", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 250, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 505, + 263 + ], + "score": 1.0, + "content": "Table 6, although the self-training pretty well improves over the supervised baseline, it is inferior", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 261, + 505, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 505, + 274 + ], + "score": 1.0, + "content": "to the proposed method 2. We conjecture that the teacher model usually produces low confidence", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 271, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 104, + 271, + 505, + 286 + ], + "score": 1.0, + "content": "scores to pixels around boundaries, so pseudo labels of these pixels are filtered in student training.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 284, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 505, + 296 + ], + "score": 1.0, + "content": "However, boundary pixels are important for improving the performance of segmentation (Kirillov", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 294, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 505, + 307 + ], + "score": 1.0, + "content": "et al., 2020). On the other hand, the design of our method (online soft pseudo labeling process)", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 306, + 470, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 306, + 470, + 318 + ], + "score": 1.0, + "content": "bypass this challenge. We will conduct more verification of this hypothesis in future work.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 10.5, + "bbox_fs": [ + 104, + 185, + 507, + 318 + ] + }, + { + "type": "title", + "bbox": [ + 119, + 331, + 423, + 341 + ], + "lines": [ + { + "bbox": [ + 116, + 330, + 425, + 342 + ], + "spans": [ + { + "bbox": [ + 116, + 330, + 425, + 342 + ], + "score": 1.0, + "content": "5 IMPROVING THE FULLY-SUPERVISED METHOD WITH ADDITIONAL DAT", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 348, + 505, + 426 + ], + "lines": [ + { + "bbox": [ + 105, + 348, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 505, + 362 + ], + "score": 1.0, + "content": "We have validated the effectiveness of the proposed method in the low-data regime. In this section,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 360, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 505, + 372 + ], + "score": 1.0, + "content": "we want to explore whether the proposed method can further improve supervised training in the full", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 371, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 505, + 383 + ], + "score": 1.0, + "content": "training set using additional data. We use the training set (1.4k) in VOC12 as the pixel-level labeled", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 381, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 326, + 394 + ], + "score": 1.0, + "content": "data. The additional data contains additional VOC 9k", + "type": "text" + }, + { + "bbox": [ + 326, + 382, + 348, + 393 + ], + "score": 0.83, + "content": "( V _ { 9 k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 381, + 432, + 394 + ], + "score": 1.0, + "content": ", COCO training set", + "type": "text" + }, + { + "bbox": [ + 432, + 382, + 453, + 393 + ], + "score": 0.85, + "content": "( C _ { t r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 381, + 505, + 394 + ], + "score": 1.0, + "content": ", and COCO", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 393, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 168, + 405 + ], + "score": 1.0, + "content": "unlabeled data", + "type": "text" + }, + { + "bbox": [ + 169, + 393, + 187, + 404 + ], + "score": 0.79, + "content": "( C _ { u } )", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 393, + 505, + 405 + ], + "score": 1.0, + "content": ". More training details can be found in Appendix D. As shown in Table 7, the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 403, + 506, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 506, + 417 + ], + "score": 1.0, + "content": "proposed PseudoSeg is able to improve upon the supervised baseline even in the high-data regime,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 415, + 327, + 428 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 327, + 428 + ], + "score": 1.0, + "content": "using additional unlabeled or image-level labeled data.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 348, + 506, + 428 + ] + }, + { + "type": "table", + "bbox": [ + 115, + 450, + 492, + 497 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 108, + 436, + 502, + 448 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 108, + 435, + 503, + 449 + ], + "spans": [ + { + "bbox": [ + 108, + 435, + 503, + 449 + ], + "score": 1.0, + "content": "Table 7: Improving fully supervised model with extra data. No test-time augmentation is used.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "table_body", + "bbox": [ + 115, + 450, + 492, + 497 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 115, + 450, + 492, + 497 + ], + "spans": [ + { + "bbox": [ + 115, + 450, + 492, + 497 + ], + "score": 0.973, + "html": "
MethodBaseline丨PseudoSeg (w/o image-level labels)丨PseudoSeg (w/image-level labels)
Extra data1Ctr+CuCtr + Cu + V9kCtrCtr +Vgk
mIoU (%)76.9677.40 (+0.44)78.20 (+1.24)77.80 (+0.84)79.28 (+2.32)
", + "type": "table", + "image_path": "ff061b56d6ee624a1ae28039431568030c3c487b3a4ade5abd9338e0c6c7e09f.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 115, + 450, + 492, + 465.6666666666667 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 115, + 465.6666666666667, + 492, + 481.33333333333337 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 115, + 481.33333333333337, + 492, + 497.00000000000006 + ], + "spans": [], + "index": 28 + } + ] + } + ], + "index": 26.0 + }, + { + "type": "title", + "bbox": [ + 108, + 514, + 288, + 527 + ], + "lines": [ + { + "bbox": [ + 105, + 512, + 290, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 290, + 529 + ], + "score": 1.0, + "content": "5 DISCUSSION AND CONCLUSION", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 531, + 505, + 652 + ], + "lines": [ + { + "bbox": [ + 106, + 531, + 506, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 506, + 543 + ], + "score": 1.0, + "content": "The key to the good performance of our method in the low-data regime is the novel re-design of", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 542, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 505, + 554 + ], + "score": 1.0, + "content": "pseudo-labeling strategy, which pursues a different decision mechanism from weakly-supervised", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 553, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 553, + 505, + 565 + ], + "score": 1.0, + "content": "localization to “remedy” weak predictions from segmentation head. Then augmentation consis-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 564, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 505, + 577 + ], + "score": 1.0, + "content": "tency training progressively improves segmentation head quality. For the first time, we demon-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 573, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 104, + 573, + 505, + 590 + ], + "score": 1.0, + "content": "strate that, with well-calibrated soft pseudo labels, utilizing unlabeled or image-labeled data sig-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 587, + 505, + 598 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 505, + 598 + ], + "score": 1.0, + "content": "nificantly improves segmentation at low-data regimes. Further exploration of fusing stronger and", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 597, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 505, + 609 + ], + "score": 1.0, + "content": "better-calibrated pseudo labels worth more study as future directions (e.g., multi-scaling). Although", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 609, + 504, + 620 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 504, + 620 + ], + "score": 1.0, + "content": "color jittering works within our method as strong data augmentation, we have extensively explored", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 618, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 506, + 632 + ], + "score": 1.0, + "content": "geometric augmentations (leveraging STN (Jaderberg et al., 2015) to align pixels in pseudo labels", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 628, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 505, + 644 + ], + "score": 1.0, + "content": "and strongly-augmented predictions) for segmentation but find it not helpful. We believe data aug-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 640, + 477, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 477, + 654 + ], + "score": 1.0, + "content": "mentation needs re-thinking beyond current success in classification for segmentation usage.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 35, + "bbox_fs": [ + 104, + 531, + 506, + 654 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 670, + 219, + 680 + ], + "lines": [ + { + "bbox": [ + 106, + 668, + 221, + 684 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 221, + 684 + ], + "score": 1.0, + "content": "ACKNOWLEDGEMENT", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 107, + 693, + 406, + 704 + ], + "lines": [ + { + "bbox": [ + 106, + 692, + 408, + 706 + ], + "spans": [ + { + "bbox": [ + 106, + 692, + 408, + 706 + ], + "score": 1.0, + "content": "We thank Liang-Chieh Chen and Barret Zoph for their valuable comments.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42, + "bbox_fs": [ + 106, + 692, + 408, + 706 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 175, + 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": [ + 108, + 99, + 503, + 120 + ], + "lines": [ + { + "bbox": [ + 106, + 99, + 505, + 111 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 505, + 111 + ], + "score": 1.0, + "content": "Jiwoon Ahn and Suha Kwak. Learning pixel-level semantic affinity with image-level supervision for weakly", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 109, + 321, + 120 + ], + "spans": [ + { + "bbox": [ + 115, + 109, + 321, + 120 + ], + "score": 1.0, + "content": "supervised semantic segmentation. In CVPR, 2018. 3, 4", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 106, + 126, + 502, + 147 + ], + "lines": [ + { + "bbox": [ + 106, + 127, + 504, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 504, + 138 + ], + "score": 1.0, + "content": "Jiwoon Ahn, Sunghyun Cho, and Suha Kwak. Weakly supervised learning of instance segmentation with", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 136, + 273, + 147 + ], + "spans": [ + { + "bbox": [ + 115, + 136, + 273, + 147 + ], + "score": 1.0, + "content": "inter-pixel relations. In CVPR, 2019. 4, 14", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 105, + 154, + 503, + 185 + ], + "lines": [ + { + "bbox": [ + 106, + 154, + 504, + 166 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 504, + 166 + ], + "score": 1.0, + "content": "David Berthelot, Nicholas Carlini, Ekin D Cubuk, Alex Kurakin, Kihyuk Sohn, Han Zhang, and Colin Raffel.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 164, + 505, + 176 + ], + "spans": [ + { + "bbox": [ + 115, + 164, + 505, + 176 + ], + "score": 1.0, + "content": "Remixmatch: Semi-supervised learning with distribution matching and augmentation anchoring. In ICLR,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 173, + 152, + 186 + ], + "spans": [ + { + "bbox": [ + 115, + 173, + 152, + 186 + ], + "score": 1.0, + "content": "2019a. 2", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 192, + 503, + 214 + ], + "lines": [ + { + "bbox": [ + 106, + 192, + 505, + 204 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 505, + 204 + ], + "score": 1.0, + "content": "David Berthelot, Nicholas Carlini, Ian Goodfellow, Nicolas Papernot, Avital Oliver, and Colin A Raffel. Mix-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 202, + 420, + 214 + ], + "spans": [ + { + "bbox": [ + 115, + 202, + 420, + 214 + ], + "score": 1.0, + "content": "match: A holistic approach to semi-supervised learning. In NeurIPS, 2019b. 1, 2, 5", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 105, + 220, + 504, + 241 + ], + "lines": [ + { + "bbox": [ + 105, + 220, + 505, + 231 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 505, + 231 + ], + "score": 1.0, + "content": "Liang-Chieh Chen, Yukun Zhu, George Papandreou, Florian Schroff, and Hartwig Adam. Encoder-decoder", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 229, + 454, + 242 + ], + "spans": [ + { + "bbox": [ + 116, + 229, + 454, + 242 + ], + "score": 1.0, + "content": "with atrous separable convolution for semantic image segmentation. In ECCV, 2018. 1, 3, 15", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 107, + 248, + 505, + 279 + ], + "lines": [ + { + "bbox": [ + 105, + 247, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 505, + 261 + ], + "score": 1.0, + "content": "Liang-Chieh Chen, Raphael Gontijo Lopes, Bowen Cheng, Maxwell D Collins, Ekin D Cubuk, Barret Zoph,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 258, + 506, + 270 + ], + "spans": [ + { + "bbox": [ + 116, + 258, + 506, + 270 + ], + "score": 1.0, + "content": "Hartwig Adam, and Jonathon Shlens. Naive-student: Leveraging semi-supervised learning in video se-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 268, + 349, + 280 + ], + "spans": [ + { + "bbox": [ + 115, + 268, + 349, + 280 + ], + "score": 1.0, + "content": "quences for urban scene segmentation. In ECCV, 2020a. 1, 2, 8", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 108, + 286, + 503, + 307 + ], + "lines": [ + { + "bbox": [ + 106, + 285, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 106, + 285, + 505, + 298 + ], + "score": 1.0, + "content": "Ting Chen, Simon Kornblith, Mohammad Norouzi, and Geoffrey Hinton. A simple framework for contrastive", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 296, + 321, + 306 + ], + "spans": [ + { + "bbox": [ + 115, + 296, + 321, + 306 + ], + "score": 1.0, + "content": "learning of visual representations. In ICML, 2020b. 5, 8", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 105, + 313, + 478, + 325 + ], + "lines": [ + { + "bbox": [ + 105, + 313, + 479, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 479, + 325 + ], + "score": 1.0, + "content": "Franc¸ois Chollet. Xception: Deep learning with depthwise separable convolutions. In CVPR, 2017. 13", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 331, + 504, + 362 + ], + "lines": [ + { + "bbox": [ + 105, + 330, + 506, + 344 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 506, + 344 + ], + "score": 1.0, + "content": "Marius Cordts, Mohamed Omran, Sebastian Ramos, Timo Rehfeld, Markus Enzweiler, Rodrigo Benenson,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 340, + 506, + 354 + ], + "spans": [ + { + "bbox": [ + 115, + 340, + 506, + 354 + ], + "score": 1.0, + "content": "Uwe Franke, Stefan Roth, and Bernt Schiele. The cityscapes dataset for semantic urban scene understanding.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 352, + 189, + 362 + ], + "spans": [ + { + "bbox": [ + 116, + 352, + 189, + 362 + ], + "score": 1.0, + "content": "In CVPR, 2016. 15", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 369, + 504, + 390 + ], + "lines": [ + { + "bbox": [ + 106, + 369, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 369, + 505, + 381 + ], + "score": 1.0, + "content": "Jifeng Dai, Kaiming He, and Jian Sun. Boxsup: Exploiting bounding boxes to supervise convolutional networks", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 380, + 282, + 390 + ], + "spans": [ + { + "bbox": [ + 115, + 380, + 282, + 390 + ], + "score": 1.0, + "content": "for semantic segmentation. In ICCV, 2015. 2", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 106, + 397, + 504, + 418 + ], + "lines": [ + { + "bbox": [ + 106, + 396, + 505, + 409 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 505, + 409 + ], + "score": 1.0, + "content": "Terrance DeVries and Graham W Taylor. Improved regularization of convolutional neural networks with cutout.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 407, + 270, + 417 + ], + "spans": [ + { + "bbox": [ + 116, + 407, + 270, + 417 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1708.04552, 2017. 5", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 107, + 424, + 502, + 446 + ], + "lines": [ + { + "bbox": [ + 105, + 424, + 504, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 504, + 437 + ], + "score": 1.0, + "content": "Mark Everingham, SM Ali Eslami, Luc Van Gool, Christopher KI Williams, John Winn, and Andrew Zisser-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 435, + 465, + 447 + ], + "spans": [ + { + "bbox": [ + 115, + 435, + 465, + 447 + ], + "score": 1.0, + "content": "man. The pascal visual object classes challenge: A retrospective. IJCV, 111(1):98–136, 2015. 5", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 108, + 452, + 502, + 474 + ], + "lines": [ + { + "bbox": [ + 106, + 453, + 503, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 453, + 503, + 464 + ], + "score": 1.0, + "content": "Geoff French, Timo Aila, Samuli Laine, Michal Mackiewicz, and Graham Finlayson. Semi-supervised seman-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 463, + 437, + 474 + ], + "spans": [ + { + "bbox": [ + 115, + 463, + 437, + 474 + ], + "score": 1.0, + "content": "tic segmentation needs strong, high-dimensional perturbations. In BMVC, 2020. 2, 6, 15", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 107, + 480, + 503, + 492 + ], + "lines": [ + { + "bbox": [ + 106, + 479, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 506, + 493 + ], + "score": 1.0, + "content": "Yves Grandvalet and Yoshua Bengio. Semi-supervised learning by entropy minimization. In NeurIPS, 2005. 2", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 498, + 504, + 520 + ], + "lines": [ + { + "bbox": [ + 105, + 497, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 505, + 510 + ], + "score": 1.0, + "content": "Chuan Guo, Geoff Pleiss, Yu Sun, and Kilian Q Weinberger. On calibration of modern neural networks. ICML,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 507, + 148, + 520 + ], + "spans": [ + { + "bbox": [ + 115, + 507, + 148, + 520 + ], + "score": 1.0, + "content": "2017. 7", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 106, + 526, + 504, + 547 + ], + "lines": [ + { + "bbox": [ + 106, + 526, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 526, + 505, + 537 + ], + "score": 1.0, + "content": "Bharath Hariharan, Pablo Arbelaez, Lubomir Bourdev, Subhransu Maji, and Jitendra Malik. Semantic contours ´", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 536, + 268, + 547 + ], + "spans": [ + { + "bbox": [ + 115, + 536, + 268, + 547 + ], + "score": 1.0, + "content": "from inverse detectors. In ICCV, 2011. 5", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 108, + 554, + 504, + 575 + ], + "lines": [ + { + "bbox": [ + 106, + 553, + 505, + 566 + ], + "spans": [ + { + "bbox": [ + 106, + 553, + 505, + 566 + ], + "score": 1.0, + "content": "Bharath Hariharan, Pablo Arbelaez, Ross Girshick, and Jitendra Malik. Hypercolumns for object segmentation ´", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 564, + 292, + 574 + ], + "spans": [ + { + "bbox": [ + 115, + 564, + 292, + 574 + ], + "score": 1.0, + "content": "and fine-grained localization. In CVPR, 2015. 4", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 108, + 582, + 503, + 603 + ], + "lines": [ + { + "bbox": [ + 106, + 582, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 505, + 594 + ], + "score": 1.0, + "content": "Qibin Hou, PengTao Jiang, Yunchao Wei, and Ming-Ming Cheng. Self-erasing network for integral object", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 592, + 239, + 603 + ], + "spans": [ + { + "bbox": [ + 115, + 592, + 239, + 603 + ], + "score": 1.0, + "content": "attention. In NeurIPS, 2018. 3, 4", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 106, + 609, + 504, + 631 + ], + "lines": [ + { + "bbox": [ + 105, + 608, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 505, + 622 + ], + "score": 1.0, + "content": "Zilong Huang, Xinggang Wang, Jiasi Wang, Wenyu Liu, and Jingdong Wang. Weakly-supervised semantic", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 620, + 398, + 631 + ], + "spans": [ + { + "bbox": [ + 115, + 620, + 398, + 631 + ], + "score": 1.0, + "content": "segmentation network with deep seeded region growing. In CVPR, 2018. 3, 7", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 106, + 637, + 503, + 659 + ], + "lines": [ + { + "bbox": [ + 106, + 636, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 505, + 650 + ], + "score": 1.0, + "content": "Wei-Chih Hung, Yi-Hsuan Tsai, Yan-Ting Liou, Yen-Yu Lin, and Ming-Hsuan Yang. Adversarial learning for", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 647, + 343, + 659 + ], + "spans": [ + { + "bbox": [ + 116, + 647, + 343, + 659 + ], + "score": 1.0, + "content": "semi-supervised semantic segmentation. In BMVC, 2018. 2, 6", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 504, + 677 + ], + "lines": [ + { + "bbox": [ + 105, + 664, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 506, + 678 + ], + "score": 1.0, + "content": "Max Jaderberg, Karen Simonyan, Andrew Zisserman, et al. Spatial transformer networks. In NeurIPS, 2015. 9", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 106, + 683, + 503, + 704 + ], + "lines": [ + { + "bbox": [ + 106, + 683, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 106, + 683, + 505, + 695 + ], + "score": 1.0, + "content": "Peng-Tao Jiang, Qibin Hou, Yang Cao, Ming-Ming Cheng, Yunchao Wei, and Hong-Kai Xiong. Integral object", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 694, + 339, + 704 + ], + "spans": [ + { + "bbox": [ + 115, + 694, + 339, + 704 + ], + "score": 1.0, + "content": "mining via online attention accumulation. In ICCV, 2019. 14", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5 + }, + { + "type": "text", + "bbox": [ + 105, + 711, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 711, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 505, + 723 + ], + "score": 1.0, + "content": "Zhanghan Ke, Di Qiu, Kaican Li, Qiong Yan, and Rynson WH Lau. Guided collaborative training for pixel-wise", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 721, + 290, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 290, + 732 + ], + "score": 1.0, + "content": "semi-supervised learning. In ECCV, 2020. 2, 6", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.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, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 175, + 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": [ + 108, + 99, + 503, + 120 + ], + "lines": [ + { + "bbox": [ + 106, + 99, + 505, + 111 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 505, + 111 + ], + "score": 1.0, + "content": "Jiwoon Ahn and Suha Kwak. Learning pixel-level semantic affinity with image-level supervision for weakly", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 109, + 321, + 120 + ], + "spans": [ + { + "bbox": [ + 115, + 109, + 321, + 120 + ], + "score": 1.0, + "content": "supervised semantic segmentation. In CVPR, 2018. 3, 4", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5, + "bbox_fs": [ + 106, + 99, + 505, + 120 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 126, + 502, + 147 + ], + "lines": [ + { + "bbox": [ + 106, + 127, + 504, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 504, + 138 + ], + "score": 1.0, + "content": "Jiwoon Ahn, Sunghyun Cho, and Suha Kwak. Weakly supervised learning of instance segmentation with", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 136, + 273, + 147 + ], + "spans": [ + { + "bbox": [ + 115, + 136, + 273, + 147 + ], + "score": 1.0, + "content": "inter-pixel relations. In CVPR, 2019. 4, 14", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 106, + 127, + 504, + 147 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 154, + 503, + 185 + ], + "lines": [ + { + "bbox": [ + 106, + 154, + 504, + 166 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 504, + 166 + ], + "score": 1.0, + "content": "David Berthelot, Nicholas Carlini, Ekin D Cubuk, Alex Kurakin, Kihyuk Sohn, Han Zhang, and Colin Raffel.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 164, + 505, + 176 + ], + "spans": [ + { + "bbox": [ + 115, + 164, + 505, + 176 + ], + "score": 1.0, + "content": "Remixmatch: Semi-supervised learning with distribution matching and augmentation anchoring. In ICLR,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 173, + 152, + 186 + ], + "spans": [ + { + "bbox": [ + 115, + 173, + 152, + 186 + ], + "score": 1.0, + "content": "2019a. 2", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 106, + 154, + 505, + 186 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 192, + 503, + 214 + ], + "lines": [ + { + "bbox": [ + 106, + 192, + 505, + 204 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 505, + 204 + ], + "score": 1.0, + "content": "David Berthelot, Nicholas Carlini, Ian Goodfellow, Nicolas Papernot, Avital Oliver, and Colin A Raffel. Mix-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 202, + 420, + 214 + ], + "spans": [ + { + "bbox": [ + 115, + 202, + 420, + 214 + ], + "score": 1.0, + "content": "match: A holistic approach to semi-supervised learning. In NeurIPS, 2019b. 1, 2, 5", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 106, + 192, + 505, + 214 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 220, + 504, + 241 + ], + "lines": [ + { + "bbox": [ + 105, + 220, + 505, + 231 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 505, + 231 + ], + "score": 1.0, + "content": "Liang-Chieh Chen, Yukun Zhu, George Papandreou, Florian Schroff, and Hartwig Adam. Encoder-decoder", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 229, + 454, + 242 + ], + "spans": [ + { + "bbox": [ + 116, + 229, + 454, + 242 + ], + "score": 1.0, + "content": "with atrous separable convolution for semantic image segmentation. In ECCV, 2018. 1, 3, 15", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 220, + 505, + 242 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 248, + 505, + 279 + ], + "lines": [ + { + "bbox": [ + 105, + 247, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 505, + 261 + ], + "score": 1.0, + "content": "Liang-Chieh Chen, Raphael Gontijo Lopes, Bowen Cheng, Maxwell D Collins, Ekin D Cubuk, Barret Zoph,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 258, + 506, + 270 + ], + "spans": [ + { + "bbox": [ + 116, + 258, + 506, + 270 + ], + "score": 1.0, + "content": "Hartwig Adam, and Jonathon Shlens. Naive-student: Leveraging semi-supervised learning in video se-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 268, + 349, + 280 + ], + "spans": [ + { + "bbox": [ + 115, + 268, + 349, + 280 + ], + "score": 1.0, + "content": "quences for urban scene segmentation. In ECCV, 2020a. 1, 2, 8", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 247, + 506, + 280 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 286, + 503, + 307 + ], + "lines": [ + { + "bbox": [ + 106, + 285, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 106, + 285, + 505, + 298 + ], + "score": 1.0, + "content": "Ting Chen, Simon Kornblith, Mohammad Norouzi, and Geoffrey Hinton. A simple framework for contrastive", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 296, + 321, + 306 + ], + "spans": [ + { + "bbox": [ + 115, + 296, + 321, + 306 + ], + "score": 1.0, + "content": "learning of visual representations. In ICML, 2020b. 5, 8", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 106, + 285, + 505, + 306 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 313, + 478, + 325 + ], + "lines": [ + { + "bbox": [ + 105, + 313, + 479, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 479, + 325 + ], + "score": 1.0, + "content": "Franc¸ois Chollet. Xception: Deep learning with depthwise separable convolutions. In CVPR, 2017. 13", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 313, + 479, + 325 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 331, + 504, + 362 + ], + "lines": [ + { + "bbox": [ + 105, + 330, + 506, + 344 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 506, + 344 + ], + "score": 1.0, + "content": "Marius Cordts, Mohamed Omran, Sebastian Ramos, Timo Rehfeld, Markus Enzweiler, Rodrigo Benenson,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 340, + 506, + 354 + ], + "spans": [ + { + "bbox": [ + 115, + 340, + 506, + 354 + ], + "score": 1.0, + "content": "Uwe Franke, Stefan Roth, and Bernt Schiele. The cityscapes dataset for semantic urban scene understanding.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 352, + 189, + 362 + ], + "spans": [ + { + "bbox": [ + 116, + 352, + 189, + 362 + ], + "score": 1.0, + "content": "In CVPR, 2016. 15", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 330, + 506, + 362 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 369, + 504, + 390 + ], + "lines": [ + { + "bbox": [ + 106, + 369, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 369, + 505, + 381 + ], + "score": 1.0, + "content": "Jifeng Dai, Kaiming He, and Jian Sun. Boxsup: Exploiting bounding boxes to supervise convolutional networks", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 380, + 282, + 390 + ], + "spans": [ + { + "bbox": [ + 115, + 380, + 282, + 390 + ], + "score": 1.0, + "content": "for semantic segmentation. In ICCV, 2015. 2", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 106, + 369, + 505, + 390 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 397, + 504, + 418 + ], + "lines": [ + { + "bbox": [ + 106, + 396, + 505, + 409 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 505, + 409 + ], + "score": 1.0, + "content": "Terrance DeVries and Graham W Taylor. Improved regularization of convolutional neural networks with cutout.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 407, + 270, + 417 + ], + "spans": [ + { + "bbox": [ + 116, + 407, + 270, + 417 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1708.04552, 2017. 5", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 106, + 396, + 505, + 417 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 424, + 502, + 446 + ], + "lines": [ + { + "bbox": [ + 105, + 424, + 504, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 504, + 437 + ], + "score": 1.0, + "content": "Mark Everingham, SM Ali Eslami, Luc Van Gool, Christopher KI Williams, John Winn, and Andrew Zisser-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 435, + 465, + 447 + ], + "spans": [ + { + "bbox": [ + 115, + 435, + 465, + 447 + ], + "score": 1.0, + "content": "man. The pascal visual object classes challenge: A retrospective. IJCV, 111(1):98–136, 2015. 5", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 424, + 504, + 447 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 452, + 502, + 474 + ], + "lines": [ + { + "bbox": [ + 106, + 453, + 503, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 453, + 503, + 464 + ], + "score": 1.0, + "content": "Geoff French, Timo Aila, Samuli Laine, Michal Mackiewicz, and Graham Finlayson. Semi-supervised seman-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 463, + 437, + 474 + ], + "spans": [ + { + "bbox": [ + 115, + 463, + 437, + 474 + ], + "score": 1.0, + "content": "tic segmentation needs strong, high-dimensional perturbations. In BMVC, 2020. 2, 6, 15", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 106, + 453, + 503, + 474 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 480, + 503, + 492 + ], + "lines": [ + { + "bbox": [ + 106, + 479, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 506, + 493 + ], + "score": 1.0, + "content": "Yves Grandvalet and Yoshua Bengio. Semi-supervised learning by entropy minimization. In NeurIPS, 2005. 2", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29, + "bbox_fs": [ + 106, + 479, + 506, + 493 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 498, + 504, + 520 + ], + "lines": [ + { + "bbox": [ + 105, + 497, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 505, + 510 + ], + "score": 1.0, + "content": "Chuan Guo, Geoff Pleiss, Yu Sun, and Kilian Q Weinberger. On calibration of modern neural networks. ICML,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 507, + 148, + 520 + ], + "spans": [ + { + "bbox": [ + 115, + 507, + 148, + 520 + ], + "score": 1.0, + "content": "2017. 7", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 497, + 505, + 520 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 526, + 504, + 547 + ], + "lines": [ + { + "bbox": [ + 106, + 526, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 526, + 505, + 537 + ], + "score": 1.0, + "content": "Bharath Hariharan, Pablo Arbelaez, Lubomir Bourdev, Subhransu Maji, and Jitendra Malik. Semantic contours ´", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 536, + 268, + 547 + ], + "spans": [ + { + "bbox": [ + 115, + 536, + 268, + 547 + ], + "score": 1.0, + "content": "from inverse detectors. In ICCV, 2011. 5", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 106, + 526, + 505, + 547 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 554, + 504, + 575 + ], + "lines": [ + { + "bbox": [ + 106, + 553, + 505, + 566 + ], + "spans": [ + { + "bbox": [ + 106, + 553, + 505, + 566 + ], + "score": 1.0, + "content": "Bharath Hariharan, Pablo Arbelaez, Ross Girshick, and Jitendra Malik. Hypercolumns for object segmentation ´", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 564, + 292, + 574 + ], + "spans": [ + { + "bbox": [ + 115, + 564, + 292, + 574 + ], + "score": 1.0, + "content": "and fine-grained localization. In CVPR, 2015. 4", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 106, + 553, + 505, + 574 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 582, + 503, + 603 + ], + "lines": [ + { + "bbox": [ + 106, + 582, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 505, + 594 + ], + "score": 1.0, + "content": "Qibin Hou, PengTao Jiang, Yunchao Wei, and Ming-Ming Cheng. Self-erasing network for integral object", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 592, + 239, + 603 + ], + "spans": [ + { + "bbox": [ + 115, + 592, + 239, + 603 + ], + "score": 1.0, + "content": "attention. In NeurIPS, 2018. 3, 4", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 106, + 582, + 505, + 603 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 609, + 504, + 631 + ], + "lines": [ + { + "bbox": [ + 105, + 608, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 505, + 622 + ], + "score": 1.0, + "content": "Zilong Huang, Xinggang Wang, Jiasi Wang, Wenyu Liu, and Jingdong Wang. Weakly-supervised semantic", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 620, + 398, + 631 + ], + "spans": [ + { + "bbox": [ + 115, + 620, + 398, + 631 + ], + "score": 1.0, + "content": "segmentation network with deep seeded region growing. In CVPR, 2018. 3, 7", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 608, + 505, + 631 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 637, + 503, + 659 + ], + "lines": [ + { + "bbox": [ + 106, + 636, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 505, + 650 + ], + "score": 1.0, + "content": "Wei-Chih Hung, Yi-Hsuan Tsai, Yan-Ting Liou, Yen-Yu Lin, and Ming-Hsuan Yang. Adversarial learning for", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 647, + 343, + 659 + ], + "spans": [ + { + "bbox": [ + 116, + 647, + 343, + 659 + ], + "score": 1.0, + "content": "semi-supervised semantic segmentation. In BMVC, 2018. 2, 6", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5, + "bbox_fs": [ + 106, + 636, + 505, + 659 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 504, + 677 + ], + "lines": [ + { + "bbox": [ + 105, + 664, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 506, + 678 + ], + "score": 1.0, + "content": "Max Jaderberg, Karen Simonyan, Andrew Zisserman, et al. Spatial transformer networks. In NeurIPS, 2015. 9", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42, + "bbox_fs": [ + 105, + 664, + 506, + 678 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 683, + 503, + 704 + ], + "lines": [ + { + "bbox": [ + 106, + 683, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 106, + 683, + 505, + 695 + ], + "score": 1.0, + "content": "Peng-Tao Jiang, Qibin Hou, Yang Cao, Ming-Ming Cheng, Yunchao Wei, and Hong-Kai Xiong. Integral object", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 694, + 339, + 704 + ], + "spans": [ + { + "bbox": [ + 115, + 694, + 339, + 704 + ], + "score": 1.0, + "content": "mining via online attention accumulation. In ICCV, 2019. 14", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5, + "bbox_fs": [ + 106, + 683, + 505, + 704 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 711, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 711, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 505, + 723 + ], + "score": 1.0, + "content": "Zhanghan Ke, Di Qiu, Kaican Li, Qiong Yan, and Rynson WH Lau. Guided collaborative training for pixel-wise", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 721, + 290, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 290, + 732 + ], + "score": 1.0, + "content": "semi-supervised learning. In ECCV, 2020. 2, 6", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5, + "bbox_fs": [ + 105, + 711, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 69, + 506, + 736 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "Jongmok Kim, Jooyoung Jang, and Hyunwoo Park. Structured consistency loss for semi-supervised semantic", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 92, + 326, + 105 + ], + "spans": [ + { + "bbox": [ + 115, + 92, + 326, + 105 + ], + "score": 1.0, + "content": "segmentation. arXiv preprint arXiv:2001.04647, 2020. 2", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 109, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 109, + 505, + 124 + ], + "score": 1.0, + "content": "Alexander Kirillov, Yuxin Wu, Kaiming He, and Ross Girshick. Pointrend: Image segmentation as rendering.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 121, + 185, + 133 + ], + "spans": [ + { + "bbox": [ + 115, + 121, + 185, + 133 + ], + "score": 1.0, + "content": "In CVPR, 2020. 9", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 137, + 505, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 151 + ], + "score": 1.0, + "content": "Philipp Krahenb ¨ uhl and Vladlen Koltun. Efficient inference in fully connected crfs with gaussian edge poten- ¨", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 149, + 223, + 160 + ], + "spans": [ + { + "bbox": [ + 115, + 149, + 223, + 160 + ], + "score": 1.0, + "content": "tials. In NeurIPS, 2011. 3, 4", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 166, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 166, + 506, + 178 + ], + "score": 1.0, + "content": "Chia-Wen Kuo, Chih-Yao Ma, Jia-Bin Huang, and Zsolt Kira. Featmatch: Feature-based augmentation for", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 114, + 176, + 280, + 188 + ], + "spans": [ + { + "bbox": [ + 114, + 176, + 280, + 188 + ], + "score": 1.0, + "content": "semi-supervised learning. In ECCV, 2020. 1", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 194, + 468, + 206 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 468, + 206 + ], + "score": 1.0, + "content": "Samuli Laine and Timo Aila. Temporal ensembling for semi-supervised learning. In ICLR, 2016. 2", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 212, + 506, + 223 + ], + "spans": [ + { + "bbox": [ + 106, + 212, + 506, + 223 + ], + "score": 1.0, + "content": "Dong-Hyun Lee. Pseudo-label: The simple and efficient semi-supervised learning method for deep neural", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 222, + 259, + 234 + ], + "spans": [ + { + "bbox": [ + 115, + 222, + 259, + 234 + ], + "score": 1.0, + "content": "networks. In ICML Workshop, 2013. 2", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 239, + 504, + 251 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 504, + 251 + ], + "score": 1.0, + "content": "Jungbeom Lee, Eunji Kim, Sungmin Lee, Jangho Lee, and Sungroh Yoon. Ficklenet: Weakly and semi-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 113, + 248, + 446, + 261 + ], + "spans": [ + { + "bbox": [ + 113, + 248, + 446, + 261 + ], + "score": 1.0, + "content": "supervised semantic image segmentation using stochastic inference. In CVPR, 2019. 7, 14", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 266, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 506, + 280 + ], + "score": 1.0, + "content": "Kunpeng Li, Ziyan Wu, Kuan-Chuan Peng, Jan Ernst, and Yun Fu. Tell me where to look: Guided attention", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 277, + 264, + 288 + ], + "spans": [ + { + "bbox": [ + 115, + 277, + 264, + 288 + ], + "score": 1.0, + "content": "inference network. In CVPR, 2018. 3, 7", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 294, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 505, + 306 + ], + "score": 1.0, + "content": "Di Lin, Jifeng Dai, Jiaya Jia, Kaiming He, and Jian Sun. Scribblesup: Scribble-supervised convolutional", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 304, + 319, + 316 + ], + "spans": [ + { + "bbox": [ + 115, + 304, + 319, + 316 + ], + "score": 1.0, + "content": "networks for semantic segmentation. In CVPR, 2016. 2", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 322, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 322, + 506, + 334 + ], + "score": 1.0, + "content": "Tsung-Yi Lin, Michael Maire, Serge Belongie, James Hays, Pietro Perona, Deva Ramanan, Piotr Dollar, and ´", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 332, + 424, + 344 + ], + "spans": [ + { + "bbox": [ + 115, + 332, + 424, + 344 + ], + "score": 1.0, + "content": "C Lawrence Zitnick. Microsoft coco: Common objects in context. In ECCV, 2014. 5", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 350, + 504, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 350, + 504, + 362 + ], + "score": 1.0, + "content": "Wenfeng Luo and Meng Yang. Semi-supervised semantic segmentation via strong-weak dual-branch network.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 360, + 185, + 372 + ], + "spans": [ + { + "bbox": [ + 115, + 360, + 185, + 372 + ], + "score": 1.0, + "content": "In ECCV, 2020. 2", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 378, + 504, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 504, + 389 + ], + "score": 1.0, + "content": "Sudhanshu Mittal, Maxim Tatarchenko, and Thomas Brox. Semi-supervised semantic segmentation with high-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 388, + 275, + 399 + ], + "spans": [ + { + "bbox": [ + 115, + 388, + 275, + 399 + ], + "score": 1.0, + "content": "and low-level consistency. TPAMI, 2019. 2", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 403, + 506, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 506, + 418 + ], + "score": 1.0, + "content": "Takeru Miyato, Shin-ichi Maeda, Masanori Koyama, and Shin Ishii. Virtual adversarial training: a regulariza-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 114, + 414, + 463, + 428 + ], + "spans": [ + { + "bbox": [ + 114, + 414, + 463, + 428 + ], + "score": 1.0, + "content": "tion method for supervised and semi-supervised learning. TPAMI, 41(8):1979–1993, 2018. 2, 6", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 430, + 507, + 447 + ], + "spans": [ + { + "bbox": [ + 104, + 430, + 507, + 447 + ], + "score": 1.0, + "content": "Seong Joon Oh, Rodrigo Benenson, Anna Khoreva, Zeynep Akata, Mario Fritz, and Bernt Schiele. Exploiting", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 443, + 391, + 455 + ], + "spans": [ + { + "bbox": [ + 115, + 443, + 391, + 455 + ], + "score": 1.0, + "content": "saliency for object segmentation from image level labels. In CVPR, 2017. 3", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 458, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 505, + 473 + ], + "score": 1.0, + "content": "Yassine Ouali, Celine Hudelot, and Myriam Tami. Semi-supervised semantic segmentation with cross- ´", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 114, + 469, + 280, + 482 + ], + "spans": [ + { + "bbox": [ + 114, + 469, + 280, + 482 + ], + "score": 1.0, + "content": "consistency training. In CVPR, 2020. 2, 6, 7", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 487, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 506, + 501 + ], + "score": 1.0, + "content": "George Papandreou, Liang-Chieh Chen, Kevin P Murphy, and Alan L Yuille. Weakly-and semi-supervised", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 498, + 455, + 510 + ], + "spans": [ + { + "bbox": [ + 115, + 498, + 455, + 510 + ], + "score": 1.0, + "content": "learning of a deep convolutional network for semantic image segmentation. In ICCV, 2015. 7", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 514, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 104, + 514, + 506, + 528 + ], + "score": 1.0, + "content": "Olga Russakovsky, Jia Deng, Hao Su, Jonathan Krause, Sanjeev Satheesh, Sean Ma, Zhiheng Huang, Andrej", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 114, + 524, + 506, + 539 + ], + "spans": [ + { + "bbox": [ + 114, + 524, + 506, + 539 + ], + "score": 1.0, + "content": "Karpathy, Aditya Khosla, Michael Bernstein, et al. Imagenet large scale visual recognition challenge. IJCV,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 117, + 535, + 216, + 547 + ], + "spans": [ + { + "bbox": [ + 117, + 535, + 216, + 547 + ], + "score": 1.0, + "content": "115(3):211–252, 2015. 13", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 553, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 505, + 565 + ], + "score": 1.0, + "content": "Mehdi Sajjadi, Mehran Javanmardi, and Tolga Tasdizen. Regularization with stochastic transformations and", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 114, + 563, + 370, + 575 + ], + "spans": [ + { + "bbox": [ + 114, + 563, + 370, + 575 + ], + "score": 1.0, + "content": "perturbations for deep semi-supervised learning. In NeurIPS, 2016. 2", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 579, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 505, + 594 + ], + "score": 1.0, + "content": "Ramprasaath R Selvaraju, Michael Cogswell, Abhishek Das, Ramakrishna Vedantam, Devi Parikh, and Dhruv", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 591, + 504, + 603 + ], + "spans": [ + { + "bbox": [ + 115, + 591, + 504, + 603 + ], + "score": 1.0, + "content": "Batra. Grad-cam: Visual explanations from deep networks via gradient-based localization. In ICCV, 2017.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 601, + 124, + 611 + ], + "spans": [ + { + "bbox": [ + 116, + 601, + 124, + 611 + ], + "score": 1.0, + "content": "4", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 618, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 505, + 630 + ], + "score": 1.0, + "content": "Kihyuk Sohn, David Berthelot, Chun-Liang Li, Zizhao Zhang, Nicholas Carlini, Ekin D Cubuk, Alex Ku-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 628, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 115, + 628, + 505, + 640 + ], + "score": 1.0, + "content": "rakin, Han Zhang, and Colin Raffel. Fixmatch: Simplifying semi-supervised learning with consistency and", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 638, + 259, + 650 + ], + "spans": [ + { + "bbox": [ + 116, + 638, + 259, + 650 + ], + "score": 1.0, + "content": "confidence. In NeurIPS, 2020a. 1, 2, 4", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 654, + 505, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 669 + ], + "score": 1.0, + "content": "Kihyuk Sohn, Zizhao Zhang, Chun-Liang Li, Han Zhang, Chen-Yu Lee, and Tomas Pfister. A simple semi-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 665, + 465, + 678 + ], + "spans": [ + { + "bbox": [ + 115, + 665, + 465, + 678 + ], + "score": 1.0, + "content": "supervised learning framework for object detection. arXiv preprint arXiv:2005.04757, 2020b. 4", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 683, + 506, + 696 + ], + "spans": [ + { + "bbox": [ + 105, + 683, + 506, + 696 + ], + "score": 1.0, + "content": "Nasim Souly, Concetto Spampinato, and Mubarak Shah. Semi supervised semantic segmentation using gener-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 114, + 692, + 297, + 707 + ], + "spans": [ + { + "bbox": [ + 114, + 692, + 297, + 707 + ], + "score": 1.0, + "content": "ative adversarial network. In ICCV, 2017. 2, 6, 7", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 104, + 710, + 505, + 725 + ], + "spans": [ + { + "bbox": [ + 104, + 710, + 505, + 725 + ], + "score": 1.0, + "content": "Guolei Sun, Wenguan Wang, Jifeng Dai, and Luc Van Gool. Mining cross-image semantics for weakly super-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 116, + 722, + 316, + 733 + ], + "spans": [ + { + "bbox": [ + 116, + 722, + 316, + 733 + ], + "score": 1.0, + "content": "vised semantic segmentation. In ECCV, 2020. 3, 4, 14", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 23.5 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 39 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 105, + 69, + 506, + 736 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "Jongmok Kim, Jooyoung Jang, and Hyunwoo Park. Structured consistency loss for semi-supervised semantic", + "type": "text" + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 92, + 326, + 105 + ], + "spans": [ + { + "bbox": [ + 115, + 92, + 326, + 105 + ], + "score": 1.0, + "content": "segmentation. arXiv preprint arXiv:2001.04647, 2020. 2", + "type": "text" + } + ], + "index": 1, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 109, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 109, + 505, + 124 + ], + "score": 1.0, + "content": "Alexander Kirillov, Yuxin Wu, Kaiming He, and Ross Girshick. Pointrend: Image segmentation as rendering.", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 121, + 185, + 133 + ], + "spans": [ + { + "bbox": [ + 115, + 121, + 185, + 133 + ], + "score": 1.0, + "content": "In CVPR, 2020. 9", + "type": "text" + } + ], + "index": 3, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 137, + 505, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 151 + ], + "score": 1.0, + "content": "Philipp Krahenb ¨ uhl and Vladlen Koltun. Efficient inference in fully connected crfs with gaussian edge poten- ¨", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 149, + 223, + 160 + ], + "spans": [ + { + "bbox": [ + 115, + 149, + 223, + 160 + ], + "score": 1.0, + "content": "tials. In NeurIPS, 2011. 3, 4", + "type": "text" + } + ], + "index": 5, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 166, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 166, + 506, + 178 + ], + "score": 1.0, + "content": "Chia-Wen Kuo, Chih-Yao Ma, Jia-Bin Huang, and Zsolt Kira. Featmatch: Feature-based augmentation for", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 176, + 280, + 188 + ], + "spans": [ + { + "bbox": [ + 114, + 176, + 280, + 188 + ], + "score": 1.0, + "content": "semi-supervised learning. In ECCV, 2020. 1", + "type": "text" + } + ], + "index": 7, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 194, + 468, + 206 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 468, + 206 + ], + "score": 1.0, + "content": "Samuli Laine and Timo Aila. Temporal ensembling for semi-supervised learning. In ICLR, 2016. 2", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 212, + 506, + 223 + ], + "spans": [ + { + "bbox": [ + 106, + 212, + 506, + 223 + ], + "score": 1.0, + "content": "Dong-Hyun Lee. Pseudo-label: The simple and efficient semi-supervised learning method for deep neural", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 222, + 259, + 234 + ], + "spans": [ + { + "bbox": [ + 115, + 222, + 259, + 234 + ], + "score": 1.0, + "content": "networks. In ICML Workshop, 2013. 2", + "type": "text" + } + ], + "index": 10, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 239, + 504, + 251 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 504, + 251 + ], + "score": 1.0, + "content": "Jungbeom Lee, Eunji Kim, Sungmin Lee, Jangho Lee, and Sungroh Yoon. Ficklenet: Weakly and semi-", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 248, + 446, + 261 + ], + "spans": [ + { + "bbox": [ + 113, + 248, + 446, + 261 + ], + "score": 1.0, + "content": "supervised semantic image segmentation using stochastic inference. In CVPR, 2019. 7, 14", + "type": "text" + } + ], + "index": 12, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 266, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 506, + 280 + ], + "score": 1.0, + "content": "Kunpeng Li, Ziyan Wu, Kuan-Chuan Peng, Jan Ernst, and Yun Fu. Tell me where to look: Guided attention", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 277, + 264, + 288 + ], + "spans": [ + { + "bbox": [ + 115, + 277, + 264, + 288 + ], + "score": 1.0, + "content": "inference network. In CVPR, 2018. 3, 7", + "type": "text" + } + ], + "index": 14, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 294, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 505, + 306 + ], + "score": 1.0, + "content": "Di Lin, Jifeng Dai, Jiaya Jia, Kaiming He, and Jian Sun. Scribblesup: Scribble-supervised convolutional", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 304, + 319, + 316 + ], + "spans": [ + { + "bbox": [ + 115, + 304, + 319, + 316 + ], + "score": 1.0, + "content": "networks for semantic segmentation. In CVPR, 2016. 2", + "type": "text" + } + ], + "index": 16, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 322, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 322, + 506, + 334 + ], + "score": 1.0, + "content": "Tsung-Yi Lin, Michael Maire, Serge Belongie, James Hays, Pietro Perona, Deva Ramanan, Piotr Dollar, and ´", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 332, + 424, + 344 + ], + "spans": [ + { + "bbox": [ + 115, + 332, + 424, + 344 + ], + "score": 1.0, + "content": "C Lawrence Zitnick. Microsoft coco: Common objects in context. In ECCV, 2014. 5", + "type": "text" + } + ], + "index": 18, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 350, + 504, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 350, + 504, + 362 + ], + "score": 1.0, + "content": "Wenfeng Luo and Meng Yang. Semi-supervised semantic segmentation via strong-weak dual-branch network.", + "type": "text" + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 360, + 185, + 372 + ], + "spans": [ + { + "bbox": [ + 115, + 360, + 185, + 372 + ], + "score": 1.0, + "content": "In ECCV, 2020. 2", + "type": "text" + } + ], + "index": 20, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 378, + 504, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 504, + 389 + ], + "score": 1.0, + "content": "Sudhanshu Mittal, Maxim Tatarchenko, and Thomas Brox. Semi-supervised semantic segmentation with high-", + "type": "text" + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 388, + 275, + 399 + ], + "spans": [ + { + "bbox": [ + 115, + 388, + 275, + 399 + ], + "score": 1.0, + "content": "and low-level consistency. TPAMI, 2019. 2", + "type": "text" + } + ], + "index": 22, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 403, + 506, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 506, + 418 + ], + "score": 1.0, + "content": "Takeru Miyato, Shin-ichi Maeda, Masanori Koyama, and Shin Ishii. Virtual adversarial training: a regulariza-", + "type": "text" + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 414, + 463, + 428 + ], + "spans": [ + { + "bbox": [ + 114, + 414, + 463, + 428 + ], + "score": 1.0, + "content": "tion method for supervised and semi-supervised learning. TPAMI, 41(8):1979–1993, 2018. 2, 6", + "type": "text" + } + ], + "index": 24, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 430, + 507, + 447 + ], + "spans": [ + { + "bbox": [ + 104, + 430, + 507, + 447 + ], + "score": 1.0, + "content": "Seong Joon Oh, Rodrigo Benenson, Anna Khoreva, Zeynep Akata, Mario Fritz, and Bernt Schiele. Exploiting", + "type": "text" + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 443, + 391, + 455 + ], + "spans": [ + { + "bbox": [ + 115, + 443, + 391, + 455 + ], + "score": 1.0, + "content": "saliency for object segmentation from image level labels. In CVPR, 2017. 3", + "type": "text" + } + ], + "index": 26, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 458, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 505, + 473 + ], + "score": 1.0, + "content": "Yassine Ouali, Celine Hudelot, and Myriam Tami. Semi-supervised semantic segmentation with cross- ´", + "type": "text" + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 469, + 280, + 482 + ], + "spans": [ + { + "bbox": [ + 114, + 469, + 280, + 482 + ], + "score": 1.0, + "content": "consistency training. In CVPR, 2020. 2, 6, 7", + "type": "text" + } + ], + "index": 28, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 487, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 506, + 501 + ], + "score": 1.0, + "content": "George Papandreou, Liang-Chieh Chen, Kevin P Murphy, and Alan L Yuille. Weakly-and semi-supervised", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 498, + 455, + 510 + ], + "spans": [ + { + "bbox": [ + 115, + 498, + 455, + 510 + ], + "score": 1.0, + "content": "learning of a deep convolutional network for semantic image segmentation. In ICCV, 2015. 7", + "type": "text" + } + ], + "index": 30, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 514, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 104, + 514, + 506, + 528 + ], + "score": 1.0, + "content": "Olga Russakovsky, Jia Deng, Hao Su, Jonathan Krause, Sanjeev Satheesh, Sean Ma, Zhiheng Huang, Andrej", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 524, + 506, + 539 + ], + "spans": [ + { + "bbox": [ + 114, + 524, + 506, + 539 + ], + "score": 1.0, + "content": "Karpathy, Aditya Khosla, Michael Bernstein, et al. Imagenet large scale visual recognition challenge. IJCV,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 117, + 535, + 216, + 547 + ], + "spans": [ + { + "bbox": [ + 117, + 535, + 216, + 547 + ], + "score": 1.0, + "content": "115(3):211–252, 2015. 13", + "type": "text" + } + ], + "index": 33, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 553, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 505, + 565 + ], + "score": 1.0, + "content": "Mehdi Sajjadi, Mehran Javanmardi, and Tolga Tasdizen. Regularization with stochastic transformations and", + "type": "text" + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 563, + 370, + 575 + ], + "spans": [ + { + "bbox": [ + 114, + 563, + 370, + 575 + ], + "score": 1.0, + "content": "perturbations for deep semi-supervised learning. In NeurIPS, 2016. 2", + "type": "text" + } + ], + "index": 35, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 579, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 505, + 594 + ], + "score": 1.0, + "content": "Ramprasaath R Selvaraju, Michael Cogswell, Abhishek Das, Ramakrishna Vedantam, Devi Parikh, and Dhruv", + "type": "text" + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 591, + 504, + 603 + ], + "spans": [ + { + "bbox": [ + 115, + 591, + 504, + 603 + ], + "score": 1.0, + "content": "Batra. Grad-cam: Visual explanations from deep networks via gradient-based localization. In ICCV, 2017.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 601, + 124, + 611 + ], + "spans": [ + { + "bbox": [ + 116, + 601, + 124, + 611 + ], + "score": 1.0, + "content": "4", + "type": "text" + } + ], + "index": 38, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 618, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 505, + 630 + ], + "score": 1.0, + "content": "Kihyuk Sohn, David Berthelot, Chun-Liang Li, Zizhao Zhang, Nicholas Carlini, Ekin D Cubuk, Alex Ku-", + "type": "text" + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 628, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 115, + 628, + 505, + 640 + ], + "score": 1.0, + "content": "rakin, Han Zhang, and Colin Raffel. Fixmatch: Simplifying semi-supervised learning with consistency and", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 638, + 259, + 650 + ], + "spans": [ + { + "bbox": [ + 116, + 638, + 259, + 650 + ], + "score": 1.0, + "content": "confidence. In NeurIPS, 2020a. 1, 2, 4", + "type": "text" + } + ], + "index": 41, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 654, + 505, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 669 + ], + "score": 1.0, + "content": "Kihyuk Sohn, Zizhao Zhang, Chun-Liang Li, Han Zhang, Chen-Yu Lee, and Tomas Pfister. A simple semi-", + "type": "text" + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 665, + 465, + 678 + ], + "spans": [ + { + "bbox": [ + 115, + 665, + 465, + 678 + ], + "score": 1.0, + "content": "supervised learning framework for object detection. arXiv preprint arXiv:2005.04757, 2020b. 4", + "type": "text" + } + ], + "index": 43, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 683, + 506, + 696 + ], + "spans": [ + { + "bbox": [ + 105, + 683, + 506, + 696 + ], + "score": 1.0, + "content": "Nasim Souly, Concetto Spampinato, and Mubarak Shah. Semi supervised semantic segmentation using gener-", + "type": "text" + } + ], + "index": 44, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 692, + 297, + 707 + ], + "spans": [ + { + "bbox": [ + 114, + 692, + 297, + 707 + ], + "score": 1.0, + "content": "ative adversarial network. In ICCV, 2017. 2, 6, 7", + "type": "text" + } + ], + "index": 45, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 710, + 505, + 725 + ], + "spans": [ + { + "bbox": [ + 104, + 710, + 505, + 725 + ], + "score": 1.0, + "content": "Guolei Sun, Wenguan Wang, Jifeng Dai, and Luc Van Gool. Mining cross-image semantics for weakly super-", + "type": "text" + } + ], + "index": 46, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 722, + 316, + 733 + ], + "spans": [ + { + "bbox": [ + 116, + 722, + 316, + 733 + ], + "score": 1.0, + "content": "vised semantic segmentation. In ECCV, 2020. 3, 4, 14", + "type": "text" + } + ], + "index": 47, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 81, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 97 + ], + "score": 1.0, + "content": "Antti Tarvainen and Harri Valpola. Mean teachers are better role models: Weight-averaged consistency targets", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 94, + 383, + 105 + ], + "spans": [ + { + "bbox": [ + 116, + 94, + 383, + 105 + ], + "score": 1.0, + "content": "improve semi-supervised deep learning results. In NeurIPS, 2017. 1, 2, 6", + "type": "text", + "cross_page": true + } + ], + "index": 1, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 110, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 505, + 124 + ], + "score": 1.0, + "content": "Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Łukasz Kaiser,", + "type": "text", + "cross_page": true + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 122, + 364, + 132 + ], + "spans": [ + { + "bbox": [ + 115, + 122, + 364, + 132 + ], + "score": 1.0, + "content": "and Illia Polosukhin. Attention is all you need. In NeurIPS, 2017. 4", + "type": "text", + "cross_page": true + } + ], + "index": 3, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 138, + 505, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 505, + 151 + ], + "score": 1.0, + "content": "Yude Wang, Jie Zhang, Meina Kan, Shiguang Shan, and Xilin Chen. Self-supervised equivariant attention", + "type": "text", + "cross_page": true + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 149, + 409, + 161 + ], + "spans": [ + { + "bbox": [ + 115, + 149, + 409, + 161 + ], + "score": 1.0, + "content": "mechanism for weakly supervised semantic segmentation. In CVPR, 2020. 3, 14", + "type": "text", + "cross_page": true + } + ], + "index": 5, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 167, + 506, + 180 + ], + "spans": [ + { + "bbox": [ + 106, + 167, + 506, + 180 + ], + "score": 1.0, + "content": "Yunchao Wei, Jiashi Feng, Xiaodan Liang, Ming-Ming Cheng, Yao Zhao, and Shuicheng Yan. Object region", + "type": "text", + "cross_page": true + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 177, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 115, + 177, + 505, + 189 + ], + "score": 1.0, + "content": "mining with adversarial erasing: A simple classification to semantic segmentation approach. In CVPR, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 114, + 186, + 135, + 199 + ], + "spans": [ + { + "bbox": [ + 114, + 186, + 135, + 199 + ], + "score": 1.0, + "content": "3, 4", + "type": "text", + "cross_page": true + } + ], + "index": 8, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 205, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 205, + 505, + 217 + ], + "score": 1.0, + "content": "Yunchao Wei, Huaxin Xiao, Honghui Shi, Zequn Jie, Jiashi Feng, and Thomas S Huang. Revisiting dilated", + "type": "text", + "cross_page": true + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 214, + 506, + 227 + ], + "spans": [ + { + "bbox": [ + 115, + 214, + 506, + 227 + ], + "score": 1.0, + "content": "convolution: A simple approach for weakly-and semi-supervised semantic segmentation. In CVPR, 2018. 3,", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 226, + 123, + 234 + ], + "spans": [ + { + "bbox": [ + 116, + 226, + 123, + 234 + ], + "score": 1.0, + "content": "7", + "type": "text", + "cross_page": true + } + ], + "index": 11, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 243, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 106, + 243, + 505, + 255 + ], + "score": 1.0, + "content": "Qizhe Xie, Zihang Dai, Eduard Hovy, Minh-Thang Luong, and Quoc V. Le. Unsupervised data augmentation", + "type": "text", + "cross_page": true + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 253, + 361, + 266 + ], + "spans": [ + { + "bbox": [ + 115, + 253, + 361, + 266 + ], + "score": 1.0, + "content": "for consistency training. arXiv preprint arXiv:1904.12848, 2019. 1", + "type": "text", + "cross_page": true + } + ], + "index": 13, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 269, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 505, + 284 + ], + "score": 1.0, + "content": "Qizhe Xie, Minh-Thang Luong, Eduard Hovy, and Quoc V Le. Self-training with noisy student improves", + "type": "text", + "cross_page": true + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 281, + 272, + 291 + ], + "spans": [ + { + "bbox": [ + 116, + 281, + 272, + 291 + ], + "score": 1.0, + "content": "imagenet classification. In CVPR, 2020. 4", + "type": "text", + "cross_page": true + } + ], + "index": 15, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 298, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 505, + 310 + ], + "score": 1.0, + "content": "Hang Zhang, Chongruo Wu, Zhongyue Zhang, Yi Zhu, Zhi Zhang, Haibin Lin, Yue Sun, Tong He, Jonas", + "type": "text", + "cross_page": true + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 308, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 115, + 308, + 505, + 321 + ], + "score": 1.0, + "content": "Muller, R. Manmatha, Mu Li, and Alexander Smola. Resnest: Split-attention networks. arXiv preprint", + "type": "text", + "cross_page": true + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 318, + 221, + 330 + ], + "spans": [ + { + "bbox": [ + 116, + 318, + 221, + 330 + ], + "score": 1.0, + "content": "arXiv:2004.08955, 2020a. 1", + "type": "text", + "cross_page": true + } + ], + "index": 18, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 336, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 505, + 349 + ], + "score": 1.0, + "content": "Xiaolin Zhang, Yunchao Wei, and Yi Yang. Inter-image communication for weakly supervised localization. In", + "type": "text", + "cross_page": true + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 346, + 180, + 358 + ], + "spans": [ + { + "bbox": [ + 116, + 346, + 180, + 358 + ], + "score": 1.0, + "content": "ECCV, 2020b. 3", + "type": "text", + "cross_page": true + } + ], + "index": 20, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 363, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 505, + 376 + ], + "score": 1.0, + "content": "Bolei Zhou, Aditya Khosla, Agata Lapedriza, Aude Oliva, and Antonio Torralba. Learning deep features for", + "type": "text", + "cross_page": true + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 374, + 295, + 387 + ], + "spans": [ + { + "bbox": [ + 115, + 374, + 295, + 387 + ], + "score": 1.0, + "content": "discriminative localization. In CVPR, 2016. 2, 4", + "type": "text", + "cross_page": true + } + ], + "index": 22, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 391, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 391, + 505, + 405 + ], + "score": 1.0, + "content": "Yi Zhu, Zhongyue Zhang, Chongruo Wu, Zhi Zhang, Tong He, Hang Zhang, R Manmatha, Mu Li, and Alexan-", + "type": "text", + "cross_page": true + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 402, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 115, + 402, + 505, + 414 + ], + "score": 1.0, + "content": "der Smola. Improving semantic segmentation via self-training. arXiv preprint arXiv:2004.14960, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 413, + 123, + 421 + ], + "spans": [ + { + "bbox": [ + 116, + 413, + 123, + 421 + ], + "score": 1.0, + "content": "2", + "type": "text", + "cross_page": true + } + ], + "index": 25, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 429, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 506, + 443 + ], + "score": 1.0, + "content": "Barret Zoph, Golnaz Ghiasi, Tsung-Yi Lin, Yin Cui, Hanxiao Liu, Ekin D Cubuk, and Quoc V Le. Rethinking", + "type": "text", + "cross_page": true + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 441, + 416, + 452 + ], + "spans": [ + { + "bbox": [ + 115, + 441, + 416, + 452 + ], + "score": 1.0, + "content": "pre-training and self-training. arXiv preprint arXiv:2006.06882, 2020. 1, 2, 4, 8, 9", + "type": "text", + "cross_page": true + } + ], + "index": 27, + "is_list_end_line": true + } + ], + "index": 23.5, + "bbox_fs": [ + 104, + 81, + 507, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 74, + 506, + 455 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 97 + ], + "score": 1.0, + "content": "Antti Tarvainen and Harri Valpola. Mean teachers are better role models: Weight-averaged consistency targets", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 94, + 383, + 105 + ], + "spans": [ + { + "bbox": [ + 116, + 94, + 383, + 105 + ], + "score": 1.0, + "content": "improve semi-supervised deep learning results. In NeurIPS, 2017. 1, 2, 6", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 110, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 505, + 124 + ], + "score": 1.0, + "content": "Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Łukasz Kaiser,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 122, + 364, + 132 + ], + "spans": [ + { + "bbox": [ + 115, + 122, + 364, + 132 + ], + "score": 1.0, + "content": "and Illia Polosukhin. Attention is all you need. In NeurIPS, 2017. 4", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 138, + 505, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 505, + 151 + ], + "score": 1.0, + "content": "Yude Wang, Jie Zhang, Meina Kan, Shiguang Shan, and Xilin Chen. Self-supervised equivariant attention", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 149, + 409, + 161 + ], + "spans": [ + { + "bbox": [ + 115, + 149, + 409, + 161 + ], + "score": 1.0, + "content": "mechanism for weakly supervised semantic segmentation. In CVPR, 2020. 3, 14", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 167, + 506, + 180 + ], + "spans": [ + { + "bbox": [ + 106, + 167, + 506, + 180 + ], + "score": 1.0, + "content": "Yunchao Wei, Jiashi Feng, Xiaodan Liang, Ming-Ming Cheng, Yao Zhao, and Shuicheng Yan. Object region", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 177, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 115, + 177, + 505, + 189 + ], + "score": 1.0, + "content": "mining with adversarial erasing: A simple classification to semantic segmentation approach. In CVPR, 2017.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 114, + 186, + 135, + 199 + ], + "spans": [ + { + "bbox": [ + 114, + 186, + 135, + 199 + ], + "score": 1.0, + "content": "3, 4", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 205, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 205, + 505, + 217 + ], + "score": 1.0, + "content": "Yunchao Wei, Huaxin Xiao, Honghui Shi, Zequn Jie, Jiashi Feng, and Thomas S Huang. Revisiting dilated", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 214, + 506, + 227 + ], + "spans": [ + { + "bbox": [ + 115, + 214, + 506, + 227 + ], + "score": 1.0, + "content": "convolution: A simple approach for weakly-and semi-supervised semantic segmentation. In CVPR, 2018. 3,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 226, + 123, + 234 + ], + "spans": [ + { + "bbox": [ + 116, + 226, + 123, + 234 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 243, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 106, + 243, + 505, + 255 + ], + "score": 1.0, + "content": "Qizhe Xie, Zihang Dai, Eduard Hovy, Minh-Thang Luong, and Quoc V. Le. Unsupervised data augmentation", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 253, + 361, + 266 + ], + "spans": [ + { + "bbox": [ + 115, + 253, + 361, + 266 + ], + "score": 1.0, + "content": "for consistency training. arXiv preprint arXiv:1904.12848, 2019. 1", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 269, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 505, + 284 + ], + "score": 1.0, + "content": "Qizhe Xie, Minh-Thang Luong, Eduard Hovy, and Quoc V Le. Self-training with noisy student improves", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 281, + 272, + 291 + ], + "spans": [ + { + "bbox": [ + 116, + 281, + 272, + 291 + ], + "score": 1.0, + "content": "imagenet classification. In CVPR, 2020. 4", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 298, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 505, + 310 + ], + "score": 1.0, + "content": "Hang Zhang, Chongruo Wu, Zhongyue Zhang, Yi Zhu, Zhi Zhang, Haibin Lin, Yue Sun, Tong He, Jonas", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 308, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 115, + 308, + 505, + 321 + ], + "score": 1.0, + "content": "Muller, R. Manmatha, Mu Li, and Alexander Smola. Resnest: Split-attention networks. arXiv preprint", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 318, + 221, + 330 + ], + "spans": [ + { + "bbox": [ + 116, + 318, + 221, + 330 + ], + "score": 1.0, + "content": "arXiv:2004.08955, 2020a. 1", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 336, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 505, + 349 + ], + "score": 1.0, + "content": "Xiaolin Zhang, Yunchao Wei, and Yi Yang. Inter-image communication for weakly supervised localization. In", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 346, + 180, + 358 + ], + "spans": [ + { + "bbox": [ + 116, + 346, + 180, + 358 + ], + "score": 1.0, + "content": "ECCV, 2020b. 3", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 363, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 505, + 376 + ], + "score": 1.0, + "content": "Bolei Zhou, Aditya Khosla, Agata Lapedriza, Aude Oliva, and Antonio Torralba. Learning deep features for", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 374, + 295, + 387 + ], + "spans": [ + { + "bbox": [ + 115, + 374, + 295, + 387 + ], + "score": 1.0, + "content": "discriminative localization. In CVPR, 2016. 2, 4", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 391, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 391, + 505, + 405 + ], + "score": 1.0, + "content": "Yi Zhu, Zhongyue Zhang, Chongruo Wu, Zhi Zhang, Tong He, Hang Zhang, R Manmatha, Mu Li, and Alexan-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 402, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 115, + 402, + 505, + 414 + ], + "score": 1.0, + "content": "der Smola. Improving semantic segmentation via self-training. arXiv preprint arXiv:2004.14960, 2020.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 413, + 123, + 421 + ], + "spans": [ + { + "bbox": [ + 116, + 413, + 123, + 421 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 429, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 506, + 443 + ], + "score": 1.0, + "content": "Barret Zoph, Golnaz Ghiasi, Tsung-Yi Lin, Yin Cui, Hanxiao Liu, Ekin D Cubuk, and Quoc V Le. Rethinking", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 441, + 416, + 452 + ], + "spans": [ + { + "bbox": [ + 115, + 441, + 416, + 452 + ], + "score": 1.0, + "content": "pre-training and self-training. arXiv preprint arXiv:2006.06882, 2020. 1, 2, 4, 8, 9", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 13.5 + } + ], + "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, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 105, + 74, + 506, + 455 + ], + "lines": [], + "index": 13.5, + "bbox_fs": [ + 105, + 81, + 506, + 452 + ], + "lines_deleted": true + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 161, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 163, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 163, + 96 + ], + "score": 1.0, + "content": "APPENDIX", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "title", + "bbox": [ + 109, + 109, + 256, + 120 + ], + "lines": [ + { + "bbox": [ + 106, + 108, + 257, + 122 + ], + "spans": [ + { + "bbox": [ + 106, + 108, + 257, + 122 + ], + "score": 1.0, + "content": "A SELF-ATTENTION GRAD-CAM", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 132, + 505, + 285 + ], + "lines": [ + { + "bbox": [ + 106, + 131, + 505, + 144 + ], + "spans": [ + { + "bbox": [ + 106, + 131, + 505, + 144 + ], + "score": 1.0, + "content": "We elaborate the detailed pipeline of generating Self-attention Grad-CAM (SGC) maps (equation 3)", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "score": 1.0, + "content": "in Figure 6. To construct the hypercolumn feature, we extract the feature maps from the last two con-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 153, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 505, + 167 + ], + "score": 1.0, + "content": "volutional stages of the backbone network and concatenate them together. We then project the hy-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 165, + 504, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 504, + 177 + ], + "score": 1.0, + "content": "percolumn feature to two separate low-dimension embedding spaces to construct “key” and “query”,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 176, + 505, + 187 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 149, + 187 + ], + "score": 1.0, + "content": "using two", + "type": "text" + }, + { + "bbox": [ + 149, + 176, + 173, + 186 + ], + "score": 0.9, + "content": "1 \\times 1", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 176, + 505, + 187 + ], + "score": 1.0, + "content": "convolutional layers. An attention matrix can then be computed via matrix multi-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 187, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 505, + 199 + ], + "score": 1.0, + "content": "plication of “key” and “query”. To construct “value”, we compute Grad-CAM for each foreground", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 197, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 197, + 340, + 210 + ], + "score": 1.0, + "content": "class and then concatenate them together. This results in a", + "type": "text" + }, + { + "bbox": [ + 340, + 198, + 416, + 209 + ], + "score": 0.91, + "content": "H \\times W \\times ( C - 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 197, + 505, + 210 + ], + "score": 1.0, + "content": "score map, where the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 209, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 505, + 221 + ], + "score": 1.0, + "content": "maximum score of each category is normalized to one separately. We then use image-level labels", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 218, + 506, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 218, + 506, + 233 + ], + "score": 1.0, + "content": "(either from classifier prediction or ground truth annotation) to set the score maps of non-existing", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 230, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 505, + 243 + ], + "score": 1.0, + "content": "classes to be zero. For each pixel localization, we use one to subtract the maximum score to con-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 242, + 506, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 242, + 506, + 253 + ], + "score": 1.0, + "content": "struct the background score map, which is then concatenated with the foreground score maps to", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 252, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 162, + 266 + ], + "score": 1.0, + "content": "form “value”", + "type": "text" + }, + { + "bbox": [ + 162, + 253, + 219, + 263 + ], + "score": 0.89, + "content": "( H \\times W \\times C )", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 252, + 505, + 266 + ], + "score": 1.0, + "content": ". The attention score matrix can then be used to reweight and propagate", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 262, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 506, + 277 + ], + "score": 1.0, + "content": "the scores in “value”. The propagated score is added back to the “value” score map, and the pass", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 273, + 419, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 147, + 288 + ], + "score": 1.0, + "content": "through a", + "type": "text" + }, + { + "bbox": [ + 147, + 275, + 171, + 285 + ], + "score": 0.89, + "content": "1 \\times 1", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 273, + 419, + 288 + ], + "score": 1.0, + "content": "convolution (w/ batch normalization) to output the SGC map.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 8.5 + }, + { + "type": "image", + "bbox": [ + 109, + 301, + 505, + 415 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 301, + 505, + 415 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 301, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 109, + 301, + 505, + 415 + ], + "score": 0.964, + "type": "image", + "image_path": "e601a68b369dd2bea5df204593cc86e5c58bb436da07925d9f96859b296a94ec.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 109, + 301, + 505, + 339.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 109, + 339.0, + 505, + 377.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 109, + 377.0, + 505, + 415.0 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 185, + 424, + 423, + 437 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 185, + 424, + 424, + 439 + ], + "spans": [ + { + "bbox": [ + 185, + 424, + 424, + 439 + ], + "score": 1.0, + "content": "Figure 6: Diagram of Self-attention Grad-CAM (SGC) .", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + } + ], + "index": 18.0 + }, + { + "type": "title", + "bbox": [ + 108, + 466, + 242, + 477 + ], + "lines": [ + { + "bbox": [ + 105, + 465, + 243, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 243, + 479 + ], + "score": 1.0, + "content": "B IMPLEMENTATION DETAILS", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 488, + 505, + 588 + ], + "lines": [ + { + "bbox": [ + 105, + 488, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 505, + 501 + ], + "score": 1.0, + "content": "We implement our method on top of the publicly available official DeepLab codebase.3 Unless spec-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 498, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 226, + 512 + ], + "score": 1.0, + "content": "ified, we adopt the DeepLabv", + "type": "text" + }, + { + "bbox": [ + 226, + 501, + 239, + 510 + ], + "score": 0.76, + "content": "^ { 3 + }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 498, + 505, + 512 + ], + "score": 1.0, + "content": "model with Xception-65 (Chollet, 2017) as the feature backbone,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 511, + 504, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 504, + 523 + ], + "score": 1.0, + "content": "which is pre-trained on the ImageNet dataset (Russakovsky et al., 2015). We train our model follow-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 520, + 506, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 506, + 535 + ], + "score": 1.0, + "content": "ing the default hyper-parameters (e.g., an initial learning rate of 0.007 with a polynomial learning", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 532, + 504, + 545 + ], + "spans": [ + { + "bbox": [ + 104, + 532, + 244, + 545 + ], + "score": 1.0, + "content": "rate decay schedule, a crop size of", + "type": "text" + }, + { + "bbox": [ + 244, + 533, + 287, + 543 + ], + "score": 0.9, + "content": "5 1 3 \\times 5 1 3", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 532, + 504, + 545 + ], + "score": 1.0, + "content": ", and an encoder output stride of 16), using 16 GPUs 4.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 542, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 505, + 556 + ], + "score": 1.0, + "content": "We use a batch size of 4 for each GPU for pixel-level labeled data, and 4 for unlabeled/image-level", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 555, + 505, + 566 + ], + "spans": [ + { + "bbox": [ + 106, + 555, + 505, + 566 + ], + "score": 1.0, + "content": "labeled data. For VOC12, we train the model for 30,000 iterations. For COCO, we train the model", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 564, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 227, + 578 + ], + "score": 1.0, + "content": "for 200,000 iterations. We set", + "type": "text" + }, + { + "bbox": [ + 227, + 566, + 261, + 577 + ], + "score": 0.91, + "content": "\\gamma = 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 564, + 279, + 578 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 279, + 566, + 314, + 576 + ], + "score": 0.9, + "content": "T = 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 564, + 505, + 578 + ], + "score": 1.0, + "content": "unless specified. We do not apply any test time", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 577, + 169, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 169, + 588 + ], + "score": 1.0, + "content": "augmentations.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25 + }, + { + "type": "title", + "bbox": [ + 107, + 606, + 325, + 618 + ], + "lines": [ + { + "bbox": [ + 106, + 606, + 325, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 325, + 619 + ], + "score": 1.0, + "content": "C LOW-DATA SAMPLING IN PASCAL VOC 2012", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 628, + 505, + 694 + ], + "lines": [ + { + "bbox": [ + 105, + 628, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 505, + 641 + ], + "score": 1.0, + "content": "Unlike random sampling in image classification, it is difficult to sample uniformly in a low-data", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 640, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 506, + 653 + ], + "score": 1.0, + "content": "case for semantic segmentation due to the imbalance of rare classes. To avoid the missing classes at", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 651, + 505, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 505, + 664 + ], + "score": 1.0, + "content": "extremely low data regimes, we repeat the random sampling process for 1/16 three times (while en-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 661, + 505, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 505, + 675 + ], + "score": 1.0, + "content": "suring each class has a certain amount) and report the results. We use Split 1 in the main manuscript.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 673, + 505, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 673, + 505, + 685 + ], + "score": 1.0, + "content": "All splits will be released to encourage reproducibility. The results of all the three splits are shown", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 684, + 162, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 684, + 162, + 695 + ], + "score": 1.0, + "content": "as in Table 8.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33.5 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 116, + 711, + 498, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 708, + 475, + 722 + ], + "spans": [ + { + "bbox": [ + 118, + 708, + 475, + 722 + ], + "score": 1.0, + "content": "3https://github.com/tensorflow/models/tree/master/research/deeplab", + "type": "text" + } + ] + }, + { + "bbox": [ + 117, + 718, + 498, + 734 + ], + "spans": [ + { + "bbox": [ + 117, + 718, + 498, + 734 + ], + "score": 1.0, + "content": "4We do not adopt synchronous batch normalization, which is known can improve performance generally.", + "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": [ + 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" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 161, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 163, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 163, + 96 + ], + "score": 1.0, + "content": "APPENDIX", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "title", + "bbox": [ + 109, + 109, + 256, + 120 + ], + "lines": [ + { + "bbox": [ + 106, + 108, + 257, + 122 + ], + "spans": [ + { + "bbox": [ + 106, + 108, + 257, + 122 + ], + "score": 1.0, + "content": "A SELF-ATTENTION GRAD-CAM", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 132, + 505, + 285 + ], + "lines": [ + { + "bbox": [ + 106, + 131, + 505, + 144 + ], + "spans": [ + { + "bbox": [ + 106, + 131, + 505, + 144 + ], + "score": 1.0, + "content": "We elaborate the detailed pipeline of generating Self-attention Grad-CAM (SGC) maps (equation 3)", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "score": 1.0, + "content": "in Figure 6. To construct the hypercolumn feature, we extract the feature maps from the last two con-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 153, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 505, + 167 + ], + "score": 1.0, + "content": "volutional stages of the backbone network and concatenate them together. We then project the hy-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 165, + 504, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 504, + 177 + ], + "score": 1.0, + "content": "percolumn feature to two separate low-dimension embedding spaces to construct “key” and “query”,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 176, + 505, + 187 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 149, + 187 + ], + "score": 1.0, + "content": "using two", + "type": "text" + }, + { + "bbox": [ + 149, + 176, + 173, + 186 + ], + "score": 0.9, + "content": "1 \\times 1", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 176, + 505, + 187 + ], + "score": 1.0, + "content": "convolutional layers. An attention matrix can then be computed via matrix multi-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 187, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 505, + 199 + ], + "score": 1.0, + "content": "plication of “key” and “query”. To construct “value”, we compute Grad-CAM for each foreground", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 197, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 197, + 340, + 210 + ], + "score": 1.0, + "content": "class and then concatenate them together. This results in a", + "type": "text" + }, + { + "bbox": [ + 340, + 198, + 416, + 209 + ], + "score": 0.91, + "content": "H \\times W \\times ( C - 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 197, + 505, + 210 + ], + "score": 1.0, + "content": "score map, where the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 209, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 505, + 221 + ], + "score": 1.0, + "content": "maximum score of each category is normalized to one separately. We then use image-level labels", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 218, + 506, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 218, + 506, + 233 + ], + "score": 1.0, + "content": "(either from classifier prediction or ground truth annotation) to set the score maps of non-existing", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 230, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 505, + 243 + ], + "score": 1.0, + "content": "classes to be zero. For each pixel localization, we use one to subtract the maximum score to con-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 242, + 506, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 242, + 506, + 253 + ], + "score": 1.0, + "content": "struct the background score map, which is then concatenated with the foreground score maps to", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 252, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 162, + 266 + ], + "score": 1.0, + "content": "form “value”", + "type": "text" + }, + { + "bbox": [ + 162, + 253, + 219, + 263 + ], + "score": 0.89, + "content": "( H \\times W \\times C )", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 252, + 505, + 266 + ], + "score": 1.0, + "content": ". The attention score matrix can then be used to reweight and propagate", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 262, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 506, + 277 + ], + "score": 1.0, + "content": "the scores in “value”. The propagated score is added back to the “value” score map, and the pass", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 273, + 419, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 147, + 288 + ], + "score": 1.0, + "content": "through a", + "type": "text" + }, + { + "bbox": [ + 147, + 275, + 171, + 285 + ], + "score": 0.89, + "content": "1 \\times 1", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 273, + 419, + 288 + ], + "score": 1.0, + "content": "convolution (w/ batch normalization) to output the SGC map.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 131, + 506, + 288 + ] + }, + { + "type": "image", + "bbox": [ + 109, + 301, + 505, + 415 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 301, + 505, + 415 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 301, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 109, + 301, + 505, + 415 + ], + "score": 0.964, + "type": "image", + "image_path": "e601a68b369dd2bea5df204593cc86e5c58bb436da07925d9f96859b296a94ec.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 109, + 301, + 505, + 339.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 109, + 339.0, + 505, + 377.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 109, + 377.0, + 505, + 415.0 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 185, + 424, + 423, + 437 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 185, + 424, + 424, + 439 + ], + "spans": [ + { + "bbox": [ + 185, + 424, + 424, + 439 + ], + "score": 1.0, + "content": "Figure 6: Diagram of Self-attention Grad-CAM (SGC) .", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + } + ], + "index": 18.0 + }, + { + "type": "title", + "bbox": [ + 108, + 466, + 242, + 477 + ], + "lines": [ + { + "bbox": [ + 105, + 465, + 243, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 243, + 479 + ], + "score": 1.0, + "content": "B IMPLEMENTATION DETAILS", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 488, + 505, + 588 + ], + "lines": [ + { + "bbox": [ + 105, + 488, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 505, + 501 + ], + "score": 1.0, + "content": "We implement our method on top of the publicly available official DeepLab codebase.3 Unless spec-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 498, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 226, + 512 + ], + "score": 1.0, + "content": "ified, we adopt the DeepLabv", + "type": "text" + }, + { + "bbox": [ + 226, + 501, + 239, + 510 + ], + "score": 0.76, + "content": "^ { 3 + }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 498, + 505, + 512 + ], + "score": 1.0, + "content": "model with Xception-65 (Chollet, 2017) as the feature backbone,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 511, + 504, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 504, + 523 + ], + "score": 1.0, + "content": "which is pre-trained on the ImageNet dataset (Russakovsky et al., 2015). We train our model follow-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 520, + 506, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 506, + 535 + ], + "score": 1.0, + "content": "ing the default hyper-parameters (e.g., an initial learning rate of 0.007 with a polynomial learning", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 532, + 504, + 545 + ], + "spans": [ + { + "bbox": [ + 104, + 532, + 244, + 545 + ], + "score": 1.0, + "content": "rate decay schedule, a crop size of", + "type": "text" + }, + { + "bbox": [ + 244, + 533, + 287, + 543 + ], + "score": 0.9, + "content": "5 1 3 \\times 5 1 3", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 532, + 504, + 545 + ], + "score": 1.0, + "content": ", and an encoder output stride of 16), using 16 GPUs 4.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 542, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 505, + 556 + ], + "score": 1.0, + "content": "We use a batch size of 4 for each GPU for pixel-level labeled data, and 4 for unlabeled/image-level", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 555, + 505, + 566 + ], + "spans": [ + { + "bbox": [ + 106, + 555, + 505, + 566 + ], + "score": 1.0, + "content": "labeled data. For VOC12, we train the model for 30,000 iterations. For COCO, we train the model", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 564, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 227, + 578 + ], + "score": 1.0, + "content": "for 200,000 iterations. We set", + "type": "text" + }, + { + "bbox": [ + 227, + 566, + 261, + 577 + ], + "score": 0.91, + "content": "\\gamma = 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 564, + 279, + 578 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 279, + 566, + 314, + 576 + ], + "score": 0.9, + "content": "T = 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 564, + 505, + 578 + ], + "score": 1.0, + "content": "unless specified. We do not apply any test time", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 577, + 169, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 169, + 588 + ], + "score": 1.0, + "content": "augmentations.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25, + "bbox_fs": [ + 104, + 488, + 506, + 588 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 606, + 325, + 618 + ], + "lines": [ + { + "bbox": [ + 106, + 606, + 325, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 325, + 619 + ], + "score": 1.0, + "content": "C LOW-DATA SAMPLING IN PASCAL VOC 2012", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 628, + 505, + 694 + ], + "lines": [ + { + "bbox": [ + 105, + 628, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 505, + 641 + ], + "score": 1.0, + "content": "Unlike random sampling in image classification, it is difficult to sample uniformly in a low-data", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 640, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 506, + 653 + ], + "score": 1.0, + "content": "case for semantic segmentation due to the imbalance of rare classes. To avoid the missing classes at", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 651, + 505, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 505, + 664 + ], + "score": 1.0, + "content": "extremely low data regimes, we repeat the random sampling process for 1/16 three times (while en-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 661, + 505, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 505, + 675 + ], + "score": 1.0, + "content": "suring each class has a certain amount) and report the results. We use Split 1 in the main manuscript.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 673, + 505, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 673, + 505, + 685 + ], + "score": 1.0, + "content": "All splits will be released to encourage reproducibility. The results of all the three splits are shown", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 684, + 162, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 684, + 162, + 695 + ], + "score": 1.0, + "content": "as in Table 8.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 628, + 506, + 695 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 146, + 88, + 462, + 235 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 146, + 88, + 462, + 235 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 146, + 88, + 462, + 235 + ], + "spans": [ + { + "bbox": [ + 146, + 88, + 462, + 235 + ], + "score": 0.961, + "type": "image", + "image_path": "43b7ca0d025624a2b1b4a19d13c29bcfbb2a797f53df2327a7d1cf85d90a40e5.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 146, + 88, + 462, + 137.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 146, + 137.0, + 462, + 186.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 146, + 186.0, + 462, + 235.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 246, + 460, + 270 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 245, + 460, + 260 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 460, + 260 + ], + "score": 1.0, + "content": "Figure 7: Training. For each network component, we show the loss supervision and the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 258, + 188, + 270 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 188, + 270 + ], + "score": 1.0, + "content": "corresponding data.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "table", + "bbox": [ + 149, + 296, + 462, + 353 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 212, + 282, + 395, + 294 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 210, + 280, + 397, + 296 + ], + "spans": [ + { + "bbox": [ + 210, + 280, + 397, + 296 + ], + "score": 1.0, + "content": "Table 8: Full results of 1/16 split in VOC12.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "table_body", + "bbox": [ + 149, + 296, + 462, + 353 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 149, + 296, + 462, + 353 + ], + "spans": [ + { + "bbox": [ + 149, + 296, + 462, + 353 + ], + "score": 0.977, + "html": "
MethodUsing image-level labelsSplit 1Split 2Split 3
Supervised56.0356.8755.92
PseudoSeg (Ours)167.0664.1266.09
PseudoSeg (Ours)71.2268.1169.72
", + "type": "table", + "image_path": "e9b82779e99eaed63ad8c809cc6d6dc842d8807f08589ccf327db27ce8cbd91e.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 149, + 296, + 462, + 315.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 149, + 315.0, + 462, + 334.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 149, + 334.0, + 462, + 353.0 + ], + "spans": [], + "index": 8 + } + ] + } + ], + "index": 6.0 + }, + { + "type": "title", + "bbox": [ + 108, + 374, + 291, + 386 + ], + "lines": [ + { + "bbox": [ + 105, + 374, + 292, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 292, + 387 + ], + "score": 1.0, + "content": "D HIGH-DATA EXPERIMENTAL SETTINGS", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 108, + 396, + 505, + 429 + ], + "lines": [ + { + "bbox": [ + 105, + 395, + 506, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 506, + 408 + ], + "score": 1.0, + "content": "Here we provide more details about the experiments in Section 4.5. Since we have a lot more", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 407, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 506, + 419 + ], + "score": 1.0, + "content": "unlabeled/image-level labeled data, we adopt a longer training schedule (90,000 iterations) 5. We", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 418, + 468, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 379, + 430 + ], + "score": 1.0, + "content": "also adopt a slightly different fusion strategy in this setting by using", + "type": "text" + }, + { + "bbox": [ + 379, + 418, + 414, + 429 + ], + "score": 0.9, + "content": "T = 0 . 7", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 418, + 432, + 430 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 432, + 418, + 465, + 430 + ], + "score": 0.91, + "content": "\\gamma = 0 . 3", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 418, + 468, + 430 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "title", + "bbox": [ + 107, + 446, + 360, + 456 + ], + "lines": [ + { + "bbox": [ + 105, + 444, + 361, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 361, + 457 + ], + "score": 1.0, + "content": "E COMPARISON WITH WEAKLY-SUPERVISED APPROACHES", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 465, + 505, + 565 + ], + "lines": [ + { + "bbox": [ + 106, + 466, + 504, + 478 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 504, + 478 + ], + "score": 1.0, + "content": "In Table 9, we benchmark recent weakly supervised semantic segmentation performance on PAS-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 476, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 505, + 490 + ], + "score": 1.0, + "content": "CAL VOC 2012 val set. Instead of enforcing the consistency between different augmented images", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 487, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 104, + 487, + 505, + 502 + ], + "score": 1.0, + "content": "as we do, these approaches tackle the semantic segmentation task from a different perspective, by", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 498, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 505, + 513 + ], + "score": 1.0, + "content": "exploiting the weaker annotations (image-level labels). As we can see, by exploiting the image-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 509, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 506, + 523 + ], + "score": 1.0, + "content": "level labels with careful designs, weakly-supervised semantic segmentation methods could achieve", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 521, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 505, + 534 + ], + "score": 1.0, + "content": "reasonably well performance. We believe that both perspectives are feasible and promising for", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 532, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 506, + 545 + ], + "score": 1.0, + "content": "low-data regime semantic segmentation tasks, and complementary to each other. Therefore, these", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 542, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 505, + 555 + ], + "score": 1.0, + "content": "designs could be potentially integrated into our framework to generate better pseudo labels, which", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 554, + 235, + 566 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 235, + 566 + ], + "score": 1.0, + "content": "leads to improved performance.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 18 + }, + { + "type": "table", + "bbox": [ + 163, + 601, + 447, + 697 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 105, + 577, + 491, + 600 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 577, + 493, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 493, + 590 + ], + "score": 1.0, + "content": "Table 9: Benchmarking state-of-the-art weakly supervised semantic segmentation methods.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 587, + 480, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 480, + 602 + ], + "score": 1.0, + "content": "All the methods use image-level labels from VOC12 training (1.4k) and augmented (9k) sets.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "table_body", + "bbox": [ + 163, + 601, + 447, + 697 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 163, + 601, + 447, + 697 + ], + "spans": [ + { + "bbox": [ + 163, + 601, + 447, + 697 + ], + "score": 0.979, + "html": "
MethodPixel-level labeled datamIoU (%)
FickleNet (Lee et al., 2019)64.9
IRNet (Ahn et al., 2019)63.5
OAA+ (Jiang et al., 2019)65.2
SEAM (Wang et al., 2020)64.5
MCIS (Sun et al., 2020)66.2
PseudoSeg (Ours)1/16 (92)71.22
", + "type": "table", + "image_path": "4d0847f24656dd0475d73e7048e0a6968e21e34dda181eb6e7f0646acb151e5a.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 163, + 601, + 447, + 633.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 163, + 633.0, + 447, + 665.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 163, + 665.0, + 447, + 697.0 + ], + "spans": [], + "index": 27 + } + ] + } + ], + "index": 24.75 + } + ], + "page_idx": 13, + "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, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "14", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 117, + 721, + 404, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 719, + 405, + 734 + ], + "spans": [ + { + "bbox": [ + 118, + 719, + 405, + 734 + ], + "score": 1.0, + "content": "5Note that a longer training schedule does not improve the supervised baseline.", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 146, + 88, + 462, + 235 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 146, + 88, + 462, + 235 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 146, + 88, + 462, + 235 + ], + "spans": [ + { + "bbox": [ + 146, + 88, + 462, + 235 + ], + "score": 0.961, + "type": "image", + "image_path": "43b7ca0d025624a2b1b4a19d13c29bcfbb2a797f53df2327a7d1cf85d90a40e5.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 146, + 88, + 462, + 137.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 146, + 137.0, + 462, + 186.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 146, + 186.0, + 462, + 235.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 246, + 460, + 270 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 245, + 460, + 260 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 460, + 260 + ], + "score": 1.0, + "content": "Figure 7: Training. For each network component, we show the loss supervision and the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 258, + 188, + 270 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 188, + 270 + ], + "score": 1.0, + "content": "corresponding data.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "table", + "bbox": [ + 149, + 296, + 462, + 353 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 212, + 282, + 395, + 294 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 210, + 280, + 397, + 296 + ], + "spans": [ + { + "bbox": [ + 210, + 280, + 397, + 296 + ], + "score": 1.0, + "content": "Table 8: Full results of 1/16 split in VOC12.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "table_body", + "bbox": [ + 149, + 296, + 462, + 353 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 149, + 296, + 462, + 353 + ], + "spans": [ + { + "bbox": [ + 149, + 296, + 462, + 353 + ], + "score": 0.977, + "html": "
MethodUsing image-level labelsSplit 1Split 2Split 3
Supervised56.0356.8755.92
PseudoSeg (Ours)167.0664.1266.09
PseudoSeg (Ours)71.2268.1169.72
", + "type": "table", + "image_path": "e9b82779e99eaed63ad8c809cc6d6dc842d8807f08589ccf327db27ce8cbd91e.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 149, + 296, + 462, + 315.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 149, + 315.0, + 462, + 334.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 149, + 334.0, + 462, + 353.0 + ], + "spans": [], + "index": 8 + } + ] + } + ], + "index": 6.0 + }, + { + "type": "title", + "bbox": [ + 108, + 374, + 291, + 386 + ], + "lines": [ + { + "bbox": [ + 105, + 374, + 292, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 292, + 387 + ], + "score": 1.0, + "content": "D HIGH-DATA EXPERIMENTAL SETTINGS", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 108, + 396, + 505, + 429 + ], + "lines": [ + { + "bbox": [ + 105, + 395, + 506, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 506, + 408 + ], + "score": 1.0, + "content": "Here we provide more details about the experiments in Section 4.5. Since we have a lot more", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 407, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 506, + 419 + ], + "score": 1.0, + "content": "unlabeled/image-level labeled data, we adopt a longer training schedule (90,000 iterations) 5. We", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 418, + 468, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 379, + 430 + ], + "score": 1.0, + "content": "also adopt a slightly different fusion strategy in this setting by using", + "type": "text" + }, + { + "bbox": [ + 379, + 418, + 414, + 429 + ], + "score": 0.9, + "content": "T = 0 . 7", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 418, + 432, + 430 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 432, + 418, + 465, + 430 + ], + "score": 0.91, + "content": "\\gamma = 0 . 3", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 418, + 468, + 430 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 395, + 506, + 430 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 446, + 360, + 456 + ], + "lines": [ + { + "bbox": [ + 105, + 444, + 361, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 361, + 457 + ], + "score": 1.0, + "content": "E COMPARISON WITH WEAKLY-SUPERVISED APPROACHES", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 465, + 505, + 565 + ], + "lines": [ + { + "bbox": [ + 106, + 466, + 504, + 478 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 504, + 478 + ], + "score": 1.0, + "content": "In Table 9, we benchmark recent weakly supervised semantic segmentation performance on PAS-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 476, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 505, + 490 + ], + "score": 1.0, + "content": "CAL VOC 2012 val set. Instead of enforcing the consistency between different augmented images", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 487, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 104, + 487, + 505, + 502 + ], + "score": 1.0, + "content": "as we do, these approaches tackle the semantic segmentation task from a different perspective, by", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 498, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 505, + 513 + ], + "score": 1.0, + "content": "exploiting the weaker annotations (image-level labels). As we can see, by exploiting the image-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 509, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 506, + 523 + ], + "score": 1.0, + "content": "level labels with careful designs, weakly-supervised semantic segmentation methods could achieve", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 521, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 505, + 534 + ], + "score": 1.0, + "content": "reasonably well performance. We believe that both perspectives are feasible and promising for", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 532, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 506, + 545 + ], + "score": 1.0, + "content": "low-data regime semantic segmentation tasks, and complementary to each other. Therefore, these", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 542, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 505, + 555 + ], + "score": 1.0, + "content": "designs could be potentially integrated into our framework to generate better pseudo labels, which", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 554, + 235, + 566 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 235, + 566 + ], + "score": 1.0, + "content": "leads to improved performance.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 18, + "bbox_fs": [ + 104, + 466, + 506, + 566 + ] + }, + { + "type": "table", + "bbox": [ + 163, + 601, + 447, + 697 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 105, + 577, + 491, + 600 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 577, + 493, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 493, + 590 + ], + "score": 1.0, + "content": "Table 9: Benchmarking state-of-the-art weakly supervised semantic segmentation methods.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 587, + 480, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 480, + 602 + ], + "score": 1.0, + "content": "All the methods use image-level labels from VOC12 training (1.4k) and augmented (9k) sets.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "table_body", + "bbox": [ + 163, + 601, + 447, + 697 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 163, + 601, + 447, + 697 + ], + "spans": [ + { + "bbox": [ + 163, + 601, + 447, + 697 + ], + "score": 0.979, + "html": "
MethodPixel-level labeled datamIoU (%)
FickleNet (Lee et al., 2019)64.9
IRNet (Ahn et al., 2019)63.5
OAA+ (Jiang et al., 2019)65.2
SEAM (Wang et al., 2020)64.5
MCIS (Sun et al., 2020)66.2
PseudoSeg (Ours)1/16 (92)71.22
", + "type": "table", + "image_path": "4d0847f24656dd0475d73e7048e0a6968e21e34dda181eb6e7f0646acb151e5a.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 163, + 601, + 447, + 633.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 163, + 633.0, + 447, + 665.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 163, + 665.0, + 447, + 697.0 + ], + "spans": [], + "index": 27 + } + ] + } + ], + "index": 24.75 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 111, + 83, + 376, + 93 + ], + "lines": [ + { + "bbox": [ + 107, + 82, + 378, + 95 + ], + "spans": [ + { + "bbox": [ + 107, + 82, + 378, + 95 + ], + "score": 1.0, + "content": "F PERFORMANCE ANALYSIS FOR TEMPERATURE SHARPENING", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 102, + 505, + 147 + ], + "lines": [ + { + "bbox": [ + 106, + 102, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 106, + 102, + 505, + 115 + ], + "score": 1.0, + "content": "We conduct an additional performance analysis for temporal sharpening. We conduct experiments", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 113, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 113, + 505, + 126 + ], + "score": 1.0, + "content": "over T on the 1/16 split of VOC using pixel-level labeled data and image-level labeled data. As", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 124, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 104, + 124, + 231, + 138 + ], + "score": 1.0, + "content": "shown in Table 10, adopting a", + "type": "text" + }, + { + "bbox": [ + 231, + 125, + 260, + 135 + ], + "score": 0.9, + "content": "T < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 124, + 505, + 138 + ], + "score": 1.0, + "content": "for distribution sharpening generally leads to improved per-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 135, + 150, + 148 + ], + "spans": [ + { + "bbox": [ + 105, + 135, + 150, + 148 + ], + "score": 1.0, + "content": "formance.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "table", + "bbox": [ + 231, + 169, + 377, + 248 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 223, + 155, + 387, + 167 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 222, + 153, + 389, + 168 + ], + "spans": [ + { + "bbox": [ + 222, + 153, + 389, + 168 + ], + "score": 1.0, + "content": "Table 10: Performance analysis over T.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "table_body", + "bbox": [ + 231, + 169, + 377, + 248 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 231, + 169, + 377, + 248 + ], + "spans": [ + { + "bbox": [ + 231, + 169, + 377, + 248 + ], + "score": 0.968, + "html": "
Temperature (T)mIoU (%)
0.171.11
0.370.11
0.5 (default)71.22
0.772.37
1.0 (no sharpening)68.15
", + "type": "table", + "image_path": "b8c478af059105baa12a29931140f43e29439d24d1c3e40c9ea022b42ed5c14a.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 231, + 169, + 377, + 208.5 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 231, + 208.5, + 377, + 248.0 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 5.75 + }, + { + "type": "title", + "bbox": [ + 108, + 259, + 259, + 271 + ], + "lines": [ + { + "bbox": [ + 106, + 259, + 259, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 259, + 272 + ], + "score": 1.0, + "content": "G EXPERIMENTS ON CITYSCAPES", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 280, + 505, + 325 + ], + "lines": [ + { + "bbox": [ + 106, + 280, + 505, + 292 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 505, + 292 + ], + "score": 1.0, + "content": "In this section, we conduct additional experiments on the Cityscapes dataset (Cordts et al., 2016).", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 290, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 506, + 304 + ], + "score": 1.0, + "content": "The Cityscapes dataset contains 50 real-world driving sequences. Among these video sequences,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 302, + 506, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 506, + 315 + ], + "score": 1.0, + "content": "2,975 frames are selected as the training set, and 500 frames are selected as the validation set.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 312, + 405, + 326 + ], + "spans": [ + { + "bbox": [ + 104, + 312, + 405, + 326 + ], + "score": 1.0, + "content": "Following previous common practice, we evaluate on 19 semantic classes.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 106, + 328, + 505, + 405 + ], + "lines": [ + { + "bbox": [ + 106, + 328, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 106, + 328, + 505, + 340 + ], + "score": 1.0, + "content": "Comparison with state of the art. We compare our method with the current state-of-the-art", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 338, + 506, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 506, + 352 + ], + "score": 1.0, + "content": "method (French et al., 2020), in the setting of using pixel-level labeled and unlabeled data. We ran-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 349, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 506, + 363 + ], + "score": 1.0, + "content": "domly subsample 1/4, 1/8, and 1/30 of the training set to construct the pixel-level labeled data, using", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 361, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 505, + 372 + ], + "score": 1.0, + "content": "the first random seed provided by French et al. (2020). Both French et al. (2020) and our method", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 372, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 330, + 384 + ], + "score": 1.0, + "content": "use ResNet-101 as the feature backbone and DeepLabv", + "type": "text" + }, + { + "bbox": [ + 331, + 373, + 343, + 383 + ], + "score": 0.7, + "content": "^ { 3 + }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 372, + 505, + 384 + ], + "score": 1.0, + "content": "(Chen et al., 2018) as the segmentation", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 383, + 505, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 505, + 395 + ], + "score": 1.0, + "content": "model. As shown in Table 11, the proposed method achieves promising results on all the three label", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 394, + 135, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 135, + 406 + ], + "score": 1.0, + "content": "ratios.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16 + }, + { + "type": "table", + "bbox": [ + 161, + 427, + 446, + 473 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 123, + 413, + 486, + 425 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 123, + 413, + 488, + 426 + ], + "spans": [ + { + "bbox": [ + 123, + 413, + 488, + 426 + ], + "score": 1.0, + "content": "Table 11: Experiments on Cityscapes (w/ pixel-level labeled data and unlabeled data).", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "table_body", + "bbox": [ + 161, + 427, + 446, + 473 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 161, + 427, + 446, + 473 + ], + "spans": [ + { + "bbox": [ + 161, + 427, + 446, + 473 + ], + "score": 0.969, + "html": "
Method1/4 (744)1/8 (372)1/30 (100)
CutMix (French et al., 2020)68.3365.8255.71
PseudoSeg (Ours)72.3669.8160.96
", + "type": "table", + "image_path": "614e49f5ab8345f6334ef24d10e80e6811aa3249760ac77af38650c91eb5769a.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 161, + 427, + 446, + 442.3333333333333 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 161, + 442.3333333333333, + 446, + 457.66666666666663 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 161, + 457.66666666666663, + 446, + 472.99999999999994 + ], + "spans": [], + "index": 23 + } + ] + } + ], + "index": 21.0 + }, + { + "type": "text", + "bbox": [ + 106, + 483, + 505, + 540 + ], + "lines": [ + { + "bbox": [ + 106, + 484, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 505, + 496 + ], + "score": 1.0, + "content": "Per-class performance analysis. Next, we provide per-class performance break down analysis. We", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 494, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 494, + 505, + 507 + ], + "score": 1.0, + "content": "compare our method with the supervised baseline on the 1/30 split, using pixel-level labeled data and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 505, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 505, + 519 + ], + "score": 1.0, + "content": "unlabeled data. As shown in Table 12, the distribution of the labeled pixels is severely imbalanced.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 516, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 505, + 530 + ], + "score": 1.0, + "content": "Although our method does not in particular address the data imbalance issue, our method improves", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 527, + 441, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 441, + 541 + ], + "score": 1.0, + "content": "upon the supervised baseline on most of the classes (except for “Wall” and “Pole”).", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26 + }, + { + "type": "table", + "bbox": [ + 107, + 573, + 503, + 657 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 104, + 549, + 473, + 571 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 105, + 548, + 475, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 548, + 475, + 562 + ], + "score": 1.0, + "content": "Table 12: Per-class performance analysis on Cityscapes (w/ pixel-level labeled data and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 560, + 178, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 178, + 572 + ], + "score": 1.0, + "content": "unlabeled data).", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "table_body", + "bbox": [ + 107, + 573, + 503, + 657 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 107, + 573, + 503, + 657 + ], + "spans": [ + { + "bbox": [ + 107, + 573, + 503, + 657 + ], + "score": 0.98, + "html": "
Class Pixel ratio (%)Road 36.36Sidewalk 5.61Building 20.99Wall 0.53Fence 0.98Pole 1.19Traffic light 0.14Traffic sign 0.51Vegetation 19.61Terrain 1.29
Supervised PseudoSeg (Ours)96.0371.2687.5319.7529.1152.1950.1968.0989.9345.79
96.6475.0688.6319.6734.0951.7558.1969.9590.4350.48
ClassSkyPersonRiderCarTruckBusTrainMotorcycleBicycle
Pixel ratio (%)3.701.100.166.490.380.130.230.060.54
Supervised91.0174.1243.9189.917.6814.1917.7825.8669.88
PseudoSeg (Ours)92.9975.1646.0991.6020.3926.3022.1343.9671.30
", + "type": "table", + "image_path": "d5a02c39eb789c1b3d3f8abc44df37bc5e9229a425f57e56447e631dfb53e845.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 107, + 573, + 503, + 601.0 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 107, + 601.0, + 503, + 629.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 107, + 629.0, + 503, + 657.0 + ], + "spans": [], + "index": 33 + } + ] + } + ], + "index": 30.75 + }, + { + "type": "text", + "bbox": [ + 106, + 666, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "Discussion. Although the scene layouts are quite similar for all the full images, it is still feasible to", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 676, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 691 + ], + "score": 1.0, + "content": "generate different image-level labels through a more aggressive geometric data augmentation (e.g.,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 688, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 701 + ], + "score": 1.0, + "content": "scaling, cropping, translation, etc.). In practice, standard segmentation preprocessing steps only", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "crop a sub-region of the whole training images. It only contains partial images with a certain subset", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "of image labels, making the training batches have diverse image-level labels (converted from pixel-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "level labels, in the fully-labeled+unlabeled setting). Moreover, in the fully-labeled+weakly-labeled", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36.5 + } + ], + "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, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "15", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 111, + 83, + 376, + 93 + ], + "lines": [ + { + "bbox": [ + 107, + 82, + 378, + 95 + ], + "spans": [ + { + "bbox": [ + 107, + 82, + 378, + 95 + ], + "score": 1.0, + "content": "F PERFORMANCE ANALYSIS FOR TEMPERATURE SHARPENING", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 102, + 505, + 147 + ], + "lines": [ + { + "bbox": [ + 106, + 102, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 106, + 102, + 505, + 115 + ], + "score": 1.0, + "content": "We conduct an additional performance analysis for temporal sharpening. We conduct experiments", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 113, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 113, + 505, + 126 + ], + "score": 1.0, + "content": "over T on the 1/16 split of VOC using pixel-level labeled data and image-level labeled data. As", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 124, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 104, + 124, + 231, + 138 + ], + "score": 1.0, + "content": "shown in Table 10, adopting a", + "type": "text" + }, + { + "bbox": [ + 231, + 125, + 260, + 135 + ], + "score": 0.9, + "content": "T < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 124, + 505, + 138 + ], + "score": 1.0, + "content": "for distribution sharpening generally leads to improved per-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 135, + 150, + 148 + ], + "spans": [ + { + "bbox": [ + 105, + 135, + 150, + 148 + ], + "score": 1.0, + "content": "formance.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5, + "bbox_fs": [ + 104, + 102, + 505, + 148 + ] + }, + { + "type": "table", + "bbox": [ + 231, + 169, + 377, + 248 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 223, + 155, + 387, + 167 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 222, + 153, + 389, + 168 + ], + "spans": [ + { + "bbox": [ + 222, + 153, + 389, + 168 + ], + "score": 1.0, + "content": "Table 10: Performance analysis over T.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "table_body", + "bbox": [ + 231, + 169, + 377, + 248 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 231, + 169, + 377, + 248 + ], + "spans": [ + { + "bbox": [ + 231, + 169, + 377, + 248 + ], + "score": 0.968, + "html": "
Temperature (T)mIoU (%)
0.171.11
0.370.11
0.5 (default)71.22
0.772.37
1.0 (no sharpening)68.15
", + "type": "table", + "image_path": "b8c478af059105baa12a29931140f43e29439d24d1c3e40c9ea022b42ed5c14a.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 231, + 169, + 377, + 208.5 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 231, + 208.5, + 377, + 248.0 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 5.75 + }, + { + "type": "title", + "bbox": [ + 108, + 259, + 259, + 271 + ], + "lines": [ + { + "bbox": [ + 106, + 259, + 259, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 259, + 272 + ], + "score": 1.0, + "content": "G EXPERIMENTS ON CITYSCAPES", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 280, + 505, + 325 + ], + "lines": [ + { + "bbox": [ + 106, + 280, + 505, + 292 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 505, + 292 + ], + "score": 1.0, + "content": "In this section, we conduct additional experiments on the Cityscapes dataset (Cordts et al., 2016).", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 290, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 506, + 304 + ], + "score": 1.0, + "content": "The Cityscapes dataset contains 50 real-world driving sequences. Among these video sequences,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 302, + 506, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 506, + 315 + ], + "score": 1.0, + "content": "2,975 frames are selected as the training set, and 500 frames are selected as the validation set.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 312, + 405, + 326 + ], + "spans": [ + { + "bbox": [ + 104, + 312, + 405, + 326 + ], + "score": 1.0, + "content": "Following previous common practice, we evaluate on 19 semantic classes.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5, + "bbox_fs": [ + 104, + 280, + 506, + 326 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 328, + 505, + 405 + ], + "lines": [ + { + "bbox": [ + 106, + 328, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 106, + 328, + 505, + 340 + ], + "score": 1.0, + "content": "Comparison with state of the art. We compare our method with the current state-of-the-art", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 338, + 506, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 506, + 352 + ], + "score": 1.0, + "content": "method (French et al., 2020), in the setting of using pixel-level labeled and unlabeled data. We ran-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 349, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 506, + 363 + ], + "score": 1.0, + "content": "domly subsample 1/4, 1/8, and 1/30 of the training set to construct the pixel-level labeled data, using", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 361, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 505, + 372 + ], + "score": 1.0, + "content": "the first random seed provided by French et al. (2020). Both French et al. (2020) and our method", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 372, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 330, + 384 + ], + "score": 1.0, + "content": "use ResNet-101 as the feature backbone and DeepLabv", + "type": "text" + }, + { + "bbox": [ + 331, + 373, + 343, + 383 + ], + "score": 0.7, + "content": "^ { 3 + }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 372, + 505, + 384 + ], + "score": 1.0, + "content": "(Chen et al., 2018) as the segmentation", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 383, + 505, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 505, + 395 + ], + "score": 1.0, + "content": "model. As shown in Table 11, the proposed method achieves promising results on all the three label", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 394, + 135, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 135, + 406 + ], + "score": 1.0, + "content": "ratios.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 328, + 506, + 406 + ] + }, + { + "type": "table", + "bbox": [ + 161, + 427, + 446, + 473 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 123, + 413, + 486, + 425 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 123, + 413, + 488, + 426 + ], + "spans": [ + { + "bbox": [ + 123, + 413, + 488, + 426 + ], + "score": 1.0, + "content": "Table 11: Experiments on Cityscapes (w/ pixel-level labeled data and unlabeled data).", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "table_body", + "bbox": [ + 161, + 427, + 446, + 473 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 161, + 427, + 446, + 473 + ], + "spans": [ + { + "bbox": [ + 161, + 427, + 446, + 473 + ], + "score": 0.969, + "html": "
Method1/4 (744)1/8 (372)1/30 (100)
CutMix (French et al., 2020)68.3365.8255.71
PseudoSeg (Ours)72.3669.8160.96
", + "type": "table", + "image_path": "614e49f5ab8345f6334ef24d10e80e6811aa3249760ac77af38650c91eb5769a.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 161, + 427, + 446, + 442.3333333333333 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 161, + 442.3333333333333, + 446, + 457.66666666666663 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 161, + 457.66666666666663, + 446, + 472.99999999999994 + ], + "spans": [], + "index": 23 + } + ] + } + ], + "index": 21.0 + }, + { + "type": "text", + "bbox": [ + 106, + 483, + 505, + 540 + ], + "lines": [ + { + "bbox": [ + 106, + 484, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 505, + 496 + ], + "score": 1.0, + "content": "Per-class performance analysis. Next, we provide per-class performance break down analysis. We", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 494, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 494, + 505, + 507 + ], + "score": 1.0, + "content": "compare our method with the supervised baseline on the 1/30 split, using pixel-level labeled data and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 505, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 505, + 519 + ], + "score": 1.0, + "content": "unlabeled data. As shown in Table 12, the distribution of the labeled pixels is severely imbalanced.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 516, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 505, + 530 + ], + "score": 1.0, + "content": "Although our method does not in particular address the data imbalance issue, our method improves", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 527, + 441, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 441, + 541 + ], + "score": 1.0, + "content": "upon the supervised baseline on most of the classes (except for “Wall” and “Pole”).", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 484, + 505, + 541 + ] + }, + { + "type": "table", + "bbox": [ + 107, + 573, + 503, + 657 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 104, + 549, + 473, + 571 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 105, + 548, + 475, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 548, + 475, + 562 + ], + "score": 1.0, + "content": "Table 12: Per-class performance analysis on Cityscapes (w/ pixel-level labeled data and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 560, + 178, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 178, + 572 + ], + "score": 1.0, + "content": "unlabeled data).", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "table_body", + "bbox": [ + 107, + 573, + 503, + 657 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 107, + 573, + 503, + 657 + ], + "spans": [ + { + "bbox": [ + 107, + 573, + 503, + 657 + ], + "score": 0.98, + "html": "
Class Pixel ratio (%)Road 36.36Sidewalk 5.61Building 20.99Wall 0.53Fence 0.98Pole 1.19Traffic light 0.14Traffic sign 0.51Vegetation 19.61Terrain 1.29
Supervised PseudoSeg (Ours)96.0371.2687.5319.7529.1152.1950.1968.0989.9345.79
96.6475.0688.6319.6734.0951.7558.1969.9590.4350.48
ClassSkyPersonRiderCarTruckBusTrainMotorcycleBicycle
Pixel ratio (%)3.701.100.166.490.380.130.230.060.54
Supervised91.0174.1243.9189.917.6814.1917.7825.8669.88
PseudoSeg (Ours)92.9975.1646.0991.6020.3926.3022.1343.9671.30
", + "type": "table", + "image_path": "d5a02c39eb789c1b3d3f8abc44df37bc5e9229a425f57e56447e631dfb53e845.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 107, + 573, + 503, + 601.0 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 107, + 601.0, + 503, + 629.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 107, + 629.0, + 503, + 657.0 + ], + "spans": [], + "index": 33 + } + ] + } + ], + "index": 30.75 + }, + { + "type": "text", + "bbox": [ + 106, + 666, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "Discussion. Although the scene layouts are quite similar for all the full images, it is still feasible to", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 676, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 691 + ], + "score": 1.0, + "content": "generate different image-level labels through a more aggressive geometric data augmentation (e.g.,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 688, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 701 + ], + "score": 1.0, + "content": "scaling, cropping, translation, etc.). In practice, standard segmentation preprocessing steps only", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "crop a sub-region of the whole training images. It only contains partial images with a certain subset", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "of image labels, making the training batches have diverse image-level labels (converted from pixel-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "level labels, in the fully-labeled+unlabeled setting). Moreover, in the fully-labeled+weakly-labeled", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "setting, in practice, we can collect diverse Internet images and weakly label them, instead of weakly", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 241, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 241, + 108 + ], + "score": 1.0, + "content": "labeling images from Cityscapes.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 666, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "setting, in practice, we can collect diverse Internet images and weakly label them, instead of weakly", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 241, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 241, + 108 + ], + "score": 1.0, + "content": "labeling images from Cityscapes.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "title", + "bbox": [ + 108, + 118, + 223, + 130 + ], + "lines": [ + { + "bbox": [ + 105, + 118, + 225, + 131 + ], + "spans": [ + { + "bbox": [ + 105, + 118, + 225, + 131 + ], + "score": 1.0, + "content": "H QUALITATIVE RESULTS", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 138, + 505, + 183 + ], + "lines": [ + { + "bbox": [ + 105, + 137, + 505, + 153 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 153 + ], + "score": 1.0, + "content": "We visualize several model prediction results for PASCAL VOC 2012 (Figure 8) and COCO (Fig-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 150, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 106, + 150, + 505, + 162 + ], + "score": 1.0, + "content": "ure 9). As we can see, the supervised baseline struggles to segment some of the categories and small", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 161, + 505, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 161, + 505, + 173 + ], + "score": 1.0, + "content": "objects, when trained in the low-data regime. On the other hand, PseudoSeg utilizes unlabeled or", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 172, + 349, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 349, + 184 + ], + "score": 1.0, + "content": "weakly-labeled data to generate more satisfying predictions.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "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, + 752, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 505, + 108 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 118, + 223, + 130 + ], + "lines": [ + { + "bbox": [ + 105, + 118, + 225, + 131 + ], + "spans": [ + { + "bbox": [ + 105, + 118, + 225, + 131 + ], + "score": 1.0, + "content": "H QUALITATIVE RESULTS", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 138, + 505, + 183 + ], + "lines": [ + { + "bbox": [ + 105, + 137, + 505, + 153 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 153 + ], + "score": 1.0, + "content": "We visualize several model prediction results for PASCAL VOC 2012 (Figure 8) and COCO (Fig-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 150, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 106, + 150, + 505, + 162 + ], + "score": 1.0, + "content": "ure 9). As we can see, the supervised baseline struggles to segment some of the categories and small", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 161, + 505, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 161, + 505, + 173 + ], + "score": 1.0, + "content": "objects, when trained in the low-data regime. On the other hand, PseudoSeg utilizes unlabeled or", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 172, + 349, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 349, + 184 + ], + "score": 1.0, + "content": "weakly-labeled data to generate more satisfying predictions.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 137, + 505, + 184 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 75, + 500, + 718 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 75, + 500, + 718 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 75, + 500, + 718 + ], + "spans": [ + { + "bbox": [ + 107, + 75, + 500, + 718 + ], + "score": 0.962, + "type": "image", + "image_path": "135161c6e5516766b8441d8a505a601aedeabfbaf045d2d39d9f58370fe109db.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 75, + 500, + 289.33333333333337 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 289.33333333333337, + 500, + 503.66666666666674 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 503.66666666666674, + 500, + 718.0000000000001 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 103, + 727, + 492, + 750 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 727, + 490, + 740 + ], + "spans": [ + { + "bbox": [ + 105, + 727, + 490, + 740 + ], + "score": 1.0, + "content": "Figure 8: Qualitative results of PASCAL VOC 2012. Models are trained with 1/16 pixel-level", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 739, + 231, + 751 + ], + "spans": [ + { + "bbox": [ + 105, + 739, + 231, + 751 + ], + "score": 1.0, + "content": "labeled data in the training set.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + } + ], + "page_idx": 16, + "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, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "17", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 75, + 500, + 718 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 75, + 500, + 718 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 75, + 500, + 718 + ], + "spans": [ + { + "bbox": [ + 107, + 75, + 500, + 718 + ], + "score": 0.962, + "type": "image", + "image_path": "135161c6e5516766b8441d8a505a601aedeabfbaf045d2d39d9f58370fe109db.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 75, + 500, + 289.33333333333337 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 289.33333333333337, + 500, + 503.66666666666674 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 503.66666666666674, + 500, + 718.0000000000001 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 103, + 727, + 492, + 750 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 727, + 490, + 740 + ], + "spans": [ + { + "bbox": [ + 105, + 727, + 490, + 740 + ], + "score": 1.0, + "content": "Figure 8: Qualitative results of PASCAL VOC 2012. Models are trained with 1/16 pixel-level", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 739, + 231, + 751 + ], + "spans": [ + { + "bbox": [ + 105, + 739, + 231, + 751 + ], + "score": 1.0, + "content": "labeled data in the training set.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 80, + 500, + 703 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 80, + 500, + 703 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 80, + 500, + 703 + ], + "spans": [ + { + "bbox": [ + 107, + 80, + 500, + 703 + ], + "score": 0.96, + "type": "image", + "image_path": "bb1c575e94a6e95b23b16542a8e7720bafb4f0dec7ccae56a226c86d7f8ac3c3.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 80, + 500, + 287.66666666666663 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 287.66666666666663, + 500, + 495.33333333333326 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 495.33333333333326, + 500, + 702.9999999999999 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 705, + 499, + 739 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 705, + 501, + 718 + ], + "spans": [ + { + "bbox": [ + 105, + 705, + 501, + 718 + ], + "score": 1.0, + "content": "Figure 9: Qualitative results of COCO. Models are trained with 1/512 pixel-level labeled data in", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 716, + 491, + 729 + ], + "spans": [ + { + "bbox": [ + 105, + 716, + 491, + 729 + ], + "score": 1.0, + "content": "the training set. Note that white pixel in the ground truth indicates this pixel is not annotated for", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 727, + 153, + 740 + ], + "spans": [ + { + "bbox": [ + 105, + 727, + 153, + 740 + ], + "score": 1.0, + "content": "evaluation.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + } + ], + "page_idx": 17, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 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": [ + 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": "image", + "bbox": [ + 107, + 80, + 500, + 703 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 80, + 500, + 703 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 80, + 500, + 703 + ], + "spans": [ + { + "bbox": [ + 107, + 80, + 500, + 703 + ], + "score": 0.96, + "type": "image", + "image_path": "bb1c575e94a6e95b23b16542a8e7720bafb4f0dec7ccae56a226c86d7f8ac3c3.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 80, + 500, + 287.66666666666663 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 287.66666666666663, + 500, + 495.33333333333326 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 495.33333333333326, + 500, + 702.9999999999999 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 705, + 499, + 739 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 705, + 501, + 718 + ], + "spans": [ + { + "bbox": [ + 105, + 705, + 501, + 718 + ], + "score": 1.0, + "content": "Figure 9: Qualitative results of COCO. Models are trained with 1/512 pixel-level labeled data in", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 716, + 491, + 729 + ], + "spans": [ + { + "bbox": [ + 105, + 716, + 491, + 729 + ], + "score": 1.0, + "content": "the training set. Note that white pixel in the ground truth indicates this pixel is not annotated for", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 727, + 153, + 740 + ], + "spans": [ + { + "bbox": [ + 105, + 727, + 153, + 740 + ], + "score": 1.0, + "content": "evaluation.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/-TwO99rbVRu/-TwO99rbVRu_model.json b/parse/train/-TwO99rbVRu/-TwO99rbVRu_model.json new file mode 100644 index 0000000000000000000000000000000000000000..caae9df4ccdc158386687674517b7a5e2911782f --- /dev/null +++ b/parse/train/-TwO99rbVRu/-TwO99rbVRu_model.json @@ -0,0 +1,18854 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 625, + 1301, + 625, + 1301, + 1110, + 398, + 1110 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1504, + 1403, + 1504, + 1403, + 1717, + 298, + 1717 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1244, + 1402, + 1244, + 1402, + 1488, + 298, + 1488 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1733, + 1403, + 1733, + 1403, + 1978, + 298, + 1978 + ], + "score": 0.974 + }, + { + "category_id": 0, + "poly": [ + 301, + 218, + 1269, + 218, + 1269, + 323, + 301, + 323 + ], + "score": 0.962 + }, + { + "category_id": 1, + "poly": [ + 319, + 373, + 1062, + 373, + 1062, + 472, + 319, + 472 + ], + "score": 0.949 + }, + { + "category_id": 2, + "poly": [ + 332, + 2005, + 939, + 2005, + 939, + 2034, + 332, + 2034 + ], + "score": 0.919 + }, + { + "category_id": 0, + "poly": [ + 302, + 1178, + 573, + 1178, + 573, + 1212, + 302, + 1212 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 104, + 299, + 104 + ], + "score": 0.878 + }, + { + "category_id": 0, + "poly": [ + 773, + 552, + 926, + 552, + 926, + 585, + 773, + 585 + ], + "score": 0.855 + }, + { + "category_id": 2, + "poly": [ + 842, + 2089, + 857, + 2089, + 857, + 2112, + 842, + 2112 + ], + "score": 0.683 + }, + { + "category_id": 13, + "poly": [ + 419, + 375, + 496, + 375, + 496, + 406, + 419, + 406 + ], + "score": 0.8, + "latex": "\\mathbf { Z o u } ^ { 1 * }" + }, + { + "category_id": 13, + "poly": [ + 480, + 1367, + 512, + 1367, + 512, + 1394, + 480, + 1394 + ], + "score": 0.53, + "latex": "^ { 3 + }" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 218.0, + 1275.0, + 218.0, + 1275.0, + 272.0, + 294.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 270.0, + 864.0, + 270.0, + 864.0, + 328.0, + 295.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 2002.0, + 941.0, + 2002.0, + 941.0, + 2038.0, + 330.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1174.0, + 579.0, + 1174.0, + 579.0, + 1220.0, + 294.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 815.0, + 72.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 551.0, + 932.0, + 551.0, + 932.0, + 588.0, + 769.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 2088.0, + 860.0, + 2088.0, + 860.0, + 2118.0, + 841.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 626.0, + 1304.0, + 626.0, + 1304.0, + 659.0, + 395.0, + 659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 655.0, + 1305.0, + 655.0, + 1305.0, + 691.0, + 393.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 687.0, + 1304.0, + 687.0, + 1304.0, + 720.0, + 394.0, + 720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 717.0, + 1305.0, + 717.0, + 1305.0, + 750.0, + 394.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 746.0, + 1305.0, + 746.0, + 1305.0, + 781.0, + 394.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 777.0, + 1304.0, + 777.0, + 1304.0, + 813.0, + 394.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 807.0, + 1305.0, + 807.0, + 1305.0, + 844.0, + 393.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 835.0, + 1305.0, + 835.0, + 1305.0, + 874.0, + 393.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 867.0, + 1304.0, + 867.0, + 1304.0, + 903.0, + 393.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 898.0, + 1304.0, + 898.0, + 1304.0, + 933.0, + 393.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 929.0, + 1306.0, + 929.0, + 1306.0, + 965.0, + 393.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 959.0, + 1305.0, + 959.0, + 1305.0, + 995.0, + 394.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 989.0, + 1306.0, + 989.0, + 1306.0, + 1026.0, + 393.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1019.0, + 1307.0, + 1019.0, + 1307.0, + 1059.0, + 393.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1052.0, + 1305.0, + 1052.0, + 1305.0, + 1083.0, + 394.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1081.0, + 1007.0, + 1081.0, + 1007.0, + 1116.0, + 394.0, + 1116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1503.0, + 1404.0, + 1503.0, + 1404.0, + 1540.0, + 293.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1533.0, + 1405.0, + 1533.0, + 1405.0, + 1571.0, + 293.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1564.0, + 1404.0, + 1564.0, + 1404.0, + 1601.0, + 293.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1595.0, + 1407.0, + 1595.0, + 1407.0, + 1631.0, + 292.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1624.0, + 1405.0, + 1624.0, + 1405.0, + 1661.0, + 292.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1656.0, + 1407.0, + 1656.0, + 1407.0, + 1694.0, + 293.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1688.0, + 625.0, + 1688.0, + 625.0, + 1722.0, + 294.0, + 1722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1244.0, + 1404.0, + 1244.0, + 1404.0, + 1278.0, + 294.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1273.0, + 1406.0, + 1273.0, + 1406.0, + 1307.0, + 294.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1306.0, + 1403.0, + 1306.0, + 1403.0, + 1336.0, + 296.0, + 1336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1334.0, + 1404.0, + 1334.0, + 1404.0, + 1368.0, + 293.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1364.0, + 479.0, + 1364.0, + 479.0, + 1399.0, + 292.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 1364.0, + 1407.0, + 1364.0, + 1407.0, + 1399.0, + 513.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1397.0, + 1404.0, + 1397.0, + 1404.0, + 1429.0, + 293.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1427.0, + 1404.0, + 1427.0, + 1404.0, + 1460.0, + 294.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1458.0, + 633.0, + 1458.0, + 633.0, + 1491.0, + 294.0, + 1491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1730.0, + 1404.0, + 1730.0, + 1404.0, + 1768.0, + 293.0, + 1768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1764.0, + 1405.0, + 1764.0, + 1405.0, + 1798.0, + 294.0, + 1798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1792.0, + 1404.0, + 1792.0, + 1404.0, + 1827.0, + 293.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1824.0, + 1405.0, + 1824.0, + 1405.0, + 1858.0, + 296.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1853.0, + 1404.0, + 1853.0, + 1404.0, + 1890.0, + 296.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1884.0, + 1407.0, + 1884.0, + 1407.0, + 1921.0, + 293.0, + 1921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1918.0, + 1404.0, + 1918.0, + 1404.0, + 1948.0, + 296.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1947.0, + 1403.0, + 1947.0, + 1403.0, + 1980.0, + 294.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 374.0, + 418.0, + 374.0, + 418.0, + 411.0, + 321.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 497.0, + 374.0, + 1062.0, + 374.0, + 1062.0, + 411.0, + 497.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 404.0, + 861.0, + 404.0, + 861.0, + 442.0, + 317.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 438.0, + 886.0, + 438.0, + 886.0, + 474.0, + 320.0, + 474.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1006, + 1404, + 1006, + 1404, + 1373, + 297, + 1373 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1385, + 1404, + 1385, + 1404, + 1871, + 298, + 1871 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1403, + 229, + 1403, + 384, + 298, + 384 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 299, + 1882, + 1401, + 1882, + 1401, + 2034, + 299, + 2034 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 301, + 399, + 1403, + 399, + 1403, + 553, + 301, + 553 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 368, + 563, + 1404, + 563, + 1404, + 905, + 368, + 905 + ], + "score": 0.962 + }, + { + "category_id": 0, + "poly": [ + 300, + 947, + 587, + 947, + 587, + 984, + 300, + 984 + ], + "score": 0.919 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 812, + 76, + 812, + 104, + 300, + 104 + ], + "score": 0.898 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.711 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.111 + }, + { + "category_id": 15, + "poly": [ + 292.0, + 945.0, + 593.0, + 945.0, + 593.0, + 989.0, + 292.0, + 989.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": [ + 296.0, + 1006.0, + 1404.0, + 1006.0, + 1404.0, + 1040.0, + 296.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1037.0, + 1405.0, + 1037.0, + 1405.0, + 1072.0, + 295.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1065.0, + 1405.0, + 1065.0, + 1405.0, + 1103.0, + 294.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1097.0, + 1404.0, + 1097.0, + 1404.0, + 1131.0, + 296.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1127.0, + 1405.0, + 1127.0, + 1405.0, + 1162.0, + 295.0, + 1162.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1158.0, + 1405.0, + 1158.0, + 1405.0, + 1192.0, + 294.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1187.0, + 1404.0, + 1187.0, + 1404.0, + 1224.0, + 294.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1219.0, + 1405.0, + 1219.0, + 1405.0, + 1253.0, + 295.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1245.0, + 1404.0, + 1245.0, + 1404.0, + 1287.0, + 292.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1278.0, + 1402.0, + 1278.0, + 1402.0, + 1315.0, + 294.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1311.0, + 1404.0, + 1311.0, + 1404.0, + 1345.0, + 295.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1339.0, + 861.0, + 1339.0, + 861.0, + 1378.0, + 294.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1375.0, + 1405.0, + 1375.0, + 1405.0, + 1422.0, + 292.0, + 1422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1413.0, + 1405.0, + 1413.0, + 1405.0, + 1447.0, + 294.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1437.0, + 1406.0, + 1437.0, + 1406.0, + 1483.0, + 291.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1474.0, + 1404.0, + 1474.0, + 1404.0, + 1508.0, + 294.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1502.0, + 1404.0, + 1502.0, + 1404.0, + 1536.0, + 294.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1535.0, + 1404.0, + 1535.0, + 1404.0, + 1568.0, + 293.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1562.0, + 1408.0, + 1562.0, + 1408.0, + 1601.0, + 293.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1594.0, + 1404.0, + 1594.0, + 1404.0, + 1632.0, + 295.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1626.0, + 1404.0, + 1626.0, + 1404.0, + 1661.0, + 293.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1657.0, + 1405.0, + 1657.0, + 1405.0, + 1691.0, + 294.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1685.0, + 1405.0, + 1685.0, + 1405.0, + 1721.0, + 293.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1717.0, + 1405.0, + 1717.0, + 1405.0, + 1751.0, + 294.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1746.0, + 1405.0, + 1746.0, + 1405.0, + 1783.0, + 292.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1778.0, + 1404.0, + 1778.0, + 1404.0, + 1812.0, + 293.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1809.0, + 1404.0, + 1809.0, + 1404.0, + 1843.0, + 293.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1837.0, + 660.0, + 1837.0, + 660.0, + 1875.0, + 293.0, + 1875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 232.0, + 1404.0, + 232.0, + 1404.0, + 261.0, + 297.0, + 261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 261.0, + 1404.0, + 261.0, + 1404.0, + 295.0, + 296.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 291.0, + 1403.0, + 291.0, + 1403.0, + 328.0, + 294.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 318.0, + 1404.0, + 318.0, + 1404.0, + 357.0, + 293.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 352.0, + 493.0, + 352.0, + 493.0, + 386.0, + 296.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1881.0, + 1405.0, + 1881.0, + 1405.0, + 1913.0, + 298.0, + 1913.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": [ + 292.0, + 1938.0, + 1405.0, + 1938.0, + 1405.0, + 1978.0, + 292.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1972.0, + 1403.0, + 1972.0, + 1403.0, + 2005.0, + 294.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 1403.0, + 2003.0, + 1403.0, + 2035.0, + 294.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 399.0, + 1404.0, + 399.0, + 1404.0, + 436.0, + 295.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 427.0, + 1407.0, + 427.0, + 1407.0, + 468.0, + 294.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 456.0, + 1407.0, + 456.0, + 1407.0, + 499.0, + 294.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 489.0, + 1405.0, + 489.0, + 1405.0, + 526.0, + 296.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 521.0, + 1330.0, + 521.0, + 1330.0, + 558.0, + 295.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 562.0, + 1405.0, + 562.0, + 1405.0, + 597.0, + 368.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 592.0, + 1405.0, + 592.0, + 1405.0, + 628.0, + 393.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 623.0, + 1331.0, + 623.0, + 1331.0, + 658.0, + 393.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 657.0, + 1403.0, + 657.0, + 1403.0, + 693.0, + 388.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 688.0, + 1404.0, + 688.0, + 1404.0, + 720.0, + 394.0, + 720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 717.0, + 1404.0, + 717.0, + 1404.0, + 756.0, + 393.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 750.0, + 923.0, + 750.0, + 923.0, + 782.0, + 395.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 780.0, + 1404.0, + 780.0, + 1404.0, + 816.0, + 393.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 811.0, + 1407.0, + 811.0, + 1407.0, + 847.0, + 394.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 842.0, + 1405.0, + 842.0, + 1405.0, + 878.0, + 395.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 873.0, + 1303.0, + 873.0, + 1303.0, + 909.0, + 395.0, + 909.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 708, + 1404, + 708, + 1404, + 1017, + 297, + 1017 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1125, + 1404, + 1125, + 1404, + 1250, + 298, + 1250 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1361, + 1404, + 1361, + 1404, + 1514, + 298, + 1514 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1528, + 1403, + 1528, + 1403, + 1622, + 298, + 1622 + ], + "score": 0.975 + }, + { + "category_id": 4, + "poly": [ + 296, + 518, + 1390, + 518, + 1390, + 671, + 296, + 671 + ], + "score": 0.963 + }, + { + "category_id": 3, + "poly": [ + 301, + 231, + 1396, + 231, + 1396, + 505, + 301, + 505 + ], + "score": 0.962 + }, + { + "category_id": 8, + "poly": [ + 531, + 1261, + 1167, + 1261, + 1167, + 1353, + 531, + 1353 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 296, + 1734, + 1402, + 1734, + 1402, + 1798, + 296, + 1798 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 299, + 1887, + 1397, + 1887, + 1397, + 1953, + 299, + 1953 + ], + "score": 0.941 + }, + { + "category_id": 2, + "poly": [ + 294, + 1976, + 1406, + 1976, + 1406, + 2034, + 294, + 2034 + ], + "score": 0.933 + }, + { + "category_id": 8, + "poly": [ + 504, + 1632, + 1195, + 1632, + 1195, + 1725, + 504, + 1725 + ], + "score": 0.932 + }, + { + "category_id": 0, + "poly": [ + 298, + 1835, + 931, + 1835, + 931, + 1869, + 298, + 1869 + ], + "score": 0.92 + }, + { + "category_id": 0, + "poly": [ + 301, + 1062, + 701, + 1062, + 701, + 1098, + 301, + 1098 + ], + "score": 0.917 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1290, + 1400, + 1290, + 1400, + 1321, + 1366, + 1321 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 812, + 76, + 812, + 104, + 299, + 104 + ], + "score": 0.881 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1663, + 1400, + 1663, + 1400, + 1692, + 1366, + 1692 + ], + "score": 0.879 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.681 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.42 + }, + { + "category_id": 13, + "poly": [ + 1031, + 1526, + 1198, + 1526, + 1198, + 1562, + 1031, + 1562 + ], + "score": 0.94, + "latex": "\\widetilde { y } \\in \\mathbb { R } ^ { H \\times W \\times C }" + }, + { + "category_id": 14, + "poly": [ + 503, + 1627, + 1193, + 1627, + 1193, + 1728, + 503, + 1728 + ], + "score": 0.94, + "latex": "\\mathcal { L } _ { \\sf u } = \\frac { 1 } { N \\times | \\mathcal { D } _ { u } | } \\sum _ { x \\in \\mathcal { D } _ { u } } \\sum _ { i = 0 } ^ { N - 1 } \\mathrm { C r o s s E n t r o p y } \\left( \\widetilde { y } _ { i } , f _ { \\theta } ( \\beta \\circ \\omega ( x _ { i } ) ) \\right) ," + }, + { + "category_id": 14, + "poly": [ + 531, + 1255, + 1166, + 1255, + 1166, + 1356, + 531, + 1356 + ], + "score": 0.94, + "latex": "\\mathcal { L } _ { \\mathrm { s } } = \\frac { 1 } { N \\times | \\mathcal { D } _ { l } | } \\sum _ { x \\in \\mathcal { D } _ { l } } \\sum _ { i = 0 } ^ { N - 1 } \\mathrm { C r o s s E n t r o p y } \\left( y _ { i } , f _ { \\theta } ( \\omega ( x _ { i } ) ) \\right) ," + }, + { + "category_id": 13, + "poly": [ + 604, + 1421, + 794, + 1421, + 794, + 1454, + 604, + 1454 + ], + "score": 0.91, + "latex": "f _ { \\theta } ( \\omega ( x _ { i } ) ) \\in \\mathbb { R } ^ { C }" + }, + { + "category_id": 13, + "poly": [ + 881, + 1390, + 986, + 1390, + 986, + 1423, + 881, + 1423 + ], + "score": 0.91, + "latex": "y _ { i } \\in \\mathbb { R } ^ { C }" + }, + { + "category_id": 13, + "poly": [ + 327, + 1423, + 407, + 1423, + 407, + 1452, + 327, + 1452 + ], + "score": 0.9, + "latex": "H \\times W" + }, + { + "category_id": 13, + "poly": [ + 679, + 1455, + 729, + 1455, + 729, + 1486, + 679, + 1486 + ], + "score": 0.9, + "latex": "\\omega ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 652, + 1562, + 690, + 1562, + 690, + 1591, + 652, + 1591 + ], + "score": 0.9, + "latex": "\\mathcal { D } _ { u }" + }, + { + "category_id": 13, + "poly": [ + 697, + 1389, + 864, + 1389, + 864, + 1419, + 697, + 1419 + ], + "score": 0.89, + "latex": "\\boldsymbol { x } \\in \\mathbb { R } ^ { H \\times W \\times 3 }" + }, + { + "category_id": 13, + "poly": [ + 373, + 1735, + 421, + 1735, + 421, + 1768, + 373, + 1768 + ], + "score": 0.89, + "latex": "\\beta ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 1134, + 1160, + 1167, + 1160, + 1167, + 1189, + 1134, + 1189 + ], + "score": 0.89, + "latex": "\\mathcal { L } _ { \\mathrm { u } }" + }, + { + "category_id": 13, + "poly": [ + 349, + 1160, + 379, + 1160, + 379, + 1189, + 349, + 1189 + ], + "score": 0.88, + "latex": "\\mathcal { L } _ { \\mathrm { s } }" + }, + { + "category_id": 13, + "poly": [ + 768, + 1160, + 801, + 1160, + 801, + 1189, + 768, + 1189 + ], + "score": 0.88, + "latex": "\\mathcal { D } _ { l }" + }, + { + "category_id": 13, + "poly": [ + 789, + 1191, + 820, + 1191, + 820, + 1219, + 789, + 1219 + ], + "score": 0.88, + "latex": "\\mathcal { L } _ { \\mathrm { s } }" + }, + { + "category_id": 13, + "poly": [ + 1071, + 1363, + 1091, + 1363, + 1091, + 1394, + 1071, + 1394 + ], + "score": 0.85, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 1144, + 1363, + 1173, + 1363, + 1173, + 1389, + 1144, + 1389 + ], + "score": 0.84, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 1307, + 1424, + 1332, + 1424, + 1332, + 1451, + 1307, + 1451 + ], + "score": 0.83, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 352, + 1190, + 390, + 1190, + 390, + 1219, + 352, + 1219 + ], + "score": 0.83, + "latex": "\\mathcal { D } _ { u }" + }, + { + "category_id": 13, + "poly": [ + 1110, + 1890, + 1127, + 1890, + 1127, + 1921, + 1110, + 1921 + ], + "score": 0.83, + "latex": "\\widetilde { y }" + }, + { + "category_id": 13, + "poly": [ + 373, + 1363, + 391, + 1363, + 391, + 1389, + 373, + 1389 + ], + "score": 0.8, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 598, + 1566, + 617, + 1566, + 617, + 1588, + 598, + 1588 + ], + "score": 0.78, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 1388, + 1394, + 1401, + 1394, + 1401, + 1419, + 1388, + 1419 + ], + "score": 0.72, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 1206, + 1425, + 1218, + 1425, + 1218, + 1450, + 1206, + 1450 + ], + "score": 0.7, + "latex": "i" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 519.0, + 1384.0, + 519.0, + 1384.0, + 552.0, + 296.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 550.0, + 1388.0, + 550.0, + 1388.0, + 583.0, + 295.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 579.0, + 1379.0, + 579.0, + 1379.0, + 616.0, + 295.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 609.0, + 1350.0, + 609.0, + 1350.0, + 646.0, + 293.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 639.0, + 817.0, + 639.0, + 817.0, + 676.0, + 293.0, + 676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 232.0, + 856.0, + 232.0, + 856.0, + 255.0, + 659.0, + 255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.0, + 259.0, + 734.0, + 259.0, + 734.0, + 273.0, + 718.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 751.0, + 265.0, + 761.0, + 265.0, + 761.0, + 277.0, + 751.0, + 277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 284.0, + 422.0, + 284.0, + 422.0, + 321.0, + 309.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 287.0, + 674.0, + 287.0, + 674.0, + 312.0, + 593.0, + 312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 303.0, + 1059.0, + 303.0, + 1059.0, + 324.0, + 973.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 296.0, + 1271.0, + 296.0, + 1271.0, + 324.0, + 1151.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 494.0, + 342.0, + 578.0, + 342.0, + 578.0, + 367.0, + 494.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.0, + 341.0, + 729.0, + 341.0, + 729.0, + 356.0, + 714.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 995.0, + 329.0, + 1013.0, + 329.0, + 1013.0, + 343.0, + 995.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1029.0, + 338.0, + 1044.0, + 338.0, + 1044.0, + 355.0, + 1029.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1182.0, + 329.0, + 1200.0, + 329.0, + 1200.0, + 345.0, + 1182.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 334.0, + 1231.0, + 334.0, + 1231.0, + 350.0, + 1216.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 366.0, + 387.0, + 366.0, + 387.0, + 393.0, + 347.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 367.0, + 805.0, + 367.0, + 805.0, + 394.0, + 686.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 360.0, + 947.0, + 360.0, + 947.0, + 381.0, + 831.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1259.0, + 371.0, + 1274.0, + 371.0, + 1274.0, + 381.0, + 1259.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1350.0, + 377.0, + 1365.0, + 377.0, + 1365.0, + 393.0, + 1350.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 395.0, + 349.0, + 395.0, + 349.0, + 408.0, + 318.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 397.0, + 481.0, + 397.0, + 481.0, + 415.0, + 444.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 397.0, + 730.0, + 397.0, + 730.0, + 412.0, + 713.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 402.0, + 761.0, + 402.0, + 761.0, + 419.0, + 746.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 422.0, + 413.0, + 504.0, + 413.0, + 504.0, + 434.0, + 422.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 412.0, + 998.0, + 412.0, + 998.0, + 424.0, + 985.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 412.0, + 1186.0, + 412.0, + 1186.0, + 425.0, + 1175.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 438.0, + 642.0, + 438.0, + 642.0, + 450.0, + 632.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 452.0, + 404.0, + 452.0, + 404.0, + 467.0, + 387.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 473.0, + 724.0, + 473.0, + 724.0, + 489.0, + 709.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1262.0, + 477.0, + 1344.0, + 477.0, + 1344.0, + 498.0, + 1262.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 358.5, + 1055.0, + 358.5, + 1055.0, + 372.5, + 1028.0, + 372.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.25, + 358.5, + 1146.25, + 358.5, + 1146.25, + 381.5, + 1062.25, + 381.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1280.75, + 459.5, + 1324.75, + 459.5, + 1324.75, + 481.5, + 1280.75, + 481.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1974.0, + 1405.0, + 1974.0, + 1405.0, + 2009.0, + 332.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 736.0, + 2003.0, + 736.0, + 2033.0, + 294.0, + 2033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1833.0, + 933.0, + 1833.0, + 933.0, + 1871.0, + 293.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1059.0, + 705.0, + 1059.0, + 705.0, + 1102.0, + 292.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 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": [ + 295.0, + 708.0, + 1402.0, + 708.0, + 1402.0, + 744.0, + 295.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 739.0, + 1404.0, + 739.0, + 1404.0, + 774.0, + 295.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 769.0, + 1405.0, + 769.0, + 1405.0, + 805.0, + 295.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 799.0, + 1405.0, + 799.0, + 1405.0, + 836.0, + 291.0, + 836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 827.0, + 1406.0, + 827.0, + 1406.0, + 869.0, + 291.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 861.0, + 1405.0, + 861.0, + 1405.0, + 897.0, + 294.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 891.0, + 1406.0, + 891.0, + 1406.0, + 926.0, + 294.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 923.0, + 1404.0, + 923.0, + 1404.0, + 958.0, + 295.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 952.0, + 1405.0, + 952.0, + 1405.0, + 986.0, + 292.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 984.0, + 937.0, + 984.0, + 937.0, + 1016.0, + 296.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1128.0, + 1404.0, + 1128.0, + 1404.0, + 1161.0, + 294.0, + 1161.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1157.0, + 348.0, + 1157.0, + 348.0, + 1192.0, + 292.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 1157.0, + 767.0, + 1157.0, + 767.0, + 1192.0, + 380.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 1157.0, + 1133.0, + 1157.0, + 1133.0, + 1192.0, + 802.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1168.0, + 1157.0, + 1406.0, + 1157.0, + 1406.0, + 1192.0, + 1168.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1186.0, + 351.0, + 1186.0, + 351.0, + 1226.0, + 292.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 1186.0, + 788.0, + 1186.0, + 788.0, + 1226.0, + 391.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 821.0, + 1186.0, + 1406.0, + 1186.0, + 1406.0, + 1226.0, + 821.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1218.0, + 841.0, + 1218.0, + 841.0, + 1254.0, + 294.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1360.0, + 372.0, + 1360.0, + 372.0, + 1397.0, + 294.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1360.0, + 1070.0, + 1360.0, + 1070.0, + 1397.0, + 392.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 1360.0, + 1143.0, + 1360.0, + 1143.0, + 1397.0, + 1092.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1174.0, + 1360.0, + 1406.0, + 1360.0, + 1406.0, + 1397.0, + 1174.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1378.0, + 696.0, + 1378.0, + 696.0, + 1432.0, + 290.0, + 1432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 1378.0, + 880.0, + 1378.0, + 880.0, + 1432.0, + 865.0, + 1432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 987.0, + 1378.0, + 1387.0, + 1378.0, + 1387.0, + 1432.0, + 987.0, + 1432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1378.0, + 1410.0, + 1378.0, + 1410.0, + 1432.0, + 1402.0, + 1432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1418.0, + 326.0, + 1418.0, + 326.0, + 1457.0, + 291.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 1418.0, + 603.0, + 1418.0, + 603.0, + 1457.0, + 408.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1418.0, + 1205.0, + 1418.0, + 1205.0, + 1457.0, + 795.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1219.0, + 1418.0, + 1306.0, + 1418.0, + 1306.0, + 1457.0, + 1219.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1333.0, + 1418.0, + 1406.0, + 1418.0, + 1406.0, + 1457.0, + 1333.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1449.0, + 678.0, + 1449.0, + 678.0, + 1488.0, + 293.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 1449.0, + 1404.0, + 1449.0, + 1404.0, + 1488.0, + 730.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1480.0, + 601.0, + 1480.0, + 601.0, + 1515.0, + 293.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1517.0, + 1030.0, + 1517.0, + 1030.0, + 1573.0, + 288.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1199.0, + 1517.0, + 1408.0, + 1517.0, + 1408.0, + 1573.0, + 1199.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1560.0, + 597.0, + 1560.0, + 597.0, + 1594.0, + 296.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 1560.0, + 651.0, + 1560.0, + 651.0, + 1594.0, + 618.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 1560.0, + 1403.0, + 1560.0, + 1403.0, + 1594.0, + 691.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1591.0, + 815.0, + 1591.0, + 815.0, + 1625.0, + 297.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1731.0, + 372.0, + 1731.0, + 372.0, + 1767.0, + 295.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 422.0, + 1731.0, + 1404.0, + 1731.0, + 1404.0, + 1767.0, + 422.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1762.0, + 962.0, + 1762.0, + 962.0, + 1797.0, + 296.0, + 1797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1888.0, + 1109.0, + 1888.0, + 1109.0, + 1924.0, + 296.0, + 1924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 1888.0, + 1401.0, + 1888.0, + 1401.0, + 1924.0, + 1128.0, + 1924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1919.0, + 1402.0, + 1919.0, + 1402.0, + 1952.0, + 294.0, + 1952.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 453, + 1404, + 453, + 1404, + 700, + 297, + 700 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 708, + 1404, + 708, + 1404, + 955, + 297, + 955 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 228, + 1403, + 228, + 1403, + 445, + 297, + 445 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1382, + 1403, + 1382, + 1403, + 1572, + 297, + 1572 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 968, + 1402, + 968, + 1402, + 1124, + 298, + 1124 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1136, + 1404, + 1136, + 1404, + 1262, + 298, + 1262 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1578, + 1403, + 1578, + 1403, + 1734, + 298, + 1734 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 1899, + 1405, + 1899, + 1405, + 2015, + 297, + 2015 + ], + "score": 0.972 + }, + { + "category_id": 8, + "poly": [ + 551, + 1271, + 1146, + 1271, + 1146, + 1374, + 551, + 1374 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 297, + 1747, + 1403, + 1747, + 1403, + 1812, + 297, + 1812 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 312, + 1819, + 1337, + 1819, + 1337, + 1894, + 312, + 1894 + ], + "score": 0.93 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 104, + 300, + 104 + ], + "score": 0.899 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1307, + 1400, + 1307, + 1400, + 1337, + 1366, + 1337 + ], + "score": 0.884 + }, + { + "category_id": 9, + "poly": [ + 1367, + 1842, + 1400, + 1842, + 1400, + 1871, + 1367, + 1871 + ], + "score": 0.818 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2111, + 841, + 2111 + ], + "score": 0.773 + }, + { + "category_id": 14, + "poly": [ + 551, + 1267, + 1148, + 1267, + 1148, + 1376, + 551, + 1376 + ], + "score": 0.93, + "latex": "\\hat { m } _ { i } = \\left( m _ { i } + \\sum _ { j = 0 } ^ { L - 1 } \\frac { e ^ { K ( W _ { k } h _ { i } , W _ { v } h _ { j } ) } } { \\sum _ { k = 0 } ^ { L - 1 } e ^ { K ( W _ { k } h _ { i } , W _ { v } h _ { k } ) } } m _ { j } \\right) \\cdot W _ { c } ." + }, + { + "category_id": 13, + "poly": [ + 927, + 1960, + 1292, + 1960, + 1292, + 2017, + 927, + 2017 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\mathrm { N o r m } ( a , b ) = \\sqrt { \\sum _ { i } ^ { | a | } ( a _ { i } ^ { 2 } + b _ { i } ^ { 2 } ) } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1037, + 1748, + 1194, + 1748, + 1194, + 1781, + 1037, + 1781 + ], + "score": 0.93, + "latex": "\\hat { p } = f _ { \\theta } ( \\omega ( x ) )" + }, + { + "category_id": 13, + "poly": [ + 805, + 1229, + 911, + 1229, + 911, + 1260, + 805, + 1260 + ], + "score": 0.92, + "latex": "\\hat { m } _ { i } \\in \\mathbb { R } ^ { C }" + }, + { + "category_id": 13, + "poly": [ + 745, + 1780, + 803, + 1780, + 803, + 1813, + 745, + 1813 + ], + "score": 0.92, + "latex": "\\omega ( x )" + }, + { + "category_id": 14, + "poly": [ + 317, + 1818, + 1346, + 1818, + 1346, + 1895, + 317, + 1895 + ], + "score": 0.91, + "latex": "\\mathcal { F } ( \\hat { p } , \\hat { m } ) = \\mathrm { S h a r p e n } \\left( \\gamma \\operatorname { S o f t m a x } \\left( \\frac { \\hat { p } } { \\operatorname { N o r m } ( \\hat { p } , \\hat { m } ) } \\right) + ( 1 - \\gamma ) \\operatorname { S o f t m a x } \\left( \\frac { \\hat { m } } { \\operatorname { N o r m } ( \\hat { p } , \\hat { m } ) } \\right) , T \\right) ." + }, + { + "category_id": 13, + "poly": [ + 298, + 1229, + 390, + 1229, + 390, + 1258, + 298, + 1258 + ], + "score": 0.91, + "latex": "h \\in { \\bar { \\mathbb { R } } } ^ { H }" + }, + { + "category_id": 13, + "poly": [ + 710, + 1536, + 824, + 1536, + 824, + 1566, + 710, + 1566 + ], + "score": 0.91, + "latex": "\\mathbb { R } ^ { H \\times H \\times C }" + }, + { + "category_id": 13, + "poly": [ + 562, + 1200, + 829, + 1200, + 829, + 1233, + 562, + 1233 + ], + "score": 0.9, + "latex": "\\mathcal { K } ( \\cdot , \\cdot ) : \\mathbb { R } ^ { H } \\times \\mathbb { R } ^ { H } \\mathbb { R }" + }, + { + "category_id": 13, + "poly": [ + 487, + 1169, + 620, + 1169, + 620, + 1197, + 487, + 1197 + ], + "score": 0.9, + "latex": "m \\in \\mathbb { R } ^ { L \\times C }" + }, + { + "category_id": 13, + "poly": [ + 775, + 1145, + 798, + 1145, + 798, + 1166, + 775, + 1166 + ], + "score": 0.87, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 699, + 1385, + 1158, + 1385, + 1158, + 1420, + 699, + 1420 + ], + "score": 0.87, + "latex": "\\Theta = \\{ W _ { k } , W _ { v } \\in \\mathbb { R } ^ { H \\times H } , W _ { c } \\in \\mathbb { R } ^ { C \\times C } \\}" + }, + { + "category_id": 13, + "poly": [ + 526, + 1452, + 562, + 1452, + 562, + 1478, + 526, + 1478 + ], + "score": 0.87, + "latex": "m _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1037, + 1417, + 1080, + 1417, + 1080, + 1445, + 1037, + 1445 + ], + "score": 0.84, + "latex": "\\mathbb { R } ^ { H }" + }, + { + "category_id": 13, + "poly": [ + 1151, + 1782, + 1171, + 1782, + 1171, + 1812, + 1151, + 1812 + ], + "score": 0.83, + "latex": "\\widetilde { y }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1931, + 316, + 1931, + 316, + 1962, + 297, + 1962 + ], + "score": 0.83, + "latex": "\\hat { p }" + }, + { + "category_id": 13, + "poly": [ + 372, + 1931, + 401, + 1931, + 401, + 1957, + 372, + 1957 + ], + "score": 0.82, + "latex": "\\hat { m }" + }, + { + "category_id": 13, + "poly": [ + 818, + 1181, + 852, + 1181, + 852, + 1199, + 818, + 1199 + ], + "score": 0.78, + "latex": "m _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1374, + 1750, + 1401, + 1750, + 1401, + 1777, + 1374, + 1777 + ], + "score": 0.77, + "latex": "\\hat { m }" + }, + { + "category_id": 13, + "poly": [ + 1382, + 1174, + 1393, + 1174, + 1393, + 1196, + 1382, + 1196 + ], + "score": 0.74, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 498, + 1422, + 525, + 1422, + 525, + 1444, + 498, + 1444 + ], + "score": 0.73, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 406, + 1451, + 418, + 1451, + 418, + 1475, + 406, + 1475 + ], + "score": 0.57, + "latex": "i" + }, + { + "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": [ + 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, + 451.0, + 1405.0, + 451.0, + 1405.0, + 490.0, + 292.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 486.0, + 1405.0, + 486.0, + 1405.0, + 520.0, + 295.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 517.0, + 1402.0, + 517.0, + 1402.0, + 548.0, + 296.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 546.0, + 1404.0, + 546.0, + 1404.0, + 580.0, + 295.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 574.0, + 1405.0, + 574.0, + 1405.0, + 611.0, + 292.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 604.0, + 1405.0, + 604.0, + 1405.0, + 643.0, + 292.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 639.0, + 1402.0, + 639.0, + 1402.0, + 669.0, + 297.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 664.0, + 1029.0, + 664.0, + 1029.0, + 704.0, + 294.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 709.0, + 1402.0, + 709.0, + 1402.0, + 742.0, + 295.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 741.0, + 1404.0, + 741.0, + 1404.0, + 771.0, + 296.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 772.0, + 1402.0, + 772.0, + 1402.0, + 803.0, + 296.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 799.0, + 1405.0, + 799.0, + 1405.0, + 835.0, + 292.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 833.0, + 1404.0, + 833.0, + 1404.0, + 866.0, + 294.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 862.0, + 1404.0, + 862.0, + 1404.0, + 895.0, + 295.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 893.0, + 1406.0, + 893.0, + 1406.0, + 927.0, + 295.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 924.0, + 887.0, + 924.0, + 887.0, + 954.0, + 296.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 229.0, + 1401.0, + 229.0, + 1401.0, + 262.0, + 293.0, + 262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 261.0, + 1404.0, + 261.0, + 1404.0, + 296.0, + 295.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 291.0, + 1405.0, + 291.0, + 1405.0, + 325.0, + 295.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 323.0, + 1404.0, + 323.0, + 1404.0, + 354.0, + 296.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 351.0, + 1405.0, + 351.0, + 1405.0, + 386.0, + 295.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 382.0, + 1405.0, + 382.0, + 1405.0, + 417.0, + 295.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 415.0, + 766.0, + 415.0, + 766.0, + 445.0, + 296.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1375.0, + 698.0, + 1375.0, + 698.0, + 1427.0, + 290.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1159.0, + 1375.0, + 1409.0, + 1375.0, + 1409.0, + 1427.0, + 1159.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1410.0, + 497.0, + 1410.0, + 497.0, + 1454.0, + 292.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 526.0, + 1410.0, + 1036.0, + 1410.0, + 1036.0, + 1454.0, + 526.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1081.0, + 1410.0, + 1408.0, + 1410.0, + 1408.0, + 1454.0, + 1081.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1449.0, + 405.0, + 1449.0, + 405.0, + 1481.0, + 296.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 1449.0, + 525.0, + 1449.0, + 525.0, + 1481.0, + 419.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 1449.0, + 1405.0, + 1449.0, + 1405.0, + 1481.0, + 563.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1476.0, + 1405.0, + 1476.0, + 1405.0, + 1512.0, + 295.0, + 1512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1507.0, + 1403.0, + 1507.0, + 1403.0, + 1543.0, + 293.0, + 1543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1529.0, + 709.0, + 1529.0, + 709.0, + 1577.0, + 290.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.0, + 1529.0, + 1400.0, + 1529.0, + 1400.0, + 1577.0, + 825.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 967.0, + 1404.0, + 967.0, + 1404.0, + 1003.0, + 293.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 998.0, + 1404.0, + 998.0, + 1404.0, + 1035.0, + 294.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1029.0, + 1404.0, + 1029.0, + 1404.0, + 1066.0, + 294.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1059.0, + 1406.0, + 1059.0, + 1406.0, + 1097.0, + 294.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1090.0, + 1364.0, + 1090.0, + 1364.0, + 1127.0, + 294.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1138.0, + 774.0, + 1138.0, + 774.0, + 1171.0, + 296.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 799.0, + 1138.0, + 1404.0, + 1138.0, + 1404.0, + 1171.0, + 799.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1160.0, + 486.0, + 1160.0, + 486.0, + 1206.0, + 291.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 1160.0, + 817.0, + 1160.0, + 817.0, + 1206.0, + 621.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 853.0, + 1160.0, + 1381.0, + 1160.0, + 1381.0, + 1206.0, + 853.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1160.0, + 1409.0, + 1160.0, + 1409.0, + 1206.0, + 1394.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1195.0, + 561.0, + 1195.0, + 561.0, + 1234.0, + 293.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 1195.0, + 1405.0, + 1195.0, + 1405.0, + 1234.0, + 830.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1226.0, + 297.0, + 1226.0, + 297.0, + 1265.0, + 292.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 1226.0, + 804.0, + 1226.0, + 804.0, + 1265.0, + 391.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 912.0, + 1226.0, + 1233.0, + 1226.0, + 1233.0, + 1265.0, + 912.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1579.0, + 1403.0, + 1579.0, + 1403.0, + 1612.0, + 297.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1608.0, + 1405.0, + 1608.0, + 1405.0, + 1647.0, + 293.0, + 1647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1640.0, + 1405.0, + 1640.0, + 1405.0, + 1676.0, + 292.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1671.0, + 1405.0, + 1671.0, + 1405.0, + 1708.0, + 294.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1704.0, + 758.0, + 1704.0, + 758.0, + 1733.0, + 297.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1898.0, + 1403.0, + 1898.0, + 1403.0, + 1935.0, + 295.0, + 1935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1926.0, + 371.0, + 1926.0, + 371.0, + 1964.0, + 317.0, + 1964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 1926.0, + 1403.0, + 1926.0, + 1403.0, + 1964.0, + 402.0, + 1964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 1960.0, + 926.0, + 1960.0, + 926.0, + 2023.0, + 287.0, + 2023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 1960.0, + 1410.0, + 1960.0, + 1410.0, + 2023.0, + 1293.0, + 2023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 1984.0, + 1167.0, + 1984.0, + 1167.0, + 1997.0, + 1151.0, + 1997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1746.0, + 1036.0, + 1746.0, + 1036.0, + 1786.0, + 296.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 1746.0, + 1373.0, + 1746.0, + 1373.0, + 1786.0, + 1195.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1746.0, + 1405.0, + 1746.0, + 1405.0, + 1786.0, + 1402.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1778.0, + 744.0, + 1778.0, + 744.0, + 1818.0, + 293.0, + 1818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 1778.0, + 1150.0, + 1778.0, + 1150.0, + 1818.0, + 804.0, + 1818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 1778.0, + 1208.0, + 1778.0, + 1208.0, + 1818.0, + 1172.0, + 1818.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1668, + 1404, + 1668, + 1404, + 2034, + 298, + 2034 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 761, + 1404, + 761, + 1404, + 1007, + 298, + 1007 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 495, + 1404, + 495, + 1404, + 751, + 298, + 751 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1264, + 1403, + 1264, + 1403, + 1419, + 298, + 1419 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1096, + 1403, + 1096, + 1403, + 1249, + 299, + 1249 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1529, + 1403, + 1529, + 1403, + 1651, + 299, + 1651 + ], + "score": 0.973 + }, + { + "category_id": 3, + "poly": [ + 298, + 223, + 1390, + 223, + 1390, + 360, + 298, + 360 + ], + "score": 0.962 + }, + { + "category_id": 4, + "poly": [ + 299, + 366, + 1372, + 366, + 1372, + 459, + 299, + 459 + ], + "score": 0.954 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 813, + 76, + 813, + 104, + 299, + 104 + ], + "score": 0.887 + }, + { + "category_id": 0, + "poly": [ + 302, + 1465, + 714, + 1465, + 714, + 1499, + 302, + 1499 + ], + "score": 0.884 + }, + { + "category_id": 0, + "poly": [ + 301, + 1047, + 1092, + 1047, + 1092, + 1076, + 301, + 1076 + ], + "score": 0.858 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.723 + }, + { + "category_id": 13, + "poly": [ + 389, + 557, + 705, + 557, + 705, + 603, + 389, + 603 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { ( a , T ) _ { i } ~ = ~ a _ { i } ^ { 1 / T } / \\sum _ { j } ^ { C } a _ { j } ^ { 1 / T } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1297, + 945, + 1343, + 945, + 1343, + 976, + 1297, + 976 + ], + "score": 0.9, + "latex": "\\mathcal { L } _ { s a }" + }, + { + "category_id": 13, + "poly": [ + 958, + 944, + 1216, + 944, + 1216, + 976, + 958, + 976 + ], + "score": 0.9, + "latex": "\\mathcal { L } _ { u } + \\mathcal { L } _ { s } + \\mathcal { L } _ { x } + \\mathcal { L } _ { s a } )" + }, + { + "category_id": 13, + "poly": [ + 651, + 915, + 697, + 915, + 697, + 945, + 651, + 945 + ], + "score": 0.9, + "latex": "\\mathcal { L } _ { s a }" + }, + { + "category_id": 13, + "poly": [ + 688, + 1358, + 786, + 1358, + 786, + 1387, + 688, + 1387 + ], + "score": 0.9, + "latex": "5 0 \\times 5 0" + }, + { + "category_id": 13, + "poly": [ + 499, + 793, + 544, + 793, + 544, + 823, + 499, + 823 + ], + "score": 0.89, + "latex": "\\mathcal { L } _ { s a }" + }, + { + "category_id": 13, + "poly": [ + 957, + 824, + 992, + 824, + 992, + 853, + 957, + 853 + ], + "score": 0.88, + "latex": "\\mathcal { L } _ { x }" + }, + { + "category_id": 13, + "poly": [ + 1286, + 762, + 1321, + 762, + 1321, + 792, + 1286, + 792 + ], + "score": 0.88, + "latex": "\\mathcal { L } _ { x }" + }, + { + "category_id": 13, + "poly": [ + 1203, + 885, + 1237, + 885, + 1237, + 914, + 1203, + 914 + ], + "score": 0.87, + "latex": "D _ { l }" + }, + { + "category_id": 13, + "poly": [ + 983, + 660, + 1004, + 660, + 1004, + 691, + 983, + 691 + ], + "score": 0.84, + "latex": "\\widetilde { y }" + }, + { + "category_id": 13, + "poly": [ + 606, + 531, + 626, + 531, + 626, + 558, + 606, + 558 + ], + "score": 0.79, + "latex": "\\gamma" + }, + { + "category_id": 13, + "poly": [ + 412, + 976, + 437, + 976, + 437, + 1003, + 412, + 1003 + ], + "score": 0.79, + "latex": "\\Theta" + }, + { + "category_id": 13, + "poly": [ + 661, + 885, + 686, + 885, + 686, + 911, + 661, + 911 + ], + "score": 0.78, + "latex": "\\Theta" + }, + { + "category_id": 13, + "poly": [ + 1070, + 565, + 1094, + 565, + 1094, + 592, + 1070, + 592 + ], + "score": 0.76, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 1225, + 1821, + 1259, + 1821, + 1259, + 1850, + 1225, + 1850 + ], + "score": 0.35, + "latex": "9 \\mathrm { k }" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 331.0, + 411.0, + 331.0, + 411.0, + 361.0, + 347.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 494.0, + 329.0, + 623.0, + 329.0, + 623.0, + 364.0, + 494.0, + 364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 687.0, + 324.0, + 801.0, + 324.0, + 801.0, + 365.0, + 687.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 328.0, + 982.0, + 328.0, + 982.0, + 365.0, + 882.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 326.0, + 1214.0, + 326.0, + 1214.0, + 362.0, + 1031.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1236.0, + 331.0, + 1377.0, + 331.0, + 1377.0, + 360.0, + 1236.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 364.0, + 1376.0, + 364.0, + 1376.0, + 403.0, + 293.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 394.0, + 1355.0, + 394.0, + 1355.0, + 434.0, + 293.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 427.0, + 865.0, + 427.0, + 865.0, + 464.0, + 294.0, + 464.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": [ + 293.0, + 1461.0, + 717.0, + 1461.0, + 717.0, + 1504.0, + 293.0, + 1504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1043.0, + 1097.0, + 1043.0, + 1097.0, + 1081.0, + 294.0, + 1081.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, + 1668.0, + 1404.0, + 1668.0, + 1404.0, + 1702.0, + 296.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1696.0, + 1404.0, + 1696.0, + 1404.0, + 1733.0, + 293.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1726.0, + 1404.0, + 1726.0, + 1404.0, + 1764.0, + 293.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1759.0, + 1405.0, + 1759.0, + 1405.0, + 1792.0, + 293.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1785.0, + 1406.0, + 1785.0, + 1406.0, + 1827.0, + 292.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1821.0, + 1224.0, + 1821.0, + 1224.0, + 1855.0, + 294.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1260.0, + 1821.0, + 1406.0, + 1821.0, + 1406.0, + 1855.0, + 1260.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1852.0, + 1404.0, + 1852.0, + 1404.0, + 1883.0, + 296.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1880.0, + 1406.0, + 1880.0, + 1406.0, + 1914.0, + 294.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1913.0, + 1404.0, + 1913.0, + 1404.0, + 1943.0, + 296.0, + 1943.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": [ + 292.0, + 1970.0, + 1407.0, + 1970.0, + 1407.0, + 2006.0, + 292.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2003.0, + 1404.0, + 2003.0, + 1404.0, + 2037.0, + 296.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 760.0, + 1285.0, + 760.0, + 1285.0, + 797.0, + 294.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1322.0, + 760.0, + 1408.0, + 760.0, + 1408.0, + 797.0, + 1322.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 794.0, + 498.0, + 794.0, + 498.0, + 825.0, + 293.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 794.0, + 1404.0, + 794.0, + 1404.0, + 825.0, + 545.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 823.0, + 956.0, + 823.0, + 956.0, + 856.0, + 294.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 823.0, + 1404.0, + 823.0, + 1404.0, + 856.0, + 993.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 853.0, + 1404.0, + 853.0, + 1404.0, + 886.0, + 294.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 884.0, + 660.0, + 884.0, + 660.0, + 918.0, + 294.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 687.0, + 884.0, + 1202.0, + 884.0, + 1202.0, + 918.0, + 687.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 884.0, + 1404.0, + 884.0, + 1404.0, + 918.0, + 1238.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 913.0, + 650.0, + 913.0, + 650.0, + 950.0, + 293.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 913.0, + 1405.0, + 913.0, + 1405.0, + 950.0, + 698.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 944.0, + 957.0, + 944.0, + 957.0, + 981.0, + 293.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1217.0, + 944.0, + 1296.0, + 944.0, + 1296.0, + 981.0, + 1217.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1344.0, + 944.0, + 1404.0, + 944.0, + 1404.0, + 981.0, + 1344.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 975.0, + 411.0, + 975.0, + 411.0, + 1009.0, + 294.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 975.0, + 1337.0, + 975.0, + 1337.0, + 1009.0, + 438.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 496.0, + 1402.0, + 496.0, + 1402.0, + 530.0, + 294.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 525.0, + 605.0, + 525.0, + 605.0, + 562.0, + 295.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 525.0, + 1404.0, + 525.0, + 1404.0, + 562.0, + 627.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 565.0, + 388.0, + 565.0, + 388.0, + 597.0, + 297.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 562.0, + 1069.0, + 562.0, + 1069.0, + 600.0, + 709.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 562.0, + 1404.0, + 562.0, + 1404.0, + 600.0, + 1095.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 597.0, + 1404.0, + 597.0, + 1404.0, + 632.0, + 296.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 628.0, + 1404.0, + 628.0, + 1404.0, + 663.0, + 294.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 661.0, + 982.0, + 661.0, + 982.0, + 692.0, + 296.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 661.0, + 1402.0, + 661.0, + 1402.0, + 692.0, + 1005.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 692.0, + 1404.0, + 692.0, + 1404.0, + 723.0, + 296.0, + 723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 723.0, + 452.0, + 723.0, + 452.0, + 755.0, + 296.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 523.75, + 574.0, + 548.75, + 574.0, + 548.75, + 597.0, + 523.75, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.75, + 572.5, + 676.75, + 572.5, + 676.75, + 599.5, + 645.75, + 599.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1266.0, + 1405.0, + 1266.0, + 1405.0, + 1299.0, + 294.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1292.0, + 1405.0, + 1292.0, + 1405.0, + 1332.0, + 292.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1327.0, + 1405.0, + 1327.0, + 1405.0, + 1360.0, + 296.0, + 1360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1353.0, + 687.0, + 1353.0, + 687.0, + 1393.0, + 293.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 1353.0, + 1405.0, + 1353.0, + 1405.0, + 1393.0, + 787.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1387.0, + 1154.0, + 1387.0, + 1154.0, + 1423.0, + 294.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1097.0, + 1403.0, + 1097.0, + 1403.0, + 1130.0, + 298.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1129.0, + 1404.0, + 1129.0, + 1404.0, + 1162.0, + 295.0, + 1162.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1157.0, + 1405.0, + 1157.0, + 1405.0, + 1194.0, + 293.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1187.0, + 1405.0, + 1187.0, + 1405.0, + 1225.0, + 293.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1220.0, + 1300.0, + 1220.0, + 1300.0, + 1253.0, + 295.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1528.0, + 1405.0, + 1528.0, + 1405.0, + 1565.0, + 294.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1560.0, + 1405.0, + 1560.0, + 1405.0, + 1595.0, + 293.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1589.0, + 1404.0, + 1589.0, + 1404.0, + 1626.0, + 293.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1620.0, + 1078.0, + 1620.0, + 1078.0, + 1656.0, + 294.0, + 1656.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 401, + 1758, + 1284, + 1758, + 1284, + 2029, + 401, + 2029 + ], + "score": 0.981, + "html": "
Method1/2 (732)1/4 (366)1/8 (183)1/16 (92)
AdvSemSeg (Hung et al., 2018)65.2759.9747.5839.69
CCT (Ouali et al., 2020)62.1058.8047.6033.10
*MT (Tarvainen & Valpola, 2017)69.1663.0155.8148.70
GCT (Ke et al., 2020)70.6764.7154.9846.04
**VAT (Miyato et al., 2018)63.3456.8849.3536.92
CutMix (French et al., 2020)69.8468.3663.2055.58
PseudoSeg (Ours)72.4169.1465.5057.60
" + }, + { + "category_id": 6, + "poly": [ + 296, + 1598, + 1405, + 1598, + 1405, + 1751, + 296, + 1751 + ], + "score": 0.98 + }, + { + "category_id": 5, + "poly": [ + 495, + 1313, + 1205, + 1313, + 1205, + 1548, + 495, + 1548 + ], + "score": 0.977, + "html": "
MethodNetworkmIoU (%)
GANSeg (Souly et al., 2017)VGG1664.10
AdvSemSeg (Hung et al., 2018)ResNet-10168.40
CCT (Ouali et al., 2020)ResNet-5069.40
PseudoSeg (Ours)ResNet-5071.00
PseudoSeg (Ours)ResNet-10173.23
" + }, + { + "category_id": 1, + "poly": [ + 299, + 673, + 1404, + 673, + 1404, + 766, + 299, + 766 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 298, + 861, + 1404, + 861, + 1404, + 1076, + 298, + 1076 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 299, + 1085, + 1400, + 1085, + 1400, + 1178, + 299, + 1178 + ], + "score": 0.962 + }, + { + "category_id": 6, + "poly": [ + 297, + 1214, + 1397, + 1214, + 1397, + 1307, + 297, + 1307 + ], + "score": 0.959 + }, + { + "category_id": 4, + "poly": [ + 296, + 568, + 1320, + 568, + 1320, + 630, + 296, + 630 + ], + "score": 0.913 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 812, + 76, + 812, + 104, + 299, + 104 + ], + "score": 0.893 + }, + { + "category_id": 0, + "poly": [ + 299, + 814, + 1248, + 814, + 1248, + 843, + 299, + 843 + ], + "score": 0.874 + }, + { + "category_id": 3, + "poly": [ + 348, + 230, + 1363, + 230, + 1363, + 565, + 348, + 565 + ], + "score": 0.823 + }, + { + "category_id": 2, + "poly": [ + 839, + 2088, + 859, + 2088, + 859, + 2113, + 839, + 2113 + ], + "score": 0.808 + }, + { + "category_id": 13, + "poly": [ + 1256, + 984, + 1331, + 984, + 1331, + 1013, + 1256, + 1013 + ], + "score": 0.87, + "latex": "6 . 2 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 505, + 1117, + 593, + 1117, + 593, + 1146, + 505, + 1146 + ], + "score": 0.62, + "latex": "1 . 4 \\mathrm { k } / 9 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 784, + 894, + 817, + 894, + 817, + 922, + 784, + 922 + ], + "score": 0.51, + "latex": "^ { 3 + }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1597.0, + 1382.0, + 1597.0, + 1382.0, + 1634.0, + 295.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1630.0, + 1376.0, + 1630.0, + 1376.0, + 1663.0, + 296.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1660.0, + 1403.0, + 1660.0, + 1403.0, + 1693.0, + 295.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1686.0, + 1367.0, + 1686.0, + 1367.0, + 1726.0, + 293.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1721.0, + 526.0, + 1721.0, + 526.0, + 1755.0, + 294.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1213.0, + 1381.0, + 1213.0, + 1381.0, + 1247.0, + 296.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1242.0, + 1397.0, + 1242.0, + 1397.0, + 1282.0, + 293.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1276.0, + 501.0, + 1276.0, + 501.0, + 1308.0, + 296.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 566.0, + 1322.0, + 566.0, + 1322.0, + 602.0, + 295.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 594.0, + 957.0, + 594.0, + 957.0, + 633.0, + 294.0, + 633.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, + 810.0, + 1252.0, + 810.0, + 1252.0, + 848.0, + 294.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 266.0, + 400.0, + 266.0, + 400.0, + 289.0, + 372.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 282.0, + 953.0, + 282.0, + 953.0, + 303.0, + 926.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 321.0, + 399.0, + 321.0, + 399.0, + 425.0, + 346.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 319.0, + 936.0, + 319.0, + 936.0, + 421.0, + 901.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 339.0, + 952.0, + 339.0, + 952.0, + 362.0, + 928.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 382.0, + 398.0, + 382.0, + 398.0, + 404.0, + 373.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 398.0, + 952.0, + 398.0, + 952.0, + 419.0, + 925.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1334.0, + 405.0, + 1344.0, + 405.0, + 1344.0, + 416.0, + 1334.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 439.0, + 400.0, + 439.0, + 400.0, + 462.0, + 372.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 461.0, + 437.0, + 639.0, + 437.0, + 639.0, + 470.0, + 461.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1015.0, + 433.0, + 1193.0, + 433.0, + 1193.0, + 465.0, + 1015.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 467.0, + 578.0, + 467.0, + 578.0, + 496.0, + 463.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 492.0, + 789.0, + 492.0, + 789.0, + 502.0, + 780.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 455.0, + 953.0, + 455.0, + 953.0, + 479.0, + 926.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1015.0, + 460.0, + 1132.0, + 460.0, + 1132.0, + 493.0, + 1015.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1332.0, + 481.0, + 1344.0, + 481.0, + 1344.0, + 499.0, + 1332.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 497.0, + 400.0, + 497.0, + 400.0, + 520.0, + 372.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 515.0, + 427.0, + 515.0, + 427.0, + 530.0, + 411.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 511.0, + 628.0, + 511.0, + 628.0, + 541.0, + 599.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 510.0, + 729.0, + 510.0, + 729.0, + 541.0, + 694.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 744.0, + 510.0, + 803.0, + 510.0, + 803.0, + 547.0, + 744.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 538.0, + 738.0, + 538.0, + 738.0, + 570.0, + 465.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 540.0, + 1292.0, + 540.0, + 1292.0, + 570.0, + 1018.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.75, + 515.0, + 993.75, + 515.0, + 993.75, + 532.0, + 949.75, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1144.0, + 515.0, + 1189.0, + 515.0, + 1189.0, + 529.5, + 1144.0, + 529.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1234.0, + 514.5, + 1294.0, + 514.5, + 1294.0, + 537.0, + 1234.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 514.5, + 1343.0, + 514.5, + 1343.0, + 538.0, + 1282.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1305.75, + 514.5, + 1365.75, + 514.5, + 1365.75, + 538.5, + 1305.75, + 538.5 + ], + "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": [ + 294.0, + 671.0, + 1404.0, + 671.0, + 1404.0, + 709.0, + 294.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 704.0, + 1404.0, + 704.0, + 1404.0, + 738.0, + 295.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 733.0, + 475.0, + 733.0, + 475.0, + 771.0, + 294.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 861.0, + 1404.0, + 861.0, + 1404.0, + 896.0, + 296.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 891.0, + 783.0, + 891.0, + 783.0, + 925.0, + 294.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 891.0, + 1402.0, + 891.0, + 1402.0, + 925.0, + 818.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 919.0, + 1405.0, + 919.0, + 1405.0, + 960.0, + 293.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 950.0, + 1406.0, + 950.0, + 1406.0, + 989.0, + 292.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 983.0, + 1255.0, + 983.0, + 1255.0, + 1018.0, + 294.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1332.0, + 983.0, + 1404.0, + 983.0, + 1404.0, + 1018.0, + 1332.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1010.0, + 1405.0, + 1010.0, + 1405.0, + 1051.0, + 292.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1045.0, + 1332.0, + 1045.0, + 1332.0, + 1079.0, + 293.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1082.0, + 1405.0, + 1082.0, + 1405.0, + 1121.0, + 294.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1118.0, + 504.0, + 1118.0, + 504.0, + 1148.0, + 297.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 594.0, + 1118.0, + 1402.0, + 1118.0, + 1402.0, + 1148.0, + 594.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1147.0, + 839.0, + 1147.0, + 839.0, + 1181.0, + 297.0, + 1181.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1523, + 1403, + 1523, + 1403, + 1860, + 298, + 1860 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1112, + 1404, + 1112, + 1404, + 1388, + 297, + 1388 + ], + "score": 0.977 + }, + { + "category_id": 5, + "poly": [ + 300, + 776, + 938, + 776, + 938, + 986, + 300, + 986 + ], + "score": 0.974, + "html": "
MethodModelNetworkmIoU (%)
WSSN (Papandreou et al., 2015)DeepLab-CRFVGG1664.60
GAIN (Li et al., 2018)DeepLab-CRF-LFOVVGG1660.50
MDC (Wei et al.,2018)DeepLab-CRF-LFOVVGG1665.70
DSRG (Huang et al.,2018)DeepLabv2VGG1664.30
GANSeg (Souly et al.,2017)FCNVGG1665.80
FickleNet (Lee et al.,2019)DeepLabv2ResNet-10165.80
CCT (Ouali et al., 2020)PSP-NetResNet-5073.20
PseudoSeg (Ours)DeepLabv3+ResNet-5073.80
" + }, + { + "category_id": 5, + "poly": [ + 1028, + 849, + 1343, + 849, + 1343, + 1021, + 1028, + 1021 + ], + "score": 0.97, + "html": "
SplitCCTPseudoSeg
1/266.8073.51
1/467.6071.79
1/862.5069.15
1/1651.8065.44
" + }, + { + "category_id": 1, + "poly": [ + 299, + 1870, + 1403, + 1870, + 1403, + 1962, + 299, + 1962 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 297, + 1972, + 1400, + 1972, + 1400, + 2034, + 297, + 2034 + ], + "score": 0.939 + }, + { + "category_id": 6, + "poly": [ + 297, + 649, + 965, + 649, + 965, + 771, + 297, + 771 + ], + "score": 0.921 + }, + { + "category_id": 4, + "poly": [ + 290, + 554, + 1324, + 554, + 1324, + 615, + 290, + 615 + ], + "score": 0.916 + }, + { + "category_id": 0, + "poly": [ + 300, + 1430, + 578, + 1430, + 578, + 1460, + 300, + 1460 + ], + "score": 0.896 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 812, + 76, + 812, + 104, + 299, + 104 + ], + "score": 0.89 + }, + { + "category_id": 6, + "poly": [ + 976, + 650, + 1392, + 650, + 1392, + 844, + 976, + 844 + ], + "score": 0.874 + }, + { + "category_id": 1, + "poly": [ + 296, + 1481, + 1398, + 1481, + 1398, + 1514, + 296, + 1514 + ], + "score": 0.839 + }, + { + "category_id": 3, + "poly": [ + 369, + 230, + 1365, + 230, + 1365, + 551, + 369, + 551 + ], + "score": 0.753 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 858, + 2088, + 858, + 2111, + 842, + 2111 + ], + "score": 0.647 + }, + { + "category_id": 2, + "poly": [ + 299, + 1063, + 1386, + 1063, + 1386, + 1090, + 299, + 1090 + ], + "score": 0.351 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 859, + 2088, + 859, + 2111, + 842, + 2111 + ], + "score": 0.242 + }, + { + "category_id": 13, + "poly": [ + 716, + 1205, + 804, + 1205, + 804, + 1234, + 716, + 1234 + ], + "score": 0.64, + "latex": "1 . 4 \\mathrm { k } / 9 \\mathrm { k }" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 649.0, + 971.0, + 649.0, + 971.0, + 682.0, + 298.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 679.0, + 943.0, + 679.0, + 943.0, + 713.0, + 297.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 709.0, + 971.0, + 709.0, + 971.0, + 746.0, + 296.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 741.0, + 918.0, + 741.0, + 918.0, + 775.0, + 298.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 551.0, + 1323.0, + 551.0, + 1323.0, + 590.0, + 294.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 579.0, + 1066.0, + 579.0, + 1066.0, + 620.0, + 293.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1425.0, + 583.0, + 1425.0, + 583.0, + 1465.0, + 293.0, + 1465.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": [ + 974.0, + 648.0, + 1396.0, + 648.0, + 1396.0, + 683.0, + 974.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 678.0, + 1385.0, + 678.0, + 1385.0, + 709.0, + 974.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 705.0, + 1369.0, + 705.0, + 1369.0, + 737.0, + 974.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 735.0, + 1369.0, + 735.0, + 1369.0, + 763.0, + 975.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 762.0, + 1365.0, + 762.0, + 1365.0, + 791.0, + 973.0, + 791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 786.0, + 1306.0, + 786.0, + 1306.0, + 821.0, + 974.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 814.0, + 1224.0, + 814.0, + 1224.0, + 847.0, + 975.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 252.0, + 972.0, + 252.0, + 972.0, + 273.0, + 946.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 268.0, + 419.0, + 268.0, + 419.0, + 290.0, + 392.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1311.0, + 295.0, + 1321.0, + 295.0, + 1321.0, + 305.0, + 1311.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 308.0, + 434.0, + 308.0, + 434.0, + 426.0, + 357.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 923.0, + 302.0, + 973.0, + 302.0, + 973.0, + 412.0, + 923.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 376.0, + 416.0, + 376.0, + 416.0, + 398.0, + 392.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 399.0, + 972.0, + 399.0, + 972.0, + 421.0, + 947.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 431.0, + 419.0, + 431.0, + 419.0, + 453.0, + 391.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 476.0, + 428.0, + 648.0, + 428.0, + 648.0, + 462.0, + 476.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 426.0, + 1202.0, + 426.0, + 1202.0, + 454.0, + 1031.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 475.0, + 457.0, + 590.0, + 457.0, + 590.0, + 486.0, + 475.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 945.0, + 449.0, + 973.0, + 449.0, + 973.0, + 471.0, + 945.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 451.0, + 1144.0, + 451.0, + 1144.0, + 483.0, + 1031.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1334.0, + 471.0, + 1347.0, + 471.0, + 1347.0, + 489.0, + 1334.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 485.0, + 419.0, + 485.0, + 419.0, + 507.0, + 392.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 500.0, + 446.0, + 500.0, + 446.0, + 519.0, + 426.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 499.0, + 638.0, + 499.0, + 638.0, + 528.0, + 609.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 498.0, + 733.0, + 498.0, + 733.0, + 529.0, + 700.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 500.0, + 779.0, + 500.0, + 779.0, + 528.0, + 748.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 481.0, + 528.0, + 741.0, + 528.0, + 741.0, + 554.0, + 481.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 528.0, + 1295.0, + 528.0, + 1295.0, + 554.0, + 1035.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 296.5, + 783.0, + 296.5, + 783.0, + 305.5, + 767.0, + 305.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1324.0, + 326.0, + 1337.0, + 326.0, + 1337.0, + 332.5, + 1324.0, + 332.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 744.0, + 372.0, + 749.0, + 372.0, + 749.0, + 376.5, + 744.0, + 376.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 761.75, + 506.0, + 808.75, + 506.0, + 808.75, + 523.0, + 761.75, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 501.5, + 1013.0, + 501.5, + 1013.0, + 518.5, + 966.0, + 518.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1155.0, + 502.5, + 1198.0, + 502.5, + 1198.0, + 517.5, + 1155.0, + 517.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1240.75, + 504.0, + 1296.75, + 504.0, + 1296.75, + 522.5, + 1240.75, + 522.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.25, + 504.0, + 1344.25, + 504.0, + 1344.25, + 523.0, + 1289.25, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1311.0, + 504.0, + 1366.0, + 504.0, + 1366.0, + 523.0, + 1311.0, + 523.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": [ + 295.0, + 1061.0, + 1388.0, + 1061.0, + 1388.0, + 1092.0, + 295.0, + 1092.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": [ + 292.0, + 1520.0, + 1405.0, + 1520.0, + 1405.0, + 1562.0, + 292.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1555.0, + 1405.0, + 1555.0, + 1405.0, + 1590.0, + 294.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1585.0, + 1405.0, + 1585.0, + 1405.0, + 1618.0, + 293.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1616.0, + 1405.0, + 1616.0, + 1405.0, + 1651.0, + 294.0, + 1651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1646.0, + 1405.0, + 1646.0, + 1405.0, + 1680.0, + 293.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1678.0, + 1405.0, + 1678.0, + 1405.0, + 1710.0, + 292.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1701.0, + 1404.0, + 1701.0, + 1404.0, + 1745.0, + 292.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1737.0, + 1403.0, + 1737.0, + 1403.0, + 1772.0, + 294.0, + 1772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1767.0, + 1405.0, + 1767.0, + 1405.0, + 1802.0, + 294.0, + 1802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1800.0, + 1405.0, + 1800.0, + 1405.0, + 1833.0, + 293.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1829.0, + 1098.0, + 1829.0, + 1098.0, + 1864.0, + 294.0, + 1864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1113.0, + 1406.0, + 1113.0, + 1406.0, + 1149.0, + 295.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1144.0, + 1405.0, + 1144.0, + 1405.0, + 1177.0, + 296.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1173.0, + 1404.0, + 1173.0, + 1404.0, + 1210.0, + 295.0, + 1210.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1203.0, + 715.0, + 1203.0, + 715.0, + 1240.0, + 294.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 1203.0, + 1404.0, + 1203.0, + 1404.0, + 1240.0, + 805.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1232.0, + 1406.0, + 1232.0, + 1406.0, + 1270.0, + 294.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1263.0, + 1406.0, + 1263.0, + 1406.0, + 1302.0, + 292.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1294.0, + 1406.0, + 1294.0, + 1406.0, + 1330.0, + 294.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1326.0, + 1406.0, + 1326.0, + 1406.0, + 1362.0, + 294.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1355.0, + 358.0, + 1355.0, + 358.0, + 1391.0, + 293.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1870.0, + 1402.0, + 1870.0, + 1402.0, + 1904.0, + 295.0, + 1904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1900.0, + 1405.0, + 1900.0, + 1405.0, + 1934.0, + 294.0, + 1934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1930.0, + 1301.0, + 1930.0, + 1301.0, + 1968.0, + 294.0, + 1968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1970.0, + 1404.0, + 1970.0, + 1404.0, + 2007.0, + 293.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2002.0, + 1405.0, + 2002.0, + 1405.0, + 2037.0, + 293.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1479.0, + 1403.0, + 1479.0, + 1403.0, + 1518.0, + 294.0, + 1518.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1691, + 1404, + 1691, + 1404, + 1843, + 298, + 1843 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 300, + 1942, + 1402, + 1942, + 1402, + 2034, + 300, + 2034 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 1527, + 1403, + 1527, + 1403, + 1680, + 298, + 1680 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 299, + 1394, + 1402, + 1394, + 1402, + 1516, + 299, + 1516 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 297, + 1261, + 1404, + 1261, + 1404, + 1385, + 297, + 1385 + ], + "score": 0.969 + }, + { + "category_id": 3, + "poly": [ + 298, + 574, + 1401, + 574, + 1401, + 1179, + 298, + 1179 + ], + "score": 0.967 + }, + { + "category_id": 5, + "poly": [ + 402, + 292, + 1288, + 292, + 1288, + 539, + 402, + 539 + ], + "score": 0.941, + "html": "
SourceUsing image-level labels1/4 (366)1/8 (183)1/16 (92)
Decoder only70.2269.3553.20
SGC only67.0762.6153.42
Calibrated fusion73.7973.1367.06
Decoder only73.9573.0567.54
SGC only71.7367.5764.26
Calibrated fusion75.2974.7071.22
" + }, + { + "category_id": 6, + "poly": [ + 299, + 224, + 1397, + 224, + 1397, + 287, + 299, + 287 + ], + "score": 0.935 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 812, + 76, + 812, + 104, + 300, + 104 + ], + "score": 0.895 + }, + { + "category_id": 0, + "poly": [ + 302, + 1889, + 788, + 1889, + 788, + 1918, + 302, + 1918 + ], + "score": 0.895 + }, + { + "category_id": 4, + "poly": [ + 364, + 1187, + 1328, + 1187, + 1328, + 1219, + 364, + 1219 + ], + "score": 0.888 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2111, + 841, + 2111 + ], + "score": 0.787 + }, + { + "category_id": 15, + "poly": [ + 318.0, + 577.0, + 341.0, + 577.0, + 341.0, + 595.0, + 318.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 479.0, + 582.0, + 506.0, + 582.0, + 506.0, + 595.0, + 479.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 574.0, + 1088.0, + 574.0, + 1088.0, + 593.0, + 1066.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 591.0, + 459.0, + 591.0, + 459.0, + 611.0, + 378.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 590.0, + 714.0, + 590.0, + 714.0, + 608.0, + 692.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 590.0, + 1011.0, + 590.0, + 1011.0, + 610.0, + 844.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 593.0, + 1152.0, + 593.0, + 1152.0, + 606.0, + 1101.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 608.0, + 433.0, + 608.0, + 433.0, + 629.0, + 378.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 607.0, + 1006.0, + 607.0, + 1006.0, + 630.0, + 843.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 600.0, + 1088.0, + 600.0, + 1088.0, + 619.0, + 1065.0, + 619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 622.0, + 342.0, + 622.0, + 342.0, + 642.0, + 317.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 626.0, + 470.0, + 626.0, + 470.0, + 649.0, + 377.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 621.0, + 713.0, + 621.0, + 713.0, + 640.0, + 692.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 627.0, + 992.0, + 627.0, + 992.0, + 644.0, + 960.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 627.0, + 1088.0, + 627.0, + 1088.0, + 645.0, + 1066.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 656.0, + 353.0, + 656.0, + 353.0, + 746.0, + 289.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 641.0, + 470.0, + 641.0, + 470.0, + 686.0, + 377.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 517.0, + 643.0, + 546.0, + 643.0, + 546.0, + 660.0, + 517.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 669.0, + 653.0, + 714.0, + 653.0, + 714.0, + 740.0, + 669.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 905.0, + 665.0, + 932.0, + 665.0, + 932.0, + 682.0, + 905.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 643.0, + 1094.0, + 643.0, + 1094.0, + 735.0, + 1035.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 678.0, + 511.0, + 678.0, + 511.0, + 720.0, + 376.0, + 720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 683.0, + 713.0, + 683.0, + 713.0, + 703.0, + 692.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 692.0, + 828.0, + 692.0, + 828.0, + 709.0, + 798.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 681.0, + 1088.0, + 681.0, + 1088.0, + 699.0, + 1066.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 693.0, + 1174.0, + 693.0, + 1174.0, + 714.0, + 1119.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 435.0, + 721.0, + 472.0, + 721.0, + 472.0, + 738.0, + 435.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 715.0, + 714.0, + 715.0, + 714.0, + 733.0, + 690.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 709.0, + 1177.0, + 709.0, + 1177.0, + 743.0, + 1119.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 761.0, + 342.0, + 761.0, + 342.0, + 780.0, + 318.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 783.0, + 387.0, + 783.0, + 387.0, + 802.0, + 360.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 771.0, + 427.0, + 771.0, + 427.0, + 788.0, + 398.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 780.0, + 584.0, + 780.0, + 584.0, + 797.0, + 555.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 746.0, + 714.0, + 746.0, + 714.0, + 796.0, + 690.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 737.0, + 769.0, + 737.0, + 769.0, + 750.0, + 742.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 733.0, + 1090.0, + 733.0, + 1090.0, + 779.0, + 1065.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 737.0, + 1184.0, + 737.0, + 1184.0, + 788.0, + 1095.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 810.0, + 337.0, + 810.0, + 337.0, + 821.0, + 326.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 422.0, + 817.0, + 561.0, + 817.0, + 561.0, + 836.0, + 422.0, + 836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 594.0, + 796.0, + 624.0, + 796.0, + 624.0, + 813.0, + 594.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 808.0, + 714.0, + 808.0, + 714.0, + 826.0, + 692.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 817.0, + 831.0, + 817.0, + 831.0, + 836.0, + 738.0, + 836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 817.0, + 1016.0, + 817.0, + 1016.0, + 836.0, + 877.0, + 836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1094.0, + 794.0, + 1120.0, + 794.0, + 1120.0, + 819.0, + 1094.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 792.0, + 1187.0, + 792.0, + 1187.0, + 820.0, + 1160.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1202.0, + 793.0, + 1278.0, + 793.0, + 1278.0, + 836.0, + 1202.0, + 836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 793.0, + 1319.0, + 793.0, + 1319.0, + 820.0, + 1292.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1360.0, + 796.0, + 1383.0, + 796.0, + 1383.0, + 819.0, + 1360.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 837.0, + 646.0, + 837.0, + 646.0, + 870.0, + 307.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 837.0, + 995.0, + 837.0, + 995.0, + 872.0, + 708.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 836.0, + 1352.0, + 836.0, + 1352.0, + 868.0, + 1095.0, + 868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 880.0, + 713.0, + 880.0, + 713.0, + 899.0, + 692.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 902.0, + 338.0, + 902.0, + 338.0, + 916.0, + 319.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 913.0, + 1104.0, + 913.0, + 1104.0, + 924.0, + 1093.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 914.0, + 1084.0, + 914.0, + 1084.0, + 933.0, + 1063.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 923.0, + 713.0, + 923.0, + 713.0, + 943.0, + 692.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 934.0, + 338.0, + 934.0, + 338.0, + 954.0, + 318.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 274.0, + 946.0, + 324.0, + 946.0, + 324.0, + 1024.0, + 274.0, + 1024.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 672.0, + 943.0, + 700.0, + 943.0, + 700.0, + 1023.0, + 672.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 954.0, + 1010.0, + 954.0, + 1010.0, + 963.0, + 999.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1041.0, + 943.0, + 1091.0, + 943.0, + 1091.0, + 1022.0, + 1041.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 968.0, + 339.0, + 968.0, + 339.0, + 987.0, + 318.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 966.0, + 712.0, + 966.0, + 712.0, + 985.0, + 692.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1113.0, + 995.0, + 1237.0, + 995.0, + 1237.0, + 1015.0, + 1113.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 1009.0, + 713.0, + 1009.0, + 713.0, + 1028.0, + 692.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 1004.0, + 1084.0, + 1004.0, + 1084.0, + 1025.0, + 1064.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1091.0, + 1011.0, + 1109.0, + 1011.0, + 1109.0, + 1026.0, + 1091.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1111.0, + 1009.0, + 1267.0, + 1009.0, + 1267.0, + 1028.0, + 1111.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1039.0, + 337.0, + 1039.0, + 337.0, + 1055.0, + 319.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 1029.0, + 560.0, + 1029.0, + 560.0, + 1056.0, + 381.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 719.0, + 1023.0, + 769.0, + 1023.0, + 769.0, + 1056.0, + 719.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1001.0, + 1027.0, + 1007.0, + 1027.0, + 1007.0, + 1033.0, + 1001.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1091.0, + 1039.0, + 1110.0, + 1039.0, + 1110.0, + 1053.0, + 1091.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1111.0, + 1022.0, + 1264.0, + 1022.0, + 1264.0, + 1055.0, + 1111.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 1050.0, + 504.0, + 1050.0, + 504.0, + 1077.0, + 381.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 1052.0, + 714.0, + 1052.0, + 714.0, + 1070.0, + 690.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 1049.0, + 811.0, + 1049.0, + 811.0, + 1069.0, + 740.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 1054.0, + 1083.0, + 1054.0, + 1083.0, + 1069.0, + 1065.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1113.0, + 1052.0, + 1228.0, + 1052.0, + 1228.0, + 1067.0, + 1113.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1074.0, + 339.0, + 1074.0, + 339.0, + 1088.0, + 319.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 1071.0, + 636.0, + 1071.0, + 636.0, + 1080.0, + 626.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.0, + 1063.0, + 771.0, + 1063.0, + 771.0, + 1083.0, + 723.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 1064.0, + 1259.0, + 1064.0, + 1259.0, + 1081.0, + 1090.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 1085.0, + 366.0, + 1085.0, + 366.0, + 1110.0, + 339.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 1083.0, + 550.0, + 1083.0, + 550.0, + 1110.0, + 525.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.0, + 1087.0, + 740.0, + 1087.0, + 740.0, + 1113.0, + 714.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 1087.0, + 925.0, + 1087.0, + 925.0, + 1113.0, + 898.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 1091.0, + 1103.0, + 1091.0, + 1103.0, + 1103.0, + 1093.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1233.0, + 1086.0, + 1261.0, + 1086.0, + 1261.0, + 1113.0, + 1233.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1304.0, + 1085.0, + 1395.0, + 1085.0, + 1395.0, + 1118.0, + 1304.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 1109.0, + 595.0, + 1109.0, + 595.0, + 1129.0, + 388.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 1109.0, + 952.0, + 1109.0, + 952.0, + 1131.0, + 778.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 1109.0, + 1326.0, + 1109.0, + 1326.0, + 1131.0, + 1150.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1143.0, + 635.0, + 1143.0, + 635.0, + 1186.0, + 317.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 1148.0, + 997.0, + 1148.0, + 997.0, + 1184.0, + 697.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1073.0, + 1148.0, + 1365.0, + 1148.0, + 1365.0, + 1182.0, + 1073.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1367.0, + 780.0, + 1371.0, + 780.0, + 1371.0, + 788.0, + 1367.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1366.0, + 1040.0, + 1371.0, + 1040.0, + 1371.0, + 1054.0, + 1366.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 1090.5, + 650.0, + 1090.5, + 650.0, + 1105.0, + 609.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 981.0, + 1092.5, + 1025.0, + 1092.5, + 1025.0, + 1110.0, + 981.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 219.0, + 1377.0, + 219.0, + 1377.0, + 263.0, + 293.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 254.0, + 1400.0, + 254.0, + 1400.0, + 286.0, + 298.0, + 286.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": [ + 296.0, + 1887.0, + 793.0, + 1887.0, + 793.0, + 1922.0, + 296.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 1184.0, + 1331.0, + 1184.0, + 1331.0, + 1224.0, + 366.0, + 1224.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, + 1687.0, + 1405.0, + 1687.0, + 1405.0, + 1728.0, + 293.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1722.0, + 1404.0, + 1722.0, + 1404.0, + 1755.0, + 296.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1747.0, + 1405.0, + 1747.0, + 1405.0, + 1788.0, + 292.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1781.0, + 1405.0, + 1781.0, + 1405.0, + 1818.0, + 294.0, + 1818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1810.0, + 565.0, + 1810.0, + 565.0, + 1847.0, + 295.0, + 1847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1939.0, + 1404.0, + 1939.0, + 1404.0, + 1975.0, + 294.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1972.0, + 1406.0, + 1972.0, + 1406.0, + 2004.0, + 294.0, + 2004.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": [ + 294.0, + 1524.0, + 1405.0, + 1524.0, + 1405.0, + 1564.0, + 294.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1556.0, + 1403.0, + 1556.0, + 1403.0, + 1592.0, + 293.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1586.0, + 1405.0, + 1586.0, + 1405.0, + 1623.0, + 296.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1617.0, + 1405.0, + 1617.0, + 1405.0, + 1655.0, + 293.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1650.0, + 566.0, + 1650.0, + 566.0, + 1683.0, + 296.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1395.0, + 1404.0, + 1395.0, + 1404.0, + 1427.0, + 297.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1423.0, + 1406.0, + 1423.0, + 1406.0, + 1461.0, + 294.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1455.0, + 1406.0, + 1455.0, + 1406.0, + 1490.0, + 294.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1490.0, + 467.0, + 1490.0, + 467.0, + 1519.0, + 295.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1260.0, + 1404.0, + 1260.0, + 1404.0, + 1295.0, + 294.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1291.0, + 1404.0, + 1291.0, + 1404.0, + 1327.0, + 294.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1322.0, + 1405.0, + 1322.0, + 1405.0, + 1358.0, + 295.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1352.0, + 1102.0, + 1352.0, + 1102.0, + 1391.0, + 292.0, + 1391.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 514, + 1404, + 514, + 1404, + 881, + 297, + 881 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 1475, + 1405, + 1475, + 1405, + 1812, + 297, + 1812 + ], + "score": 0.982 + }, + { + "category_id": 5, + "poly": [ + 377, + 293, + 1316, + 293, + 1316, + 482, + 377, + 482 + ], + "score": 0.982, + "html": "
MethodUsing image-level labels1/4 (366)1/8 (183)1/16 (92)
Supervised (Teacher)70.2064.0056.03
Self-training (Student)172.8569.8864.20
PseudoSeg (Ours)-73.7973.1367.06
PseudoSeg (Ours)75.2974.7071.22
" + }, + { + "category_id": 5, + "poly": [ + 322, + 1251, + 1369, + 1251, + 1369, + 1383, + 322, + 1383 + ], + "score": 0.973, + "html": "
MethodBaseline丨PseudoSeg (w/o image-level labels)丨PseudoSeg (w/image-level labels)
Extra data1Ctr+CuCtr + Cu + V9kCtrCtr +Vgk
mIoU (%)76.9677.40 (+0.44)78.20 (+1.24)77.80 (+0.84)79.28 (+2.32)
" + }, + { + "category_id": 6, + "poly": [ + 299, + 224, + 1399, + 224, + 1399, + 287, + 299, + 287 + ], + "score": 0.923 + }, + { + "category_id": 1, + "poly": [ + 298, + 969, + 1403, + 969, + 1403, + 1186, + 298, + 1186 + ], + "score": 0.922 + }, + { + "category_id": 2, + "poly": [ + 298, + 1978, + 1406, + 1978, + 1406, + 2034, + 298, + 2034 + ], + "score": 0.918 + }, + { + "category_id": 0, + "poly": [ + 302, + 1428, + 801, + 1428, + 801, + 1464, + 302, + 1464 + ], + "score": 0.916 + }, + { + "category_id": 6, + "poly": [ + 300, + 1213, + 1395, + 1213, + 1395, + 1246, + 300, + 1246 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 812, + 76, + 812, + 104, + 300, + 104 + ], + "score": 0.894 + }, + { + "category_id": 1, + "poly": [ + 298, + 1926, + 1129, + 1926, + 1129, + 1958, + 298, + 1958 + ], + "score": 0.875 + }, + { + "category_id": 0, + "poly": [ + 301, + 1862, + 609, + 1862, + 609, + 1891, + 301, + 1891 + ], + "score": 0.868 + }, + { + "category_id": 0, + "poly": [ + 332, + 920, + 1177, + 920, + 1177, + 949, + 332, + 949 + ], + "score": 0.838 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.805 + }, + { + "category_id": 13, + "poly": [ + 1201, + 1062, + 1260, + 1062, + 1260, + 1093, + 1201, + 1093 + ], + "score": 0.85, + "latex": "( C _ { t r } )" + }, + { + "category_id": 13, + "poly": [ + 908, + 1063, + 967, + 1063, + 967, + 1093, + 908, + 1093 + ], + "score": 0.83, + "latex": "( V _ { 9 k } )" + }, + { + "category_id": 13, + "poly": [ + 470, + 1093, + 520, + 1093, + 520, + 1124, + 470, + 1124 + ], + "score": 0.79, + "latex": "( C _ { u } )" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 220.0, + 1404.0, + 220.0, + 1404.0, + 259.0, + 294.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 253.0, + 879.0, + 253.0, + 879.0, + 289.0, + 295.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1971.0, + 1406.0, + 1971.0, + 1406.0, + 2013.0, + 327.0, + 2013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2004.0, + 915.0, + 2004.0, + 915.0, + 2034.0, + 296.0, + 2034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1424.0, + 806.0, + 1424.0, + 806.0, + 1470.0, + 293.0, + 1470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 1210.0, + 1399.0, + 1210.0, + 1399.0, + 1249.0, + 300.0, + 1249.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, + 1858.0, + 614.0, + 1858.0, + 614.0, + 1900.0, + 297.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 918.0, + 1183.0, + 918.0, + 1183.0, + 952.0, + 323.0, + 952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2087.0, + 860.0, + 2087.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 514.0, + 1404.0, + 514.0, + 1404.0, + 548.0, + 295.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 544.0, + 1409.0, + 544.0, + 1409.0, + 581.0, + 292.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 572.0, + 1405.0, + 572.0, + 1405.0, + 612.0, + 294.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 606.0, + 1405.0, + 606.0, + 1405.0, + 640.0, + 295.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 638.0, + 1404.0, + 638.0, + 1404.0, + 668.0, + 296.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 667.0, + 1405.0, + 667.0, + 1405.0, + 701.0, + 295.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 696.0, + 1405.0, + 696.0, + 1405.0, + 732.0, + 294.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 725.0, + 1405.0, + 725.0, + 1405.0, + 762.0, + 292.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 755.0, + 1404.0, + 755.0, + 1404.0, + 796.0, + 291.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 789.0, + 1404.0, + 789.0, + 1404.0, + 823.0, + 294.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 818.0, + 1404.0, + 818.0, + 1404.0, + 854.0, + 292.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 850.0, + 1307.0, + 850.0, + 1307.0, + 884.0, + 296.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1476.0, + 1406.0, + 1476.0, + 1406.0, + 1511.0, + 295.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1507.0, + 1405.0, + 1507.0, + 1405.0, + 1540.0, + 294.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1537.0, + 1403.0, + 1537.0, + 1403.0, + 1571.0, + 295.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1568.0, + 1403.0, + 1568.0, + 1403.0, + 1603.0, + 294.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1594.0, + 1405.0, + 1594.0, + 1405.0, + 1639.0, + 291.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1631.0, + 1403.0, + 1631.0, + 1403.0, + 1662.0, + 295.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1660.0, + 1403.0, + 1660.0, + 1403.0, + 1694.0, + 294.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1692.0, + 1402.0, + 1692.0, + 1402.0, + 1723.0, + 296.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1719.0, + 1406.0, + 1719.0, + 1406.0, + 1756.0, + 292.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1746.0, + 1405.0, + 1746.0, + 1405.0, + 1790.0, + 292.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1780.0, + 1327.0, + 1780.0, + 1327.0, + 1817.0, + 292.0, + 1817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 967.0, + 1404.0, + 967.0, + 1404.0, + 1008.0, + 293.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1001.0, + 1404.0, + 1001.0, + 1404.0, + 1035.0, + 294.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1032.0, + 1405.0, + 1032.0, + 1405.0, + 1066.0, + 294.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1061.0, + 907.0, + 1061.0, + 907.0, + 1096.0, + 294.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 1061.0, + 1200.0, + 1061.0, + 1200.0, + 1096.0, + 968.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1261.0, + 1061.0, + 1405.0, + 1061.0, + 1405.0, + 1096.0, + 1261.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1092.0, + 469.0, + 1092.0, + 469.0, + 1127.0, + 294.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 1092.0, + 1405.0, + 1092.0, + 1405.0, + 1127.0, + 521.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1122.0, + 1407.0, + 1122.0, + 1407.0, + 1159.0, + 292.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1154.0, + 909.0, + 1154.0, + 909.0, + 1189.0, + 296.0, + 1189.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1923.0, + 1134.0, + 1923.0, + 1134.0, + 1963.0, + 296.0, + 1963.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.883 + }, + { + "category_id": 0, + "poly": [ + 299, + 228, + 488, + 228, + 488, + 261, + 299, + 261 + ], + "score": 0.867 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.823 + }, + { + "category_id": 1, + "poly": [ + 300, + 276, + 1399, + 276, + 1399, + 334, + 300, + 334 + ], + "score": 0.701 + }, + { + "category_id": 1, + "poly": [ + 299, + 1180, + 1397, + 1180, + 1397, + 1241, + 299, + 1241 + ], + "score": 0.607 + }, + { + "category_id": 1, + "poly": [ + 300, + 795, + 1399, + 795, + 1399, + 853, + 300, + 853 + ], + "score": 0.598 + }, + { + "category_id": 1, + "poly": [ + 300, + 1258, + 1395, + 1258, + 1395, + 1318, + 300, + 1318 + ], + "score": 0.582 + }, + { + "category_id": 1, + "poly": [ + 297, + 1104, + 1400, + 1104, + 1400, + 1162, + 297, + 1162 + ], + "score": 0.569 + }, + { + "category_id": 1, + "poly": [ + 298, + 690, + 1403, + 690, + 1403, + 776, + 298, + 776 + ], + "score": 0.559 + }, + { + "category_id": 1, + "poly": [ + 301, + 1540, + 1401, + 1540, + 1401, + 1599, + 301, + 1599 + ], + "score": 0.555 + }, + { + "category_id": 1, + "poly": [ + 296, + 352, + 1396, + 352, + 1396, + 411, + 296, + 411 + ], + "score": 0.552 + }, + { + "category_id": 1, + "poly": [ + 294, + 612, + 1402, + 612, + 1402, + 672, + 294, + 672 + ], + "score": 0.546 + }, + { + "category_id": 1, + "poly": [ + 301, + 1617, + 1399, + 1617, + 1399, + 1676, + 301, + 1676 + ], + "score": 0.54 + }, + { + "category_id": 1, + "poly": [ + 294, + 429, + 1399, + 429, + 1399, + 516, + 294, + 516 + ], + "score": 0.539 + }, + { + "category_id": 1, + "poly": [ + 299, + 1385, + 1401, + 1385, + 1401, + 1445, + 299, + 1445 + ], + "score": 0.538 + }, + { + "category_id": 1, + "poly": [ + 299, + 1336, + 1399, + 1336, + 1399, + 1369, + 299, + 1369 + ], + "score": 0.537 + }, + { + "category_id": 1, + "poly": [ + 292, + 872, + 1328, + 872, + 1328, + 905, + 292, + 905 + ], + "score": 0.535 + }, + { + "category_id": 1, + "poly": [ + 296, + 1026, + 1401, + 1026, + 1401, + 1085, + 296, + 1085 + ], + "score": 0.532 + }, + { + "category_id": 1, + "poly": [ + 297, + 1462, + 1402, + 1462, + 1402, + 1521, + 297, + 1521 + ], + "score": 0.519 + }, + { + "category_id": 1, + "poly": [ + 295, + 534, + 1399, + 534, + 1399, + 595, + 295, + 595 + ], + "score": 0.516 + }, + { + "category_id": 1, + "poly": [ + 299, + 921, + 1401, + 921, + 1401, + 1008, + 299, + 1008 + ], + "score": 0.5 + }, + { + "category_id": 1, + "poly": [ + 294, + 1977, + 1404, + 1977, + 1404, + 2034, + 294, + 2034 + ], + "score": 0.495 + }, + { + "category_id": 1, + "poly": [ + 297, + 1694, + 1400, + 1694, + 1400, + 1754, + 297, + 1754 + ], + "score": 0.488 + }, + { + "category_id": 1, + "poly": [ + 297, + 1899, + 1399, + 1899, + 1399, + 1957, + 297, + 1957 + ], + "score": 0.441 + }, + { + "category_id": 1, + "poly": [ + 295, + 1772, + 1398, + 1772, + 1398, + 1831, + 295, + 1831 + ], + "score": 0.437 + }, + { + "category_id": 1, + "poly": [ + 298, + 1850, + 1401, + 1850, + 1401, + 1881, + 298, + 1881 + ], + "score": 0.384 + }, + { + "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, + 228.0, + 490.0, + 228.0, + 490.0, + 265.0, + 297.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 275.0, + 1403.0, + 275.0, + 1403.0, + 310.0, + 295.0, + 310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 304.0, + 894.0, + 304.0, + 894.0, + 336.0, + 321.0, + 336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1180.0, + 1402.0, + 1180.0, + 1402.0, + 1216.0, + 294.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1209.0, + 1293.0, + 1209.0, + 1293.0, + 1242.0, + 320.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 793.0, + 1404.0, + 793.0, + 1404.0, + 829.0, + 295.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 824.0, + 894.0, + 824.0, + 894.0, + 852.0, + 322.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1259.0, + 1399.0, + 1259.0, + 1399.0, + 1290.0, + 297.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1287.0, + 1215.0, + 1287.0, + 1215.0, + 1318.0, + 322.0, + 1318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1102.0, + 1404.0, + 1102.0, + 1404.0, + 1138.0, + 295.0, + 1138.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1133.0, + 752.0, + 1133.0, + 752.0, + 1161.0, + 323.0, + 1161.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 688.0, + 1404.0, + 688.0, + 1404.0, + 725.0, + 292.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 718.0, + 1407.0, + 718.0, + 1407.0, + 750.0, + 323.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 747.0, + 970.0, + 747.0, + 970.0, + 778.0, + 322.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1537.0, + 1405.0, + 1537.0, + 1405.0, + 1574.0, + 295.0, + 1574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1568.0, + 813.0, + 1568.0, + 813.0, + 1597.0, + 322.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 354.0, + 1400.0, + 354.0, + 1400.0, + 385.0, + 296.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 380.0, + 761.0, + 380.0, + 761.0, + 411.0, + 322.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 612.0, + 1404.0, + 612.0, + 1404.0, + 643.0, + 294.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 638.0, + 1263.0, + 638.0, + 1263.0, + 673.0, + 323.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1617.0, + 1404.0, + 1617.0, + 1404.0, + 1651.0, + 297.0, + 1651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1645.0, + 664.0, + 1645.0, + 664.0, + 1676.0, + 322.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 429.0, + 1401.0, + 429.0, + 1401.0, + 462.0, + 295.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 457.0, + 1404.0, + 457.0, + 1404.0, + 491.0, + 321.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 482.0, + 424.0, + 482.0, + 424.0, + 518.0, + 321.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1381.0, + 1405.0, + 1381.0, + 1405.0, + 1419.0, + 294.0, + 1419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1411.0, + 413.0, + 1411.0, + 413.0, + 1445.0, + 322.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1332.0, + 1407.0, + 1332.0, + 1407.0, + 1371.0, + 295.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 872.0, + 1332.0, + 872.0, + 1332.0, + 905.0, + 293.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1026.0, + 1403.0, + 1026.0, + 1403.0, + 1060.0, + 295.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1056.0, + 784.0, + 1056.0, + 784.0, + 1084.0, + 321.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1463.0, + 1404.0, + 1463.0, + 1404.0, + 1494.0, + 296.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1490.0, + 745.0, + 1490.0, + 745.0, + 1520.0, + 322.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 536.0, + 1403.0, + 536.0, + 1403.0, + 567.0, + 296.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 562.0, + 1167.0, + 562.0, + 1167.0, + 597.0, + 321.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 917.0, + 1406.0, + 917.0, + 1406.0, + 958.0, + 292.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 946.0, + 1406.0, + 946.0, + 1406.0, + 986.0, + 320.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 979.0, + 526.0, + 979.0, + 526.0, + 1008.0, + 323.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1975.0, + 1405.0, + 1975.0, + 1405.0, + 2009.0, + 294.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 2003.0, + 807.0, + 2003.0, + 807.0, + 2035.0, + 321.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1691.0, + 1404.0, + 1691.0, + 1404.0, + 1729.0, + 293.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1723.0, + 1108.0, + 1723.0, + 1108.0, + 1755.0, + 322.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1898.0, + 1404.0, + 1898.0, + 1404.0, + 1933.0, + 295.0, + 1933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1928.0, + 944.0, + 1928.0, + 944.0, + 1956.0, + 322.0, + 1956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1769.0, + 1403.0, + 1769.0, + 1403.0, + 1806.0, + 295.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1799.0, + 954.0, + 1799.0, + 954.0, + 1831.0, + 323.0, + 1831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1846.0, + 1408.0, + 1846.0, + 1408.0, + 1885.0, + 294.0, + 1885.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 299, + 74, + 814, + 74, + 814, + 106, + 299, + 106 + ], + "score": 0.867 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2113, + 836, + 2113 + ], + "score": 0.805 + }, + { + "category_id": 1, + "poly": [ + 292, + 194, + 1408, + 194, + 1408, + 2045, + 292, + 2045 + ], + "score": 0.567 + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 815.0, + 72.0, + 815.0, + 109.0, + 296.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 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, + 227.0, + 1404.0, + 227.0, + 1404.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 258.0, + 906.0, + 258.0, + 906.0, + 294.0, + 320.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 304.0, + 1404.0, + 304.0, + 1404.0, + 347.0, + 292.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 337.0, + 516.0, + 337.0, + 516.0, + 370.0, + 322.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 382.0, + 1404.0, + 382.0, + 1404.0, + 422.0, + 292.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 414.0, + 620.0, + 414.0, + 620.0, + 447.0, + 320.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 463.0, + 1406.0, + 463.0, + 1406.0, + 496.0, + 296.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 490.0, + 780.0, + 490.0, + 780.0, + 524.0, + 318.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 540.0, + 1300.0, + 540.0, + 1300.0, + 573.0, + 296.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 589.0, + 1406.0, + 589.0, + 1406.0, + 622.0, + 296.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 618.0, + 722.0, + 618.0, + 722.0, + 650.0, + 322.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 666.0, + 1402.0, + 666.0, + 1402.0, + 699.0, + 294.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 691.0, + 1240.0, + 691.0, + 1240.0, + 727.0, + 316.0, + 727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 739.0, + 1408.0, + 739.0, + 1408.0, + 778.0, + 294.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 770.0, + 736.0, + 770.0, + 736.0, + 802.0, + 320.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 819.0, + 1404.0, + 819.0, + 1404.0, + 851.0, + 296.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 845.0, + 888.0, + 845.0, + 888.0, + 878.0, + 322.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 896.0, + 1406.0, + 896.0, + 1406.0, + 928.0, + 296.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 924.0, + 1180.0, + 924.0, + 1180.0, + 957.0, + 322.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 973.0, + 1402.0, + 973.0, + 1402.0, + 1006.0, + 296.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1002.0, + 516.0, + 1002.0, + 516.0, + 1034.0, + 320.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1050.0, + 1402.0, + 1050.0, + 1402.0, + 1083.0, + 294.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1079.0, + 766.0, + 1079.0, + 766.0, + 1111.0, + 322.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1122.0, + 1406.0, + 1122.0, + 1406.0, + 1162.0, + 292.0, + 1162.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1152.0, + 1288.0, + 1152.0, + 1288.0, + 1189.0, + 318.0, + 1189.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1197.0, + 1410.0, + 1197.0, + 1410.0, + 1243.0, + 290.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1231.0, + 1088.0, + 1231.0, + 1088.0, + 1264.0, + 322.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1274.0, + 1404.0, + 1274.0, + 1404.0, + 1315.0, + 292.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1304.0, + 778.0, + 1304.0, + 778.0, + 1341.0, + 318.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1353.0, + 1406.0, + 1353.0, + 1406.0, + 1392.0, + 294.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1386.0, + 1264.0, + 1386.0, + 1264.0, + 1418.0, + 322.0, + 1418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1428.0, + 1406.0, + 1428.0, + 1406.0, + 1469.0, + 290.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1457.0, + 1406.0, + 1457.0, + 1406.0, + 1498.0, + 318.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1487.0, + 600.0, + 1487.0, + 600.0, + 1520.0, + 326.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1538.0, + 1404.0, + 1538.0, + 1404.0, + 1571.0, + 294.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1565.0, + 1030.0, + 1565.0, + 1030.0, + 1599.0, + 318.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1611.0, + 1404.0, + 1611.0, + 1404.0, + 1650.0, + 294.0, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1644.0, + 1402.0, + 1644.0, + 1402.0, + 1676.0, + 322.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1672.0, + 346.0, + 1672.0, + 346.0, + 1699.0, + 324.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1719.0, + 1404.0, + 1719.0, + 1404.0, + 1752.0, + 296.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1747.0, + 1404.0, + 1747.0, + 1404.0, + 1780.0, + 322.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1774.0, + 720.0, + 1774.0, + 720.0, + 1806.0, + 324.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1819.0, + 1404.0, + 1819.0, + 1404.0, + 1859.0, + 292.0, + 1859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1849.0, + 1294.0, + 1849.0, + 1294.0, + 1886.0, + 320.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1898.0, + 1406.0, + 1898.0, + 1406.0, + 1936.0, + 294.0, + 1936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1924.0, + 826.0, + 1924.0, + 826.0, + 1965.0, + 318.0, + 1965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1973.0, + 1404.0, + 1973.0, + 1404.0, + 2014.0, + 290.0, + 2014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 2006.0, + 880.0, + 2006.0, + 880.0, + 2038.0, + 324.0, + 2038.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.878 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.83 + }, + { + "category_id": 1, + "poly": [ + 293, + 206, + 1407, + 206, + 1407, + 1266, + 293, + 1266 + ], + "score": 0.797 + }, + { + "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, + 870.0, + 2085.0, + 870.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 226.0, + 1405.0, + 226.0, + 1405.0, + 270.0, + 292.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 262.0, + 1065.0, + 262.0, + 1065.0, + 292.0, + 323.0, + 292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 306.0, + 1405.0, + 306.0, + 1405.0, + 346.0, + 294.0, + 346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 339.0, + 1013.0, + 339.0, + 1013.0, + 367.0, + 321.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 385.0, + 1404.0, + 385.0, + 1404.0, + 422.0, + 295.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 416.0, + 1138.0, + 416.0, + 1138.0, + 448.0, + 320.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 465.0, + 1406.0, + 465.0, + 1406.0, + 500.0, + 296.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 492.0, + 1405.0, + 492.0, + 1405.0, + 526.0, + 320.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 518.0, + 375.0, + 518.0, + 375.0, + 555.0, + 319.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 570.0, + 1405.0, + 570.0, + 1405.0, + 605.0, + 296.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 597.0, + 1406.0, + 597.0, + 1406.0, + 631.0, + 320.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 630.0, + 343.0, + 630.0, + 343.0, + 651.0, + 324.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 675.0, + 1404.0, + 675.0, + 1404.0, + 710.0, + 296.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 703.0, + 1004.0, + 703.0, + 1004.0, + 739.0, + 321.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 748.0, + 1405.0, + 748.0, + 1405.0, + 790.0, + 294.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 782.0, + 756.0, + 782.0, + 756.0, + 811.0, + 323.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 828.0, + 1404.0, + 828.0, + 1404.0, + 863.0, + 294.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 856.0, + 1405.0, + 856.0, + 1405.0, + 892.0, + 320.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 886.0, + 615.0, + 886.0, + 615.0, + 917.0, + 323.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 934.0, + 1405.0, + 934.0, + 1405.0, + 972.0, + 294.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 963.0, + 501.0, + 963.0, + 501.0, + 995.0, + 324.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1011.0, + 1403.0, + 1011.0, + 1403.0, + 1045.0, + 294.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1040.0, + 820.0, + 1040.0, + 820.0, + 1075.0, + 321.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1088.0, + 1404.0, + 1088.0, + 1404.0, + 1126.0, + 295.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1119.0, + 1404.0, + 1119.0, + 1404.0, + 1152.0, + 320.0, + 1152.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1149.0, + 344.0, + 1149.0, + 344.0, + 1172.0, + 324.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1192.0, + 1406.0, + 1192.0, + 1406.0, + 1232.0, + 292.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1225.0, + 1158.0, + 1225.0, + 1158.0, + 1256.0, + 320.0, + 1256.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 367, + 1405, + 367, + 1405, + 794, + 297, + 794 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 1358, + 1405, + 1358, + 1405, + 1634, + 297, + 1634 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1747, + 1404, + 1747, + 1404, + 1930, + 298, + 1930 + ], + "score": 0.976 + }, + { + "category_id": 3, + "poly": [ + 303, + 837, + 1403, + 837, + 1403, + 1154, + 303, + 1154 + ], + "score": 0.964 + }, + { + "category_id": 2, + "poly": [ + 324, + 1976, + 1386, + 1976, + 1386, + 2034, + 324, + 2034 + ], + "score": 0.944 + }, + { + "category_id": 4, + "poly": [ + 514, + 1180, + 1176, + 1180, + 1176, + 1214, + 514, + 1214 + ], + "score": 0.925 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.859 + }, + { + "category_id": 0, + "poly": [ + 301, + 228, + 448, + 228, + 448, + 261, + 301, + 261 + ], + "score": 0.858 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 104, + 300, + 104 + ], + "score": 0.853 + }, + { + "category_id": 0, + "poly": [ + 300, + 1296, + 674, + 1296, + 674, + 1327, + 300, + 1327 + ], + "score": 0.847 + }, + { + "category_id": 0, + "poly": [ + 299, + 1684, + 904, + 1684, + 904, + 1718, + 299, + 1718 + ], + "score": 0.833 + }, + { + "category_id": 0, + "poly": [ + 303, + 303, + 712, + 303, + 712, + 335, + 303, + 335 + ], + "score": 0.635 + }, + { + "category_id": 1, + "poly": [ + 303, + 303, + 712, + 303, + 712, + 335, + 303, + 335 + ], + "score": 0.275 + }, + { + "category_id": 13, + "poly": [ + 633, + 1573, + 726, + 1573, + 726, + 1604, + 633, + 1604 + ], + "score": 0.91, + "latex": "\\gamma = 0 . 5" + }, + { + "category_id": 13, + "poly": [ + 946, + 550, + 1158, + 550, + 1158, + 582, + 946, + 582 + ], + "score": 0.91, + "latex": "H \\times W \\times ( C - 1 )" + }, + { + "category_id": 13, + "poly": [ + 415, + 490, + 481, + 490, + 481, + 518, + 415, + 518 + ], + "score": 0.9, + "latex": "1 \\times 1" + }, + { + "category_id": 13, + "poly": [ + 679, + 1481, + 799, + 1481, + 799, + 1510, + 679, + 1510 + ], + "score": 0.9, + "latex": "5 1 3 \\times 5 1 3" + }, + { + "category_id": 13, + "poly": [ + 776, + 1573, + 873, + 1573, + 873, + 1602, + 776, + 1602 + ], + "score": 0.9, + "latex": "T = 0 . 5" + }, + { + "category_id": 13, + "poly": [ + 410, + 764, + 475, + 764, + 475, + 792, + 410, + 792 + ], + "score": 0.89, + "latex": "1 \\times 1" + }, + { + "category_id": 13, + "poly": [ + 451, + 703, + 610, + 703, + 610, + 733, + 451, + 733 + ], + "score": 0.89, + "latex": "( H \\times W \\times C )" + }, + { + "category_id": 13, + "poly": [ + 630, + 1392, + 664, + 1392, + 664, + 1418, + 630, + 1418 + ], + "score": 0.76, + "latex": "^ { 3 + }" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 834.0, + 906.0, + 834.0, + 906.0, + 867.0, + 817.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 860.0, + 468.0, + 860.0, + 468.0, + 881.0, + 445.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 858.0, + 696.0, + 858.0, + 696.0, + 893.0, + 601.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 856.0, + 773.0, + 856.0, + 773.0, + 878.0, + 708.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 857.0, + 892.0, + 857.0, + 892.0, + 890.0, + 832.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 876.0, + 546.0, + 876.0, + 546.0, + 896.0, + 524.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1262.0, + 874.0, + 1383.0, + 874.0, + 1383.0, + 904.0, + 1262.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 888.0, + 425.0, + 888.0, + 425.0, + 918.0, + 300.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 896.0, + 833.0, + 896.0, + 833.0, + 919.0, + 776.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 889.0, + 938.0, + 889.0, + 938.0, + 912.0, + 885.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 898.0, + 1403.0, + 898.0, + 1403.0, + 930.0, + 1242.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 913.0, + 399.0, + 913.0, + 399.0, + 943.0, + 329.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1307.0, + 933.0, + 1329.0, + 933.0, + 1329.0, + 954.0, + 1307.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 943.0, + 698.0, + 943.0, + 698.0, + 980.0, + 600.0, + 980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 950.0, + 891.0, + 950.0, + 891.0, + 976.0, + 838.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1352.0, + 962.0, + 1373.0, + 962.0, + 1373.0, + 982.0, + 1352.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 971.0, + 484.0, + 971.0, + 484.0, + 994.0, + 443.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 985.0, + 924.0, + 985.0, + 924.0, + 1018.0, + 891.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 986.0, + 1104.0, + 986.0, + 1104.0, + 1020.0, + 1008.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 983.0, + 1266.0, + 983.0, + 1266.0, + 1021.0, + 1150.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 1015.0, + 472.0, + 1015.0, + 472.0, + 1032.0, + 454.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 1015.0, + 496.0, + 1015.0, + 496.0, + 1025.0, + 483.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 1041.0, + 518.0, + 1041.0, + 518.0, + 1062.0, + 498.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 1059.0, + 416.0, + 1059.0, + 416.0, + 1089.0, + 312.0, + 1089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1299.0, + 1054.0, + 1317.0, + 1054.0, + 1317.0, + 1071.0, + 1299.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 1105.0, + 963.0, + 1105.0, + 963.0, + 1130.0, + 861.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 1134.0, + 460.0, + 1134.0, + 460.0, + 1151.0, + 444.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1969.0, + 1321.0, + 1969.0, + 1321.0, + 2006.0, + 328.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1996.0, + 1384.0, + 1996.0, + 1384.0, + 2041.0, + 327.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.0, + 1178.0, + 1178.0, + 1178.0, + 1178.0, + 1221.0, + 515.0, + 1221.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": [ + 297.0, + 227.0, + 454.0, + 227.0, + 454.0, + 267.0, + 297.0, + 267.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": [ + 293.0, + 1293.0, + 677.0, + 1293.0, + 677.0, + 1331.0, + 293.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1684.0, + 905.0, + 1684.0, + 905.0, + 1721.0, + 296.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 300.0, + 716.0, + 300.0, + 716.0, + 340.0, + 296.0, + 340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 366.0, + 1405.0, + 366.0, + 1405.0, + 402.0, + 296.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 396.0, + 1405.0, + 396.0, + 1405.0, + 434.0, + 294.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 427.0, + 1403.0, + 427.0, + 1403.0, + 464.0, + 294.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 459.0, + 1402.0, + 459.0, + 1402.0, + 494.0, + 294.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 489.0, + 414.0, + 489.0, + 414.0, + 522.0, + 294.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 482.0, + 489.0, + 1403.0, + 489.0, + 1403.0, + 522.0, + 482.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 520.0, + 1405.0, + 520.0, + 1405.0, + 553.0, + 292.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 549.0, + 945.0, + 549.0, + 945.0, + 584.0, + 295.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1159.0, + 549.0, + 1405.0, + 549.0, + 1405.0, + 584.0, + 1159.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 581.0, + 1403.0, + 581.0, + 1403.0, + 616.0, + 294.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 606.0, + 1406.0, + 606.0, + 1406.0, + 649.0, + 292.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 641.0, + 1403.0, + 641.0, + 1403.0, + 676.0, + 295.0, + 676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 673.0, + 1406.0, + 673.0, + 1406.0, + 705.0, + 296.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 700.0, + 450.0, + 700.0, + 450.0, + 739.0, + 294.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 700.0, + 1405.0, + 700.0, + 1405.0, + 739.0, + 611.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 729.0, + 1406.0, + 729.0, + 1406.0, + 771.0, + 292.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 759.0, + 409.0, + 759.0, + 409.0, + 801.0, + 294.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 476.0, + 759.0, + 1164.0, + 759.0, + 1164.0, + 801.0, + 476.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1356.0, + 1405.0, + 1356.0, + 1405.0, + 1394.0, + 294.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1386.0, + 629.0, + 1386.0, + 629.0, + 1424.0, + 292.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 665.0, + 1386.0, + 1405.0, + 1386.0, + 1405.0, + 1424.0, + 665.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1420.0, + 1402.0, + 1420.0, + 1402.0, + 1453.0, + 296.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1446.0, + 1407.0, + 1446.0, + 1407.0, + 1488.0, + 292.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1478.0, + 678.0, + 1478.0, + 678.0, + 1514.0, + 290.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 800.0, + 1478.0, + 1402.0, + 1478.0, + 1402.0, + 1514.0, + 800.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1508.0, + 1403.0, + 1508.0, + 1403.0, + 1546.0, + 295.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1542.0, + 1405.0, + 1542.0, + 1405.0, + 1574.0, + 295.0, + 1574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1569.0, + 632.0, + 1569.0, + 632.0, + 1608.0, + 292.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 1569.0, + 775.0, + 1569.0, + 775.0, + 1608.0, + 727.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 1569.0, + 1405.0, + 1569.0, + 1405.0, + 1608.0, + 874.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1605.0, + 472.0, + 1605.0, + 472.0, + 1636.0, + 295.0, + 1636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1746.0, + 1405.0, + 1746.0, + 1405.0, + 1783.0, + 293.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1779.0, + 1406.0, + 1779.0, + 1406.0, + 1814.0, + 294.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1809.0, + 1404.0, + 1809.0, + 1404.0, + 1845.0, + 294.0, + 1845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1838.0, + 1403.0, + 1838.0, + 1403.0, + 1875.0, + 293.0, + 1875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1870.0, + 1404.0, + 1870.0, + 1404.0, + 1905.0, + 294.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1900.0, + 452.0, + 1900.0, + 452.0, + 1933.0, + 293.0, + 1933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 300.0, + 716.0, + 300.0, + 716.0, + 340.0, + 296.0, + 340.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1294, + 1404, + 1294, + 1404, + 1571, + 297, + 1571 + ], + "score": 0.981 + }, + { + "category_id": 5, + "poly": [ + 455, + 1672, + 1242, + 1672, + 1242, + 1938, + 455, + 1938 + ], + "score": 0.979, + "html": "
MethodPixel-level labeled datamIoU (%)
FickleNet (Lee et al., 2019)64.9
IRNet (Ahn et al., 2019)63.5
OAA+ (Jiang et al., 2019)65.2
SEAM (Wang et al., 2020)64.5
MCIS (Sun et al., 2020)66.2
PseudoSeg (Ours)1/16 (92)71.22
" + }, + { + "category_id": 5, + "poly": [ + 414, + 823, + 1284, + 823, + 1284, + 982, + 414, + 982 + ], + "score": 0.977, + "html": "
MethodUsing image-level labelsSplit 1Split 2Split 3
Supervised56.0356.8755.92
PseudoSeg (Ours)167.0664.1266.09
PseudoSeg (Ours)71.2268.1169.72
" + }, + { + "category_id": 1, + "poly": [ + 300, + 1101, + 1404, + 1101, + 1404, + 1194, + 300, + 1194 + ], + "score": 0.973 + }, + { + "category_id": 3, + "poly": [ + 408, + 245, + 1284, + 245, + 1284, + 654, + 408, + 654 + ], + "score": 0.961 + }, + { + "category_id": 4, + "poly": [ + 298, + 686, + 1278, + 686, + 1278, + 750, + 298, + 750 + ], + "score": 0.931 + }, + { + "category_id": 6, + "poly": [ + 292, + 1604, + 1366, + 1604, + 1366, + 1668, + 292, + 1668 + ], + "score": 0.929 + }, + { + "category_id": 6, + "poly": [ + 591, + 784, + 1098, + 784, + 1098, + 818, + 591, + 818 + ], + "score": 0.915 + }, + { + "category_id": 0, + "poly": [ + 300, + 1041, + 810, + 1041, + 810, + 1073, + 300, + 1073 + ], + "score": 0.899 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 812, + 76, + 812, + 104, + 299, + 104 + ], + "score": 0.892 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.876 + }, + { + "category_id": 0, + "poly": [ + 298, + 1239, + 1002, + 1239, + 1002, + 1268, + 298, + 1268 + ], + "score": 0.865 + }, + { + "category_id": 2, + "poly": [ + 327, + 2004, + 1124, + 2004, + 1124, + 2035, + 327, + 2035 + ], + "score": 0.79 + }, + { + "category_id": 13, + "poly": [ + 1201, + 1163, + 1293, + 1163, + 1293, + 1195, + 1201, + 1195 + ], + "score": 0.91, + "latex": "\\gamma = 0 . 3" + }, + { + "category_id": 13, + "poly": [ + 1055, + 1163, + 1152, + 1163, + 1152, + 1192, + 1055, + 1192 + ], + "score": 0.9, + "latex": "T = 0 . 7" + }, + { + "category_id": 13, + "poly": [ + 792, + 603, + 855, + 603, + 855, + 646, + 792, + 646 + ], + "score": 0.86, + "latex": "( L _ { s a } )" + }, + { + "category_id": 13, + "poly": [ + 929, + 591, + 972, + 591, + 972, + 628, + 929, + 628 + ], + "score": 0.85, + "latex": "L _ { s a } \\mathrm { . }" + }, + { + "category_id": 13, + "poly": [ + 929, + 369, + 966, + 369, + 966, + 402, + 929, + 402 + ], + "score": 0.83, + "latex": "L _ { \\phantom { } _ { u } \\cdot }" + }, + { + "category_id": 13, + "poly": [ + 929, + 463, + 964, + 463, + 964, + 500, + 929, + 500 + ], + "score": 0.82, + "latex": "L _ { \\dot { x } } \\mathbf { . }" + }, + { + "category_id": 13, + "poly": [ + 930, + 305, + 965, + 305, + 965, + 341, + 930, + 341 + ], + "score": 0.8, + "latex": "L _ { \\dot { s } } ." + }, + { + "category_id": 13, + "poly": [ + 765, + 455, + 865, + 455, + 865, + 501, + 765, + 501 + ], + "score": 0.69, + "latex": "( L _ { s } { + } L _ { u } )" + }, + { + "category_id": 13, + "poly": [ + 433, + 478, + 580, + 478, + 580, + 523, + 433, + 523 + ], + "score": 0.49, + "latex": "( L _ { s } { + } L _ { u } { + } L _ { x } )" + }, + { + "category_id": 13, + "poly": [ + 654, + 250, + 708, + 250, + 708, + 294, + 654, + 294 + ], + "score": 0.42, + "latex": "( L _ { x } )" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 241.0, + 653.0, + 241.0, + 653.0, + 297.0, + 518.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 241.0, + 715.0, + 241.0, + 715.0, + 297.0, + 709.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 293.0, + 642.0, + 293.0, + 642.0, + 344.0, + 589.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 304.0, + 1214.0, + 304.0, + 1214.0, + 339.0, + 966.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 364.0, + 928.0, + 364.0, + 928.0, + 401.0, + 925.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 967.0, + 364.0, + 1284.0, + 364.0, + 1284.0, + 401.0, + 967.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 396.0, + 567.0, + 396.0, + 567.0, + 441.0, + 450.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 398.0, + 984.0, + 398.0, + 984.0, + 430.0, + 928.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 751.0, + 411.0, + 882.0, + 411.0, + 882.0, + 457.0, + 751.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 433.0, + 432.0, + 433.0, + 432.0, + 522.0, + 429.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 433.0, + 587.0, + 433.0, + 587.0, + 522.0, + 581.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 449.0, + 764.0, + 449.0, + 764.0, + 502.0, + 758.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 449.0, + 876.0, + 449.0, + 876.0, + 502.0, + 866.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 462.0, + 1217.0, + 462.0, + 1217.0, + 497.0, + 965.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 492.0, + 1246.0, + 492.0, + 1246.0, + 527.0, + 927.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 525.0, + 1190.0, + 525.0, + 1190.0, + 557.0, + 928.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 591.0, + 791.0, + 591.0, + 791.0, + 650.0, + 597.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 591.0, + 864.0, + 591.0, + 864.0, + 650.0, + 856.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 589.0, + 1227.0, + 589.0, + 1227.0, + 628.0, + 973.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.25, + 484.5, + 812.25, + 484.5, + 812.25, + 501.5, + 786.25, + 501.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 683.0, + 1279.0, + 683.0, + 1279.0, + 724.0, + 292.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 718.0, + 524.0, + 718.0, + 524.0, + 752.0, + 294.0, + 752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1603.0, + 1371.0, + 1603.0, + 1371.0, + 1639.0, + 296.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1631.0, + 1335.0, + 1631.0, + 1335.0, + 1673.0, + 293.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 780.0, + 1103.0, + 780.0, + 1103.0, + 824.0, + 586.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1040.0, + 813.0, + 1040.0, + 813.0, + 1077.0, + 294.0, + 1077.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": [ + 832.0, + 2085.0, + 871.0, + 2085.0, + 871.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1236.0, + 1005.0, + 1236.0, + 1005.0, + 1271.0, + 294.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1999.0, + 1127.0, + 1999.0, + 1127.0, + 2040.0, + 330.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1296.0, + 1402.0, + 1296.0, + 1402.0, + 1329.0, + 295.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1324.0, + 1404.0, + 1324.0, + 1404.0, + 1363.0, + 294.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1354.0, + 1405.0, + 1354.0, + 1405.0, + 1396.0, + 291.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1385.0, + 1404.0, + 1385.0, + 1404.0, + 1425.0, + 292.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1415.0, + 1406.0, + 1415.0, + 1406.0, + 1453.0, + 292.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1448.0, + 1405.0, + 1448.0, + 1405.0, + 1485.0, + 294.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1478.0, + 1406.0, + 1478.0, + 1406.0, + 1515.0, + 294.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1508.0, + 1405.0, + 1508.0, + 1405.0, + 1544.0, + 292.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1541.0, + 653.0, + 1541.0, + 653.0, + 1574.0, + 295.0, + 1574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1099.0, + 1406.0, + 1099.0, + 1406.0, + 1135.0, + 293.0, + 1135.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": [ + 296.0, + 1163.0, + 1054.0, + 1163.0, + 1054.0, + 1197.0, + 296.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 1163.0, + 1200.0, + 1163.0, + 1200.0, + 1197.0, + 1153.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1294.0, + 1163.0, + 1302.0, + 1163.0, + 1302.0, + 1197.0, + 1294.0, + 1197.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 299, + 1594, + 1398, + 1594, + 1398, + 1826, + 299, + 1826 + ], + "score": 0.98, + "html": "
Class Pixel ratio (%)Road 36.36Sidewalk 5.61Building 20.99Wall 0.53Fence 0.98Pole 1.19Traffic light 0.14Traffic sign 0.51Vegetation 19.61Terrain 1.29
Supervised PseudoSeg (Ours)96.0371.2687.5319.7529.1152.1950.1968.0989.9345.79
96.6475.0688.6319.6734.0951.7558.1969.9590.4350.48
ClassSkyPersonRiderCarTruckBusTrainMotorcycleBicycle
Pixel ratio (%)3.701.100.166.490.380.130.230.060.54
Supervised91.0174.1243.9189.917.6814.1917.7825.8669.88
PseudoSeg (Ours)92.9975.1646.0991.6020.3926.3022.1343.9671.30
" + }, + { + "category_id": 1, + "poly": [ + 297, + 913, + 1404, + 913, + 1404, + 1126, + 297, + 1126 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 779, + 1403, + 779, + 1403, + 903, + 297, + 903 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 1850, + 1403, + 1850, + 1403, + 2035, + 297, + 2035 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 297, + 286, + 1404, + 286, + 1404, + 409, + 297, + 409 + ], + "score": 0.969 + }, + { + "category_id": 5, + "poly": [ + 449, + 1188, + 1239, + 1188, + 1239, + 1315, + 449, + 1315 + ], + "score": 0.969, + "html": "
Method1/4 (744)1/8 (372)1/30 (100)
CutMix (French et al., 2020)68.3365.8255.71
PseudoSeg (Ours)72.3669.8160.96
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1344, + 1405, + 1344, + 1405, + 1500, + 297, + 1500 + ], + "score": 0.968 + }, + { + "category_id": 5, + "poly": [ + 643, + 472, + 1048, + 472, + 1048, + 689, + 643, + 689 + ], + "score": 0.968, + "html": "
Temperature (T)mIoU (%)
0.171.11
0.370.11
0.5 (default)71.22
0.772.37
1.0 (no sharpening)68.15
" + }, + { + "category_id": 6, + "poly": [ + 291, + 1525, + 1316, + 1525, + 1316, + 1588, + 291, + 1588 + ], + "score": 0.924 + }, + { + "category_id": 0, + "poly": [ + 300, + 722, + 720, + 722, + 720, + 754, + 300, + 754 + ], + "score": 0.907 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.9 + }, + { + "category_id": 6, + "poly": [ + 344, + 1149, + 1350, + 1149, + 1350, + 1182, + 344, + 1182 + ], + "score": 0.894 + }, + { + "category_id": 6, + "poly": [ + 622, + 432, + 1076, + 432, + 1076, + 465, + 622, + 465 + ], + "score": 0.886 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.859 + }, + { + "category_id": 0, + "poly": [ + 309, + 231, + 1045, + 231, + 1045, + 261, + 309, + 261 + ], + "score": 0.464 + }, + { + "category_id": 13, + "poly": [ + 644, + 349, + 724, + 349, + 724, + 377, + 644, + 377 + ], + "score": 0.9, + "latex": "T < 1" + }, + { + "category_id": 13, + "poly": [ + 920, + 1037, + 954, + 1037, + 954, + 1065, + 920, + 1065 + ], + "score": 0.7, + "latex": "^ { 3 + }" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1523.0, + 1321.0, + 1523.0, + 1321.0, + 1563.0, + 294.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1557.0, + 496.0, + 1557.0, + 496.0, + 1590.0, + 296.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 722.0, + 722.0, + 722.0, + 722.0, + 758.0, + 296.0, + 758.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": [ + 344.0, + 1148.0, + 1356.0, + 1148.0, + 1356.0, + 1186.0, + 344.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 427.0, + 1081.0, + 427.0, + 1081.0, + 469.0, + 617.0, + 469.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": [ + 299.0, + 229.0, + 1050.0, + 229.0, + 1050.0, + 265.0, + 299.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 912.0, + 1405.0, + 912.0, + 1405.0, + 946.0, + 297.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 941.0, + 1407.0, + 941.0, + 1407.0, + 979.0, + 294.0, + 979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 971.0, + 1406.0, + 971.0, + 1406.0, + 1011.0, + 292.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1005.0, + 1404.0, + 1005.0, + 1404.0, + 1035.0, + 296.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1034.0, + 919.0, + 1034.0, + 919.0, + 1068.0, + 295.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 1034.0, + 1404.0, + 1034.0, + 1404.0, + 1068.0, + 955.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1065.0, + 1405.0, + 1065.0, + 1405.0, + 1099.0, + 292.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1095.0, + 375.0, + 1095.0, + 375.0, + 1128.0, + 292.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 780.0, + 1403.0, + 780.0, + 1403.0, + 813.0, + 295.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 807.0, + 1407.0, + 807.0, + 1407.0, + 847.0, + 292.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 839.0, + 1407.0, + 839.0, + 1407.0, + 876.0, + 292.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 869.0, + 1126.0, + 869.0, + 1126.0, + 906.0, + 291.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1850.0, + 1405.0, + 1850.0, + 1405.0, + 1885.0, + 295.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1879.0, + 1408.0, + 1879.0, + 1408.0, + 1922.0, + 292.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1912.0, + 1404.0, + 1912.0, + 1404.0, + 1948.0, + 295.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1942.0, + 1407.0, + 1942.0, + 1407.0, + 1978.0, + 295.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1972.0, + 1405.0, + 1972.0, + 1405.0, + 2007.0, + 295.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2002.0, + 1405.0, + 2002.0, + 1405.0, + 2038.0, + 295.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 286.0, + 1404.0, + 286.0, + 1404.0, + 321.0, + 295.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 316.0, + 1404.0, + 316.0, + 1404.0, + 352.0, + 294.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 346.0, + 643.0, + 346.0, + 643.0, + 385.0, + 291.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 725.0, + 346.0, + 1405.0, + 346.0, + 1405.0, + 385.0, + 725.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 377.0, + 417.0, + 377.0, + 417.0, + 412.0, + 294.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1346.0, + 1403.0, + 1346.0, + 1403.0, + 1379.0, + 296.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1374.0, + 1405.0, + 1374.0, + 1405.0, + 1411.0, + 295.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1403.0, + 1403.0, + 1403.0, + 1403.0, + 1442.0, + 294.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1434.0, + 1405.0, + 1434.0, + 1405.0, + 1473.0, + 294.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1466.0, + 1227.0, + 1466.0, + 1227.0, + 1503.0, + 295.0, + 1503.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 386, + 1403, + 386, + 1403, + 510, + 299, + 510 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 295, + 229, + 1400, + 229, + 1400, + 293, + 295, + 293 + ], + "score": 0.93 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.875 + }, + { + "category_id": 0, + "poly": [ + 300, + 330, + 621, + 330, + 621, + 362, + 300, + 362 + ], + "score": 0.841 + }, + { + "category_id": 2, + "poly": [ + 836, + 2089, + 865, + 2089, + 865, + 2112, + 836, + 2112 + ], + "score": 0.836 + }, + { + "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, + 330.0, + 626.0, + 330.0, + 626.0, + 366.0, + 294.0, + 366.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": [ + 293.0, + 381.0, + 1405.0, + 381.0, + 1405.0, + 426.0, + 293.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 419.0, + 1404.0, + 419.0, + 1404.0, + 452.0, + 295.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 448.0, + 1405.0, + 448.0, + 1405.0, + 483.0, + 294.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 478.0, + 970.0, + 478.0, + 970.0, + 513.0, + 294.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 226.0, + 1404.0, + 226.0, + 1404.0, + 267.0, + 293.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 258.0, + 672.0, + 258.0, + 672.0, + 300.0, + 294.0, + 300.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 15, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 299, + 211, + 1390, + 211, + 1390, + 1997, + 299, + 1997 + ], + "score": 0.962 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 812, + 76, + 812, + 104, + 299, + 104 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 865, + 2087, + 865, + 2113, + 835, + 2113 + ], + "score": 0.831 + }, + { + "category_id": 4, + "poly": [ + 287, + 2022, + 1367, + 2022, + 1367, + 2084, + 287, + 2084 + ], + "score": 0.796 + }, + { + "category_id": 1, + "poly": [ + 287, + 2022, + 1367, + 2022, + 1367, + 2084, + 287, + 2084 + ], + "score": 0.13 + }, + { + "category_id": 15, + "poly": [ + 547.0, + 1018.0, + 566.0, + 1018.0, + 566.0, + 1035.0, + 547.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 1481.0, + 1052.0, + 1481.0, + 1052.0, + 1719.0, + 747.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 1614.0, + 691.0, + 1614.0, + 691.0, + 1665.0, + 606.0, + 1665.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": [ + 832.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2020.0, + 1363.0, + 2020.0, + 1363.0, + 2056.0, + 294.0, + 2056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2053.0, + 643.0, + 2053.0, + 643.0, + 2087.0, + 294.0, + 2087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2020.0, + 1363.0, + 2020.0, + 1363.0, + 2056.0, + 294.0, + 2056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2053.0, + 643.0, + 2053.0, + 643.0, + 2087.0, + 294.0, + 2087.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 16, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 298, + 223, + 1389, + 223, + 1389, + 1954, + 298, + 1954 + ], + "score": 0.96 + }, + { + "category_id": 4, + "poly": [ + 294, + 1961, + 1388, + 1961, + 1388, + 2055, + 294, + 2055 + ], + "score": 0.947 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 812, + 76, + 812, + 105, + 299, + 105 + ], + "score": 0.888 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.853 + }, + { + "category_id": 15, + "poly": [ + 678.0, + 276.0, + 710.0, + 276.0, + 710.0, + 329.0, + 678.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1348.0, + 326.0, + 1370.0, + 326.0, + 1370.0, + 350.0, + 1348.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1268.0, + 1479.0, + 1277.0, + 1479.0, + 1277.0, + 1489.0, + 1268.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1281.0, + 1489.0, + 1309.0, + 1489.0, + 1309.0, + 1512.0, + 1281.0, + 1512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 763.0, + 1853.0, + 784.0, + 1853.0, + 784.0, + 1880.0, + 763.0, + 1880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1919.0, + 437.0, + 1919.0, + 437.0, + 1961.0, + 365.0, + 1961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 1924.0, + 702.0, + 1924.0, + 702.0, + 1960.0, + 542.0, + 1960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 771.0, + 1922.0, + 914.0, + 1922.0, + 914.0, + 1954.0, + 771.0, + 1954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 1922.0, + 1390.0, + 1922.0, + 1390.0, + 1956.0, + 966.0, + 1956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 669.0, + 324.5, + 713.0, + 324.5, + 713.0, + 345.5, + 669.0, + 345.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 607.0, + 1471.5, + 628.0, + 1471.5, + 628.0, + 1500.5, + 607.0, + 1500.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 1470.0, + 1100.0, + 1470.0, + 1100.0, + 1517.5, + 1039.0, + 1517.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1959.0, + 1392.0, + 1959.0, + 1392.0, + 1997.0, + 294.0, + 1997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1991.0, + 1366.0, + 1991.0, + 1366.0, + 2026.0, + 294.0, + 2026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2020.0, + 426.0, + 2020.0, + 426.0, + 2056.0, + 293.0, + 2056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 70.0, + 816.0, + 70.0, + 816.0, + 110.0, + 293.0, + 110.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": "" + } + ], + "page_info": { + "page_no": 17, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/E4PK0rg2eP/E4PK0rg2eP.md b/parse/train/E4PK0rg2eP/E4PK0rg2eP.md new file mode 100644 index 0000000000000000000000000000000000000000..6c2858be4cbdd9f1fd0ea45ddf7b00f0121f7b1e --- /dev/null +++ b/parse/train/E4PK0rg2eP/E4PK0rg2eP.md @@ -0,0 +1,328 @@ +# PARAMETER-EFFICIENT TRANSFER LEARNING WITH DIFF PRUNING + +Anonymous authors Paper under double-blind review + +# ABSTRACT + +While task-specific finetuning of deep networks pretrained with self-supervision has led to significant empirical advances in NLP, their large size makes the standard finetuning approach difficult to apply to multi-task, memory-constrained settings, as storing the full model parameters for each task become prohibitively expensive. We propose diff pruning as a simple approach to enable parameterefficient transfer learning within the pretrain-finetune framework. This approach views finetuning as learning a task-specific “diff” vector that is applied on top of the pretrained parameter vector, which remains fixed and is shared across different tasks. The diff vector is adaptively pruned during training with a differentiable approximation to the $L _ { 0 }$ -norm penalty to encourage sparsity. Diff pruning becomes parameter-efficient as the number of tasks increases, as it requires storing only the nonzero positions and weights of the diff vector for each task, while the cost of storing the shared pretrained model remains constant. We find that models finetuned with diff pruning can match the performance of fully finetuned baselines on the GLUE benchmark while only modifying $0 . 5 \%$ of the pretrained model’s parameters per task. + +# 1 INTRODUCTION + +Task-specific finetuning of pretrained deep networks has become the dominant paradigm in contemporary NLP, achieving state-of-the-art results across a suite of natural language understanding tasks (Devlin et al., 2019; Liu et al., 2019c; Yang et al., 2019; Lan et al., 2020). While straightforward and empirically effective, this approach is difficult to scale to multi-task, memory-constrained settings (e.g. for on-device applications), as it requires shipping and storing a full set of model parameters for each task. Inasmuch as these models are learning generalizable, task-agnostic language representations through self-supervised pretraining, finetuning the entire model for each task is an especially inefficient use of model parameters. + +A popular approach to parameter-efficiency is to learn sparse models for each task where a subset of the final model parameters are exactly zero (Gordon et al., 2020; Sajjad et al., 2020; Zhao et al., 2020; Sanh et al., 2020). Such approaches often face a steep sparsity/performance tradeoff, and a substantial portion of nonzero parameters (e.g. $10 \% { - } 3 0 \% )$ ) are still typically required to match the performance of the dense counterparts. An alternative is to use multi-task learning or feature-based transfer for more parameter-efficient transfer learning with pretrained models (Liu et al., 2019b; Clark et al., 2019; Stickland & Murray, 2019; Reimers & Gurevych, 2019; Feng et al., 2020). These methods learn only a small number of additional parameters (e.g. a linear layer) on top of a shared model. However, multi-task learning generally requires access to all tasks during training to prevent catastrophic forgetting (French, 1999), while feature-based transfer learning (e.g. based on taskagnostic sentence representations) is typically outperformed by full finetuning (Howard & Ruder, 2018). + +Adapters (Rebuffi et al., 2018) have recently emerged as a promising approach to parameterefficient transfer learning within the pretrain-finetune paradigm (Houlsby et al., 2019; Pfeiffer et al., 2020a;b;c). Adapter layers are smaller, task-specific modules that are inserted between layers of a pretrained model, which remains fixed and is shared across tasks. These approaches do not require access to all tasks during training making them attractive in settings where one hopes to obtain and share performant models as new tasks arrive in stream. Houlsby et al. (2019) find that adapter layers trained on BERT can match the performance of fully finetuned BERT on the GLUE benchmark (Wang et al., 2019a) while only requiring $3 . 6 \%$ additional parameters (on average) per task. + +In this work, we consider a similar setting as adapters but propose a new diff pruning approach with the goal of even more parameter-efficient transfer learning. Diff pruning views finetuning as learning a task-specific difference vector that is applied on top of the pretrained parameter vector, which remains fixed and is shared across different tasks. In order to learn this vector, we reparameterize the task-specific model parameters as $\theta _ { \mathrm { t a s k } } = \theta _ { \mathrm { p r e t r a i n e d } } + \delta _ { \mathrm { t a s k } }$ , where the pretrained parameter vector $\theta _ { \mathrm { p r e t r a i n e d } }$ is fixed and the task-specific diff vector $\delta _ { \mathrm { t a s k } }$ is finetuned. The diff vector is regularized with a differentiable approximation to the $L _ { 0 }$ -norm penalty (Louizos et al., 2018) to encourage sparsity. This approach can become parameter-efficient as the number of tasks increases as it only requires storing the nonzero positions and weights of the diff vector for each task. The cost of storing the shared pretrained model remains constant and is amortized across multiple tasks. On the GLUE benchmark (Wang et al., 2019a), diff pruning can match the performance of the fully finetuned BERT baselines while finetuning only $0 . 5 \%$ of the pretrained parameters per task, making it a potential alternative to adapters for parameter-efficient transfer learning. + +# 2 BACKGROUND: TRANSFER LEARNING FOR NLP + +The field of NLP has recently seen remarkable progress through transfer learning with a pretrainand-finetune paradigm, which initializes a subset of the model parameters for all tasks from a pretrained model and then finetunes on a task specific objective. Pretraining objectives include context prediction (Mikolov et al., 2013), autoencoding (Dai & Le, 2015), machine translation (McCann et al., 2017), and more recently, variants of language modeling (Peters et al., 2018; Radford et al., 2018; Devlin et al., 2019) objectives. + +Here we consider applying transfer learning to multiple tasks. We consider a setting with a potentially unknown set of tasks, where each $\tau \in \mathcal { T }$ has an associated training set $\{ x _ { \tau } ^ { ( n ) } , y _ { \tau } ^ { ( n ) } \} _ { n = 1 } ^ { N }$ 1 For . all tasks, the goal is to produce (possibly tied) model parameters to minimize the empirical risk, + +$$ +\operatorname* { m i n } _ { \pmb { \theta } _ { \tau } } \ \frac { 1 } { N } \sum _ { n = 1 } ^ { N } \mathcal { L } \left( f ( x _ { \tau } ^ { ( n ) } ; \pmb { \theta } _ { \tau } ) , y _ { \tau } ^ { ( n ) } \right) + \lambda R ( \pmb { \theta } _ { \tau } ) +$$ + +where $f ( \cdot ; \pmb \theta )$ is a parameterized function over the input (e.g. a neural network), $\mathcal L ( \cdot , \cdot )$ is a loss function (e.g. cross-entropy), and $R ( \cdot )$ is an optional regularizer with hyperparameter $\lambda$ . + +This multi-task setting can use the pretrain-then-finetune approach by simply learning independent parameters for each task; however the large size of pretrained models makes this approach exceedingly parameter inefficient. For example, widely-adopted models such as BERTBASE and BERTLARGE have 110M and 340M parameters respectively, while their contemporaries such as T5 (Raffel et al., 2020), Megatron-LM (Shoeybi et al., 2019), and Turing-NLG (Rajbhandari et al., 2019) have parameter counts in the billions. Storing the fully finetuned models becomes difficult even for a moderate number of tasks.2 A classic approach to tackling this parameterinefficiency (Caruana, 1997) is to train a single shared model (along with a task-specific output layer) against multiple tasks through joint training. However, the usual formulation of multi-task learning requires the set of tasks $\tau$ to be known in advance in order to prevent catastrophic forgetting (French, 1999),3 making it unsuitable for applications in which the set of tasks is unknown (e.g. when tasks arrive in stream). + +# 3 DIFF PRUNING + +Diff pruning formulates task-specific finetuning as learning a diff vector $\delta _ { \tau }$ that is added to the pretrained model parameters $\theta _ { \mathrm { p r e t r a i n e d } }$ . We first reparameterize the task-specific model parameters, + +$$ +\begin{array} { r } { \pmb { \theta } _ { \tau } = \pmb { \theta } _ { \mathrm { p r e t r a i n e d } } + \delta _ { \tau } , } \end{array} +$$ + +which results in the following empirical risk minimization problem, + +$$ +\operatorname* { m i n } _ { \delta _ { \tau } } \ \frac { 1 } { N } \sum _ { n = 1 } ^ { N } \mathcal { L } \left( f ( x _ { \tau } ^ { ( n ) } ; \theta _ { \mathrm { p r e t r a i n e d } } + \delta _ { \tau } ) , y _ { \tau } ^ { ( n ) } \right) + \lambda R ( \theta _ { \mathrm { p r e t r a i n e d } } + \delta _ { \tau } ) . +$$ + +This trivial reparameterization is equivalent to the original formulation. Its benefit comes in the multi-task setting where the cost of storing the pretrained parameters $\theta _ { \mathrm { p r e t r a i n e d } }$ is amortized across tasks, and the only marginal cost for new tasks is the diff vector. If we can regularize $\delta _ { \tau }$ to be sparse such that $\lVert \delta _ { \tau } \rVert _ { 0 } \ll \lVert \bar { \pmb { \theta } } _ { \mathrm { p r e t r a i n e d } } \rVert _ { 0 }$ , then this approach can become more parameter-efficient as the number of tasks increases. We can specify this goal with an $L _ { 0 }$ -norm penalty on the diff vector, + +$$ +R ( \theta _ { \mathrm { p r e t r a i n e d } } + \delta _ { \tau } ) = \| \pmb { \delta } _ { \tau } \| _ { 0 } = \sum _ { i = 1 } ^ { d } \mathbb { 1 } \{ \pmb { \delta } _ { \tau , i } \neq 0 \} . +$$ + +# 3.1 DIFFERENTIABLE APPROXIMATION TO THE $L _ { 0 }$ -NORM + +This regularizer is difficult to directly optimize as it is non-differentiable. In order to approximate this $L _ { 0 }$ objective, we follow the standard approach for gradient-based learning with $L _ { 0 }$ sparsity using a relaxed mask vector (Louizos et al., 2018). This approach involves relaxing a binary vector into continuous space, and then multiplying it with a dense weight vector to determine how much of the weight vector is applied during training. After training, the mask is deterministic and a large portion of the diff vector is true zero. + +To apply this method we first decompose $\delta _ { \tau }$ into a binary mask vector multiplied with a dense vector, + +$$ +\begin{array} { r } { \delta _ { \tau } = \mathbf { z } _ { \tau } \odot \mathbf { w } _ { \tau } , \qquad \mathbf { z } _ { \tau } \in \{ 0 , 1 \} ^ { d } , \mathbf { w } _ { \tau } \in \mathbb { R } ^ { d } } \end{array} +$$ + +We can now instead optimize an expectation with respect to ${ \bf z } _ { \tau }$ , whose distribution $p ( \mathbf { z } _ { \tau } ; \pmb { \alpha } _ { \tau } )$ is initially Bernoulli with parameters $\pmb { \alpha } _ { \tau }$ , + +$$ +\operatorname* { m i n } _ { \alpha _ { \tau } , \mathbf { w } _ { \tau } } \mathbb { E } _ { \mathbf { z } _ { \tau } \sim p ( \mathbf { z } _ { \tau } ; \alpha _ { \tau } ) } \left[ \frac { 1 } { N } \sum _ { n = 1 } ^ { N } \mathcal { L } \left( f ( x _ { \tau } ^ { ( n ) } ; \boldsymbol { \theta } _ { \mathrm { p r e t r a i n e d } } + \mathbf { z } _ { \tau } \odot \mathbf { w } _ { \tau } , ) , y _ { \tau } ^ { ( n ) } \right) + \lambda \lVert \delta _ { \tau } \rVert _ { 0 } \right] . +$$ + +This objective is still difficult in practice due to ${ \bf z } _ { \tau }$ ’s being discrete (which requires the score function gradient estimator), but the expectation provides some guidance for empirically effective relaxations. We follow prior work (Louizos et al., 2018; Wang et al., 2019b) and relax ${ \bf z } _ { \tau }$ into continuous space $[ 0 , 1 ] ^ { d }$ with a stretched Hard-Concrete distribution (Jang et al., 2017; Maddison et al., 2017), which allows for the use of pathwise gradient estimators. Specifically, ${ \bf z } _ { \tau }$ is now defined to be a deterministic and (sub)differentiable function of a sample $\mathbf { u }$ from a uniform distribution, + +$$ +\begin{array} { r } { \mathbf { u } \sim U ( \mathbf { 0 } , \mathbf { 1 } ) , \qquad \mathbf { s } _ { \tau } = \sigma \left( \log \mathbf { u } - \log ( 1 - \mathbf { u } ) + \alpha _ { \tau } \right) , } \\ { \bar { \mathbf { s } } _ { \tau } = \mathbf { s } _ { \tau } \times ( r - l ) + l , \qquad \mathbf { z } _ { \tau } = \operatorname* { m i n } ( \mathbf { 1 } , \operatorname* { m a x } ( \mathbf { 0 } , \bar { \mathbf { s } } _ { \tau } ) ) . } \end{array} +$$ + +Here $l < 0$ and $r > 1$ are two constants used to stretch ${ \bf s } _ { \tau }$ into the interval $( l , r ) ^ { d }$ before it is clamped to $[ 0 , 1 ] ^ { d }$ with the $\operatorname* { m i n } ( \mathbf { 1 } , \operatorname* { m a x } ( \mathbf { 0 } , \cdot ) )$ operation. In this case we have a differentiable closed-form expression for the expected $L _ { 0 }$ -norm, + +$$ +\mathbb { E } \left[ \left. \pmb { \delta } _ { \tau } \right. _ { 0 } \right] = \sum _ { i = 1 } ^ { d } \mathbb { E } \left[ \mathbb { 1 } \left\{ \mathbf { z } _ { \tau , i } > 0 \right\} \right] = \sum _ { i = 1 } ^ { d } \sigma \left( \alpha _ { \tau , i } - \log \frac { - l } { r } \right) . +$$ + +Thus the final optimization problem is given by, + +$\operatorname* { m i n } _ { \tau _ { \tau } , \mathbf { w } _ { \tau } } \mathbb { E } _ { \mathbf { u } \sim U [ \mathbf { 0 } , 1 ] } \left[ \frac { 1 } { N } \sum _ { n = 1 } ^ { N } \mathcal { L } \left( f ( x _ { \tau } ^ { ( n ) } ; \boldsymbol { \theta } _ { \mathrm { p r e r a i n e d } } + \mathbf { z } _ { \tau } \odot \mathbf { w } _ { \tau } , ) , y _ { \tau } ^ { ( n ) } \right) \right] + \lambda \sum _ { i = 1 } ^ { d } \sigma \left( \alpha _ { \tau , i } - \log \frac { - l } { r } \right) ,$ and we can now utilize pathwise gradient estimators to optimize the first term with respect to $\pmb { \alpha } _ { \tau }$ since the expectation no longer depends on it.4 After training we obtain the final diff vector $\delta _ { \tau }$ by sampling $\mathbf { u }$ once to obtain ${ \bf z } _ { \tau }$ (which is not necessarily a binary vector but has a significant number of dimensions equal to exactly zero due to the clamping function), then setting $\pmb { \delta } _ { \tau } = \mathbf { z } _ { \tau } \odot \mathbf { w } _ { \tau }$ . 5 + +3.2 $L _ { 0 }$ -BALL PROJECTION WITH MAGNITUDE PRUNING FOR SPARSITY CONTROL + +Differentiable $L _ { 0 }$ regularization provides a strong way to achieve high sparsity rate. However, it would be ideal to have more fine-grained control into the exact sparsity rate in the diff vector, especially considering applications which require specific parameter budgets. As $\lambda$ is just the Lagrangian multiplier for the constraint $\mathbb { E } \left[ \lVert \pmb { \delta } _ { \tau } \rVert _ { 0 } \right] < \eta$ for some $\eta$ , this could be achieved in principle by searching over different values of $\lambda$ . However we found it more efficient and empirically effective to achieve an exact sparsity rate by simply projecting onto the $L _ { 0 }$ -ball after training. + +Specifically we use magnitude pruning on the diff vector $\delta _ { \tau }$ and target a sparsity rate $t \%$ by only keeping the top $t \% \times \bar { d }$ values in $\delta _ { \tau }$ .6 Note that unlike standard magnitude pruning, this is based on the magnitude of the diff vector values and not the model parameters. As is usual in magnitude pruning, we found it important to further finetune $\delta _ { \tau }$ with the nonzero masks fixed to maintain good performance (Han et al., 2016). Since this type of parameter-efficiency through projection onto the $L _ { 0 }$ -ball can be applied without adaptive diff pruning,7 such an approach will serve as one of our baselines in the empirical study. + +# 3.3 STRUCTURED DIFF PRUNING + +Diff pruning, as presented above, is architecture-agnostic and does not exploit the underlying model structure—each dimension of ${ \bf z } _ { \tau }$ is independent from one another. While this makes the approach potentially more flexible, we might expect to achieve better sparsity/performance tradeoff through a structured formulation which encourages active parameters to group together and other areas to be fully sparse. Motivated by this intuition, we first partition the parameter indices into $G$ groups $\{ g ( 1 ) , \ldots , g ( G ) \}$ where $g ( j )$ is a subset of parameter indices governed by group $g ( j )$ .8 We then introduce a scalar $\mathbf { z } _ { \tau } ^ { j }$ (with the associated parameter $\alpha _ { \tau } ^ { j }$ ) for each group $g ( j )$ , and decompose the task-specific parameter for index $i \in g ( j )$ as $\begin{array} { r } { \delta _ { \tau , i } ^ { j } = \mathbf { z } _ { \tau , i } \times \mathbf { z } _ { \tau } ^ { j } \times \mathbf { w } _ { \tau , i } . } \end{array}$ The expected $L _ { 0 }$ -norm is then given by, + +$$ +\Sigma \left[ \left. \delta _ { \tau } \right. _ { 0 } \right] = \sum _ { j = 1 } ^ { G } \sum _ { i \in g ( j ) } \mathbb { E } \left[ \mathbb { I } \left\{ \mathbf { z } _ { \tau , i } \cdot \mathbf { z } _ { \tau } ^ { g } > 0 \right\} \right] = \sum _ { j = 1 } ^ { G } \sum _ { i \in g ( j ) } \sigma \left( \alpha _ { \tau , i } - \log { \frac { - l } { r } } \right) \times \sigma \left( \alpha _ { \tau } ^ { j } - \log { \frac { - l } { r } } \right) , +$$ + +and we can train with gradient-based optimization as before. + +# 4 EXPERIMENTS + +# 4.1 MODEL AND DATASETS + +For evaluation we use the GLUE benchmark (Wang et al., 2019b), a popular finetuning dataset. Following adapters (Houlsby et al., 2019), we test our approach on the following subset of the GLUE tasks: Multi-Genre Natural Language Inference (MNLI), where the goal is two predict whether the relationship between two sentences is entailment, contradiction, or neutral (we test on both $\mathrm { M N L L } \mathrm { I } _ { m }$ and $\mathrm { M N L I } _ { m m }$ which respectively tests on matched/mismatched domains); Quora Question Pairs (QQP), a classification task to predict whether two question are semantically equivalent; Question Natural Language Inference (QNLI), which must predict whether a sentence is a correct answer to the question; Stanford Sentiment Treebank (SST-2), a sentence classification task to predict the sentiment of movie reviews; Corpus of Linguistic Acceptability (CoLA), where the goal is predict whether a sentence is linguistically acceptable or not; Semantic Textual Similarity Benchmark (STS$\mathbf { B }$ ), which must predict a similarity rating between two sentences; Microsoft Research Paraphrase Corpus (MRPC), where the goal is to predict whether two sentences are semantically equivalent; Recognizing Textual Entailment (RTE), which must predict whether a second sentence is entailed by the first. For evaluation, the benchmark uses Matthew’s correlation for CoLA, Spearman for STS-B, $\mathrm { F _ { 1 } }$ score for MRPC/QQC, and accuracy for MNLI/QNLI/SST-2/RTE. + +
Total paramsNew params per taskQNLI*SST-2 MNLImMNLImmCoLA MRPC STS-B RTEQQPAvg
Full finetuning9.00×100%91.194.986.785.960.589.387.670.172.180.9
Adapters (8-256)1.32×3.6%90.794.084.985.159.589.586.971.571.880.4
Adapters (64)1.19×2.1%91.494.285.384.656.989.687.368.671.879.8
Full finetuning9.00×100%93.494.186.786.059.688.986.671.271.780.6
Last layer1.34×3.8%79.891.671.472.940.280.167.358.663.368.2
Non-adap. diff pruning1.05×0.5%89.793.684.984.851.281.578.261.568.675.5
Diff pruning1.05×0.5%92.993.885.785.660.587.083.568.170.679.4
Diff pruning (struct.)1.05×0.5%93.394.186.486.061.189.786.070.671.180.6
+ +Table 1: GLUE benchmark test server results with BERTLARGE models. (Top) Results with adapter bottleneck layers (brackets indicate the size of bottlenecks), taken from from Houlsby et al. (2019). (Bottom) Results from this work. ${ } ^ { * } \mathrm { Q N L I }$ results are not directly comparable across the two works as the GLUE benchmark has updated the test set since then. To make our results comparable the average column is calculated without QNLI. + +For all experiments, we use the BERTLARGE model from Devlin et al. (2019), which has 24 layers, 1024 hidden size, 16 attention heads, and 340M parameters. We use the Huggingface Transformer library (Wolf et al., 2019) to conduct our experiments. + +# 4.2 BASELINES + +We compare both structured and non-structured variants of diff pruning against the following baselines: Full finetuning, which fully finetunes $\mathrm { B E R T _ { L } }$ ARGE as usual; Last layer finetuning, which only finetunes the penultimate layer (along with the final output layer)9; Adapters from Houlsby et al. (2019), which train task-specific bottleneck layers between between each layer of a pretrained model, where parameter-efficiency can be controlled by varying the size of the bottleneck layers; and Non-adaptive diff pruning, which performs diff pruning just based on magnitude pruning (i.e., we obtain $\pmb { \theta } _ { \tau }$ through usual finetuning, set $\delta _ { \tau } = \pmb { \theta } _ { \tau } - \pmb { \theta } _ { \mathrm { p r e t r a i n e d } }$ , and then apply magnitude pruning followed by additional finetuning on $\delta _ { \tau }$ ). For diff pruning we set our target sparsity rate to $0 . 5 \%$ and investigate the effect of different target sparsity rates in section 5.1. + +# 4.3 IMPLEMENTATION DETAILS AND HYPERPARAMETERS + +Diff pruning introduces additional hyperparameters $l , r$ (for stretching the Hard-Concrete distribution) and $\lambda$ (for weighting the approximate $L _ { 0 }$ -norm penalty). We found $l = - 1 . 5 , r = 1 . 5 , \lambda =$ $1 . 2 5 \times 1 0 ^ { - 7 }$ to work well across all tasks. We also initialize the weight vector ${ \bf w } _ { \tau }$ to 0, and $\pmb { \alpha } _ { \tau }$ to a positive vector (we use 5) to encourage ${ \bf z } _ { \tau }$ to be close to 1 at the start of training. While we mainly experiment with BERTLARGE to compare against prior work with adapters (Houlsby et al., 2019), in preliminary experiments we found these hyperparameters to work for finetuning RoBERTa (Liu et al., $2 0 1 9 \mathrm { c }$ ) and XLNet (Yang et al., 2019) models as well. + +For all tasks we use a learning rate of $1 \times 1 0 ^ { - 5 }$ and perform a hyperparameter search over batch size $\in \{ 4 , 6 , 8 , 1 0 \}$ and the number of epochs $\in \{ 2 , 3 , 4 , 5 \}$ .10 However we found the default settings used for regular finetuning as suggested in the original BERT paper to work well for most tasks. Finetuning with the fixed mask after projecting onto the $L _ { 0 }$ -ball with magnitude pruning is done with a learning rate of $5 \times 1 0 ^ { - 5 }$ for 3 or 5 epochs (3 epochs for QNLI, SST-2, MNLI-m, MNLI-mm, CoLA, QQP, 5 epochs for MRPC, STS-B, RTE). Grouping for the structured version of diff pruning is based on the matrix/bias vectors (i.e. parameters that belong to the same matrix or bias vector are assumed to be in the same group), which results in 393 groups.1 + +# 5 RESULTS AND ANALYSIS + +Our main results on the GLUE benchmark are shown in Table 1. Structured diff pruning can match the performance of a fully finetuned BERTLARGE model while only requiring $0 . 5 \%$ additional parameters per task. Diff pruning without structured sparsity also performs well, though slightly worse than the structured approach. Non-adaptive diff pruning, which magnitude prunes the diff vector without learning the binary mask $\mathbf { z } _ { \tau }$ , performs significantly worse, indicating the importance of learning the masking vector. Compared to adapters, diff pruning obtains similar performance while requiring fewer parameters per task, making it a potential alternative for parameter-efficient transfer learning.12 We now perform a series of analysis experiments on the validation set. + +
Non-structuredPruned Diff GroupsStructured
#%#%
MRPC246.15213.2
STS-B256.44812.2
RTE287.15012.7
Avg25.76.550.012.7
+ +![](images/595b6e69a0b27f0e5a01c20b6b20af16c35c98e03db9d2bd1a18a59ee3317e0f.jpg) +Figure 1: (Left) Average performance on the GLUE validation set across different target sparsity rates for the different methods. (Right) Number of groups where all of the parameters in the group are fully zero for structured vs. non-structured diff pruning at $0 . 5 \%$ target sparsity. We group based on each matrix/bias vector, resulting in 393 groups in total. + +
Diff vector target sparsityQNLISST-2MNLImMNLImmCoLAMRPCSTS-BRTEQQPAvg
0.10%92.793.385.685.958.087.486.368.685.282.5
0.25%93.294.286.286.563.390.988.471.586.184.5
0.50%93.494.286.486.963.591.389.571.586.684.8
1.00%93.394.286.487.066.391.489.971.186.685.1
100%93.594.186.587.162.891.989.871.887.685.0
+ +Table 2: Structured diff pruning results on the validation set with different target sparsity rates. Average performance includes all 9 tasks. + +# 5.1 VARYING THE TARGET SPARSITY + +In Figure 1 (left), we plot results on the GLUE validation set averaged across all tasks at target sparsity rates of $0 . 1 \%$ , $0 . 2 5 \%$ , $0 . 5 \%$ , $1 . 0 \%$ for the different baselines. Structured diff pruning consistently outperforms non-structured and and non-adaptive variants across different sparsity rates. The advantage of adaptive methods becomes more pronounced at extreme sparsity rates. In Table 2, we report the breakdown of accuracy of structured diff pruning across different tasks and sparsity rates, where we observe that different tasks have different sensitivity to target sparsity rates. This suggests that we can obtain even greater parameter-efficiency through targeting task-specific sparsity rates in the diff vector. + +# 5.2 STRUCTURED VS. NON-STRUCTURED DIFF PRUNING + +Structured diff pruning introduces an additional mask per group, which encourages pruning of entire groups. This is less restrictive than traditional group sparsity techniques that have been used with $L _ { 0 }$ -norm relaxations which force all parameters in a group to share the same mask (Louizos et al., 2018; Wang et al., 2019b). However we still expect entire groups to be pruned out more often in the structured case, which might bias the learning process towards either eliminating completely or clustering together nonzero diffs. In Figure 1 (right), we indeed find that structured diff pruning leads to finetuned models that are much more likely to leave entire groups unchanged from their pretrained values (zero diffs). + +# 5.3 TASK-SPECIFIC SPARSITY + +Different layers of pretrained models have argued to encode different information (Liu et al., 2019a; Tenney et al., 2019). Given that each task will likely recruit different kinds of language phenomena embedded in the hidden layers, we hypothesize that diff pruning will modify different parts of the pretrained model through task-specific finetuning. Figure 2 shows the percentage of nonzero diff parameters attributable to the different layers for each task. We find that different tasks indeed modify different parts of the network, although there are some qualitative similarities between some tasks, for example between QNLI & QQP (both must encode questions), and MRPC & STS-B (both must predict similarity between sentences). The embedding layer is very sparsely modified for all tasks. While some of the variations in the sparsity distributions is due to simple randomness, we do observe some level of consistency over multiple runs of the same task, as shown in Figure 3 of the appendix. + +![](images/a2618320f9f0e0193cd71e3737c981cd5b834522d27110d75f63705a8284b8ae.jpg) + +Figure 2: Percentage of modified parameters attributable to each layer for different tasks at $0 . 5 \%$ target sparsity. The layers are ordered from earlier to later (i.e. the embedding layer is shown at the top). The $\mathbf { X }$ -axis for each plot goes from $0 \%$ to $20 \%$ . + +
QNLISST-2MNLImMNLImmCoLAMRPCSTS-BRTEQQPAvg
Sparsity1.5%0.6%0.8%0.8%1.6%2.4%3.3%0.7%0.6%1.4%
Performance93.894.086.286.863.191.989.771.886.584.9
With 0.5% sparsity93.494.286.486.963.591.389.571.586.684.8
+ +Table 3: (Top) Sparsity and performance before magnitude pruning on the validation set with structured diff pruning. (Bottom) Performance with $0 . 5 \%$ target sparsity. + +The ability to modify different parts of the pretrained model for each task could explain the improved parameter-efficiency of our approach compared to Houlsby et al. (2019)’s adapter layers, which can only read/write to the pretrained model at certain points of the computational graph.13 This potentially suggests that adapter layers with more fine-grained access into model internals (e.g. adapters for key/value/query transformations) might result in even greater parameter-efficiency. While left as future work, we also note that diff pruning can be applied in conjunction with adapters, which might further improve results. + +# 5.4 EFFECT OF $\mathrm { L } _ { 0 }$ -BALL PROJECTION VIA MAGNITUDE PRUNING + +Applying magnitude pruning to project onto the $\mathrm { L } _ { 0 }$ -ball was crucial in achieving exact sparsity targets. As shown in Table 3, we observed little loss in performance through magnitude pruning. We re-iterate that it was crucial to finetune with the fixed mask in order to maintain good performance.14 + +# 5.5 SQUAD EXTRACTIVE QUESTION ANSWERING + +To demonstrate the effectiveness of our approach beyond classification, we additionally experiment on the extractive question answering task SQuAD, which asks model to select the answer span to a question given a Wikipedia paragraph. To make direct comparisons with Houlsby et al. (2019), we run all experiments on SQuAD v1.1. For diff pruning, we use the same general hyper-parameters as our full finetuning baseline.15 Results are shown in Table 4. Diff pruning is able achieve comparable or better performance with only $1 \%$ additional parameters. Notably, we see that our method can improve the F1 score of full finetuning baseline by a significant margin (e.g. $9 0 . 8 \% \Rightarrow 9 3 . 2 \% )$ ) + +
SparsityF1
Full finetuning Adapters100% 2%90.7% 90.4%
Full finetuning100%90.8%
Diff pruning1%92.1%
Diff pruning (struct.)1%93.2%
+ +Table 4: SQuAD validation results with BERTLARGE model. + +while modifying many fewer parameters (e.g., $1 0 0 \% \Rightarrow 1 \%$ ), which potentially implies that diff pruning can have a useful regularization effect. + +# 6 DISCUSSION + +# 6.1 MEMORY REQUIREMENTS + +For training, our approach requires more memory than usual finetuning due to additionally optimizing $\pmb { \alpha } _ { \tau }$ and ${ \bf w } _ { \tau }$ . This did not present a significant challenge for pretrained models that we experimented with in this study, since majority of GPU memory was utilized by the minibatch’s activation layers. However, this could present an issue as model sizes get larger and larger. While training efficiency was not a primary concern of this work, diff pruning takes approxiamtely $1 . 5 \times$ to $2 \times$ more time per batch, which results in slower training. + +After training, storing the task-specific diff vector requires storing a compressed version with both the nonzero positions and weights, which incurs additional storage requirements. + +# 6.2 INFORMATION-EFFICIENT TRANSFER LEARNING + +Efficiently representing pretrained models adapted to new tasks is becoming an increasingly important problem in contemporary NLP. This paper focuses on a rather narrow definition of efficiency— parameter-efficiency. An interesting direction might be to target generalizations of parameterefficiency, for example, information-efficiency, which aims to minimize the number of bits required to represent the task-specific model when given the pretrained model for free. This view can suggest other avenues for achieving information-efficient transfer learning: for example, “what is the minimum number of (potentially synthetic) datapoints that we can finetune BERT on to obtain a good task-specific model?”,16 or “what is the shortest prefix string that we can condition GPT3 on for it to become a good task-specific model”? + +# 7 RELATED WORK + +Multi-task learning Multi-task learning (Caruana, 1997), broadly construed, aims to learn models and representations that can be utilized across a diverse range of tasks, and offers a natural approach to training parameter-efficient deep models. Several works have shown that a single BERT model can obtain good performance across multiple tasks when jointly trained (Liu et al., 2019b; Clark et al., 2019; Stickland & Murray, 2019). Adapter layers, which are task-specific layers that read and write to layers of a shared model (Rebuffi et al., 2018), offer an alternative approach to multi-task learning that does not require access to all tasks during training, and have also been applied to obtain parameter-efficient BERT models (Houlsby et al., 2019; Pfeiffer et al., 2020a;b;c). A related line of work targets extreme parameter-efficiency through task-agnostic sentence representations that can be used without finetuning for downstream tasks (Le & Mikolov, 2014; Kiros et al., 2015; Wieting et al., 2016; Hill et al., 2016; Arora et al., 2017; Conneau et al., 2017; Cer et al., 2018; Zhang et al., 2018; Subramanian et al., 2018; Zhang et al., 2020). Reimers & Gurevych (2019), building on the earlier work of Conneau et al. (2017), show that BERT finetuned on natural language inference obtains sentence representations that perform well across multiple sentence-level tasks. These feature-based transfer learning methods are however generally outperformed by fully finetuned models (Howard & Ruder, 2018). + +Model compression There has been much recent work on compressing pretrained trained with self-supervision (see Ganesh et al. (2020) for a recent survey). A particularly promising line of work focuses on obtaining smaller pretrained models (for subsequent finetuning) through weight pruning (Gordon et al., 2020; Sajjad et al., 2020; Chen et al., 2020) and/or knowledge distillation (Sanh et al., 2019; Sun et al., 2019; Turc et al., 2019; Jiao et al., 2019; Sun et al., 2020). It would be interesting to see whether our approach can be applied on top of these smaller pretrained models to for even greater parameter-efficiency. + +Learning to prune Our work is closely related to the line of work on learning to prune pretrained models with differentiable relaxations of binary masks (Wang et al., 2019b; Zhao et al., 2020; Sanh et al., 2020; Radiya-Dixit & Wang, 2020). While these works also enable parameter-efficient transfer learning, they generally apply the masks directly on the pretrained parameters instead of on the difference vector as in the present work. + +Regularization towards pretrained models Finally, diff pruning is also related to works which regularize the learning process towards pretrained models for continual learning (Kirkpatrick et al., 2017; Schwarz et al., 2018), domain adaptation (Wiese et al., 2017; Miceli Barone et al., 2017), and stable finetuning (Lee et al., 2020). These works typically do not utilize sparse regularizers and target a different goal than parameter-efficiency. + +# 8 CONCLUSION + +We propose diff pruning as a simple approach for parameter-efficient transfer learning with pretrained models. Experiments on standard NLP benchmarks and models show that diff pruning can match the performance of fully finetuned baselines while requiring only a few additional parameters per task. We also propose a structured variant of diff pruning which provides further improvements. Future work will consider (i) applying this approach to other architectures (e.g. ConvNets for vision applications), (ii) injecting parameter-efficiency objectives directly into the pretraining process (to pretrain models that are better suited towards sparse transfer learning), and (iii) combining diff pruning with other techniques (e.g. adapters) to achieve even greater parameter-efficiency. + +# REFERENCES + +Sanjeev Arora, Yingyu Liang, and Tengyu Ma. A Simple but Tough-to-Beat Baseline for Sentence Embeddings . In Proceedings of ICLR, 2017. + +Tom B. Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, Prafulla Dhariwal, Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, Sandhini Agarwal, Ariel Herbert-Voss, Gretchen Krueger, Tom Henighan, Rewon Child, Aditya Ramesh, Daniel M. Ziegler, Jeffrey Wu, Clemens Winter, Christopher Hesse, Mark Chen, Eric Sigler, Mateusz Litwin, Scott Gray, Benjamin Chess, Jack Clark, Christopher Berner, Sam McCandlish, Alec Radford, Ilya Sutskever, and Dario Amodei. Language Models are Few-Shot Learners. 2020. + +Rich Caruana. Multitask Learning. Machine Learning, 1997. + +Daniel Cer, Yinfei Yang, Sheng-yi Kong, Nan Hua, Nicole Limtiaco, Rhomni St. John, Noah Constant, Mario Guajardo-Cespedes, Steve Yuan, Chris Tar, Brian Strope, and Ray Kurzweil. Universal sentence encoder for English. In Proceedings of EMNLP: System Demonstrations, 2018. + +Tianlong Chen, Jonathan Frankle, Shiyu Chang, Sijia Liu, Yang Zhang, Zhangyang Wang, and Michael Carbin. The Lottery Ticket Hypothesis for Pre-trained BERT Networks. arXiv:2007.12223, 2020. + +Kevin Clark, Minh-Thang Luong, Urvashi Khandelwal, Christopher D. Manning, and Quoc V. Le. BAM! Born-Again Multi-Task Networks for Natural Language Understanding. In Proceedings of ACL, 2019. + +Alexis Conneau, Douwe Kiela, Holger Schwenk, Loic Barrault, and Antoine Bordes. Supervised Learning of Universal Sentence Representations from Natural Language Inference Data. In Proceedings of EMNLP, 2017. + +Andrew Dai and Quoc V. Le. Semi-Supervised Sequence Learning. In Proceedings of NIPS, 2015. + +Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding. In Proceedings of NAACL, 2019. + +Fangxiaoyu Feng, Yinfei Yang, Daniel Cer, Naveen Arivazhagan, and Wei Wang. Languageagnostic BERT Sentence Embedding. arXiv:2007.01852, 2020. + +Robert French. Catastrophic forgetting in connectionist networks. Trends in cognitive sciences, 3, 1999. + +Prakhar Ganesh, Yao Chen, Xin Lou, Mohammad Ali Khan, Yin Yang, Deming Chen, Marianne Winslett, Hassan Sajjad, and Preslav Nakov. Compressing Large-Scale Transformer-Based Models: A Case Study on BERT. arXiv:2002.11985, 2020. + +Mitchell A. Gordon, Kevin Duh, and Nicholas Andrews. Compressing BERT: Studying the Effects of Weight Pruning on Transfer Learning. In Proceedings of Rep4NLP 2020 Workshop at ACL 2020, 2020. + +Song Han, Huizi Mao, and William J. Dally. Deep Compression: Compressing Deep Neural Networks with Pruning, Trained Quantization and Huffman Coding. In Proceedings of ICLR, 2016. + +Felix Hill, Kyunghyun Cho, and Anna Korhonen. Learning distributed representations of sentences from unlabelled data. In Proceedings of ACL, 2016. + +Neil Houlsby, Andrei Giurgiu, Stanislaw Jastrzebski, Bruna Morrone, Quentin de Laroussilhe, Andrea Gesmundo, and Mona Attariyanand Sylvain Gelly. Parameter-efficient transfer learning for nlp. In Proceedings of ICML, 2019. + +Jeremy Howard and Sebastian Ruder. Universal Language Model Fine-tuning for Text Classification. In Proceedings of ACL, 2018. + +Eric Jang, Shixiang Gu, and Ben Poole. Categorical Reparameterization with Gumbel-Softmax. In Proceedings of ICLR, 2017. + +Xiaoqi Jiao, Yichun Yin, Lifeng Shang, Xin Jiang, Xiao Chen, Linlin Li, Fang Wang, and Qun Liu. TinyBERT: Distilling BERT for Natural Language Understanding. arXiv:1909.10351, 2019. + +James Kirkpatrick, Razvan Pascanu, Neil Rabinowitz, Joel Veness, Guillaume Desjardins, Andrei A. Rusu, Kieran Milan, John Quan, Tiago Ramalho, Agnieszka Grabska-Barwinska, Demis Hassabis, Claudia Clopath, Dharshan Kumaran, and Raia Hadsell. Overcoming catastrophic forgetting in neural networks. Proceedings of the National Academy of Sciences, 14:3521–3526, 2017. + +Ryan Kiros, Yukun Zhu, Ruslan Salakhutdinov, Richard S. Zemel, Antonio Torralba, Raquel Urta sun, and Sanja Fidler. Skip-Thought Vectors. In Proceedings of NeurIPS, 2015. + +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 Proceedings of ICLR, 2020. + +Quoc V. Le and Tomas Mikolov. Distributed Representations of Sentences and Documents. In Proceedings of ICML, 2014. + +Cheolhyoung Lee, Kyunghyun Cho, and Wanmo Kang. Mixout: Effective Regularization to Finetune Large-scale Pretrained Language Models. In Proceedings of ICLR, 2020. + +Sang-Woo Lee, Jin-Hwa Kim, Jaehyun Jun, Jung-Woo Ha, and Byoung-Tak Zhang. Overcoming catastrophic forgetting by incremental moment matching. In Advances in Neural Information Processing Systems. 2017. + +Nelson F. Liu, Matt Gardner, Yonatan Belinkov, Matthew E. Peters, and Noah A. Smith. Linguistic Knowledge and Transferability of Contextual Representations. In Proceedings of ACL, 2019a. + +Xiaodong Liu, Pengcheng He, Weizhu Chen, and Jianfeng Gao. Multi-Task Deep Neural Networks for Natural Language Understanding. In Proceedings of ACL, 2019b. + +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:1907.11692, 2019c. +David Lopez-Paz and Marc’Aurelio Ranzato. Gradient Episodic Memory for Continual Learning. In Proceedings of NeurIPS, 2017. +Christos Louizos, Max Welling, Diederik P, and Kingma. Learning Sparse Neural Networks through $L _ { 0 }$ Regularization. In Proceedings of ICLR, 2018. +Chris J. Maddison, Andriy Mnih, and Yee Whye Teh. The Concrete Distribution: A Continuous Relaxation of Discrete Random Variables. In Proceedings of ICLR, 2017. +Bryan McCann, James Bradbury, Caiming Xiong, and Richard Socher. Learned in translation: Contextualized word vectors. In Proceedings of NeurIPS. 2017. +Antonio Valerio Miceli Barone, Barry Haddow, Ulrich Germann, and Rico Sennrich. Regularization techniques for fine-tuning in neural machine translation. In Proceedings of EMNLP, 2017. +Tomas Mikolov, Kai Chen, Greg Corrado, and Jeffrey Dean. Efficient Estimation of Word Representations in Vector Space. arXiv:1301.3781, 2013. +German I. Parisi, Ronald Kemker, Jose L. Part, Christopher Kanan, and Stefan Wermter. Continual Lifelong Learning with Neural Networks: A Review. arXiv:1802.07569, 2018. +Matthew Peters, Mark Neumann, Mohit Iyyer, Matt Gardner, Christopher Clark, Kenton Lee, and Luke Zettlemoyer. Deep Contextualized Word Representations. In Proceedings of NAACL, 2018. +Jonas Pfeiffer, Aishwarya Kamath, Andreas Ruckle, and Kyunghyun Cho amd Iryna Gurevych. AdapterFusion: Non-Destructive Task Composition for Transfer Learning. arXiv:2005.00247, 2020a. +Jonas Pfeiffer, Andreas Ruckle, Clifton Poth, Aishwarya Kamath, Ivan Vulic, Sebastian Ruder, and Iryna Gurevych Kyunghyun Cho. AdapterHub: A Framework for Adapting Transformers. arXiv:2007.07779, 2020b. +Jonas Pfeiffer, Ivan Vulic, Iryna Gurevych, and Sebastian Ruder. MAD-X: An Adapter-based Framework for Multi-task Cross-lingual Transfer. arXiv:2005.00052, 2020c. +Alec Radford, Karthik Narasimhan, Tim Salimans, and Ilya Sutskever. Improving language understanding by generative pre-training. 2018. +Alec Radford, Jeff Wu, Rewon Child, David Luan, Dario Amodei, and Ilya Sutskever. Language Models are Unsupervised Multitask Learners. 2019. +Evani Radiya-Dixit and Xin Wang. How fine can fine-tuning be? Learning efficient language models. In Proceedings of AISTATS, 2020. +Colin Raffel, Noam Shazeer, Katherine Lee Adam Roberts, Sharan Narang, Michael Matena, Yanqi Zhou, Wei Li, and Peter J. Liu. Exploring the Limits of Transfer Learning with a Unified Text-toText Transformer. Journal of Machine Learning Research, 21, 2020. +Samyam Rajbhandari, Jeff Rasley, Olatunji Ruwase, and Yuxiong He. ZeRO: Memory Optimizations Toward Training Trillion Parameter Models. arXiv:1910.02054, 2019. +S. Rebuffi, A. Vedaldi, and H. Bilen. Efficient Parametrization of Multi-domain Deep Neural Networks. In Proceedings of CVPR, 2018. +Nils Reimers and Iryna Gurevych. Sentence-BERT: Sentence Embeddings using Siamese BERTNetworks. In Proceedings of EMNLP, 2019. +Hassan Sajjad, Fahim Dalvi, Nadir Durrani, and Preslav Nakov. Poor Man’s BERT: Smaller and Faster Transformer Models. arXiv:2004.03844, 2020. + +Victor Sanh, Lysandre Debut, Julien Chaumond, and Thomas Wolf. DistilBERT, a distilled version of BERT: smaller, faster, cheaper and lighter. In Proceedings of 5th Workshop on Energy Efficient Machine Learning and Cognitive Computing, 2019. + +Victor Sanh, Thomas Wolf, and Alexander M. Rush. Movement Pruning: Adaptive Sparsity by Fine-Tuning. arXiv:2005.07683, 2020. + +Timo Schick and Hinrich Schutze. It’s Not Just Size That Matters: Small Language Models Are Also Few-Shot Learners. arXiv:2009.07118, 2020. + +Jonathan Schwarz, Jelena Luketina, Wojciech M. Czarnecki, Agnieszka Grabska-Barwinska, Yee Whye Teh, Razvan Pascanu, and Raia Hadsell. Progress & Compress: A scalable framework for continual learning. In Proceedings of ICML, 2018. + +Hanul Shin, Jung Kwon Lee, Jaehong Kim, and Jiwon Kim. Continual Learning with Deep Generative Replay. In Proceedings of NeurIPS. 2017. + +Mohammad Shoeybi, Mostofa Patwary, Raul Puri, Patrick LeGresley, Jared Casper, and Bryan Catanzaro. Megatron-LM: Training Multi-Billion Parameter Language Models Using Model Parallelism. arXiv:1909.08053, 2019. + +Asa Cooper Stickland and Iain Murray. BERT and PALs: Projected attention layers for efficient adaptation in multi-task learning. In Proceedings of ICML, 2019. + +Sandeep Subramanian, Adam Trischler, Yoshua Bengio, and Christopher J. Pal. Learning General Purpose Distributed Sentence Representations via Large Scale Multi-task Learning. In Proceedings of ICLR, 2018. + +Siqi Sun, Yu Cheng, Zhe Gan, and Jingjing Liu. Patient Knowledge Distillation for BERT Model Compression. In Proceedings of EMNLP, 2019. + +Zhiqing Sun, Hongkun Yu, Xiaodan Song, Renjie Liu, Yiming Yang, and Denny Zhou. MobileBERT: a compact task-agnostic BERT for resource-limited devices. In Proceedings of ACL, July 2020. + +Ian Tenney, Dipanjan Das, and Ellie Pavlick. BERT Rediscovers the Classical NLP Pipeline. In Proceedings of ACL, 2019. + +Iulia Turc, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Well-Read Students Learn Better: On the Importance of Pre-training Compact Models. arXiv:1908.08962, 2019. + +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 Proceedings of ICLR, 2019a. + +Tongzhou Wang, Jun-Yan Zhu, Antonio Torralba, and Alexei A. Efros. Dataset Distillation. arXiv:1811.10959, 2018. + +Ziheng Wang, Jeremy Wohlwend, and Tao Lei. Structured Pruning of Large Language Models. arXiv:1910.04732, 2019b. + +Georg Wiese, Dirk Weissenborn, and Mariana Neves. Neural domain adaptation for biomedical question answering. In Proceedings of CoNLL, August 2017. + +John Wieting, Mohit Bansal, Kevin Gimpel, and Karen Livescu. Towards Universal Paraphrastic Sentence Embeddings. In Proceedings of ICLR, 2016. + +Thomas Wolf, Lysandre Debut, Victor Sanh, Julien Chaumond, Clement Delangue, Anthony Moi, Pierric Cistac, Tim Rault, Remi Louf, Morgan Funtowicz, Joe Davison, Sam Shleifer, Patrick ´ von Platen, Clara Ma, Yacine Jernite, Julien Plu, Canwen Xu, Teven Le Scao, Sylvain Gugger, Mariama Drame, Quentin Lhoest, and Alexander M. Rush. Huggingface’s transformers: Stateof-the-art natural language processing. ArXiv, abs/1910.03771, 2019. + +John M. Wu, Yonatan Belinkov, Hassan Sajjad, Nadir Durrani, Fahim Dalvi, and James Glass. Similarity Analysis of Contextual Word Representation Models. In Proceedings of ACL, 2020. + +![](images/8c95c374d96e969461975571abc9c78de78634e6f294904982d24204df94d38e.jpg) +Figure 3: Percentage of modified parameters attributable to each layer for 5 different runs of SST-2 at $0 . 5 \%$ target sparsity. The layers are ordered from earlier to later (i.e. the embedding layer is shown at the top). The $\mathbf { X }$ -axis for each plot goes from $0 \%$ to $20 \%$ . + +Zhilin Yang, Zihang Dai, Yiming Yang, Jaime Carbonell, Russ R Salakhutdinov, and Quoc V Le. XLNet: Generalized Autoregressive Pretraining for Language Understanding. In Proceedings of NeurIPS, 2019. + +Minghua Zhang, Yunfang Wu, Weikang Li, and Wei Li. Learning universal sentence representations with mean-max attention autoencoder. In Proceedings of EMNLP, 2018. + +Yan Zhang, Ruidan He, Zuozhu Liu, Kwan Hui Lim, and Lidong Bing. An Unsupervised Sentence Embedding Method byMutual Information Maximization. In Proceedings of EMNLP, 2020. + +Mengjie Zhao, Tao Lin, Martin Jaggi, and Hinrich Schutze. Masking as an Efficient Alternative to Finetuning for Pretrained Language Models. arXiv:2004.12406, 2020. + +# A APPENDIX + +# A.1 CONSISTENCY OF NONZERO PARAMETERS + +Figure 3 shows the percentage of modified parameters attributable to each layer across 5 runs of SST2. We find that there is nonotrivial variation in sparsity across runs, but also a degree of consistency. For example, the first layer is modified considerably more than other layers across all runs. \ No newline at end of file diff --git a/parse/train/E4PK0rg2eP/E4PK0rg2eP_content_list.json b/parse/train/E4PK0rg2eP/E4PK0rg2eP_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..425105ea0f4ec08fa0ddbcbf0c87bd5ad1bced88 --- /dev/null +++ b/parse/train/E4PK0rg2eP/E4PK0rg2eP_content_list.json @@ -0,0 +1,1651 @@ +[ + { + "type": "text", + "text": "PARAMETER-EFFICIENT TRANSFER LEARNING WITH DIFF PRUNING ", + "text_level": 1, + "bbox": [ + 176, + 98, + 823, + 145 + ], + "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, + 250 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "While task-specific finetuning of deep networks pretrained with self-supervision has led to significant empirical advances in NLP, their large size makes the standard finetuning approach difficult to apply to multi-task, memory-constrained settings, as storing the full model parameters for each task become prohibitively expensive. We propose diff pruning as a simple approach to enable parameterefficient transfer learning within the pretrain-finetune framework. This approach views finetuning as learning a task-specific “diff” vector that is applied on top of the pretrained parameter vector, which remains fixed and is shared across different tasks. The diff vector is adaptively pruned during training with a differentiable approximation to the $L _ { 0 }$ -norm penalty to encourage sparsity. Diff pruning becomes parameter-efficient as the number of tasks increases, as it requires storing only the nonzero positions and weights of the diff vector for each task, while the cost of storing the shared pretrained model remains constant. We find that models finetuned with diff pruning can match the performance of fully finetuned baselines on the GLUE benchmark while only modifying $0 . 5 \\%$ of the pretrained model’s parameters per task. ", + "bbox": [ + 233, + 263, + 764, + 484 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 497, + 336, + 513 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Task-specific finetuning of pretrained deep networks has become the dominant paradigm in contemporary NLP, achieving state-of-the-art results across a suite of natural language understanding tasks (Devlin et al., 2019; Liu et al., 2019c; Yang et al., 2019; Lan et al., 2020). While straightforward and empirically effective, this approach is difficult to scale to multi-task, memory-constrained settings (e.g. for on-device applications), as it requires shipping and storing a full set of model parameters for each task. Inasmuch as these models are learning generalizable, task-agnostic language representations through self-supervised pretraining, finetuning the entire model for each task is an especially inefficient use of model parameters. ", + "bbox": [ + 174, + 520, + 825, + 631 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "A popular approach to parameter-efficiency is to learn sparse models for each task where a subset of the final model parameters are exactly zero (Gordon et al., 2020; Sajjad et al., 2020; Zhao et al., 2020; Sanh et al., 2020). Such approaches often face a steep sparsity/performance tradeoff, and a substantial portion of nonzero parameters (e.g. $10 \\% { - } 3 0 \\% )$ ) are still typically required to match the performance of the dense counterparts. An alternative is to use multi-task learning or feature-based transfer for more parameter-efficient transfer learning with pretrained models (Liu et al., 2019b; Clark et al., 2019; Stickland & Murray, 2019; Reimers & Gurevych, 2019; Feng et al., 2020). These methods learn only a small number of additional parameters (e.g. a linear layer) on top of a shared model. However, multi-task learning generally requires access to all tasks during training to prevent catastrophic forgetting (French, 1999), while feature-based transfer learning (e.g. based on taskagnostic sentence representations) is typically outperformed by full finetuning (Howard & Ruder, 2018). ", + "bbox": [ + 174, + 638, + 825, + 805 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Adapters (Rebuffi et al., 2018) have recently emerged as a promising approach to parameterefficient transfer learning within the pretrain-finetune paradigm (Houlsby et al., 2019; Pfeiffer et al., 2020a;b;c). Adapter layers are smaller, task-specific modules that are inserted between layers of a pretrained model, which remains fixed and is shared across tasks. These approaches do not require access to all tasks during training making them attractive in settings where one hopes to obtain and share performant models as new tasks arrive in stream. Houlsby et al. (2019) find that adapter layers trained on BERT can match the performance of fully finetuned BERT on the GLUE benchmark (Wang et al., 2019a) while only requiring $3 . 6 \\%$ additional parameters (on average) per task. ", + "bbox": [ + 174, + 811, + 825, + 924 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "In this work, we consider a similar setting as adapters but propose a new diff pruning approach with the goal of even more parameter-efficient transfer learning. Diff pruning views finetuning as learning a task-specific difference vector that is applied on top of the pretrained parameter vector, which remains fixed and is shared across different tasks. In order to learn this vector, we reparameterize the task-specific model parameters as $\\theta _ { \\mathrm { t a s k } } = \\theta _ { \\mathrm { p r e t r a i n e d } } + \\delta _ { \\mathrm { t a s k } }$ , where the pretrained parameter vector $\\theta _ { \\mathrm { p r e t r a i n e d } }$ is fixed and the task-specific diff vector $\\delta _ { \\mathrm { t a s k } }$ is finetuned. The diff vector is regularized with a differentiable approximation to the $L _ { 0 }$ -norm penalty (Louizos et al., 2018) to encourage sparsity. This approach can become parameter-efficient as the number of tasks increases as it only requires storing the nonzero positions and weights of the diff vector for each task. The cost of storing the shared pretrained model remains constant and is amortized across multiple tasks. On the GLUE benchmark (Wang et al., 2019a), diff pruning can match the performance of the fully finetuned BERT baselines while finetuning only $0 . 5 \\%$ of the pretrained parameters per task, making it a potential alternative to adapters for parameter-efficient transfer learning. ", + "bbox": [ + 173, + 103, + 825, + 284 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 BACKGROUND: TRANSFER LEARNING FOR NLP", + "text_level": 1, + "bbox": [ + 174, + 297, + 607, + 314 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "The field of NLP has recently seen remarkable progress through transfer learning with a pretrainand-finetune paradigm, which initializes a subset of the model parameters for all tasks from a pretrained model and then finetunes on a task specific objective. Pretraining objectives include context prediction (Mikolov et al., 2013), autoencoding (Dai & Le, 2015), machine translation (McCann et al., 2017), and more recently, variants of language modeling (Peters et al., 2018; Radford et al., 2018; Devlin et al., 2019) objectives. ", + "bbox": [ + 174, + 321, + 825, + 406 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Here we consider applying transfer learning to multiple tasks. We consider a setting with a potentially unknown set of tasks, where each $\\tau \\in \\mathcal { T }$ has an associated training set $\\{ x _ { \\tau } ^ { ( n ) } , y _ { \\tau } ^ { ( n ) } \\} _ { n = 1 } ^ { N }$ 1 For . all tasks, the goal is to produce (possibly tied) model parameters to minimize the empirical risk, ", + "bbox": [ + 174, + 412, + 825, + 459 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/209034c1e384d6fcc31ab4692e6f4c361c0f837f239fb577916b24303febed90.jpg", + "text": "$$\n\\operatorname* { m i n } _ { \\pmb { \\theta } _ { \\tau } } \\ \\frac { 1 } { N } \\sum _ { n = 1 } ^ { N } \\mathcal { L } \\left( f ( x _ { \\tau } ^ { ( n ) } ; \\pmb { \\theta } _ { \\tau } ) , y _ { \\tau } ^ { ( n ) } \\right) + \\lambda R ( \\pmb { \\theta } _ { \\tau } )\n$$", + "text_format": "latex", + "bbox": [ + 346, + 465, + 650, + 508 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "where $f ( \\cdot ; \\pmb \\theta )$ is a parameterized function over the input (e.g. a neural network), $\\mathcal L ( \\cdot , \\cdot )$ is a loss function (e.g. cross-entropy), and $R ( \\cdot )$ is an optional regularizer with hyperparameter $\\lambda$ . ", + "bbox": [ + 173, + 515, + 821, + 545 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "This multi-task setting can use the pretrain-then-finetune approach by simply learning independent parameters for each task; however the large size of pretrained models makes this approach exceedingly parameter inefficient. For example, widely-adopted models such as BERTBASE and BERTLARGE have 110M and 340M parameters respectively, while their contemporaries such as T5 (Raffel et al., 2020), Megatron-LM (Shoeybi et al., 2019), and Turing-NLG (Rajbhandari et al., 2019) have parameter counts in the billions. Storing the fully finetuned models becomes difficult even for a moderate number of tasks.2 A classic approach to tackling this parameterinefficiency (Caruana, 1997) is to train a single shared model (along with a task-specific output layer) against multiple tasks through joint training. However, the usual formulation of multi-task learning requires the set of tasks $\\tau$ to be known in advance in order to prevent catastrophic forgetting (French, 1999),3 making it unsuitable for applications in which the set of tasks is unknown (e.g. when tasks arrive in stream). ", + "bbox": [ + 173, + 550, + 825, + 717 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "3 DIFF PRUNING ", + "text_level": 1, + "bbox": [ + 176, + 731, + 328, + 747 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Diff pruning formulates task-specific finetuning as learning a diff vector $\\delta _ { \\tau }$ that is added to the pretrained model parameters $\\theta _ { \\mathrm { p r e t r a i n e d } }$ . We first reparameterize the task-specific model parameters, ", + "bbox": [ + 173, + 756, + 823, + 785 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/641357162c8cf5fd67763b84ed9ce3a1b4889bb6c238750d670e7c517ca4be3b.jpg", + "text": "$$\n\\begin{array} { r } { \\pmb { \\theta } _ { \\tau } = \\pmb { \\theta } _ { \\mathrm { p r e t r a i n e d } } + \\delta _ { \\tau } , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 428, + 791, + 568, + 809 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "which results in the following empirical risk minimization problem, ", + "bbox": [ + 173, + 103, + 619, + 118 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/67153bebf4dae0992cb925cc59d54228833fd661c3be6236e95797eb4ef05e58.jpg", + "text": "$$\n\\operatorname* { m i n } _ { \\delta _ { \\tau } } \\ \\frac { 1 } { N } \\sum _ { n = 1 } ^ { N } \\mathcal { L } \\left( f ( x _ { \\tau } ^ { ( n ) } ; \\theta _ { \\mathrm { p r e t r a i n e d } } + \\delta _ { \\tau } ) , y _ { \\tau } ^ { ( n ) } \\right) + \\lambda R ( \\theta _ { \\mathrm { p r e t r a i n e d } } + \\delta _ { \\tau } ) .\n$$", + "text_format": "latex", + "bbox": [ + 267, + 121, + 728, + 164 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "This trivial reparameterization is equivalent to the original formulation. Its benefit comes in the multi-task setting where the cost of storing the pretrained parameters $\\theta _ { \\mathrm { p r e t r a i n e d } }$ is amortized across tasks, and the only marginal cost for new tasks is the diff vector. If we can regularize $\\delta _ { \\tau }$ to be sparse such that $\\lVert \\delta _ { \\tau } \\rVert _ { 0 } \\ll \\lVert \\bar { \\pmb { \\theta } } _ { \\mathrm { p r e t r a i n e d } } \\rVert _ { 0 }$ , then this approach can become more parameter-efficient as the number of tasks increases. We can specify this goal with an $L _ { 0 }$ -norm penalty on the diff vector, ", + "bbox": [ + 173, + 172, + 826, + 243 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/db87601c916bc51947dfd29fe65493f44e30dcb3ea1509908209393cfeaa86fe.jpg", + "text": "$$\nR ( \\theta _ { \\mathrm { p r e t r a i n e d } } + \\delta _ { \\tau } ) = \\| \\pmb { \\delta } _ { \\tau } \\| _ { 0 } = \\sum _ { i = 1 } ^ { d } \\mathbb { 1 } \\{ \\pmb { \\delta } _ { \\tau , i } \\neq 0 \\} .\n$$", + "text_format": "latex", + "bbox": [ + 339, + 244, + 656, + 287 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3.1 DIFFERENTIABLE APPROXIMATION TO THE $L _ { 0 }$ -NORM", + "text_level": 1, + "bbox": [ + 173, + 308, + 583, + 323 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "This regularizer is difficult to directly optimize as it is non-differentiable. In order to approximate this $L _ { 0 }$ objective, we follow the standard approach for gradient-based learning with $L _ { 0 }$ sparsity using a relaxed mask vector (Louizos et al., 2018). This approach involves relaxing a binary vector into continuous space, and then multiplying it with a dense weight vector to determine how much of the weight vector is applied during training. After training, the mask is deterministic and a large portion of the diff vector is true zero. ", + "bbox": [ + 173, + 329, + 825, + 415 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "To apply this method we first decompose $\\delta _ { \\tau }$ into a binary mask vector multiplied with a dense vector, ", + "bbox": [ + 173, + 420, + 823, + 449 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/50baad9ae5d43e25ead61a531e7ee5bd6f11e2d43dad20fb8b2093d5a5ab6bab.jpg", + "text": "$$\n\\begin{array} { r } { \\delta _ { \\tau } = \\mathbf { z } _ { \\tau } \\odot \\mathbf { w } _ { \\tau } , \\qquad \\mathbf { z } _ { \\tau } \\in \\{ 0 , 1 \\} ^ { d } , \\mathbf { w } _ { \\tau } \\in \\mathbb { R } ^ { d } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 303, + 449, + 694, + 469 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We can now instead optimize an expectation with respect to ${ \\bf z } _ { \\tau }$ , whose distribution $p ( \\mathbf { z } _ { \\tau } ; \\pmb { \\alpha } _ { \\tau } )$ is initially Bernoulli with parameters $\\pmb { \\alpha } _ { \\tau }$ , ", + "bbox": [ + 173, + 472, + 825, + 500 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/3f81f16930f14f81b0b5df85f8e68d18a457c5c95c09d04e34b40d88c3eccece.jpg", + "text": "$$\n\\operatorname* { m i n } _ { \\alpha _ { \\tau } , \\mathbf { w } _ { \\tau } } \\mathbb { E } _ { \\mathbf { z } _ { \\tau } \\sim p ( \\mathbf { z } _ { \\tau } ; \\alpha _ { \\tau } ) } \\left[ \\frac { 1 } { N } \\sum _ { n = 1 } ^ { N } \\mathcal { L } \\left( f ( x _ { \\tau } ^ { ( n ) } ; \\boldsymbol { \\theta } _ { \\mathrm { p r e t r a i n e d } } + \\mathbf { z } _ { \\tau } \\odot \\mathbf { w } _ { \\tau } , ) , y _ { \\tau } ^ { ( n ) } \\right) + \\lambda \\lVert \\delta _ { \\tau } \\rVert _ { 0 } \\right] .\n$$", + "text_format": "latex", + "bbox": [ + 222, + 502, + 776, + 545 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "This objective is still difficult in practice due to ${ \\bf z } _ { \\tau }$ ’s being discrete (which requires the score function gradient estimator), but the expectation provides some guidance for empirically effective relaxations. We follow prior work (Louizos et al., 2018; Wang et al., 2019b) and relax ${ \\bf z } _ { \\tau }$ into continuous space $[ 0 , 1 ] ^ { d }$ with a stretched Hard-Concrete distribution (Jang et al., 2017; Maddison et al., 2017), which allows for the use of pathwise gradient estimators. Specifically, ${ \\bf z } _ { \\tau }$ is now defined to be a deterministic and (sub)differentiable function of a sample $\\mathbf { u }$ from a uniform distribution, ", + "bbox": [ + 173, + 546, + 825, + 631 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/2a6654c74a3353f08edc978223c41515541788a721f3d19b6042113955bb2af0.jpg", + "text": "$$\n\\begin{array} { r } { \\mathbf { u } \\sim U ( \\mathbf { 0 } , \\mathbf { 1 } ) , \\qquad \\mathbf { s } _ { \\tau } = \\sigma \\left( \\log \\mathbf { u } - \\log ( 1 - \\mathbf { u } ) + \\alpha _ { \\tau } \\right) , } \\\\ { \\bar { \\mathbf { s } } _ { \\tau } = \\mathbf { s } _ { \\tau } \\times ( r - l ) + l , \\qquad \\mathbf { z } _ { \\tau } = \\operatorname* { m i n } ( \\mathbf { 1 } , \\operatorname* { m a x } ( \\mathbf { 0 } , \\bar { \\mathbf { s } } _ { \\tau } ) ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 259, + 632, + 736, + 670 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Here $l < 0$ and $r > 1$ are two constants used to stretch ${ \\bf s } _ { \\tau }$ into the interval $( l , r ) ^ { d }$ before it is clamped to $[ 0 , 1 ] ^ { d }$ with the $\\operatorname* { m i n } ( \\mathbf { 1 } , \\operatorname* { m a x } ( \\mathbf { 0 } , \\cdot ) )$ operation. In this case we have a differentiable closed-form expression for the expected $L _ { 0 }$ -norm, ", + "bbox": [ + 174, + 671, + 825, + 714 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/edb3942bcbccde41788b4dc919f478a284c87096f975cee4e8d84e9352a91af3.jpg", + "text": "$$\n\\mathbb { E } \\left[ \\left. \\pmb { \\delta } _ { \\tau } \\right. _ { 0 } \\right] = \\sum _ { i = 1 } ^ { d } \\mathbb { E } \\left[ \\mathbb { 1 } \\left\\{ \\mathbf { z } _ { \\tau , i } > 0 \\right\\} \\right] = \\sum _ { i = 1 } ^ { d } \\sigma \\left( \\alpha _ { \\tau , i } - \\log \\frac { - l } { r } \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 297, + 715, + 700, + 760 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Thus the final optimization problem is given by, ", + "bbox": [ + 174, + 761, + 488, + 776 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "$\\operatorname* { m i n } _ { \\tau _ { \\tau } , \\mathbf { w } _ { \\tau } } \\mathbb { E } _ { \\mathbf { u } \\sim U [ \\mathbf { 0 } , 1 ] } \\left[ \\frac { 1 } { N } \\sum _ { n = 1 } ^ { N } \\mathcal { L } \\left( f ( x _ { \\tau } ^ { ( n ) } ; \\boldsymbol { \\theta } _ { \\mathrm { p r e r a i n e d } } + \\mathbf { z } _ { \\tau } \\odot \\mathbf { w } _ { \\tau } , ) , y _ { \\tau } ^ { ( n ) } \\right) \\right] + \\lambda \\sum _ { i = 1 } ^ { d } \\sigma \\left( \\alpha _ { \\tau , i } - \\log \\frac { - l } { r } \\right) ,$ and we can now utilize pathwise gradient estimators to optimize the first term with respect to $\\pmb { \\alpha } _ { \\tau }$ since the expectation no longer depends on it.4 After training we obtain the final diff vector $\\delta _ { \\tau }$ by sampling $\\mathbf { u }$ once to obtain ${ \\bf z } _ { \\tau }$ (which is not necessarily a binary vector but has a significant number of dimensions equal to exactly zero due to the clamping function), then setting $\\pmb { \\delta } _ { \\tau } = \\mathbf { z } _ { \\tau } \\odot \\mathbf { w } _ { \\tau }$ . 5 ", + "bbox": [ + 173, + 777, + 826, + 880 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3.2 $L _ { 0 }$ -BALL PROJECTION WITH MAGNITUDE PRUNING FOR SPARSITY CONTROL ", + "bbox": [ + 176, + 103, + 746, + 118 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Differentiable $L _ { 0 }$ regularization provides a strong way to achieve high sparsity rate. However, it would be ideal to have more fine-grained control into the exact sparsity rate in the diff vector, especially considering applications which require specific parameter budgets. As $\\lambda$ is just the Lagrangian multiplier for the constraint $\\mathbb { E } \\left[ \\lVert \\pmb { \\delta } _ { \\tau } \\rVert _ { 0 } \\right] < \\eta$ for some $\\eta$ , this could be achieved in principle by searching over different values of $\\lambda$ . However we found it more efficient and empirically effective to achieve an exact sparsity rate by simply projecting onto the $L _ { 0 }$ -ball after training. ", + "bbox": [ + 174, + 126, + 825, + 210 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Specifically we use magnitude pruning on the diff vector $\\delta _ { \\tau }$ and target a sparsity rate $t \\%$ by only keeping the top $t \\% \\times \\bar { d }$ values in $\\delta _ { \\tau }$ .6 Note that unlike standard magnitude pruning, this is based on the magnitude of the diff vector values and not the model parameters. As is usual in magnitude pruning, we found it important to further finetune $\\delta _ { \\tau }$ with the nonzero masks fixed to maintain good performance (Han et al., 2016). Since this type of parameter-efficiency through projection onto the $L _ { 0 }$ -ball can be applied without adaptive diff pruning,7 such an approach will serve as one of our baselines in the empirical study. ", + "bbox": [ + 173, + 217, + 825, + 314 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.3 STRUCTURED DIFF PRUNING ", + "text_level": 1, + "bbox": [ + 176, + 328, + 416, + 342 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Diff pruning, as presented above, is architecture-agnostic and does not exploit the underlying model structure—each dimension of ${ \\bf z } _ { \\tau }$ is independent from one another. While this makes the approach potentially more flexible, we might expect to achieve better sparsity/performance tradeoff through a structured formulation which encourages active parameters to group together and other areas to be fully sparse. Motivated by this intuition, we first partition the parameter indices into $G$ groups $\\{ g ( 1 ) , \\ldots , g ( G ) \\}$ where $g ( j )$ is a subset of parameter indices governed by group $g ( j )$ .8 We then introduce a scalar $\\mathbf { z } _ { \\tau } ^ { j }$ (with the associated parameter $\\alpha _ { \\tau } ^ { j }$ ) for each group $g ( j )$ , and decompose the task-specific parameter for index $i \\in g ( j )$ as $\\begin{array} { r } { \\delta _ { \\tau , i } ^ { j } = \\mathbf { z } _ { \\tau , i } \\times \\mathbf { z } _ { \\tau } ^ { j } \\times \\mathbf { w } _ { \\tau , i } . } \\end{array}$ The expected $L _ { 0 }$ -norm is then given by, ", + "bbox": [ + 173, + 349, + 825, + 479 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/6dd9f1cd7a0ba610a4afd20bc615d654b40294d36a6f77a7d0098203f1f2eddd.jpg", + "text": "$$\n\\Sigma \\left[ \\left. \\delta _ { \\tau } \\right. _ { 0 } \\right] = \\sum _ { j = 1 } ^ { G } \\sum _ { i \\in g ( j ) } \\mathbb { E } \\left[ \\mathbb { I } \\left\\{ \\mathbf { z } _ { \\tau , i } \\cdot \\mathbf { z } _ { \\tau } ^ { g } > 0 \\right\\} \\right] = \\sum _ { j = 1 } ^ { G } \\sum _ { i \\in g ( j ) } \\sigma \\left( \\alpha _ { \\tau , i } - \\log { \\frac { - l } { r } } \\right) \\times \\sigma \\left( \\alpha _ { \\tau } ^ { j } - \\log { \\frac { - l } { r } } \\right) ,\n$$", + "text_format": "latex", + "bbox": [ + 181, + 484, + 825, + 531 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "and we can train with gradient-based optimization as before. ", + "bbox": [ + 173, + 537, + 570, + 553 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "4 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 565, + 328, + 582 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "4.1 MODEL AND DATASETS ", + "text_level": 1, + "bbox": [ + 174, + 590, + 380, + 604 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "For evaluation we use the GLUE benchmark (Wang et al., 2019b), a popular finetuning dataset. Following adapters (Houlsby et al., 2019), we test our approach on the following subset of the GLUE tasks: Multi-Genre Natural Language Inference (MNLI), where the goal is two predict whether the relationship between two sentences is entailment, contradiction, or neutral (we test on both $\\mathrm { M N L L } \\mathrm { I } _ { m }$ and $\\mathrm { M N L I } _ { m m }$ which respectively tests on matched/mismatched domains); Quora Question Pairs (QQP), a classification task to predict whether two question are semantically equivalent; Question Natural Language Inference (QNLI), which must predict whether a sentence is a correct answer to the question; Stanford Sentiment Treebank (SST-2), a sentence classification task to predict the sentiment of movie reviews; Corpus of Linguistic Acceptability (CoLA), where the goal is predict whether a sentence is linguistically acceptable or not; Semantic Textual Similarity Benchmark (STS$\\mathbf { B }$ ), which must predict a similarity rating between two sentences; Microsoft Research Paraphrase Corpus (MRPC), where the goal is to predict whether two sentences are semantically equivalent; Recognizing Textual Entailment (RTE), which must predict whether a second sentence is entailed by the first. For evaluation, the benchmark uses Matthew’s correlation for CoLA, Spearman for STS-B, $\\mathrm { F _ { 1 } }$ score for MRPC/QQC, and accuracy for MNLI/QNLI/SST-2/RTE. ", + "bbox": [ + 173, + 613, + 825, + 820 + ], + "page_idx": 3 + }, + { + "type": "table", + "img_path": "images/7e11a32275eb2c11b417cefece91c401cc0ca72c9474a3ea349c1c085c7a67e7.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
Total paramsNew params per taskQNLI*SST-2 MNLImMNLImmCoLA MRPC STS-B RTEQQPAvg
Full finetuning9.00×100%91.194.986.785.960.589.387.670.172.180.9
Adapters (8-256)1.32×3.6%90.794.084.985.159.589.586.971.571.880.4
Adapters (64)1.19×2.1%91.494.285.384.656.989.687.368.671.879.8
Full finetuning9.00×100%93.494.186.786.059.688.986.671.271.780.6
Last layer1.34×3.8%79.891.671.472.940.280.167.358.663.368.2
Non-adap. diff pruning1.05×0.5%89.793.684.984.851.281.578.261.568.675.5
Diff pruning1.05×0.5%92.993.885.785.660.587.083.568.170.679.4
Diff pruning (struct.)1.05×0.5%93.394.186.486.061.189.786.070.671.180.6
", + "bbox": [ + 176, + 101, + 825, + 222 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Table 1: GLUE benchmark test server results with BERTLARGE models. (Top) Results with adapter bottleneck layers (brackets indicate the size of bottlenecks), taken from from Houlsby et al. (2019). (Bottom) Results from this work. ${ } ^ { * } \\mathrm { Q N L I }$ results are not directly comparable across the two works as the GLUE benchmark has updated the test set since then. To make our results comparable the average column is calculated without QNLI. ", + "bbox": [ + 174, + 223, + 825, + 273 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "For all experiments, we use the BERTLARGE model from Devlin et al. (2019), which has 24 layers, 1024 hidden size, 16 attention heads, and 340M parameters. We use the Huggingface Transformer library (Wolf et al., 2019) to conduct our experiments. ", + "bbox": [ + 174, + 284, + 825, + 325 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4.2 BASELINES", + "text_level": 1, + "bbox": [ + 174, + 335, + 294, + 349 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We compare both structured and non-structured variants of diff pruning against the following baselines: Full finetuning, which fully finetunes $\\mathrm { B E R T _ { L } }$ ARGE as usual; Last layer finetuning, which only finetunes the penultimate layer (along with the final output layer)9; Adapters from Houlsby et al. (2019), which train task-specific bottleneck layers between between each layer of a pretrained model, where parameter-efficiency can be controlled by varying the size of the bottleneck layers; and Non-adaptive diff pruning, which performs diff pruning just based on magnitude pruning (i.e., we obtain $\\pmb { \\theta } _ { \\tau }$ through usual finetuning, set $\\delta _ { \\tau } = \\pmb { \\theta } _ { \\tau } - \\pmb { \\theta } _ { \\mathrm { p r e t r a i n e d } }$ , and then apply magnitude pruning followed by additional finetuning on $\\delta _ { \\tau }$ ). For diff pruning we set our target sparsity rate to $0 . 5 \\%$ and investigate the effect of different target sparsity rates in section 5.1. ", + "bbox": [ + 174, + 357, + 825, + 483 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4.3 IMPLEMENTATION DETAILS AND HYPERPARAMETERS ", + "text_level": 1, + "bbox": [ + 173, + 492, + 588, + 507 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Diff pruning introduces additional hyperparameters $l , r$ (for stretching the Hard-Concrete distribution) and $\\lambda$ (for weighting the approximate $L _ { 0 }$ -norm penalty). We found $l = - 1 . 5 , r = 1 . 5 , \\lambda =$ $1 . 2 5 \\times 1 0 ^ { - 7 }$ to work well across all tasks. We also initialize the weight vector ${ \\bf w } _ { \\tau }$ to 0, and $\\pmb { \\alpha } _ { \\tau }$ to a positive vector (we use 5) to encourage ${ \\bf z } _ { \\tau }$ to be close to 1 at the start of training. While we mainly experiment with BERTLARGE to compare against prior work with adapters (Houlsby et al., 2019), in preliminary experiments we found these hyperparameters to work for finetuning RoBERTa (Liu et al., $2 0 1 9 \\mathrm { c }$ ) and XLNet (Yang et al., 2019) models as well. ", + "bbox": [ + 174, + 511, + 825, + 609 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "For all tasks we use a learning rate of $1 \\times 1 0 ^ { - 5 }$ and perform a hyperparameter search over batch size $\\in \\{ 4 , 6 , 8 , 1 0 \\}$ and the number of epochs $\\in \\{ 2 , 3 , 4 , 5 \\}$ .10 However we found the default settings used for regular finetuning as suggested in the original BERT paper to work well for most tasks. Finetuning with the fixed mask after projecting onto the $L _ { 0 }$ -ball with magnitude pruning is done with a learning rate of $5 \\times 1 0 ^ { - 5 }$ for 3 or 5 epochs (3 epochs for QNLI, SST-2, MNLI-m, MNLI-mm, CoLA, QQP, 5 epochs for MRPC, STS-B, RTE). Grouping for the structured version of diff pruning is based on the matrix/bias vectors (i.e. parameters that belong to the same matrix or bias vector are assumed to be in the same group), which results in 393 groups.1 ", + "bbox": [ + 173, + 616, + 825, + 728 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "5 RESULTS AND ANALYSIS ", + "text_level": 1, + "bbox": [ + 176, + 741, + 413, + 757 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Our main results on the GLUE benchmark are shown in Table 1. Structured diff pruning can match the performance of a fully finetuned BERTLARGE model while only requiring $0 . 5 \\%$ additional parameters per task. Diff pruning without structured sparsity also performs well, though slightly worse than the structured approach. Non-adaptive diff pruning, which magnitude prunes the diff vector without learning the binary mask $\\mathbf { z } _ { \\tau }$ , performs significantly worse, indicating the importance of learning the masking vector. Compared to adapters, diff pruning obtains similar performance while requiring fewer parameters per task, making it a potential alternative for parameter-efficient transfer learning.12 We now perform a series of analysis experiments on the validation set. ", + "bbox": [ + 174, + 768, + 823, + 797 + ], + "page_idx": 4 + }, + { + "type": "table", + "img_path": "images/51e4628c9fdcedc7b5148c6713e9133f068ca6743dacfae1df379a77b1f70a0f.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
Non-structuredPruned Diff GroupsStructured
#%#%
MRPC246.15213.2
STS-B256.44812.2
RTE287.15012.7
Avg25.76.550.012.7
", + "bbox": [ + 531, + 136, + 789, + 242 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/595b6e69a0b27f0e5a01c20b6b20af16c35c98e03db9d2bd1a18a59ee3317e0f.jpg", + "image_caption": [ + "Figure 1: (Left) Average performance on the GLUE validation set across different target sparsity rates for the different methods. (Right) Number of groups where all of the parameters in the group are fully zero for structured vs. non-structured diff pruning at $0 . 5 \\%$ target sparsity. We group based on each matrix/bias vector, resulting in 393 groups in total. " + ], + "image_footnote": [], + "bbox": [ + 205, + 116, + 446, + 262 + ], + "page_idx": 5 + }, + { + "type": "table", + "img_path": "images/cf93b9d4d94aac37759a017bb2787dcedf4a0259386fb92fc7fa433b7d3a4591.jpg", + "table_caption": [], + "table_footnote": [ + "Table 2: Structured diff pruning results on the validation set with different target sparsity rates. Average performance includes all 9 tasks. " + ], + "table_body": "
Diff vector target sparsityQNLISST-2MNLImMNLImmCoLAMRPCSTS-BRTEQQPAvg
0.10%92.793.385.685.958.087.486.368.685.282.5
0.25%93.294.286.286.563.390.988.471.586.184.5
0.50%93.494.286.486.963.591.389.571.586.684.8
1.00%93.394.286.487.066.391.489.971.186.685.1
100%93.594.186.587.162.891.989.871.887.685.0
", + "bbox": [ + 236, + 325, + 756, + 407 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 445, + 825, + 529 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "5.1 VARYING THE TARGET SPARSITY ", + "text_level": 1, + "bbox": [ + 174, + 541, + 444, + 556 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "In Figure 1 (left), we plot results on the GLUE validation set averaged across all tasks at target sparsity rates of $0 . 1 \\%$ , $0 . 2 5 \\%$ , $0 . 5 \\%$ , $1 . 0 \\%$ for the different baselines. Structured diff pruning consistently outperforms non-structured and and non-adaptive variants across different sparsity rates. The advantage of adaptive methods becomes more pronounced at extreme sparsity rates. In Table 2, we report the breakdown of accuracy of structured diff pruning across different tasks and sparsity rates, where we observe that different tasks have different sensitivity to target sparsity rates. This suggests that we can obtain even greater parameter-efficiency through targeting task-specific sparsity rates in the diff vector. ", + "bbox": [ + 174, + 564, + 825, + 675 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "5.2 STRUCTURED VS. NON-STRUCTURED DIFF PRUNING ", + "text_level": 1, + "bbox": [ + 174, + 689, + 581, + 702 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Structured diff pruning introduces an additional mask per group, which encourages pruning of entire groups. This is less restrictive than traditional group sparsity techniques that have been used with $L _ { 0 }$ -norm relaxations which force all parameters in a group to share the same mask (Louizos et al., 2018; Wang et al., 2019b). However we still expect entire groups to be pruned out more often in the structured case, which might bias the learning process towards either eliminating completely or clustering together nonzero diffs. In Figure 1 (right), we indeed find that structured diff pruning leads to finetuned models that are much more likely to leave entire groups unchanged from their pretrained values (zero diffs). ", + "bbox": [ + 174, + 714, + 825, + 825 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "5.3 TASK-SPECIFIC SPARSITY ", + "text_level": 1, + "bbox": [ + 174, + 835, + 393, + 849 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Different layers of pretrained models have argued to encode different information (Liu et al., 2019a; Tenney et al., 2019). Given that each task will likely recruit different kinds of language phenomena embedded in the hidden layers, we hypothesize that diff pruning will modify different parts of the pretrained model through task-specific finetuning. Figure 2 shows the percentage of nonzero diff parameters attributable to the different layers for each task. We find that different tasks indeed modify different parts of the network, although there are some qualitative similarities between some tasks, for example between QNLI & QQP (both must encode questions), and MRPC & STS-B (both must predict similarity between sentences). The embedding layer is very sparsely modified for all tasks. While some of the variations in the sparsity distributions is due to simple randomness, we do observe some level of consistency over multiple runs of the same task, as shown in Figure 3 of the appendix. ", + "bbox": [ + 176, + 858, + 823, + 901 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/a2618320f9f0e0193cd71e3737c981cd5b834522d27110d75f63705a8284b8ae.jpg", + "image_caption": [], + "image_footnote": [], + "bbox": [ + 179, + 103, + 818, + 251 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/f1421724012c23f06006dcf661bb337cb0a8a1761b9ef97a21766239f94a5d77.jpg", + "table_caption": [ + "Figure 2: Percentage of modified parameters attributable to each layer for different tasks at $0 . 5 \\%$ target sparsity. The layers are ordered from earlier to later (i.e. the embedding layer is shown at the top). The $\\mathbf { X }$ -axis for each plot goes from $0 \\%$ to $20 \\%$ . " + ], + "table_footnote": [ + "Table 3: (Top) Sparsity and performance before magnitude pruning on the validation set with structured diff pruning. (Bottom) Performance with $0 . 5 \\%$ target sparsity. " + ], + "table_body": "
QNLISST-2MNLImMNLImmCoLAMRPCSTS-BRTEQQPAvg
Sparsity1.5%0.6%0.8%0.8%1.6%2.4%3.3%0.7%0.6%1.4%
Performance93.894.086.286.863.191.989.771.886.584.9
With 0.5% sparsity93.494.286.486.963.591.389.571.586.684.8
", + "bbox": [ + 186, + 304, + 805, + 364 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 414, + 825, + 525 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "The ability to modify different parts of the pretrained model for each task could explain the improved parameter-efficiency of our approach compared to Houlsby et al. (2019)’s adapter layers, which can only read/write to the pretrained model at certain points of the computational graph.13 This potentially suggests that adapter layers with more fine-grained access into model internals (e.g. adapters for key/value/query transformations) might result in even greater parameter-efficiency. While left as future work, we also note that diff pruning can be applied in conjunction with adapters, which might further improve results. ", + "bbox": [ + 174, + 532, + 825, + 628 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5.4 EFFECT OF $\\mathrm { L } _ { 0 }$ -BALL PROJECTION VIA MAGNITUDE PRUNING ", + "text_level": 1, + "bbox": [ + 174, + 640, + 637, + 654 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Applying magnitude pruning to project onto the $\\mathrm { L } _ { 0 }$ -ball was crucial in achieving exact sparsity targets. As shown in Table 3, we observed little loss in performance through magnitude pruning. We re-iterate that it was crucial to finetune with the fixed mask in order to maintain good performance.14 ", + "bbox": [ + 176, + 659, + 825, + 700 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5.5 SQUAD EXTRACTIVE QUESTION ANSWERING ", + "text_level": 1, + "bbox": [ + 174, + 723, + 537, + 738 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "To demonstrate the effectiveness of our approach beyond classification, we additionally experiment on the extractive question answering task SQuAD, which asks model to select the answer span to a question given a Wikipedia paragraph. To make direct comparisons with Houlsby et al. (2019), we run all experiments on SQuAD v1.1. For diff pruning, we use the same general hyper-parameters as our full finetuning baseline.15 Results are shown in Table 4. Diff pruning is able achieve comparable or better performance with only $1 \\%$ additional parameters. Notably, we see that our method can improve the F1 score of full finetuning baseline by a significant margin (e.g. $9 0 . 8 \\% \\Rightarrow 9 3 . 2 \\% )$ ) ", + "bbox": [ + 173, + 750, + 825, + 847 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/4f39fcc11bdeb82064d1bfc004bd6998c756639a075f86e91f7cfa4d23221bd5.jpg", + "table_caption": [], + "table_footnote": [ + "Table 4: SQuAD validation results with BERTLARGE model. " + ], + "table_body": "
SparsityF1
Full finetuning Adapters100% 2%90.7% 90.4%
Full finetuning100%90.8%
Diff pruning1%92.1%
Diff pruning (struct.)1%93.2%
", + "bbox": [ + 352, + 101, + 640, + 207 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "while modifying many fewer parameters (e.g., $1 0 0 \\% \\Rightarrow 1 \\%$ ), which potentially implies that diff pruning can have a useful regularization effect. ", + "bbox": [ + 174, + 252, + 825, + 280 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "6 DISCUSSION ", + "text_level": 1, + "bbox": [ + 174, + 297, + 310, + 314 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "6.1 MEMORY REQUIREMENTS ", + "text_level": 1, + "bbox": [ + 174, + 324, + 397, + 338 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "For training, our approach requires more memory than usual finetuning due to additionally optimizing $\\pmb { \\alpha } _ { \\tau }$ and ${ \\bf w } _ { \\tau }$ . This did not present a significant challenge for pretrained models that we experimented with in this study, since majority of GPU memory was utilized by the minibatch’s activation layers. However, this could present an issue as model sizes get larger and larger. While training efficiency was not a primary concern of this work, diff pruning takes approxiamtely $1 . 5 \\times$ to $2 \\times$ more time per batch, which results in slower training. ", + "bbox": [ + 174, + 344, + 825, + 428 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "After training, storing the task-specific diff vector requires storing a compressed version with both the nonzero positions and weights, which incurs additional storage requirements. ", + "bbox": [ + 174, + 434, + 823, + 463 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "6.2 INFORMATION-EFFICIENT TRANSFER LEARNING", + "text_level": 1, + "bbox": [ + 174, + 477, + 550, + 491 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Efficiently representing pretrained models adapted to new tasks is becoming an increasingly important problem in contemporary NLP. This paper focuses on a rather narrow definition of efficiency— parameter-efficiency. An interesting direction might be to target generalizations of parameterefficiency, for example, information-efficiency, which aims to minimize the number of bits required to represent the task-specific model when given the pretrained model for free. This view can suggest other avenues for achieving information-efficient transfer learning: for example, “what is the minimum number of (potentially synthetic) datapoints that we can finetune BERT on to obtain a good task-specific model?”,16 or “what is the shortest prefix string that we can condition GPT3 on for it to become a good task-specific model”? ", + "bbox": [ + 173, + 496, + 825, + 622 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "7 RELATED WORK ", + "text_level": 1, + "bbox": [ + 176, + 645, + 343, + 661 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Multi-task learning Multi-task learning (Caruana, 1997), broadly construed, aims to learn models and representations that can be utilized across a diverse range of tasks, and offers a natural approach to training parameter-efficient deep models. Several works have shown that a single BERT model can obtain good performance across multiple tasks when jointly trained (Liu et al., 2019b; Clark et al., 2019; Stickland & Murray, 2019). Adapter layers, which are task-specific layers that read and write to layers of a shared model (Rebuffi et al., 2018), offer an alternative approach to multi-task learning that does not require access to all tasks during training, and have also been applied to obtain parameter-efficient BERT models (Houlsby et al., 2019; Pfeiffer et al., 2020a;b;c). A related line of work targets extreme parameter-efficiency through task-agnostic sentence representations that can be used without finetuning for downstream tasks (Le & Mikolov, 2014; Kiros et al., 2015; Wieting et al., 2016; Hill et al., 2016; Arora et al., 2017; Conneau et al., 2017; Cer et al., 2018; Zhang et al., 2018; Subramanian et al., 2018; Zhang et al., 2020). Reimers & Gurevych (2019), building on the earlier work of Conneau et al. (2017), show that BERT finetuned on natural language inference obtains sentence representations that perform well across multiple sentence-level tasks. These feature-based transfer learning methods are however generally outperformed by fully finetuned models (Howard & Ruder, 2018). ", + "bbox": [ + 173, + 680, + 825, + 900 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Model compression There has been much recent work on compressing pretrained trained with self-supervision (see Ganesh et al. (2020) for a recent survey). A particularly promising line of work focuses on obtaining smaller pretrained models (for subsequent finetuning) through weight pruning (Gordon et al., 2020; Sajjad et al., 2020; Chen et al., 2020) and/or knowledge distillation (Sanh et al., 2019; Sun et al., 2019; Turc et al., 2019; Jiao et al., 2019; Sun et al., 2020). It would be interesting to see whether our approach can be applied on top of these smaller pretrained models to for even greater parameter-efficiency. ", + "bbox": [ + 174, + 103, + 825, + 200 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Learning to prune Our work is closely related to the line of work on learning to prune pretrained models with differentiable relaxations of binary masks (Wang et al., 2019b; Zhao et al., 2020; Sanh et al., 2020; Radiya-Dixit & Wang, 2020). While these works also enable parameter-efficient transfer learning, they generally apply the masks directly on the pretrained parameters instead of on the difference vector as in the present work. ", + "bbox": [ + 174, + 210, + 825, + 279 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Regularization towards pretrained models Finally, diff pruning is also related to works which regularize the learning process towards pretrained models for continual learning (Kirkpatrick et al., 2017; Schwarz et al., 2018), domain adaptation (Wiese et al., 2017; Miceli Barone et al., 2017), and stable finetuning (Lee et al., 2020). These works typically do not utilize sparse regularizers and target a different goal than parameter-efficiency. ", + "bbox": [ + 174, + 287, + 825, + 358 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "8 CONCLUSION ", + "text_level": 1, + "bbox": [ + 176, + 378, + 318, + 395 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We propose diff pruning as a simple approach for parameter-efficient transfer learning with pretrained models. Experiments on standard NLP benchmarks and models show that diff pruning can match the performance of fully finetuned baselines while requiring only a few additional parameters per task. We also propose a structured variant of diff pruning which provides further improvements. Future work will consider (i) applying this approach to other architectures (e.g. ConvNets for vision applications), (ii) injecting parameter-efficiency objectives directly into the pretraining process (to pretrain models that are better suited towards sparse transfer learning), and (iii) combining diff pruning with other techniques (e.g. adapters) to achieve even greater parameter-efficiency. ", + "bbox": [ + 174, + 410, + 825, + 522 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 176, + 544, + 285, + 559 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Sanjeev Arora, Yingyu Liang, and Tengyu Ma. A Simple but Tough-to-Beat Baseline for Sentence Embeddings . In Proceedings of ICLR, 2017. ", + "bbox": [ + 174, + 568, + 823, + 595 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Tom B. Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, Prafulla Dhariwal, Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, Sandhini Agarwal, Ariel Herbert-Voss, Gretchen Krueger, Tom Henighan, Rewon Child, Aditya Ramesh, Daniel M. Ziegler, Jeffrey Wu, Clemens Winter, Christopher Hesse, Mark Chen, Eric Sigler, Mateusz Litwin, Scott Gray, Benjamin Chess, Jack Clark, Christopher Berner, Sam McCandlish, Alec Radford, Ilya Sutskever, and Dario Amodei. Language Models are Few-Shot Learners. 2020. ", + "bbox": [ + 176, + 606, + 825, + 689 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Rich Caruana. Multitask Learning. Machine Learning, 1997. ", + "bbox": [ + 173, + 699, + 575, + 713 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Daniel Cer, Yinfei Yang, Sheng-yi Kong, Nan Hua, Nicole Limtiaco, Rhomni St. John, Noah Constant, Mario Guajardo-Cespedes, Steve Yuan, Chris Tar, Brian Strope, and Ray Kurzweil. Universal sentence encoder for English. In Proceedings of EMNLP: System Demonstrations, 2018. ", + "bbox": [ + 174, + 724, + 825, + 766 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Tianlong Chen, Jonathan Frankle, Shiyu Chang, Sijia Liu, Yang Zhang, Zhangyang Wang, and Michael Carbin. The Lottery Ticket Hypothesis for Pre-trained BERT Networks. arXiv:2007.12223, 2020. ", + "bbox": [ + 174, + 776, + 823, + 819 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Kevin Clark, Minh-Thang Luong, Urvashi Khandelwal, Christopher D. Manning, and Quoc V. Le. BAM! Born-Again Multi-Task Networks for Natural Language Understanding. In Proceedings of ACL, 2019. ", + "bbox": [ + 173, + 829, + 823, + 871 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Alexis Conneau, Douwe Kiela, Holger Schwenk, Loic Barrault, and Antoine Bordes. Supervised Learning of Universal Sentence Representations from Natural Language Inference Data. In Proceedings of EMNLP, 2017. ", + "bbox": [ + 176, + 882, + 823, + 922 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Andrew Dai and Quoc V. Le. Semi-Supervised Sequence Learning. In Proceedings of NIPS, 2015. ", + "bbox": [ + 169, + 103, + 821, + 119 + ], + "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 NAACL, 2019. ", + "bbox": [ + 173, + 127, + 820, + 156 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Fangxiaoyu Feng, Yinfei Yang, Daniel Cer, Naveen Arivazhagan, and Wei Wang. Languageagnostic BERT Sentence Embedding. arXiv:2007.01852, 2020. ", + "bbox": [ + 173, + 164, + 821, + 193 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Robert French. Catastrophic forgetting in connectionist networks. Trends in cognitive sciences, 3, 1999. ", + "bbox": [ + 173, + 200, + 823, + 231 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Prakhar Ganesh, Yao Chen, Xin Lou, Mohammad Ali Khan, Yin Yang, Deming Chen, Marianne Winslett, Hassan Sajjad, and Preslav Nakov. Compressing Large-Scale Transformer-Based Models: A Case Study on BERT. arXiv:2002.11985, 2020. ", + "bbox": [ + 173, + 238, + 823, + 281 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Mitchell A. Gordon, Kevin Duh, and Nicholas Andrews. Compressing BERT: Studying the Effects of Weight Pruning on Transfer Learning. In Proceedings of Rep4NLP 2020 Workshop at ACL 2020, 2020. ", + "bbox": [ + 174, + 289, + 825, + 332 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Song Han, Huizi Mao, and William J. Dally. Deep Compression: Compressing Deep Neural Networks with Pruning, Trained Quantization and Huffman Coding. In Proceedings of ICLR, 2016. ", + "bbox": [ + 171, + 340, + 823, + 371 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Felix Hill, Kyunghyun Cho, and Anna Korhonen. Learning distributed representations of sentences from unlabelled data. In Proceedings of ACL, 2016. ", + "bbox": [ + 171, + 378, + 823, + 407 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Neil Houlsby, Andrei Giurgiu, Stanislaw Jastrzebski, Bruna Morrone, Quentin de Laroussilhe, Andrea Gesmundo, and Mona Attariyanand Sylvain Gelly. Parameter-efficient transfer learning for nlp. In Proceedings of ICML, 2019. ", + "bbox": [ + 173, + 415, + 823, + 458 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jeremy Howard and Sebastian Ruder. Universal Language Model Fine-tuning for Text Classification. In Proceedings of ACL, 2018. ", + "bbox": [ + 169, + 467, + 823, + 496 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Eric Jang, Shixiang Gu, and Ben Poole. Categorical Reparameterization with Gumbel-Softmax. In Proceedings of ICLR, 2017. ", + "bbox": [ + 171, + 503, + 823, + 534 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Xiaoqi Jiao, Yichun Yin, Lifeng Shang, Xin Jiang, Xiao Chen, Linlin Li, Fang Wang, and Qun Liu. TinyBERT: Distilling BERT for Natural Language Understanding. arXiv:1909.10351, 2019. ", + "bbox": [ + 173, + 541, + 823, + 570 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "James Kirkpatrick, Razvan Pascanu, Neil Rabinowitz, Joel Veness, Guillaume Desjardins, Andrei A. Rusu, Kieran Milan, John Quan, Tiago Ramalho, Agnieszka Grabska-Barwinska, Demis Hassabis, Claudia Clopath, Dharshan Kumaran, and Raia Hadsell. Overcoming catastrophic forgetting in neural networks. Proceedings of the National Academy of Sciences, 14:3521–3526, 2017. ", + "bbox": [ + 173, + 578, + 825, + 636 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ryan Kiros, Yukun Zhu, Ruslan Salakhutdinov, Richard S. Zemel, Antonio Torralba, Raquel Urta sun, and Sanja Fidler. Skip-Thought Vectors. In Proceedings of NeurIPS, 2015. ", + "bbox": [ + 173, + 643, + 820, + 672 + ], + "page_idx": 9 + }, + { + "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 Proceedings of ICLR, 2020. ", + "bbox": [ + 174, + 680, + 823, + 723 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Quoc V. Le and Tomas Mikolov. Distributed Representations of Sentences and Documents. In Proceedings of ICML, 2014. ", + "bbox": [ + 173, + 731, + 821, + 761 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Cheolhyoung Lee, Kyunghyun Cho, and Wanmo Kang. Mixout: Effective Regularization to Finetune Large-scale Pretrained Language Models. In Proceedings of ICLR, 2020. ", + "bbox": [ + 173, + 768, + 820, + 799 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Sang-Woo Lee, Jin-Hwa Kim, Jaehyun Jun, Jung-Woo Ha, and Byoung-Tak Zhang. Overcoming catastrophic forgetting by incremental moment matching. In Advances in Neural Information Processing Systems. 2017. ", + "bbox": [ + 174, + 806, + 823, + 849 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Nelson F. Liu, Matt Gardner, Yonatan Belinkov, Matthew E. Peters, and Noah A. Smith. Linguistic Knowledge and Transferability of Contextual Representations. In Proceedings of ACL, 2019a. ", + "bbox": [ + 173, + 858, + 821, + 887 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Xiaodong Liu, Pengcheng He, Weizhu Chen, and Jianfeng Gao. Multi-Task Deep Neural Networks for Natural Language Understanding. In Proceedings of ACL, 2019b. ", + "bbox": [ + 173, + 895, + 821, + 924 + ], + "page_idx": 9 + }, + { + "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:1907.11692, 2019c. \nDavid Lopez-Paz and Marc’Aurelio Ranzato. Gradient Episodic Memory for Continual Learning. In Proceedings of NeurIPS, 2017. \nChristos Louizos, Max Welling, Diederik P, and Kingma. Learning Sparse Neural Networks through $L _ { 0 }$ Regularization. In Proceedings of ICLR, 2018. \nChris J. Maddison, Andriy Mnih, and Yee Whye Teh. The Concrete Distribution: A Continuous Relaxation of Discrete Random Variables. In Proceedings of ICLR, 2017. \nBryan McCann, James Bradbury, Caiming Xiong, and Richard Socher. Learned in translation: Contextualized word vectors. In Proceedings of NeurIPS. 2017. \nAntonio Valerio Miceli Barone, Barry Haddow, Ulrich Germann, and Rico Sennrich. Regularization techniques for fine-tuning in neural machine translation. In Proceedings of EMNLP, 2017. \nTomas Mikolov, Kai Chen, Greg Corrado, and Jeffrey Dean. Efficient Estimation of Word Representations in Vector Space. arXiv:1301.3781, 2013. \nGerman I. Parisi, Ronald Kemker, Jose L. Part, Christopher Kanan, and Stefan Wermter. Continual Lifelong Learning with Neural Networks: A Review. arXiv:1802.07569, 2018. \nMatthew Peters, Mark Neumann, Mohit Iyyer, Matt Gardner, Christopher Clark, Kenton Lee, and Luke Zettlemoyer. Deep Contextualized Word Representations. In Proceedings of NAACL, 2018. \nJonas Pfeiffer, Aishwarya Kamath, Andreas Ruckle, and Kyunghyun Cho amd Iryna Gurevych. AdapterFusion: Non-Destructive Task Composition for Transfer Learning. arXiv:2005.00247, 2020a. \nJonas Pfeiffer, Andreas Ruckle, Clifton Poth, Aishwarya Kamath, Ivan Vulic, Sebastian Ruder, and Iryna Gurevych Kyunghyun Cho. AdapterHub: A Framework for Adapting Transformers. arXiv:2007.07779, 2020b. \nJonas Pfeiffer, Ivan Vulic, Iryna Gurevych, and Sebastian Ruder. MAD-X: An Adapter-based Framework for Multi-task Cross-lingual Transfer. arXiv:2005.00052, 2020c. \nAlec Radford, Karthik Narasimhan, Tim Salimans, and Ilya Sutskever. Improving language understanding by generative pre-training. 2018. \nAlec Radford, Jeff Wu, Rewon Child, David Luan, Dario Amodei, and Ilya Sutskever. Language Models are Unsupervised Multitask Learners. 2019. \nEvani Radiya-Dixit and Xin Wang. How fine can fine-tuning be? Learning efficient language models. In Proceedings of AISTATS, 2020. \nColin Raffel, Noam Shazeer, Katherine Lee Adam Roberts, Sharan Narang, Michael Matena, Yanqi Zhou, Wei Li, and Peter J. Liu. Exploring the Limits of Transfer Learning with a Unified Text-toText Transformer. Journal of Machine Learning Research, 21, 2020. \nSamyam Rajbhandari, Jeff Rasley, Olatunji Ruwase, and Yuxiong He. ZeRO: Memory Optimizations Toward Training Trillion Parameter Models. arXiv:1910.02054, 2019. \nS. Rebuffi, A. Vedaldi, and H. Bilen. Efficient Parametrization of Multi-domain Deep Neural Networks. In Proceedings of CVPR, 2018. \nNils Reimers and Iryna Gurevych. Sentence-BERT: Sentence Embeddings using Siamese BERTNetworks. In Proceedings of EMNLP, 2019. \nHassan Sajjad, Fahim Dalvi, Nadir Durrani, and Preslav Nakov. Poor Man’s BERT: Smaller and Faster Transformer Models. arXiv:2004.03844, 2020. ", + "bbox": [ + 171, + 82, + 826, + 925 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Victor Sanh, Lysandre Debut, Julien Chaumond, and Thomas Wolf. DistilBERT, a distilled version of BERT: smaller, faster, cheaper and lighter. In Proceedings of 5th Workshop on Energy Efficient Machine Learning and Cognitive Computing, 2019. ", + "bbox": [ + 178, + 103, + 823, + 146 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Victor Sanh, Thomas Wolf, and Alexander M. Rush. Movement Pruning: Adaptive Sparsity by Fine-Tuning. arXiv:2005.07683, 2020. ", + "bbox": [ + 176, + 154, + 821, + 183 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Timo Schick and Hinrich Schutze. It’s Not Just Size That Matters: Small Language Models Are Also Few-Shot Learners. arXiv:2009.07118, 2020. ", + "bbox": [ + 173, + 190, + 823, + 220 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Jonathan Schwarz, Jelena Luketina, Wojciech M. Czarnecki, Agnieszka Grabska-Barwinska, Yee Whye Teh, Razvan Pascanu, and Raia Hadsell. Progress & Compress: A scalable framework for continual learning. In Proceedings of ICML, 2018. ", + "bbox": [ + 176, + 228, + 823, + 271 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Hanul Shin, Jung Kwon Lee, Jaehong Kim, and Jiwon Kim. Continual Learning with Deep Generative Replay. In Proceedings of NeurIPS. 2017. ", + "bbox": [ + 169, + 279, + 823, + 309 + ], + "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 Model Parallelism. arXiv:1909.08053, 2019. ", + "bbox": [ + 176, + 315, + 823, + 359 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Asa Cooper Stickland and Iain Murray. BERT and PALs: Projected attention layers for efficient adaptation in multi-task learning. In Proceedings of ICML, 2019. ", + "bbox": [ + 171, + 367, + 823, + 396 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Sandeep Subramanian, Adam Trischler, Yoshua Bengio, and Christopher J. Pal. Learning General Purpose Distributed Sentence Representations via Large Scale Multi-task Learning. In Proceedings of ICLR, 2018. ", + "bbox": [ + 176, + 404, + 821, + 446 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Siqi Sun, Yu Cheng, Zhe Gan, and Jingjing Liu. Patient Knowledge Distillation for BERT Model Compression. In Proceedings of EMNLP, 2019. ", + "bbox": [ + 171, + 454, + 823, + 484 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Zhiqing Sun, Hongkun Yu, Xiaodan Song, Renjie Liu, Yiming Yang, and Denny Zhou. MobileBERT: a compact task-agnostic BERT for resource-limited devices. In Proceedings of ACL, July 2020. ", + "bbox": [ + 174, + 492, + 823, + 535 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Ian Tenney, Dipanjan Das, and Ellie Pavlick. BERT Rediscovers the Classical NLP Pipeline. In Proceedings of ACL, 2019. ", + "bbox": [ + 173, + 542, + 823, + 571 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Iulia Turc, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Well-Read Students Learn Better: On the Importance of Pre-training Compact Models. arXiv:1908.08962, 2019. ", + "bbox": [ + 173, + 579, + 821, + 609 + ], + "page_idx": 11 + }, + { + "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 Proceedings of ICLR, 2019a. ", + "bbox": [ + 176, + 617, + 823, + 660 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Tongzhou Wang, Jun-Yan Zhu, Antonio Torralba, and Alexei A. Efros. Dataset Distillation. arXiv:1811.10959, 2018. ", + "bbox": [ + 173, + 667, + 823, + 696 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Ziheng Wang, Jeremy Wohlwend, and Tao Lei. Structured Pruning of Large Language Models. arXiv:1910.04732, 2019b. ", + "bbox": [ + 173, + 704, + 821, + 734 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Georg Wiese, Dirk Weissenborn, and Mariana Neves. Neural domain adaptation for biomedical question answering. In Proceedings of CoNLL, August 2017. ", + "bbox": [ + 171, + 742, + 823, + 771 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "John Wieting, Mohit Bansal, Kevin Gimpel, and Karen Livescu. Towards Universal Paraphrastic Sentence Embeddings. In Proceedings of ICLR, 2016. ", + "bbox": [ + 173, + 779, + 823, + 809 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Thomas Wolf, Lysandre Debut, Victor Sanh, Julien Chaumond, Clement Delangue, Anthony Moi, Pierric Cistac, Tim Rault, Remi Louf, Morgan Funtowicz, Joe Davison, Sam Shleifer, Patrick ´ von Platen, Clara Ma, Yacine Jernite, Julien Plu, Canwen Xu, Teven Le Scao, Sylvain Gugger, Mariama Drame, Quentin Lhoest, and Alexander M. Rush. Huggingface’s transformers: Stateof-the-art natural language processing. ArXiv, abs/1910.03771, 2019. ", + "bbox": [ + 181, + 816, + 823, + 887 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "John M. Wu, Yonatan Belinkov, Hassan Sajjad, Nadir Durrani, Fahim Dalvi, and James Glass. Similarity Analysis of Contextual Word Representation Models. In Proceedings of ACL, 2020. ", + "bbox": [ + 176, + 895, + 818, + 924 + ], + "page_idx": 11 + }, + { + "type": "image", + "img_path": "images/8c95c374d96e969461975571abc9c78de78634e6f294904982d24204df94d38e.jpg", + "image_caption": [ + "Figure 3: Percentage of modified parameters attributable to each layer for 5 different runs of SST-2 at $0 . 5 \\%$ target sparsity. The layers are ordered from earlier to later (i.e. the embedding layer is shown at the top). The $\\mathbf { X }$ -axis for each plot goes from $0 \\%$ to $20 \\%$ . " + ], + "image_footnote": [], + "bbox": [ + 197, + 104, + 799, + 301 + ], + "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 Proceedings of NeurIPS, 2019. ", + "bbox": [ + 174, + 382, + 826, + 424 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Minghua Zhang, Yunfang Wu, Weikang Li, and Wei Li. Learning universal sentence representations with mean-max attention autoencoder. In Proceedings of EMNLP, 2018. ", + "bbox": [ + 174, + 433, + 823, + 463 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Yan Zhang, Ruidan He, Zuozhu Liu, Kwan Hui Lim, and Lidong Bing. An Unsupervised Sentence Embedding Method byMutual Information Maximization. In Proceedings of EMNLP, 2020. ", + "bbox": [ + 176, + 470, + 823, + 501 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Mengjie Zhao, Tao Lin, Martin Jaggi, and Hinrich Schutze. Masking as an Efficient Alternative to Finetuning for Pretrained Language Models. arXiv:2004.12406, 2020. ", + "bbox": [ + 178, + 508, + 825, + 537 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "A APPENDIX ", + "text_level": 1, + "bbox": [ + 176, + 565, + 299, + 580 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "A.1 CONSISTENCY OF NONZERO PARAMETERS ", + "text_level": 1, + "bbox": [ + 174, + 595, + 514, + 611 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Figure 3 shows the percentage of modified parameters attributable to each layer across 5 runs of SST2. We find that there is nonotrivial variation in sparsity across runs, but also a degree of consistency. For example, the first layer is modified considerably more than other layers across all runs. ", + "bbox": [ + 173, + 622, + 825, + 664 + ], + "page_idx": 12 + } +] \ No newline at end of file diff --git a/parse/train/E4PK0rg2eP/E4PK0rg2eP_middle.json b/parse/train/E4PK0rg2eP/E4PK0rg2eP_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..619fcf5137fea29e257733bd3ae8f2d55456359b --- /dev/null +++ b/parse/train/E4PK0rg2eP/E4PK0rg2eP_middle.json @@ -0,0 +1,35670 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 504, + 115 + ], + "lines": [ + { + "bbox": [ + 105, + 77, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 505, + 97 + ], + "score": 1.0, + "content": "PARAMETER-EFFICIENT TRANSFER LEARNING WITH", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 98, + 217, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 98, + 217, + 117 + ], + "score": 1.0, + "content": "DIFF PRUNING", + "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, + 198 + ], + "lines": [ + { + "bbox": [ + 276, + 185, + 336, + 200 + ], + "spans": [ + { + "bbox": [ + 276, + 185, + 336, + 200 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 143, + 209, + 468, + 384 + ], + "lines": [ + { + "bbox": [ + 142, + 208, + 469, + 222 + ], + "spans": [ + { + "bbox": [ + 142, + 208, + 469, + 222 + ], + "score": 1.0, + "content": "While task-specific finetuning of deep networks pretrained with self-supervision", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 221, + 469, + 232 + ], + "spans": [ + { + "bbox": [ + 141, + 221, + 469, + 232 + ], + "score": 1.0, + "content": "has led to significant empirical advances in NLP, their large size makes the stan-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 230, + 469, + 244 + ], + "spans": [ + { + "bbox": [ + 141, + 230, + 469, + 244 + ], + "score": 1.0, + "content": "dard finetuning approach difficult to apply to multi-task, memory-constrained set-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 242, + 469, + 255 + ], + "spans": [ + { + "bbox": [ + 141, + 242, + 469, + 255 + ], + "score": 1.0, + "content": "tings, as storing the full model parameters for each task become prohibitively", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 142, + 254, + 469, + 265 + ], + "spans": [ + { + "bbox": [ + 142, + 254, + 469, + 265 + ], + "score": 1.0, + "content": "expensive. We propose diff pruning as a simple approach to enable parameter-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 264, + 470, + 276 + ], + "spans": [ + { + "bbox": [ + 141, + 264, + 470, + 276 + ], + "score": 1.0, + "content": "efficient transfer learning within the pretrain-finetune framework. This approach", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 275, + 470, + 287 + ], + "spans": [ + { + "bbox": [ + 141, + 275, + 470, + 287 + ], + "score": 1.0, + "content": "views finetuning as learning a task-specific “diff” vector that is applied on top of", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 142, + 286, + 470, + 298 + ], + "spans": [ + { + "bbox": [ + 142, + 286, + 470, + 298 + ], + "score": 1.0, + "content": "the pretrained parameter vector, which remains fixed and is shared across different", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 297, + 469, + 309 + ], + "spans": [ + { + "bbox": [ + 141, + 297, + 469, + 309 + ], + "score": 1.0, + "content": "tasks. The diff vector is adaptively pruned during training with a differentiable ap-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 308, + 470, + 320 + ], + "spans": [ + { + "bbox": [ + 141, + 308, + 218, + 320 + ], + "score": 1.0, + "content": "proximation to the", + "type": "text" + }, + { + "bbox": [ + 219, + 308, + 231, + 319 + ], + "score": 0.89, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 308, + 470, + 320 + ], + "score": 1.0, + "content": "-norm penalty to encourage sparsity. Diff pruning becomes", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 319, + 470, + 331 + ], + "spans": [ + { + "bbox": [ + 141, + 319, + 470, + 331 + ], + "score": 1.0, + "content": "parameter-efficient as the number of tasks increases, as it requires storing only the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 330, + 470, + 341 + ], + "spans": [ + { + "bbox": [ + 141, + 330, + 470, + 341 + ], + "score": 1.0, + "content": "nonzero positions and weights of the diff vector for each task, while the cost of", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 341, + 469, + 352 + ], + "spans": [ + { + "bbox": [ + 141, + 341, + 469, + 352 + ], + "score": 1.0, + "content": "storing the shared pretrained model remains constant. We find that models fine-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 142, + 352, + 469, + 363 + ], + "spans": [ + { + "bbox": [ + 142, + 352, + 469, + 363 + ], + "score": 1.0, + "content": "tuned with diff pruning can match the performance of fully finetuned baselines", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 362, + 469, + 375 + ], + "spans": [ + { + "bbox": [ + 141, + 362, + 339, + 375 + ], + "score": 1.0, + "content": "on the GLUE benchmark while only modifying", + "type": "text" + }, + { + "bbox": [ + 340, + 362, + 362, + 374 + ], + "score": 0.87, + "content": "0 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 362, + 469, + 375 + ], + "score": 1.0, + "content": "of the pretrained model’s", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 375, + 225, + 385 + ], + "spans": [ + { + "bbox": [ + 141, + 375, + 225, + 385 + ], + "score": 1.0, + "content": "parameters per task.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 12.5 + }, + { + "type": "title", + "bbox": [ + 108, + 394, + 206, + 407 + ], + "lines": [ + { + "bbox": [ + 105, + 393, + 208, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 208, + 409 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 412, + 505, + 500 + ], + "lines": [ + { + "bbox": [ + 105, + 412, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 505, + 426 + ], + "score": 1.0, + "content": "Task-specific finetuning of pretrained deep networks has become the dominant paradigm in contem-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 424, + 505, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 505, + 436 + ], + "score": 1.0, + "content": "porary NLP, achieving state-of-the-art results across a suite of natural language understanding tasks", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 435, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 106, + 435, + 505, + 447 + ], + "score": 1.0, + "content": "(Devlin et al., 2019; Liu et al., 2019c; Yang et al., 2019; Lan et al., 2020). While straightforward and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 446, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 505, + 459 + ], + "score": 1.0, + "content": "empirically effective, this approach is difficult to scale to multi-task, memory-constrained settings", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 457, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 505, + 469 + ], + "score": 1.0, + "content": "(e.g. for on-device applications), as it requires shipping and storing a full set of model parameters for", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 467, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 505, + 480 + ], + "score": 1.0, + "content": "each task. Inasmuch as these models are learning generalizable, task-agnostic language representa-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 478, + 504, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 504, + 491 + ], + "score": 1.0, + "content": "tions through self-supervised pretraining, finetuning the entire model for each task is an especially", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 489, + 252, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 252, + 501 + ], + "score": 1.0, + "content": "inefficient use of model parameters.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 107, + 506, + 505, + 638 + ], + "lines": [ + { + "bbox": [ + 105, + 506, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 505, + 519 + ], + "score": 1.0, + "content": "A popular approach to parameter-efficiency is to learn sparse models for each task where a subset", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 517, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 506, + 531 + ], + "score": 1.0, + "content": "of the final model parameters are exactly zero (Gordon et al., 2020; Sajjad et al., 2020; Zhao et al.,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 527, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 506, + 542 + ], + "score": 1.0, + "content": "2020; Sanh et al., 2020). Such approaches often face a steep sparsity/performance tradeoff, and a", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 539, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 299, + 553 + ], + "score": 1.0, + "content": "substantial portion of nonzero parameters (e.g.", + "type": "text" + }, + { + "bbox": [ + 299, + 539, + 342, + 550 + ], + "score": 0.82, + "content": "10 \\% { - } 3 0 \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 539, + 506, + 553 + ], + "score": 1.0, + "content": ") are still typically required to match the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 551, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 505, + 562 + ], + "score": 1.0, + "content": "performance of the dense counterparts. An alternative is to use multi-task learning or feature-based", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "transfer for more parameter-efficient transfer learning with pretrained models (Liu et al., 2019b;", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "Clark et al., 2019; Stickland & Murray, 2019; Reimers & Gurevych, 2019; Feng et al., 2020). These", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 582, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 596 + ], + "score": 1.0, + "content": "methods learn only a small number of additional parameters (e.g. a linear layer) on top of a shared", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 593, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 506, + 608 + ], + "score": 1.0, + "content": "model. However, multi-task learning generally requires access to all tasks during training to prevent", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "catastrophic forgetting (French, 1999), while feature-based transfer learning (e.g. based on task-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 616, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 506, + 630 + ], + "score": 1.0, + "content": "agnostic sentence representations) is typically outperformed by full finetuning (Howard & Ruder,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 626, + 136, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 136, + 640 + ], + "score": 1.0, + "content": "2018).", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 107, + 643, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 644, + 504, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 504, + 656 + ], + "score": 1.0, + "content": "Adapters (Rebuffi et al., 2018) have recently emerged as a promising approach to parameter-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "score": 1.0, + "content": "efficient transfer learning within the pretrain-finetune paradigm (Houlsby et al., 2019; Pfeiffer et al.,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "score": 1.0, + "content": "2020a;b;c). Adapter layers are smaller, task-specific modules that are inserted between layers of a", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "score": 1.0, + "content": "pretrained model, which remains fixed and is shared across tasks. These approaches do not require", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "access to all tasks during training making them attractive in settings where one hopes to obtain and", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "share performant models as new tasks arrive in stream. Houlsby et al. (2019) find that adapter lay-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "ers trained on BERT can match the performance of fully finetuned BERT on the GLUE benchmark", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 721, + 474, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 273, + 733 + ], + "score": 1.0, + "content": "(Wang et al., 2019a) while only requiring", + "type": "text" + }, + { + "bbox": [ + 273, + 721, + 296, + 731 + ], + "score": 0.84, + "content": "3 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 721, + 474, + 733 + ], + "score": 1.0, + "content": "additional parameters (on average) per task.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 45.5 + } + ], + "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": [ + 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": [ + 108, + 78, + 504, + 115 + ], + "lines": [ + { + "bbox": [ + 105, + 77, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 505, + 97 + ], + "score": 1.0, + "content": "PARAMETER-EFFICIENT TRANSFER LEARNING WITH", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 98, + 217, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 98, + 217, + 117 + ], + "score": 1.0, + "content": "DIFF PRUNING", + "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, + 198 + ], + "lines": [ + { + "bbox": [ + 276, + 185, + 336, + 200 + ], + "spans": [ + { + "bbox": [ + 276, + 185, + 336, + 200 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 143, + 209, + 468, + 384 + ], + "lines": [ + { + "bbox": [ + 142, + 208, + 469, + 222 + ], + "spans": [ + { + "bbox": [ + 142, + 208, + 469, + 222 + ], + "score": 1.0, + "content": "While task-specific finetuning of deep networks pretrained with self-supervision", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 221, + 469, + 232 + ], + "spans": [ + { + "bbox": [ + 141, + 221, + 469, + 232 + ], + "score": 1.0, + "content": "has led to significant empirical advances in NLP, their large size makes the stan-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 230, + 469, + 244 + ], + "spans": [ + { + "bbox": [ + 141, + 230, + 469, + 244 + ], + "score": 1.0, + "content": "dard finetuning approach difficult to apply to multi-task, memory-constrained set-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 242, + 469, + 255 + ], + "spans": [ + { + "bbox": [ + 141, + 242, + 469, + 255 + ], + "score": 1.0, + "content": "tings, as storing the full model parameters for each task become prohibitively", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 142, + 254, + 469, + 265 + ], + "spans": [ + { + "bbox": [ + 142, + 254, + 469, + 265 + ], + "score": 1.0, + "content": "expensive. We propose diff pruning as a simple approach to enable parameter-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 264, + 470, + 276 + ], + "spans": [ + { + "bbox": [ + 141, + 264, + 470, + 276 + ], + "score": 1.0, + "content": "efficient transfer learning within the pretrain-finetune framework. This approach", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 275, + 470, + 287 + ], + "spans": [ + { + "bbox": [ + 141, + 275, + 470, + 287 + ], + "score": 1.0, + "content": "views finetuning as learning a task-specific “diff” vector that is applied on top of", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 142, + 286, + 470, + 298 + ], + "spans": [ + { + "bbox": [ + 142, + 286, + 470, + 298 + ], + "score": 1.0, + "content": "the pretrained parameter vector, which remains fixed and is shared across different", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 297, + 469, + 309 + ], + "spans": [ + { + "bbox": [ + 141, + 297, + 469, + 309 + ], + "score": 1.0, + "content": "tasks. The diff vector is adaptively pruned during training with a differentiable ap-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 308, + 470, + 320 + ], + "spans": [ + { + "bbox": [ + 141, + 308, + 218, + 320 + ], + "score": 1.0, + "content": "proximation to the", + "type": "text" + }, + { + "bbox": [ + 219, + 308, + 231, + 319 + ], + "score": 0.89, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 308, + 470, + 320 + ], + "score": 1.0, + "content": "-norm penalty to encourage sparsity. Diff pruning becomes", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 319, + 470, + 331 + ], + "spans": [ + { + "bbox": [ + 141, + 319, + 470, + 331 + ], + "score": 1.0, + "content": "parameter-efficient as the number of tasks increases, as it requires storing only the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 330, + 470, + 341 + ], + "spans": [ + { + "bbox": [ + 141, + 330, + 470, + 341 + ], + "score": 1.0, + "content": "nonzero positions and weights of the diff vector for each task, while the cost of", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 341, + 469, + 352 + ], + "spans": [ + { + "bbox": [ + 141, + 341, + 469, + 352 + ], + "score": 1.0, + "content": "storing the shared pretrained model remains constant. We find that models fine-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 142, + 352, + 469, + 363 + ], + "spans": [ + { + "bbox": [ + 142, + 352, + 469, + 363 + ], + "score": 1.0, + "content": "tuned with diff pruning can match the performance of fully finetuned baselines", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 362, + 469, + 375 + ], + "spans": [ + { + "bbox": [ + 141, + 362, + 339, + 375 + ], + "score": 1.0, + "content": "on the GLUE benchmark while only modifying", + "type": "text" + }, + { + "bbox": [ + 340, + 362, + 362, + 374 + ], + "score": 0.87, + "content": "0 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 362, + 469, + 375 + ], + "score": 1.0, + "content": "of the pretrained model’s", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 375, + 225, + 385 + ], + "spans": [ + { + "bbox": [ + 141, + 375, + 225, + 385 + ], + "score": 1.0, + "content": "parameters per task.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 12.5, + "bbox_fs": [ + 141, + 208, + 470, + 385 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 394, + 206, + 407 + ], + "lines": [ + { + "bbox": [ + 105, + 393, + 208, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 208, + 409 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 412, + 505, + 500 + ], + "lines": [ + { + "bbox": [ + 105, + 412, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 505, + 426 + ], + "score": 1.0, + "content": "Task-specific finetuning of pretrained deep networks has become the dominant paradigm in contem-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 424, + 505, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 505, + 436 + ], + "score": 1.0, + "content": "porary NLP, achieving state-of-the-art results across a suite of natural language understanding tasks", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 435, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 106, + 435, + 505, + 447 + ], + "score": 1.0, + "content": "(Devlin et al., 2019; Liu et al., 2019c; Yang et al., 2019; Lan et al., 2020). While straightforward and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 446, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 505, + 459 + ], + "score": 1.0, + "content": "empirically effective, this approach is difficult to scale to multi-task, memory-constrained settings", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 457, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 505, + 469 + ], + "score": 1.0, + "content": "(e.g. for on-device applications), as it requires shipping and storing a full set of model parameters for", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 467, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 505, + 480 + ], + "score": 1.0, + "content": "each task. Inasmuch as these models are learning generalizable, task-agnostic language representa-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 478, + 504, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 504, + 491 + ], + "score": 1.0, + "content": "tions through self-supervised pretraining, finetuning the entire model for each task is an especially", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 489, + 252, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 252, + 501 + ], + "score": 1.0, + "content": "inefficient use of model parameters.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 412, + 505, + 501 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 506, + 505, + 638 + ], + "lines": [ + { + "bbox": [ + 105, + 506, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 505, + 519 + ], + "score": 1.0, + "content": "A popular approach to parameter-efficiency is to learn sparse models for each task where a subset", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 517, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 506, + 531 + ], + "score": 1.0, + "content": "of the final model parameters are exactly zero (Gordon et al., 2020; Sajjad et al., 2020; Zhao et al.,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 527, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 506, + 542 + ], + "score": 1.0, + "content": "2020; Sanh et al., 2020). Such approaches often face a steep sparsity/performance tradeoff, and a", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 539, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 299, + 553 + ], + "score": 1.0, + "content": "substantial portion of nonzero parameters (e.g.", + "type": "text" + }, + { + "bbox": [ + 299, + 539, + 342, + 550 + ], + "score": 0.82, + "content": "10 \\% { - } 3 0 \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 539, + 506, + 553 + ], + "score": 1.0, + "content": ") are still typically required to match the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 551, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 505, + 562 + ], + "score": 1.0, + "content": "performance of the dense counterparts. An alternative is to use multi-task learning or feature-based", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "transfer for more parameter-efficient transfer learning with pretrained models (Liu et al., 2019b;", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "Clark et al., 2019; Stickland & Murray, 2019; Reimers & Gurevych, 2019; Feng et al., 2020). These", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 582, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 596 + ], + "score": 1.0, + "content": "methods learn only a small number of additional parameters (e.g. a linear layer) on top of a shared", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 593, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 506, + 608 + ], + "score": 1.0, + "content": "model. However, multi-task learning generally requires access to all tasks during training to prevent", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "catastrophic forgetting (French, 1999), while feature-based transfer learning (e.g. based on task-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 616, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 506, + 630 + ], + "score": 1.0, + "content": "agnostic sentence representations) is typically outperformed by full finetuning (Howard & Ruder,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 626, + 136, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 136, + 640 + ], + "score": 1.0, + "content": "2018).", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 506, + 506, + 640 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 643, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 644, + 504, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 504, + 656 + ], + "score": 1.0, + "content": "Adapters (Rebuffi et al., 2018) have recently emerged as a promising approach to parameter-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "score": 1.0, + "content": "efficient transfer learning within the pretrain-finetune paradigm (Houlsby et al., 2019; Pfeiffer et al.,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "score": 1.0, + "content": "2020a;b;c). Adapter layers are smaller, task-specific modules that are inserted between layers of a", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "score": 1.0, + "content": "pretrained model, which remains fixed and is shared across tasks. These approaches do not require", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "access to all tasks during training making them attractive in settings where one hopes to obtain and", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "share performant models as new tasks arrive in stream. Houlsby et al. (2019) find that adapter lay-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "ers trained on BERT can match the performance of fully finetuned BERT on the GLUE benchmark", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 721, + 474, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 273, + 733 + ], + "score": 1.0, + "content": "(Wang et al., 2019a) while only requiring", + "type": "text" + }, + { + "bbox": [ + 273, + 721, + 296, + 731 + ], + "score": 0.84, + "content": "3 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 721, + 474, + 733 + ], + "score": 1.0, + "content": "additional parameters (on average) per task.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 45.5, + "bbox_fs": [ + 105, + 644, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 225 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "In this work, we consider a similar setting as adapters but propose a new diff pruning approach with", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 506, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 506, + 108 + ], + "score": 1.0, + "content": "the goal of even more parameter-efficient transfer learning. Diff pruning views finetuning as learning", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "a task-specific difference vector that is applied on top of the pretrained parameter vector, which", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "remains fixed and is shared across different tasks. In order to learn this vector, we reparameterize", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 125, + 506, + 141 + ], + "spans": [ + { + "bbox": [ + 104, + 125, + 256, + 141 + ], + "score": 1.0, + "content": "the task-specific model parameters as", + "type": "text" + }, + { + "bbox": [ + 256, + 127, + 349, + 138 + ], + "score": 0.9, + "content": "\\theta _ { \\mathrm { t a s k } } = \\theta _ { \\mathrm { p r e t r a i n e d } } + \\delta _ { \\mathrm { t a s k } }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 125, + 506, + 141 + ], + "score": 1.0, + "content": ", where the pretrained parameter vector", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 137, + 506, + 151 + ], + "spans": [ + { + "bbox": [ + 107, + 137, + 142, + 149 + ], + "score": 0.86, + "content": "\\theta _ { \\mathrm { p r e t r a i n e d } }", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 137, + 308, + 151 + ], + "score": 1.0, + "content": "is fixed and the task-specific diff vector", + "type": "text" + }, + { + "bbox": [ + 309, + 138, + 327, + 149 + ], + "score": 0.89, + "content": "\\delta _ { \\mathrm { t a s k } }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 137, + 506, + 151 + ], + "score": 1.0, + "content": "is finetuned. The diff vector is regularized", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 147, + 506, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 283, + 163 + ], + "score": 1.0, + "content": "with a differentiable approximation to the", + "type": "text" + }, + { + "bbox": [ + 284, + 149, + 295, + 159 + ], + "score": 0.88, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 147, + 506, + 163 + ], + "score": 1.0, + "content": "-norm penalty (Louizos et al., 2018) to encourage", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "score": 1.0, + "content": "sparsity. This approach can become parameter-efficient as the number of tasks increases as it only", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 171, + 506, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 506, + 182 + ], + "score": 1.0, + "content": "requires storing the nonzero positions and weights of the diff vector for each task. The cost of", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 182, + 505, + 193 + ], + "spans": [ + { + "bbox": [ + 106, + 182, + 505, + 193 + ], + "score": 1.0, + "content": "storing the shared pretrained model remains constant and is amortized across multiple tasks. On", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 191, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 505, + 205 + ], + "score": 1.0, + "content": "the GLUE benchmark (Wang et al., 2019a), diff pruning can match the performance of the fully", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 201, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 299, + 218 + ], + "score": 1.0, + "content": "finetuned BERT baselines while finetuning only", + "type": "text" + }, + { + "bbox": [ + 299, + 203, + 322, + 214 + ], + "score": 0.88, + "content": "0 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 201, + 505, + 218 + ], + "score": 1.0, + "content": "of the pretrained parameters per task, making", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 213, + 411, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 411, + 227 + ], + "score": 1.0, + "content": "it a potential alternative to adapters for parameter-efficient transfer learning.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 6 + }, + { + "type": "title", + "bbox": [ + 107, + 236, + 372, + 249 + ], + "lines": [ + { + "bbox": [ + 105, + 236, + 373, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 373, + 250 + ], + "score": 1.0, + "content": "2 BACKGROUND: TRANSFER LEARNING FOR NLP", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 255, + 505, + 322 + ], + "lines": [ + { + "bbox": [ + 106, + 254, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 505, + 268 + ], + "score": 1.0, + "content": "The field of NLP has recently seen remarkable progress through transfer learning with a pretrain-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 266, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 505, + 279 + ], + "score": 1.0, + "content": "and-finetune paradigm, which initializes a subset of the model parameters for all tasks from a pre-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 277, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 506, + 290 + ], + "score": 1.0, + "content": "trained model and then finetunes on a task specific objective. Pretraining objectives include context", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 289, + 505, + 301 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 505, + 301 + ], + "score": 1.0, + "content": "prediction (Mikolov et al., 2013), autoencoding (Dai & Le, 2015), machine translation (McCann", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 299, + 506, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 506, + 312 + ], + "score": 1.0, + "content": "et al., 2017), and more recently, variants of language modeling (Peters et al., 2018; Radford et al.,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 310, + 256, + 322 + ], + "spans": [ + { + "bbox": [ + 106, + 310, + 256, + 322 + ], + "score": 1.0, + "content": "2018; Devlin et al., 2019) objectives.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 107, + 327, + 505, + 364 + ], + "lines": [ + { + "bbox": [ + 106, + 327, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 106, + 327, + 505, + 340 + ], + "score": 1.0, + "content": "Here we consider applying transfer learning to multiple tasks. We consider a setting with a poten-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 100, + 336, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 100, + 336, + 266, + 360 + ], + "score": 1.0, + "content": "tially unknown set of tasks, where each", + "type": "text" + }, + { + "bbox": [ + 267, + 341, + 295, + 352 + ], + "score": 0.9, + "content": "\\tau \\in \\mathcal { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 336, + 415, + 360 + ], + "score": 1.0, + "content": "has an associated training set", + "type": "text" + }, + { + "bbox": [ + 415, + 338, + 480, + 353 + ], + "score": 0.91, + "content": "\\{ x _ { \\tau } ^ { ( n ) } , y _ { \\tau } ^ { ( n ) } \\} _ { n = 1 } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 342, + 486, + 347 + ], + "score": 1.0, + "content": "1", + "type": "text" + }, + { + "bbox": [ + 487, + 340, + 506, + 353 + ], + "score": 1.0, + "content": "For", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 480, + 346, + 484, + 355 + ], + "spans": [ + { + "bbox": [ + 480, + 346, + 484, + 355 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 353, + 504, + 364 + ], + "spans": [ + { + "bbox": [ + 106, + 353, + 365, + 364 + ], + "score": 1.0, + "content": "all tasks, the goal is to produce (possibly tied) model parameters", + "type": "text" + }, + { + "bbox": [ + 378, + 353, + 504, + 364 + ], + "score": 1.0, + "content": "to minimize the empirical risk,", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5 + }, + { + "type": "interline_equation", + "bbox": [ + 212, + 369, + 398, + 403 + ], + "lines": [ + { + "bbox": [ + 212, + 369, + 398, + 403 + ], + "spans": [ + { + "bbox": [ + 212, + 369, + 398, + 403 + ], + "score": 0.93, + "content": "\\operatorname* { m i n } _ { \\pmb { \\theta } _ { \\tau } } \\ \\frac { 1 } { N } \\sum _ { n = 1 } ^ { N } \\mathcal { L } \\left( f ( x _ { \\tau } ^ { ( n ) } ; \\pmb { \\theta } _ { \\tau } ) , y _ { \\tau } ^ { ( n ) } \\right) + \\lambda R ( \\pmb { \\theta } _ { \\tau } )", + "type": "interline_equation", + "image_path": "209034c1e384d6fcc31ab4692e6f4c361c0f837f239fb577916b24303febed90.jpg" + } + ] + } + ], + "index": 24.5, + "virtual_lines": [ + { + "bbox": [ + 212, + 369, + 398, + 386.0 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 212, + 386.0, + 398, + 403.0 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 408, + 503, + 432 + ], + "lines": [ + { + "bbox": [ + 106, + 408, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 106, + 408, + 134, + 421 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 409, + 162, + 421 + ], + "score": 0.92, + "content": "f ( \\cdot ; \\pmb \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 408, + 441, + 421 + ], + "score": 1.0, + "content": "is a parameterized function over the input (e.g. a neural network),", + "type": "text" + }, + { + "bbox": [ + 441, + 409, + 467, + 421 + ], + "score": 0.92, + "content": "\\mathcal L ( \\cdot , \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 408, + 505, + 421 + ], + "score": 1.0, + "content": "is a loss", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 419, + 461, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 242, + 433 + ], + "score": 1.0, + "content": "function (e.g. cross-entropy), and", + "type": "text" + }, + { + "bbox": [ + 243, + 420, + 262, + 432 + ], + "score": 0.91, + "content": "R ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 419, + 450, + 433 + ], + "score": 1.0, + "content": "is an optional regularizer with hyperparameter", + "type": "text" + }, + { + "bbox": [ + 450, + 421, + 457, + 430 + ], + "score": 0.82, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 419, + 461, + 433 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 106, + 436, + 505, + 568 + ], + "lines": [ + { + "bbox": [ + 105, + 436, + 504, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 504, + 449 + ], + "score": 1.0, + "content": "This multi-task setting can use the pretrain-then-finetune approach by simply learning indepen-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 448, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 505, + 460 + ], + "score": 1.0, + "content": "dent parameters for each task; however the large size of pretrained models makes this approach", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 459, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 106, + 459, + 505, + 471 + ], + "score": 1.0, + "content": "exceedingly parameter inefficient. For example, widely-adopted models such as BERTBASE and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 469, + 506, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 506, + 483 + ], + "score": 1.0, + "content": "BERTLARGE have 110M and 340M parameters respectively, while their contemporaries such as", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 479, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 505, + 493 + ], + "score": 1.0, + "content": "T5 (Raffel et al., 2020), Megatron-LM (Shoeybi et al., 2019), and Turing-NLG (Rajbhandari", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 491, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 104, + 491, + 506, + 505 + ], + "score": 1.0, + "content": "et al., 2019) have parameter counts in the billions. Storing the fully finetuned models becomes", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 501, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 505, + 515 + ], + "score": 1.0, + "content": "difficult even for a moderate number of tasks.2 A classic approach to tackling this parameter-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 514, + 506, + 526 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 506, + 526 + ], + "score": 1.0, + "content": "inefficiency (Caruana, 1997) is to train a single shared model (along with a task-specific output", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 524, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 506, + 538 + ], + "score": 1.0, + "content": "layer) against multiple tasks through joint training. However, the usual formulation of multi-task", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 536, + 505, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 239, + 548 + ], + "score": 1.0, + "content": "learning requires the set of tasks", + "type": "text" + }, + { + "bbox": [ + 239, + 536, + 249, + 546 + ], + "score": 0.8, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 536, + 505, + 548 + ], + "score": 1.0, + "content": "to be known in advance in order to prevent catastrophic forget-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 545, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 506, + 560 + ], + "score": 1.0, + "content": "ting (French, 1999),3 making it unsuitable for applications in which the set of tasks is unknown (e.g.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 558, + 223, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 223, + 569 + ], + "score": 1.0, + "content": "when tasks arrive in stream).", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 33.5 + }, + { + "type": "title", + "bbox": [ + 108, + 579, + 201, + 592 + ], + "lines": [ + { + "bbox": [ + 104, + 578, + 203, + 595 + ], + "spans": [ + { + "bbox": [ + 104, + 578, + 203, + 595 + ], + "score": 1.0, + "content": "3 DIFF PRUNING", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 106, + 599, + 504, + 622 + ], + "lines": [ + { + "bbox": [ + 106, + 599, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 599, + 408, + 612 + ], + "score": 1.0, + "content": "Diff pruning formulates task-specific finetuning as learning a diff vector", + "type": "text" + }, + { + "bbox": [ + 408, + 600, + 420, + 610 + ], + "score": 0.87, + "content": "\\delta _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 599, + 505, + 612 + ], + "score": 1.0, + "content": "that is added to the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 610, + 502, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 223, + 624 + ], + "score": 1.0, + "content": "pretrained model parameters", + "type": "text" + }, + { + "bbox": [ + 223, + 610, + 258, + 623 + ], + "score": 0.83, + "content": "\\theta _ { \\mathrm { p r e t r a i n e d } }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 610, + 502, + 624 + ], + "score": 1.0, + "content": ". We first reparameterize the task-specific model parameters,", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + }, + { + "type": "interline_equation", + "bbox": [ + 262, + 627, + 348, + 641 + ], + "lines": [ + { + "bbox": [ + 262, + 627, + 348, + 641 + ], + "spans": [ + { + "bbox": [ + 262, + 627, + 348, + 641 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\pmb { \\theta } _ { \\tau } = \\pmb { \\theta } _ { \\mathrm { p r e t r a i n e d } } + \\delta _ { \\tau } , } \\end{array}", + "type": "interline_equation", + "image_path": "641357162c8cf5fd67763b84ed9ce3a1b4889bb6c238750d670e7c517ca4be3b.jpg" + } + ] + } + ], + "index": 43, + "virtual_lines": [ + { + "bbox": [ + 262, + 627, + 348, + 641 + ], + "spans": [], + "index": 43 + } + ] + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 649, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 648, + 506, + 663 + ], + "spans": [ + { + "bbox": [ + 119, + 648, + 506, + 663 + ], + "score": 1.0, + "content": "1Therefore our setup is different from the classic multitask setting which usually assumes that set of tasks", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 659, + 142, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 142, + 671 + ], + "score": 1.0, + "content": "is known", + "type": "text" + } + ] + }, + { + "bbox": [ + 117, + 668, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 117, + 668, + 506, + 684 + ], + "score": 1.0, + "content": "2An intriguing line of work suggests that large-scale language models can be used without finetuning for a", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 678, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 506, + 694 + ], + "score": 1.0, + "content": "variety of tasks if given the appropriate context (Radford et al., 2019; Brown et al., 2020). While interesting,", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 690, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 505, + 703 + ], + "score": 1.0, + "content": "these models generally underperform task-specific models and require billions of parameters, though recent", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 700, + 413, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 413, + 712 + ], + "score": 1.0, + "content": "work suggests that they can be made substantially smaller (Schick & Schutze, 2020).", + "type": "text" + } + ] + }, + { + "bbox": [ + 118, + 709, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 118, + 709, + 506, + 724 + ], + "score": 1.0, + "content": "3However, work on continual learning mitigates these issues to an extent (Shin et al., 2017; Lopez-Paz &", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 721, + 381, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 381, + 732 + ], + "score": 1.0, + "content": "Ranzato, 2017; Lee et al., 2017; Kirkpatrick et al., 2017; Parisi et al., 2018).", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 225 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "In this work, we consider a similar setting as adapters but propose a new diff pruning approach with", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 506, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 506, + 108 + ], + "score": 1.0, + "content": "the goal of even more parameter-efficient transfer learning. Diff pruning views finetuning as learning", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "a task-specific difference vector that is applied on top of the pretrained parameter vector, which", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "remains fixed and is shared across different tasks. In order to learn this vector, we reparameterize", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 125, + 506, + 141 + ], + "spans": [ + { + "bbox": [ + 104, + 125, + 256, + 141 + ], + "score": 1.0, + "content": "the task-specific model parameters as", + "type": "text" + }, + { + "bbox": [ + 256, + 127, + 349, + 138 + ], + "score": 0.9, + "content": "\\theta _ { \\mathrm { t a s k } } = \\theta _ { \\mathrm { p r e t r a i n e d } } + \\delta _ { \\mathrm { t a s k } }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 125, + 506, + 141 + ], + "score": 1.0, + "content": ", where the pretrained parameter vector", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 137, + 506, + 151 + ], + "spans": [ + { + "bbox": [ + 107, + 137, + 142, + 149 + ], + "score": 0.86, + "content": "\\theta _ { \\mathrm { p r e t r a i n e d } }", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 137, + 308, + 151 + ], + "score": 1.0, + "content": "is fixed and the task-specific diff vector", + "type": "text" + }, + { + "bbox": [ + 309, + 138, + 327, + 149 + ], + "score": 0.89, + "content": "\\delta _ { \\mathrm { t a s k } }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 137, + 506, + 151 + ], + "score": 1.0, + "content": "is finetuned. The diff vector is regularized", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 147, + 506, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 283, + 163 + ], + "score": 1.0, + "content": "with a differentiable approximation to the", + "type": "text" + }, + { + "bbox": [ + 284, + 149, + 295, + 159 + ], + "score": 0.88, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 147, + 506, + 163 + ], + "score": 1.0, + "content": "-norm penalty (Louizos et al., 2018) to encourage", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "score": 1.0, + "content": "sparsity. This approach can become parameter-efficient as the number of tasks increases as it only", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 171, + 506, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 506, + 182 + ], + "score": 1.0, + "content": "requires storing the nonzero positions and weights of the diff vector for each task. The cost of", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 182, + 505, + 193 + ], + "spans": [ + { + "bbox": [ + 106, + 182, + 505, + 193 + ], + "score": 1.0, + "content": "storing the shared pretrained model remains constant and is amortized across multiple tasks. On", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 191, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 505, + 205 + ], + "score": 1.0, + "content": "the GLUE benchmark (Wang et al., 2019a), diff pruning can match the performance of the fully", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 201, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 299, + 218 + ], + "score": 1.0, + "content": "finetuned BERT baselines while finetuning only", + "type": "text" + }, + { + "bbox": [ + 299, + 203, + 322, + 214 + ], + "score": 0.88, + "content": "0 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 201, + 505, + 218 + ], + "score": 1.0, + "content": "of the pretrained parameters per task, making", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 213, + 411, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 411, + 227 + ], + "score": 1.0, + "content": "it a potential alternative to adapters for parameter-efficient transfer learning.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 6, + "bbox_fs": [ + 104, + 82, + 506, + 227 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 236, + 372, + 249 + ], + "lines": [ + { + "bbox": [ + 105, + 236, + 373, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 373, + 250 + ], + "score": 1.0, + "content": "2 BACKGROUND: TRANSFER LEARNING FOR NLP", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 255, + 505, + 322 + ], + "lines": [ + { + "bbox": [ + 106, + 254, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 505, + 268 + ], + "score": 1.0, + "content": "The field of NLP has recently seen remarkable progress through transfer learning with a pretrain-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 266, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 505, + 279 + ], + "score": 1.0, + "content": "and-finetune paradigm, which initializes a subset of the model parameters for all tasks from a pre-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 277, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 506, + 290 + ], + "score": 1.0, + "content": "trained model and then finetunes on a task specific objective. Pretraining objectives include context", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 289, + 505, + 301 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 505, + 301 + ], + "score": 1.0, + "content": "prediction (Mikolov et al., 2013), autoencoding (Dai & Le, 2015), machine translation (McCann", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 299, + 506, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 506, + 312 + ], + "score": 1.0, + "content": "et al., 2017), and more recently, variants of language modeling (Peters et al., 2018; Radford et al.,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 310, + 256, + 322 + ], + "spans": [ + { + "bbox": [ + 106, + 310, + 256, + 322 + ], + "score": 1.0, + "content": "2018; Devlin et al., 2019) objectives.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 254, + 506, + 322 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 327, + 505, + 364 + ], + "lines": [ + { + "bbox": [ + 106, + 327, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 106, + 327, + 505, + 340 + ], + "score": 1.0, + "content": "Here we consider applying transfer learning to multiple tasks. We consider a setting with a poten-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 100, + 336, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 100, + 336, + 266, + 360 + ], + "score": 1.0, + "content": "tially unknown set of tasks, where each", + "type": "text" + }, + { + "bbox": [ + 267, + 341, + 295, + 352 + ], + "score": 0.9, + "content": "\\tau \\in \\mathcal { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 336, + 415, + 360 + ], + "score": 1.0, + "content": "has an associated training set", + "type": "text" + }, + { + "bbox": [ + 415, + 338, + 480, + 353 + ], + "score": 0.91, + "content": "\\{ x _ { \\tau } ^ { ( n ) } , y _ { \\tau } ^ { ( n ) } \\} _ { n = 1 } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 342, + 486, + 347 + ], + "score": 1.0, + "content": "1", + "type": "text" + }, + { + "bbox": [ + 487, + 340, + 506, + 353 + ], + "score": 1.0, + "content": "For", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 480, + 346, + 484, + 355 + ], + "spans": [ + { + "bbox": [ + 480, + 346, + 484, + 355 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 353, + 504, + 364 + ], + "spans": [ + { + "bbox": [ + 106, + 353, + 365, + 364 + ], + "score": 1.0, + "content": "all tasks, the goal is to produce (possibly tied) model parameters", + "type": "text" + }, + { + "bbox": [ + 378, + 353, + 504, + 364 + ], + "score": 1.0, + "content": "to minimize the empirical risk,", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5, + "bbox_fs": [ + 100, + 327, + 506, + 364 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 212, + 369, + 398, + 403 + ], + "lines": [ + { + "bbox": [ + 212, + 369, + 398, + 403 + ], + "spans": [ + { + "bbox": [ + 212, + 369, + 398, + 403 + ], + "score": 0.93, + "content": "\\operatorname* { m i n } _ { \\pmb { \\theta } _ { \\tau } } \\ \\frac { 1 } { N } \\sum _ { n = 1 } ^ { N } \\mathcal { L } \\left( f ( x _ { \\tau } ^ { ( n ) } ; \\pmb { \\theta } _ { \\tau } ) , y _ { \\tau } ^ { ( n ) } \\right) + \\lambda R ( \\pmb { \\theta } _ { \\tau } )", + "type": "interline_equation", + "image_path": "209034c1e384d6fcc31ab4692e6f4c361c0f837f239fb577916b24303febed90.jpg" + } + ] + } + ], + "index": 24.5, + "virtual_lines": [ + { + "bbox": [ + 212, + 369, + 398, + 386.0 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 212, + 386.0, + 398, + 403.0 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 408, + 503, + 432 + ], + "lines": [ + { + "bbox": [ + 106, + 408, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 106, + 408, + 134, + 421 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 409, + 162, + 421 + ], + "score": 0.92, + "content": "f ( \\cdot ; \\pmb \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 408, + 441, + 421 + ], + "score": 1.0, + "content": "is a parameterized function over the input (e.g. a neural network),", + "type": "text" + }, + { + "bbox": [ + 441, + 409, + 467, + 421 + ], + "score": 0.92, + "content": "\\mathcal L ( \\cdot , \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 408, + 505, + 421 + ], + "score": 1.0, + "content": "is a loss", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 419, + 461, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 242, + 433 + ], + "score": 1.0, + "content": "function (e.g. cross-entropy), and", + "type": "text" + }, + { + "bbox": [ + 243, + 420, + 262, + 432 + ], + "score": 0.91, + "content": "R ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 419, + 450, + 433 + ], + "score": 1.0, + "content": "is an optional regularizer with hyperparameter", + "type": "text" + }, + { + "bbox": [ + 450, + 421, + 457, + 430 + ], + "score": 0.82, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 419, + 461, + 433 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 106, + 408, + 505, + 433 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 436, + 505, + 568 + ], + "lines": [ + { + "bbox": [ + 105, + 436, + 504, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 504, + 449 + ], + "score": 1.0, + "content": "This multi-task setting can use the pretrain-then-finetune approach by simply learning indepen-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 448, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 505, + 460 + ], + "score": 1.0, + "content": "dent parameters for each task; however the large size of pretrained models makes this approach", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 459, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 106, + 459, + 505, + 471 + ], + "score": 1.0, + "content": "exceedingly parameter inefficient. For example, widely-adopted models such as BERTBASE and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 469, + 506, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 506, + 483 + ], + "score": 1.0, + "content": "BERTLARGE have 110M and 340M parameters respectively, while their contemporaries such as", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 479, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 505, + 493 + ], + "score": 1.0, + "content": "T5 (Raffel et al., 2020), Megatron-LM (Shoeybi et al., 2019), and Turing-NLG (Rajbhandari", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 491, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 104, + 491, + 506, + 505 + ], + "score": 1.0, + "content": "et al., 2019) have parameter counts in the billions. Storing the fully finetuned models becomes", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 501, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 505, + 515 + ], + "score": 1.0, + "content": "difficult even for a moderate number of tasks.2 A classic approach to tackling this parameter-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 514, + 506, + 526 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 506, + 526 + ], + "score": 1.0, + "content": "inefficiency (Caruana, 1997) is to train a single shared model (along with a task-specific output", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 524, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 506, + 538 + ], + "score": 1.0, + "content": "layer) against multiple tasks through joint training. However, the usual formulation of multi-task", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 536, + 505, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 239, + 548 + ], + "score": 1.0, + "content": "learning requires the set of tasks", + "type": "text" + }, + { + "bbox": [ + 239, + 536, + 249, + 546 + ], + "score": 0.8, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 536, + 505, + 548 + ], + "score": 1.0, + "content": "to be known in advance in order to prevent catastrophic forget-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 545, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 506, + 560 + ], + "score": 1.0, + "content": "ting (French, 1999),3 making it unsuitable for applications in which the set of tasks is unknown (e.g.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 558, + 223, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 223, + 569 + ], + "score": 1.0, + "content": "when tasks arrive in stream).", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 33.5, + "bbox_fs": [ + 104, + 436, + 506, + 569 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 579, + 201, + 592 + ], + "lines": [ + { + "bbox": [ + 104, + 578, + 203, + 595 + ], + "spans": [ + { + "bbox": [ + 104, + 578, + 203, + 595 + ], + "score": 1.0, + "content": "3 DIFF PRUNING", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 106, + 599, + 504, + 622 + ], + "lines": [ + { + "bbox": [ + 106, + 599, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 599, + 408, + 612 + ], + "score": 1.0, + "content": "Diff pruning formulates task-specific finetuning as learning a diff vector", + "type": "text" + }, + { + "bbox": [ + 408, + 600, + 420, + 610 + ], + "score": 0.87, + "content": "\\delta _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 599, + 505, + 612 + ], + "score": 1.0, + "content": "that is added to the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 610, + 502, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 223, + 624 + ], + "score": 1.0, + "content": "pretrained model parameters", + "type": "text" + }, + { + "bbox": [ + 223, + 610, + 258, + 623 + ], + "score": 0.83, + "content": "\\theta _ { \\mathrm { p r e t r a i n e d } }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 610, + 502, + 624 + ], + "score": 1.0, + "content": ". We first reparameterize the task-specific model parameters,", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 599, + 505, + 624 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 262, + 627, + 348, + 641 + ], + "lines": [ + { + "bbox": [ + 262, + 627, + 348, + 641 + ], + "spans": [ + { + "bbox": [ + 262, + 627, + 348, + 641 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\pmb { \\theta } _ { \\tau } = \\pmb { \\theta } _ { \\mathrm { p r e t r a i n e d } } + \\delta _ { \\tau } , } \\end{array}", + "type": "interline_equation", + "image_path": "641357162c8cf5fd67763b84ed9ce3a1b4889bb6c238750d670e7c517ca4be3b.jpg" + } + ] + } + ], + "index": 43, + "virtual_lines": [ + { + "bbox": [ + 262, + 627, + 348, + 641 + ], + "spans": [], + "index": 43 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 379, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 80, + 380, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 380, + 97 + ], + "score": 1.0, + "content": "which results in the following empirical risk minimization problem,", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 164, + 96, + 446, + 130 + ], + "lines": [ + { + "bbox": [ + 164, + 96, + 446, + 130 + ], + "spans": [ + { + "bbox": [ + 164, + 96, + 446, + 130 + ], + "score": 0.95, + "content": "\\operatorname* { m i n } _ { \\delta _ { \\tau } } \\ \\frac { 1 } { N } \\sum _ { n = 1 } ^ { N } \\mathcal { L } \\left( f ( x _ { \\tau } ^ { ( n ) } ; \\theta _ { \\mathrm { p r e t r a i n e d } } + \\delta _ { \\tau } ) , y _ { \\tau } ^ { ( n ) } \\right) + \\lambda R ( \\theta _ { \\mathrm { p r e t r a i n e d } } + \\delta _ { \\tau } ) .", + "type": "interline_equation", + "image_path": "67153bebf4dae0992cb925cc59d54228833fd661c3be6236e95797eb4ef05e58.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 164, + 96, + 446, + 107.33333333333333 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 164, + 107.33333333333333, + 446, + 118.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 164, + 118.66666666666666, + 446, + 130.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 137, + 506, + 193 + ], + "lines": [ + { + "bbox": [ + 106, + 136, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 106, + 136, + 505, + 150 + ], + "score": 1.0, + "content": "This trivial reparameterization is equivalent to the original formulation. Its benefit comes in the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 147, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 388, + 161 + ], + "score": 1.0, + "content": "multi-task setting where the cost of storing the pretrained parameters", + "type": "text" + }, + { + "bbox": [ + 388, + 148, + 424, + 160 + ], + "score": 0.9, + "content": "\\theta _ { \\mathrm { p r e t r a i n e d } }", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 147, + 505, + 161 + ], + "score": 1.0, + "content": "is amortized across", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 158, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 443, + 172 + ], + "score": 1.0, + "content": "tasks, and the only marginal cost for new tasks is the diff vector. If we can regularize", + "type": "text" + }, + { + "bbox": [ + 443, + 159, + 455, + 170 + ], + "score": 0.88, + "content": "\\delta _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 158, + 505, + 172 + ], + "score": 1.0, + "content": "to be sparse", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 170, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 170, + 147, + 183 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 147, + 170, + 240, + 182 + ], + "score": 0.93, + "content": "\\lVert \\delta _ { \\tau } \\rVert _ { 0 } \\ll \\lVert \\bar { \\pmb { \\theta } } _ { \\mathrm { p r e t r a i n e d } } \\rVert _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 170, + 505, + 183 + ], + "score": 1.0, + "content": ", then this approach can become more parameter-efficient as the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 180, + 489, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 346, + 195 + ], + "score": 1.0, + "content": "number of tasks increases. We can specify this goal with an", + "type": "text" + }, + { + "bbox": [ + 347, + 182, + 359, + 192 + ], + "score": 0.89, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 180, + 489, + 195 + ], + "score": 1.0, + "content": "-norm penalty on the diff vector,", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6 + }, + { + "type": "interline_equation", + "bbox": [ + 208, + 194, + 402, + 228 + ], + "lines": [ + { + "bbox": [ + 208, + 194, + 402, + 228 + ], + "spans": [ + { + "bbox": [ + 208, + 194, + 402, + 228 + ], + "score": 0.94, + "content": "R ( \\theta _ { \\mathrm { p r e t r a i n e d } } + \\delta _ { \\tau } ) = \\| \\pmb { \\delta } _ { \\tau } \\| _ { 0 } = \\sum _ { i = 1 } ^ { d } \\mathbb { 1 } \\{ \\pmb { \\delta } _ { \\tau , i } \\neq 0 \\} .", + "type": "interline_equation", + "image_path": "db87601c916bc51947dfd29fe65493f44e30dcb3ea1509908209393cfeaa86fe.jpg" + } + ] + } + ], + "index": 9.5, + "virtual_lines": [ + { + "bbox": [ + 208, + 194, + 402, + 211.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 208, + 211.0, + 402, + 228.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "title", + "bbox": [ + 106, + 244, + 357, + 256 + ], + "lines": [ + { + "bbox": [ + 105, + 244, + 357, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 313, + 257 + ], + "score": 1.0, + "content": "3.1 DIFFERENTIABLE APPROXIMATION TO THE", + "type": "text" + }, + { + "bbox": [ + 314, + 245, + 326, + 256 + ], + "score": 0.86, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 244, + 357, + 257 + ], + "score": 1.0, + "content": "-NORM", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 261, + 505, + 329 + ], + "lines": [ + { + "bbox": [ + 105, + 261, + 505, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 505, + 275 + ], + "score": 1.0, + "content": "This regularizer is difficult to directly optimize as it is non-differentiable. In order to approximate", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 272, + 504, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 124, + 286 + ], + "score": 1.0, + "content": "this", + "type": "text" + }, + { + "bbox": [ + 124, + 273, + 137, + 284 + ], + "score": 0.88, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 272, + 456, + 286 + ], + "score": 1.0, + "content": "objective, we follow the standard approach for gradient-based learning with", + "type": "text" + }, + { + "bbox": [ + 456, + 274, + 469, + 284 + ], + "score": 0.88, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 272, + 504, + 286 + ], + "score": 1.0, + "content": "sparsity", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 284, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 505, + 297 + ], + "score": 1.0, + "content": "using a relaxed mask vector (Louizos et al., 2018). This approach involves relaxing a binary vector", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 295, + 506, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 506, + 307 + ], + "score": 1.0, + "content": "into continuous space, and then multiplying it with a dense weight vector to determine how much", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 305, + 506, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 506, + 319 + ], + "score": 1.0, + "content": "of the weight vector is applied during training. After training, the mask is deterministic and a large", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 317, + 257, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 257, + 330 + ], + "score": 1.0, + "content": "portion of the diff vector is true zero.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 106, + 333, + 504, + 356 + ], + "lines": [ + { + "bbox": [ + 105, + 333, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 281, + 347 + ], + "score": 1.0, + "content": "To apply this method we first decompose", + "type": "text" + }, + { + "bbox": [ + 281, + 334, + 293, + 345 + ], + "score": 0.88, + "content": "\\delta _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 333, + 506, + 347 + ], + "score": 1.0, + "content": "into a binary mask vector multiplied with a dense", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 343, + 137, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 137, + 359 + ], + "score": 1.0, + "content": "vector,", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 356, + 425, + 372 + ], + "lines": [ + { + "bbox": [ + 186, + 356, + 425, + 372 + ], + "spans": [ + { + "bbox": [ + 186, + 356, + 425, + 372 + ], + "score": 0.84, + "content": "\\begin{array} { r } { \\delta _ { \\tau } = \\mathbf { z } _ { \\tau } \\odot \\mathbf { w } _ { \\tau } , \\qquad \\mathbf { z } _ { \\tau } \\in \\{ 0 , 1 \\} ^ { d } , \\mathbf { w } _ { \\tau } \\in \\mathbb { R } ^ { d } } \\end{array}", + "type": "interline_equation", + "image_path": "50baad9ae5d43e25ead61a531e7ee5bd6f11e2d43dad20fb8b2093d5a5ab6bab.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 186, + 356, + 425, + 372 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 374, + 505, + 396 + ], + "lines": [ + { + "bbox": [ + 105, + 372, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 357, + 387 + ], + "score": 1.0, + "content": "We can now instead optimize an expectation with respect to", + "type": "text" + }, + { + "bbox": [ + 357, + 376, + 369, + 385 + ], + "score": 0.87, + "content": "{ \\bf z } _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 372, + 452, + 387 + ], + "score": 1.0, + "content": ", whose distribution", + "type": "text" + }, + { + "bbox": [ + 453, + 374, + 493, + 386 + ], + "score": 0.91, + "content": "p ( \\mathbf { z } _ { \\tau } ; \\pmb { \\alpha } _ { \\tau } )", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 372, + 506, + 387 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 383, + 265, + 398 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 246, + 398 + ], + "score": 1.0, + "content": "initially Bernoulli with parameters", + "type": "text" + }, + { + "bbox": [ + 247, + 387, + 260, + 396 + ], + "score": 0.87, + "content": "\\pmb { \\alpha } _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 383, + 265, + 398 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "interline_equation", + "bbox": [ + 136, + 398, + 475, + 432 + ], + "lines": [ + { + "bbox": [ + 136, + 398, + 475, + 432 + ], + "spans": [ + { + "bbox": [ + 136, + 398, + 475, + 432 + ], + "score": 0.94, + "content": "\\operatorname* { m i n } _ { \\alpha _ { \\tau } , \\mathbf { w } _ { \\tau } } \\mathbb { E } _ { \\mathbf { z } _ { \\tau } \\sim p ( \\mathbf { z } _ { \\tau } ; \\alpha _ { \\tau } ) } \\left[ \\frac { 1 } { N } \\sum _ { n = 1 } ^ { N } \\mathcal { L } \\left( f ( x _ { \\tau } ^ { ( n ) } ; \\boldsymbol { \\theta } _ { \\mathrm { p r e t r a i n e d } } + \\mathbf { z } _ { \\tau } \\odot \\mathbf { w } _ { \\tau } , ) , y _ { \\tau } ^ { ( n ) } \\right) + \\lambda \\lVert \\delta _ { \\tau } \\rVert _ { 0 } \\right] .", + "type": "interline_equation", + "image_path": "3f81f16930f14f81b0b5df85f8e68d18a457c5c95c09d04e34b40d88c3eccece.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 136, + 398, + 475, + 409.3333333333333 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 136, + 409.3333333333333, + 475, + 420.66666666666663 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 136, + 420.66666666666663, + 475, + 431.99999999999994 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 433, + 505, + 500 + ], + "lines": [ + { + "bbox": [ + 106, + 433, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 106, + 433, + 299, + 446 + ], + "score": 1.0, + "content": "This objective is still difficult in practice due to", + "type": "text" + }, + { + "bbox": [ + 299, + 435, + 311, + 444 + ], + "score": 0.86, + "content": "{ \\bf z } _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 433, + 505, + 446 + ], + "score": 1.0, + "content": "’s being discrete (which requires the score func-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 444, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 505, + 457 + ], + "score": 1.0, + "content": "tion gradient estimator), but the expectation provides some guidance for empirically effective relax-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 454, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 428, + 468 + ], + "score": 1.0, + "content": "ations. We follow prior work (Louizos et al., 2018; Wang et al., 2019b) and relax", + "type": "text" + }, + { + "bbox": [ + 428, + 456, + 440, + 466 + ], + "score": 0.86, + "content": "{ \\bf z } _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 454, + 506, + 468 + ], + "score": 1.0, + "content": "into continuous", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 464, + 506, + 479 + ], + "spans": [ + { + "bbox": [ + 104, + 464, + 131, + 479 + ], + "score": 1.0, + "content": "space", + "type": "text" + }, + { + "bbox": [ + 132, + 466, + 157, + 478 + ], + "score": 0.92, + "content": "[ 0 , 1 ] ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 464, + 506, + 479 + ], + "score": 1.0, + "content": "with a stretched Hard-Concrete distribution (Jang et al., 2017; Maddison et al., 2017),", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 476, + 506, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 397, + 489 + ], + "score": 1.0, + "content": "which allows for the use of pathwise gradient estimators. Specifically,", + "type": "text" + }, + { + "bbox": [ + 398, + 479, + 409, + 488 + ], + "score": 0.86, + "content": "{ \\bf z } _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 476, + 506, + 489 + ], + "score": 1.0, + "content": "is now defined to be a", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 487, + 461, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 338, + 501 + ], + "score": 1.0, + "content": "deterministic and (sub)differentiable function of a sample", + "type": "text" + }, + { + "bbox": [ + 338, + 490, + 346, + 498 + ], + "score": 0.33, + "content": "\\mathbf { u }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 487, + 461, + 501 + ], + "score": 1.0, + "content": "from a uniform distribution,", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28.5 + }, + { + "type": "interline_equation", + "bbox": [ + 159, + 501, + 451, + 531 + ], + "lines": [ + { + "bbox": [ + 159, + 501, + 451, + 531 + ], + "spans": [ + { + "bbox": [ + 159, + 501, + 451, + 531 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\mathbf { u } \\sim U ( \\mathbf { 0 } , \\mathbf { 1 } ) , \\qquad \\mathbf { s } _ { \\tau } = \\sigma \\left( \\log \\mathbf { u } - \\log ( 1 - \\mathbf { u } ) + \\alpha _ { \\tau } \\right) , } \\\\ { \\bar { \\mathbf { s } } _ { \\tau } = \\mathbf { s } _ { \\tau } \\times ( r - l ) + l , \\qquad \\mathbf { z } _ { \\tau } = \\operatorname* { m i n } ( \\mathbf { 1 } , \\operatorname* { m a x } ( \\mathbf { 0 } , \\bar { \\mathbf { s } } _ { \\tau } ) ) . } \\end{array}", + "type": "interline_equation", + "image_path": "2a6654c74a3353f08edc978223c41515541788a721f3d19b6042113955bb2af0.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 159, + 501, + 451, + 511.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 159, + 511.0, + 451, + 521.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 159, + 521.0, + 451, + 531.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 532, + 505, + 566 + ], + "lines": [ + { + "bbox": [ + 105, + 531, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 128, + 545 + ], + "score": 1.0, + "content": "Here", + "type": "text" + }, + { + "bbox": [ + 128, + 533, + 151, + 543 + ], + "score": 0.89, + "content": "l < 0", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 531, + 168, + 545 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 168, + 533, + 192, + 543 + ], + "score": 0.9, + "content": "r > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 531, + 322, + 545 + ], + "score": 1.0, + "content": "are two constants used to stretch", + "type": "text" + }, + { + "bbox": [ + 322, + 534, + 333, + 543 + ], + "score": 0.88, + "content": "{ \\bf s } _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 531, + 398, + 545 + ], + "score": 1.0, + "content": "into the interval", + "type": "text" + }, + { + "bbox": [ + 399, + 532, + 424, + 545 + ], + "score": 0.92, + "content": "( l , r ) ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 531, + 505, + 545 + ], + "score": 1.0, + "content": "before it is clamped", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 542, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 118, + 556 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 118, + 543, + 143, + 556 + ], + "score": 0.92, + "content": "[ 0 , 1 ] ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 542, + 182, + 556 + ], + "score": 1.0, + "content": "with the", + "type": "text" + }, + { + "bbox": [ + 182, + 543, + 256, + 555 + ], + "score": 0.9, + "content": "\\operatorname* { m i n } ( \\mathbf { 1 } , \\operatorname* { m a x } ( \\mathbf { 0 } , \\cdot ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 542, + 505, + 556 + ], + "score": 1.0, + "content": "operation. In this case we have a differentiable closed-form", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 555, + 259, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 218, + 567 + ], + "score": 1.0, + "content": "expression for the expected", + "type": "text" + }, + { + "bbox": [ + 218, + 556, + 230, + 565 + ], + "score": 0.87, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 555, + 259, + 567 + ], + "score": 1.0, + "content": "-norm,", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + }, + { + "type": "interline_equation", + "bbox": [ + 182, + 567, + 429, + 602 + ], + "lines": [ + { + "bbox": [ + 182, + 567, + 429, + 602 + ], + "spans": [ + { + "bbox": [ + 182, + 567, + 429, + 602 + ], + "score": 0.94, + "content": "\\mathbb { E } \\left[ \\left. \\pmb { \\delta } _ { \\tau } \\right. _ { 0 } \\right] = \\sum _ { i = 1 } ^ { d } \\mathbb { E } \\left[ \\mathbb { 1 } \\left\\{ \\mathbf { z } _ { \\tau , i } > 0 \\right\\} \\right] = \\sum _ { i = 1 } ^ { d } \\sigma \\left( \\alpha _ { \\tau , i } - \\log \\frac { - l } { r } \\right) .", + "type": "interline_equation", + "image_path": "edb3942bcbccde41788b4dc919f478a284c87096f975cee4e8d84e9352a91af3.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 182, + 567, + 429, + 578.6666666666666 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 182, + 578.6666666666666, + 429, + 590.3333333333333 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 182, + 590.3333333333333, + 429, + 601.9999999999999 + ], + "spans": [], + "index": 40 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 603, + 299, + 615 + ], + "lines": [ + { + "bbox": [ + 106, + 600, + 300, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 300, + 618 + ], + "score": 1.0, + "content": "Thus the final optimization problem is given by,", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 106, + 616, + 506, + 697 + ], + "lines": [ + { + "bbox": [ + 111, + 616, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 111, + 616, + 505, + 651 + ], + "score": 0.91, + "content": "\\operatorname* { m i n } _ { \\tau _ { \\tau } , \\mathbf { w } _ { \\tau } } \\mathbb { E } _ { \\mathbf { u } \\sim U [ \\mathbf { 0 } , 1 ] } \\left[ \\frac { 1 } { N } \\sum _ { n = 1 } ^ { N } \\mathcal { L } \\left( f ( x _ { \\tau } ^ { ( n ) } ; \\boldsymbol { \\theta } _ { \\mathrm { p r e r a i n e d } } + \\mathbf { z } _ { \\tau } \\odot \\mathbf { w } _ { \\tau } , ) , y _ { \\tau } ^ { ( n ) } \\right) \\right] + \\lambda \\sum _ { i = 1 } ^ { d } \\sigma \\left( \\alpha _ { \\tau , i } - \\log \\frac { - l } { r } \\right) ,", + "type": "inline_equation", + "image_path": "72329b01b909df36acfff405ad4030576990a7e85b97a9806463dbf4e504cd55.jpg" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 650, + 504, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 490, + 666 + ], + "score": 1.0, + "content": "and we can now utilize pathwise gradient estimators to optimize the first term with respect to", + "type": "text" + }, + { + "bbox": [ + 490, + 654, + 504, + 663 + ], + "score": 0.85, + "content": "\\pmb { \\alpha } _ { \\tau }", + "type": "inline_equation" + } + ], + "index": 43 + }, + { + "bbox": [ + 104, + 660, + 506, + 677 + ], + "spans": [ + { + "bbox": [ + 104, + 660, + 479, + 677 + ], + "score": 1.0, + "content": "since the expectation no longer depends on it.4 After training we obtain the final diff vector", + "type": "text" + }, + { + "bbox": [ + 480, + 664, + 491, + 674 + ], + "score": 0.88, + "content": "\\delta _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 660, + 506, + 677 + ], + "score": 1.0, + "content": "by", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 673, + 506, + 686 + ], + "spans": [ + { + "bbox": [ + 106, + 673, + 145, + 686 + ], + "score": 1.0, + "content": "sampling", + "type": "text" + }, + { + "bbox": [ + 146, + 676, + 154, + 684 + ], + "score": 0.52, + "content": "\\mathbf { u }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 673, + 213, + 686 + ], + "score": 1.0, + "content": "once to obtain", + "type": "text" + }, + { + "bbox": [ + 213, + 675, + 225, + 685 + ], + "score": 0.85, + "content": "{ \\bf z } _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 673, + 506, + 686 + ], + "score": 1.0, + "content": "(which is not necessarily a binary vector but has a significant number", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 684, + 489, + 698 + ], + "spans": [ + { + "bbox": [ + 105, + 684, + 421, + 698 + ], + "score": 1.0, + "content": "of dimensions equal to exactly zero due to the clamping function), then setting", + "type": "text" + }, + { + "bbox": [ + 422, + 685, + 482, + 696 + ], + "score": 0.91, + "content": "\\pmb { \\delta } _ { \\tau } = \\mathbf { z } _ { \\tau } \\odot \\mathbf { w } _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 684, + 489, + 698 + ], + "score": 1.0, + "content": ". 5", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 44 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 700, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 117, + 698, + 505, + 714 + ], + "spans": [ + { + "bbox": [ + 117, + 698, + 505, + 714 + ], + "score": 1.0, + "content": "4To reduce notation clutter we subsume the parameters of the task-specific output layer, which is not pre-", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 710, + 456, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 152, + 723 + ], + "score": 1.0, + "content": "trained, into", + "type": "text" + }, + { + "bbox": [ + 152, + 711, + 183, + 721 + ], + "score": 0.9, + "content": "\\theta _ { \\mathrm { p r e t r a i n e d } }", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 710, + 261, + 723 + ], + "score": 1.0, + "content": ". We do not apply the", + "type": "text" + }, + { + "bbox": [ + 261, + 711, + 273, + 720 + ], + "score": 0.86, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 710, + 456, + 723 + ], + "score": 1.0, + "content": "-norm penalty on these parameters during training.", + "type": "text" + } + ] + }, + { + "bbox": [ + 117, + 719, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 117, + 719, + 505, + 734 + ], + "score": 1.0, + "content": "5We found sampling once to work as well as more complicated alternatives (e.g. based on multiple samples).", + "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" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 106, + 26, + 307, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 379, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 80, + 380, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 380, + 97 + ], + "score": 1.0, + "content": "which results in the following empirical risk minimization problem,", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 106, + 80, + 380, + 97 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 164, + 96, + 446, + 130 + ], + "lines": [ + { + "bbox": [ + 164, + 96, + 446, + 130 + ], + "spans": [ + { + "bbox": [ + 164, + 96, + 446, + 130 + ], + "score": 0.95, + "content": "\\operatorname* { m i n } _ { \\delta _ { \\tau } } \\ \\frac { 1 } { N } \\sum _ { n = 1 } ^ { N } \\mathcal { L } \\left( f ( x _ { \\tau } ^ { ( n ) } ; \\theta _ { \\mathrm { p r e t r a i n e d } } + \\delta _ { \\tau } ) , y _ { \\tau } ^ { ( n ) } \\right) + \\lambda R ( \\theta _ { \\mathrm { p r e t r a i n e d } } + \\delta _ { \\tau } ) .", + "type": "interline_equation", + "image_path": "67153bebf4dae0992cb925cc59d54228833fd661c3be6236e95797eb4ef05e58.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 164, + 96, + 446, + 107.33333333333333 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 164, + 107.33333333333333, + 446, + 118.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 164, + 118.66666666666666, + 446, + 130.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 137, + 506, + 193 + ], + "lines": [ + { + "bbox": [ + 106, + 136, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 106, + 136, + 505, + 150 + ], + "score": 1.0, + "content": "This trivial reparameterization is equivalent to the original formulation. Its benefit comes in the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 147, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 388, + 161 + ], + "score": 1.0, + "content": "multi-task setting where the cost of storing the pretrained parameters", + "type": "text" + }, + { + "bbox": [ + 388, + 148, + 424, + 160 + ], + "score": 0.9, + "content": "\\theta _ { \\mathrm { p r e t r a i n e d } }", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 147, + 505, + 161 + ], + "score": 1.0, + "content": "is amortized across", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 158, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 443, + 172 + ], + "score": 1.0, + "content": "tasks, and the only marginal cost for new tasks is the diff vector. If we can regularize", + "type": "text" + }, + { + "bbox": [ + 443, + 159, + 455, + 170 + ], + "score": 0.88, + "content": "\\delta _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 158, + 505, + 172 + ], + "score": 1.0, + "content": "to be sparse", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 170, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 170, + 147, + 183 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 147, + 170, + 240, + 182 + ], + "score": 0.93, + "content": "\\lVert \\delta _ { \\tau } \\rVert _ { 0 } \\ll \\lVert \\bar { \\pmb { \\theta } } _ { \\mathrm { p r e t r a i n e d } } \\rVert _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 170, + 505, + 183 + ], + "score": 1.0, + "content": ", then this approach can become more parameter-efficient as the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 180, + 489, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 346, + 195 + ], + "score": 1.0, + "content": "number of tasks increases. We can specify this goal with an", + "type": "text" + }, + { + "bbox": [ + 347, + 182, + 359, + 192 + ], + "score": 0.89, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 180, + 489, + 195 + ], + "score": 1.0, + "content": "-norm penalty on the diff vector,", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 136, + 505, + 195 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 208, + 194, + 402, + 228 + ], + "lines": [ + { + "bbox": [ + 208, + 194, + 402, + 228 + ], + "spans": [ + { + "bbox": [ + 208, + 194, + 402, + 228 + ], + "score": 0.94, + "content": "R ( \\theta _ { \\mathrm { p r e t r a i n e d } } + \\delta _ { \\tau } ) = \\| \\pmb { \\delta } _ { \\tau } \\| _ { 0 } = \\sum _ { i = 1 } ^ { d } \\mathbb { 1 } \\{ \\pmb { \\delta } _ { \\tau , i } \\neq 0 \\} .", + "type": "interline_equation", + "image_path": "db87601c916bc51947dfd29fe65493f44e30dcb3ea1509908209393cfeaa86fe.jpg" + } + ] + } + ], + "index": 9.5, + "virtual_lines": [ + { + "bbox": [ + 208, + 194, + 402, + 211.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 208, + 211.0, + 402, + 228.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "title", + "bbox": [ + 106, + 244, + 357, + 256 + ], + "lines": [ + { + "bbox": [ + 105, + 244, + 357, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 313, + 257 + ], + "score": 1.0, + "content": "3.1 DIFFERENTIABLE APPROXIMATION TO THE", + "type": "text" + }, + { + "bbox": [ + 314, + 245, + 326, + 256 + ], + "score": 0.86, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 244, + 357, + 257 + ], + "score": 1.0, + "content": "-NORM", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 261, + 505, + 329 + ], + "lines": [ + { + "bbox": [ + 105, + 261, + 505, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 505, + 275 + ], + "score": 1.0, + "content": "This regularizer is difficult to directly optimize as it is non-differentiable. In order to approximate", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 272, + 504, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 124, + 286 + ], + "score": 1.0, + "content": "this", + "type": "text" + }, + { + "bbox": [ + 124, + 273, + 137, + 284 + ], + "score": 0.88, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 272, + 456, + 286 + ], + "score": 1.0, + "content": "objective, we follow the standard approach for gradient-based learning with", + "type": "text" + }, + { + "bbox": [ + 456, + 274, + 469, + 284 + ], + "score": 0.88, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 272, + 504, + 286 + ], + "score": 1.0, + "content": "sparsity", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 284, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 505, + 297 + ], + "score": 1.0, + "content": "using a relaxed mask vector (Louizos et al., 2018). This approach involves relaxing a binary vector", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 295, + 506, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 506, + 307 + ], + "score": 1.0, + "content": "into continuous space, and then multiplying it with a dense weight vector to determine how much", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 305, + 506, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 506, + 319 + ], + "score": 1.0, + "content": "of the weight vector is applied during training. After training, the mask is deterministic and a large", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 317, + 257, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 257, + 330 + ], + "score": 1.0, + "content": "portion of the diff vector is true zero.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 261, + 506, + 330 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 333, + 504, + 356 + ], + "lines": [ + { + "bbox": [ + 105, + 333, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 281, + 347 + ], + "score": 1.0, + "content": "To apply this method we first decompose", + "type": "text" + }, + { + "bbox": [ + 281, + 334, + 293, + 345 + ], + "score": 0.88, + "content": "\\delta _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 333, + 506, + 347 + ], + "score": 1.0, + "content": "into a binary mask vector multiplied with a dense", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 343, + 137, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 137, + 359 + ], + "score": 1.0, + "content": "vector,", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 333, + 506, + 359 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 356, + 425, + 372 + ], + "lines": [ + { + "bbox": [ + 186, + 356, + 425, + 372 + ], + "spans": [ + { + "bbox": [ + 186, + 356, + 425, + 372 + ], + "score": 0.84, + "content": "\\begin{array} { r } { \\delta _ { \\tau } = \\mathbf { z } _ { \\tau } \\odot \\mathbf { w } _ { \\tau } , \\qquad \\mathbf { z } _ { \\tau } \\in \\{ 0 , 1 \\} ^ { d } , \\mathbf { w } _ { \\tau } \\in \\mathbb { R } ^ { d } } \\end{array}", + "type": "interline_equation", + "image_path": "50baad9ae5d43e25ead61a531e7ee5bd6f11e2d43dad20fb8b2093d5a5ab6bab.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 186, + 356, + 425, + 372 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 374, + 505, + 396 + ], + "lines": [ + { + "bbox": [ + 105, + 372, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 357, + 387 + ], + "score": 1.0, + "content": "We can now instead optimize an expectation with respect to", + "type": "text" + }, + { + "bbox": [ + 357, + 376, + 369, + 385 + ], + "score": 0.87, + "content": "{ \\bf z } _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 372, + 452, + 387 + ], + "score": 1.0, + "content": ", whose distribution", + "type": "text" + }, + { + "bbox": [ + 453, + 374, + 493, + 386 + ], + "score": 0.91, + "content": "p ( \\mathbf { z } _ { \\tau } ; \\pmb { \\alpha } _ { \\tau } )", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 372, + 506, + 387 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 383, + 265, + 398 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 246, + 398 + ], + "score": 1.0, + "content": "initially Bernoulli with parameters", + "type": "text" + }, + { + "bbox": [ + 247, + 387, + 260, + 396 + ], + "score": 0.87, + "content": "\\pmb { \\alpha } _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 383, + 265, + 398 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 372, + 506, + 398 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 136, + 398, + 475, + 432 + ], + "lines": [ + { + "bbox": [ + 136, + 398, + 475, + 432 + ], + "spans": [ + { + "bbox": [ + 136, + 398, + 475, + 432 + ], + "score": 0.94, + "content": "\\operatorname* { m i n } _ { \\alpha _ { \\tau } , \\mathbf { w } _ { \\tau } } \\mathbb { E } _ { \\mathbf { z } _ { \\tau } \\sim p ( \\mathbf { z } _ { \\tau } ; \\alpha _ { \\tau } ) } \\left[ \\frac { 1 } { N } \\sum _ { n = 1 } ^ { N } \\mathcal { L } \\left( f ( x _ { \\tau } ^ { ( n ) } ; \\boldsymbol { \\theta } _ { \\mathrm { p r e t r a i n e d } } + \\mathbf { z } _ { \\tau } \\odot \\mathbf { w } _ { \\tau } , ) , y _ { \\tau } ^ { ( n ) } \\right) + \\lambda \\lVert \\delta _ { \\tau } \\rVert _ { 0 } \\right] .", + "type": "interline_equation", + "image_path": "3f81f16930f14f81b0b5df85f8e68d18a457c5c95c09d04e34b40d88c3eccece.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 136, + 398, + 475, + 409.3333333333333 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 136, + 409.3333333333333, + 475, + 420.66666666666663 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 136, + 420.66666666666663, + 475, + 431.99999999999994 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 433, + 505, + 500 + ], + "lines": [ + { + "bbox": [ + 106, + 433, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 106, + 433, + 299, + 446 + ], + "score": 1.0, + "content": "This objective is still difficult in practice due to", + "type": "text" + }, + { + "bbox": [ + 299, + 435, + 311, + 444 + ], + "score": 0.86, + "content": "{ \\bf z } _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 433, + 505, + 446 + ], + "score": 1.0, + "content": "’s being discrete (which requires the score func-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 444, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 505, + 457 + ], + "score": 1.0, + "content": "tion gradient estimator), but the expectation provides some guidance for empirically effective relax-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 454, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 428, + 468 + ], + "score": 1.0, + "content": "ations. We follow prior work (Louizos et al., 2018; Wang et al., 2019b) and relax", + "type": "text" + }, + { + "bbox": [ + 428, + 456, + 440, + 466 + ], + "score": 0.86, + "content": "{ \\bf z } _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 454, + 506, + 468 + ], + "score": 1.0, + "content": "into continuous", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 464, + 506, + 479 + ], + "spans": [ + { + "bbox": [ + 104, + 464, + 131, + 479 + ], + "score": 1.0, + "content": "space", + "type": "text" + }, + { + "bbox": [ + 132, + 466, + 157, + 478 + ], + "score": 0.92, + "content": "[ 0 , 1 ] ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 464, + 506, + 479 + ], + "score": 1.0, + "content": "with a stretched Hard-Concrete distribution (Jang et al., 2017; Maddison et al., 2017),", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 476, + 506, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 397, + 489 + ], + "score": 1.0, + "content": "which allows for the use of pathwise gradient estimators. Specifically,", + "type": "text" + }, + { + "bbox": [ + 398, + 479, + 409, + 488 + ], + "score": 0.86, + "content": "{ \\bf z } _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 476, + 506, + 489 + ], + "score": 1.0, + "content": "is now defined to be a", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 487, + 461, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 338, + 501 + ], + "score": 1.0, + "content": "deterministic and (sub)differentiable function of a sample", + "type": "text" + }, + { + "bbox": [ + 338, + 490, + 346, + 498 + ], + "score": 0.33, + "content": "\\mathbf { u }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 487, + 461, + 501 + ], + "score": 1.0, + "content": "from a uniform distribution,", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28.5, + "bbox_fs": [ + 104, + 433, + 506, + 501 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 159, + 501, + 451, + 531 + ], + "lines": [ + { + "bbox": [ + 159, + 501, + 451, + 531 + ], + "spans": [ + { + "bbox": [ + 159, + 501, + 451, + 531 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\mathbf { u } \\sim U ( \\mathbf { 0 } , \\mathbf { 1 } ) , \\qquad \\mathbf { s } _ { \\tau } = \\sigma \\left( \\log \\mathbf { u } - \\log ( 1 - \\mathbf { u } ) + \\alpha _ { \\tau } \\right) , } \\\\ { \\bar { \\mathbf { s } } _ { \\tau } = \\mathbf { s } _ { \\tau } \\times ( r - l ) + l , \\qquad \\mathbf { z } _ { \\tau } = \\operatorname* { m i n } ( \\mathbf { 1 } , \\operatorname* { m a x } ( \\mathbf { 0 } , \\bar { \\mathbf { s } } _ { \\tau } ) ) . } \\end{array}", + "type": "interline_equation", + "image_path": "2a6654c74a3353f08edc978223c41515541788a721f3d19b6042113955bb2af0.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 159, + 501, + 451, + 511.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 159, + 511.0, + 451, + 521.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 159, + 521.0, + 451, + 531.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 532, + 505, + 566 + ], + "lines": [ + { + "bbox": [ + 105, + 531, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 128, + 545 + ], + "score": 1.0, + "content": "Here", + "type": "text" + }, + { + "bbox": [ + 128, + 533, + 151, + 543 + ], + "score": 0.89, + "content": "l < 0", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 531, + 168, + 545 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 168, + 533, + 192, + 543 + ], + "score": 0.9, + "content": "r > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 531, + 322, + 545 + ], + "score": 1.0, + "content": "are two constants used to stretch", + "type": "text" + }, + { + "bbox": [ + 322, + 534, + 333, + 543 + ], + "score": 0.88, + "content": "{ \\bf s } _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 531, + 398, + 545 + ], + "score": 1.0, + "content": "into the interval", + "type": "text" + }, + { + "bbox": [ + 399, + 532, + 424, + 545 + ], + "score": 0.92, + "content": "( l , r ) ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 531, + 505, + 545 + ], + "score": 1.0, + "content": "before it is clamped", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 542, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 118, + 556 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 118, + 543, + 143, + 556 + ], + "score": 0.92, + "content": "[ 0 , 1 ] ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 542, + 182, + 556 + ], + "score": 1.0, + "content": "with the", + "type": "text" + }, + { + "bbox": [ + 182, + 543, + 256, + 555 + ], + "score": 0.9, + "content": "\\operatorname* { m i n } ( \\mathbf { 1 } , \\operatorname* { m a x } ( \\mathbf { 0 } , \\cdot ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 542, + 505, + 556 + ], + "score": 1.0, + "content": "operation. In this case we have a differentiable closed-form", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 555, + 259, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 218, + 567 + ], + "score": 1.0, + "content": "expression for the expected", + "type": "text" + }, + { + "bbox": [ + 218, + 556, + 230, + 565 + ], + "score": 0.87, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 555, + 259, + 567 + ], + "score": 1.0, + "content": "-norm,", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 531, + 505, + 567 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 182, + 567, + 429, + 602 + ], + "lines": [ + { + "bbox": [ + 182, + 567, + 429, + 602 + ], + "spans": [ + { + "bbox": [ + 182, + 567, + 429, + 602 + ], + "score": 0.94, + "content": "\\mathbb { E } \\left[ \\left. \\pmb { \\delta } _ { \\tau } \\right. _ { 0 } \\right] = \\sum _ { i = 1 } ^ { d } \\mathbb { E } \\left[ \\mathbb { 1 } \\left\\{ \\mathbf { z } _ { \\tau , i } > 0 \\right\\} \\right] = \\sum _ { i = 1 } ^ { d } \\sigma \\left( \\alpha _ { \\tau , i } - \\log \\frac { - l } { r } \\right) .", + "type": "interline_equation", + "image_path": "edb3942bcbccde41788b4dc919f478a284c87096f975cee4e8d84e9352a91af3.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 182, + 567, + 429, + 578.6666666666666 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 182, + 578.6666666666666, + 429, + 590.3333333333333 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 182, + 590.3333333333333, + 429, + 601.9999999999999 + ], + "spans": [], + "index": 40 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 603, + 299, + 615 + ], + "lines": [ + { + "bbox": [ + 106, + 600, + 300, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 300, + 618 + ], + "score": 1.0, + "content": "Thus the final optimization problem is given by,", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41, + "bbox_fs": [ + 106, + 600, + 300, + 618 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 616, + 506, + 697 + ], + "lines": [ + { + "bbox": [ + 111, + 616, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 111, + 616, + 505, + 651 + ], + "score": 0.91, + "content": "\\operatorname* { m i n } _ { \\tau _ { \\tau } , \\mathbf { w } _ { \\tau } } \\mathbb { E } _ { \\mathbf { u } \\sim U [ \\mathbf { 0 } , 1 ] } \\left[ \\frac { 1 } { N } \\sum _ { n = 1 } ^ { N } \\mathcal { L } \\left( f ( x _ { \\tau } ^ { ( n ) } ; \\boldsymbol { \\theta } _ { \\mathrm { p r e r a i n e d } } + \\mathbf { z } _ { \\tau } \\odot \\mathbf { w } _ { \\tau } , ) , y _ { \\tau } ^ { ( n ) } \\right) \\right] + \\lambda \\sum _ { i = 1 } ^ { d } \\sigma \\left( \\alpha _ { \\tau , i } - \\log \\frac { - l } { r } \\right) ,", + "type": "inline_equation", + "image_path": "72329b01b909df36acfff405ad4030576990a7e85b97a9806463dbf4e504cd55.jpg" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 650, + 504, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 490, + 666 + ], + "score": 1.0, + "content": "and we can now utilize pathwise gradient estimators to optimize the first term with respect to", + "type": "text" + }, + { + "bbox": [ + 490, + 654, + 504, + 663 + ], + "score": 0.85, + "content": "\\pmb { \\alpha } _ { \\tau }", + "type": "inline_equation" + } + ], + "index": 43 + }, + { + "bbox": [ + 104, + 660, + 506, + 677 + ], + "spans": [ + { + "bbox": [ + 104, + 660, + 479, + 677 + ], + "score": 1.0, + "content": "since the expectation no longer depends on it.4 After training we obtain the final diff vector", + "type": "text" + }, + { + "bbox": [ + 480, + 664, + 491, + 674 + ], + "score": 0.88, + "content": "\\delta _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 660, + 506, + 677 + ], + "score": 1.0, + "content": "by", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 673, + 506, + 686 + ], + "spans": [ + { + "bbox": [ + 106, + 673, + 145, + 686 + ], + "score": 1.0, + "content": "sampling", + "type": "text" + }, + { + "bbox": [ + 146, + 676, + 154, + 684 + ], + "score": 0.52, + "content": "\\mathbf { u }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 673, + 213, + 686 + ], + "score": 1.0, + "content": "once to obtain", + "type": "text" + }, + { + "bbox": [ + 213, + 675, + 225, + 685 + ], + "score": 0.85, + "content": "{ \\bf z } _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 673, + 506, + 686 + ], + "score": 1.0, + "content": "(which is not necessarily a binary vector but has a significant number", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 684, + 489, + 698 + ], + "spans": [ + { + "bbox": [ + 105, + 684, + 421, + 698 + ], + "score": 1.0, + "content": "of dimensions equal to exactly zero due to the clamping function), then setting", + "type": "text" + }, + { + "bbox": [ + 422, + 685, + 482, + 696 + ], + "score": 0.91, + "content": "\\pmb { \\delta } _ { \\tau } = \\mathbf { z } _ { \\tau } \\odot \\mathbf { w } _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 684, + 489, + 698 + ], + "score": 1.0, + "content": ". 5", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 44, + "bbox_fs": [ + 104, + 616, + 506, + 698 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 457, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 459, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 130, + 95 + ], + "score": 1.0, + "content": "3.2", + "type": "text" + }, + { + "bbox": [ + 130, + 83, + 143, + 94 + ], + "score": 0.86, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 82, + 459, + 95 + ], + "score": 1.0, + "content": "-BALL PROJECTION WITH MAGNITUDE PRUNING FOR SPARSITY CONTROL", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 100, + 505, + 167 + ], + "lines": [ + { + "bbox": [ + 105, + 100, + 506, + 113 + ], + "spans": [ + { + "bbox": [ + 105, + 100, + 165, + 113 + ], + "score": 1.0, + "content": "Differentiable", + "type": "text" + }, + { + "bbox": [ + 165, + 101, + 178, + 111 + ], + "score": 0.88, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 100, + 506, + 113 + ], + "score": 1.0, + "content": "regularization provides a strong way to achieve high sparsity rate. However, it", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 110, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 505, + 124 + ], + "score": 1.0, + "content": "would be ideal to have more fine-grained control into the exact sparsity rate in the diff vector, espe-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 122, + 505, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 122, + 410, + 135 + ], + "score": 1.0, + "content": "cially considering applications which require specific parameter budgets. As", + "type": "text" + }, + { + "bbox": [ + 410, + 123, + 417, + 132 + ], + "score": 0.78, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 122, + 505, + 135 + ], + "score": 1.0, + "content": "is just the Lagrangian", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 218, + 147 + ], + "score": 1.0, + "content": "multiplier for the constraint", + "type": "text" + }, + { + "bbox": [ + 218, + 133, + 276, + 146 + ], + "score": 0.92, + "content": "\\mathbb { E } \\left[ \\lVert \\pmb { \\delta } _ { \\tau } \\rVert _ { 0 } \\right] < \\eta", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 132, + 314, + 147 + ], + "score": 1.0, + "content": "for some", + "type": "text" + }, + { + "bbox": [ + 314, + 135, + 321, + 145 + ], + "score": 0.76, + "content": "\\eta", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 132, + 505, + 147 + ], + "score": 1.0, + "content": ", this could be achieved in principle by search-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 144, + 505, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 144, + 222, + 157 + ], + "score": 1.0, + "content": "ing over different values of", + "type": "text" + }, + { + "bbox": [ + 223, + 145, + 230, + 154 + ], + "score": 0.77, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 144, + 505, + 157 + ], + "score": 1.0, + "content": ". However we found it more efficient and empirically effective to", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 155, + 434, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 155, + 345, + 168 + ], + "score": 1.0, + "content": "achieve an exact sparsity rate by simply projecting onto the", + "type": "text" + }, + { + "bbox": [ + 345, + 156, + 357, + 166 + ], + "score": 0.88, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 155, + 434, + 168 + ], + "score": 1.0, + "content": "-ball after training.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 106, + 172, + 505, + 249 + ], + "lines": [ + { + "bbox": [ + 106, + 172, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 340, + 185 + ], + "score": 1.0, + "content": "Specifically we use magnitude pruning on the diff vector", + "type": "text" + }, + { + "bbox": [ + 340, + 172, + 352, + 183 + ], + "score": 0.88, + "content": "\\delta _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 172, + 456, + 185 + ], + "score": 1.0, + "content": "and target a sparsity rate", + "type": "text" + }, + { + "bbox": [ + 457, + 173, + 470, + 182 + ], + "score": 0.85, + "content": "t \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 172, + 505, + 185 + ], + "score": 1.0, + "content": "by only", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 182, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 172, + 196 + ], + "score": 1.0, + "content": "keeping the top", + "type": "text" + }, + { + "bbox": [ + 172, + 183, + 204, + 194 + ], + "score": 0.92, + "content": "t \\% \\times \\bar { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 182, + 244, + 196 + ], + "score": 1.0, + "content": "values in", + "type": "text" + }, + { + "bbox": [ + 244, + 183, + 255, + 194 + ], + "score": 0.87, + "content": "\\delta _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 182, + 506, + 196 + ], + "score": 1.0, + "content": ".6 Note that unlike standard magnitude pruning, this is based", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 194, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 506, + 207 + ], + "score": 1.0, + "content": "on the magnitude of the diff vector values and not the model parameters. As is usual in magnitude", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 204, + 506, + 218 + ], + "spans": [ + { + "bbox": [ + 104, + 204, + 304, + 218 + ], + "score": 1.0, + "content": "pruning, we found it important to further finetune", + "type": "text" + }, + { + "bbox": [ + 305, + 205, + 316, + 216 + ], + "score": 0.89, + "content": "\\delta _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 204, + 506, + 218 + ], + "score": 1.0, + "content": "with the nonzero masks fixed to maintain good", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 216, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 505, + 228 + ], + "score": 1.0, + "content": "performance (Han et al., 2016). Since this type of parameter-efficiency through projection onto the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 227, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 119, + 238 + ], + "score": 0.87, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 227, + 505, + 239 + ], + "score": 1.0, + "content": "-ball can be applied without adaptive diff pruning,7 such an approach will serve as one of our", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 237, + 236, + 251 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 236, + 251 + ], + "score": 1.0, + "content": "baselines in the empirical study.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 10 + }, + { + "type": "title", + "bbox": [ + 108, + 260, + 255, + 271 + ], + "lines": [ + { + "bbox": [ + 105, + 259, + 256, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 256, + 273 + ], + "score": 1.0, + "content": "3.3 STRUCTURED DIFF PRUNING", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 277, + 505, + 380 + ], + "lines": [ + { + "bbox": [ + 105, + 277, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 505, + 291 + ], + "score": 1.0, + "content": "Diff pruning, as presented above, is architecture-agnostic and does not exploit the underlying model", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 289, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 228, + 302 + ], + "score": 1.0, + "content": "structure—each dimension of", + "type": "text" + }, + { + "bbox": [ + 228, + 290, + 239, + 300 + ], + "score": 0.86, + "content": "{ \\bf z } _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 289, + 505, + 302 + ], + "score": 1.0, + "content": "is independent from one another. While this makes the approach", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 300, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 104, + 300, + 505, + 313 + ], + "score": 1.0, + "content": "potentially more flexible, we might expect to achieve better sparsity/performance tradeoff through", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 311, + 506, + 324 + ], + "spans": [ + { + "bbox": [ + 104, + 311, + 506, + 324 + ], + "score": 1.0, + "content": "a structured formulation which encourages active parameters to group together and other areas to", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 321, + 506, + 335 + ], + "spans": [ + { + "bbox": [ + 104, + 321, + 464, + 335 + ], + "score": 1.0, + "content": "be fully sparse. Motivated by this intuition, we first partition the parameter indices into", + "type": "text" + }, + { + "bbox": [ + 465, + 322, + 474, + 332 + ], + "score": 0.79, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 321, + 506, + 335 + ], + "score": 1.0, + "content": "groups", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 107, + 332, + 506, + 346 + ], + "spans": [ + { + "bbox": [ + 107, + 333, + 178, + 345 + ], + "score": 0.91, + "content": "\\{ g ( 1 ) , \\ldots , g ( G ) \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 332, + 208, + 346 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 208, + 333, + 226, + 345 + ], + "score": 0.92, + "content": "g ( j )", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 332, + 439, + 346 + ], + "score": 1.0, + "content": "is a subset of parameter indices governed by group", + "type": "text" + }, + { + "bbox": [ + 440, + 333, + 458, + 345 + ], + "score": 0.9, + "content": "g ( j )", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 332, + 506, + 346 + ], + "score": 1.0, + "content": ".8 We then", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 343, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 181, + 357 + ], + "score": 1.0, + "content": "introduce a scalar", + "type": "text" + }, + { + "bbox": [ + 181, + 344, + 192, + 356 + ], + "score": 0.9, + "content": "\\mathbf { z } _ { \\tau } ^ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 343, + 320, + 357 + ], + "score": 1.0, + "content": "(with the associated parameter", + "type": "text" + }, + { + "bbox": [ + 321, + 344, + 334, + 356 + ], + "score": 0.87, + "content": "\\alpha _ { \\tau } ^ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 343, + 401, + 357 + ], + "score": 1.0, + "content": ") for each group", + "type": "text" + }, + { + "bbox": [ + 402, + 344, + 420, + 356 + ], + "score": 0.91, + "content": "g ( j )", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 343, + 505, + 357 + ], + "score": 1.0, + "content": ", and decompose the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 355, + 506, + 371 + ], + "spans": [ + { + "bbox": [ + 104, + 355, + 239, + 371 + ], + "score": 1.0, + "content": "task-specific parameter for index", + "type": "text" + }, + { + "bbox": [ + 239, + 356, + 273, + 369 + ], + "score": 0.93, + "content": "i \\in g ( j )", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 355, + 285, + 371 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 286, + 356, + 380, + 370 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\delta _ { \\tau , i } ^ { j } = \\mathbf { z } _ { \\tau , i } \\times \\mathbf { z } _ { \\tau } ^ { j } \\times \\mathbf { w } _ { \\tau , i } . } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 355, + 438, + 371 + ], + "score": 1.0, + "content": "The expected", + "type": "text" + }, + { + "bbox": [ + 438, + 357, + 451, + 368 + ], + "score": 0.89, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 355, + 506, + 371 + ], + "score": 1.0, + "content": "-norm is then", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 367, + 146, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 146, + 381 + ], + "score": 1.0, + "content": "given by,", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 19 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 384, + 505, + 421 + ], + "lines": [ + { + "bbox": [ + 111, + 384, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 111, + 384, + 505, + 421 + ], + "score": 0.92, + "content": "\\Sigma \\left[ \\left. \\delta _ { \\tau } \\right. _ { 0 } \\right] = \\sum _ { j = 1 } ^ { G } \\sum _ { i \\in g ( j ) } \\mathbb { E } \\left[ \\mathbb { I } \\left\\{ \\mathbf { z } _ { \\tau , i } \\cdot \\mathbf { z } _ { \\tau } ^ { g } > 0 \\right\\} \\right] = \\sum _ { j = 1 } ^ { G } \\sum _ { i \\in g ( j ) } \\sigma \\left( \\alpha _ { \\tau , i } - \\log { \\frac { - l } { r } } \\right) \\times \\sigma \\left( \\alpha _ { \\tau } ^ { j } - \\log { \\frac { - l } { r } } \\right) ,", + "type": "interline_equation", + "image_path": "6dd9f1cd7a0ba610a4afd20bc615d654b40294d36a6f77a7d0098203f1f2eddd.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 111, + 384, + 505, + 396.3333333333333 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 111, + 396.3333333333333, + 505, + 408.66666666666663 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 111, + 408.66666666666663, + 505, + 420.99999999999994 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 426, + 349, + 438 + ], + "lines": [ + { + "bbox": [ + 106, + 425, + 350, + 440 + ], + "spans": [ + { + "bbox": [ + 106, + 425, + 350, + 440 + ], + "score": 1.0, + "content": "and we can train with gradient-based optimization as before.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "title", + "bbox": [ + 108, + 448, + 201, + 461 + ], + "lines": [ + { + "bbox": [ + 105, + 448, + 201, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 201, + 463 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "title", + "bbox": [ + 107, + 468, + 233, + 479 + ], + "lines": [ + { + "bbox": [ + 106, + 467, + 234, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 467, + 234, + 480 + ], + "score": 1.0, + "content": "4.1 MODEL AND DATASETS", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 486, + 505, + 650 + ], + "lines": [ + { + "bbox": [ + 104, + 484, + 505, + 499 + ], + "spans": [ + { + "bbox": [ + 104, + 484, + 505, + 499 + ], + "score": 1.0, + "content": "For evaluation we use the GLUE benchmark (Wang et al., 2019b), a popular finetuning dataset.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 497, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 505, + 510 + ], + "score": 1.0, + "content": "Following adapters (Houlsby et al., 2019), we test our approach on the following subset of the GLUE", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 507, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 505, + 520 + ], + "score": 1.0, + "content": "tasks: Multi-Genre Natural Language Inference (MNLI), where the goal is two predict whether the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 518, + 504, + 533 + ], + "spans": [ + { + "bbox": [ + 104, + 518, + 469, + 533 + ], + "score": 1.0, + "content": "relationship between two sentences is entailment, contradiction, or neutral (we test on both", + "type": "text" + }, + { + "bbox": [ + 469, + 519, + 504, + 530 + ], + "score": 0.87, + "content": "\\mathrm { M N L L } \\mathrm { I } _ { m }", + "type": "inline_equation" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 529, + 505, + 544 + ], + "spans": [ + { + "bbox": [ + 104, + 529, + 124, + 544 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 530, + 166, + 541 + ], + "score": 0.88, + "content": "\\mathrm { M N L I } _ { m m }", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 529, + 505, + 544 + ], + "score": 1.0, + "content": "which respectively tests on matched/mismatched domains); Quora Question Pairs", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 541, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 541, + 505, + 554 + ], + "score": 1.0, + "content": "(QQP), a classification task to predict whether two question are semantically equivalent; Question", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 551, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 506, + 565 + ], + "score": 1.0, + "content": "Natural Language Inference (QNLI), which must predict whether a sentence is a correct answer", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 562, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 506, + 576 + ], + "score": 1.0, + "content": "to the question; Stanford Sentiment Treebank (SST-2), a sentence classification task to predict the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 574, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 506, + 586 + ], + "score": 1.0, + "content": "sentiment of movie reviews; Corpus of Linguistic Acceptability (CoLA), where the goal is predict", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 585, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 505, + 597 + ], + "score": 1.0, + "content": "whether a sentence is linguistically acceptable or not; Semantic Textual Similarity Benchmark (STS-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 595, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 115, + 606 + ], + "score": 0.25, + "content": "\\mathbf { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 595, + 505, + 608 + ], + "score": 1.0, + "content": "), which must predict a similarity rating between two sentences; Microsoft Research Paraphrase", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 606, + 505, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 505, + 620 + ], + "score": 1.0, + "content": "Corpus (MRPC), where the goal is to predict whether two sentences are semantically equivalent;", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 617, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 505, + 630 + ], + "score": 1.0, + "content": "Recognizing Textual Entailment (RTE), which must predict whether a second sentence is entailed", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 630, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 505, + 641 + ], + "score": 1.0, + "content": "by the first. For evaluation, the benchmark uses Matthew’s correlation for CoLA, Spearman for", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 639, + 419, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 138, + 652 + ], + "score": 1.0, + "content": "STS-B,", + "type": "text" + }, + { + "bbox": [ + 138, + 640, + 150, + 650 + ], + "score": 0.85, + "content": "\\mathrm { F _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 639, + 419, + 652 + ], + "score": 1.0, + "content": "score for MRPC/QQC, and accuracy for MNLI/QNLI/SST-2/RTE.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 37 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 660, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 657, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 118, + 657, + 506, + 673 + ], + "score": 1.0, + "content": "6Wang et al. (2019b) show that it also is possible to inject such a constraint softly into the training objec-", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 668, + 506, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 506, + 682 + ], + "score": 1.0, + "content": "tive by regularizing the expected model size towards a certain rate. However, since the constraint is soft this", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 679, + 333, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 333, + 692 + ], + "score": 1.0, + "content": "approach also makes it difficult to target an exact sparsity rate.", + "type": "text" + } + ] + }, + { + "bbox": [ + 120, + 688, + 505, + 704 + ], + "spans": [ + { + "bbox": [ + 120, + 688, + 219, + 704 + ], + "score": 1.0, + "content": "7Concretely, one can obtain", + "type": "text" + }, + { + "bbox": [ + 219, + 691, + 230, + 700 + ], + "score": 0.86, + "content": "\\pmb { \\theta } _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 688, + 335, + 704 + ], + "score": 1.0, + "content": "through usual finetuning, set", + "type": "text" + }, + { + "bbox": [ + 335, + 691, + 407, + 702 + ], + "score": 0.91, + "content": "\\pmb { \\delta } _ { \\tau } = \\pmb { \\theta } _ { \\tau } - \\pmb { \\theta } _ { \\mathrm { p r e t r a i n e d } }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 688, + 505, + 704 + ], + "score": 1.0, + "content": ", and then apply magnitude", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 700, + 284, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 270, + 713 + ], + "score": 1.0, + "content": "pruning followed by additional finetuning on", + "type": "text" + }, + { + "bbox": [ + 270, + 701, + 280, + 711 + ], + "score": 0.86, + "content": "\\delta _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 700, + 284, + 713 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ] + }, + { + "bbox": [ + 117, + 708, + 506, + 725 + ], + "spans": [ + { + "bbox": [ + 117, + 708, + 506, + 725 + ], + "score": 1.0, + "content": "8While groups can be defined in various ways, we found that defining groups based on each matrix/bias", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 721, + 352, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 352, + 733 + ], + "score": 1.0, + "content": "vector of the pretrained model was simple and worked well enough.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 457, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 459, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 130, + 95 + ], + "score": 1.0, + "content": "3.2", + "type": "text" + }, + { + "bbox": [ + 130, + 83, + 143, + 94 + ], + "score": 0.86, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 82, + 459, + 95 + ], + "score": 1.0, + "content": "-BALL PROJECTION WITH MAGNITUDE PRUNING FOR SPARSITY CONTROL", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 82, + 459, + 95 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 100, + 505, + 167 + ], + "lines": [ + { + "bbox": [ + 105, + 100, + 506, + 113 + ], + "spans": [ + { + "bbox": [ + 105, + 100, + 165, + 113 + ], + "score": 1.0, + "content": "Differentiable", + "type": "text" + }, + { + "bbox": [ + 165, + 101, + 178, + 111 + ], + "score": 0.88, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 100, + 506, + 113 + ], + "score": 1.0, + "content": "regularization provides a strong way to achieve high sparsity rate. However, it", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 110, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 505, + 124 + ], + "score": 1.0, + "content": "would be ideal to have more fine-grained control into the exact sparsity rate in the diff vector, espe-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 122, + 505, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 122, + 410, + 135 + ], + "score": 1.0, + "content": "cially considering applications which require specific parameter budgets. As", + "type": "text" + }, + { + "bbox": [ + 410, + 123, + 417, + 132 + ], + "score": 0.78, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 122, + 505, + 135 + ], + "score": 1.0, + "content": "is just the Lagrangian", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 218, + 147 + ], + "score": 1.0, + "content": "multiplier for the constraint", + "type": "text" + }, + { + "bbox": [ + 218, + 133, + 276, + 146 + ], + "score": 0.92, + "content": "\\mathbb { E } \\left[ \\lVert \\pmb { \\delta } _ { \\tau } \\rVert _ { 0 } \\right] < \\eta", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 132, + 314, + 147 + ], + "score": 1.0, + "content": "for some", + "type": "text" + }, + { + "bbox": [ + 314, + 135, + 321, + 145 + ], + "score": 0.76, + "content": "\\eta", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 132, + 505, + 147 + ], + "score": 1.0, + "content": ", this could be achieved in principle by search-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 144, + 505, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 144, + 222, + 157 + ], + "score": 1.0, + "content": "ing over different values of", + "type": "text" + }, + { + "bbox": [ + 223, + 145, + 230, + 154 + ], + "score": 0.77, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 144, + 505, + 157 + ], + "score": 1.0, + "content": ". However we found it more efficient and empirically effective to", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 155, + 434, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 155, + 345, + 168 + ], + "score": 1.0, + "content": "achieve an exact sparsity rate by simply projecting onto the", + "type": "text" + }, + { + "bbox": [ + 345, + 156, + 357, + 166 + ], + "score": 0.88, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 155, + 434, + 168 + ], + "score": 1.0, + "content": "-ball after training.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 100, + 506, + 168 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 172, + 505, + 249 + ], + "lines": [ + { + "bbox": [ + 106, + 172, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 340, + 185 + ], + "score": 1.0, + "content": "Specifically we use magnitude pruning on the diff vector", + "type": "text" + }, + { + "bbox": [ + 340, + 172, + 352, + 183 + ], + "score": 0.88, + "content": "\\delta _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 172, + 456, + 185 + ], + "score": 1.0, + "content": "and target a sparsity rate", + "type": "text" + }, + { + "bbox": [ + 457, + 173, + 470, + 182 + ], + "score": 0.85, + "content": "t \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 172, + 505, + 185 + ], + "score": 1.0, + "content": "by only", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 182, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 172, + 196 + ], + "score": 1.0, + "content": "keeping the top", + "type": "text" + }, + { + "bbox": [ + 172, + 183, + 204, + 194 + ], + "score": 0.92, + "content": "t \\% \\times \\bar { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 182, + 244, + 196 + ], + "score": 1.0, + "content": "values in", + "type": "text" + }, + { + "bbox": [ + 244, + 183, + 255, + 194 + ], + "score": 0.87, + "content": "\\delta _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 182, + 506, + 196 + ], + "score": 1.0, + "content": ".6 Note that unlike standard magnitude pruning, this is based", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 194, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 506, + 207 + ], + "score": 1.0, + "content": "on the magnitude of the diff vector values and not the model parameters. As is usual in magnitude", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 204, + 506, + 218 + ], + "spans": [ + { + "bbox": [ + 104, + 204, + 304, + 218 + ], + "score": 1.0, + "content": "pruning, we found it important to further finetune", + "type": "text" + }, + { + "bbox": [ + 305, + 205, + 316, + 216 + ], + "score": 0.89, + "content": "\\delta _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 204, + 506, + 218 + ], + "score": 1.0, + "content": "with the nonzero masks fixed to maintain good", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 216, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 505, + 228 + ], + "score": 1.0, + "content": "performance (Han et al., 2016). Since this type of parameter-efficiency through projection onto the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 227, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 119, + 238 + ], + "score": 0.87, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 227, + 505, + 239 + ], + "score": 1.0, + "content": "-ball can be applied without adaptive diff pruning,7 such an approach will serve as one of our", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 237, + 236, + 251 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 236, + 251 + ], + "score": 1.0, + "content": "baselines in the empirical study.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 10, + "bbox_fs": [ + 104, + 172, + 506, + 251 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 260, + 255, + 271 + ], + "lines": [ + { + "bbox": [ + 105, + 259, + 256, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 256, + 273 + ], + "score": 1.0, + "content": "3.3 STRUCTURED DIFF PRUNING", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 277, + 505, + 380 + ], + "lines": [ + { + "bbox": [ + 105, + 277, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 505, + 291 + ], + "score": 1.0, + "content": "Diff pruning, as presented above, is architecture-agnostic and does not exploit the underlying model", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 289, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 228, + 302 + ], + "score": 1.0, + "content": "structure—each dimension of", + "type": "text" + }, + { + "bbox": [ + 228, + 290, + 239, + 300 + ], + "score": 0.86, + "content": "{ \\bf z } _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 289, + 505, + 302 + ], + "score": 1.0, + "content": "is independent from one another. While this makes the approach", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 300, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 104, + 300, + 505, + 313 + ], + "score": 1.0, + "content": "potentially more flexible, we might expect to achieve better sparsity/performance tradeoff through", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 311, + 506, + 324 + ], + "spans": [ + { + "bbox": [ + 104, + 311, + 506, + 324 + ], + "score": 1.0, + "content": "a structured formulation which encourages active parameters to group together and other areas to", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 321, + 506, + 335 + ], + "spans": [ + { + "bbox": [ + 104, + 321, + 464, + 335 + ], + "score": 1.0, + "content": "be fully sparse. Motivated by this intuition, we first partition the parameter indices into", + "type": "text" + }, + { + "bbox": [ + 465, + 322, + 474, + 332 + ], + "score": 0.79, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 321, + 506, + 335 + ], + "score": 1.0, + "content": "groups", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 107, + 332, + 506, + 346 + ], + "spans": [ + { + "bbox": [ + 107, + 333, + 178, + 345 + ], + "score": 0.91, + "content": "\\{ g ( 1 ) , \\ldots , g ( G ) \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 332, + 208, + 346 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 208, + 333, + 226, + 345 + ], + "score": 0.92, + "content": "g ( j )", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 332, + 439, + 346 + ], + "score": 1.0, + "content": "is a subset of parameter indices governed by group", + "type": "text" + }, + { + "bbox": [ + 440, + 333, + 458, + 345 + ], + "score": 0.9, + "content": "g ( j )", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 332, + 506, + 346 + ], + "score": 1.0, + "content": ".8 We then", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 343, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 181, + 357 + ], + "score": 1.0, + "content": "introduce a scalar", + "type": "text" + }, + { + "bbox": [ + 181, + 344, + 192, + 356 + ], + "score": 0.9, + "content": "\\mathbf { z } _ { \\tau } ^ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 343, + 320, + 357 + ], + "score": 1.0, + "content": "(with the associated parameter", + "type": "text" + }, + { + "bbox": [ + 321, + 344, + 334, + 356 + ], + "score": 0.87, + "content": "\\alpha _ { \\tau } ^ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 343, + 401, + 357 + ], + "score": 1.0, + "content": ") for each group", + "type": "text" + }, + { + "bbox": [ + 402, + 344, + 420, + 356 + ], + "score": 0.91, + "content": "g ( j )", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 343, + 505, + 357 + ], + "score": 1.0, + "content": ", and decompose the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 355, + 506, + 371 + ], + "spans": [ + { + "bbox": [ + 104, + 355, + 239, + 371 + ], + "score": 1.0, + "content": "task-specific parameter for index", + "type": "text" + }, + { + "bbox": [ + 239, + 356, + 273, + 369 + ], + "score": 0.93, + "content": "i \\in g ( j )", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 355, + 285, + 371 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 286, + 356, + 380, + 370 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\delta _ { \\tau , i } ^ { j } = \\mathbf { z } _ { \\tau , i } \\times \\mathbf { z } _ { \\tau } ^ { j } \\times \\mathbf { w } _ { \\tau , i } . } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 355, + 438, + 371 + ], + "score": 1.0, + "content": "The expected", + "type": "text" + }, + { + "bbox": [ + 438, + 357, + 451, + 368 + ], + "score": 0.89, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 355, + 506, + 371 + ], + "score": 1.0, + "content": "-norm is then", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 367, + 146, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 146, + 381 + ], + "score": 1.0, + "content": "given by,", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 19, + "bbox_fs": [ + 104, + 277, + 506, + 381 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 384, + 505, + 421 + ], + "lines": [ + { + "bbox": [ + 111, + 384, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 111, + 384, + 505, + 421 + ], + "score": 0.92, + "content": "\\Sigma \\left[ \\left. \\delta _ { \\tau } \\right. _ { 0 } \\right] = \\sum _ { j = 1 } ^ { G } \\sum _ { i \\in g ( j ) } \\mathbb { E } \\left[ \\mathbb { I } \\left\\{ \\mathbf { z } _ { \\tau , i } \\cdot \\mathbf { z } _ { \\tau } ^ { g } > 0 \\right\\} \\right] = \\sum _ { j = 1 } ^ { G } \\sum _ { i \\in g ( j ) } \\sigma \\left( \\alpha _ { \\tau , i } - \\log { \\frac { - l } { r } } \\right) \\times \\sigma \\left( \\alpha _ { \\tau } ^ { j } - \\log { \\frac { - l } { r } } \\right) ,", + "type": "interline_equation", + "image_path": "6dd9f1cd7a0ba610a4afd20bc615d654b40294d36a6f77a7d0098203f1f2eddd.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 111, + 384, + 505, + 396.3333333333333 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 111, + 396.3333333333333, + 505, + 408.66666666666663 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 111, + 408.66666666666663, + 505, + 420.99999999999994 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 426, + 349, + 438 + ], + "lines": [ + { + "bbox": [ + 106, + 425, + 350, + 440 + ], + "spans": [ + { + "bbox": [ + 106, + 425, + 350, + 440 + ], + "score": 1.0, + "content": "and we can train with gradient-based optimization as before.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27, + "bbox_fs": [ + 106, + 425, + 350, + 440 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 448, + 201, + 461 + ], + "lines": [ + { + "bbox": [ + 105, + 448, + 201, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 201, + 463 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "title", + "bbox": [ + 107, + 468, + 233, + 479 + ], + "lines": [ + { + "bbox": [ + 106, + 467, + 234, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 467, + 234, + 480 + ], + "score": 1.0, + "content": "4.1 MODEL AND DATASETS", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 486, + 505, + 650 + ], + "lines": [ + { + "bbox": [ + 104, + 484, + 505, + 499 + ], + "spans": [ + { + "bbox": [ + 104, + 484, + 505, + 499 + ], + "score": 1.0, + "content": "For evaluation we use the GLUE benchmark (Wang et al., 2019b), a popular finetuning dataset.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 497, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 505, + 510 + ], + "score": 1.0, + "content": "Following adapters (Houlsby et al., 2019), we test our approach on the following subset of the GLUE", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 507, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 505, + 520 + ], + "score": 1.0, + "content": "tasks: Multi-Genre Natural Language Inference (MNLI), where the goal is two predict whether the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 518, + 504, + 533 + ], + "spans": [ + { + "bbox": [ + 104, + 518, + 469, + 533 + ], + "score": 1.0, + "content": "relationship between two sentences is entailment, contradiction, or neutral (we test on both", + "type": "text" + }, + { + "bbox": [ + 469, + 519, + 504, + 530 + ], + "score": 0.87, + "content": "\\mathrm { M N L L } \\mathrm { I } _ { m }", + "type": "inline_equation" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 529, + 505, + 544 + ], + "spans": [ + { + "bbox": [ + 104, + 529, + 124, + 544 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 530, + 166, + 541 + ], + "score": 0.88, + "content": "\\mathrm { M N L I } _ { m m }", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 529, + 505, + 544 + ], + "score": 1.0, + "content": "which respectively tests on matched/mismatched domains); Quora Question Pairs", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 541, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 541, + 505, + 554 + ], + "score": 1.0, + "content": "(QQP), a classification task to predict whether two question are semantically equivalent; Question", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 551, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 506, + 565 + ], + "score": 1.0, + "content": "Natural Language Inference (QNLI), which must predict whether a sentence is a correct answer", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 562, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 506, + 576 + ], + "score": 1.0, + "content": "to the question; Stanford Sentiment Treebank (SST-2), a sentence classification task to predict the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 574, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 506, + 586 + ], + "score": 1.0, + "content": "sentiment of movie reviews; Corpus of Linguistic Acceptability (CoLA), where the goal is predict", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 585, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 505, + 597 + ], + "score": 1.0, + "content": "whether a sentence is linguistically acceptable or not; Semantic Textual Similarity Benchmark (STS-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 595, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 115, + 606 + ], + "score": 0.25, + "content": "\\mathbf { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 595, + 505, + 608 + ], + "score": 1.0, + "content": "), which must predict a similarity rating between two sentences; Microsoft Research Paraphrase", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 606, + 505, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 505, + 620 + ], + "score": 1.0, + "content": "Corpus (MRPC), where the goal is to predict whether two sentences are semantically equivalent;", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 617, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 505, + 630 + ], + "score": 1.0, + "content": "Recognizing Textual Entailment (RTE), which must predict whether a second sentence is entailed", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 630, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 505, + 641 + ], + "score": 1.0, + "content": "by the first. For evaluation, the benchmark uses Matthew’s correlation for CoLA, Spearman for", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 639, + 419, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 138, + 652 + ], + "score": 1.0, + "content": "STS-B,", + "type": "text" + }, + { + "bbox": [ + 138, + 640, + 150, + 650 + ], + "score": 0.85, + "content": "\\mathrm { F _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 639, + 419, + 652 + ], + "score": 1.0, + "content": "score for MRPC/QQC, and accuracy for MNLI/QNLI/SST-2/RTE.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 37, + "bbox_fs": [ + 104, + 484, + 506, + 652 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 108, + 80, + 505, + 176 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 108, + 80, + 505, + 176 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 80, + 505, + 176 + ], + "spans": [ + { + "bbox": [ + 108, + 80, + 505, + 176 + ], + "score": 0.981, + "html": "
Total paramsNew params per taskQNLI*SST-2 MNLImMNLImmCoLA MRPC STS-B RTEQQPAvg
Full finetuning9.00×100%91.194.986.785.960.589.387.670.172.180.9
Adapters (8-256)1.32×3.6%90.794.084.985.159.589.586.971.571.880.4
Adapters (64)1.19×2.1%91.494.285.384.656.989.687.368.671.879.8
Full finetuning9.00×100%93.494.186.786.059.688.986.671.271.780.6
Last layer1.34×3.8%79.891.671.472.940.280.167.358.663.368.2
Non-adap. diff pruning1.05×0.5%89.793.684.984.851.281.578.261.568.675.5
Diff pruning1.05×0.5%92.993.885.785.660.587.083.568.170.679.4
Diff pruning (struct.)1.05×0.5%93.394.186.486.061.189.786.070.671.180.6
", + "type": "table", + "image_path": "7e11a32275eb2c11b417cefece91c401cc0ca72c9474a3ea349c1c085c7a67e7.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 80, + 505, + 112.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 112.0, + 505, + 144.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 144.0, + 505, + 176.0 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 177, + 505, + 217 + ], + "lines": [ + { + "bbox": [ + 106, + 176, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 505, + 188 + ], + "score": 1.0, + "content": "Table 1: GLUE benchmark test server results with BERTLARGE models. (Top) Results with adapter bottleneck", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 187, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 106, + 187, + 505, + 198 + ], + "score": 1.0, + "content": "layers (brackets indicate the size of bottlenecks), taken from from Houlsby et al. (2019). (Bottom) Results", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 196, + 505, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 165, + 208 + ], + "score": 1.0, + "content": "from this work.", + "type": "text" + }, + { + "bbox": [ + 165, + 197, + 193, + 207 + ], + "score": 0.68, + "content": "{ } ^ { * } \\mathrm { Q N L I }", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 196, + 505, + 208 + ], + "score": 1.0, + "content": "results are not directly comparable across the two works as the GLUE benchmark has", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 207, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 106, + 207, + 505, + 218 + ], + "score": 1.0, + "content": "updated the test set since then. To make our results comparable the average column is calculated without QNLI.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 107, + 225, + 505, + 258 + ], + "lines": [ + { + "bbox": [ + 105, + 224, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 505, + 238 + ], + "score": 1.0, + "content": "For all experiments, we use the BERTLARGE model from Devlin et al. (2019), which has 24 layers,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 235, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 106, + 235, + 505, + 248 + ], + "score": 1.0, + "content": "1024 hidden size, 16 attention heads, and 340M parameters. We use the Huggingface Transformer", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 246, + 325, + 259 + ], + "spans": [ + { + "bbox": [ + 106, + 246, + 325, + 259 + ], + "score": 1.0, + "content": "library (Wolf et al., 2019) to conduct our experiments.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "title", + "bbox": [ + 107, + 266, + 180, + 277 + ], + "lines": [ + { + "bbox": [ + 105, + 265, + 181, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 181, + 279 + ], + "score": 1.0, + "content": "4.2 BASELINES", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 283, + 505, + 383 + ], + "lines": [ + { + "bbox": [ + 106, + 284, + 504, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 284, + 504, + 296 + ], + "score": 1.0, + "content": "We compare both structured and non-structured variants of diff pruning against the following base-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 294, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 290, + 307 + ], + "score": 1.0, + "content": "lines: Full finetuning, which fully finetunes", + "type": "text" + }, + { + "bbox": [ + 290, + 295, + 321, + 306 + ], + "score": 0.25, + "content": "\\mathrm { B E R T _ { L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 294, + 505, + 307 + ], + "score": 1.0, + "content": "ARGE as usual; Last layer finetuning, which", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 304, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 505, + 320 + ], + "score": 1.0, + "content": "only finetunes the penultimate layer (along with the final output layer)9; Adapters from Houlsby", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 316, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 505, + 329 + ], + "score": 1.0, + "content": "et al. (2019), which train task-specific bottleneck layers between between each layer of a pretrained", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 327, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 506, + 342 + ], + "score": 1.0, + "content": "model, where parameter-efficiency can be controlled by varying the size of the bottleneck layers;", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 338, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 505, + 352 + ], + "score": 1.0, + "content": "and Non-adaptive diff pruning, which performs diff pruning just based on magnitude pruning (i.e.,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 348, + 505, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 148, + 364 + ], + "score": 1.0, + "content": "we obtain", + "type": "text" + }, + { + "bbox": [ + 148, + 350, + 160, + 361 + ], + "score": 0.87, + "content": "\\pmb { \\theta } _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 348, + 278, + 364 + ], + "score": 1.0, + "content": "through usual finetuning, set", + "type": "text" + }, + { + "bbox": [ + 279, + 349, + 361, + 362 + ], + "score": 0.91, + "content": "\\delta _ { \\tau } = \\pmb { \\theta } _ { \\tau } - \\pmb { \\theta } _ { \\mathrm { p r e t r a i n e d } }", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 348, + 505, + 364 + ], + "score": 1.0, + "content": ", and then apply magnitude pruning", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 360, + 506, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 253, + 374 + ], + "score": 1.0, + "content": "followed by additional finetuning on", + "type": "text" + }, + { + "bbox": [ + 253, + 361, + 264, + 372 + ], + "score": 0.85, + "content": "\\delta _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 360, + 465, + 374 + ], + "score": 1.0, + "content": "). For diff pruning we set our target sparsity rate to", + "type": "text" + }, + { + "bbox": [ + 465, + 361, + 487, + 371 + ], + "score": 0.86, + "content": "0 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 360, + 506, + 374 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 371, + 377, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 377, + 384 + ], + "score": 1.0, + "content": "investigate the effect of different target sparsity rates in section 5.1.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15 + }, + { + "type": "title", + "bbox": [ + 106, + 390, + 360, + 402 + ], + "lines": [ + { + "bbox": [ + 105, + 390, + 361, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 361, + 403 + ], + "score": 1.0, + "content": "4.3 IMPLEMENTATION DETAILS AND HYPERPARAMETERS", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 405, + 505, + 483 + ], + "lines": [ + { + "bbox": [ + 105, + 404, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 316, + 418 + ], + "score": 1.0, + "content": "Diff pruning introduces additional hyperparameters", + "type": "text" + }, + { + "bbox": [ + 316, + 406, + 330, + 417 + ], + "score": 0.88, + "content": "l , r", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 404, + 505, + 418 + ], + "score": 1.0, + "content": "(for stretching the Hard-Concrete distribu-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 145, + 429 + ], + "score": 1.0, + "content": "tion) and", + "type": "text" + }, + { + "bbox": [ + 146, + 417, + 153, + 426 + ], + "score": 0.79, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 416, + 283, + 429 + ], + "score": 1.0, + "content": "(for weighting the approximate", + "type": "text" + }, + { + "bbox": [ + 284, + 417, + 296, + 428 + ], + "score": 0.88, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 416, + 405, + 429 + ], + "score": 1.0, + "content": "-norm penalty). We found", + "type": "text" + }, + { + "bbox": [ + 405, + 417, + 505, + 428 + ], + "score": 0.89, + "content": "l = - 1 . 5 , r = 1 . 5 , \\lambda =", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 107, + 426, + 506, + 440 + ], + "spans": [ + { + "bbox": [ + 107, + 427, + 158, + 438 + ], + "score": 0.92, + "content": "1 . 2 5 \\times 1 0 ^ { - 7 }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 426, + 419, + 440 + ], + "score": 1.0, + "content": "to work well across all tasks. We also initialize the weight vector", + "type": "text" + }, + { + "bbox": [ + 420, + 429, + 434, + 438 + ], + "score": 0.88, + "content": "{ \\bf w } _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 426, + 473, + 440 + ], + "score": 1.0, + "content": "to 0, and", + "type": "text" + }, + { + "bbox": [ + 473, + 429, + 487, + 438 + ], + "score": 0.86, + "content": "\\pmb { \\alpha } _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 426, + 506, + 440 + ], + "score": 1.0, + "content": "to a", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 438, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 265, + 451 + ], + "score": 1.0, + "content": "positive vector (we use 5) to encourage", + "type": "text" + }, + { + "bbox": [ + 266, + 441, + 277, + 450 + ], + "score": 0.88, + "content": "{ \\bf z } _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 438, + 505, + 451 + ], + "score": 1.0, + "content": "to be close to 1 at the start of training. While we mainly", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 449, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 505, + 462 + ], + "score": 1.0, + "content": "experiment with BERTLARGE to compare against prior work with adapters (Houlsby et al., 2019),", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 461, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 505, + 473 + ], + "score": 1.0, + "content": "in preliminary experiments we found these hyperparameters to work for finetuning RoBERTa (Liu", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 471, + 349, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 130, + 484 + ], + "score": 1.0, + "content": "et al.,", + "type": "text" + }, + { + "bbox": [ + 131, + 471, + 157, + 482 + ], + "score": 0.3, + "content": "2 0 1 9 \\mathrm { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 471, + 349, + 484 + ], + "score": 1.0, + "content": ") and XLNet (Yang et al., 2019) models as well.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 488, + 505, + 577 + ], + "lines": [ + { + "bbox": [ + 106, + 487, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 255, + 500 + ], + "score": 1.0, + "content": "For all tasks we use a learning rate of", + "type": "text" + }, + { + "bbox": [ + 255, + 487, + 292, + 498 + ], + "score": 0.92, + "content": "1 \\times 1 0 ^ { - 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 488, + 505, + 500 + ], + "score": 1.0, + "content": "and perform a hyperparameter search over batch size", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 497, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 499, + 167, + 511 + ], + "score": 0.91, + "content": "\\in \\{ 4 , 6 , 8 , 1 0 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 497, + 277, + 513 + ], + "score": 1.0, + "content": "and the number of epochs", + "type": "text" + }, + { + "bbox": [ + 277, + 499, + 332, + 511 + ], + "score": 0.9, + "content": "\\in \\{ 2 , 3 , 4 , 5 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 497, + 506, + 513 + ], + "score": 1.0, + "content": ".10 However we found the default settings", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 510, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 506, + 523 + ], + "score": 1.0, + "content": "used for regular finetuning as suggested in the original BERT paper to work well for most tasks.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 521, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 521, + 339, + 533 + ], + "score": 1.0, + "content": "Finetuning with the fixed mask after projecting onto the", + "type": "text" + }, + { + "bbox": [ + 339, + 522, + 352, + 532 + ], + "score": 0.89, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 521, + 505, + 533 + ], + "score": 1.0, + "content": "-ball with magnitude pruning is done", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 531, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 196, + 545 + ], + "score": 1.0, + "content": "with a learning rate of", + "type": "text" + }, + { + "bbox": [ + 196, + 532, + 232, + 543 + ], + "score": 0.92, + "content": "5 \\times 1 0 ^ { - 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 531, + 506, + 545 + ], + "score": 1.0, + "content": "for 3 or 5 epochs (3 epochs for QNLI, SST-2, MNLI-m, MNLI-mm,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 542, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 505, + 556 + ], + "score": 1.0, + "content": "CoLA, QQP, 5 epochs for MRPC, STS-B, RTE). Grouping for the structured version of diff pruning", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 554, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 506, + 567 + ], + "score": 1.0, + "content": "is based on the matrix/bias vectors (i.e. parameters that belong to the same matrix or bias vector are", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 565, + 361, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 361, + 577 + ], + "score": 1.0, + "content": "assumed to be in the same group), which results in 393 groups.1", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 31.5 + }, + { + "type": "title", + "bbox": [ + 108, + 587, + 253, + 600 + ], + "lines": [ + { + "bbox": [ + 104, + 585, + 255, + 602 + ], + "spans": [ + { + "bbox": [ + 104, + 585, + 255, + 602 + ], + "score": 1.0, + "content": "5 RESULTS AND ANALYSIS", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 609, + 504, + 632 + ], + "lines": [ + { + "bbox": [ + 105, + 608, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 505, + 622 + ], + "score": 1.0, + "content": "Our main results on the GLUE benchmark are shown in Table 1. Structured diff pruning can match", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 619, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 423, + 633 + ], + "score": 1.0, + "content": "the performance of a fully finetuned BERTLARGE model while only requiring", + "type": "text" + }, + { + "bbox": [ + 423, + 620, + 445, + 631 + ], + "score": 0.84, + "content": "0 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 619, + 506, + 633 + ], + "score": 1.0, + "content": "additional pa-", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 672, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 115, + 668, + 506, + 686 + ], + "spans": [ + { + "bbox": [ + 115, + 668, + 506, + 686 + ], + "score": 1.0, + "content": "11This definition of groups is implementation-specific since it depends on how one concatenates the", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 681, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 106, + 681, + 505, + 692 + ], + "score": 1.0, + "content": "input vector before each affine layer. Our grouping is based on Huggingface’s BERT implementation at", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 692, + 504, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 692, + 504, + 703 + ], + "score": 1.0, + "content": "commit 656e1386a296d696327a9db37de2ccccc79e2cc7 (available at https://github.com/", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 702, + 489, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 702, + 489, + 712 + ], + "score": 1.0, + "content": "huggingface/transformers/blob/656e1386a296d696327a9db37de2ccccc79e2cc7/", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 712, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 712, + 505, + 723 + ], + "score": 1.0, + "content": "src/transformers/modeling_bert.py). In preliminary experiments we found this simple definition", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 722, + 430, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 722, + 430, + 732 + ], + "score": 1.0, + "content": "to work well compared to alternative group definitions (e.g. based on individual neurons).", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 109, + 640, + 504, + 671 + ], + "lines": [ + { + "bbox": [ + 117, + 637, + 506, + 654 + ], + "spans": [ + { + "bbox": [ + 117, + 637, + 506, + 654 + ], + "score": 1.0, + "content": "9Wu et al. (2020) observe that finetuning later layers generally performs better than finetuning earlier layers", + "type": "text" + } + ] + }, + { + "bbox": [ + 114, + 648, + 507, + 664 + ], + "spans": [ + { + "bbox": [ + 114, + 648, + 507, + 664 + ], + "score": 1.0, + "content": "10For the larger QNLI, SST-2, MNLI-m, MNLI-mm, CoLA, QQP datasets, we use batch size of 8 over 3", + "type": "text" + } + ] + }, + { + "bbox": [ + 107, + 661, + 438, + 672 + ], + "spans": [ + { + "bbox": [ + 107, + 661, + 438, + 672 + ], + "score": 1.0, + "content": "epochs. For the smaller MRPC, STS-B, RTE datasets, we use batch size of 8 over 3 epochs.", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 108, + 80, + 505, + 176 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 108, + 80, + 505, + 176 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 80, + 505, + 176 + ], + "spans": [ + { + "bbox": [ + 108, + 80, + 505, + 176 + ], + "score": 0.981, + "html": "
Total paramsNew params per taskQNLI*SST-2 MNLImMNLImmCoLA MRPC STS-B RTEQQPAvg
Full finetuning9.00×100%91.194.986.785.960.589.387.670.172.180.9
Adapters (8-256)1.32×3.6%90.794.084.985.159.589.586.971.571.880.4
Adapters (64)1.19×2.1%91.494.285.384.656.989.687.368.671.879.8
Full finetuning9.00×100%93.494.186.786.059.688.986.671.271.780.6
Last layer1.34×3.8%79.891.671.472.940.280.167.358.663.368.2
Non-adap. diff pruning1.05×0.5%89.793.684.984.851.281.578.261.568.675.5
Diff pruning1.05×0.5%92.993.885.785.660.587.083.568.170.679.4
Diff pruning (struct.)1.05×0.5%93.394.186.486.061.189.786.070.671.180.6
", + "type": "table", + "image_path": "7e11a32275eb2c11b417cefece91c401cc0ca72c9474a3ea349c1c085c7a67e7.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 80, + 505, + 112.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 112.0, + 505, + 144.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 144.0, + 505, + 176.0 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 177, + 505, + 217 + ], + "lines": [ + { + "bbox": [ + 106, + 176, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 505, + 188 + ], + "score": 1.0, + "content": "Table 1: GLUE benchmark test server results with BERTLARGE models. (Top) Results with adapter bottleneck", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 187, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 106, + 187, + 505, + 198 + ], + "score": 1.0, + "content": "layers (brackets indicate the size of bottlenecks), taken from from Houlsby et al. (2019). (Bottom) Results", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 196, + 505, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 165, + 208 + ], + "score": 1.0, + "content": "from this work.", + "type": "text" + }, + { + "bbox": [ + 165, + 197, + 193, + 207 + ], + "score": 0.68, + "content": "{ } ^ { * } \\mathrm { Q N L I }", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 196, + 505, + 208 + ], + "score": 1.0, + "content": "results are not directly comparable across the two works as the GLUE benchmark has", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 207, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 106, + 207, + 505, + 218 + ], + "score": 1.0, + "content": "updated the test set since then. To make our results comparable the average column is calculated without QNLI.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5, + "bbox_fs": [ + 106, + 176, + 505, + 218 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 225, + 505, + 258 + ], + "lines": [ + { + "bbox": [ + 105, + 224, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 505, + 238 + ], + "score": 1.0, + "content": "For all experiments, we use the BERTLARGE model from Devlin et al. (2019), which has 24 layers,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 235, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 106, + 235, + 505, + 248 + ], + "score": 1.0, + "content": "1024 hidden size, 16 attention heads, and 340M parameters. We use the Huggingface Transformer", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 246, + 325, + 259 + ], + "spans": [ + { + "bbox": [ + 106, + 246, + 325, + 259 + ], + "score": 1.0, + "content": "library (Wolf et al., 2019) to conduct our experiments.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 224, + 505, + 259 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 266, + 180, + 277 + ], + "lines": [ + { + "bbox": [ + 105, + 265, + 181, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 181, + 279 + ], + "score": 1.0, + "content": "4.2 BASELINES", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 283, + 505, + 383 + ], + "lines": [ + { + "bbox": [ + 106, + 284, + 504, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 284, + 504, + 296 + ], + "score": 1.0, + "content": "We compare both structured and non-structured variants of diff pruning against the following base-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 294, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 290, + 307 + ], + "score": 1.0, + "content": "lines: Full finetuning, which fully finetunes", + "type": "text" + }, + { + "bbox": [ + 290, + 295, + 321, + 306 + ], + "score": 0.25, + "content": "\\mathrm { B E R T _ { L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 294, + 505, + 307 + ], + "score": 1.0, + "content": "ARGE as usual; Last layer finetuning, which", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 304, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 505, + 320 + ], + "score": 1.0, + "content": "only finetunes the penultimate layer (along with the final output layer)9; Adapters from Houlsby", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 316, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 505, + 329 + ], + "score": 1.0, + "content": "et al. (2019), which train task-specific bottleneck layers between between each layer of a pretrained", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 327, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 506, + 342 + ], + "score": 1.0, + "content": "model, where parameter-efficiency can be controlled by varying the size of the bottleneck layers;", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 338, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 505, + 352 + ], + "score": 1.0, + "content": "and Non-adaptive diff pruning, which performs diff pruning just based on magnitude pruning (i.e.,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 348, + 505, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 148, + 364 + ], + "score": 1.0, + "content": "we obtain", + "type": "text" + }, + { + "bbox": [ + 148, + 350, + 160, + 361 + ], + "score": 0.87, + "content": "\\pmb { \\theta } _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 348, + 278, + 364 + ], + "score": 1.0, + "content": "through usual finetuning, set", + "type": "text" + }, + { + "bbox": [ + 279, + 349, + 361, + 362 + ], + "score": 0.91, + "content": "\\delta _ { \\tau } = \\pmb { \\theta } _ { \\tau } - \\pmb { \\theta } _ { \\mathrm { p r e t r a i n e d } }", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 348, + 505, + 364 + ], + "score": 1.0, + "content": ", and then apply magnitude pruning", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 360, + 506, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 253, + 374 + ], + "score": 1.0, + "content": "followed by additional finetuning on", + "type": "text" + }, + { + "bbox": [ + 253, + 361, + 264, + 372 + ], + "score": 0.85, + "content": "\\delta _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 360, + 465, + 374 + ], + "score": 1.0, + "content": "). For diff pruning we set our target sparsity rate to", + "type": "text" + }, + { + "bbox": [ + 465, + 361, + 487, + 371 + ], + "score": 0.86, + "content": "0 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 360, + 506, + 374 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 371, + 377, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 377, + 384 + ], + "score": 1.0, + "content": "investigate the effect of different target sparsity rates in section 5.1.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 284, + 506, + 384 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 390, + 360, + 402 + ], + "lines": [ + { + "bbox": [ + 105, + 390, + 361, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 361, + 403 + ], + "score": 1.0, + "content": "4.3 IMPLEMENTATION DETAILS AND HYPERPARAMETERS", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 405, + 505, + 483 + ], + "lines": [ + { + "bbox": [ + 105, + 404, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 316, + 418 + ], + "score": 1.0, + "content": "Diff pruning introduces additional hyperparameters", + "type": "text" + }, + { + "bbox": [ + 316, + 406, + 330, + 417 + ], + "score": 0.88, + "content": "l , r", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 404, + 505, + 418 + ], + "score": 1.0, + "content": "(for stretching the Hard-Concrete distribu-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 145, + 429 + ], + "score": 1.0, + "content": "tion) and", + "type": "text" + }, + { + "bbox": [ + 146, + 417, + 153, + 426 + ], + "score": 0.79, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 416, + 283, + 429 + ], + "score": 1.0, + "content": "(for weighting the approximate", + "type": "text" + }, + { + "bbox": [ + 284, + 417, + 296, + 428 + ], + "score": 0.88, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 416, + 405, + 429 + ], + "score": 1.0, + "content": "-norm penalty). We found", + "type": "text" + }, + { + "bbox": [ + 405, + 417, + 505, + 428 + ], + "score": 0.89, + "content": "l = - 1 . 5 , r = 1 . 5 , \\lambda =", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 107, + 426, + 506, + 440 + ], + "spans": [ + { + "bbox": [ + 107, + 427, + 158, + 438 + ], + "score": 0.92, + "content": "1 . 2 5 \\times 1 0 ^ { - 7 }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 426, + 419, + 440 + ], + "score": 1.0, + "content": "to work well across all tasks. We also initialize the weight vector", + "type": "text" + }, + { + "bbox": [ + 420, + 429, + 434, + 438 + ], + "score": 0.88, + "content": "{ \\bf w } _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 426, + 473, + 440 + ], + "score": 1.0, + "content": "to 0, and", + "type": "text" + }, + { + "bbox": [ + 473, + 429, + 487, + 438 + ], + "score": 0.86, + "content": "\\pmb { \\alpha } _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 426, + 506, + 440 + ], + "score": 1.0, + "content": "to a", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 438, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 265, + 451 + ], + "score": 1.0, + "content": "positive vector (we use 5) to encourage", + "type": "text" + }, + { + "bbox": [ + 266, + 441, + 277, + 450 + ], + "score": 0.88, + "content": "{ \\bf z } _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 438, + 505, + 451 + ], + "score": 1.0, + "content": "to be close to 1 at the start of training. While we mainly", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 449, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 505, + 462 + ], + "score": 1.0, + "content": "experiment with BERTLARGE to compare against prior work with adapters (Houlsby et al., 2019),", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 461, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 505, + 473 + ], + "score": 1.0, + "content": "in preliminary experiments we found these hyperparameters to work for finetuning RoBERTa (Liu", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 471, + 349, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 130, + 484 + ], + "score": 1.0, + "content": "et al.,", + "type": "text" + }, + { + "bbox": [ + 131, + 471, + 157, + 482 + ], + "score": 0.3, + "content": "2 0 1 9 \\mathrm { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 471, + 349, + 484 + ], + "score": 1.0, + "content": ") and XLNet (Yang et al., 2019) models as well.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 404, + 506, + 484 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 488, + 505, + 577 + ], + "lines": [ + { + "bbox": [ + 106, + 487, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 255, + 500 + ], + "score": 1.0, + "content": "For all tasks we use a learning rate of", + "type": "text" + }, + { + "bbox": [ + 255, + 487, + 292, + 498 + ], + "score": 0.92, + "content": "1 \\times 1 0 ^ { - 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 488, + 505, + 500 + ], + "score": 1.0, + "content": "and perform a hyperparameter search over batch size", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 497, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 499, + 167, + 511 + ], + "score": 0.91, + "content": "\\in \\{ 4 , 6 , 8 , 1 0 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 497, + 277, + 513 + ], + "score": 1.0, + "content": "and the number of epochs", + "type": "text" + }, + { + "bbox": [ + 277, + 499, + 332, + 511 + ], + "score": 0.9, + "content": "\\in \\{ 2 , 3 , 4 , 5 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 497, + 506, + 513 + ], + "score": 1.0, + "content": ".10 However we found the default settings", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 510, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 506, + 523 + ], + "score": 1.0, + "content": "used for regular finetuning as suggested in the original BERT paper to work well for most tasks.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 521, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 521, + 339, + 533 + ], + "score": 1.0, + "content": "Finetuning with the fixed mask after projecting onto the", + "type": "text" + }, + { + "bbox": [ + 339, + 522, + 352, + 532 + ], + "score": 0.89, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 521, + 505, + 533 + ], + "score": 1.0, + "content": "-ball with magnitude pruning is done", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 531, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 196, + 545 + ], + "score": 1.0, + "content": "with a learning rate of", + "type": "text" + }, + { + "bbox": [ + 196, + 532, + 232, + 543 + ], + "score": 0.92, + "content": "5 \\times 1 0 ^ { - 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 531, + 506, + 545 + ], + "score": 1.0, + "content": "for 3 or 5 epochs (3 epochs for QNLI, SST-2, MNLI-m, MNLI-mm,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 542, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 505, + 556 + ], + "score": 1.0, + "content": "CoLA, QQP, 5 epochs for MRPC, STS-B, RTE). Grouping for the structured version of diff pruning", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 554, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 506, + 567 + ], + "score": 1.0, + "content": "is based on the matrix/bias vectors (i.e. parameters that belong to the same matrix or bias vector are", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 565, + 361, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 361, + 577 + ], + "score": 1.0, + "content": "assumed to be in the same group), which results in 393 groups.1", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 487, + 506, + 577 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 587, + 253, + 600 + ], + "lines": [ + { + "bbox": [ + 104, + 585, + 255, + 602 + ], + "spans": [ + { + "bbox": [ + 104, + 585, + 255, + 602 + ], + "score": 1.0, + "content": "5 RESULTS AND ANALYSIS", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 609, + 504, + 632 + ], + "lines": [ + { + "bbox": [ + 105, + 608, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 505, + 622 + ], + "score": 1.0, + "content": "Our main results on the GLUE benchmark are shown in Table 1. Structured diff pruning can match", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 619, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 423, + 633 + ], + "score": 1.0, + "content": "the performance of a fully finetuned BERTLARGE model while only requiring", + "type": "text" + }, + { + "bbox": [ + 423, + 620, + 445, + 631 + ], + "score": 0.84, + "content": "0 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 619, + 506, + 633 + ], + "score": 1.0, + "content": "additional pa-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 352, + 505, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 505, + 366 + ], + "score": 1.0, + "content": "rameters per task. Diff pruning without structured sparsity also performs well, though slightly worse", + "type": "text", + "cross_page": true + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 364, + 506, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 506, + 376 + ], + "score": 1.0, + "content": "than the structured approach. Non-adaptive diff pruning, which magnitude prunes the diff vector", + "type": "text", + "cross_page": true + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 375, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 375, + 246, + 387 + ], + "score": 1.0, + "content": "without learning the binary mask", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 246, + 376, + 258, + 386 + ], + "score": 0.86, + "content": "\\mathbf { z } _ { \\tau }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 258, + 375, + 505, + 387 + ], + "score": 1.0, + "content": ", performs significantly worse, indicating the importance of", + "type": "text", + "cross_page": true + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 386, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 505, + 398 + ], + "score": 1.0, + "content": "learning the masking vector. Compared to adapters, diff pruning obtains similar performance while", + "type": "text", + "cross_page": true + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 397, + 506, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 506, + 409 + ], + "score": 1.0, + "content": "requiring fewer parameters per task, making it a potential alternative for parameter-efficient transfer", + "type": "text", + "cross_page": true + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 406, + 436, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 436, + 421 + ], + "score": 1.0, + "content": "learning.12 We now perform a series of analysis experiments on the validation set.", + "type": "text", + "cross_page": true + } + ], + "index": 22 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 608, + 506, + 633 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 325, + 108, + 483, + 192 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 325, + 108, + 483, + 192 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 325, + 108, + 483, + 192 + ], + "spans": [ + { + "bbox": [ + 325, + 108, + 483, + 192 + ], + "score": 0.95, + "html": "
Non-structuredPruned Diff GroupsStructured
#%#%
MRPC246.15213.2
STS-B256.44812.2
RTE287.15012.7
Avg25.76.550.012.7
", + "type": "table", + "image_path": "51e4628c9fdcedc7b5148c6713e9133f068ca6743dacfae1df379a77b1f70a0f.jpg" + } + ] + } + ], + "index": 4.5, + "virtual_lines": [ + { + "bbox": [ + 325, + 108, + 483, + 122.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 325, + 122.0, + 483, + 136.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 325, + 136.0, + 483, + 150.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 325, + 150.0, + 483, + 164.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 325, + 164.0, + 483, + 178.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 325, + 178.0, + 483, + 192.0 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 4.5 + }, + { + "type": "image", + "bbox": [ + 126, + 92, + 273, + 208 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 126, + 92, + 273, + 208 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 126, + 92, + 273, + 208 + ], + "spans": [ + { + "bbox": [ + 126, + 92, + 273, + 208 + ], + "score": 0.964, + "type": "image", + "image_path": "595b6e69a0b27f0e5a01c20b6b20af16c35c98e03db9d2bd1a18a59ee3317e0f.jpg" + } + ] + } + ], + "index": 0.5, + "virtual_lines": [ + { + "bbox": [ + 126, + 92, + 273, + 150.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 126, + 150.0, + 273, + 208.0 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 212, + 506, + 252 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 212, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 106, + 212, + 505, + 223 + ], + "score": 1.0, + "content": "Figure 1: (Left) Average performance on the GLUE validation set across different target sparsity rates for", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 222, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 505, + 234 + ], + "score": 1.0, + "content": "the different methods. (Right) Number of groups where all of the parameters in the group are fully zero for", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 232, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 106, + 232, + 267, + 244 + ], + "score": 1.0, + "content": "structured vs. non-structured diff pruning at", + "type": "text" + }, + { + "bbox": [ + 268, + 232, + 288, + 242 + ], + "score": 0.87, + "content": "0 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 232, + 505, + 244 + ], + "score": 1.0, + "content": "target sparsity. We group based on each matrix/bias vector,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 242, + 221, + 254 + ], + "spans": [ + { + "bbox": [ + 106, + 242, + 221, + 254 + ], + "score": 1.0, + "content": "resulting in 393 groups in total.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5 + } + ], + "index": 5.0 + }, + { + "type": "table", + "bbox": [ + 145, + 258, + 463, + 323 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 145, + 258, + 463, + 323 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 145, + 258, + 463, + 323 + ], + "spans": [ + { + "bbox": [ + 145, + 258, + 463, + 323 + ], + "score": 0.969, + "html": "
Diff vector target sparsityQNLISST-2MNLImMNLImmCoLAMRPCSTS-BRTEQQPAvg
0.10%92.793.385.685.958.087.486.368.685.282.5
0.25%93.294.286.286.563.390.988.471.586.184.5
0.50%93.494.286.486.963.591.389.571.586.684.8
1.00%93.394.286.487.066.391.489.971.186.685.1
100%93.594.186.587.162.891.989.871.887.685.0
", + "type": "table", + "image_path": "cf93b9d4d94aac37759a017bb2787dcedf4a0259386fb92fc7fa433b7d3a4591.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 145, + 258, + 463, + 279.6666666666667 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 145, + 279.6666666666667, + 463, + 301.33333333333337 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 145, + 301.33333333333337, + 463, + 323.00000000000006 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 106, + 326, + 502, + 346 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 323, + 504, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 504, + 338 + ], + "score": 1.0, + "content": "Table 2: Structured diff pruning results on the validation set with different target sparsity rates. Average", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 336, + 227, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 227, + 346 + ], + "score": 1.0, + "content": "performance includes all 9 tasks.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + } + ], + "index": 14.25 + }, + { + "type": "text", + "bbox": [ + 107, + 353, + 505, + 419 + ], + "lines": [ + { + "bbox": [ + 105, + 352, + 505, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 505, + 366 + ], + "score": 1.0, + "content": "rameters per task. Diff pruning without structured sparsity also performs well, though slightly worse", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 364, + 506, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 506, + 376 + ], + "score": 1.0, + "content": "than the structured approach. Non-adaptive diff pruning, which magnitude prunes the diff vector", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 375, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 375, + 246, + 387 + ], + "score": 1.0, + "content": "without learning the binary mask", + "type": "text" + }, + { + "bbox": [ + 246, + 376, + 258, + 386 + ], + "score": 0.86, + "content": "\\mathbf { z } _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 375, + 505, + 387 + ], + "score": 1.0, + "content": ", performs significantly worse, indicating the importance of", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 386, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 505, + 398 + ], + "score": 1.0, + "content": "learning the masking vector. Compared to adapters, diff pruning obtains similar performance while", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 397, + 506, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 506, + 409 + ], + "score": 1.0, + "content": "requiring fewer parameters per task, making it a potential alternative for parameter-efficient transfer", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 406, + 436, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 436, + 421 + ], + "score": 1.0, + "content": "learning.12 We now perform a series of analysis experiments on the validation set.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19.5 + }, + { + "type": "title", + "bbox": [ + 107, + 429, + 272, + 441 + ], + "lines": [ + { + "bbox": [ + 105, + 429, + 274, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 274, + 442 + ], + "score": 1.0, + "content": "5.1 VARYING THE TARGET SPARSITY", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 447, + 505, + 535 + ], + "lines": [ + { + "bbox": [ + 105, + 446, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 506, + 460 + ], + "score": 1.0, + "content": "In Figure 1 (left), we plot results on the GLUE validation set averaged across all tasks at target", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 458, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 173, + 471 + ], + "score": 1.0, + "content": "sparsity rates of", + "type": "text" + }, + { + "bbox": [ + 174, + 458, + 195, + 469 + ], + "score": 0.82, + "content": "0 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 458, + 199, + 471 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 199, + 458, + 226, + 470 + ], + "score": 0.8, + "content": "0 . 2 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 458, + 229, + 471 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 230, + 458, + 252, + 469 + ], + "score": 0.8, + "content": "0 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 458, + 254, + 471 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 255, + 458, + 277, + 469 + ], + "score": 0.71, + "content": "1 . 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 458, + 505, + 471 + ], + "score": 1.0, + "content": "for the different baselines. Structured diff pruning con-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 469, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 505, + 482 + ], + "score": 1.0, + "content": "sistently outperforms non-structured and and non-adaptive variants across different sparsity rates.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 480, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 505, + 493 + ], + "score": 1.0, + "content": "The advantage of adaptive methods becomes more pronounced at extreme sparsity rates. In Table 2,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 491, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 505, + 504 + ], + "score": 1.0, + "content": "we report the breakdown of accuracy of structured diff pruning across different tasks and sparsity", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 501, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 505, + 515 + ], + "score": 1.0, + "content": "rates, where we observe that different tasks have different sensitivity to target sparsity rates. This", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 513, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 505, + 527 + ], + "score": 1.0, + "content": "suggests that we can obtain even greater parameter-efficiency through targeting task-specific sparsity", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 524, + 198, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 198, + 536 + ], + "score": 1.0, + "content": "rates in the diff vector.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 27.5 + }, + { + "type": "title", + "bbox": [ + 107, + 546, + 356, + 556 + ], + "lines": [ + { + "bbox": [ + 106, + 545, + 357, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 545, + 357, + 558 + ], + "score": 1.0, + "content": "5.2 STRUCTURED VS. NON-STRUCTURED DIFF PRUNING", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 566, + 505, + 654 + ], + "lines": [ + { + "bbox": [ + 106, + 566, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 566, + 505, + 579 + ], + "score": 1.0, + "content": "Structured diff pruning introduces an additional mask per group, which encourages pruning of entire", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 577, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 506, + 590 + ], + "score": 1.0, + "content": "groups. This is less restrictive than traditional group sparsity techniques that have been used with", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 107, + 588, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 107, + 589, + 119, + 599 + ], + "score": 0.87, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 588, + 505, + 601 + ], + "score": 1.0, + "content": "-norm relaxations which force all parameters in a group to share the same mask (Louizos et al.,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 599, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 505, + 612 + ], + "score": 1.0, + "content": "2018; Wang et al., 2019b). However we still expect entire groups to be pruned out more often in", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 610, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 505, + 623 + ], + "score": 1.0, + "content": "the structured case, which might bias the learning process towards either eliminating completely or", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 619, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 104, + 619, + 505, + 635 + ], + "score": 1.0, + "content": "clustering together nonzero diffs. In Figure 1 (right), we indeed find that structured diff pruning", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "score": 1.0, + "content": "leads to finetuned models that are much more likely to leave entire groups unchanged from their", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 644, + 226, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 226, + 655 + ], + "score": 1.0, + "content": "pretrained values (zero diffs).", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 36.5 + }, + { + "type": "title", + "bbox": [ + 107, + 662, + 241, + 673 + ], + "lines": [ + { + "bbox": [ + 106, + 662, + 243, + 675 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 243, + 675 + ], + "score": 1.0, + "content": "5.3 TASK-SPECIFIC SPARSITY", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 108, + 680, + 504, + 714 + ], + "lines": [ + { + "bbox": [ + 105, + 679, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 506, + 693 + ], + "score": 1.0, + "content": "Different layers of pretrained models have argued to encode different information (Liu et al., 2019a;", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 691, + 506, + 703 + ], + "spans": [ + { + "bbox": [ + 106, + 691, + 506, + 703 + ], + "score": 1.0, + "content": "Tenney et al., 2019). Given that each task will likely recruit different kinds of language phenomena", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 701, + 506, + 715 + ], + "spans": [ + { + "bbox": [ + 105, + 701, + 506, + 715 + ], + "score": 1.0, + "content": "embedded in the hidden layers, we hypothesize that diff pruning will modify different parts of the", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 112, + 722, + 502, + 732 + ], + "lines": [ + { + "bbox": [ + 115, + 718, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 115, + 718, + 505, + 734 + ], + "score": 1.0, + "content": "12However diff pruning incurs additional storage cost due to storing the nonzero positions of the diff vector.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 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" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 325, + 108, + 483, + 192 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 325, + 108, + 483, + 192 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 325, + 108, + 483, + 192 + ], + "spans": [ + { + "bbox": [ + 325, + 108, + 483, + 192 + ], + "score": 0.95, + "html": "
Non-structuredPruned Diff GroupsStructured
#%#%
MRPC246.15213.2
STS-B256.44812.2
RTE287.15012.7
Avg25.76.550.012.7
", + "type": "table", + "image_path": "51e4628c9fdcedc7b5148c6713e9133f068ca6743dacfae1df379a77b1f70a0f.jpg" + } + ] + } + ], + "index": 4.5, + "virtual_lines": [ + { + "bbox": [ + 325, + 108, + 483, + 122.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 325, + 122.0, + 483, + 136.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 325, + 136.0, + 483, + 150.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 325, + 150.0, + 483, + 164.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 325, + 164.0, + 483, + 178.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 325, + 178.0, + 483, + 192.0 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 4.5 + }, + { + "type": "image", + "bbox": [ + 126, + 92, + 273, + 208 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 126, + 92, + 273, + 208 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 126, + 92, + 273, + 208 + ], + "spans": [ + { + "bbox": [ + 126, + 92, + 273, + 208 + ], + "score": 0.964, + "type": "image", + "image_path": "595b6e69a0b27f0e5a01c20b6b20af16c35c98e03db9d2bd1a18a59ee3317e0f.jpg" + } + ] + } + ], + "index": 0.5, + "virtual_lines": [ + { + "bbox": [ + 126, + 92, + 273, + 150.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 126, + 150.0, + 273, + 208.0 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 212, + 506, + 252 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 212, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 106, + 212, + 505, + 223 + ], + "score": 1.0, + "content": "Figure 1: (Left) Average performance on the GLUE validation set across different target sparsity rates for", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 222, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 505, + 234 + ], + "score": 1.0, + "content": "the different methods. (Right) Number of groups where all of the parameters in the group are fully zero for", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 232, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 106, + 232, + 267, + 244 + ], + "score": 1.0, + "content": "structured vs. non-structured diff pruning at", + "type": "text" + }, + { + "bbox": [ + 268, + 232, + 288, + 242 + ], + "score": 0.87, + "content": "0 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 232, + 505, + 244 + ], + "score": 1.0, + "content": "target sparsity. We group based on each matrix/bias vector,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 242, + 221, + 254 + ], + "spans": [ + { + "bbox": [ + 106, + 242, + 221, + 254 + ], + "score": 1.0, + "content": "resulting in 393 groups in total.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5 + } + ], + "index": 5.0 + }, + { + "type": "table", + "bbox": [ + 145, + 258, + 463, + 323 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 145, + 258, + 463, + 323 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 145, + 258, + 463, + 323 + ], + "spans": [ + { + "bbox": [ + 145, + 258, + 463, + 323 + ], + "score": 0.969, + "html": "
Diff vector target sparsityQNLISST-2MNLImMNLImmCoLAMRPCSTS-BRTEQQPAvg
0.10%92.793.385.685.958.087.486.368.685.282.5
0.25%93.294.286.286.563.390.988.471.586.184.5
0.50%93.494.286.486.963.591.389.571.586.684.8
1.00%93.394.286.487.066.391.489.971.186.685.1
100%93.594.186.587.162.891.989.871.887.685.0
", + "type": "table", + "image_path": "cf93b9d4d94aac37759a017bb2787dcedf4a0259386fb92fc7fa433b7d3a4591.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 145, + 258, + 463, + 279.6666666666667 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 145, + 279.6666666666667, + 463, + 301.33333333333337 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 145, + 301.33333333333337, + 463, + 323.00000000000006 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 106, + 326, + 502, + 346 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 323, + 504, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 504, + 338 + ], + "score": 1.0, + "content": "Table 2: Structured diff pruning results on the validation set with different target sparsity rates. Average", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 336, + 227, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 227, + 346 + ], + "score": 1.0, + "content": "performance includes all 9 tasks.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + } + ], + "index": 14.25 + }, + { + "type": "text", + "bbox": [ + 107, + 353, + 505, + 419 + ], + "lines": [], + "index": 19.5, + "bbox_fs": [ + 105, + 352, + 506, + 421 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 107, + 429, + 272, + 441 + ], + "lines": [ + { + "bbox": [ + 105, + 429, + 274, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 274, + 442 + ], + "score": 1.0, + "content": "5.1 VARYING THE TARGET SPARSITY", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 447, + 505, + 535 + ], + "lines": [ + { + "bbox": [ + 105, + 446, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 506, + 460 + ], + "score": 1.0, + "content": "In Figure 1 (left), we plot results on the GLUE validation set averaged across all tasks at target", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 458, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 173, + 471 + ], + "score": 1.0, + "content": "sparsity rates of", + "type": "text" + }, + { + "bbox": [ + 174, + 458, + 195, + 469 + ], + "score": 0.82, + "content": "0 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 458, + 199, + 471 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 199, + 458, + 226, + 470 + ], + "score": 0.8, + "content": "0 . 2 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 458, + 229, + 471 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 230, + 458, + 252, + 469 + ], + "score": 0.8, + "content": "0 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 458, + 254, + 471 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 255, + 458, + 277, + 469 + ], + "score": 0.71, + "content": "1 . 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 458, + 505, + 471 + ], + "score": 1.0, + "content": "for the different baselines. Structured diff pruning con-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 469, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 505, + 482 + ], + "score": 1.0, + "content": "sistently outperforms non-structured and and non-adaptive variants across different sparsity rates.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 480, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 505, + 493 + ], + "score": 1.0, + "content": "The advantage of adaptive methods becomes more pronounced at extreme sparsity rates. In Table 2,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 491, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 505, + 504 + ], + "score": 1.0, + "content": "we report the breakdown of accuracy of structured diff pruning across different tasks and sparsity", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 501, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 505, + 515 + ], + "score": 1.0, + "content": "rates, where we observe that different tasks have different sensitivity to target sparsity rates. This", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 513, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 505, + 527 + ], + "score": 1.0, + "content": "suggests that we can obtain even greater parameter-efficiency through targeting task-specific sparsity", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 524, + 198, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 198, + 536 + ], + "score": 1.0, + "content": "rates in the diff vector.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 446, + 506, + 536 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 546, + 356, + 556 + ], + "lines": [ + { + "bbox": [ + 106, + 545, + 357, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 545, + 357, + 558 + ], + "score": 1.0, + "content": "5.2 STRUCTURED VS. NON-STRUCTURED DIFF PRUNING", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 566, + 505, + 654 + ], + "lines": [ + { + "bbox": [ + 106, + 566, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 566, + 505, + 579 + ], + "score": 1.0, + "content": "Structured diff pruning introduces an additional mask per group, which encourages pruning of entire", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 577, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 506, + 590 + ], + "score": 1.0, + "content": "groups. This is less restrictive than traditional group sparsity techniques that have been used with", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 107, + 588, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 107, + 589, + 119, + 599 + ], + "score": 0.87, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 588, + 505, + 601 + ], + "score": 1.0, + "content": "-norm relaxations which force all parameters in a group to share the same mask (Louizos et al.,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 599, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 505, + 612 + ], + "score": 1.0, + "content": "2018; Wang et al., 2019b). However we still expect entire groups to be pruned out more often in", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 610, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 505, + 623 + ], + "score": 1.0, + "content": "the structured case, which might bias the learning process towards either eliminating completely or", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 619, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 104, + 619, + 505, + 635 + ], + "score": 1.0, + "content": "clustering together nonzero diffs. In Figure 1 (right), we indeed find that structured diff pruning", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "score": 1.0, + "content": "leads to finetuned models that are much more likely to leave entire groups unchanged from their", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 644, + 226, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 226, + 655 + ], + "score": 1.0, + "content": "pretrained values (zero diffs).", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 36.5, + "bbox_fs": [ + 104, + 566, + 506, + 655 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 662, + 241, + 673 + ], + "lines": [ + { + "bbox": [ + 106, + 662, + 243, + 675 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 243, + 675 + ], + "score": 1.0, + "content": "5.3 TASK-SPECIFIC SPARSITY", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 108, + 680, + 504, + 714 + ], + "lines": [ + { + "bbox": [ + 105, + 679, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 506, + 693 + ], + "score": 1.0, + "content": "Different layers of pretrained models have argued to encode different information (Liu et al., 2019a;", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 691, + 506, + 703 + ], + "spans": [ + { + "bbox": [ + 106, + 691, + 506, + 703 + ], + "score": 1.0, + "content": "Tenney et al., 2019). Given that each task will likely recruit different kinds of language phenomena", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 701, + 506, + 715 + ], + "spans": [ + { + "bbox": [ + 105, + 701, + 506, + 715 + ], + "score": 1.0, + "content": "embedded in the hidden layers, we hypothesize that diff pruning will modify different parts of the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 104, + 328, + 506, + 341 + ], + "spans": [ + { + "bbox": [ + 104, + 328, + 506, + 341 + ], + "score": 1.0, + "content": "pretrained model through task-specific finetuning. Figure 2 shows the percentage of nonzero diff", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 339, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 505, + 351 + ], + "score": 1.0, + "content": "parameters attributable to the different layers for each task. We find that different tasks indeed", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 350, + 506, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 350, + 506, + 362 + ], + "score": 1.0, + "content": "modify different parts of the network, although there are some qualitative similarities between some", + "type": "text", + "cross_page": true + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 361, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 505, + 374 + ], + "score": 1.0, + "content": "tasks, for example between QNLI & QQP (both must encode questions), and MRPC & STS-B (both", + "type": "text", + "cross_page": true + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 372, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 506, + 385 + ], + "score": 1.0, + "content": "must predict similarity between sentences). The embedding layer is very sparsely modified for all", + "type": "text", + "cross_page": true + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "score": 1.0, + "content": "tasks. While some of the variations in the sparsity distributions is due to simple randomness, we do", + "type": "text", + "cross_page": true + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 394, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 505, + 407 + ], + "score": 1.0, + "content": "observe some level of consistency over multiple runs of the same task, as shown in Figure 3 of the", + "type": "text", + "cross_page": true + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 405, + 149, + 418 + ], + "spans": [ + { + "bbox": [ + 104, + 405, + 149, + 418 + ], + "score": 1.0, + "content": "appendix.", + "type": "text", + "cross_page": true + } + ], + "index": 18 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 679, + 506, + 715 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 110, + 82, + 501, + 199 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 82, + 501, + 199 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 82, + 501, + 199 + ], + "spans": [ + { + "bbox": [ + 110, + 82, + 501, + 199 + ], + "score": 0.883, + "type": "image", + "image_path": "a2618320f9f0e0193cd71e3737c981cd5b834522d27110d75f63705a8284b8ae.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 110, + 82, + 501, + 121.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 110, + 121.0, + 501, + 160.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 110, + 160.0, + 501, + 199.0 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "table", + "bbox": [ + 114, + 241, + 493, + 289 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 108, + 206, + 503, + 236 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 205, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 430, + 218 + ], + "score": 1.0, + "content": "Figure 2: Percentage of modified parameters attributable to each layer for different tasks at", + "type": "text" + }, + { + "bbox": [ + 430, + 206, + 450, + 216 + ], + "score": 0.88, + "content": "0 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 205, + 505, + 218 + ], + "score": 1.0, + "content": "target sparsity.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 215, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 448, + 227 + ], + "score": 1.0, + "content": "The layers are ordered from earlier to later (i.e. the embedding layer is shown at the top). The", + "type": "text" + }, + { + "bbox": [ + 449, + 217, + 455, + 225 + ], + "score": 0.53, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 215, + 505, + 227 + ], + "score": 1.0, + "content": "-axis for each", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 226, + 206, + 237 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 160, + 237 + ], + "score": 1.0, + "content": "plot goes from", + "type": "text" + }, + { + "bbox": [ + 161, + 226, + 174, + 235 + ], + "score": 0.84, + "content": "0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 226, + 184, + 237 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 185, + 226, + 202, + 235 + ], + "score": 0.86, + "content": "20 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 226, + 206, + 237 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "table_body", + "bbox": [ + 114, + 241, + 493, + 289 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 241, + 493, + 289 + ], + "spans": [ + { + "bbox": [ + 114, + 241, + 493, + 289 + ], + "score": 0.95, + "html": "
QNLISST-2MNLImMNLImmCoLAMRPCSTS-BRTEQQPAvg
Sparsity1.5%0.6%0.8%0.8%1.6%2.4%3.3%0.7%0.6%1.4%
Performance93.894.086.286.863.191.989.771.886.584.9
With 0.5% sparsity93.494.286.486.963.591.389.571.586.684.8
", + "type": "table", + "image_path": "f1421724012c23f06006dcf661bb337cb0a8a1761b9ef97a21766239f94a5d77.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 114, + 241, + 493, + 257.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 114, + 257.0, + 493, + 273.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 114, + 273.0, + 493, + 289.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 107, + 292, + 504, + 313 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 291, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 506, + 303 + ], + "score": 1.0, + "content": "Table 3: (Top) Sparsity and performance before magnitude pruning on the validation set with structured diff", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 302, + 316, + 314 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 240, + 314 + ], + "score": 1.0, + "content": "pruning. (Bottom) Performance with", + "type": "text" + }, + { + "bbox": [ + 241, + 302, + 261, + 312 + ], + "score": 0.87, + "content": "0 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 302, + 316, + 314 + ], + "score": 1.0, + "content": "target sparsity.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 328, + 505, + 416 + ], + "lines": [ + { + "bbox": [ + 104, + 328, + 506, + 341 + ], + "spans": [ + { + "bbox": [ + 104, + 328, + 506, + 341 + ], + "score": 1.0, + "content": "pretrained model through task-specific finetuning. Figure 2 shows the percentage of nonzero diff", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 339, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 505, + 351 + ], + "score": 1.0, + "content": "parameters attributable to the different layers for each task. We find that different tasks indeed", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 350, + 506, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 350, + 506, + 362 + ], + "score": 1.0, + "content": "modify different parts of the network, although there are some qualitative similarities between some", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 361, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 505, + 374 + ], + "score": 1.0, + "content": "tasks, for example between QNLI & QQP (both must encode questions), and MRPC & STS-B (both", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 372, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 506, + 385 + ], + "score": 1.0, + "content": "must predict similarity between sentences). The embedding layer is very sparsely modified for all", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "score": 1.0, + "content": "tasks. While some of the variations in the sparsity distributions is due to simple randomness, we do", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 394, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 505, + 407 + ], + "score": 1.0, + "content": "observe some level of consistency over multiple runs of the same task, as shown in Figure 3 of the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 405, + 149, + 418 + ], + "spans": [ + { + "bbox": [ + 104, + 405, + 149, + 418 + ], + "score": 1.0, + "content": "appendix.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 107, + 422, + 505, + 498 + ], + "lines": [ + { + "bbox": [ + 106, + 422, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 505, + 434 + ], + "score": 1.0, + "content": "The ability to modify different parts of the pretrained model for each task could explain the improved", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "score": 1.0, + "content": "parameter-efficiency of our approach compared to Houlsby et al. (2019)’s adapter layers, which can", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 443, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 506, + 457 + ], + "score": 1.0, + "content": "only read/write to the pretrained model at certain points of the computational graph.13 This poten-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 455, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 505, + 468 + ], + "score": 1.0, + "content": "tially suggests that adapter layers with more fine-grained access into model internals (e.g. adapters", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 465, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 505, + 478 + ], + "score": 1.0, + "content": "for key/value/query transformations) might result in even greater parameter-efficiency. While left as", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "score": 1.0, + "content": "future work, we also note that diff pruning can be applied in conjunction with adapters, which might", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 488, + 202, + 499 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 202, + 499 + ], + "score": 1.0, + "content": "further improve results.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 22 + }, + { + "type": "title", + "bbox": [ + 107, + 507, + 390, + 518 + ], + "lines": [ + { + "bbox": [ + 106, + 506, + 392, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 178, + 520 + ], + "score": 1.0, + "content": "5.4 EFFECT OF", + "type": "text" + }, + { + "bbox": [ + 179, + 507, + 191, + 518 + ], + "score": 0.84, + "content": "\\mathrm { L } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 506, + 392, + 520 + ], + "score": 1.0, + "content": "-BALL PROJECTION VIA MAGNITUDE PRUNING", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 108, + 522, + 505, + 555 + ], + "lines": [ + { + "bbox": [ + 106, + 520, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 309, + 536 + ], + "score": 1.0, + "content": "Applying magnitude pruning to project onto the", + "type": "text" + }, + { + "bbox": [ + 309, + 522, + 321, + 533 + ], + "score": 0.85, + "content": "\\mathrm { L } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 520, + 505, + 536 + ], + "score": 1.0, + "content": "-ball was crucial in achieving exact sparsity", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 532, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 505, + 545 + ], + "score": 1.0, + "content": "targets. As shown in Table 3, we observed little loss in performance through magnitude pruning. We", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 542, + 506, + 557 + ], + "spans": [ + { + "bbox": [ + 104, + 542, + 506, + 557 + ], + "score": 1.0, + "content": "re-iterate that it was crucial to finetune with the fixed mask in order to maintain good performance.14", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28 + }, + { + "type": "title", + "bbox": [ + 107, + 573, + 329, + 585 + ], + "lines": [ + { + "bbox": [ + 105, + 573, + 330, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 330, + 587 + ], + "score": 1.0, + "content": "5.5 SQUAD EXTRACTIVE QUESTION ANSWERING", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 106, + 594, + 505, + 671 + ], + "lines": [ + { + "bbox": [ + 106, + 594, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 505, + 607 + ], + "score": 1.0, + "content": "To demonstrate the effectiveness of our approach beyond classification, we additionally experiment", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 605, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 506, + 618 + ], + "score": 1.0, + "content": "on the extractive question answering task SQuAD, which asks model to select the answer span to a", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 616, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 506, + 630 + ], + "score": 1.0, + "content": "question given a Wikipedia paragraph. To make direct comparisons with Houlsby et al. (2019), we", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 627, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 506, + 640 + ], + "score": 1.0, + "content": "run all experiments on SQuAD v1.1. For diff pruning, we use the same general hyper-parameters as", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 637, + 506, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 506, + 652 + ], + "score": 1.0, + "content": "our full finetuning baseline.15 Results are shown in Table 4. Diff pruning is able achieve comparable", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 649, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 240, + 661 + ], + "score": 1.0, + "content": "or better performance with only", + "type": "text" + }, + { + "bbox": [ + 240, + 649, + 255, + 660 + ], + "score": 0.87, + "content": "1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 649, + 505, + 661 + ], + "score": 1.0, + "content": "additional parameters. Notably, we see that our method can", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 659, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 428, + 673 + ], + "score": 1.0, + "content": "improve the F1 score of full finetuning baseline by a significant margin (e.g.", + "type": "text" + }, + { + "bbox": [ + 428, + 660, + 502, + 671 + ], + "score": 0.9, + "content": "9 0 . 8 \\% \\Rightarrow 9 3 . 2 \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 659, + 505, + 673 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 680, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 115, + 676, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 115, + 676, + 506, + 694 + ], + "score": 1.0, + "content": "13To simulate this restricted setting, we tried applying diff pruning only on the dense transformations just", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 688, + 478, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 478, + 702 + ], + "score": 1.0, + "content": "before the output of each layer (i.e. after self-attention layers), and observed much worse performance.", + "type": "text" + } + ] + }, + { + "bbox": [ + 114, + 697, + 506, + 715 + ], + "spans": [ + { + "bbox": [ + 114, + 697, + 474, + 715 + ], + "score": 1.0, + "content": "14Even for the approach that does not apply magnitude pruning, we found it helpful to fix the mask", + "type": "text" + }, + { + "bbox": [ + 474, + 702, + 485, + 710 + ], + "score": 0.85, + "content": "\\mathbf { z } _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 697, + 506, + 715 + ], + "score": 1.0, + "content": "after", + "type": "text" + } + ] + }, + { + "bbox": [ + 104, + 709, + 272, + 723 + ], + "spans": [ + { + "bbox": [ + 104, + 709, + 254, + 723 + ], + "score": 1.0, + "content": "an initial training phase and finetune just", + "type": "text" + }, + { + "bbox": [ + 255, + 712, + 268, + 721 + ], + "score": 0.86, + "content": "{ \\bf w } _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 709, + 272, + 723 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ] + }, + { + "bbox": [ + 115, + 719, + 333, + 734 + ], + "spans": [ + { + "bbox": [ + 115, + 719, + 333, + 734 + ], + "score": 1.0, + "content": "15https://huggingface.co/transformers/v2.5.1/examples.html", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 110, + 82, + 501, + 199 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 82, + 501, + 199 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 82, + 501, + 199 + ], + "spans": [ + { + "bbox": [ + 110, + 82, + 501, + 199 + ], + "score": 0.883, + "type": "image", + "image_path": "a2618320f9f0e0193cd71e3737c981cd5b834522d27110d75f63705a8284b8ae.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 110, + 82, + 501, + 121.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 110, + 121.0, + 501, + 160.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 110, + 160.0, + 501, + 199.0 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "table", + "bbox": [ + 114, + 241, + 493, + 289 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 108, + 206, + 503, + 236 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 205, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 430, + 218 + ], + "score": 1.0, + "content": "Figure 2: Percentage of modified parameters attributable to each layer for different tasks at", + "type": "text" + }, + { + "bbox": [ + 430, + 206, + 450, + 216 + ], + "score": 0.88, + "content": "0 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 205, + 505, + 218 + ], + "score": 1.0, + "content": "target sparsity.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 215, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 448, + 227 + ], + "score": 1.0, + "content": "The layers are ordered from earlier to later (i.e. the embedding layer is shown at the top). The", + "type": "text" + }, + { + "bbox": [ + 449, + 217, + 455, + 225 + ], + "score": 0.53, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 215, + 505, + 227 + ], + "score": 1.0, + "content": "-axis for each", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 226, + 206, + 237 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 160, + 237 + ], + "score": 1.0, + "content": "plot goes from", + "type": "text" + }, + { + "bbox": [ + 161, + 226, + 174, + 235 + ], + "score": 0.84, + "content": "0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 226, + 184, + 237 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 185, + 226, + 202, + 235 + ], + "score": 0.86, + "content": "20 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 226, + 206, + 237 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "table_body", + "bbox": [ + 114, + 241, + 493, + 289 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 241, + 493, + 289 + ], + "spans": [ + { + "bbox": [ + 114, + 241, + 493, + 289 + ], + "score": 0.95, + "html": "
QNLISST-2MNLImMNLImmCoLAMRPCSTS-BRTEQQPAvg
Sparsity1.5%0.6%0.8%0.8%1.6%2.4%3.3%0.7%0.6%1.4%
Performance93.894.086.286.863.191.989.771.886.584.9
With 0.5% sparsity93.494.286.486.963.591.389.571.586.684.8
", + "type": "table", + "image_path": "f1421724012c23f06006dcf661bb337cb0a8a1761b9ef97a21766239f94a5d77.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 114, + 241, + 493, + 257.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 114, + 257.0, + 493, + 273.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 114, + 273.0, + 493, + 289.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 107, + 292, + 504, + 313 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 291, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 506, + 303 + ], + "score": 1.0, + "content": "Table 3: (Top) Sparsity and performance before magnitude pruning on the validation set with structured diff", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 302, + 316, + 314 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 240, + 314 + ], + "score": 1.0, + "content": "pruning. (Bottom) Performance with", + "type": "text" + }, + { + "bbox": [ + 241, + 302, + 261, + 312 + ], + "score": 0.87, + "content": "0 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 302, + 316, + 314 + ], + "score": 1.0, + "content": "target sparsity.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 328, + 505, + 416 + ], + "lines": [], + "index": 14.5, + "bbox_fs": [ + 104, + 328, + 506, + 418 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 422, + 505, + 498 + ], + "lines": [ + { + "bbox": [ + 106, + 422, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 505, + 434 + ], + "score": 1.0, + "content": "The ability to modify different parts of the pretrained model for each task could explain the improved", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "score": 1.0, + "content": "parameter-efficiency of our approach compared to Houlsby et al. (2019)’s adapter layers, which can", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 443, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 506, + 457 + ], + "score": 1.0, + "content": "only read/write to the pretrained model at certain points of the computational graph.13 This poten-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 455, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 505, + 468 + ], + "score": 1.0, + "content": "tially suggests that adapter layers with more fine-grained access into model internals (e.g. adapters", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 465, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 505, + 478 + ], + "score": 1.0, + "content": "for key/value/query transformations) might result in even greater parameter-efficiency. While left as", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "score": 1.0, + "content": "future work, we also note that diff pruning can be applied in conjunction with adapters, which might", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 488, + 202, + 499 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 202, + 499 + ], + "score": 1.0, + "content": "further improve results.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 422, + 506, + 499 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 507, + 390, + 518 + ], + "lines": [ + { + "bbox": [ + 106, + 506, + 392, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 178, + 520 + ], + "score": 1.0, + "content": "5.4 EFFECT OF", + "type": "text" + }, + { + "bbox": [ + 179, + 507, + 191, + 518 + ], + "score": 0.84, + "content": "\\mathrm { L } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 506, + 392, + 520 + ], + "score": 1.0, + "content": "-BALL PROJECTION VIA MAGNITUDE PRUNING", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 108, + 522, + 505, + 555 + ], + "lines": [ + { + "bbox": [ + 106, + 520, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 309, + 536 + ], + "score": 1.0, + "content": "Applying magnitude pruning to project onto the", + "type": "text" + }, + { + "bbox": [ + 309, + 522, + 321, + 533 + ], + "score": 0.85, + "content": "\\mathrm { L } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 520, + 505, + 536 + ], + "score": 1.0, + "content": "-ball was crucial in achieving exact sparsity", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 532, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 505, + 545 + ], + "score": 1.0, + "content": "targets. As shown in Table 3, we observed little loss in performance through magnitude pruning. We", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 542, + 506, + 557 + ], + "spans": [ + { + "bbox": [ + 104, + 542, + 506, + 557 + ], + "score": 1.0, + "content": "re-iterate that it was crucial to finetune with the fixed mask in order to maintain good performance.14", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28, + "bbox_fs": [ + 104, + 520, + 506, + 557 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 573, + 329, + 585 + ], + "lines": [ + { + "bbox": [ + 105, + 573, + 330, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 330, + 587 + ], + "score": 1.0, + "content": "5.5 SQUAD EXTRACTIVE QUESTION ANSWERING", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 106, + 594, + 505, + 671 + ], + "lines": [ + { + "bbox": [ + 106, + 594, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 505, + 607 + ], + "score": 1.0, + "content": "To demonstrate the effectiveness of our approach beyond classification, we additionally experiment", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 605, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 506, + 618 + ], + "score": 1.0, + "content": "on the extractive question answering task SQuAD, which asks model to select the answer span to a", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 616, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 506, + 630 + ], + "score": 1.0, + "content": "question given a Wikipedia paragraph. To make direct comparisons with Houlsby et al. (2019), we", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 627, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 506, + 640 + ], + "score": 1.0, + "content": "run all experiments on SQuAD v1.1. For diff pruning, we use the same general hyper-parameters as", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 637, + 506, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 506, + 652 + ], + "score": 1.0, + "content": "our full finetuning baseline.15 Results are shown in Table 4. Diff pruning is able achieve comparable", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 649, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 240, + 661 + ], + "score": 1.0, + "content": "or better performance with only", + "type": "text" + }, + { + "bbox": [ + 240, + 649, + 255, + 660 + ], + "score": 0.87, + "content": "1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 649, + 505, + 661 + ], + "score": 1.0, + "content": "additional parameters. Notably, we see that our method can", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 659, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 428, + 673 + ], + "score": 1.0, + "content": "improve the F1 score of full finetuning baseline by a significant margin (e.g.", + "type": "text" + }, + { + "bbox": [ + 428, + 660, + 502, + 671 + ], + "score": 0.9, + "content": "9 0 . 8 \\% \\Rightarrow 9 3 . 2 \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 659, + 505, + 673 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 594, + 506, + 673 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 216, + 80, + 392, + 164 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 216, + 80, + 392, + 164 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 216, + 80, + 392, + 164 + ], + "spans": [ + { + "bbox": [ + 216, + 80, + 392, + 164 + ], + "score": 0.977, + "html": "
SparsityF1
Full finetuning Adapters100% 2%90.7% 90.4%
Full finetuning100%90.8%
Diff pruning1%92.1%
Diff pruning (struct.)1%93.2%
", + "type": "table", + "image_path": "4f39fcc11bdeb82064d1bfc004bd6998c756639a075f86e91f7cfa4d23221bd5.jpg" + } + ] + } + ], + "index": 2.5, + "virtual_lines": [ + { + "bbox": [ + 216, + 80, + 392, + 94.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 216, + 94.0, + 392, + 108.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 216, + 108.0, + 392, + 122.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 216, + 122.0, + 392, + 136.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 216, + 136.0, + 392, + 150.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 216, + 150.0, + 392, + 164.0 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 197, + 166, + 414, + 177 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 196, + 166, + 415, + 178 + ], + "spans": [ + { + "bbox": [ + 196, + 166, + 415, + 178 + ], + "score": 1.0, + "content": "Table 4: SQuAD validation results with BERTLARGE model.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + } + ], + "index": 4.25 + }, + { + "type": "text", + "bbox": [ + 107, + 200, + 505, + 222 + ], + "lines": [ + { + "bbox": [ + 105, + 199, + 506, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 298, + 213 + ], + "score": 1.0, + "content": "while modifying many fewer parameters (e.g.,", + "type": "text" + }, + { + "bbox": [ + 299, + 200, + 356, + 212 + ], + "score": 0.91, + "content": "1 0 0 \\% \\Rightarrow 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 199, + 506, + 213 + ], + "score": 1.0, + "content": "), which potentially implies that diff", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 212, + 296, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 296, + 224 + ], + "score": 1.0, + "content": "pruning can have a useful regularization effect.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "title", + "bbox": [ + 107, + 236, + 190, + 249 + ], + "lines": [ + { + "bbox": [ + 105, + 234, + 192, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 192, + 252 + ], + "score": 1.0, + "content": "6 DISCUSSION", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "title", + "bbox": [ + 107, + 257, + 243, + 268 + ], + "lines": [ + { + "bbox": [ + 106, + 257, + 244, + 270 + ], + "spans": [ + { + "bbox": [ + 106, + 257, + 244, + 270 + ], + "score": 1.0, + "content": "6.1 MEMORY REQUIREMENTS", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 273, + 505, + 339 + ], + "lines": [ + { + "bbox": [ + 105, + 273, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 505, + 285 + ], + "score": 1.0, + "content": "For training, our approach requires more memory than usual finetuning due to additionally opti-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 284, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 138, + 297 + ], + "score": 1.0, + "content": "mizing", + "type": "text" + }, + { + "bbox": [ + 138, + 285, + 152, + 295 + ], + "score": 0.86, + "content": "\\pmb { \\alpha } _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 284, + 172, + 297 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 173, + 285, + 187, + 295 + ], + "score": 0.87, + "content": "{ \\bf w } _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 284, + 505, + 297 + ], + "score": 1.0, + "content": ". This did not present a significant challenge for pretrained models that we", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 295, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 505, + 308 + ], + "score": 1.0, + "content": "experimented with in this study, since majority of GPU memory was utilized by the minibatch’s", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 306, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 505, + 318 + ], + "score": 1.0, + "content": "activation layers. However, this could present an issue as model sizes get larger and larger. While", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 317, + 504, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 482, + 329 + ], + "score": 1.0, + "content": "training efficiency was not a primary concern of this work, diff pruning takes approxiamtely", + "type": "text" + }, + { + "bbox": [ + 482, + 317, + 504, + 328 + ], + "score": 0.85, + "content": "1 . 5 \\times", + "type": "inline_equation" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 327, + 347, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 116, + 341 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 117, + 328, + 131, + 338 + ], + "score": 0.86, + "content": "2 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 327, + 347, + 341 + ], + "score": 1.0, + "content": "more time per batch, which results in slower training.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 107, + 344, + 504, + 367 + ], + "lines": [ + { + "bbox": [ + 106, + 344, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 505, + 357 + ], + "score": 1.0, + "content": "After training, storing the task-specific diff vector requires storing a compressed version with both", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 355, + 431, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 431, + 369 + ], + "score": 1.0, + "content": "the nonzero positions and weights, which incurs additional storage requirements.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "title", + "bbox": [ + 107, + 378, + 337, + 389 + ], + "lines": [ + { + "bbox": [ + 106, + 377, + 338, + 390 + ], + "spans": [ + { + "bbox": [ + 106, + 377, + 338, + 390 + ], + "score": 1.0, + "content": "6.2 INFORMATION-EFFICIENT TRANSFER LEARNING", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 393, + 505, + 493 + ], + "lines": [ + { + "bbox": [ + 105, + 393, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 505, + 406 + ], + "score": 1.0, + "content": "Efficiently representing pretrained models adapted to new tasks is becoming an increasingly impor-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 405, + 501, + 418 + ], + "spans": [ + { + "bbox": [ + 106, + 405, + 501, + 418 + ], + "score": 1.0, + "content": "tant problem in contemporary NLP. This paper focuses on a rather narrow definition of efficiency—", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 415, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 505, + 429 + ], + "score": 1.0, + "content": "parameter-efficiency. An interesting direction might be to target generalizations of parameter-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 426, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 505, + 439 + ], + "score": 1.0, + "content": "efficiency, for example, information-efficiency, which aims to minimize the number of bits required", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 437, + 506, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 506, + 451 + ], + "score": 1.0, + "content": "to represent the task-specific model when given the pretrained model for free. This view can suggest", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 448, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 505, + 461 + ], + "score": 1.0, + "content": "other avenues for achieving information-efficient transfer learning: for example, “what is the min-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 460, + 505, + 472 + ], + "spans": [ + { + "bbox": [ + 106, + 460, + 505, + 472 + ], + "score": 1.0, + "content": "imum number of (potentially synthetic) datapoints that we can finetune BERT on to obtain a good", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 467, + 507, + 484 + ], + "spans": [ + { + "bbox": [ + 104, + 467, + 507, + 484 + ], + "score": 1.0, + "content": "task-specific model?”,16 or “what is the shortest prefix string that we can condition GPT3 on for it", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 481, + 268, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 268, + 494 + ], + "score": 1.0, + "content": "to become a good task-specific model”?", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 24 + }, + { + "type": "title", + "bbox": [ + 108, + 511, + 210, + 524 + ], + "lines": [ + { + "bbox": [ + 105, + 510, + 213, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 213, + 526 + ], + "score": 1.0, + "content": "7 RELATED WORK", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 539, + 505, + 713 + ], + "lines": [ + { + "bbox": [ + 105, + 537, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 505, + 551 + ], + "score": 1.0, + "content": "Multi-task learning Multi-task learning (Caruana, 1997), broadly construed, aims to learn models", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 550, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 505, + 562 + ], + "score": 1.0, + "content": "and representations that can be utilized across a diverse range of tasks, and offers a natural approach", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "score": 1.0, + "content": "to training parameter-efficient deep models. Several works have shown that a single BERT model", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 571, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 506, + 583 + ], + "score": 1.0, + "content": "can obtain good performance across multiple tasks when jointly trained (Liu et al., 2019b; Clark", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 582, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 506, + 595 + ], + "score": 1.0, + "content": "et al., 2019; Stickland & Murray, 2019). Adapter layers, which are task-specific layers that read and", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 593, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 593, + 506, + 606 + ], + "score": 1.0, + "content": "write to layers of a shared model (Rebuffi et al., 2018), offer an alternative approach to multi-task", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 604, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 106, + 604, + 505, + 616 + ], + "score": 1.0, + "content": "learning that does not require access to all tasks during training, and have also been applied to obtain", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 614, + 506, + 627 + ], + "spans": [ + { + "bbox": [ + 104, + 614, + 506, + 627 + ], + "score": 1.0, + "content": "parameter-efficient BERT models (Houlsby et al., 2019; Pfeiffer et al., 2020a;b;c). A related line of", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 626, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 639 + ], + "score": 1.0, + "content": "work targets extreme parameter-efficiency through task-agnostic sentence representations that can be", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 636, + 506, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 506, + 650 + ], + "score": 1.0, + "content": "used without finetuning for downstream tasks (Le & Mikolov, 2014; Kiros et al., 2015; Wieting et al.,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 647, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 647, + 505, + 661 + ], + "score": 1.0, + "content": "2016; Hill et al., 2016; Arora et al., 2017; Conneau et al., 2017; Cer et al., 2018; Zhang et al., 2018;", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 658, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 506, + 672 + ], + "score": 1.0, + "content": "Subramanian et al., 2018; Zhang et al., 2020). Reimers & Gurevych (2019), building on the earlier", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 669, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 505, + 682 + ], + "score": 1.0, + "content": "work of Conneau et al. (2017), show that BERT finetuned on natural language inference obtains", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 681, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 505, + 693 + ], + "score": 1.0, + "content": "sentence representations that perform well across multiple sentence-level tasks. These feature-based", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 691, + 506, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 506, + 705 + ], + "score": 1.0, + "content": "transfer learning methods are however generally outperformed by fully finetuned models (Howard", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 702, + 174, + 715 + ], + "spans": [ + { + "bbox": [ + 105, + 702, + 174, + 715 + ], + "score": 1.0, + "content": "& Ruder, 2018).", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 37.5 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 115, + 721, + 453, + 732 + ], + "lines": [ + { + "bbox": [ + 115, + 719, + 455, + 734 + ], + "spans": [ + { + "bbox": [ + 115, + 719, + 455, + 734 + ], + "score": 1.0, + "content": "16Dataset distillation (Wang et al., 2018) tackles this question in the context of vision models.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 106, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 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": "table", + "bbox": [ + 216, + 80, + 392, + 164 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 216, + 80, + 392, + 164 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 216, + 80, + 392, + 164 + ], + "spans": [ + { + "bbox": [ + 216, + 80, + 392, + 164 + ], + "score": 0.977, + "html": "
SparsityF1
Full finetuning Adapters100% 2%90.7% 90.4%
Full finetuning100%90.8%
Diff pruning1%92.1%
Diff pruning (struct.)1%93.2%
", + "type": "table", + "image_path": "4f39fcc11bdeb82064d1bfc004bd6998c756639a075f86e91f7cfa4d23221bd5.jpg" + } + ] + } + ], + "index": 2.5, + "virtual_lines": [ + { + "bbox": [ + 216, + 80, + 392, + 94.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 216, + 94.0, + 392, + 108.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 216, + 108.0, + 392, + 122.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 216, + 122.0, + 392, + 136.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 216, + 136.0, + 392, + 150.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 216, + 150.0, + 392, + 164.0 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 197, + 166, + 414, + 177 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 196, + 166, + 415, + 178 + ], + "spans": [ + { + "bbox": [ + 196, + 166, + 415, + 178 + ], + "score": 1.0, + "content": "Table 4: SQuAD validation results with BERTLARGE model.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + } + ], + "index": 4.25 + }, + { + "type": "text", + "bbox": [ + 107, + 200, + 505, + 222 + ], + "lines": [ + { + "bbox": [ + 105, + 199, + 506, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 298, + 213 + ], + "score": 1.0, + "content": "while modifying many fewer parameters (e.g.,", + "type": "text" + }, + { + "bbox": [ + 299, + 200, + 356, + 212 + ], + "score": 0.91, + "content": "1 0 0 \\% \\Rightarrow 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 199, + 506, + 213 + ], + "score": 1.0, + "content": "), which potentially implies that diff", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 212, + 296, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 296, + 224 + ], + "score": 1.0, + "content": "pruning can have a useful regularization effect.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 199, + 506, + 224 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 236, + 190, + 249 + ], + "lines": [ + { + "bbox": [ + 105, + 234, + 192, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 192, + 252 + ], + "score": 1.0, + "content": "6 DISCUSSION", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "title", + "bbox": [ + 107, + 257, + 243, + 268 + ], + "lines": [ + { + "bbox": [ + 106, + 257, + 244, + 270 + ], + "spans": [ + { + "bbox": [ + 106, + 257, + 244, + 270 + ], + "score": 1.0, + "content": "6.1 MEMORY REQUIREMENTS", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 273, + 505, + 339 + ], + "lines": [ + { + "bbox": [ + 105, + 273, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 505, + 285 + ], + "score": 1.0, + "content": "For training, our approach requires more memory than usual finetuning due to additionally opti-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 284, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 138, + 297 + ], + "score": 1.0, + "content": "mizing", + "type": "text" + }, + { + "bbox": [ + 138, + 285, + 152, + 295 + ], + "score": 0.86, + "content": "\\pmb { \\alpha } _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 284, + 172, + 297 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 173, + 285, + 187, + 295 + ], + "score": 0.87, + "content": "{ \\bf w } _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 284, + 505, + 297 + ], + "score": 1.0, + "content": ". This did not present a significant challenge for pretrained models that we", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 295, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 505, + 308 + ], + "score": 1.0, + "content": "experimented with in this study, since majority of GPU memory was utilized by the minibatch’s", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 306, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 505, + 318 + ], + "score": 1.0, + "content": "activation layers. However, this could present an issue as model sizes get larger and larger. While", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 317, + 504, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 482, + 329 + ], + "score": 1.0, + "content": "training efficiency was not a primary concern of this work, diff pruning takes approxiamtely", + "type": "text" + }, + { + "bbox": [ + 482, + 317, + 504, + 328 + ], + "score": 0.85, + "content": "1 . 5 \\times", + "type": "inline_equation" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 327, + 347, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 116, + 341 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 117, + 328, + 131, + 338 + ], + "score": 0.86, + "content": "2 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 327, + 347, + 341 + ], + "score": 1.0, + "content": "more time per batch, which results in slower training.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 273, + 505, + 341 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 344, + 504, + 367 + ], + "lines": [ + { + "bbox": [ + 106, + 344, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 505, + 357 + ], + "score": 1.0, + "content": "After training, storing the task-specific diff vector requires storing a compressed version with both", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 355, + 431, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 431, + 369 + ], + "score": 1.0, + "content": "the nonzero positions and weights, which incurs additional storage requirements.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 344, + 505, + 369 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 378, + 337, + 389 + ], + "lines": [ + { + "bbox": [ + 106, + 377, + 338, + 390 + ], + "spans": [ + { + "bbox": [ + 106, + 377, + 338, + 390 + ], + "score": 1.0, + "content": "6.2 INFORMATION-EFFICIENT TRANSFER LEARNING", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 393, + 505, + 493 + ], + "lines": [ + { + "bbox": [ + 105, + 393, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 505, + 406 + ], + "score": 1.0, + "content": "Efficiently representing pretrained models adapted to new tasks is becoming an increasingly impor-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 405, + 501, + 418 + ], + "spans": [ + { + "bbox": [ + 106, + 405, + 501, + 418 + ], + "score": 1.0, + "content": "tant problem in contemporary NLP. This paper focuses on a rather narrow definition of efficiency—", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 415, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 505, + 429 + ], + "score": 1.0, + "content": "parameter-efficiency. An interesting direction might be to target generalizations of parameter-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 426, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 505, + 439 + ], + "score": 1.0, + "content": "efficiency, for example, information-efficiency, which aims to minimize the number of bits required", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 437, + 506, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 506, + 451 + ], + "score": 1.0, + "content": "to represent the task-specific model when given the pretrained model for free. This view can suggest", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 448, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 505, + 461 + ], + "score": 1.0, + "content": "other avenues for achieving information-efficient transfer learning: for example, “what is the min-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 460, + 505, + 472 + ], + "spans": [ + { + "bbox": [ + 106, + 460, + 505, + 472 + ], + "score": 1.0, + "content": "imum number of (potentially synthetic) datapoints that we can finetune BERT on to obtain a good", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 467, + 507, + 484 + ], + "spans": [ + { + "bbox": [ + 104, + 467, + 507, + 484 + ], + "score": 1.0, + "content": "task-specific model?”,16 or “what is the shortest prefix string that we can condition GPT3 on for it", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 481, + 268, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 268, + 494 + ], + "score": 1.0, + "content": "to become a good task-specific model”?", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 24, + "bbox_fs": [ + 104, + 393, + 507, + 494 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 511, + 210, + 524 + ], + "lines": [ + { + "bbox": [ + 105, + 510, + 213, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 213, + 526 + ], + "score": 1.0, + "content": "7 RELATED WORK", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 539, + 505, + 713 + ], + "lines": [ + { + "bbox": [ + 105, + 537, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 505, + 551 + ], + "score": 1.0, + "content": "Multi-task learning Multi-task learning (Caruana, 1997), broadly construed, aims to learn models", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 550, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 505, + 562 + ], + "score": 1.0, + "content": "and representations that can be utilized across a diverse range of tasks, and offers a natural approach", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "score": 1.0, + "content": "to training parameter-efficient deep models. Several works have shown that a single BERT model", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 571, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 506, + 583 + ], + "score": 1.0, + "content": "can obtain good performance across multiple tasks when jointly trained (Liu et al., 2019b; Clark", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 582, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 506, + 595 + ], + "score": 1.0, + "content": "et al., 2019; Stickland & Murray, 2019). Adapter layers, which are task-specific layers that read and", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 593, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 593, + 506, + 606 + ], + "score": 1.0, + "content": "write to layers of a shared model (Rebuffi et al., 2018), offer an alternative approach to multi-task", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 604, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 106, + 604, + 505, + 616 + ], + "score": 1.0, + "content": "learning that does not require access to all tasks during training, and have also been applied to obtain", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 614, + 506, + 627 + ], + "spans": [ + { + "bbox": [ + 104, + 614, + 506, + 627 + ], + "score": 1.0, + "content": "parameter-efficient BERT models (Houlsby et al., 2019; Pfeiffer et al., 2020a;b;c). A related line of", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 626, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 639 + ], + "score": 1.0, + "content": "work targets extreme parameter-efficiency through task-agnostic sentence representations that can be", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 636, + 506, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 506, + 650 + ], + "score": 1.0, + "content": "used without finetuning for downstream tasks (Le & Mikolov, 2014; Kiros et al., 2015; Wieting et al.,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 647, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 647, + 505, + 661 + ], + "score": 1.0, + "content": "2016; Hill et al., 2016; Arora et al., 2017; Conneau et al., 2017; Cer et al., 2018; Zhang et al., 2018;", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 658, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 506, + 672 + ], + "score": 1.0, + "content": "Subramanian et al., 2018; Zhang et al., 2020). Reimers & Gurevych (2019), building on the earlier", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 669, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 505, + 682 + ], + "score": 1.0, + "content": "work of Conneau et al. (2017), show that BERT finetuned on natural language inference obtains", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 681, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 505, + 693 + ], + "score": 1.0, + "content": "sentence representations that perform well across multiple sentence-level tasks. These feature-based", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 691, + 506, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 506, + 705 + ], + "score": 1.0, + "content": "transfer learning methods are however generally outperformed by fully finetuned models (Howard", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 702, + 174, + 715 + ], + "spans": [ + { + "bbox": [ + 105, + 702, + 174, + 715 + ], + "score": 1.0, + "content": "& Ruder, 2018).", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 37.5, + "bbox_fs": [ + 104, + 537, + 506, + 715 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 159 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "Model compression There has been much recent work on compressing pretrained trained with", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 107 + ], + "score": 1.0, + "content": "self-supervision (see Ganesh et al. (2020) for a recent survey). A particularly promising line of", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "work focuses on obtaining smaller pretrained models (for subsequent finetuning) through weight", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "pruning (Gordon et al., 2020; Sajjad et al., 2020; Chen et al., 2020) and/or knowledge distillation", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 125, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 506, + 140 + ], + "score": 1.0, + "content": "(Sanh et al., 2019; Sun et al., 2019; Turc et al., 2019; Jiao et al., 2019; Sun et al., 2020). It would be", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "interesting to see whether our approach can be applied on top of these smaller pretrained models to", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 149, + 258, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 258, + 162 + ], + "score": 1.0, + "content": "for even greater parameter-efficiency.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 167, + 505, + 221 + ], + "lines": [ + { + "bbox": [ + 106, + 167, + 505, + 179 + ], + "spans": [ + { + "bbox": [ + 106, + 167, + 505, + 179 + ], + "score": 1.0, + "content": "Learning to prune Our work is closely related to the line of work on learning to prune pretrained", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 177, + 505, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 505, + 190 + ], + "score": 1.0, + "content": "models with differentiable relaxations of binary masks (Wang et al., 2019b; Zhao et al., 2020; Sanh", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 189, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 505, + 200 + ], + "score": 1.0, + "content": "et al., 2020; Radiya-Dixit & Wang, 2020). While these works also enable parameter-efficient transfer", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 199, + 505, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 505, + 212 + ], + "score": 1.0, + "content": "learning, they generally apply the masks directly on the pretrained parameters instead of on the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 211, + 268, + 223 + ], + "spans": [ + { + "bbox": [ + 106, + 211, + 268, + 223 + ], + "score": 1.0, + "content": "difference vector as in the present work.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 228, + 505, + 284 + ], + "lines": [ + { + "bbox": [ + 106, + 228, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 106, + 228, + 505, + 241 + ], + "score": 1.0, + "content": "Regularization towards pretrained models Finally, diff pruning is also related to works which", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 240, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 505, + 252 + ], + "score": 1.0, + "content": "regularize the learning process towards pretrained models for continual learning (Kirkpatrick et al.,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 249, + 506, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 506, + 264 + ], + "score": 1.0, + "content": "2017; Schwarz et al., 2018), domain adaptation (Wiese et al., 2017; Miceli Barone et al., 2017),", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 261, + 505, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 505, + 275 + ], + "score": 1.0, + "content": "and stable finetuning (Lee et al., 2020). These works typically do not utilize sparse regularizers and", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 271, + 300, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 300, + 287 + ], + "score": 1.0, + "content": "target a different goal than parameter-efficiency.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14 + }, + { + "type": "title", + "bbox": [ + 108, + 300, + 195, + 313 + ], + "lines": [ + { + "bbox": [ + 104, + 297, + 198, + 317 + ], + "spans": [ + { + "bbox": [ + 104, + 297, + 198, + 317 + ], + "score": 1.0, + "content": "8 CONCLUSION", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 325, + 505, + 414 + ], + "lines": [ + { + "bbox": [ + 105, + 326, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 505, + 339 + ], + "score": 1.0, + "content": "We propose diff pruning as a simple approach for parameter-efficient transfer learning with pre-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 336, + 505, + 350 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 505, + 350 + ], + "score": 1.0, + "content": "trained models. Experiments on standard NLP benchmarks and models show that diff pruning can", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 348, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 505, + 361 + ], + "score": 1.0, + "content": "match the performance of fully finetuned baselines while requiring only a few additional parameters", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 358, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 505, + 371 + ], + "score": 1.0, + "content": "per task. We also propose a structured variant of diff pruning which provides further improvements.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 369, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 505, + 383 + ], + "score": 1.0, + "content": "Future work will consider (i) applying this approach to other architectures (e.g. ConvNets for vi-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 380, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 506, + 394 + ], + "score": 1.0, + "content": "sion applications), (ii) injecting parameter-efficiency objectives directly into the pretraining process", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 391, + 506, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 506, + 404 + ], + "score": 1.0, + "content": "(to pretrain models that are better suited towards sparse transfer learning), and (iii) combining diff", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 402, + 468, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 468, + 417 + ], + "score": 1.0, + "content": "pruning with other techniques (e.g. adapters) to achieve even greater parameter-efficiency.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 21.5 + }, + { + "type": "title", + "bbox": [ + 108, + 431, + 175, + 443 + ], + "lines": [ + { + "bbox": [ + 106, + 432, + 176, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 176, + 443 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 450, + 504, + 472 + ], + "lines": [ + { + "bbox": [ + 106, + 449, + 506, + 463 + ], + "spans": [ + { + "bbox": [ + 106, + 449, + 506, + 463 + ], + "score": 1.0, + "content": "Sanjeev Arora, Yingyu Liang, and Tengyu Ma. A Simple but Tough-to-Beat Baseline for Sentence", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 460, + 300, + 473 + ], + "spans": [ + { + "bbox": [ + 115, + 460, + 300, + 473 + ], + "score": 1.0, + "content": "Embeddings . In Proceedings of ICLR, 2017.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 108, + 480, + 505, + 546 + ], + "lines": [ + { + "bbox": [ + 106, + 480, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 505, + 492 + ], + "score": 1.0, + "content": "Tom B. Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, Prafulla Dhari-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 491, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 115, + 491, + 505, + 504 + ], + "score": 1.0, + "content": "wal, Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, Sandhini Agarwal,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 502, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 116, + 502, + 505, + 515 + ], + "score": 1.0, + "content": "Ariel Herbert-Voss, Gretchen Krueger, Tom Henighan, Rewon Child, Aditya Ramesh, Daniel M.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 513, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 115, + 513, + 505, + 526 + ], + "score": 1.0, + "content": "Ziegler, Jeffrey Wu, Clemens Winter, Christopher Hesse, Mark Chen, Eric Sigler, Mateusz Litwin,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 524, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 115, + 524, + 505, + 537 + ], + "score": 1.0, + "content": "Scott Gray, Benjamin Chess, Jack Clark, Christopher Berner, Sam McCandlish, Alec Radford,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 535, + 453, + 547 + ], + "spans": [ + { + "bbox": [ + 115, + 535, + 453, + 547 + ], + "score": 1.0, + "content": "Ilya Sutskever, and Dario Amodei. Language Models are Few-Shot Learners. 2020.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 106, + 554, + 352, + 565 + ], + "lines": [ + { + "bbox": [ + 105, + 553, + 353, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 353, + 568 + ], + "score": 1.0, + "content": "Rich Caruana. Multitask Learning. Machine Learning, 1997.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 574, + 505, + 607 + ], + "lines": [ + { + "bbox": [ + 106, + 573, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 505, + 587 + ], + "score": 1.0, + "content": "Daniel Cer, Yinfei Yang, Sheng-yi Kong, Nan Hua, Nicole Limtiaco, Rhomni St. John, Noah Con-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 117, + 585, + 504, + 597 + ], + "spans": [ + { + "bbox": [ + 117, + 585, + 504, + 597 + ], + "score": 1.0, + "content": "stant, Mario Guajardo-Cespedes, Steve Yuan, Chris Tar, Brian Strope, and Ray Kurzweil. Uni-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 596, + 499, + 608 + ], + "spans": [ + { + "bbox": [ + 116, + 596, + 499, + 608 + ], + "score": 1.0, + "content": "versal sentence encoder for English. In Proceedings of EMNLP: System Demonstrations, 2018.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 615, + 504, + 649 + ], + "lines": [ + { + "bbox": [ + 105, + 613, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 505, + 629 + ], + "score": 1.0, + "content": "Tianlong Chen, Jonathan Frankle, Shiyu Chang, Sijia Liu, Yang Zhang, Zhangyang Wang,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 626, + 504, + 638 + ], + "spans": [ + { + "bbox": [ + 116, + 626, + 504, + 638 + ], + "score": 1.0, + "content": "and Michael Carbin. The Lottery Ticket Hypothesis for Pre-trained BERT Networks.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 637, + 219, + 649 + ], + "spans": [ + { + "bbox": [ + 115, + 637, + 219, + 649 + ], + "score": 1.0, + "content": "arXiv:2007.12223, 2020.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 106, + 657, + 504, + 690 + ], + "lines": [ + { + "bbox": [ + 105, + 656, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 505, + 670 + ], + "score": 1.0, + "content": "Kevin Clark, Minh-Thang Luong, Urvashi Khandelwal, Christopher D. Manning, and Quoc V. Le.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 667, + 506, + 681 + ], + "spans": [ + { + "bbox": [ + 115, + 667, + 506, + 681 + ], + "score": 1.0, + "content": "BAM! Born-Again Multi-Task Networks for Natural Language Understanding. In Proceedings", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 678, + 175, + 691 + ], + "spans": [ + { + "bbox": [ + 115, + 678, + 175, + 691 + ], + "score": 1.0, + "content": "of ACL, 2019.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "Alexis Conneau, Douwe Kiela, Holger Schwenk, Loic Barrault, and Antoine Bordes. Supervised", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 116, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 116, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "Learning of Universal Sentence Representations from Natural Language Inference Data. In Pro-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 115, + 721, + 227, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 227, + 732 + ], + "score": 1.0, + "content": "ceedings of EMNLP, 2017.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46 + } + ], + "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, + 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, + 159 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "Model compression There has been much recent work on compressing pretrained trained with", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 107 + ], + "score": 1.0, + "content": "self-supervision (see Ganesh et al. (2020) for a recent survey). A particularly promising line of", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "work focuses on obtaining smaller pretrained models (for subsequent finetuning) through weight", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "pruning (Gordon et al., 2020; Sajjad et al., 2020; Chen et al., 2020) and/or knowledge distillation", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 125, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 506, + 140 + ], + "score": 1.0, + "content": "(Sanh et al., 2019; Sun et al., 2019; Turc et al., 2019; Jiao et al., 2019; Sun et al., 2020). It would be", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "interesting to see whether our approach can be applied on top of these smaller pretrained models to", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 149, + 258, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 258, + 162 + ], + "score": 1.0, + "content": "for even greater parameter-efficiency.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 82, + 506, + 162 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 167, + 505, + 221 + ], + "lines": [ + { + "bbox": [ + 106, + 167, + 505, + 179 + ], + "spans": [ + { + "bbox": [ + 106, + 167, + 505, + 179 + ], + "score": 1.0, + "content": "Learning to prune Our work is closely related to the line of work on learning to prune pretrained", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 177, + 505, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 505, + 190 + ], + "score": 1.0, + "content": "models with differentiable relaxations of binary masks (Wang et al., 2019b; Zhao et al., 2020; Sanh", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 189, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 505, + 200 + ], + "score": 1.0, + "content": "et al., 2020; Radiya-Dixit & Wang, 2020). While these works also enable parameter-efficient transfer", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 199, + 505, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 505, + 212 + ], + "score": 1.0, + "content": "learning, they generally apply the masks directly on the pretrained parameters instead of on the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 211, + 268, + 223 + ], + "spans": [ + { + "bbox": [ + 106, + 211, + 268, + 223 + ], + "score": 1.0, + "content": "difference vector as in the present work.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 167, + 505, + 223 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 228, + 505, + 284 + ], + "lines": [ + { + "bbox": [ + 106, + 228, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 106, + 228, + 505, + 241 + ], + "score": 1.0, + "content": "Regularization towards pretrained models Finally, diff pruning is also related to works which", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 240, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 505, + 252 + ], + "score": 1.0, + "content": "regularize the learning process towards pretrained models for continual learning (Kirkpatrick et al.,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 249, + 506, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 506, + 264 + ], + "score": 1.0, + "content": "2017; Schwarz et al., 2018), domain adaptation (Wiese et al., 2017; Miceli Barone et al., 2017),", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 261, + 505, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 505, + 275 + ], + "score": 1.0, + "content": "and stable finetuning (Lee et al., 2020). These works typically do not utilize sparse regularizers and", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 271, + 300, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 300, + 287 + ], + "score": 1.0, + "content": "target a different goal than parameter-efficiency.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 228, + 506, + 287 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 300, + 195, + 313 + ], + "lines": [ + { + "bbox": [ + 104, + 297, + 198, + 317 + ], + "spans": [ + { + "bbox": [ + 104, + 297, + 198, + 317 + ], + "score": 1.0, + "content": "8 CONCLUSION", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 325, + 505, + 414 + ], + "lines": [ + { + "bbox": [ + 105, + 326, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 505, + 339 + ], + "score": 1.0, + "content": "We propose diff pruning as a simple approach for parameter-efficient transfer learning with pre-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 336, + 505, + 350 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 505, + 350 + ], + "score": 1.0, + "content": "trained models. Experiments on standard NLP benchmarks and models show that diff pruning can", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 348, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 505, + 361 + ], + "score": 1.0, + "content": "match the performance of fully finetuned baselines while requiring only a few additional parameters", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 358, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 505, + 371 + ], + "score": 1.0, + "content": "per task. We also propose a structured variant of diff pruning which provides further improvements.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 369, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 505, + 383 + ], + "score": 1.0, + "content": "Future work will consider (i) applying this approach to other architectures (e.g. ConvNets for vi-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 380, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 506, + 394 + ], + "score": 1.0, + "content": "sion applications), (ii) injecting parameter-efficiency objectives directly into the pretraining process", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 391, + 506, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 506, + 404 + ], + "score": 1.0, + "content": "(to pretrain models that are better suited towards sparse transfer learning), and (iii) combining diff", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 402, + 468, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 468, + 417 + ], + "score": 1.0, + "content": "pruning with other techniques (e.g. adapters) to achieve even greater parameter-efficiency.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 326, + 506, + 417 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 431, + 175, + 443 + ], + "lines": [ + { + "bbox": [ + 106, + 432, + 176, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 176, + 443 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 450, + 504, + 472 + ], + "lines": [ + { + "bbox": [ + 106, + 449, + 506, + 463 + ], + "spans": [ + { + "bbox": [ + 106, + 449, + 506, + 463 + ], + "score": 1.0, + "content": "Sanjeev Arora, Yingyu Liang, and Tengyu Ma. A Simple but Tough-to-Beat Baseline for Sentence", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 460, + 300, + 473 + ], + "spans": [ + { + "bbox": [ + 115, + 460, + 300, + 473 + ], + "score": 1.0, + "content": "Embeddings . In Proceedings of ICLR, 2017.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 106, + 449, + 506, + 473 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 480, + 505, + 546 + ], + "lines": [ + { + "bbox": [ + 106, + 480, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 505, + 492 + ], + "score": 1.0, + "content": "Tom B. Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, Prafulla Dhari-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 491, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 115, + 491, + 505, + 504 + ], + "score": 1.0, + "content": "wal, Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, Sandhini Agarwal,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 502, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 116, + 502, + 505, + 515 + ], + "score": 1.0, + "content": "Ariel Herbert-Voss, Gretchen Krueger, Tom Henighan, Rewon Child, Aditya Ramesh, Daniel M.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 513, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 115, + 513, + 505, + 526 + ], + "score": 1.0, + "content": "Ziegler, Jeffrey Wu, Clemens Winter, Christopher Hesse, Mark Chen, Eric Sigler, Mateusz Litwin,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 524, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 115, + 524, + 505, + 537 + ], + "score": 1.0, + "content": "Scott Gray, Benjamin Chess, Jack Clark, Christopher Berner, Sam McCandlish, Alec Radford,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 535, + 453, + 547 + ], + "spans": [ + { + "bbox": [ + 115, + 535, + 453, + 547 + ], + "score": 1.0, + "content": "Ilya Sutskever, and Dario Amodei. Language Models are Few-Shot Learners. 2020.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5, + "bbox_fs": [ + 106, + 480, + 505, + 547 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 554, + 352, + 565 + ], + "lines": [ + { + "bbox": [ + 105, + 553, + 353, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 353, + 568 + ], + "score": 1.0, + "content": "Rich Caruana. Multitask Learning. Machine Learning, 1997.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 553, + 353, + 568 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 574, + 505, + 607 + ], + "lines": [ + { + "bbox": [ + 106, + 573, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 505, + 587 + ], + "score": 1.0, + "content": "Daniel Cer, Yinfei Yang, Sheng-yi Kong, Nan Hua, Nicole Limtiaco, Rhomni St. John, Noah Con-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 117, + 585, + 504, + 597 + ], + "spans": [ + { + "bbox": [ + 117, + 585, + 504, + 597 + ], + "score": 1.0, + "content": "stant, Mario Guajardo-Cespedes, Steve Yuan, Chris Tar, Brian Strope, and Ray Kurzweil. Uni-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 596, + 499, + 608 + ], + "spans": [ + { + "bbox": [ + 116, + 596, + 499, + 608 + ], + "score": 1.0, + "content": "versal sentence encoder for English. In Proceedings of EMNLP: System Demonstrations, 2018.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37, + "bbox_fs": [ + 106, + 573, + 505, + 608 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 615, + 504, + 649 + ], + "lines": [ + { + "bbox": [ + 105, + 613, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 505, + 629 + ], + "score": 1.0, + "content": "Tianlong Chen, Jonathan Frankle, Shiyu Chang, Sijia Liu, Yang Zhang, Zhangyang Wang,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 626, + 504, + 638 + ], + "spans": [ + { + "bbox": [ + 116, + 626, + 504, + 638 + ], + "score": 1.0, + "content": "and Michael Carbin. The Lottery Ticket Hypothesis for Pre-trained BERT Networks.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 637, + 219, + 649 + ], + "spans": [ + { + "bbox": [ + 115, + 637, + 219, + 649 + ], + "score": 1.0, + "content": "arXiv:2007.12223, 2020.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 613, + 505, + 649 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 657, + 504, + 690 + ], + "lines": [ + { + "bbox": [ + 105, + 656, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 505, + 670 + ], + "score": 1.0, + "content": "Kevin Clark, Minh-Thang Luong, Urvashi Khandelwal, Christopher D. Manning, and Quoc V. Le.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 667, + 506, + 681 + ], + "spans": [ + { + "bbox": [ + 115, + 667, + 506, + 681 + ], + "score": 1.0, + "content": "BAM! Born-Again Multi-Task Networks for Natural Language Understanding. In Proceedings", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 678, + 175, + 691 + ], + "spans": [ + { + "bbox": [ + 115, + 678, + 175, + 691 + ], + "score": 1.0, + "content": "of ACL, 2019.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 656, + 506, + 691 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "Alexis Conneau, Douwe Kiela, Holger Schwenk, Loic Barrault, and Antoine Bordes. Supervised", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 116, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 116, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "Learning of Universal Sentence Representations from Natural Language Inference Data. In Pro-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 115, + 721, + 227, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 227, + 732 + ], + "score": 1.0, + "content": "ceedings of EMNLP, 2017.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46, + "bbox_fs": [ + 106, + 699, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 82, + 503, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 503, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 503, + 96 + ], + "score": 1.0, + "content": "Andrew Dai and Quoc V. Le. Semi-Supervised Sequence Learning. In Proceedings of NIPS, 2015.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 101, + 502, + 124 + ], + "lines": [ + { + "bbox": [ + 105, + 99, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 505, + 115 + ], + "score": 1.0, + "content": "Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. BERT: Pre-training of Deep", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 111, + 481, + 124 + ], + "spans": [ + { + "bbox": [ + 115, + 111, + 481, + 124 + ], + "score": 1.0, + "content": "Bidirectional Transformers for Language Understanding. In Proceedings of NAACL, 2019.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 106, + 130, + 503, + 153 + ], + "lines": [ + { + "bbox": [ + 105, + 129, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 129, + 505, + 145 + ], + "score": 1.0, + "content": "Fangxiaoyu Feng, Yinfei Yang, Daniel Cer, Naveen Arivazhagan, and Wei Wang. Language-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 141, + 372, + 153 + ], + "spans": [ + { + "bbox": [ + 115, + 141, + 372, + 153 + ], + "score": 1.0, + "content": "agnostic BERT Sentence Embedding. arXiv:2007.01852, 2020.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 106, + 159, + 504, + 183 + ], + "lines": [ + { + "bbox": [ + 105, + 158, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 506, + 173 + ], + "score": 1.0, + "content": "Robert French. Catastrophic forgetting in connectionist networks. Trends in cognitive sciences, 3,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 170, + 142, + 183 + ], + "spans": [ + { + "bbox": [ + 116, + 170, + 142, + 183 + ], + "score": 1.0, + "content": "1999.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 106, + 189, + 504, + 223 + ], + "lines": [ + { + "bbox": [ + 105, + 189, + 505, + 202 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 505, + 202 + ], + "score": 1.0, + "content": "Prakhar Ganesh, Yao Chen, Xin Lou, Mohammad Ali Khan, Yin Yang, Deming Chen, Marianne", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 117, + 200, + 504, + 212 + ], + "spans": [ + { + "bbox": [ + 117, + 200, + 504, + 212 + ], + "score": 1.0, + "content": "Winslett, Hassan Sajjad, and Preslav Nakov. Compressing Large-Scale Transformer-Based Mod-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 212, + 336, + 223 + ], + "spans": [ + { + "bbox": [ + 115, + 212, + 336, + 223 + ], + "score": 1.0, + "content": "els: A Case Study on BERT. arXiv:2002.11985, 2020.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 229, + 505, + 263 + ], + "lines": [ + { + "bbox": [ + 105, + 229, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 229, + 505, + 243 + ], + "score": 1.0, + "content": "Mitchell A. Gordon, Kevin Duh, and Nicholas Andrews. Compressing BERT: Studying the Effects", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 241, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 115, + 241, + 506, + 254 + ], + "score": 1.0, + "content": "of Weight Pruning on Transfer Learning. In Proceedings of Rep4NLP 2020 Workshop at ACL", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 251, + 166, + 264 + ], + "spans": [ + { + "bbox": [ + 115, + 251, + 166, + 264 + ], + "score": 1.0, + "content": "2020, 2020.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 105, + 270, + 504, + 294 + ], + "lines": [ + { + "bbox": [ + 106, + 271, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 505, + 284 + ], + "score": 1.0, + "content": "Song Han, Huizi Mao, and William J. Dally. Deep Compression: Compressing Deep Neural Net-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 281, + 502, + 294 + ], + "spans": [ + { + "bbox": [ + 116, + 281, + 502, + 294 + ], + "score": 1.0, + "content": "works with Pruning, Trained Quantization and Huffman Coding. In Proceedings of ICLR, 2016.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 105, + 300, + 504, + 323 + ], + "lines": [ + { + "bbox": [ + 105, + 299, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 505, + 313 + ], + "score": 1.0, + "content": "Felix Hill, Kyunghyun Cho, and Anna Korhonen. Learning distributed representations of sentences", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 311, + 325, + 323 + ], + "spans": [ + { + "bbox": [ + 115, + 311, + 325, + 323 + ], + "score": 1.0, + "content": "from unlabelled data. In Proceedings of ACL, 2016.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 106, + 329, + 504, + 363 + ], + "lines": [ + { + "bbox": [ + 106, + 329, + 504, + 342 + ], + "spans": [ + { + "bbox": [ + 106, + 329, + 504, + 342 + ], + "score": 1.0, + "content": "Neil Houlsby, Andrei Giurgiu, Stanislaw Jastrzebski, Bruna Morrone, Quentin de Laroussilhe, An-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 340, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 116, + 340, + 505, + 353 + ], + "score": 1.0, + "content": "drea Gesmundo, and Mona Attariyanand Sylvain Gelly. Parameter-efficient transfer learning for", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 352, + 262, + 364 + ], + "spans": [ + { + "bbox": [ + 116, + 352, + 262, + 364 + ], + "score": 1.0, + "content": "nlp. In Proceedings of ICML, 2019.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 104, + 370, + 504, + 393 + ], + "lines": [ + { + "bbox": [ + 105, + 369, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 505, + 383 + ], + "score": 1.0, + "content": "Jeremy Howard and Sebastian Ruder. Universal Language Model Fine-tuning for Text Classifica-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 381, + 259, + 393 + ], + "spans": [ + { + "bbox": [ + 115, + 381, + 259, + 393 + ], + "score": 1.0, + "content": "tion. In Proceedings of ACL, 2018.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 105, + 399, + 504, + 423 + ], + "lines": [ + { + "bbox": [ + 105, + 398, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 505, + 413 + ], + "score": 1.0, + "content": "Eric Jang, Shixiang Gu, and Ben Poole. Categorical Reparameterization with Gumbel-Softmax. In", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 410, + 231, + 423 + ], + "spans": [ + { + "bbox": [ + 116, + 410, + 231, + 423 + ], + "score": 1.0, + "content": "Proceedings of ICLR, 2017.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 106, + 429, + 504, + 452 + ], + "lines": [ + { + "bbox": [ + 106, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 505, + 442 + ], + "score": 1.0, + "content": "Xiaoqi Jiao, Yichun Yin, Lifeng Shang, Xin Jiang, Xiao Chen, Linlin Li, Fang Wang, and Qun Liu.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 117, + 440, + 487, + 453 + ], + "spans": [ + { + "bbox": [ + 117, + 440, + 487, + 453 + ], + "score": 1.0, + "content": "TinyBERT: Distilling BERT for Natural Language Understanding. arXiv:1909.10351, 2019.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 106, + 458, + 505, + 504 + ], + "lines": [ + { + "bbox": [ + 105, + 458, + 505, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 505, + 472 + ], + "score": 1.0, + "content": "James Kirkpatrick, Razvan Pascanu, Neil Rabinowitz, Joel Veness, Guillaume Desjardins, Andrei A.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 470, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 116, + 470, + 505, + 482 + ], + "score": 1.0, + "content": "Rusu, Kieran Milan, John Quan, Tiago Ramalho, Agnieszka Grabska-Barwinska, Demis Hass-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 480, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 115, + 480, + 505, + 495 + ], + "score": 1.0, + "content": "abis, Claudia Clopath, Dharshan Kumaran, and Raia Hadsell. Overcoming catastrophic forgetting", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 492, + 487, + 505 + ], + "spans": [ + { + "bbox": [ + 115, + 492, + 487, + 505 + ], + "score": 1.0, + "content": "in neural networks. Proceedings of the National Academy of Sciences, 14:3521–3526, 2017.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 106, + 510, + 502, + 533 + ], + "lines": [ + { + "bbox": [ + 107, + 511, + 502, + 523 + ], + "spans": [ + { + "bbox": [ + 107, + 511, + 502, + 523 + ], + "score": 1.0, + "content": "Ryan Kiros, Yukun Zhu, Ruslan Salakhutdinov, Richard S. Zemel, Antonio Torralba, Raquel Urta", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 521, + 437, + 534 + ], + "spans": [ + { + "bbox": [ + 115, + 521, + 437, + 534 + ], + "score": 1.0, + "content": "sun, and Sanja Fidler. Skip-Thought Vectors. In Proceedings of NeurIPS, 2015.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 107, + 539, + 504, + 573 + ], + "lines": [ + { + "bbox": [ + 105, + 539, + 505, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 505, + 553 + ], + "score": 1.0, + "content": "Zhenzhong Lan, Mingda Chen, Sebastian Goodman, Kevin Gimpel, Piyush Sharma, and Radu Sori-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 550, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 115, + 550, + 505, + 564 + ], + "score": 1.0, + "content": "cut. ALBERT: A Lite BERT for Self-supervised Learning of Language Representations. In", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 562, + 230, + 574 + ], + "spans": [ + { + "bbox": [ + 116, + 562, + 230, + 574 + ], + "score": 1.0, + "content": "Proceedings of ICLR, 2020.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 106, + 579, + 503, + 603 + ], + "lines": [ + { + "bbox": [ + 106, + 580, + 505, + 593 + ], + "spans": [ + { + "bbox": [ + 106, + 580, + 505, + 593 + ], + "score": 1.0, + "content": "Quoc V. Le and Tomas Mikolov. Distributed Representations of Sentences and Documents. In", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 591, + 233, + 604 + ], + "spans": [ + { + "bbox": [ + 115, + 591, + 233, + 604 + ], + "score": 1.0, + "content": "Proceedings of ICML, 2014.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 106, + 609, + 502, + 633 + ], + "lines": [ + { + "bbox": [ + 106, + 609, + 504, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 504, + 622 + ], + "score": 1.0, + "content": "Cheolhyoung Lee, Kyunghyun Cho, and Wanmo Kang. Mixout: Effective Regularization to Fine-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 621, + 430, + 633 + ], + "spans": [ + { + "bbox": [ + 115, + 621, + 430, + 633 + ], + "score": 1.0, + "content": "tune Large-scale Pretrained Language Models. In Proceedings of ICLR, 2020.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 107, + 639, + 504, + 673 + ], + "lines": [ + { + "bbox": [ + 105, + 638, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 505, + 653 + ], + "score": 1.0, + "content": "Sang-Woo Lee, Jin-Hwa Kim, Jaehyun Jun, Jung-Woo Ha, and Byoung-Tak Zhang. Overcoming", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 651, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 116, + 651, + 505, + 663 + ], + "score": 1.0, + "content": "catastrophic forgetting by incremental moment matching. In Advances in Neural Information", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 661, + 225, + 674 + ], + "spans": [ + { + "bbox": [ + 115, + 661, + 225, + 674 + ], + "score": 1.0, + "content": "Processing Systems. 2017.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 106, + 680, + 503, + 703 + ], + "lines": [ + { + "bbox": [ + 105, + 679, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 505, + 693 + ], + "score": 1.0, + "content": "Nelson F. Liu, Matt Gardner, Yonatan Belinkov, Matthew E. Peters, and Noah A. Smith. Linguistic", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 691, + 494, + 704 + ], + "spans": [ + { + "bbox": [ + 116, + 691, + 494, + 704 + ], + "score": 1.0, + "content": "Knowledge and Transferability of Contextual Representations. In Proceedings of ACL, 2019a.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Xiaodong Liu, Pengcheng He, Weizhu Chen, and Jianfeng Gao. Multi-Task Deep Neural Networks", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 116, + 720, + 396, + 733 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 396, + 733 + ], + "score": 1.0, + "content": "for Natural Language Understanding. In Proceedings of ACL, 2019b.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 106, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 82, + 503, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 503, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 503, + 96 + ], + "score": 1.0, + "content": "Andrew Dai and Quoc V. Le. Semi-Supervised Sequence Learning. In Proceedings of NIPS, 2015.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 80, + 503, + 96 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 101, + 502, + 124 + ], + "lines": [ + { + "bbox": [ + 105, + 99, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 505, + 115 + ], + "score": 1.0, + "content": "Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. BERT: Pre-training of Deep", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 111, + 481, + 124 + ], + "spans": [ + { + "bbox": [ + 115, + 111, + 481, + 124 + ], + "score": 1.0, + "content": "Bidirectional Transformers for Language Understanding. In Proceedings of NAACL, 2019.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 99, + 505, + 124 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 130, + 503, + 153 + ], + "lines": [ + { + "bbox": [ + 105, + 129, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 129, + 505, + 145 + ], + "score": 1.0, + "content": "Fangxiaoyu Feng, Yinfei Yang, Daniel Cer, Naveen Arivazhagan, and Wei Wang. Language-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 141, + 372, + 153 + ], + "spans": [ + { + "bbox": [ + 115, + 141, + 372, + 153 + ], + "score": 1.0, + "content": "agnostic BERT Sentence Embedding. arXiv:2007.01852, 2020.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 129, + 505, + 153 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 159, + 504, + 183 + ], + "lines": [ + { + "bbox": [ + 105, + 158, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 506, + 173 + ], + "score": 1.0, + "content": "Robert French. Catastrophic forgetting in connectionist networks. Trends in cognitive sciences, 3,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 170, + 142, + 183 + ], + "spans": [ + { + "bbox": [ + 116, + 170, + 142, + 183 + ], + "score": 1.0, + "content": "1999.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5, + "bbox_fs": [ + 105, + 158, + 506, + 183 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 189, + 504, + 223 + ], + "lines": [ + { + "bbox": [ + 105, + 189, + 505, + 202 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 505, + 202 + ], + "score": 1.0, + "content": "Prakhar Ganesh, Yao Chen, Xin Lou, Mohammad Ali Khan, Yin Yang, Deming Chen, Marianne", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 117, + 200, + 504, + 212 + ], + "spans": [ + { + "bbox": [ + 117, + 200, + 504, + 212 + ], + "score": 1.0, + "content": "Winslett, Hassan Sajjad, and Preslav Nakov. Compressing Large-Scale Transformer-Based Mod-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 212, + 336, + 223 + ], + "spans": [ + { + "bbox": [ + 115, + 212, + 336, + 223 + ], + "score": 1.0, + "content": "els: A Case Study on BERT. arXiv:2002.11985, 2020.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 189, + 505, + 223 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 229, + 505, + 263 + ], + "lines": [ + { + "bbox": [ + 105, + 229, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 229, + 505, + 243 + ], + "score": 1.0, + "content": "Mitchell A. Gordon, Kevin Duh, and Nicholas Andrews. Compressing BERT: Studying the Effects", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 241, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 115, + 241, + 506, + 254 + ], + "score": 1.0, + "content": "of Weight Pruning on Transfer Learning. In Proceedings of Rep4NLP 2020 Workshop at ACL", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 251, + 166, + 264 + ], + "spans": [ + { + "bbox": [ + 115, + 251, + 166, + 264 + ], + "score": 1.0, + "content": "2020, 2020.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 229, + 506, + 264 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 270, + 504, + 294 + ], + "lines": [ + { + "bbox": [ + 106, + 271, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 505, + 284 + ], + "score": 1.0, + "content": "Song Han, Huizi Mao, and William J. Dally. Deep Compression: Compressing Deep Neural Net-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 281, + 502, + 294 + ], + "spans": [ + { + "bbox": [ + 116, + 281, + 502, + 294 + ], + "score": 1.0, + "content": "works with Pruning, Trained Quantization and Huffman Coding. In Proceedings of ICLR, 2016.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 106, + 271, + 505, + 294 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 300, + 504, + 323 + ], + "lines": [ + { + "bbox": [ + 105, + 299, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 505, + 313 + ], + "score": 1.0, + "content": "Felix Hill, Kyunghyun Cho, and Anna Korhonen. Learning distributed representations of sentences", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 311, + 325, + 323 + ], + "spans": [ + { + "bbox": [ + 115, + 311, + 325, + 323 + ], + "score": 1.0, + "content": "from unlabelled data. In Proceedings of ACL, 2016.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 299, + 505, + 323 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 329, + 504, + 363 + ], + "lines": [ + { + "bbox": [ + 106, + 329, + 504, + 342 + ], + "spans": [ + { + "bbox": [ + 106, + 329, + 504, + 342 + ], + "score": 1.0, + "content": "Neil Houlsby, Andrei Giurgiu, Stanislaw Jastrzebski, Bruna Morrone, Quentin de Laroussilhe, An-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 340, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 116, + 340, + 505, + 353 + ], + "score": 1.0, + "content": "drea Gesmundo, and Mona Attariyanand Sylvain Gelly. Parameter-efficient transfer learning for", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 352, + 262, + 364 + ], + "spans": [ + { + "bbox": [ + 116, + 352, + 262, + 364 + ], + "score": 1.0, + "content": "nlp. In Proceedings of ICML, 2019.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 106, + 329, + 505, + 364 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 370, + 504, + 393 + ], + "lines": [ + { + "bbox": [ + 105, + 369, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 505, + 383 + ], + "score": 1.0, + "content": "Jeremy Howard and Sebastian Ruder. Universal Language Model Fine-tuning for Text Classifica-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 381, + 259, + 393 + ], + "spans": [ + { + "bbox": [ + 115, + 381, + 259, + 393 + ], + "score": 1.0, + "content": "tion. In Proceedings of ACL, 2018.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 369, + 505, + 393 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 399, + 504, + 423 + ], + "lines": [ + { + "bbox": [ + 105, + 398, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 505, + 413 + ], + "score": 1.0, + "content": "Eric Jang, Shixiang Gu, and Ben Poole. Categorical Reparameterization with Gumbel-Softmax. In", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 410, + 231, + 423 + ], + "spans": [ + { + "bbox": [ + 116, + 410, + 231, + 423 + ], + "score": 1.0, + "content": "Proceedings of ICLR, 2017.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 398, + 505, + 423 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 429, + 504, + 452 + ], + "lines": [ + { + "bbox": [ + 106, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 505, + 442 + ], + "score": 1.0, + "content": "Xiaoqi Jiao, Yichun Yin, Lifeng Shang, Xin Jiang, Xiao Chen, Linlin Li, Fang Wang, and Qun Liu.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 117, + 440, + 487, + 453 + ], + "spans": [ + { + "bbox": [ + 117, + 440, + 487, + 453 + ], + "score": 1.0, + "content": "TinyBERT: Distilling BERT for Natural Language Understanding. arXiv:1909.10351, 2019.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 106, + 429, + 505, + 453 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 458, + 505, + 504 + ], + "lines": [ + { + "bbox": [ + 105, + 458, + 505, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 505, + 472 + ], + "score": 1.0, + "content": "James Kirkpatrick, Razvan Pascanu, Neil Rabinowitz, Joel Veness, Guillaume Desjardins, Andrei A.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 470, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 116, + 470, + 505, + 482 + ], + "score": 1.0, + "content": "Rusu, Kieran Milan, John Quan, Tiago Ramalho, Agnieszka Grabska-Barwinska, Demis Hass-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 480, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 115, + 480, + 505, + 495 + ], + "score": 1.0, + "content": "abis, Claudia Clopath, Dharshan Kumaran, and Raia Hadsell. Overcoming catastrophic forgetting", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 492, + 487, + 505 + ], + "spans": [ + { + "bbox": [ + 115, + 492, + 487, + 505 + ], + "score": 1.0, + "content": "in neural networks. Proceedings of the National Academy of Sciences, 14:3521–3526, 2017.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 458, + 505, + 505 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 510, + 502, + 533 + ], + "lines": [ + { + "bbox": [ + 107, + 511, + 502, + 523 + ], + "spans": [ + { + "bbox": [ + 107, + 511, + 502, + 523 + ], + "score": 1.0, + "content": "Ryan Kiros, Yukun Zhu, Ruslan Salakhutdinov, Richard S. Zemel, Antonio Torralba, Raquel Urta", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 521, + 437, + 534 + ], + "spans": [ + { + "bbox": [ + 115, + 521, + 437, + 534 + ], + "score": 1.0, + "content": "sun, and Sanja Fidler. Skip-Thought Vectors. In Proceedings of NeurIPS, 2015.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 107, + 511, + 502, + 534 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 539, + 504, + 573 + ], + "lines": [ + { + "bbox": [ + 105, + 539, + 505, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 505, + 553 + ], + "score": 1.0, + "content": "Zhenzhong Lan, Mingda Chen, Sebastian Goodman, Kevin Gimpel, Piyush Sharma, and Radu Sori-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 550, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 115, + 550, + 505, + 564 + ], + "score": 1.0, + "content": "cut. ALBERT: A Lite BERT for Self-supervised Learning of Language Representations. In", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 562, + 230, + 574 + ], + "spans": [ + { + "bbox": [ + 116, + 562, + 230, + 574 + ], + "score": 1.0, + "content": "Proceedings of ICLR, 2020.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 539, + 505, + 574 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 579, + 503, + 603 + ], + "lines": [ + { + "bbox": [ + 106, + 580, + 505, + 593 + ], + "spans": [ + { + "bbox": [ + 106, + 580, + 505, + 593 + ], + "score": 1.0, + "content": "Quoc V. Le and Tomas Mikolov. Distributed Representations of Sentences and Documents. In", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 591, + 233, + 604 + ], + "spans": [ + { + "bbox": [ + 115, + 591, + 233, + 604 + ], + "score": 1.0, + "content": "Proceedings of ICML, 2014.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 106, + 580, + 505, + 604 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 609, + 502, + 633 + ], + "lines": [ + { + "bbox": [ + 106, + 609, + 504, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 504, + 622 + ], + "score": 1.0, + "content": "Cheolhyoung Lee, Kyunghyun Cho, and Wanmo Kang. Mixout: Effective Regularization to Fine-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 621, + 430, + 633 + ], + "spans": [ + { + "bbox": [ + 115, + 621, + 430, + 633 + ], + "score": 1.0, + "content": "tune Large-scale Pretrained Language Models. In Proceedings of ICLR, 2020.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5, + "bbox_fs": [ + 106, + 609, + 504, + 633 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 639, + 504, + 673 + ], + "lines": [ + { + "bbox": [ + 105, + 638, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 505, + 653 + ], + "score": 1.0, + "content": "Sang-Woo Lee, Jin-Hwa Kim, Jaehyun Jun, Jung-Woo Ha, and Byoung-Tak Zhang. Overcoming", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 651, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 116, + 651, + 505, + 663 + ], + "score": 1.0, + "content": "catastrophic forgetting by incremental moment matching. In Advances in Neural Information", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 661, + 225, + 674 + ], + "spans": [ + { + "bbox": [ + 115, + 661, + 225, + 674 + ], + "score": 1.0, + "content": "Processing Systems. 2017.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 638, + 505, + 674 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 680, + 503, + 703 + ], + "lines": [ + { + "bbox": [ + 105, + 679, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 505, + 693 + ], + "score": 1.0, + "content": "Nelson F. Liu, Matt Gardner, Yonatan Belinkov, Matthew E. Peters, and Noah A. Smith. Linguistic", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 691, + 494, + 704 + ], + "spans": [ + { + "bbox": [ + 116, + 691, + 494, + 704 + ], + "score": 1.0, + "content": "Knowledge and Transferability of Contextual Representations. In Proceedings of ACL, 2019a.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 679, + 505, + 704 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Xiaodong Liu, Pengcheng He, Weizhu Chen, and Jianfeng Gao. Multi-Task Deep Neural Networks", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 116, + 720, + 396, + 733 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 396, + 733 + ], + "score": 1.0, + "content": "for Natural Language Understanding. In Proceedings of ACL, 2019b.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5, + "bbox_fs": [ + 106, + 709, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 65, + 506, + 733 + ], + "lines": [ + { + "bbox": [ + 107, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 107, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "Yinhan Liu, Myle Ott, Naman Goyal, Jingfei Du, Mandar Joshi, Danqi Chen, Omer Levy, Mike", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 505, + 108 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 505, + 108 + ], + "score": 1.0, + "content": "Lewis, Luke Zettlemoyer, and Veselin Stoyanov. RoBERTa: A Robustly Optimized BERT Pre-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 105, + 303, + 119 + ], + "spans": [ + { + "bbox": [ + 115, + 105, + 303, + 119 + ], + "score": 1.0, + "content": "training Approach. arXiv:1907.11692, 2019c.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 122, + 505, + 140 + ], + "spans": [ + { + "bbox": [ + 104, + 122, + 505, + 140 + ], + "score": 1.0, + "content": "David Lopez-Paz and Marc’Aurelio Ranzato. Gradient Episodic Memory for Continual Learning.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 136, + 254, + 148 + ], + "spans": [ + { + "bbox": [ + 115, + 136, + 254, + 148 + ], + "score": 1.0, + "content": "In Proceedings of NeurIPS, 2017.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 153, + 506, + 170 + ], + "spans": [ + { + "bbox": [ + 104, + 153, + 506, + 170 + ], + "score": 1.0, + "content": "Christos Louizos, Max Welling, Diederik P, and Kingma. Learning Sparse Neural Networks through", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 117, + 165, + 321, + 180 + ], + "spans": [ + { + "bbox": [ + 117, + 166, + 129, + 177 + ], + "score": 0.86, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 165, + 321, + 180 + ], + "score": 1.0, + "content": "Regularization. In Proceedings of ICLR, 2018.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 185, + 506, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 185, + 506, + 199 + ], + "score": 1.0, + "content": "Chris J. Maddison, Andriy Mnih, and Yee Whye Teh. The Concrete Distribution: A Continuous", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 198, + 412, + 209 + ], + "spans": [ + { + "bbox": [ + 115, + 198, + 412, + 209 + ], + "score": 1.0, + "content": "Relaxation of Discrete Random Variables. In Proceedings of ICLR, 2017.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 216, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 505, + 230 + ], + "score": 1.0, + "content": "Bryan McCann, James Bradbury, Caiming Xiong, and Richard Socher. Learned in translation:", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 227, + 375, + 241 + ], + "spans": [ + { + "bbox": [ + 115, + 227, + 375, + 241 + ], + "score": 1.0, + "content": "Contextualized word vectors. In Proceedings of NeurIPS. 2017.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 247, + 506, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 506, + 261 + ], + "score": 1.0, + "content": "Antonio Valerio Miceli Barone, Barry Haddow, Ulrich Germann, and Rico Sennrich. Regularization", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 258, + 479, + 272 + ], + "spans": [ + { + "bbox": [ + 115, + 258, + 479, + 272 + ], + "score": 1.0, + "content": "techniques for fine-tuning in neural machine translation. In Proceedings of EMNLP, 2017.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 275, + 505, + 292 + ], + "spans": [ + { + "bbox": [ + 104, + 275, + 505, + 292 + ], + "score": 1.0, + "content": "Tomas Mikolov, Kai Chen, Greg Corrado, and Jeffrey Dean. Efficient Estimation of Word Repre-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 288, + 325, + 302 + ], + "spans": [ + { + "bbox": [ + 115, + 288, + 325, + 302 + ], + "score": 1.0, + "content": "sentations in Vector Space. arXiv:1301.3781, 2013.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 309, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 106, + 309, + 505, + 321 + ], + "score": 1.0, + "content": "German I. Parisi, Ronald Kemker, Jose L. Part, Christopher Kanan, and Stefan Wermter. Continual", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 320, + 435, + 333 + ], + "spans": [ + { + "bbox": [ + 115, + 320, + 435, + 333 + ], + "score": 1.0, + "content": "Lifelong Learning with Neural Networks: A Review. arXiv:1802.07569, 2018.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 338, + 506, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 506, + 352 + ], + "score": 1.0, + "content": "Matthew Peters, Mark Neumann, Mohit Iyyer, Matt Gardner, Christopher Clark, Kenton Lee, and", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 350, + 505, + 364 + ], + "spans": [ + { + "bbox": [ + 115, + 350, + 505, + 364 + ], + "score": 1.0, + "content": "Luke Zettlemoyer. Deep Contextualized Word Representations. In Proceedings of NAACL, 2018.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 371, + 504, + 383 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 504, + 383 + ], + "score": 1.0, + "content": "Jonas Pfeiffer, Aishwarya Kamath, Andreas Ruckle, and Kyunghyun Cho amd Iryna Gurevych.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 380, + 506, + 396 + ], + "spans": [ + { + "bbox": [ + 115, + 380, + 506, + 396 + ], + "score": 1.0, + "content": "AdapterFusion: Non-Destructive Task Composition for Transfer Learning. arXiv:2005.00247,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 389, + 147, + 406 + ], + "spans": [ + { + "bbox": [ + 115, + 389, + 147, + 406 + ], + "score": 1.0, + "content": "2020a.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 412, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 505, + 424 + ], + "score": 1.0, + "content": "Jonas Pfeiffer, Andreas Ruckle, Clifton Poth, Aishwarya Kamath, Ivan Vulic, Sebastian Ruder,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 422, + 505, + 436 + ], + "spans": [ + { + "bbox": [ + 115, + 422, + 505, + 436 + ], + "score": 1.0, + "content": "and Iryna Gurevych Kyunghyun Cho. AdapterHub: A Framework for Adapting Transformers.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 433, + 225, + 447 + ], + "spans": [ + { + "bbox": [ + 115, + 433, + 225, + 447 + ], + "score": 1.0, + "content": "arXiv:2007.07779, 2020b.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 453, + 504, + 465 + ], + "spans": [ + { + "bbox": [ + 106, + 453, + 504, + 465 + ], + "score": 1.0, + "content": "Jonas Pfeiffer, Ivan Vulic, Iryna Gurevych, and Sebastian Ruder. MAD-X: An Adapter-based Frame-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 464, + 400, + 478 + ], + "spans": [ + { + "bbox": [ + 115, + 464, + 400, + 478 + ], + "score": 1.0, + "content": "work for Multi-task Cross-lingual Transfer. arXiv:2005.00052, 2020c.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 482, + 505, + 499 + ], + "spans": [ + { + "bbox": [ + 104, + 482, + 505, + 499 + ], + "score": 1.0, + "content": "Alec Radford, Karthik Narasimhan, Tim Salimans, and Ilya Sutskever. Improving language under-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 495, + 288, + 509 + ], + "spans": [ + { + "bbox": [ + 115, + 495, + 288, + 509 + ], + "score": 1.0, + "content": "standing by generative pre-training. 2018.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 512, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 104, + 512, + 506, + 530 + ], + "score": 1.0, + "content": "Alec Radford, Jeff Wu, Rewon Child, David Luan, Dario Amodei, and Ilya Sutskever. Language", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 114, + 525, + 327, + 540 + ], + "spans": [ + { + "bbox": [ + 114, + 525, + 327, + 540 + ], + "score": 1.0, + "content": "Models are Unsupervised Multitask Learners. 2019.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 545, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 505, + 559 + ], + "score": 1.0, + "content": "Evani Radiya-Dixit and Xin Wang. How fine can fine-tuning be? Learning efficient language mod-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 556, + 274, + 570 + ], + "spans": [ + { + "bbox": [ + 115, + 556, + 274, + 570 + ], + "score": 1.0, + "content": "els. In Proceedings of AISTATS, 2020.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 574, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 505, + 589 + ], + "score": 1.0, + "content": "Colin Raffel, Noam Shazeer, Katherine Lee Adam Roberts, Sharan Narang, Michael Matena, Yanqi", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 587, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 115, + 587, + 505, + 601 + ], + "score": 1.0, + "content": "Zhou, Wei Li, and Peter J. Liu. Exploring the Limits of Transfer Learning with a Unified Text-to-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 117, + 599, + 392, + 610 + ], + "spans": [ + { + "bbox": [ + 117, + 599, + 392, + 610 + ], + "score": 1.0, + "content": "Text Transformer. Journal of Machine Learning Research, 21, 2020.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 617, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 505, + 631 + ], + "score": 1.0, + "content": "Samyam Rajbhandari, Jeff Rasley, Olatunji Ruwase, and Yuxiong He. ZeRO: Memory Optimiza-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 630, + 420, + 641 + ], + "spans": [ + { + "bbox": [ + 115, + 630, + 420, + 641 + ], + "score": 1.0, + "content": "tions Toward Training Trillion Parameter Models. arXiv:1910.02054, 2019.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "score": 1.0, + "content": "S. Rebuffi, A. Vedaldi, and H. Bilen. Efficient Parametrization of Multi-domain Deep Neural Net-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 659, + 276, + 673 + ], + "spans": [ + { + "bbox": [ + 115, + 659, + 276, + 673 + ], + "score": 1.0, + "content": "works. In Proceedings of CVPR, 2018.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 678, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 505, + 693 + ], + "score": 1.0, + "content": "Nils Reimers and Iryna Gurevych. Sentence-BERT: Sentence Embeddings using Siamese BERT-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 690, + 298, + 704 + ], + "spans": [ + { + "bbox": [ + 115, + 690, + 298, + 704 + ], + "score": 1.0, + "content": "Networks. In Proceedings of EMNLP, 2019.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "Hassan Sajjad, Fahim Dalvi, Nadir Durrani, and Preslav Nakov. Poor Man’s BERT: Smaller and", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 721, + 334, + 733 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 334, + 733 + ], + "score": 1.0, + "content": "Faster Transformer Models. arXiv:2004.03844, 2020.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 21.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": "list", + "bbox": [ + 105, + 65, + 506, + 733 + ], + "lines": [ + { + "bbox": [ + 107, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 107, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "Yinhan Liu, Myle Ott, Naman Goyal, Jingfei Du, Mandar Joshi, Danqi Chen, Omer Levy, Mike", + "type": "text" + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 93, + 505, + 108 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 505, + 108 + ], + "score": 1.0, + "content": "Lewis, Luke Zettlemoyer, and Veselin Stoyanov. RoBERTa: A Robustly Optimized BERT Pre-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 105, + 303, + 119 + ], + "spans": [ + { + "bbox": [ + 115, + 105, + 303, + 119 + ], + "score": 1.0, + "content": "training Approach. arXiv:1907.11692, 2019c.", + "type": "text" + } + ], + "index": 2, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 122, + 505, + 140 + ], + "spans": [ + { + "bbox": [ + 104, + 122, + 505, + 140 + ], + "score": 1.0, + "content": "David Lopez-Paz and Marc’Aurelio Ranzato. Gradient Episodic Memory for Continual Learning.", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 136, + 254, + 148 + ], + "spans": [ + { + "bbox": [ + 115, + 136, + 254, + 148 + ], + "score": 1.0, + "content": "In Proceedings of NeurIPS, 2017.", + "type": "text" + } + ], + "index": 4, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 153, + 506, + 170 + ], + "spans": [ + { + "bbox": [ + 104, + 153, + 506, + 170 + ], + "score": 1.0, + "content": "Christos Louizos, Max Welling, Diederik P, and Kingma. Learning Sparse Neural Networks through", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 117, + 165, + 321, + 180 + ], + "spans": [ + { + "bbox": [ + 117, + 166, + 129, + 177 + ], + "score": 0.86, + "content": "L _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 165, + 321, + 180 + ], + "score": 1.0, + "content": "Regularization. In Proceedings of ICLR, 2018.", + "type": "text" + } + ], + "index": 6, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 185, + 506, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 185, + 506, + 199 + ], + "score": 1.0, + "content": "Chris J. Maddison, Andriy Mnih, and Yee Whye Teh. The Concrete Distribution: A Continuous", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 198, + 412, + 209 + ], + "spans": [ + { + "bbox": [ + 115, + 198, + 412, + 209 + ], + "score": 1.0, + "content": "Relaxation of Discrete Random Variables. In Proceedings of ICLR, 2017.", + "type": "text" + } + ], + "index": 8, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 216, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 505, + 230 + ], + "score": 1.0, + "content": "Bryan McCann, James Bradbury, Caiming Xiong, and Richard Socher. Learned in translation:", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 227, + 375, + 241 + ], + "spans": [ + { + "bbox": [ + 115, + 227, + 375, + 241 + ], + "score": 1.0, + "content": "Contextualized word vectors. In Proceedings of NeurIPS. 2017.", + "type": "text" + } + ], + "index": 10, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 247, + 506, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 506, + 261 + ], + "score": 1.0, + "content": "Antonio Valerio Miceli Barone, Barry Haddow, Ulrich Germann, and Rico Sennrich. Regularization", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 258, + 479, + 272 + ], + "spans": [ + { + "bbox": [ + 115, + 258, + 479, + 272 + ], + "score": 1.0, + "content": "techniques for fine-tuning in neural machine translation. In Proceedings of EMNLP, 2017.", + "type": "text" + } + ], + "index": 12, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 275, + 505, + 292 + ], + "spans": [ + { + "bbox": [ + 104, + 275, + 505, + 292 + ], + "score": 1.0, + "content": "Tomas Mikolov, Kai Chen, Greg Corrado, and Jeffrey Dean. Efficient Estimation of Word Repre-", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 288, + 325, + 302 + ], + "spans": [ + { + "bbox": [ + 115, + 288, + 325, + 302 + ], + "score": 1.0, + "content": "sentations in Vector Space. arXiv:1301.3781, 2013.", + "type": "text" + } + ], + "index": 14, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 309, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 106, + 309, + 505, + 321 + ], + "score": 1.0, + "content": "German I. Parisi, Ronald Kemker, Jose L. Part, Christopher Kanan, and Stefan Wermter. Continual", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 320, + 435, + 333 + ], + "spans": [ + { + "bbox": [ + 115, + 320, + 435, + 333 + ], + "score": 1.0, + "content": "Lifelong Learning with Neural Networks: A Review. arXiv:1802.07569, 2018.", + "type": "text" + } + ], + "index": 16, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 338, + 506, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 506, + 352 + ], + "score": 1.0, + "content": "Matthew Peters, Mark Neumann, Mohit Iyyer, Matt Gardner, Christopher Clark, Kenton Lee, and", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 350, + 505, + 364 + ], + "spans": [ + { + "bbox": [ + 115, + 350, + 505, + 364 + ], + "score": 1.0, + "content": "Luke Zettlemoyer. Deep Contextualized Word Representations. In Proceedings of NAACL, 2018.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 371, + 504, + 383 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 504, + 383 + ], + "score": 1.0, + "content": "Jonas Pfeiffer, Aishwarya Kamath, Andreas Ruckle, and Kyunghyun Cho amd Iryna Gurevych.", + "type": "text" + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 380, + 506, + 396 + ], + "spans": [ + { + "bbox": [ + 115, + 380, + 506, + 396 + ], + "score": 1.0, + "content": "AdapterFusion: Non-Destructive Task Composition for Transfer Learning. arXiv:2005.00247,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 389, + 147, + 406 + ], + "spans": [ + { + "bbox": [ + 115, + 389, + 147, + 406 + ], + "score": 1.0, + "content": "2020a.", + "type": "text" + } + ], + "index": 21, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 412, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 505, + 424 + ], + "score": 1.0, + "content": "Jonas Pfeiffer, Andreas Ruckle, Clifton Poth, Aishwarya Kamath, Ivan Vulic, Sebastian Ruder,", + "type": "text" + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 422, + 505, + 436 + ], + "spans": [ + { + "bbox": [ + 115, + 422, + 505, + 436 + ], + "score": 1.0, + "content": "and Iryna Gurevych Kyunghyun Cho. AdapterHub: A Framework for Adapting Transformers.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 433, + 225, + 447 + ], + "spans": [ + { + "bbox": [ + 115, + 433, + 225, + 447 + ], + "score": 1.0, + "content": "arXiv:2007.07779, 2020b.", + "type": "text" + } + ], + "index": 24, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 453, + 504, + 465 + ], + "spans": [ + { + "bbox": [ + 106, + 453, + 504, + 465 + ], + "score": 1.0, + "content": "Jonas Pfeiffer, Ivan Vulic, Iryna Gurevych, and Sebastian Ruder. MAD-X: An Adapter-based Frame-", + "type": "text" + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 464, + 400, + 478 + ], + "spans": [ + { + "bbox": [ + 115, + 464, + 400, + 478 + ], + "score": 1.0, + "content": "work for Multi-task Cross-lingual Transfer. arXiv:2005.00052, 2020c.", + "type": "text" + } + ], + "index": 26, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 482, + 505, + 499 + ], + "spans": [ + { + "bbox": [ + 104, + 482, + 505, + 499 + ], + "score": 1.0, + "content": "Alec Radford, Karthik Narasimhan, Tim Salimans, and Ilya Sutskever. Improving language under-", + "type": "text" + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 495, + 288, + 509 + ], + "spans": [ + { + "bbox": [ + 115, + 495, + 288, + 509 + ], + "score": 1.0, + "content": "standing by generative pre-training. 2018.", + "type": "text" + } + ], + "index": 28, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 512, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 104, + 512, + 506, + 530 + ], + "score": 1.0, + "content": "Alec Radford, Jeff Wu, Rewon Child, David Luan, Dario Amodei, and Ilya Sutskever. Language", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 525, + 327, + 540 + ], + "spans": [ + { + "bbox": [ + 114, + 525, + 327, + 540 + ], + "score": 1.0, + "content": "Models are Unsupervised Multitask Learners. 2019.", + "type": "text" + } + ], + "index": 30, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 545, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 505, + 559 + ], + "score": 1.0, + "content": "Evani Radiya-Dixit and Xin Wang. How fine can fine-tuning be? Learning efficient language mod-", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 556, + 274, + 570 + ], + "spans": [ + { + "bbox": [ + 115, + 556, + 274, + 570 + ], + "score": 1.0, + "content": "els. In Proceedings of AISTATS, 2020.", + "type": "text" + } + ], + "index": 32, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 574, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 505, + 589 + ], + "score": 1.0, + "content": "Colin Raffel, Noam Shazeer, Katherine Lee Adam Roberts, Sharan Narang, Michael Matena, Yanqi", + "type": "text" + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 587, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 115, + 587, + 505, + 601 + ], + "score": 1.0, + "content": "Zhou, Wei Li, and Peter J. Liu. Exploring the Limits of Transfer Learning with a Unified Text-to-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 117, + 599, + 392, + 610 + ], + "spans": [ + { + "bbox": [ + 117, + 599, + 392, + 610 + ], + "score": 1.0, + "content": "Text Transformer. Journal of Machine Learning Research, 21, 2020.", + "type": "text" + } + ], + "index": 35, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 617, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 505, + 631 + ], + "score": 1.0, + "content": "Samyam Rajbhandari, Jeff Rasley, Olatunji Ruwase, and Yuxiong He. ZeRO: Memory Optimiza-", + "type": "text" + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 630, + 420, + 641 + ], + "spans": [ + { + "bbox": [ + 115, + 630, + 420, + 641 + ], + "score": 1.0, + "content": "tions Toward Training Trillion Parameter Models. arXiv:1910.02054, 2019.", + "type": "text" + } + ], + "index": 37, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "score": 1.0, + "content": "S. Rebuffi, A. Vedaldi, and H. Bilen. Efficient Parametrization of Multi-domain Deep Neural Net-", + "type": "text" + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 659, + 276, + 673 + ], + "spans": [ + { + "bbox": [ + 115, + 659, + 276, + 673 + ], + "score": 1.0, + "content": "works. In Proceedings of CVPR, 2018.", + "type": "text" + } + ], + "index": 39, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 678, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 505, + 693 + ], + "score": 1.0, + "content": "Nils Reimers and Iryna Gurevych. Sentence-BERT: Sentence Embeddings using Siamese BERT-", + "type": "text" + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 690, + 298, + 704 + ], + "spans": [ + { + "bbox": [ + 115, + 690, + 298, + 704 + ], + "score": 1.0, + "content": "Networks. In Proceedings of EMNLP, 2019.", + "type": "text" + } + ], + "index": 41, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "Hassan Sajjad, Fahim Dalvi, Nadir Durrani, and Preslav Nakov. Poor Man’s BERT: Smaller and", + "type": "text" + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 721, + 334, + 733 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 334, + 733 + ], + "score": 1.0, + "content": "Faster Transformer Models. arXiv:2004.03844, 2020.", + "type": "text" + } + ], + "index": 43, + "is_list_end_line": true + } + ], + "index": 21.5, + "bbox_fs": [ + 104, + 83, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 109, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 107, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 107, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Victor Sanh, Lysandre Debut, Julien Chaumond, and Thomas Wolf. DistilBERT, a distilled version", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "of BERT: smaller, faster, cheaper and lighter. In Proceedings of 5th Workshop on Energy Efficient", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 104, + 326, + 117 + ], + "spans": [ + { + "bbox": [ + 115, + 104, + 326, + 117 + ], + "score": 1.0, + "content": "Machine Learning and Cognitive Computing, 2019.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 108, + 122, + 503, + 145 + ], + "lines": [ + { + "bbox": [ + 105, + 119, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 119, + 505, + 137 + ], + "score": 1.0, + "content": "Victor Sanh, Thomas Wolf, and Alexander M. Rush. Movement Pruning: Adaptive Sparsity by", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 134, + 274, + 145 + ], + "spans": [ + { + "bbox": [ + 116, + 134, + 274, + 145 + ], + "score": 1.0, + "content": "Fine-Tuning. arXiv:2005.07683, 2020.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 106, + 151, + 504, + 175 + ], + "lines": [ + { + "bbox": [ + 106, + 151, + 505, + 165 + ], + "spans": [ + { + "bbox": [ + 106, + 151, + 505, + 165 + ], + "score": 1.0, + "content": "Timo Schick and Hinrich Schutze. It’s Not Just Size That Matters: Small Language Models Are", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 117, + 163, + 322, + 175 + ], + "spans": [ + { + "bbox": [ + 117, + 163, + 322, + 175 + ], + "score": 1.0, + "content": "Also Few-Shot Learners. arXiv:2009.07118, 2020.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 108, + 181, + 504, + 215 + ], + "lines": [ + { + "bbox": [ + 105, + 180, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 505, + 194 + ], + "score": 1.0, + "content": "Jonathan Schwarz, Jelena Luketina, Wojciech M. Czarnecki, Agnieszka Grabska-Barwinska,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 192, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 116, + 192, + 505, + 205 + ], + "score": 1.0, + "content": "Yee Whye Teh, Razvan Pascanu, and Raia Hadsell. Progress & Compress: A scalable frame-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 203, + 358, + 216 + ], + "spans": [ + { + "bbox": [ + 116, + 203, + 358, + 216 + ], + "score": 1.0, + "content": "work for continual learning. In Proceedings of ICML, 2018.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 104, + 221, + 504, + 245 + ], + "lines": [ + { + "bbox": [ + 105, + 220, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 505, + 235 + ], + "score": 1.0, + "content": "Hanul Shin, Jung Kwon Lee, Jaehong Kim, and Jiwon Kim. Continual Learning with Deep Gener-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 233, + 309, + 245 + ], + "spans": [ + { + "bbox": [ + 115, + 233, + 309, + 245 + ], + "score": 1.0, + "content": "ative Replay. In Proceedings of NeurIPS. 2017.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 108, + 250, + 504, + 285 + ], + "lines": [ + { + "bbox": [ + 106, + 250, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 505, + 264 + ], + "score": 1.0, + "content": "Mohammad Shoeybi, Mostofa Patwary, Raul Puri, Patrick LeGresley, Jared Casper, and Bryan", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 261, + 505, + 275 + ], + "spans": [ + { + "bbox": [ + 116, + 261, + 505, + 275 + ], + "score": 1.0, + "content": "Catanzaro. Megatron-LM: Training Multi-Billion Parameter Language Models Using Model Par-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 273, + 256, + 284 + ], + "spans": [ + { + "bbox": [ + 116, + 273, + 256, + 284 + ], + "score": 1.0, + "content": "allelism. arXiv:1909.08053, 2019.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 105, + 291, + 504, + 314 + ], + "lines": [ + { + "bbox": [ + 106, + 291, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 505, + 304 + ], + "score": 1.0, + "content": "Asa Cooper Stickland and Iain Murray. BERT and PALs: Projected attention layers for efficient", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 302, + 379, + 315 + ], + "spans": [ + { + "bbox": [ + 116, + 302, + 379, + 315 + ], + "score": 1.0, + "content": "adaptation in multi-task learning. In Proceedings of ICML, 2019.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 108, + 320, + 503, + 354 + ], + "lines": [ + { + "bbox": [ + 106, + 320, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 106, + 320, + 505, + 333 + ], + "score": 1.0, + "content": "Sandeep Subramanian, Adam Trischler, Yoshua Bengio, and Christopher J. Pal. Learning General", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 333, + 504, + 344 + ], + "spans": [ + { + "bbox": [ + 116, + 333, + 504, + 344 + ], + "score": 1.0, + "content": "Purpose Distributed Sentence Representations via Large Scale Multi-task Learning. In Proceed-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 343, + 197, + 354 + ], + "spans": [ + { + "bbox": [ + 115, + 343, + 197, + 354 + ], + "score": 1.0, + "content": "ings of ICLR, 2018.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 105, + 360, + 504, + 384 + ], + "lines": [ + { + "bbox": [ + 106, + 361, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 505, + 374 + ], + "score": 1.0, + "content": "Siqi Sun, Yu Cheng, Zhe Gan, and Jingjing Liu. Patient Knowledge Distillation for BERT Model", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 372, + 311, + 385 + ], + "spans": [ + { + "bbox": [ + 116, + 372, + 311, + 385 + ], + "score": 1.0, + "content": "Compression. In Proceedings of EMNLP, 2019.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 107, + 390, + 504, + 424 + ], + "lines": [ + { + "bbox": [ + 105, + 390, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 505, + 403 + ], + "score": 1.0, + "content": "Zhiqing Sun, Hongkun Yu, Xiaodan Song, Renjie Liu, Yiming Yang, and Denny Zhou. Mobile-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 114, + 400, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 114, + 400, + 505, + 415 + ], + "score": 1.0, + "content": "BERT: a compact task-agnostic BERT for resource-limited devices. In Proceedings of ACL, July", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 412, + 142, + 424 + ], + "spans": [ + { + "bbox": [ + 115, + 412, + 142, + 424 + ], + "score": 1.0, + "content": "2020.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 430, + 504, + 453 + ], + "lines": [ + { + "bbox": [ + 106, + 430, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 505, + 443 + ], + "score": 1.0, + "content": "Ian Tenney, Dipanjan Das, and Ellie Pavlick. BERT Rediscovers the Classical NLP Pipeline. In", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 441, + 227, + 454 + ], + "spans": [ + { + "bbox": [ + 116, + 441, + 227, + 454 + ], + "score": 1.0, + "content": "Proceedings of ACL, 2019.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 106, + 459, + 503, + 483 + ], + "lines": [ + { + "bbox": [ + 106, + 460, + 504, + 472 + ], + "spans": [ + { + "bbox": [ + 106, + 460, + 504, + 472 + ], + "score": 1.0, + "content": "Iulia Turc, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Well-Read Students Learn Better:", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 471, + 432, + 483 + ], + "spans": [ + { + "bbox": [ + 115, + 471, + 432, + 483 + ], + "score": 1.0, + "content": "On the Importance of Pre-training Compact Models. arXiv:1908.08962, 2019.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 108, + 489, + 504, + 523 + ], + "lines": [ + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "Alex Wang, Amanpreet Singh, Julian Michael, Felix Hill, Omer Levy, and Samuel Bowman. GLUE:", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 499, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 115, + 499, + 505, + 514 + ], + "score": 1.0, + "content": "A multi-task benchmark and analysis platform for natural language understanding. In Proceedings", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 511, + 183, + 523 + ], + "spans": [ + { + "bbox": [ + 115, + 511, + 183, + 523 + ], + "score": 1.0, + "content": "of ICLR, 2019a.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 106, + 529, + 504, + 552 + ], + "lines": [ + { + "bbox": [ + 106, + 529, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 505, + 542 + ], + "score": 1.0, + "content": "Tongzhou Wang, Jun-Yan Zhu, Antonio Torralba, and Alexei A. Efros. Dataset Distillation.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 540, + 219, + 553 + ], + "spans": [ + { + "bbox": [ + 115, + 540, + 219, + 553 + ], + "score": 1.0, + "content": "arXiv:1811.10959, 2018.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 106, + 558, + 503, + 582 + ], + "lines": [ + { + "bbox": [ + 105, + 558, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 505, + 572 + ], + "score": 1.0, + "content": "Ziheng Wang, Jeremy Wohlwend, and Tao Lei. Structured Pruning of Large Language Models.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 570, + 224, + 581 + ], + "spans": [ + { + "bbox": [ + 115, + 570, + 224, + 581 + ], + "score": 1.0, + "content": "arXiv:1910.04732, 2019b.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 105, + 588, + 504, + 611 + ], + "lines": [ + { + "bbox": [ + 106, + 588, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 505, + 601 + ], + "score": 1.0, + "content": "Georg Wiese, Dirk Weissenborn, and Mariana Neves. Neural domain adaptation for biomedical", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 600, + 363, + 612 + ], + "spans": [ + { + "bbox": [ + 116, + 600, + 363, + 612 + ], + "score": 1.0, + "content": "question answering. In Proceedings of CoNLL, August 2017.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 106, + 617, + 504, + 641 + ], + "lines": [ + { + "bbox": [ + 106, + 618, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 505, + 631 + ], + "score": 1.0, + "content": "John Wieting, Mohit Bansal, Kevin Gimpel, and Karen Livescu. Towards Universal Paraphrastic", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 629, + 335, + 642 + ], + "spans": [ + { + "bbox": [ + 116, + 629, + 335, + 642 + ], + "score": 1.0, + "content": "Sentence Embeddings. In Proceedings of ICLR, 2016.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 111, + 647, + 504, + 703 + ], + "lines": [ + { + "bbox": [ + 109, + 647, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 109, + 647, + 505, + 659 + ], + "score": 1.0, + "content": "Thomas Wolf, Lysandre Debut, Victor Sanh, Julien Chaumond, Clement Delangue, Anthony Moi,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 659, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 115, + 659, + 505, + 671 + ], + "score": 1.0, + "content": "Pierric Cistac, Tim Rault, Remi Louf, Morgan Funtowicz, Joe Davison, Sam Shleifer, Patrick ´", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 114, + 668, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 114, + 668, + 506, + 684 + ], + "score": 1.0, + "content": "von Platen, Clara Ma, Yacine Jernite, Julien Plu, Canwen Xu, Teven Le Scao, Sylvain Gugger,", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 679, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 115, + 679, + 505, + 693 + ], + "score": 1.0, + "content": "Mariama Drame, Quentin Lhoest, and Alexander M. Rush. Huggingface’s transformers: State-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 691, + 396, + 704 + ], + "spans": [ + { + "bbox": [ + 115, + 691, + 396, + 704 + ], + "score": 1.0, + "content": "of-the-art natural language processing. ArXiv, abs/1910.03771, 2019.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 108, + 709, + 501, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 502, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 502, + 722 + ], + "score": 1.0, + "content": "John M. Wu, Yonatan Belinkov, Hassan Sajjad, Nadir Durrani, Fahim Dalvi, and James Glass.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 117, + 721, + 496, + 732 + ], + "spans": [ + { + "bbox": [ + 117, + 721, + 496, + 732 + ], + "score": 1.0, + "content": "Similarity Analysis of Contextual Word Representation Models. In Proceedings of ACL, 2020.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.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, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 109, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 107, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 107, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Victor Sanh, Lysandre Debut, Julien Chaumond, and Thomas Wolf. DistilBERT, a distilled version", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "of BERT: smaller, faster, cheaper and lighter. In Proceedings of 5th Workshop on Energy Efficient", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 104, + 326, + 117 + ], + "spans": [ + { + "bbox": [ + 115, + 104, + 326, + 117 + ], + "score": 1.0, + "content": "Machine Learning and Cognitive Computing, 2019.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 107, + 82, + 505, + 117 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 122, + 503, + 145 + ], + "lines": [ + { + "bbox": [ + 105, + 119, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 119, + 505, + 137 + ], + "score": 1.0, + "content": "Victor Sanh, Thomas Wolf, and Alexander M. Rush. Movement Pruning: Adaptive Sparsity by", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 134, + 274, + 145 + ], + "spans": [ + { + "bbox": [ + 116, + 134, + 274, + 145 + ], + "score": 1.0, + "content": "Fine-Tuning. arXiv:2005.07683, 2020.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 119, + 505, + 145 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 151, + 504, + 175 + ], + "lines": [ + { + "bbox": [ + 106, + 151, + 505, + 165 + ], + "spans": [ + { + "bbox": [ + 106, + 151, + 505, + 165 + ], + "score": 1.0, + "content": "Timo Schick and Hinrich Schutze. It’s Not Just Size That Matters: Small Language Models Are", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 117, + 163, + 322, + 175 + ], + "spans": [ + { + "bbox": [ + 117, + 163, + 322, + 175 + ], + "score": 1.0, + "content": "Also Few-Shot Learners. arXiv:2009.07118, 2020.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5, + "bbox_fs": [ + 106, + 151, + 505, + 175 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 181, + 504, + 215 + ], + "lines": [ + { + "bbox": [ + 105, + 180, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 505, + 194 + ], + "score": 1.0, + "content": "Jonathan Schwarz, Jelena Luketina, Wojciech M. Czarnecki, Agnieszka Grabska-Barwinska,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 192, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 116, + 192, + 505, + 205 + ], + "score": 1.0, + "content": "Yee Whye Teh, Razvan Pascanu, and Raia Hadsell. Progress & Compress: A scalable frame-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 203, + 358, + 216 + ], + "spans": [ + { + "bbox": [ + 116, + 203, + 358, + 216 + ], + "score": 1.0, + "content": "work for continual learning. In Proceedings of ICML, 2018.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 180, + 505, + 216 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 221, + 504, + 245 + ], + "lines": [ + { + "bbox": [ + 105, + 220, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 505, + 235 + ], + "score": 1.0, + "content": "Hanul Shin, Jung Kwon Lee, Jaehong Kim, and Jiwon Kim. Continual Learning with Deep Gener-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 233, + 309, + 245 + ], + "spans": [ + { + "bbox": [ + 115, + 233, + 309, + 245 + ], + "score": 1.0, + "content": "ative Replay. In Proceedings of NeurIPS. 2017.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 220, + 505, + 245 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 250, + 504, + 285 + ], + "lines": [ + { + "bbox": [ + 106, + 250, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 505, + 264 + ], + "score": 1.0, + "content": "Mohammad Shoeybi, Mostofa Patwary, Raul Puri, Patrick LeGresley, Jared Casper, and Bryan", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 261, + 505, + 275 + ], + "spans": [ + { + "bbox": [ + 116, + 261, + 505, + 275 + ], + "score": 1.0, + "content": "Catanzaro. Megatron-LM: Training Multi-Billion Parameter Language Models Using Model Par-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 273, + 256, + 284 + ], + "spans": [ + { + "bbox": [ + 116, + 273, + 256, + 284 + ], + "score": 1.0, + "content": "allelism. arXiv:1909.08053, 2019.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13, + "bbox_fs": [ + 106, + 250, + 505, + 284 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 291, + 504, + 314 + ], + "lines": [ + { + "bbox": [ + 106, + 291, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 505, + 304 + ], + "score": 1.0, + "content": "Asa Cooper Stickland and Iain Murray. BERT and PALs: Projected attention layers for efficient", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 302, + 379, + 315 + ], + "spans": [ + { + "bbox": [ + 116, + 302, + 379, + 315 + ], + "score": 1.0, + "content": "adaptation in multi-task learning. In Proceedings of ICML, 2019.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 106, + 291, + 505, + 315 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 320, + 503, + 354 + ], + "lines": [ + { + "bbox": [ + 106, + 320, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 106, + 320, + 505, + 333 + ], + "score": 1.0, + "content": "Sandeep Subramanian, Adam Trischler, Yoshua Bengio, and Christopher J. Pal. Learning General", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 333, + 504, + 344 + ], + "spans": [ + { + "bbox": [ + 116, + 333, + 504, + 344 + ], + "score": 1.0, + "content": "Purpose Distributed Sentence Representations via Large Scale Multi-task Learning. In Proceed-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 343, + 197, + 354 + ], + "spans": [ + { + "bbox": [ + 115, + 343, + 197, + 354 + ], + "score": 1.0, + "content": "ings of ICLR, 2018.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 106, + 320, + 505, + 354 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 360, + 504, + 384 + ], + "lines": [ + { + "bbox": [ + 106, + 361, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 505, + 374 + ], + "score": 1.0, + "content": "Siqi Sun, Yu Cheng, Zhe Gan, and Jingjing Liu. Patient Knowledge Distillation for BERT Model", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 372, + 311, + 385 + ], + "spans": [ + { + "bbox": [ + 116, + 372, + 311, + 385 + ], + "score": 1.0, + "content": "Compression. In Proceedings of EMNLP, 2019.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 106, + 361, + 505, + 385 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 390, + 504, + 424 + ], + "lines": [ + { + "bbox": [ + 105, + 390, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 505, + 403 + ], + "score": 1.0, + "content": "Zhiqing Sun, Hongkun Yu, Xiaodan Song, Renjie Liu, Yiming Yang, and Denny Zhou. Mobile-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 114, + 400, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 114, + 400, + 505, + 415 + ], + "score": 1.0, + "content": "BERT: a compact task-agnostic BERT for resource-limited devices. In Proceedings of ACL, July", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 412, + 142, + 424 + ], + "spans": [ + { + "bbox": [ + 115, + 412, + 142, + 424 + ], + "score": 1.0, + "content": "2020.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 390, + 505, + 424 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 430, + 504, + 453 + ], + "lines": [ + { + "bbox": [ + 106, + 430, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 505, + 443 + ], + "score": 1.0, + "content": "Ian Tenney, Dipanjan Das, and Ellie Pavlick. BERT Rediscovers the Classical NLP Pipeline. In", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 441, + 227, + 454 + ], + "spans": [ + { + "bbox": [ + 116, + 441, + 227, + 454 + ], + "score": 1.0, + "content": "Proceedings of ACL, 2019.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 106, + 430, + 505, + 454 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 459, + 503, + 483 + ], + "lines": [ + { + "bbox": [ + 106, + 460, + 504, + 472 + ], + "spans": [ + { + "bbox": [ + 106, + 460, + 504, + 472 + ], + "score": 1.0, + "content": "Iulia Turc, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Well-Read Students Learn Better:", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 471, + 432, + 483 + ], + "spans": [ + { + "bbox": [ + 115, + 471, + 432, + 483 + ], + "score": 1.0, + "content": "On the Importance of Pre-training Compact Models. arXiv:1908.08962, 2019.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 106, + 460, + 504, + 483 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 489, + 504, + 523 + ], + "lines": [ + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "Alex Wang, Amanpreet Singh, Julian Michael, Felix Hill, Omer Levy, and Samuel Bowman. GLUE:", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 499, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 115, + 499, + 505, + 514 + ], + "score": 1.0, + "content": "A multi-task benchmark and analysis platform for natural language understanding. In Proceedings", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 511, + 183, + 523 + ], + "spans": [ + { + "bbox": [ + 115, + 511, + 183, + 523 + ], + "score": 1.0, + "content": "of ICLR, 2019a.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30, + "bbox_fs": [ + 106, + 489, + 505, + 523 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 529, + 504, + 552 + ], + "lines": [ + { + "bbox": [ + 106, + 529, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 505, + 542 + ], + "score": 1.0, + "content": "Tongzhou Wang, Jun-Yan Zhu, Antonio Torralba, and Alexei A. Efros. Dataset Distillation.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 540, + 219, + 553 + ], + "spans": [ + { + "bbox": [ + 115, + 540, + 219, + 553 + ], + "score": 1.0, + "content": "arXiv:1811.10959, 2018.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 106, + 529, + 505, + 553 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 558, + 503, + 582 + ], + "lines": [ + { + "bbox": [ + 105, + 558, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 505, + 572 + ], + "score": 1.0, + "content": "Ziheng Wang, Jeremy Wohlwend, and Tao Lei. Structured Pruning of Large Language Models.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 570, + 224, + 581 + ], + "spans": [ + { + "bbox": [ + 115, + 570, + 224, + 581 + ], + "score": 1.0, + "content": "arXiv:1910.04732, 2019b.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 558, + 505, + 581 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 588, + 504, + 611 + ], + "lines": [ + { + "bbox": [ + 106, + 588, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 505, + 601 + ], + "score": 1.0, + "content": "Georg Wiese, Dirk Weissenborn, and Mariana Neves. Neural domain adaptation for biomedical", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 600, + 363, + 612 + ], + "spans": [ + { + "bbox": [ + 116, + 600, + 363, + 612 + ], + "score": 1.0, + "content": "question answering. In Proceedings of CoNLL, August 2017.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 106, + 588, + 505, + 612 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 617, + 504, + 641 + ], + "lines": [ + { + "bbox": [ + 106, + 618, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 505, + 631 + ], + "score": 1.0, + "content": "John Wieting, Mohit Bansal, Kevin Gimpel, and Karen Livescu. Towards Universal Paraphrastic", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 629, + 335, + 642 + ], + "spans": [ + { + "bbox": [ + 116, + 629, + 335, + 642 + ], + "score": 1.0, + "content": "Sentence Embeddings. In Proceedings of ICLR, 2016.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 106, + 618, + 505, + 642 + ] + }, + { + "type": "text", + "bbox": [ + 111, + 647, + 504, + 703 + ], + "lines": [ + { + "bbox": [ + 109, + 647, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 109, + 647, + 505, + 659 + ], + "score": 1.0, + "content": "Thomas Wolf, Lysandre Debut, Victor Sanh, Julien Chaumond, Clement Delangue, Anthony Moi,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 659, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 115, + 659, + 505, + 671 + ], + "score": 1.0, + "content": "Pierric Cistac, Tim Rault, Remi Louf, Morgan Funtowicz, Joe Davison, Sam Shleifer, Patrick ´", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 114, + 668, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 114, + 668, + 506, + 684 + ], + "score": 1.0, + "content": "von Platen, Clara Ma, Yacine Jernite, Julien Plu, Canwen Xu, Teven Le Scao, Sylvain Gugger,", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 679, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 115, + 679, + 505, + 693 + ], + "score": 1.0, + "content": "Mariama Drame, Quentin Lhoest, and Alexander M. Rush. Huggingface’s transformers: State-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 691, + 396, + 704 + ], + "spans": [ + { + "bbox": [ + 115, + 691, + 396, + 704 + ], + "score": 1.0, + "content": "of-the-art natural language processing. ArXiv, abs/1910.03771, 2019.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42, + "bbox_fs": [ + 109, + 647, + 506, + 704 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 709, + 501, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 502, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 502, + 722 + ], + "score": 1.0, + "content": "John M. Wu, Yonatan Belinkov, Hassan Sajjad, Nadir Durrani, Fahim Dalvi, and James Glass.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 117, + 721, + 496, + 732 + ], + "spans": [ + { + "bbox": [ + 117, + 721, + 496, + 732 + ], + "score": 1.0, + "content": "Similarity Analysis of Contextual Word Representation Models. In Proceedings of ACL, 2020.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5, + "bbox_fs": [ + 106, + 709, + 502, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 121, + 83, + 489, + 239 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 121, + 83, + 489, + 239 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 121, + 83, + 489, + 239 + ], + "spans": [ + { + "bbox": [ + 121, + 83, + 489, + 239 + ], + "score": 0.969, + "type": "image", + "image_path": "8c95c374d96e969461975571abc9c78de78634e6f294904982d24204df94d38e.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 121, + 83, + 489, + 135.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 121, + 135.0, + 489, + 187.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 121, + 187.0, + 489, + 239.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 108, + 251, + 504, + 282 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 251, + 504, + 263 + ], + "spans": [ + { + "bbox": [ + 106, + 251, + 483, + 263 + ], + "score": 1.0, + "content": "Figure 3: Percentage of modified parameters attributable to each layer for 5 different runs of SST-2 at", + "type": "text" + }, + { + "bbox": [ + 484, + 252, + 504, + 261 + ], + "score": 0.86, + "content": "0 . 5 \\%", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 261, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 505, + 272 + ], + "score": 1.0, + "content": "target sparsity. The layers are ordered from earlier to later (i.e. the embedding layer is shown at the top). The", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 271, + 261, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 273, + 112, + 280 + ], + "score": 0.49, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 271, + 216, + 282 + ], + "score": 1.0, + "content": "-axis for each plot goes from", + "type": "text" + }, + { + "bbox": [ + 217, + 271, + 230, + 281 + ], + "score": 0.85, + "content": "0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 271, + 240, + 282 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 240, + 271, + 258, + 281 + ], + "score": 0.87, + "content": "20 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 271, + 261, + 282 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 303, + 506, + 336 + ], + "lines": [ + { + "bbox": [ + 105, + 302, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 505, + 316 + ], + "score": 1.0, + "content": "Zhilin Yang, Zihang Dai, Yiming Yang, Jaime Carbonell, Russ R Salakhutdinov, and Quoc V Le.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 313, + 506, + 328 + ], + "spans": [ + { + "bbox": [ + 115, + 313, + 506, + 328 + ], + "score": 1.0, + "content": "XLNet: Generalized Autoregressive Pretraining for Language Understanding. In Proceedings of", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 325, + 180, + 337 + ], + "spans": [ + { + "bbox": [ + 115, + 325, + 180, + 337 + ], + "score": 1.0, + "content": "NeurIPS, 2019.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 343, + 504, + 367 + ], + "lines": [ + { + "bbox": [ + 105, + 344, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 505, + 357 + ], + "score": 1.0, + "content": "Minghua Zhang, Yunfang Wu, Weikang Li, and Wei Li. Learning universal sentence representations", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 355, + 408, + 367 + ], + "spans": [ + { + "bbox": [ + 115, + 355, + 408, + 367 + ], + "score": 1.0, + "content": "with mean-max attention autoencoder. In Proceedings of EMNLP, 2018.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 108, + 373, + 504, + 397 + ], + "lines": [ + { + "bbox": [ + 106, + 373, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 506, + 387 + ], + "score": 1.0, + "content": "Yan Zhang, Ruidan He, Zuozhu Liu, Kwan Hui Lim, and Lidong Bing. An Unsupervised Sentence", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 385, + 487, + 397 + ], + "spans": [ + { + "bbox": [ + 115, + 385, + 487, + 397 + ], + "score": 1.0, + "content": "Embedding Method byMutual Information Maximization. In Proceedings of EMNLP, 2020.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 109, + 403, + 505, + 426 + ], + "lines": [ + { + "bbox": [ + 107, + 403, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 107, + 403, + 506, + 416 + ], + "score": 1.0, + "content": "Mengjie Zhao, Tao Lin, Martin Jaggi, and Hinrich Schutze. Masking as an Efficient Alternative to", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 415, + 399, + 427 + ], + "spans": [ + { + "bbox": [ + 116, + 415, + 399, + 427 + ], + "score": 1.0, + "content": "Finetuning for Pretrained Language Models. arXiv:2004.12406, 2020.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "title", + "bbox": [ + 108, + 448, + 183, + 460 + ], + "lines": [ + { + "bbox": [ + 105, + 446, + 185, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 185, + 464 + ], + "score": 1.0, + "content": "A APPENDIX", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "title", + "bbox": [ + 107, + 472, + 315, + 484 + ], + "lines": [ + { + "bbox": [ + 106, + 472, + 316, + 485 + ], + "spans": [ + { + "bbox": [ + 106, + 472, + 316, + 485 + ], + "score": 1.0, + "content": "A.1 CONSISTENCY OF NONZERO PARAMETERS", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 493, + 505, + 526 + ], + "lines": [ + { + "bbox": [ + 105, + 493, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 505, + 506 + ], + "score": 1.0, + "content": "Figure 3 shows the percentage of modified parameters attributable to each layer across 5 runs of SST-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 502, + 506, + 518 + ], + "spans": [ + { + "bbox": [ + 104, + 502, + 506, + 518 + ], + "score": 1.0, + "content": "2. We find that there is nonotrivial variation in sparsity across runs, but also a degree of consistency.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 514, + 471, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 471, + 527 + ], + "score": 1.0, + "content": "For example, the first layer is modified considerably more than other layers across all runs.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + } + ], + "page_idx": 12, + "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, + 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": [ + 121, + 83, + 489, + 239 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 121, + 83, + 489, + 239 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 121, + 83, + 489, + 239 + ], + "spans": [ + { + "bbox": [ + 121, + 83, + 489, + 239 + ], + "score": 0.969, + "type": "image", + "image_path": "8c95c374d96e969461975571abc9c78de78634e6f294904982d24204df94d38e.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 121, + 83, + 489, + 135.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 121, + 135.0, + 489, + 187.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 121, + 187.0, + 489, + 239.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 108, + 251, + 504, + 282 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 251, + 504, + 263 + ], + "spans": [ + { + "bbox": [ + 106, + 251, + 483, + 263 + ], + "score": 1.0, + "content": "Figure 3: Percentage of modified parameters attributable to each layer for 5 different runs of SST-2 at", + "type": "text" + }, + { + "bbox": [ + 484, + 252, + 504, + 261 + ], + "score": 0.86, + "content": "0 . 5 \\%", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 261, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 505, + 272 + ], + "score": 1.0, + "content": "target sparsity. The layers are ordered from earlier to later (i.e. the embedding layer is shown at the top). The", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 271, + 261, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 273, + 112, + 280 + ], + "score": 0.49, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 271, + 216, + 282 + ], + "score": 1.0, + "content": "-axis for each plot goes from", + "type": "text" + }, + { + "bbox": [ + 217, + 271, + 230, + 281 + ], + "score": 0.85, + "content": "0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 271, + 240, + 282 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 240, + 271, + 258, + 281 + ], + "score": 0.87, + "content": "20 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 271, + 261, + 282 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 303, + 506, + 336 + ], + "lines": [ + { + "bbox": [ + 105, + 302, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 505, + 316 + ], + "score": 1.0, + "content": "Zhilin Yang, Zihang Dai, Yiming Yang, Jaime Carbonell, Russ R Salakhutdinov, and Quoc V Le.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 313, + 506, + 328 + ], + "spans": [ + { + "bbox": [ + 115, + 313, + 506, + 328 + ], + "score": 1.0, + "content": "XLNet: Generalized Autoregressive Pretraining for Language Understanding. In Proceedings of", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 325, + 180, + 337 + ], + "spans": [ + { + "bbox": [ + 115, + 325, + 180, + 337 + ], + "score": 1.0, + "content": "NeurIPS, 2019.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 302, + 506, + 337 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 343, + 504, + 367 + ], + "lines": [ + { + "bbox": [ + 105, + 344, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 505, + 357 + ], + "score": 1.0, + "content": "Minghua Zhang, Yunfang Wu, Weikang Li, and Wei Li. Learning universal sentence representations", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 355, + 408, + 367 + ], + "spans": [ + { + "bbox": [ + 115, + 355, + 408, + 367 + ], + "score": 1.0, + "content": "with mean-max attention autoencoder. In Proceedings of EMNLP, 2018.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 344, + 505, + 367 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 373, + 504, + 397 + ], + "lines": [ + { + "bbox": [ + 106, + 373, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 506, + 387 + ], + "score": 1.0, + "content": "Yan Zhang, Ruidan He, Zuozhu Liu, Kwan Hui Lim, and Lidong Bing. An Unsupervised Sentence", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 385, + 487, + 397 + ], + "spans": [ + { + "bbox": [ + 115, + 385, + 487, + 397 + ], + "score": 1.0, + "content": "Embedding Method byMutual Information Maximization. In Proceedings of EMNLP, 2020.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 106, + 373, + 506, + 397 + ] + }, + { + "type": "text", + "bbox": [ + 109, + 403, + 505, + 426 + ], + "lines": [ + { + "bbox": [ + 107, + 403, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 107, + 403, + 506, + 416 + ], + "score": 1.0, + "content": "Mengjie Zhao, Tao Lin, Martin Jaggi, and Hinrich Schutze. Masking as an Efficient Alternative to", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 415, + 399, + 427 + ], + "spans": [ + { + "bbox": [ + 116, + 415, + 399, + 427 + ], + "score": 1.0, + "content": "Finetuning for Pretrained Language Models. arXiv:2004.12406, 2020.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 107, + 403, + 506, + 427 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 448, + 183, + 460 + ], + "lines": [ + { + "bbox": [ + 105, + 446, + 185, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 185, + 464 + ], + "score": 1.0, + "content": "A APPENDIX", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "title", + "bbox": [ + 107, + 472, + 315, + 484 + ], + "lines": [ + { + "bbox": [ + 106, + 472, + 316, + 485 + ], + "spans": [ + { + "bbox": [ + 106, + 472, + 316, + 485 + ], + "score": 1.0, + "content": "A.1 CONSISTENCY OF NONZERO PARAMETERS", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 493, + 505, + 526 + ], + "lines": [ + { + "bbox": [ + 105, + 493, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 505, + 506 + ], + "score": 1.0, + "content": "Figure 3 shows the percentage of modified parameters attributable to each layer across 5 runs of SST-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 502, + 506, + 518 + ], + "spans": [ + { + "bbox": [ + 104, + 502, + 506, + 518 + ], + "score": 1.0, + "content": "2. We find that there is nonotrivial variation in sparsity across runs, but also a degree of consistency.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 514, + 471, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 471, + 527 + ], + "score": 1.0, + "content": "For example, the first layer is modified considerably more than other layers across all runs.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 104, + 493, + 506, + 527 + ] + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/E4PK0rg2eP/E4PK0rg2eP_model.json b/parse/train/E4PK0rg2eP/E4PK0rg2eP_model.json new file mode 100644 index 0000000000000000000000000000000000000000..9830f97ef9b220f9598394d148957712454f6d25 --- /dev/null +++ b/parse/train/E4PK0rg2eP/E4PK0rg2eP_model.json @@ -0,0 +1,16441 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1407, + 1404, + 1407, + 1404, + 1773, + 298, + 1773 + ], + "score": 0.985 + }, + { + "category_id": 1, + "poly": [ + 398, + 581, + 1302, + 581, + 1302, + 1069, + 398, + 1069 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1147, + 1403, + 1147, + 1403, + 1391, + 298, + 1391 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1788, + 1403, + 1788, + 1403, + 2035, + 298, + 2035 + ], + "score": 0.979 + }, + { + "category_id": 0, + "poly": [ + 300, + 219, + 1400, + 219, + 1400, + 322, + 300, + 322 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 313, + 377, + 680, + 377, + 680, + 437, + 313, + 437 + ], + "score": 0.933 + }, + { + "category_id": 0, + "poly": [ + 301, + 1097, + 574, + 1097, + 574, + 1131, + 301, + 1131 + ], + "score": 0.893 + }, + { + "category_id": 0, + "poly": [ + 773, + 519, + 927, + 519, + 927, + 552, + 773, + 552 + ], + "score": 0.879 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 104, + 298, + 104 + ], + "score": 0.87 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 857, + 2088, + 857, + 2112, + 842, + 2112 + ], + "score": 0.615 + }, + { + "category_id": 13, + "poly": [ + 609, + 857, + 643, + 857, + 643, + 887, + 609, + 887 + ], + "score": 0.89, + "latex": "L _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 945, + 1007, + 1008, + 1007, + 1008, + 1039, + 945, + 1039 + ], + "score": 0.87, + "latex": "0 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 761, + 2003, + 823, + 2003, + 823, + 2032, + 761, + 2032 + ], + "score": 0.84, + "latex": "3 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 832, + 1499, + 951, + 1499, + 951, + 1530, + 832, + 1530 + ], + "score": 0.82, + "latex": "10 \\% { - } 3 0 \\% )" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 216.0, + 1405.0, + 216.0, + 1405.0, + 272.0, + 293.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 274.0, + 604.0, + 274.0, + 604.0, + 326.0, + 294.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1092.0, + 578.0, + 1092.0, + 578.0, + 1138.0, + 293.0, + 1138.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 515.0, + 934.0, + 515.0, + 934.0, + 558.0, + 768.0, + 558.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": [ + 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, + 1408.0, + 1405.0, + 1408.0, + 1405.0, + 1442.0, + 294.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1437.0, + 1406.0, + 1437.0, + 1406.0, + 1475.0, + 293.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1465.0, + 1408.0, + 1465.0, + 1408.0, + 1506.0, + 292.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1499.0, + 831.0, + 1499.0, + 831.0, + 1537.0, + 293.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 1499.0, + 1406.0, + 1499.0, + 1406.0, + 1537.0, + 952.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1531.0, + 1405.0, + 1531.0, + 1405.0, + 1562.0, + 293.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1560.0, + 1406.0, + 1560.0, + 1406.0, + 1597.0, + 293.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1591.0, + 1404.0, + 1591.0, + 1404.0, + 1625.0, + 294.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1618.0, + 1405.0, + 1618.0, + 1405.0, + 1657.0, + 293.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1649.0, + 1408.0, + 1649.0, + 1408.0, + 1690.0, + 292.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1682.0, + 1404.0, + 1682.0, + 1404.0, + 1716.0, + 294.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1713.0, + 1406.0, + 1713.0, + 1406.0, + 1750.0, + 293.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1739.0, + 379.0, + 1739.0, + 379.0, + 1779.0, + 292.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 580.0, + 1304.0, + 580.0, + 1304.0, + 617.0, + 395.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 614.0, + 1303.0, + 614.0, + 1303.0, + 645.0, + 394.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 641.0, + 1305.0, + 641.0, + 1305.0, + 678.0, + 393.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 674.0, + 1305.0, + 674.0, + 1305.0, + 709.0, + 394.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 706.0, + 1305.0, + 706.0, + 1305.0, + 737.0, + 395.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 734.0, + 1306.0, + 734.0, + 1306.0, + 769.0, + 394.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 765.0, + 1307.0, + 765.0, + 1307.0, + 799.0, + 394.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 796.0, + 1306.0, + 796.0, + 1306.0, + 828.0, + 395.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 826.0, + 1305.0, + 826.0, + 1305.0, + 861.0, + 393.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 857.0, + 608.0, + 857.0, + 608.0, + 891.0, + 393.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 857.0, + 1306.0, + 857.0, + 1306.0, + 891.0, + 644.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 887.0, + 1306.0, + 887.0, + 1306.0, + 921.0, + 392.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 918.0, + 1306.0, + 918.0, + 1306.0, + 949.0, + 393.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 949.0, + 1305.0, + 949.0, + 1305.0, + 980.0, + 394.0, + 980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 979.0, + 1304.0, + 979.0, + 1304.0, + 1011.0, + 395.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1008.0, + 944.0, + 1008.0, + 944.0, + 1042.0, + 393.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 1008.0, + 1305.0, + 1008.0, + 1305.0, + 1042.0, + 1009.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1043.0, + 625.0, + 1043.0, + 625.0, + 1071.0, + 393.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1145.0, + 1404.0, + 1145.0, + 1404.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, + 1213.0, + 292.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1209.0, + 1404.0, + 1209.0, + 1404.0, + 1243.0, + 296.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1239.0, + 1405.0, + 1239.0, + 1405.0, + 1276.0, + 293.0, + 1276.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": [ + 293.0, + 1298.0, + 1403.0, + 1298.0, + 1403.0, + 1336.0, + 293.0, + 1336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1330.0, + 1402.0, + 1330.0, + 1402.0, + 1366.0, + 293.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1361.0, + 700.0, + 1361.0, + 700.0, + 1394.0, + 294.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1790.0, + 1402.0, + 1790.0, + 1402.0, + 1824.0, + 296.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1819.0, + 1407.0, + 1819.0, + 1407.0, + 1856.0, + 293.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1849.0, + 1407.0, + 1849.0, + 1407.0, + 1885.0, + 294.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1881.0, + 1407.0, + 1881.0, + 1407.0, + 1916.0, + 292.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1913.0, + 1405.0, + 1913.0, + 1405.0, + 1945.0, + 293.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1939.0, + 1404.0, + 1939.0, + 1404.0, + 1979.0, + 292.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1973.0, + 1404.0, + 1973.0, + 1404.0, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2003.0, + 760.0, + 2003.0, + 760.0, + 2037.0, + 296.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 2003.0, + 1317.0, + 2003.0, + 1317.0, + 2037.0, + 824.0, + 2037.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": [ + 297, + 229, + 1405, + 229, + 1405, + 627, + 297, + 627 + ], + "score": 0.985 + }, + { + "category_id": 1, + "poly": [ + 297, + 1213, + 1404, + 1213, + 1404, + 1580, + 297, + 1580 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 710, + 1404, + 710, + 1404, + 895, + 298, + 895 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 299, + 909, + 1403, + 909, + 1403, + 1012, + 299, + 1012 + ], + "score": 0.976 + }, + { + "category_id": 8, + "poly": [ + 591, + 1031, + 1106, + 1031, + 1106, + 1120, + 591, + 1120 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 295, + 1136, + 1399, + 1136, + 1399, + 1201, + 295, + 1201 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 297, + 1664, + 1401, + 1664, + 1401, + 1729, + 297, + 1729 + ], + "score": 0.948 + }, + { + "category_id": 0, + "poly": [ + 298, + 657, + 1034, + 657, + 1034, + 692, + 298, + 692 + ], + "score": 0.923 + }, + { + "category_id": 0, + "poly": [ + 300, + 1611, + 561, + 1611, + 561, + 1646, + 300, + 1646 + ], + "score": 0.913 + }, + { + "category_id": 8, + "poly": [ + 729, + 1746, + 968, + 1746, + 968, + 1782, + 729, + 1782 + ], + "score": 0.879 + }, + { + "category_id": 2, + "poly": [ + 295, + 1804, + 1406, + 1804, + 1406, + 2034, + 295, + 2034 + ], + "score": 0.872 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 852, + 76, + 852, + 104, + 300, + 104 + ], + "score": 0.762 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.757 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 854, + 76, + 854, + 104, + 299, + 104 + ], + "score": 0.102 + }, + { + "category_id": 14, + "poly": [ + 590, + 1026, + 1107, + 1026, + 1107, + 1121, + 590, + 1121 + ], + "score": 0.93, + "latex": "\\operatorname* { m i n } _ { \\pmb { \\theta } _ { \\tau } } \\ \\frac { 1 } { N } \\sum _ { n = 1 } ^ { N } \\mathcal { L } \\left( f ( x _ { \\tau } ^ { ( n ) } ; \\pmb { \\theta } _ { \\tau } ) , y _ { \\tau } ^ { ( n ) } \\right) + \\lambda R ( \\pmb { \\theta } _ { \\tau } )" + }, + { + "category_id": 13, + "poly": [ + 374, + 1137, + 451, + 1137, + 451, + 1171, + 374, + 1171 + ], + "score": 0.92, + "latex": "f ( \\cdot ; \\pmb \\theta )" + }, + { + "category_id": 13, + "poly": [ + 1227, + 1137, + 1298, + 1137, + 1298, + 1170, + 1227, + 1170 + ], + "score": 0.92, + "latex": "\\mathcal L ( \\cdot , \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 1154, + 941, + 1334, + 941, + 1334, + 983, + 1154, + 983 + ], + "score": 0.91, + "latex": "\\{ x _ { \\tau } ^ { ( n ) } , y _ { \\tau } ^ { ( n ) } \\} _ { n = 1 } ^ { N }" + }, + { + "category_id": 14, + "poly": [ + 730, + 1744, + 967, + 1744, + 967, + 1783, + 730, + 1783 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\pmb { \\theta } _ { \\tau } = \\pmb { \\theta } _ { \\mathrm { p r e t r a i n e d } } + \\delta _ { \\tau } , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 675, + 1168, + 728, + 1168, + 728, + 1201, + 675, + 1201 + ], + "score": 0.91, + "latex": "R ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 713, + 353, + 971, + 353, + 971, + 385, + 713, + 385 + ], + "score": 0.9, + "latex": "\\theta _ { \\mathrm { t a s k } } = \\theta _ { \\mathrm { p r e t r a i n e d } } + \\delta _ { \\mathrm { t a s k } }" + }, + { + "category_id": 13, + "poly": [ + 742, + 948, + 820, + 948, + 820, + 978, + 742, + 978 + ], + "score": 0.9, + "latex": "\\tau \\in \\mathcal { T }" + }, + { + "category_id": 13, + "poly": [ + 859, + 384, + 910, + 384, + 910, + 414, + 859, + 414 + ], + "score": 0.89, + "latex": "\\delta _ { \\mathrm { t a s k } }" + }, + { + "category_id": 13, + "poly": [ + 1017, + 981, + 1049, + 981, + 1049, + 1010, + 1017, + 1010 + ], + "score": 0.89, + "latex": "\\pmb { \\theta } _ { \\tau }" + }, + { + "category_id": 13, + "poly": [ + 832, + 565, + 895, + 565, + 895, + 595, + 832, + 595 + ], + "score": 0.88, + "latex": "0 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 789, + 415, + 822, + 415, + 822, + 444, + 789, + 444 + ], + "score": 0.88, + "latex": "L _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1136, + 1667, + 1167, + 1667, + 1167, + 1696, + 1136, + 1696 + ], + "score": 0.87, + "latex": "\\delta _ { \\tau }" + }, + { + "category_id": 13, + "poly": [ + 298, + 383, + 396, + 383, + 396, + 416, + 298, + 416 + ], + "score": 0.86, + "latex": "\\theta _ { \\mathrm { p r e t r a i n e d } }" + }, + { + "category_id": 13, + "poly": [ + 621, + 1697, + 719, + 1697, + 719, + 1731, + 621, + 1731 + ], + "score": 0.83, + "latex": "\\theta _ { \\mathrm { p r e t r a i n e d } }" + }, + { + "category_id": 13, + "poly": [ + 1251, + 1171, + 1270, + 1171, + 1270, + 1195, + 1251, + 1195 + ], + "score": 0.82, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 666, + 1489, + 692, + 1489, + 692, + 1517, + 666, + 1517 + ], + "score": 0.8, + "latex": "\\tau" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 656.0, + 1037.0, + 656.0, + 1037.0, + 696.0, + 293.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1606.0, + 564.0, + 1606.0, + 564.0, + 1653.0, + 291.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1800.0, + 1406.0, + 1800.0, + 1406.0, + 1842.0, + 331.0, + 1842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1831.0, + 395.0, + 1831.0, + 395.0, + 1864.0, + 294.0, + 1864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1857.0, + 1407.0, + 1857.0, + 1407.0, + 1900.0, + 326.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1884.0, + 1407.0, + 1884.0, + 1407.0, + 1929.0, + 292.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1918.0, + 1404.0, + 1918.0, + 1404.0, + 1953.0, + 294.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1947.0, + 1149.0, + 1947.0, + 1149.0, + 1978.0, + 294.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1972.0, + 1406.0, + 1972.0, + 1406.0, + 2012.0, + 330.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2004.0, + 1059.0, + 2004.0, + 1059.0, + 2036.0, + 295.0, + 2036.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": [ + 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, + 230.0, + 1405.0, + 230.0, + 1405.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 257.0, + 1406.0, + 257.0, + 1406.0, + 301.0, + 292.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 293.0, + 1403.0, + 293.0, + 1403.0, + 326.0, + 295.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 320.0, + 1405.0, + 320.0, + 1405.0, + 357.0, + 294.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 349.0, + 712.0, + 349.0, + 712.0, + 392.0, + 291.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 972.0, + 349.0, + 1408.0, + 349.0, + 1408.0, + 392.0, + 972.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 381.0, + 297.0, + 381.0, + 297.0, + 422.0, + 294.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 381.0, + 858.0, + 381.0, + 858.0, + 422.0, + 397.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 911.0, + 381.0, + 1407.0, + 381.0, + 1407.0, + 422.0, + 911.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 410.0, + 788.0, + 410.0, + 788.0, + 453.0, + 292.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 410.0, + 1406.0, + 410.0, + 1406.0, + 453.0, + 823.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 442.0, + 1406.0, + 442.0, + 1406.0, + 479.0, + 292.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 475.0, + 1407.0, + 475.0, + 1407.0, + 508.0, + 292.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 506.0, + 1405.0, + 506.0, + 1405.0, + 538.0, + 295.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 532.0, + 1403.0, + 532.0, + 1403.0, + 571.0, + 294.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 559.0, + 831.0, + 559.0, + 831.0, + 606.0, + 292.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 559.0, + 1405.0, + 559.0, + 1405.0, + 606.0, + 896.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 594.0, + 1143.0, + 594.0, + 1143.0, + 633.0, + 292.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1213.0, + 1402.0, + 1213.0, + 1402.0, + 1249.0, + 294.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1246.0, + 1405.0, + 1246.0, + 1405.0, + 1280.0, + 295.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1276.0, + 1405.0, + 1276.0, + 1405.0, + 1310.0, + 295.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1305.0, + 1406.0, + 1305.0, + 1406.0, + 1343.0, + 294.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1333.0, + 1405.0, + 1333.0, + 1405.0, + 1372.0, + 292.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1365.0, + 1406.0, + 1365.0, + 1406.0, + 1404.0, + 291.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1394.0, + 1405.0, + 1394.0, + 1405.0, + 1433.0, + 292.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1428.0, + 1406.0, + 1428.0, + 1406.0, + 1462.0, + 295.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1457.0, + 1407.0, + 1457.0, + 1407.0, + 1495.0, + 294.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1489.0, + 665.0, + 1489.0, + 665.0, + 1523.0, + 294.0, + 1523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 1489.0, + 1404.0, + 1489.0, + 1404.0, + 1523.0, + 693.0, + 1523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1516.0, + 1406.0, + 1516.0, + 1406.0, + 1557.0, + 292.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1550.0, + 620.0, + 1550.0, + 620.0, + 1583.0, + 295.0, + 1583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 708.0, + 1404.0, + 708.0, + 1404.0, + 747.0, + 295.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 741.0, + 1403.0, + 741.0, + 1403.0, + 776.0, + 295.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 772.0, + 1406.0, + 772.0, + 1406.0, + 808.0, + 294.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 804.0, + 1405.0, + 804.0, + 1405.0, + 837.0, + 293.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 833.0, + 1406.0, + 833.0, + 1406.0, + 869.0, + 293.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 862.0, + 712.0, + 862.0, + 712.0, + 897.0, + 295.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 910.0, + 1405.0, + 910.0, + 1405.0, + 945.0, + 295.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 280.0, + 934.0, + 741.0, + 934.0, + 741.0, + 1001.0, + 280.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 821.0, + 934.0, + 1153.0, + 934.0, + 1153.0, + 1001.0, + 821.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1339.0, + 952.0, + 1350.0, + 952.0, + 1350.0, + 964.0, + 1339.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 946.0, + 1407.0, + 946.0, + 1407.0, + 983.0, + 1354.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1335.0, + 962.0, + 1346.0, + 962.0, + 1346.0, + 987.0, + 1335.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 981.0, + 1016.0, + 981.0, + 1016.0, + 1013.0, + 297.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 981.0, + 1402.0, + 981.0, + 1402.0, + 1013.0, + 1050.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1136.0, + 373.0, + 1136.0, + 373.0, + 1172.0, + 296.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 1136.0, + 1226.0, + 1136.0, + 1226.0, + 1172.0, + 452.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1299.0, + 1136.0, + 1404.0, + 1136.0, + 1404.0, + 1172.0, + 1299.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1165.0, + 674.0, + 1165.0, + 674.0, + 1205.0, + 295.0, + 1205.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 1165.0, + 1250.0, + 1165.0, + 1250.0, + 1205.0, + 729.0, + 1205.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1271.0, + 1165.0, + 1283.0, + 1165.0, + 1283.0, + 1205.0, + 1271.0, + 1205.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1664.0, + 1135.0, + 1664.0, + 1135.0, + 1700.0, + 295.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1168.0, + 1664.0, + 1403.0, + 1664.0, + 1403.0, + 1700.0, + 1168.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1695.0, + 620.0, + 1695.0, + 620.0, + 1734.0, + 292.0, + 1734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 1695.0, + 1396.0, + 1695.0, + 1396.0, + 1734.0, + 720.0, + 1734.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 727, + 1404, + 727, + 1404, + 914, + 296, + 914 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 296, + 1204, + 1405, + 1204, + 1405, + 1389, + 296, + 1389 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 381, + 1407, + 381, + 1407, + 538, + 297, + 538 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1479, + 1404, + 1479, + 1404, + 1573, + 298, + 1573 + ], + "score": 0.972 + }, + { + "category_id": 8, + "poly": [ + 504, + 1583, + 1189, + 1583, + 1189, + 1672, + 504, + 1672 + ], + "score": 0.955 + }, + { + "category_id": 8, + "poly": [ + 580, + 546, + 1116, + 546, + 1116, + 635, + 580, + 635 + ], + "score": 0.955 + }, + { + "category_id": 8, + "poly": [ + 458, + 272, + 1237, + 272, + 1237, + 359, + 458, + 359 + ], + "score": 0.938 + }, + { + "category_id": 8, + "poly": [ + 376, + 1110, + 1316, + 1110, + 1316, + 1200, + 376, + 1200 + ], + "score": 0.936 + }, + { + "category_id": 1, + "poly": [ + 296, + 1716, + 1406, + 1716, + 1406, + 1938, + 296, + 1938 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 295, + 1039, + 1405, + 1039, + 1405, + 1101, + 295, + 1101 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 296, + 926, + 1401, + 926, + 1401, + 991, + 296, + 991 + ], + "score": 0.931 + }, + { + "category_id": 1, + "poly": [ + 298, + 1676, + 831, + 1676, + 831, + 1710, + 298, + 1710 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 296, + 228, + 1053, + 228, + 1053, + 263, + 296, + 263 + ], + "score": 0.923 + }, + { + "category_id": 0, + "poly": [ + 297, + 679, + 992, + 679, + 992, + 712, + 297, + 712 + ], + "score": 0.88 + }, + { + "category_id": 8, + "poly": [ + 914, + 995, + 1178, + 995, + 1178, + 1034, + 914, + 1034 + ], + "score": 0.851 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 855, + 74, + 855, + 106, + 297, + 106 + ], + "score": 0.81 + }, + { + "category_id": 2, + "poly": [ + 298, + 1946, + 1403, + 1946, + 1403, + 2036, + 298, + 2036 + ], + "score": 0.8 + }, + { + "category_id": 8, + "poly": [ + 845, + 1395, + 1254, + 1395, + 1254, + 1470, + 845, + 1470 + ], + "score": 0.779 + }, + { + "category_id": 8, + "poly": [ + 427, + 1394, + 1256, + 1394, + 1256, + 1471, + 427, + 1471 + ], + "score": 0.703 + }, + { + "category_id": 8, + "poly": [ + 517, + 996, + 1174, + 996, + 1174, + 1035, + 517, + 1035 + ], + "score": 0.699 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.661 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 859, + 2087, + 859, + 2112, + 841, + 2112 + ], + "score": 0.508 + }, + { + "category_id": 8, + "poly": [ + 443, + 1396, + 706, + 1396, + 706, + 1470, + 443, + 1470 + ], + "score": 0.313 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 855, + 74, + 855, + 106, + 297, + 106 + ], + "score": 0.168 + }, + { + "category_id": 8, + "poly": [ + 519, + 1000, + 698, + 1000, + 698, + 1033, + 519, + 1033 + ], + "score": 0.144 + }, + { + "category_id": 14, + "poly": [ + 457, + 267, + 1239, + 267, + 1239, + 363, + 457, + 363 + ], + "score": 0.95, + "latex": "\\operatorname* { m i n } _ { \\delta _ { \\tau } } \\ \\frac { 1 } { N } \\sum _ { n = 1 } ^ { N } \\mathcal { L } \\left( f ( x _ { \\tau } ^ { ( n ) } ; \\theta _ { \\mathrm { p r e t r a i n e d } } + \\delta _ { \\tau } ) , y _ { \\tau } ^ { ( n ) } \\right) + \\lambda R ( \\theta _ { \\mathrm { p r e t r a i n e d } } + \\delta _ { \\tau } ) ." + }, + { + "category_id": 14, + "poly": [ + 378, + 1107, + 1321, + 1107, + 1321, + 1202, + 378, + 1202 + ], + "score": 0.94, + "latex": "\\operatorname* { m i n } _ { \\alpha _ { \\tau } , \\mathbf { w } _ { \\tau } } \\mathbb { E } _ { \\mathbf { z } _ { \\tau } \\sim p ( \\mathbf { z } _ { \\tau } ; \\alpha _ { \\tau } ) } \\left[ \\frac { 1 } { N } \\sum _ { n = 1 } ^ { N } \\mathcal { L } \\left( f ( x _ { \\tau } ^ { ( n ) } ; \\boldsymbol { \\theta } _ { \\mathrm { p r e t r a i n e d } } + \\mathbf { z } _ { \\tau } \\odot \\mathbf { w } _ { \\tau } , ) , y _ { \\tau } ^ { ( n ) } \\right) + \\lambda \\lVert \\delta _ { \\tau } \\rVert _ { 0 } \\right] ." + }, + { + "category_id": 14, + "poly": [ + 580, + 540, + 1118, + 540, + 1118, + 636, + 580, + 636 + ], + "score": 0.94, + "latex": "R ( \\theta _ { \\mathrm { p r e t r a i n e d } } + \\delta _ { \\tau } ) = \\| \\pmb { \\delta } _ { \\tau } \\| _ { 0 } = \\sum _ { i = 1 } ^ { d } \\mathbb { 1 } \\{ \\pmb { \\delta } _ { \\tau , i } \\neq 0 \\} ." + }, + { + "category_id": 14, + "poly": [ + 506, + 1577, + 1193, + 1577, + 1193, + 1674, + 506, + 1674 + ], + "score": 0.94, + "latex": "\\mathbb { E } \\left[ \\left. \\pmb { \\delta } _ { \\tau } \\right. _ { 0 } \\right] = \\sum _ { i = 1 } ^ { d } \\mathbb { E } \\left[ \\mathbb { 1 } \\left\\{ \\mathbf { z } _ { \\tau , i } > 0 \\right\\} \\right] = \\sum _ { i = 1 } ^ { d } \\sigma \\left( \\alpha _ { \\tau , i } - \\log \\frac { - l } { r } \\right) ." + }, + { + "category_id": 13, + "poly": [ + 410, + 473, + 668, + 473, + 668, + 508, + 410, + 508 + ], + "score": 0.93, + "latex": "\\lVert \\delta _ { \\tau } \\rVert _ { 0 } \\ll \\lVert \\bar { \\pmb { \\theta } } _ { \\mathrm { p r e t r a i n e d } } \\rVert _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1109, + 1478, + 1179, + 1478, + 1179, + 1514, + 1109, + 1514 + ], + "score": 0.92, + "latex": "( l , r ) ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 329, + 1510, + 399, + 1510, + 399, + 1545, + 329, + 1545 + ], + "score": 0.92, + "latex": "[ 0 , 1 ] ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 367, + 1295, + 437, + 1295, + 437, + 1330, + 367, + 1330 + ], + "score": 0.92, + "latex": "[ 0 , 1 ] ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 1259, + 1040, + 1371, + 1040, + 1371, + 1073, + 1259, + 1073 + ], + "score": 0.91, + "latex": "p ( \\mathbf { z } _ { \\tau } ; \\pmb { \\alpha } _ { \\tau } )" + }, + { + "category_id": 14, + "poly": [ + 310, + 1713, + 1403, + 1713, + 1403, + 1809, + 310, + 1809 + ], + "score": 0.91, + "latex": "\\operatorname* { m i n } _ { \\tau _ { \\tau } , \\mathbf { w } _ { \\tau } } \\mathbb { E } _ { \\mathbf { u } \\sim U [ \\mathbf { 0 } , 1 ] } \\left[ \\frac { 1 } { N } \\sum _ { n = 1 } ^ { N } \\mathcal { L } \\left( f ( x _ { \\tau } ^ { ( n ) } ; \\boldsymbol { \\theta } _ { \\mathrm { p r e r a i n e d } } + \\mathbf { z } _ { \\tau } \\odot \\mathbf { w } _ { \\tau } , ) , y _ { \\tau } ^ { ( n ) } \\right) \\right] + \\lambda \\sum _ { i = 1 } ^ { d } \\sigma \\left( \\alpha _ { \\tau , i } - \\log \\frac { - l } { r } \\right) ," + }, + { + "category_id": 13, + "poly": [ + 1173, + 1904, + 1340, + 1904, + 1340, + 1936, + 1173, + 1936 + ], + "score": 0.91, + "latex": "\\pmb { \\delta } _ { \\tau } = \\mathbf { z } _ { \\tau } \\odot \\mathbf { w } _ { \\tau }" + }, + { + "category_id": 13, + "poly": [ + 424, + 1975, + 509, + 1975, + 509, + 2005, + 424, + 2005 + ], + "score": 0.9, + "latex": "\\theta _ { \\mathrm { p r e t r a i n e d } }" + }, + { + "category_id": 14, + "poly": [ + 442, + 1392, + 1255, + 1392, + 1255, + 1475, + 442, + 1475 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { \\mathbf { u } \\sim U ( \\mathbf { 0 } , \\mathbf { 1 } ) , \\qquad \\mathbf { s } _ { \\tau } = \\sigma \\left( \\log \\mathbf { u } - \\log ( 1 - \\mathbf { u } ) + \\alpha _ { \\tau } \\right) , } \\\\ { \\bar { \\mathbf { s } } _ { \\tau } = \\mathbf { s } _ { \\tau } \\times ( r - l ) + l , \\qquad \\mathbf { z } _ { \\tau } = \\operatorname* { m i n } ( \\mathbf { 1 } , \\operatorname* { m a x } ( \\mathbf { 0 } , \\bar { \\mathbf { s } } _ { \\tau } ) ) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 507, + 1511, + 713, + 1511, + 713, + 1544, + 507, + 1544 + ], + "score": 0.9, + "latex": "\\operatorname* { m i n } ( \\mathbf { 1 } , \\operatorname* { m a x } ( \\mathbf { 0 } , \\cdot ) )" + }, + { + "category_id": 13, + "poly": [ + 468, + 1482, + 535, + 1482, + 535, + 1509, + 468, + 1509 + ], + "score": 0.9, + "latex": "r > 1" + }, + { + "category_id": 13, + "poly": [ + 1079, + 413, + 1178, + 413, + 1178, + 447, + 1079, + 447 + ], + "score": 0.9, + "latex": "\\theta _ { \\mathrm { p r e t r a i n e d } }" + }, + { + "category_id": 13, + "poly": [ + 357, + 1481, + 420, + 1481, + 420, + 1509, + 357, + 1509 + ], + "score": 0.89, + "latex": "l < 0" + }, + { + "category_id": 13, + "poly": [ + 964, + 506, + 998, + 506, + 998, + 535, + 964, + 535 + ], + "score": 0.89, + "latex": "L _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1269, + 762, + 1305, + 762, + 1305, + 791, + 1269, + 791 + ], + "score": 0.88, + "latex": "L _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 347, + 761, + 382, + 761, + 382, + 791, + 347, + 791 + ], + "score": 0.88, + "latex": "L _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1233, + 444, + 1264, + 444, + 1264, + 474, + 1233, + 474 + ], + "score": 0.88, + "latex": "\\delta _ { \\tau }" + }, + { + "category_id": 13, + "poly": [ + 1334, + 1845, + 1364, + 1845, + 1364, + 1874, + 1334, + 1874 + ], + "score": 0.88, + "latex": "\\delta _ { \\tau }" + }, + { + "category_id": 13, + "poly": [ + 783, + 929, + 815, + 929, + 815, + 960, + 783, + 960 + ], + "score": 0.88, + "latex": "\\delta _ { \\tau }" + }, + { + "category_id": 13, + "poly": [ + 896, + 1484, + 926, + 1484, + 926, + 1511, + 896, + 1511 + ], + "score": 0.88, + "latex": "{ \\bf s } _ { \\tau }" + }, + { + "category_id": 14, + "poly": [ + 914, + 991, + 1181, + 991, + 1181, + 1034, + 914, + 1034 + ], + "score": 0.87, + "latex": "\\mathbf { z } _ { \\tau } \\in \\{ 0 , 1 \\} ^ { d } , \\mathbf { w } _ { \\tau } \\in \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 607, + 1545, + 640, + 1545, + 640, + 1572, + 607, + 1572 + ], + "score": 0.87, + "latex": "L _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 994, + 1045, + 1025, + 1045, + 1025, + 1070, + 994, + 1070 + ], + "score": 0.87, + "latex": "{ \\bf z } _ { \\tau }" + }, + { + "category_id": 13, + "poly": [ + 687, + 1075, + 723, + 1075, + 723, + 1100, + 687, + 1100 + ], + "score": 0.87, + "latex": "\\pmb { \\alpha } _ { \\tau }" + }, + { + "category_id": 13, + "poly": [ + 832, + 1209, + 864, + 1209, + 864, + 1235, + 832, + 1235 + ], + "score": 0.86, + "latex": "{ \\bf z } _ { \\tau }" + }, + { + "category_id": 13, + "poly": [ + 873, + 682, + 908, + 682, + 908, + 712, + 873, + 712 + ], + "score": 0.86, + "latex": "L _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1106, + 1331, + 1138, + 1331, + 1138, + 1357, + 1106, + 1357 + ], + "score": 0.86, + "latex": "{ \\bf z } _ { \\tau }" + }, + { + "category_id": 13, + "poly": [ + 727, + 1976, + 759, + 1976, + 759, + 2002, + 727, + 2002 + ], + "score": 0.86, + "latex": "L _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1191, + 1269, + 1223, + 1269, + 1223, + 1296, + 1191, + 1296 + ], + "score": 0.86, + "latex": "{ \\bf z } _ { \\tau }" + }, + { + "category_id": 13, + "poly": [ + 594, + 1877, + 625, + 1877, + 625, + 1904, + 594, + 1904 + ], + "score": 0.85, + "latex": "{ \\bf z } _ { \\tau }" + }, + { + "category_id": 13, + "poly": [ + 1363, + 1819, + 1400, + 1819, + 1400, + 1843, + 1363, + 1843 + ], + "score": 0.85, + "latex": "\\pmb { \\alpha } _ { \\tau }" + }, + { + "category_id": 14, + "poly": [ + 517, + 991, + 1181, + 991, + 1181, + 1034, + 517, + 1034 + ], + "score": 0.84, + "latex": "\\begin{array} { r } { \\delta _ { \\tau } = \\mathbf { z } _ { \\tau } \\odot \\mathbf { w } _ { \\tau } , \\qquad \\mathbf { z } _ { \\tau } \\in \\{ 0 , 1 \\} ^ { d } , \\mathbf { w } _ { \\tau } \\in \\mathbb { R } ^ { d } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 406, + 1879, + 428, + 1879, + 428, + 1902, + 406, + 1902 + ], + "score": 0.52, + "latex": "\\mathbf { u }" + }, + { + "category_id": 13, + "poly": [ + 941, + 1363, + 963, + 1363, + 963, + 1385, + 941, + 1385 + ], + "score": 0.33, + "latex": "\\mathbf { u }" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 678.0, + 872.0, + 678.0, + 872.0, + 716.0, + 293.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 678.0, + 994.0, + 678.0, + 994.0, + 716.0, + 909.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 856.0, + 72.0, + 856.0, + 109.0, + 297.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1939.0, + 1404.0, + 1939.0, + 1404.0, + 1985.0, + 327.0, + 1985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1973.0, + 423.0, + 1973.0, + 423.0, + 2009.0, + 293.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 1973.0, + 726.0, + 1973.0, + 726.0, + 2009.0, + 510.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 760.0, + 1973.0, + 1269.0, + 1973.0, + 1269.0, + 2009.0, + 760.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1999.0, + 1404.0, + 1999.0, + 1404.0, + 2041.0, + 327.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 856.0, + 72.0, + 856.0, + 109.0, + 297.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 727.0, + 1405.0, + 727.0, + 1405.0, + 764.0, + 294.0, + 764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 758.0, + 346.0, + 758.0, + 346.0, + 796.0, + 294.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 383.0, + 758.0, + 1268.0, + 758.0, + 1268.0, + 796.0, + 383.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1306.0, + 758.0, + 1402.0, + 758.0, + 1402.0, + 796.0, + 1306.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 790.0, + 1405.0, + 790.0, + 1405.0, + 826.0, + 294.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 821.0, + 1406.0, + 821.0, + 1406.0, + 855.0, + 293.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 849.0, + 1406.0, + 849.0, + 1406.0, + 887.0, + 293.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 882.0, + 715.0, + 882.0, + 715.0, + 917.0, + 293.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1204.0, + 831.0, + 1204.0, + 831.0, + 1239.0, + 296.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 1204.0, + 1403.0, + 1204.0, + 1403.0, + 1239.0, + 865.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1234.0, + 1403.0, + 1234.0, + 1403.0, + 1271.0, + 294.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1263.0, + 1190.0, + 1263.0, + 1190.0, + 1300.0, + 293.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1224.0, + 1263.0, + 1406.0, + 1263.0, + 1406.0, + 1300.0, + 1224.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1291.0, + 366.0, + 1291.0, + 366.0, + 1333.0, + 291.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 1291.0, + 1407.0, + 1291.0, + 1407.0, + 1333.0, + 438.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1324.0, + 1105.0, + 1324.0, + 1105.0, + 1361.0, + 294.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1139.0, + 1324.0, + 1408.0, + 1324.0, + 1408.0, + 1361.0, + 1139.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1355.0, + 940.0, + 1355.0, + 940.0, + 1393.0, + 293.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 1355.0, + 1282.0, + 1355.0, + 1282.0, + 1393.0, + 964.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 379.0, + 1405.0, + 379.0, + 1405.0, + 418.0, + 295.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 410.0, + 1078.0, + 410.0, + 1078.0, + 449.0, + 294.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1179.0, + 410.0, + 1405.0, + 410.0, + 1405.0, + 449.0, + 1179.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 441.0, + 1232.0, + 441.0, + 1232.0, + 480.0, + 294.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1265.0, + 441.0, + 1405.0, + 441.0, + 1405.0, + 480.0, + 1265.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 473.0, + 409.0, + 473.0, + 409.0, + 510.0, + 295.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 669.0, + 473.0, + 1405.0, + 473.0, + 1405.0, + 510.0, + 669.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 500.0, + 963.0, + 500.0, + 963.0, + 543.0, + 294.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 500.0, + 1361.0, + 500.0, + 1361.0, + 543.0, + 999.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1475.0, + 356.0, + 1475.0, + 356.0, + 1515.0, + 292.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 421.0, + 1475.0, + 467.0, + 1475.0, + 467.0, + 1515.0, + 421.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 1475.0, + 895.0, + 1475.0, + 895.0, + 1515.0, + 536.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 1475.0, + 1108.0, + 1475.0, + 1108.0, + 1515.0, + 927.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1180.0, + 1475.0, + 1405.0, + 1475.0, + 1405.0, + 1515.0, + 1180.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1508.0, + 328.0, + 1508.0, + 328.0, + 1547.0, + 292.0, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 1508.0, + 506.0, + 1508.0, + 506.0, + 1547.0, + 400.0, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.0, + 1508.0, + 1405.0, + 1508.0, + 1405.0, + 1547.0, + 714.0, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1542.0, + 606.0, + 1542.0, + 606.0, + 1576.0, + 294.0, + 1576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 641.0, + 1542.0, + 720.0, + 1542.0, + 720.0, + 1576.0, + 641.0, + 1576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1705.0, + 309.0, + 1705.0, + 309.0, + 1815.0, + 295.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 1705.0, + 1412.0, + 1705.0, + 1412.0, + 1815.0, + 1404.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1807.0, + 1362.0, + 1807.0, + 1362.0, + 1850.0, + 294.0, + 1850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1807.0, + 1404.0, + 1807.0, + 1404.0, + 1850.0, + 1401.0, + 1850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1836.0, + 1333.0, + 1836.0, + 1333.0, + 1881.0, + 291.0, + 1881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1365.0, + 1836.0, + 1407.0, + 1836.0, + 1407.0, + 1881.0, + 1365.0, + 1881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1872.0, + 405.0, + 1872.0, + 405.0, + 1908.0, + 295.0, + 1908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 1872.0, + 593.0, + 1872.0, + 593.0, + 1908.0, + 429.0, + 1908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 1872.0, + 1406.0, + 1872.0, + 1406.0, + 1908.0, + 626.0, + 1908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1902.0, + 1172.0, + 1902.0, + 1172.0, + 1941.0, + 294.0, + 1941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1341.0, + 1902.0, + 1359.0, + 1902.0, + 1359.0, + 1941.0, + 1341.0, + 1941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1036.0, + 993.0, + 1036.0, + 993.0, + 1075.0, + 294.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1026.0, + 1036.0, + 1258.0, + 1036.0, + 1258.0, + 1075.0, + 1026.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1372.0, + 1036.0, + 1406.0, + 1036.0, + 1406.0, + 1075.0, + 1372.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1065.0, + 686.0, + 1065.0, + 686.0, + 1108.0, + 295.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 1065.0, + 737.0, + 1065.0, + 737.0, + 1108.0, + 724.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 925.0, + 782.0, + 925.0, + 782.0, + 965.0, + 294.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.0, + 925.0, + 1406.0, + 925.0, + 1406.0, + 965.0, + 816.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 954.0, + 383.0, + 954.0, + 383.0, + 998.0, + 293.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1669.0, + 835.0, + 1669.0, + 835.0, + 1718.0, + 295.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 223.0, + 1056.0, + 223.0, + 1056.0, + 270.0, + 295.0, + 270.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 772, + 1404, + 772, + 1404, + 1057, + 297, + 1057 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 479, + 1404, + 479, + 1404, + 694, + 297, + 694 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1350, + 1404, + 1350, + 1404, + 1808, + 297, + 1808 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 279, + 1403, + 279, + 1403, + 465, + 298, + 465 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 295, + 1186, + 970, + 1186, + 970, + 1218, + 295, + 1218 + ], + "score": 0.919 + }, + { + "category_id": 0, + "poly": [ + 299, + 1301, + 648, + 1301, + 648, + 1333, + 299, + 1333 + ], + "score": 0.905 + }, + { + "category_id": 0, + "poly": [ + 300, + 723, + 709, + 723, + 709, + 755, + 300, + 755 + ], + "score": 0.904 + }, + { + "category_id": 0, + "poly": [ + 300, + 1247, + 559, + 1247, + 559, + 1283, + 300, + 1283 + ], + "score": 0.892 + }, + { + "category_id": 2, + "poly": [ + 295, + 1834, + 1406, + 1834, + 1406, + 2034, + 295, + 2034 + ], + "score": 0.862 + }, + { + "category_id": 8, + "poly": [ + 297, + 1074, + 1404, + 1074, + 1404, + 1170, + 297, + 1170 + ], + "score": 0.825 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2111, + 841, + 2111 + ], + "score": 0.768 + }, + { + "category_id": 1, + "poly": [ + 300, + 229, + 1271, + 229, + 1271, + 262, + 300, + 262 + ], + "score": 0.592 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 852, + 76, + 852, + 104, + 300, + 104 + ], + "score": 0.549 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 854, + 75, + 854, + 104, + 299, + 104 + ], + "score": 0.426 + }, + { + "category_id": 0, + "poly": [ + 300, + 229, + 1271, + 229, + 1271, + 262, + 300, + 262 + ], + "score": 0.395 + }, + { + "category_id": 1, + "poly": [ + 297, + 1074, + 1404, + 1074, + 1404, + 1170, + 297, + 1170 + ], + "score": 0.126 + }, + { + "category_id": 13, + "poly": [ + 665, + 990, + 760, + 990, + 760, + 1027, + 665, + 1027 + ], + "score": 0.93, + "latex": "i \\in g ( j )" + }, + { + "category_id": 14, + "poly": [ + 310, + 1068, + 1403, + 1068, + 1403, + 1172, + 310, + 1172 + ], + "score": 0.92, + "latex": "\\Sigma \\left[ \\left. \\delta _ { \\tau } \\right. _ { 0 } \\right] = \\sum _ { j = 1 } ^ { G } \\sum _ { i \\in g ( j ) } \\mathbb { E } \\left[ \\mathbb { I } \\left\\{ \\mathbf { z } _ { \\tau , i } \\cdot \\mathbf { z } _ { \\tau } ^ { g } > 0 \\right\\} \\right] = \\sum _ { j = 1 } ^ { G } \\sum _ { i \\in g ( j ) } \\sigma \\left( \\alpha _ { \\tau , i } - \\log { \\frac { - l } { r } } \\right) \\times \\sigma \\left( \\alpha _ { \\tau } ^ { j } - \\log { \\frac { - l } { r } } \\right) ," + }, + { + "category_id": 13, + "poly": [ + 608, + 371, + 768, + 371, + 768, + 406, + 608, + 406 + ], + "score": 0.92, + "latex": "\\mathbb { E } \\left[ \\lVert \\pmb { \\delta } _ { \\tau } \\rVert _ { 0 } \\right] < \\eta" + }, + { + "category_id": 13, + "poly": [ + 795, + 990, + 1058, + 990, + 1058, + 1030, + 795, + 1030 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\delta _ { \\tau , i } ^ { j } = \\mathbf { z } _ { \\tau , i } \\times \\mathbf { z } _ { \\tau } ^ { j } \\times \\mathbf { w } _ { \\tau , i } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 479, + 509, + 568, + 509, + 568, + 539, + 479, + 539 + ], + "score": 0.92, + "latex": "t \\% \\times \\bar { d }" + }, + { + "category_id": 13, + "poly": [ + 579, + 926, + 630, + 926, + 630, + 959, + 579, + 959 + ], + "score": 0.92, + "latex": "g ( j )" + }, + { + "category_id": 13, + "poly": [ + 1117, + 957, + 1168, + 957, + 1168, + 990, + 1117, + 990 + ], + "score": 0.91, + "latex": "g ( j )" + }, + { + "category_id": 13, + "poly": [ + 298, + 926, + 497, + 926, + 497, + 960, + 298, + 960 + ], + "score": 0.91, + "latex": "\\{ g ( 1 ) , \\ldots , g ( G ) \\}" + }, + { + "category_id": 13, + "poly": [ + 933, + 1920, + 1132, + 1920, + 1132, + 1950, + 933, + 1950 + ], + "score": 0.91, + "latex": "\\pmb { \\delta } _ { \\tau } = \\pmb { \\theta } _ { \\tau } - \\pmb { \\theta } _ { \\mathrm { p r e t r a i n e d } }" + }, + { + "category_id": 13, + "poly": [ + 1223, + 926, + 1274, + 926, + 1274, + 960, + 1223, + 960 + ], + "score": 0.9, + "latex": "g ( j )" + }, + { + "category_id": 13, + "poly": [ + 504, + 956, + 535, + 956, + 535, + 990, + 504, + 990 + ], + "score": 0.9, + "latex": "\\mathbf { z } _ { \\tau } ^ { j }" + }, + { + "category_id": 13, + "poly": [ + 1219, + 993, + 1253, + 993, + 1253, + 1023, + 1219, + 1023 + ], + "score": 0.89, + "latex": "L _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 848, + 571, + 879, + 571, + 879, + 601, + 848, + 601 + ], + "score": 0.89, + "latex": "\\delta _ { \\tau }" + }, + { + "category_id": 13, + "poly": [ + 346, + 1474, + 462, + 1474, + 462, + 1505, + 346, + 1505 + ], + "score": 0.88, + "latex": "\\mathrm { M N L I } _ { m m }" + }, + { + "category_id": 13, + "poly": [ + 960, + 434, + 993, + 434, + 993, + 463, + 960, + 463 + ], + "score": 0.88, + "latex": "L _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 947, + 480, + 978, + 480, + 978, + 510, + 947, + 510 + ], + "score": 0.88, + "latex": "\\delta _ { \\tau }" + }, + { + "category_id": 13, + "poly": [ + 461, + 281, + 496, + 281, + 496, + 311, + 461, + 311 + ], + "score": 0.88, + "latex": "L _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1305, + 1443, + 1400, + 1443, + 1400, + 1474, + 1305, + 1474 + ], + "score": 0.87, + "latex": "\\mathrm { M N L L } \\mathrm { I } _ { m }" + }, + { + "category_id": 13, + "poly": [ + 297, + 632, + 331, + 632, + 331, + 663, + 297, + 663 + ], + "score": 0.87, + "latex": "L _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 892, + 956, + 929, + 956, + 929, + 989, + 892, + 989 + ], + "score": 0.87, + "latex": "\\alpha _ { \\tau } ^ { j }" + }, + { + "category_id": 13, + "poly": [ + 680, + 509, + 710, + 509, + 710, + 540, + 680, + 540 + ], + "score": 0.87, + "latex": "\\delta _ { \\tau }" + }, + { + "category_id": 13, + "poly": [ + 751, + 1948, + 779, + 1948, + 779, + 1975, + 751, + 1975 + ], + "score": 0.86, + "latex": "\\delta _ { \\tau }" + }, + { + "category_id": 13, + "poly": [ + 635, + 808, + 666, + 808, + 666, + 835, + 635, + 835 + ], + "score": 0.86, + "latex": "{ \\bf z } _ { \\tau }" + }, + { + "category_id": 13, + "poly": [ + 611, + 1920, + 641, + 1920, + 641, + 1947, + 611, + 1947 + ], + "score": 0.86, + "latex": "\\pmb { \\theta } _ { \\tau }" + }, + { + "category_id": 13, + "poly": [ + 363, + 231, + 398, + 231, + 398, + 262, + 363, + 262 + ], + "score": 0.86, + "latex": "L _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 385, + 1778, + 417, + 1778, + 417, + 1808, + 385, + 1808 + ], + "score": 0.85, + "latex": "\\mathrm { F _ { 1 } }" + }, + { + "category_id": 13, + "poly": [ + 1270, + 481, + 1306, + 481, + 1306, + 508, + 1270, + 508 + ], + "score": 0.85, + "latex": "t \\%" + }, + { + "category_id": 13, + "poly": [ + 1292, + 897, + 1318, + 897, + 1318, + 923, + 1292, + 923 + ], + "score": 0.79, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1140, + 342, + 1160, + 342, + 1160, + 368, + 1140, + 368 + ], + "score": 0.78, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 620, + 404, + 639, + 404, + 639, + 429, + 620, + 429 + ], + "score": 0.77, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 874, + 377, + 892, + 377, + 892, + 403, + 874, + 403 + ], + "score": 0.76, + "latex": "\\eta" + }, + { + "category_id": 13, + "poly": [ + 296, + 1656, + 321, + 1656, + 321, + 1685, + 296, + 1685 + ], + "score": 0.25, + "latex": "\\mathbf { B }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1299.0, + 650.0, + 1299.0, + 650.0, + 1336.0, + 295.0, + 1336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 720.0, + 712.0, + 720.0, + 712.0, + 760.0, + 294.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1245.0, + 561.0, + 1245.0, + 561.0, + 1288.0, + 292.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1827.0, + 1406.0, + 1827.0, + 1406.0, + 1872.0, + 328.0, + 1872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1858.0, + 1406.0, + 1858.0, + 1406.0, + 1897.0, + 293.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1887.0, + 927.0, + 1887.0, + 927.0, + 1923.0, + 293.0, + 1923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 1913.0, + 610.0, + 1913.0, + 610.0, + 1957.0, + 335.0, + 1957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 642.0, + 1913.0, + 932.0, + 1913.0, + 932.0, + 1957.0, + 642.0, + 1957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 1913.0, + 1404.0, + 1913.0, + 1404.0, + 1957.0, + 1133.0, + 1957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1946.0, + 750.0, + 1946.0, + 750.0, + 1981.0, + 294.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 1946.0, + 789.0, + 1946.0, + 789.0, + 1981.0, + 780.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1969.0, + 1406.0, + 1969.0, + 1406.0, + 2014.0, + 326.0, + 2014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2004.0, + 978.0, + 2004.0, + 978.0, + 2037.0, + 295.0, + 2037.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": [ + 297.0, + 72.0, + 857.0, + 72.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 362.0, + 228.0, + 362.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 399.0, + 228.0, + 1277.0, + 228.0, + 1277.0, + 266.0, + 399.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 771.0, + 1405.0, + 771.0, + 1405.0, + 809.0, + 294.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 805.0, + 634.0, + 805.0, + 634.0, + 839.0, + 295.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 805.0, + 1404.0, + 805.0, + 1404.0, + 839.0, + 667.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 834.0, + 1405.0, + 834.0, + 1405.0, + 870.0, + 291.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 864.0, + 1407.0, + 864.0, + 1407.0, + 901.0, + 291.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 893.0, + 1291.0, + 893.0, + 1291.0, + 933.0, + 291.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1319.0, + 893.0, + 1406.0, + 893.0, + 1406.0, + 933.0, + 1319.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 924.0, + 297.0, + 924.0, + 297.0, + 963.0, + 293.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 924.0, + 578.0, + 924.0, + 578.0, + 963.0, + 498.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 631.0, + 924.0, + 1222.0, + 924.0, + 1222.0, + 963.0, + 631.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1275.0, + 924.0, + 1406.0, + 924.0, + 1406.0, + 963.0, + 1275.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 955.0, + 503.0, + 955.0, + 503.0, + 993.0, + 294.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 955.0, + 891.0, + 955.0, + 891.0, + 993.0, + 536.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 955.0, + 1116.0, + 955.0, + 1116.0, + 993.0, + 930.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 955.0, + 1405.0, + 955.0, + 1405.0, + 993.0, + 1169.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 987.0, + 664.0, + 987.0, + 664.0, + 1031.0, + 291.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 761.0, + 987.0, + 794.0, + 987.0, + 794.0, + 1031.0, + 761.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1059.0, + 987.0, + 1218.0, + 987.0, + 1218.0, + 1031.0, + 1059.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1254.0, + 987.0, + 1407.0, + 987.0, + 1407.0, + 1031.0, + 1254.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1022.0, + 407.0, + 1022.0, + 407.0, + 1061.0, + 292.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 479.0, + 946.0, + 479.0, + 946.0, + 514.0, + 296.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 479.0, + 1269.0, + 479.0, + 1269.0, + 514.0, + 979.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1307.0, + 479.0, + 1404.0, + 479.0, + 1404.0, + 514.0, + 1307.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 508.0, + 478.0, + 508.0, + 478.0, + 546.0, + 292.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 569.0, + 508.0, + 679.0, + 508.0, + 679.0, + 546.0, + 569.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 508.0, + 1406.0, + 508.0, + 1406.0, + 546.0, + 711.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 539.0, + 1406.0, + 539.0, + 1406.0, + 577.0, + 294.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 569.0, + 847.0, + 569.0, + 847.0, + 606.0, + 291.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 569.0, + 1406.0, + 569.0, + 1406.0, + 606.0, + 880.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 601.0, + 1405.0, + 601.0, + 1405.0, + 636.0, + 294.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 632.0, + 1405.0, + 632.0, + 1405.0, + 666.0, + 332.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 660.0, + 658.0, + 660.0, + 658.0, + 698.0, + 294.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1347.0, + 1405.0, + 1347.0, + 1405.0, + 1388.0, + 291.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1382.0, + 1405.0, + 1382.0, + 1405.0, + 1417.0, + 294.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1411.0, + 1404.0, + 1411.0, + 1404.0, + 1447.0, + 292.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1439.0, + 1304.0, + 1439.0, + 1304.0, + 1481.0, + 291.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1439.0, + 1404.0, + 1439.0, + 1404.0, + 1481.0, + 1401.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1471.0, + 345.0, + 1471.0, + 345.0, + 1512.0, + 291.0, + 1512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 1471.0, + 1405.0, + 1471.0, + 1405.0, + 1512.0, + 463.0, + 1512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1504.0, + 1405.0, + 1504.0, + 1405.0, + 1539.0, + 295.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1533.0, + 1406.0, + 1533.0, + 1406.0, + 1570.0, + 292.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1563.0, + 1406.0, + 1563.0, + 1406.0, + 1601.0, + 292.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1595.0, + 1406.0, + 1595.0, + 1406.0, + 1630.0, + 294.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1625.0, + 1404.0, + 1625.0, + 1404.0, + 1660.0, + 294.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1654.0, + 1404.0, + 1654.0, + 1404.0, + 1691.0, + 322.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1684.0, + 1405.0, + 1684.0, + 1405.0, + 1723.0, + 292.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1715.0, + 1405.0, + 1715.0, + 1405.0, + 1752.0, + 292.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1750.0, + 1405.0, + 1750.0, + 1405.0, + 1781.0, + 296.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1777.0, + 384.0, + 1777.0, + 384.0, + 1812.0, + 295.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 418.0, + 1777.0, + 1164.0, + 1777.0, + 1164.0, + 1812.0, + 418.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 278.0, + 460.0, + 278.0, + 460.0, + 315.0, + 293.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 497.0, + 278.0, + 1407.0, + 278.0, + 1407.0, + 315.0, + 497.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 308.0, + 1403.0, + 308.0, + 1403.0, + 346.0, + 293.0, + 346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 339.0, + 1139.0, + 339.0, + 1139.0, + 375.0, + 294.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1161.0, + 339.0, + 1404.0, + 339.0, + 1404.0, + 375.0, + 1161.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 368.0, + 607.0, + 368.0, + 607.0, + 409.0, + 292.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 368.0, + 873.0, + 368.0, + 873.0, + 409.0, + 769.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 368.0, + 1404.0, + 368.0, + 1404.0, + 409.0, + 893.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 401.0, + 619.0, + 401.0, + 619.0, + 437.0, + 294.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 640.0, + 401.0, + 1405.0, + 401.0, + 1405.0, + 437.0, + 640.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 431.0, + 959.0, + 431.0, + 959.0, + 469.0, + 293.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 994.0, + 431.0, + 1206.0, + 431.0, + 1206.0, + 469.0, + 994.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1183.0, + 974.0, + 1183.0, + 974.0, + 1223.0, + 295.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 362.0, + 228.0, + 362.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 399.0, + 228.0, + 1277.0, + 228.0, + 1277.0, + 266.0, + 399.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 277.0, + 1069.0, + 309.0, + 1069.0, + 309.0, + 1174.0, + 277.0, + 1174.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 1069.0, + 1410.0, + 1069.0, + 1410.0, + 1174.0, + 1404.0, + 1174.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 301, + 224, + 1403, + 224, + 1403, + 489, + 301, + 489 + ], + "score": 0.981, + "html": "
Total paramsNew params per taskQNLI*SST-2 MNLImMNLImmCoLA MRPC STS-B RTEQQPAvg
Full finetuning9.00×100%91.194.986.785.960.589.387.670.172.180.9
Adapters (8-256)1.32×3.6%90.794.084.985.159.589.586.971.571.880.4
Adapters (64)1.19×2.1%91.494.285.384.656.989.687.368.671.879.8
Full finetuning9.00×100%93.494.186.786.059.688.986.671.271.780.6
Last layer1.34×3.8%79.891.671.472.940.280.167.358.663.368.2
Non-adap. diff pruning1.05×0.5%89.793.684.984.851.281.578.261.568.675.5
Diff pruning1.05×0.5%92.993.885.785.660.587.083.568.170.679.4
Diff pruning (struct.)1.05×0.5%93.394.186.486.061.189.786.070.671.180.6
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1127, + 1404, + 1127, + 1404, + 1342, + 298, + 1342 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 788, + 1404, + 788, + 1404, + 1065, + 298, + 1065 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1356, + 1405, + 1356, + 1405, + 1603, + 297, + 1603 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 625, + 1403, + 625, + 1403, + 718, + 299, + 718 + ], + "score": 0.966 + }, + { + "category_id": 0, + "poly": [ + 297, + 1086, + 1000, + 1086, + 1000, + 1118, + 297, + 1118 + ], + "score": 0.913 + }, + { + "category_id": 0, + "poly": [ + 301, + 1632, + 704, + 1632, + 704, + 1667, + 301, + 1667 + ], + "score": 0.899 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 104, + 298, + 104 + ], + "score": 0.897 + }, + { + "category_id": 0, + "poly": [ + 298, + 740, + 502, + 740, + 502, + 771, + 298, + 771 + ], + "score": 0.89 + }, + { + "category_id": 1, + "poly": [ + 298, + 1693, + 1402, + 1693, + 1402, + 1756, + 298, + 1756 + ], + "score": 0.878 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.735 + }, + { + "category_id": 1, + "poly": [ + 299, + 493, + 1404, + 493, + 1404, + 604, + 299, + 604 + ], + "score": 0.727 + }, + { + "category_id": 2, + "poly": [ + 298, + 1867, + 1403, + 1867, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.691 + }, + { + "category_id": 2, + "poly": [ + 304, + 1778, + 1401, + 1778, + 1401, + 1865, + 304, + 1865 + ], + "score": 0.589 + }, + { + "category_id": 7, + "poly": [ + 299, + 493, + 1404, + 493, + 1404, + 604, + 299, + 604 + ], + "score": 0.42 + }, + { + "category_id": 13, + "poly": [ + 298, + 1188, + 440, + 1188, + 440, + 1218, + 298, + 1218 + ], + "score": 0.92, + "latex": "1 . 2 5 \\times 1 0 ^ { - 7 }" + }, + { + "category_id": 13, + "poly": [ + 546, + 1478, + 647, + 1478, + 647, + 1509, + 546, + 1509 + ], + "score": 0.92, + "latex": "5 \\times 1 0 ^ { - 5 }" + }, + { + "category_id": 13, + "poly": [ + 711, + 1355, + 813, + 1355, + 813, + 1386, + 711, + 1386 + ], + "score": 0.92, + "latex": "1 \\times 1 0 ^ { - 5 }" + }, + { + "category_id": 13, + "poly": [ + 775, + 972, + 1005, + 972, + 1005, + 1006, + 775, + 1006 + ], + "score": 0.91, + "latex": "\\delta _ { \\tau } = \\pmb { \\theta } _ { \\tau } - \\pmb { \\theta } _ { \\mathrm { p r e t r a i n e d } }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1387, + 464, + 1387, + 464, + 1421, + 297, + 1421 + ], + "score": 0.91, + "latex": "\\in \\{ 4 , 6 , 8 , 1 0 \\}" + }, + { + "category_id": 13, + "poly": [ + 771, + 1388, + 923, + 1388, + 923, + 1421, + 771, + 1421 + ], + "score": 0.9, + "latex": "\\in \\{ 2 , 3 , 4 , 5 \\}" + }, + { + "category_id": 13, + "poly": [ + 944, + 1450, + 978, + 1450, + 978, + 1480, + 944, + 1480 + ], + "score": 0.89, + "latex": "L _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1126, + 1159, + 1404, + 1159, + 1404, + 1190, + 1126, + 1190 + ], + "score": 0.89, + "latex": "l = - 1 . 5 , r = 1 . 5 , \\lambda =" + }, + { + "category_id": 13, + "poly": [ + 880, + 1129, + 918, + 1129, + 918, + 1159, + 880, + 1159 + ], + "score": 0.88, + "latex": "l , r" + }, + { + "category_id": 13, + "poly": [ + 789, + 1160, + 823, + 1160, + 823, + 1189, + 789, + 1189 + ], + "score": 0.88, + "latex": "L _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1167, + 1193, + 1206, + 1193, + 1206, + 1219, + 1167, + 1219 + ], + "score": 0.88, + "latex": "{ \\bf w } _ { \\tau }" + }, + { + "category_id": 13, + "poly": [ + 739, + 1225, + 771, + 1225, + 771, + 1250, + 739, + 1250 + ], + "score": 0.88, + "latex": "{ \\bf z } _ { \\tau }" + }, + { + "category_id": 13, + "poly": [ + 413, + 973, + 446, + 973, + 446, + 1003, + 413, + 1003 + ], + "score": 0.87, + "latex": "\\pmb { \\theta } _ { \\tau }" + }, + { + "category_id": 13, + "poly": [ + 1294, + 1003, + 1355, + 1003, + 1355, + 1032, + 1294, + 1032 + ], + "score": 0.86, + "latex": "0 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1315, + 1193, + 1353, + 1193, + 1353, + 1219, + 1315, + 1219 + ], + "score": 0.86, + "latex": "\\pmb { \\alpha } _ { \\tau }" + }, + { + "category_id": 13, + "poly": [ + 704, + 1003, + 736, + 1003, + 736, + 1034, + 704, + 1034 + ], + "score": 0.85, + "latex": "\\delta _ { \\tau }" + }, + { + "category_id": 13, + "poly": [ + 1176, + 1724, + 1238, + 1724, + 1238, + 1753, + 1176, + 1753 + ], + "score": 0.84, + "latex": "0 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 406, + 1160, + 427, + 1160, + 427, + 1186, + 406, + 1186 + ], + "score": 0.79, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 461, + 548, + 537, + 548, + 537, + 576, + 461, + 576 + ], + "score": 0.68, + "latex": "{ } ^ { * } \\mathrm { Q N L I }" + }, + { + "category_id": 13, + "poly": [ + 364, + 1311, + 438, + 1311, + 438, + 1340, + 364, + 1340 + ], + "score": 0.3, + "latex": "2 0 1 9 \\mathrm { c }" + }, + { + "category_id": 13, + "poly": [ + 808, + 820, + 893, + 820, + 893, + 851, + 808, + 851 + ], + "score": 0.25, + "latex": "\\mathrm { B E R T _ { L } }" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1084.0, + 1004.0, + 1084.0, + 1004.0, + 1120.0, + 294.0, + 1120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1627.0, + 709.0, + 1627.0, + 709.0, + 1673.0, + 291.0, + 1673.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": [ + 294.0, + 737.0, + 504.0, + 737.0, + 504.0, + 776.0, + 294.0, + 776.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": [ + 321.0, + 1856.0, + 1408.0, + 1856.0, + 1408.0, + 1908.0, + 321.0, + 1908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1894.0, + 1405.0, + 1894.0, + 1405.0, + 1924.0, + 296.0, + 1924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1923.0, + 1402.0, + 1923.0, + 1402.0, + 1953.0, + 294.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1951.0, + 1361.0, + 1951.0, + 1361.0, + 1979.0, + 294.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1979.0, + 1404.0, + 1979.0, + 1404.0, + 2009.0, + 297.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2007.0, + 1196.0, + 2007.0, + 1196.0, + 2036.0, + 296.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1770.0, + 1407.0, + 1770.0, + 1407.0, + 1818.0, + 327.0, + 1818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1800.0, + 1409.0, + 1800.0, + 1409.0, + 1846.0, + 319.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1837.0, + 1218.0, + 1837.0, + 1218.0, + 1868.0, + 298.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 490.0, + 1404.0, + 490.0, + 1404.0, + 523.0, + 295.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 522.0, + 1404.0, + 522.0, + 1404.0, + 551.0, + 297.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 547.0, + 460.0, + 547.0, + 460.0, + 580.0, + 295.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 538.0, + 547.0, + 1405.0, + 547.0, + 1405.0, + 580.0, + 538.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 575.0, + 1405.0, + 575.0, + 1405.0, + 608.0, + 297.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1124.0, + 879.0, + 1124.0, + 879.0, + 1163.0, + 292.0, + 1163.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 1124.0, + 1405.0, + 1124.0, + 1405.0, + 1163.0, + 919.0, + 1163.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1158.0, + 405.0, + 1158.0, + 405.0, + 1193.0, + 294.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 428.0, + 1158.0, + 788.0, + 1158.0, + 788.0, + 1193.0, + 428.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 1158.0, + 1125.0, + 1158.0, + 1125.0, + 1193.0, + 824.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1185.0, + 297.0, + 1185.0, + 297.0, + 1223.0, + 293.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 1185.0, + 1166.0, + 1185.0, + 1166.0, + 1223.0, + 441.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 1185.0, + 1314.0, + 1185.0, + 1314.0, + 1223.0, + 1207.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 1185.0, + 1408.0, + 1185.0, + 1408.0, + 1223.0, + 1354.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1219.0, + 738.0, + 1219.0, + 738.0, + 1255.0, + 292.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 772.0, + 1219.0, + 1405.0, + 1219.0, + 1405.0, + 1255.0, + 772.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1248.0, + 1405.0, + 1248.0, + 1405.0, + 1286.0, + 293.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1281.0, + 1405.0, + 1281.0, + 1405.0, + 1316.0, + 294.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1311.0, + 363.0, + 1311.0, + 363.0, + 1345.0, + 294.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 439.0, + 1311.0, + 972.0, + 1311.0, + 972.0, + 1345.0, + 439.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 790.0, + 1402.0, + 790.0, + 1402.0, + 823.0, + 297.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 818.0, + 807.0, + 818.0, + 807.0, + 854.0, + 293.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 818.0, + 1405.0, + 818.0, + 1405.0, + 854.0, + 894.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 847.0, + 1405.0, + 847.0, + 1405.0, + 889.0, + 292.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 879.0, + 1404.0, + 879.0, + 1404.0, + 916.0, + 293.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 909.0, + 1406.0, + 909.0, + 1406.0, + 950.0, + 292.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 940.0, + 1404.0, + 940.0, + 1404.0, + 979.0, + 293.0, + 979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 968.0, + 412.0, + 968.0, + 412.0, + 1012.0, + 292.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 968.0, + 774.0, + 968.0, + 774.0, + 1012.0, + 447.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 968.0, + 1405.0, + 968.0, + 1405.0, + 1012.0, + 1006.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1000.0, + 703.0, + 1000.0, + 703.0, + 1040.0, + 293.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 1000.0, + 1293.0, + 1000.0, + 1293.0, + 1040.0, + 737.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1356.0, + 1000.0, + 1406.0, + 1000.0, + 1406.0, + 1040.0, + 1356.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1033.0, + 1048.0, + 1033.0, + 1048.0, + 1069.0, + 294.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1357.0, + 710.0, + 1357.0, + 710.0, + 1390.0, + 295.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 814.0, + 1357.0, + 1403.0, + 1357.0, + 1403.0, + 1390.0, + 814.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1381.0, + 296.0, + 1381.0, + 296.0, + 1425.0, + 292.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 1381.0, + 770.0, + 1381.0, + 770.0, + 1425.0, + 465.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 924.0, + 1381.0, + 1408.0, + 1381.0, + 1408.0, + 1425.0, + 924.0, + 1425.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": [ + 295.0, + 1449.0, + 943.0, + 1449.0, + 943.0, + 1483.0, + 295.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 1449.0, + 1405.0, + 1449.0, + 1405.0, + 1483.0, + 979.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1476.0, + 545.0, + 1476.0, + 545.0, + 1516.0, + 292.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 1476.0, + 1406.0, + 1476.0, + 1406.0, + 1516.0, + 648.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1506.0, + 1405.0, + 1506.0, + 1405.0, + 1546.0, + 292.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1539.0, + 1406.0, + 1539.0, + 1406.0, + 1575.0, + 292.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1571.0, + 1005.0, + 1571.0, + 1005.0, + 1605.0, + 294.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 624.0, + 1404.0, + 624.0, + 1404.0, + 662.0, + 294.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 653.0, + 1405.0, + 653.0, + 1405.0, + 690.0, + 295.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 685.0, + 904.0, + 685.0, + 904.0, + 722.0, + 296.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1691.0, + 1404.0, + 1691.0, + 1404.0, + 1728.0, + 294.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1721.0, + 1175.0, + 1721.0, + 1175.0, + 1761.0, + 293.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1239.0, + 1721.0, + 1406.0, + 1721.0, + 1406.0, + 1761.0, + 1239.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 490.0, + 1404.0, + 490.0, + 1404.0, + 523.0, + 295.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 522.0, + 1404.0, + 522.0, + 1404.0, + 551.0, + 297.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 547.0, + 460.0, + 547.0, + 460.0, + 580.0, + 295.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 538.0, + 547.0, + 1405.0, + 547.0, + 1405.0, + 580.0, + 538.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 575.0, + 1405.0, + 575.0, + 1405.0, + 608.0, + 297.0, + 608.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 981, + 1404, + 981, + 1404, + 1164, + 298, + 1164 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1573, + 1404, + 1573, + 1404, + 1819, + 298, + 1819 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1243, + 1404, + 1243, + 1404, + 1487, + 298, + 1487 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 300, + 1890, + 1402, + 1890, + 1402, + 1984, + 300, + 1984 + ], + "score": 0.972 + }, + { + "category_id": 5, + "poly": [ + 405, + 718, + 1288, + 718, + 1288, + 898, + 405, + 898 + ], + "score": 0.969, + "html": "
Diff vector target sparsityQNLISST-2MNLImMNLImmCoLAMRPCSTS-BRTEQQPAvg
0.10%92.793.385.685.958.087.486.368.685.282.5
0.25%93.294.286.286.563.390.988.471.586.184.5
0.50%93.494.286.486.963.591.389.571.586.684.8
1.00%93.394.286.487.066.391.489.971.186.685.1
100%93.594.186.587.162.891.989.871.887.685.0
" + }, + { + "category_id": 3, + "poly": [ + 351, + 258, + 759, + 258, + 759, + 579, + 351, + 579 + ], + "score": 0.964 + }, + { + "category_id": 5, + "poly": [ + 903, + 301, + 1343, + 301, + 1343, + 534, + 903, + 534 + ], + "score": 0.95, + "html": "
Non-structuredPruned Diff GroupsStructured
#%#%
MRPC246.15213.2
STS-B256.44812.2
RTE287.15012.7
Avg25.76.550.012.7
" + }, + { + "category_id": 0, + "poly": [ + 298, + 1517, + 990, + 1517, + 990, + 1547, + 298, + 1547 + ], + "score": 0.905 + }, + { + "category_id": 0, + "poly": [ + 299, + 1841, + 672, + 1841, + 672, + 1872, + 299, + 1872 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 312, + 2006, + 1397, + 2006, + 1397, + 2034, + 312, + 2034 + ], + "score": 0.889 + }, + { + "category_id": 0, + "poly": [ + 299, + 1194, + 758, + 1194, + 758, + 1225, + 299, + 1225 + ], + "score": 0.884 + }, + { + "category_id": 4, + "poly": [ + 299, + 590, + 1407, + 590, + 1407, + 702, + 299, + 702 + ], + "score": 0.805 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2112, + 840, + 2112 + ], + "score": 0.795 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 852, + 76, + 852, + 104, + 300, + 104 + ], + "score": 0.787 + }, + { + "category_id": 7, + "poly": [ + 295, + 906, + 1396, + 906, + 1396, + 962, + 295, + 962 + ], + "score": 0.42 + }, + { + "category_id": 6, + "poly": [ + 299, + 590, + 1407, + 590, + 1407, + 702, + 299, + 702 + ], + "score": 0.222 + }, + { + "category_id": 13, + "poly": [ + 298, + 1637, + 331, + 1637, + 331, + 1666, + 298, + 1666 + ], + "score": 0.87, + "latex": "L _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 745, + 647, + 801, + 647, + 801, + 674, + 745, + 674 + ], + "score": 0.87, + "latex": "0 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 685, + 1046, + 717, + 1046, + 717, + 1073, + 685, + 1073 + ], + "score": 0.86, + "latex": "\\mathbf { z } _ { \\tau }" + }, + { + "category_id": 13, + "poly": [ + 484, + 1274, + 544, + 1274, + 544, + 1305, + 484, + 1305 + ], + "score": 0.82, + "latex": "0 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 554, + 1274, + 629, + 1274, + 629, + 1306, + 554, + 1306 + ], + "score": 0.8, + "latex": "0 . 2 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 639, + 1274, + 700, + 1274, + 700, + 1305, + 639, + 1305 + ], + "score": 0.8, + "latex": "0 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 709, + 1274, + 772, + 1274, + 772, + 1305, + 709, + 1305 + ], + "score": 0.71, + "latex": "1 . 0 \\%" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 255.0, + 413.0, + 255.0, + 413.0, + 283.0, + 366.0, + 283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 292.0, + 381.0, + 292.0, + 381.0, + 518.0, + 347.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 482.0, + 309.0, + 499.0, + 309.0, + 499.0, + 336.0, + 482.0, + 336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 319.0, + 741.0, + 319.0, + 741.0, + 327.0, + 734.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 435.0, + 327.0, + 453.0, + 327.0, + 453.0, + 353.0, + 435.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 345.0, + 411.0, + 345.0, + 411.0, + 373.0, + 367.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 570.0, + 359.0, + 578.0, + 359.0, + 578.0, + 366.0, + 570.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 363.0, + 495.0, + 363.0, + 495.0, + 372.0, + 487.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 437.0, + 401.0, + 450.0, + 401.0, + 450.0, + 413.0, + 437.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 436.0, + 411.0, + 436.0, + 411.0, + 464.0, + 367.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 458.0, + 442.0, + 529.0, + 442.0, + 529.0, + 468.0, + 458.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 458.0, + 643.0, + 458.0, + 643.0, + 494.0, + 454.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 455.0, + 482.0, + 551.0, + 482.0, + 551.0, + 514.0, + 455.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 436.0, + 502.0, + 633.0, + 502.0, + 633.0, + 534.0, + 436.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 518.0, + 444.0, + 518.0, + 444.0, + 572.0, + 362.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 537.0, + 519.0, + 537.0, + 519.0, + 564.0, + 464.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 544.0, + 535.0, + 604.0, + 535.0, + 604.0, + 566.0, + 544.0, + 566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 533.0, + 684.0, + 533.0, + 684.0, + 568.0, + 624.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 537.0, + 764.0, + 537.0, + 764.0, + 564.0, + 709.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 550.0, + 658.0, + 550.0, + 658.0, + 586.0, + 504.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1516.0, + 993.0, + 1516.0, + 993.0, + 1551.0, + 295.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1839.0, + 675.0, + 1839.0, + 675.0, + 1875.0, + 295.0, + 1875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1996.0, + 1403.0, + 1996.0, + 1403.0, + 2041.0, + 320.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1192.0, + 763.0, + 1192.0, + 763.0, + 1228.0, + 294.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 589.0, + 1404.0, + 589.0, + 1404.0, + 622.0, + 296.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 618.0, + 1405.0, + 618.0, + 1405.0, + 651.0, + 294.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 646.0, + 744.0, + 646.0, + 744.0, + 679.0, + 296.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 646.0, + 1405.0, + 646.0, + 1405.0, + 679.0, + 802.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 674.0, + 616.0, + 674.0, + 616.0, + 707.0, + 296.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 899.0, + 1402.0, + 899.0, + 1402.0, + 941.0, + 293.0, + 941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 934.0, + 633.0, + 934.0, + 633.0, + 963.0, + 294.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 589.0, + 1404.0, + 589.0, + 1404.0, + 622.0, + 296.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 618.0, + 1405.0, + 618.0, + 1405.0, + 651.0, + 294.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 646.0, + 744.0, + 646.0, + 744.0, + 679.0, + 296.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 646.0, + 1405.0, + 646.0, + 1405.0, + 679.0, + 802.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 674.0, + 616.0, + 674.0, + 616.0, + 707.0, + 296.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 980.0, + 1405.0, + 980.0, + 1405.0, + 1017.0, + 292.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1012.0, + 1406.0, + 1012.0, + 1406.0, + 1047.0, + 294.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1043.0, + 684.0, + 1043.0, + 684.0, + 1075.0, + 296.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.0, + 1043.0, + 1405.0, + 1043.0, + 1405.0, + 1075.0, + 718.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1073.0, + 1404.0, + 1073.0, + 1404.0, + 1108.0, + 294.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1103.0, + 1406.0, + 1103.0, + 1406.0, + 1138.0, + 294.0, + 1138.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1129.0, + 1213.0, + 1129.0, + 1213.0, + 1172.0, + 292.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1573.0, + 1404.0, + 1573.0, + 1404.0, + 1610.0, + 295.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1605.0, + 1406.0, + 1605.0, + 1406.0, + 1640.0, + 292.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1636.0, + 1404.0, + 1636.0, + 1404.0, + 1670.0, + 332.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1665.0, + 1405.0, + 1665.0, + 1405.0, + 1701.0, + 293.0, + 1701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1695.0, + 1404.0, + 1695.0, + 1404.0, + 1732.0, + 293.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1722.0, + 1405.0, + 1722.0, + 1405.0, + 1765.0, + 291.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1758.0, + 1405.0, + 1758.0, + 1405.0, + 1792.0, + 293.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1789.0, + 630.0, + 1789.0, + 630.0, + 1821.0, + 293.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1241.0, + 1406.0, + 1241.0, + 1406.0, + 1279.0, + 292.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1273.0, + 483.0, + 1273.0, + 483.0, + 1310.0, + 292.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 1273.0, + 553.0, + 1273.0, + 553.0, + 1310.0, + 545.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 630.0, + 1273.0, + 638.0, + 1273.0, + 638.0, + 1310.0, + 630.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 701.0, + 1273.0, + 708.0, + 1273.0, + 708.0, + 1310.0, + 701.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 773.0, + 1273.0, + 1405.0, + 1273.0, + 1405.0, + 1310.0, + 773.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1305.0, + 1404.0, + 1305.0, + 1404.0, + 1339.0, + 294.0, + 1339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1334.0, + 1405.0, + 1334.0, + 1405.0, + 1371.0, + 294.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1364.0, + 1404.0, + 1364.0, + 1404.0, + 1402.0, + 293.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1394.0, + 1404.0, + 1394.0, + 1404.0, + 1431.0, + 292.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1425.0, + 1404.0, + 1425.0, + 1404.0, + 1464.0, + 292.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1456.0, + 552.0, + 1456.0, + 552.0, + 1489.0, + 293.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1887.0, + 1407.0, + 1887.0, + 1407.0, + 1926.0, + 293.0, + 1926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1920.0, + 1406.0, + 1920.0, + 1406.0, + 1955.0, + 295.0, + 1955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1949.0, + 1406.0, + 1949.0, + 1406.0, + 1988.0, + 294.0, + 1988.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1173, + 1404, + 1173, + 1404, + 1386, + 298, + 1386 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1652, + 1404, + 1652, + 1404, + 1866, + 297, + 1866 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 297, + 913, + 1404, + 913, + 1404, + 1157, + 297, + 1157 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 300, + 1450, + 1403, + 1450, + 1403, + 1542, + 300, + 1542 + ], + "score": 0.972 + }, + { + "category_id": 5, + "poly": [ + 319, + 672, + 1372, + 672, + 1372, + 805, + 319, + 805 + ], + "score": 0.95, + "html": "
QNLISST-2MNLImMNLImmCoLAMRPCSTS-BRTEQQPAvg
Sparsity1.5%0.6%0.8%0.8%1.6%2.4%3.3%0.7%0.6%1.4%
Performance93.894.086.286.863.191.989.771.886.584.9
With 0.5% sparsity93.494.286.486.963.591.389.571.586.684.8
" + }, + { + "category_id": 2, + "poly": [ + 296, + 1889, + 1404, + 1889, + 1404, + 2034, + 296, + 2034 + ], + "score": 0.943 + }, + { + "category_id": 0, + "poly": [ + 299, + 1409, + 1086, + 1409, + 1086, + 1440, + 299, + 1440 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 854, + 76, + 854, + 104, + 298, + 104 + ], + "score": 0.886 + }, + { + "category_id": 7, + "poly": [ + 298, + 813, + 1401, + 813, + 1401, + 870, + 298, + 870 + ], + "score": 0.885 + }, + { + "category_id": 3, + "poly": [ + 307, + 228, + 1392, + 228, + 1392, + 553, + 307, + 553 + ], + "score": 0.883 + }, + { + "category_id": 0, + "poly": [ + 299, + 1594, + 915, + 1594, + 915, + 1627, + 299, + 1627 + ], + "score": 0.862 + }, + { + "category_id": 6, + "poly": [ + 300, + 573, + 1399, + 573, + 1399, + 656, + 300, + 656 + ], + "score": 0.805 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 858, + 2088, + 858, + 2111, + 842, + 2111 + ], + "score": 0.663 + }, + { + "category_id": 4, + "poly": [ + 300, + 573, + 1399, + 573, + 1399, + 656, + 300, + 656 + ], + "score": 0.299 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2111, + 841, + 2111 + ], + "score": 0.255 + }, + { + "category_id": 5, + "poly": [ + 307, + 228, + 1392, + 228, + 1392, + 553, + 307, + 553 + ], + "score": 0.119, + "html": "
QNLISST-2MNLICoLAMRPCSTS-BRTEQQP
" + }, + { + "category_id": 13, + "poly": [ + 1190, + 1834, + 1396, + 1834, + 1396, + 1865, + 1190, + 1865 + ], + "score": 0.9, + "latex": "9 0 . 8 \\% \\Rightarrow 9 3 . 2 \\% )" + }, + { + "category_id": 13, + "poly": [ + 1197, + 574, + 1252, + 574, + 1252, + 600, + 1197, + 600 + ], + "score": 0.88, + "latex": "0 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 670, + 841, + 726, + 841, + 726, + 868, + 670, + 868 + ], + "score": 0.87, + "latex": "0 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 668, + 1804, + 709, + 1804, + 709, + 1834, + 668, + 1834 + ], + "score": 0.87, + "latex": "1 \\%" + }, + { + "category_id": 13, + "poly": [ + 514, + 629, + 562, + 629, + 562, + 655, + 514, + 655 + ], + "score": 0.86, + "latex": "20 \\%" + }, + { + "category_id": 13, + "poly": [ + 709, + 1979, + 745, + 1979, + 745, + 2003, + 709, + 2003 + ], + "score": 0.86, + "latex": "{ \\bf w } _ { \\tau }" + }, + { + "category_id": 13, + "poly": [ + 860, + 1451, + 893, + 1451, + 893, + 1481, + 860, + 1481 + ], + "score": 0.85, + "latex": "\\mathrm { L } _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1319, + 1952, + 1348, + 1952, + 1348, + 1974, + 1319, + 1974 + ], + "score": 0.85, + "latex": "\\mathbf { z } _ { \\tau }" + }, + { + "category_id": 13, + "poly": [ + 448, + 629, + 485, + 629, + 485, + 655, + 448, + 655 + ], + "score": 0.84, + "latex": "0 \\%" + }, + { + "category_id": 13, + "poly": [ + 498, + 1411, + 532, + 1411, + 532, + 1441, + 498, + 1441 + ], + "score": 0.84, + "latex": "\\mathrm { L } _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1248, + 605, + 1264, + 605, + 1264, + 626, + 1248, + 626 + ], + "score": 0.53, + "latex": "\\mathbf { X }" + }, + { + "category_id": 13, + "poly": [ + 373, + 772, + 421, + 772, + 421, + 797, + 373, + 797 + ], + "score": 0.42, + "latex": "0 . 5 \\%" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1878.0, + 1406.0, + 1878.0, + 1406.0, + 1930.0, + 320.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1913.0, + 1329.0, + 1913.0, + 1329.0, + 1950.0, + 293.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1938.0, + 1318.0, + 1938.0, + 1318.0, + 1987.0, + 319.0, + 1987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1349.0, + 1938.0, + 1407.0, + 1938.0, + 1407.0, + 1987.0, + 1349.0, + 1987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1970.0, + 708.0, + 1970.0, + 708.0, + 2010.0, + 291.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 1970.0, + 758.0, + 1970.0, + 758.0, + 2010.0, + 746.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1998.0, + 927.0, + 1998.0, + 927.0, + 2039.0, + 320.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1407.0, + 497.0, + 1407.0, + 497.0, + 1446.0, + 295.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 533.0, + 1407.0, + 1089.0, + 1407.0, + 1089.0, + 1446.0, + 533.0, + 1446.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, + 811.0, + 1406.0, + 811.0, + 1406.0, + 844.0, + 294.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 840.0, + 669.0, + 840.0, + 669.0, + 873.0, + 293.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 840.0, + 880.0, + 840.0, + 880.0, + 873.0, + 727.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 230.0, + 406.0, + 230.0, + 406.0, + 259.0, + 352.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 230.0, + 543.0, + 230.0, + 543.0, + 259.0, + 483.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 230.0, + 675.0, + 230.0, + 675.0, + 259.0, + 620.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 752.0, + 230.0, + 810.0, + 230.0, + 810.0, + 260.0, + 752.0, + 260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 230.0, + 948.0, + 230.0, + 948.0, + 259.0, + 885.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 230.0, + 1083.0, + 230.0, + 1083.0, + 259.0, + 1019.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1164.0, + 231.0, + 1210.0, + 231.0, + 1210.0, + 258.0, + 1164.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1299.0, + 231.0, + 1347.0, + 231.0, + 1347.0, + 259.0, + 1299.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 269.0, + 867.0, + 269.0, + 867.0, + 281.0, + 858.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1263.0, + 275.0, + 1306.0, + 275.0, + 1306.0, + 358.0, + 1263.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 330.0, + 1138.0, + 330.0, + 1138.0, + 342.0, + 1128.0, + 342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 725.0, + 343.0, + 738.0, + 343.0, + 738.0, + 359.0, + 725.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 341.0, + 1138.0, + 341.0, + 1138.0, + 352.0, + 1128.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 725.0, + 358.0, + 738.0, + 358.0, + 738.0, + 368.0, + 725.0, + 368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 408.0, + 484.0, + 408.0, + 484.0, + 499.0, + 441.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 582.0, + 362.0, + 636.0, + 362.0, + 636.0, + 494.0, + 582.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 412.0, + 1138.0, + 412.0, + 1138.0, + 426.0, + 1128.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1593.0, + 918.0, + 1593.0, + 918.0, + 1632.0, + 294.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 570.0, + 1196.0, + 570.0, + 1196.0, + 607.0, + 292.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 570.0, + 1404.0, + 570.0, + 1404.0, + 607.0, + 1253.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 598.0, + 1247.0, + 598.0, + 1247.0, + 632.0, + 294.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1265.0, + 598.0, + 1404.0, + 598.0, + 1404.0, + 632.0, + 1265.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 628.0, + 447.0, + 628.0, + 447.0, + 660.0, + 295.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 486.0, + 628.0, + 513.0, + 628.0, + 513.0, + 660.0, + 486.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 628.0, + 573.0, + 628.0, + 573.0, + 660.0, + 563.0, + 660.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": [ + 292.0, + 570.0, + 1196.0, + 570.0, + 1196.0, + 607.0, + 292.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 570.0, + 1404.0, + 570.0, + 1404.0, + 607.0, + 1253.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 598.0, + 1247.0, + 598.0, + 1247.0, + 632.0, + 294.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1265.0, + 598.0, + 1404.0, + 598.0, + 1404.0, + 632.0, + 1265.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 628.0, + 447.0, + 628.0, + 447.0, + 660.0, + 295.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 486.0, + 628.0, + 513.0, + 628.0, + 513.0, + 660.0, + 486.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 628.0, + 573.0, + 628.0, + 573.0, + 660.0, + 563.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2119.0, + 840.0, + 2119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1173.0, + 1404.0, + 1173.0, + 1404.0, + 1207.0, + 296.0, + 1207.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": [ + 292.0, + 1231.0, + 1406.0, + 1231.0, + 1406.0, + 1272.0, + 292.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1264.0, + 1405.0, + 1264.0, + 1405.0, + 1302.0, + 293.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1292.0, + 1405.0, + 1292.0, + 1405.0, + 1330.0, + 292.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1325.0, + 1405.0, + 1325.0, + 1405.0, + 1363.0, + 292.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1358.0, + 562.0, + 1358.0, + 562.0, + 1388.0, + 296.0, + 1388.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": [ + 294.0, + 1682.0, + 1407.0, + 1682.0, + 1407.0, + 1719.0, + 294.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1712.0, + 1406.0, + 1712.0, + 1406.0, + 1750.0, + 292.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1743.0, + 1406.0, + 1743.0, + 1406.0, + 1780.0, + 292.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1770.0, + 1406.0, + 1770.0, + 1406.0, + 1812.0, + 292.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1804.0, + 667.0, + 1804.0, + 667.0, + 1837.0, + 294.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 710.0, + 1804.0, + 1404.0, + 1804.0, + 1404.0, + 1837.0, + 710.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1833.0, + 1189.0, + 1833.0, + 1189.0, + 1871.0, + 295.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 1833.0, + 1404.0, + 1833.0, + 1404.0, + 1871.0, + 1397.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 913.0, + 1407.0, + 913.0, + 1407.0, + 948.0, + 291.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 944.0, + 1405.0, + 944.0, + 1405.0, + 976.0, + 292.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 974.0, + 1406.0, + 974.0, + 1406.0, + 1008.0, + 295.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1005.0, + 1404.0, + 1005.0, + 1404.0, + 1039.0, + 294.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1034.0, + 1406.0, + 1034.0, + 1406.0, + 1071.0, + 292.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1064.0, + 1405.0, + 1064.0, + 1405.0, + 1100.0, + 292.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1095.0, + 1405.0, + 1095.0, + 1405.0, + 1132.0, + 294.0, + 1132.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1126.0, + 415.0, + 1126.0, + 415.0, + 1162.0, + 291.0, + 1162.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1447.0, + 859.0, + 1447.0, + 859.0, + 1489.0, + 295.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 1447.0, + 1403.0, + 1447.0, + 1403.0, + 1489.0, + 894.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1479.0, + 1404.0, + 1479.0, + 1404.0, + 1516.0, + 294.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1507.0, + 1406.0, + 1507.0, + 1406.0, + 1548.0, + 290.0, + 1548.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1094, + 1404, + 1094, + 1404, + 1370, + 297, + 1370 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1498, + 1405, + 1498, + 1405, + 1983, + 297, + 1983 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 760, + 1403, + 760, + 1403, + 942, + 298, + 942 + ], + "score": 0.978 + }, + { + "category_id": 5, + "poly": [ + 602, + 223, + 1090, + 223, + 1090, + 457, + 602, + 457 + ], + "score": 0.977, + "html": "
SparsityF1
Full finetuning Adapters100% 2%90.7% 90.4%
Full finetuning100%90.8%
Diff pruning1%92.1%
Diff pruning (struct.)1%93.2%
" + }, + { + "category_id": 1, + "poly": [ + 298, + 556, + 1403, + 556, + 1403, + 619, + 298, + 619 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 299, + 958, + 1400, + 958, + 1400, + 1021, + 299, + 1021 + ], + "score": 0.944 + }, + { + "category_id": 0, + "poly": [ + 299, + 714, + 676, + 714, + 676, + 747, + 299, + 747 + ], + "score": 0.916 + }, + { + "category_id": 2, + "poly": [ + 321, + 2004, + 1259, + 2004, + 1259, + 2034, + 321, + 2034 + ], + "score": 0.902 + }, + { + "category_id": 0, + "poly": [ + 298, + 1050, + 937, + 1050, + 937, + 1081, + 298, + 1081 + ], + "score": 0.901 + }, + { + "category_id": 0, + "poly": [ + 301, + 1421, + 586, + 1421, + 586, + 1457, + 301, + 1457 + ], + "score": 0.899 + }, + { + "category_id": 2, + "poly": [ + 297, + 75, + 854, + 75, + 854, + 105, + 297, + 105 + ], + "score": 0.899 + }, + { + "category_id": 7, + "poly": [ + 549, + 463, + 1152, + 463, + 1152, + 493, + 549, + 493 + ], + "score": 0.899 + }, + { + "category_id": 0, + "poly": [ + 299, + 656, + 530, + 656, + 530, + 692, + 299, + 692 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2112, + 840, + 2112 + ], + "score": 0.807 + }, + { + "category_id": 13, + "poly": [ + 831, + 556, + 990, + 556, + 990, + 589, + 831, + 589 + ], + "score": 0.91, + "latex": "1 0 0 \\% \\Rightarrow 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 481, + 793, + 521, + 793, + 521, + 821, + 481, + 821 + ], + "score": 0.87, + "latex": "{ \\bf w } _ { \\tau }" + }, + { + "category_id": 13, + "poly": [ + 385, + 794, + 423, + 794, + 423, + 821, + 385, + 821 + ], + "score": 0.86, + "latex": "\\pmb { \\alpha } _ { \\tau }" + }, + { + "category_id": 13, + "poly": [ + 325, + 913, + 364, + 913, + 364, + 941, + 325, + 941 + ], + "score": 0.86, + "latex": "2 \\times" + }, + { + "category_id": 13, + "poly": [ + 1341, + 882, + 1402, + 882, + 1402, + 912, + 1341, + 912 + ], + "score": 0.85, + "latex": "1 . 5 \\times" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 714.0, + 679.0, + 714.0, + 679.0, + 750.0, + 296.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1998.0, + 1264.0, + 1998.0, + 1264.0, + 2040.0, + 321.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1049.0, + 939.0, + 1049.0, + 939.0, + 1084.0, + 295.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1419.0, + 592.0, + 1419.0, + 592.0, + 1462.0, + 293.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 546.0, + 462.0, + 1153.0, + 462.0, + 1153.0, + 496.0, + 546.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 652.0, + 535.0, + 652.0, + 535.0, + 700.0, + 292.0, + 700.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": [ + 294.0, + 1092.0, + 1404.0, + 1092.0, + 1404.0, + 1130.0, + 294.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1125.0, + 1394.0, + 1125.0, + 1394.0, + 1162.0, + 295.0, + 1162.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1155.0, + 1404.0, + 1155.0, + 1404.0, + 1192.0, + 292.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1185.0, + 1405.0, + 1185.0, + 1405.0, + 1222.0, + 295.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1216.0, + 1406.0, + 1216.0, + 1406.0, + 1253.0, + 294.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1246.0, + 1404.0, + 1246.0, + 1404.0, + 1283.0, + 294.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1279.0, + 1405.0, + 1279.0, + 1405.0, + 1312.0, + 295.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1299.0, + 1411.0, + 1299.0, + 1411.0, + 1347.0, + 290.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1338.0, + 747.0, + 1338.0, + 747.0, + 1373.0, + 292.0, + 1373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1494.0, + 1405.0, + 1494.0, + 1405.0, + 1532.0, + 292.0, + 1532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1529.0, + 1403.0, + 1529.0, + 1403.0, + 1562.0, + 296.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1558.0, + 1405.0, + 1558.0, + 1405.0, + 1592.0, + 292.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1588.0, + 1406.0, + 1588.0, + 1406.0, + 1622.0, + 292.0, + 1622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1618.0, + 1406.0, + 1618.0, + 1406.0, + 1654.0, + 294.0, + 1654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1648.0, + 1406.0, + 1648.0, + 1406.0, + 1684.0, + 295.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1680.0, + 1405.0, + 1680.0, + 1405.0, + 1713.0, + 295.0, + 1713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1708.0, + 1408.0, + 1708.0, + 1408.0, + 1744.0, + 291.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1741.0, + 1405.0, + 1741.0, + 1405.0, + 1776.0, + 294.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1769.0, + 1406.0, + 1769.0, + 1406.0, + 1807.0, + 292.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1798.0, + 1405.0, + 1798.0, + 1405.0, + 1837.0, + 292.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1829.0, + 1407.0, + 1829.0, + 1407.0, + 1867.0, + 294.0, + 1867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1859.0, + 1405.0, + 1859.0, + 1405.0, + 1897.0, + 294.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1892.0, + 1403.0, + 1892.0, + 1403.0, + 1926.0, + 294.0, + 1926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1922.0, + 1406.0, + 1922.0, + 1406.0, + 1959.0, + 294.0, + 1959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1951.0, + 485.0, + 1951.0, + 485.0, + 1987.0, + 294.0, + 1987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 759.0, + 1403.0, + 759.0, + 1403.0, + 794.0, + 294.0, + 794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 789.0, + 384.0, + 789.0, + 384.0, + 825.0, + 294.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 789.0, + 480.0, + 789.0, + 480.0, + 825.0, + 424.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 522.0, + 789.0, + 1405.0, + 789.0, + 1405.0, + 825.0, + 522.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 821.0, + 1405.0, + 821.0, + 1405.0, + 856.0, + 294.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 850.0, + 1404.0, + 850.0, + 1404.0, + 885.0, + 294.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 881.0, + 1340.0, + 881.0, + 1340.0, + 916.0, + 294.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 909.0, + 324.0, + 909.0, + 324.0, + 948.0, + 293.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 909.0, + 965.0, + 909.0, + 965.0, + 948.0, + 365.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 554.0, + 830.0, + 554.0, + 830.0, + 594.0, + 294.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 991.0, + 554.0, + 1407.0, + 554.0, + 1407.0, + 594.0, + 991.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 589.0, + 824.0, + 589.0, + 824.0, + 623.0, + 293.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 958.0, + 1404.0, + 958.0, + 1404.0, + 993.0, + 297.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 988.0, + 1199.0, + 988.0, + 1199.0, + 1025.0, + 294.0, + 1025.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 230, + 1403, + 230, + 1403, + 444, + 298, + 444 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 905, + 1404, + 905, + 1404, + 1152, + 298, + 1152 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 299, + 636, + 1403, + 636, + 1403, + 790, + 299, + 790 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 464, + 1403, + 464, + 1403, + 616, + 298, + 616 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 299, + 1250, + 1401, + 1250, + 1401, + 1312, + 299, + 1312 + ], + "score": 0.895 + }, + { + "category_id": 0, + "poly": [ + 300, + 834, + 544, + 834, + 544, + 870, + 300, + 870 + ], + "score": 0.885 + }, + { + "category_id": 1, + "poly": [ + 300, + 1334, + 1403, + 1334, + 1403, + 1518, + 300, + 1518 + ], + "score": 0.876 + }, + { + "category_id": 0, + "poly": [ + 300, + 1198, + 487, + 1198, + 487, + 1231, + 300, + 1231 + ], + "score": 0.872 + }, + { + "category_id": 1, + "poly": [ + 300, + 1942, + 1401, + 1942, + 1401, + 2033, + 300, + 2033 + ], + "score": 0.865 + }, + { + "category_id": 1, + "poly": [ + 296, + 1540, + 979, + 1540, + 979, + 1572, + 296, + 1572 + ], + "score": 0.863 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 852, + 76, + 852, + 104, + 300, + 104 + ], + "score": 0.853 + }, + { + "category_id": 1, + "poly": [ + 295, + 1825, + 1402, + 1825, + 1402, + 1918, + 295, + 1918 + ], + "score": 0.844 + }, + { + "category_id": 1, + "poly": [ + 298, + 1710, + 1400, + 1710, + 1400, + 1803, + 298, + 1803 + ], + "score": 0.775 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.768 + }, + { + "category_id": 1, + "poly": [ + 298, + 1595, + 1405, + 1595, + 1405, + 1688, + 298, + 1688 + ], + "score": 0.737 + }, + { + "category_id": 15, + "poly": [ + 290.0, + 826.0, + 550.0, + 826.0, + 550.0, + 881.0, + 290.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1200.0, + 489.0, + 1200.0, + 489.0, + 1233.0, + 297.0, + 1233.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, + 2087.0, + 860.0, + 2087.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 228.0, + 1407.0, + 228.0, + 1407.0, + 265.0, + 292.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 261.0, + 1408.0, + 261.0, + 1408.0, + 299.0, + 293.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 289.0, + 1404.0, + 289.0, + 1404.0, + 327.0, + 293.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 321.0, + 1406.0, + 321.0, + 1406.0, + 357.0, + 292.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 349.0, + 1407.0, + 349.0, + 1407.0, + 389.0, + 292.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 381.0, + 1405.0, + 381.0, + 1405.0, + 418.0, + 293.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 416.0, + 717.0, + 416.0, + 717.0, + 450.0, + 294.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 906.0, + 1404.0, + 906.0, + 1404.0, + 943.0, + 294.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 935.0, + 1405.0, + 935.0, + 1405.0, + 973.0, + 293.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 967.0, + 1404.0, + 967.0, + 1404.0, + 1003.0, + 293.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 997.0, + 1405.0, + 997.0, + 1405.0, + 1033.0, + 292.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1026.0, + 1404.0, + 1026.0, + 1404.0, + 1065.0, + 293.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1056.0, + 1406.0, + 1056.0, + 1406.0, + 1096.0, + 292.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1088.0, + 1407.0, + 1088.0, + 1407.0, + 1124.0, + 292.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1118.0, + 1302.0, + 1118.0, + 1302.0, + 1159.0, + 292.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 635.0, + 1405.0, + 635.0, + 1405.0, + 672.0, + 295.0, + 672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 667.0, + 1405.0, + 667.0, + 1405.0, + 702.0, + 294.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 693.0, + 1407.0, + 693.0, + 1407.0, + 736.0, + 294.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 726.0, + 1405.0, + 726.0, + 1405.0, + 765.0, + 294.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 755.0, + 835.0, + 755.0, + 835.0, + 799.0, + 293.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 465.0, + 1404.0, + 465.0, + 1404.0, + 498.0, + 296.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 493.0, + 1405.0, + 493.0, + 1405.0, + 530.0, + 294.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 526.0, + 1404.0, + 526.0, + 1404.0, + 558.0, + 294.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 554.0, + 1404.0, + 554.0, + 1404.0, + 591.0, + 294.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 587.0, + 746.0, + 587.0, + 746.0, + 620.0, + 296.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1248.0, + 1406.0, + 1248.0, + 1406.0, + 1287.0, + 295.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1278.0, + 834.0, + 1278.0, + 834.0, + 1314.0, + 322.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1336.0, + 1403.0, + 1336.0, + 1403.0, + 1368.0, + 296.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1364.0, + 1404.0, + 1364.0, + 1404.0, + 1401.0, + 321.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1396.0, + 1404.0, + 1396.0, + 1404.0, + 1431.0, + 323.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1426.0, + 1405.0, + 1426.0, + 1405.0, + 1462.0, + 321.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1456.0, + 1405.0, + 1456.0, + 1405.0, + 1492.0, + 321.0, + 1492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1487.0, + 1260.0, + 1487.0, + 1260.0, + 1521.0, + 320.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1942.0, + 1405.0, + 1942.0, + 1405.0, + 1976.0, + 296.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1973.0, + 1405.0, + 1973.0, + 1405.0, + 2007.0, + 323.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 2003.0, + 633.0, + 2003.0, + 633.0, + 2034.0, + 322.0, + 2034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1537.0, + 983.0, + 1537.0, + 983.0, + 1578.0, + 293.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1823.0, + 1403.0, + 1823.0, + 1403.0, + 1862.0, + 294.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1855.0, + 1406.0, + 1855.0, + 1406.0, + 1894.0, + 320.0, + 1894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1886.0, + 488.0, + 1886.0, + 488.0, + 1921.0, + 320.0, + 1921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1703.0, + 1405.0, + 1703.0, + 1405.0, + 1749.0, + 292.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1740.0, + 1402.0, + 1740.0, + 1402.0, + 1773.0, + 323.0, + 1773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1772.0, + 611.0, + 1772.0, + 611.0, + 1803.0, + 322.0, + 1803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1594.0, + 1403.0, + 1594.0, + 1403.0, + 1632.0, + 295.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1626.0, + 1402.0, + 1626.0, + 1402.0, + 1660.0, + 325.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1658.0, + 1388.0, + 1658.0, + 1388.0, + 1691.0, + 323.0, + 1691.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 836, + 2088, + 866, + 2088, + 866, + 2113, + 836, + 2113 + ], + "score": 0.834 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.776 + }, + { + "category_id": 1, + "poly": [ + 294, + 1110, + 1402, + 1110, + 1402, + 1175, + 294, + 1175 + ], + "score": 0.638 + }, + { + "category_id": 1, + "poly": [ + 297, + 1192, + 1402, + 1192, + 1402, + 1258, + 297, + 1258 + ], + "score": 0.618 + }, + { + "category_id": 1, + "poly": [ + 297, + 1611, + 1399, + 1611, + 1399, + 1677, + 297, + 1677 + ], + "score": 0.605 + }, + { + "category_id": 1, + "poly": [ + 291, + 1028, + 1400, + 1028, + 1400, + 1093, + 291, + 1093 + ], + "score": 0.604 + }, + { + "category_id": 1, + "poly": [ + 295, + 1417, + 1396, + 1417, + 1396, + 1483, + 295, + 1483 + ], + "score": 0.576 + }, + { + "category_id": 1, + "poly": [ + 299, + 1499, + 1400, + 1499, + 1400, + 1594, + 299, + 1594 + ], + "score": 0.569 + }, + { + "category_id": 1, + "poly": [ + 295, + 1693, + 1396, + 1693, + 1396, + 1760, + 295, + 1760 + ], + "score": 0.565 + }, + { + "category_id": 1, + "poly": [ + 297, + 1971, + 1398, + 1971, + 1398, + 2035, + 297, + 2035 + ], + "score": 0.563 + }, + { + "category_id": 1, + "poly": [ + 294, + 834, + 1401, + 834, + 1401, + 899, + 294, + 899 + ], + "score": 0.554 + }, + { + "category_id": 1, + "poly": [ + 299, + 638, + 1403, + 638, + 1403, + 733, + 299, + 733 + ], + "score": 0.551 + }, + { + "category_id": 1, + "poly": [ + 297, + 915, + 1400, + 915, + 1400, + 1011, + 297, + 1011 + ], + "score": 0.544 + }, + { + "category_id": 1, + "poly": [ + 294, + 751, + 1400, + 751, + 1400, + 817, + 294, + 817 + ], + "score": 0.527 + }, + { + "category_id": 1, + "poly": [ + 295, + 1889, + 1399, + 1889, + 1399, + 1953, + 295, + 1953 + ], + "score": 0.497 + }, + { + "category_id": 1, + "poly": [ + 296, + 1274, + 1403, + 1274, + 1403, + 1401, + 296, + 1401 + ], + "score": 0.496 + }, + { + "category_id": 1, + "poly": [ + 291, + 228, + 1399, + 228, + 1399, + 264, + 291, + 264 + ], + "score": 0.482 + }, + { + "category_id": 1, + "poly": [ + 298, + 1775, + 1400, + 1775, + 1400, + 1870, + 298, + 1870 + ], + "score": 0.47 + }, + { + "category_id": 1, + "poly": [ + 295, + 444, + 1401, + 444, + 1401, + 509, + 295, + 509 + ], + "score": 0.468 + }, + { + "category_id": 1, + "poly": [ + 297, + 526, + 1400, + 526, + 1400, + 622, + 297, + 622 + ], + "score": 0.462 + }, + { + "category_id": 1, + "poly": [ + 295, + 281, + 1397, + 281, + 1397, + 346, + 295, + 346 + ], + "score": 0.436 + }, + { + "category_id": 1, + "poly": [ + 295, + 363, + 1399, + 363, + 1399, + 427, + 295, + 427 + ], + "score": 0.415 + }, + { + "category_id": 2, + "poly": [ + 297, + 75, + 854, + 75, + 854, + 105, + 297, + 105 + ], + "score": 0.13 + }, + { + "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, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1108.0, + 1404.0, + 1108.0, + 1404.0, + 1148.0, + 293.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1141.0, + 642.0, + 1141.0, + 642.0, + 1177.0, + 323.0, + 1177.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": [ + 325.0, + 1224.0, + 1355.0, + 1224.0, + 1355.0, + 1260.0, + 325.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1612.0, + 1405.0, + 1612.0, + 1405.0, + 1648.0, + 297.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1643.0, + 648.0, + 1643.0, + 648.0, + 1679.0, + 322.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1027.0, + 1403.0, + 1027.0, + 1403.0, + 1066.0, + 293.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1059.0, + 722.0, + 1059.0, + 722.0, + 1094.0, + 322.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1420.0, + 1397.0, + 1420.0, + 1397.0, + 1453.0, + 298.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1449.0, + 1216.0, + 1449.0, + 1216.0, + 1484.0, + 321.0, + 1484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1499.0, + 1404.0, + 1499.0, + 1404.0, + 1537.0, + 294.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1529.0, + 1405.0, + 1529.0, + 1405.0, + 1567.0, + 322.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1562.0, + 639.0, + 1562.0, + 639.0, + 1596.0, + 324.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1694.0, + 1400.0, + 1694.0, + 1400.0, + 1730.0, + 296.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1725.0, + 1196.0, + 1725.0, + 1196.0, + 1760.0, + 321.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1971.0, + 1403.0, + 1971.0, + 1403.0, + 2007.0, + 296.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 2002.0, + 1100.0, + 2002.0, + 1100.0, + 2038.0, + 323.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 832.0, + 1405.0, + 832.0, + 1405.0, + 872.0, + 293.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 864.0, + 905.0, + 864.0, + 905.0, + 899.0, + 322.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 638.0, + 1403.0, + 638.0, + 1403.0, + 675.0, + 294.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 670.0, + 1407.0, + 670.0, + 1407.0, + 707.0, + 322.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 699.0, + 463.0, + 699.0, + 463.0, + 734.0, + 322.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 916.0, + 1402.0, + 916.0, + 1402.0, + 951.0, + 295.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 947.0, + 1404.0, + 947.0, + 1404.0, + 981.0, + 323.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 978.0, + 728.0, + 978.0, + 728.0, + 1012.0, + 323.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 753.0, + 1404.0, + 753.0, + 1404.0, + 789.0, + 296.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 783.0, + 1397.0, + 783.0, + 1397.0, + 819.0, + 324.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1888.0, + 1404.0, + 1888.0, + 1404.0, + 1925.0, + 293.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1920.0, + 1374.0, + 1920.0, + 1374.0, + 1956.0, + 324.0, + 1956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1274.0, + 1404.0, + 1274.0, + 1404.0, + 1312.0, + 293.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1308.0, + 1405.0, + 1308.0, + 1405.0, + 1341.0, + 323.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1335.0, + 1405.0, + 1335.0, + 1405.0, + 1375.0, + 320.0, + 1375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1367.0, + 1355.0, + 1367.0, + 1355.0, + 1404.0, + 321.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 223.0, + 1399.0, + 223.0, + 1399.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1774.0, + 1404.0, + 1774.0, + 1404.0, + 1814.0, + 293.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1809.0, + 1404.0, + 1809.0, + 1404.0, + 1843.0, + 324.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1837.0, + 626.0, + 1837.0, + 626.0, + 1874.0, + 322.0, + 1874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 440.0, + 1406.0, + 440.0, + 1406.0, + 483.0, + 292.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 474.0, + 397.0, + 474.0, + 397.0, + 510.0, + 323.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 525.0, + 1404.0, + 525.0, + 1404.0, + 563.0, + 293.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 557.0, + 1402.0, + 557.0, + 1402.0, + 591.0, + 325.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 590.0, + 936.0, + 590.0, + 936.0, + 622.0, + 322.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 276.0, + 1403.0, + 276.0, + 1403.0, + 321.0, + 293.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 310.0, + 1337.0, + 310.0, + 1337.0, + 347.0, + 321.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 359.0, + 1404.0, + 359.0, + 1404.0, + 403.0, + 293.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 394.0, + 1036.0, + 394.0, + 1036.0, + 427.0, + 321.0, + 427.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.884 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2113, + 836, + 2113 + ], + "score": 0.827 + }, + { + "category_id": 1, + "poly": [ + 292, + 183, + 1407, + 183, + 1407, + 2038, + 292, + 2038 + ], + "score": 0.58 + }, + { + "category_id": 13, + "poly": [ + 325, + 463, + 359, + 463, + 359, + 493, + 325, + 493 + ], + "score": 0.86, + "latex": "L _ { 0 }" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 233.0, + 1403.0, + 233.0, + 1403.0, + 265.0, + 298.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 261.0, + 1403.0, + 261.0, + 1403.0, + 300.0, + 320.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 292.0, + 842.0, + 292.0, + 842.0, + 331.0, + 322.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 341.0, + 1403.0, + 341.0, + 1403.0, + 390.0, + 290.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 379.0, + 706.0, + 379.0, + 706.0, + 412.0, + 322.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 426.0, + 1407.0, + 426.0, + 1407.0, + 473.0, + 290.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 459.0, + 324.0, + 459.0, + 324.0, + 502.0, + 318.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 459.0, + 893.0, + 459.0, + 893.0, + 502.0, + 360.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 514.0, + 1407.0, + 514.0, + 1407.0, + 555.0, + 292.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 550.0, + 1147.0, + 550.0, + 1147.0, + 583.0, + 322.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 601.0, + 1405.0, + 601.0, + 1405.0, + 640.0, + 294.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 632.0, + 1043.0, + 632.0, + 1043.0, + 671.0, + 320.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 687.0, + 1407.0, + 687.0, + 1407.0, + 726.0, + 294.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 717.0, + 1333.0, + 717.0, + 1333.0, + 756.0, + 320.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 766.0, + 1405.0, + 766.0, + 1405.0, + 813.0, + 290.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 801.0, + 903.0, + 801.0, + 903.0, + 840.0, + 320.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 860.0, + 1405.0, + 860.0, + 1405.0, + 893.0, + 296.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 889.0, + 1209.0, + 889.0, + 1209.0, + 927.0, + 320.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 939.0, + 1407.0, + 939.0, + 1407.0, + 980.0, + 292.0, + 980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 974.0, + 1405.0, + 974.0, + 1405.0, + 1013.0, + 320.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1031.0, + 1401.0, + 1031.0, + 1401.0, + 1064.0, + 296.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1056.0, + 1407.0, + 1056.0, + 1407.0, + 1100.0, + 320.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1083.0, + 411.0, + 1083.0, + 411.0, + 1130.0, + 320.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1147.0, + 1403.0, + 1147.0, + 1403.0, + 1180.0, + 296.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1174.0, + 1405.0, + 1174.0, + 1405.0, + 1212.0, + 320.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1204.0, + 626.0, + 1204.0, + 626.0, + 1243.0, + 322.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1261.0, + 1401.0, + 1261.0, + 1401.0, + 1294.0, + 296.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1290.0, + 1113.0, + 1290.0, + 1113.0, + 1328.0, + 322.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1341.0, + 1405.0, + 1341.0, + 1405.0, + 1387.0, + 290.0, + 1387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1375.0, + 802.0, + 1375.0, + 802.0, + 1414.0, + 320.0, + 1414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1424.0, + 1407.0, + 1424.0, + 1407.0, + 1473.0, + 290.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1459.0, + 911.0, + 1459.0, + 911.0, + 1500.0, + 318.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1516.0, + 1405.0, + 1516.0, + 1405.0, + 1554.0, + 294.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1546.0, + 762.0, + 1546.0, + 762.0, + 1585.0, + 320.0, + 1585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1597.0, + 1405.0, + 1597.0, + 1405.0, + 1638.0, + 292.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1632.0, + 1403.0, + 1632.0, + 1403.0, + 1671.0, + 320.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1664.0, + 1091.0, + 1664.0, + 1091.0, + 1697.0, + 326.0, + 1697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1715.0, + 1403.0, + 1715.0, + 1403.0, + 1754.0, + 294.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1750.0, + 1169.0, + 1750.0, + 1169.0, + 1783.0, + 322.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1801.0, + 1403.0, + 1801.0, + 1403.0, + 1840.0, + 292.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1831.0, + 768.0, + 1831.0, + 768.0, + 1870.0, + 322.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1886.0, + 1403.0, + 1886.0, + 1403.0, + 1925.0, + 294.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1917.0, + 828.0, + 1917.0, + 828.0, + 1956.0, + 322.0, + 1956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1974.0, + 1405.0, + 1974.0, + 1405.0, + 2007.0, + 296.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 2005.0, + 929.0, + 2005.0, + 929.0, + 2037.0, + 322.0, + 2037.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.881 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.828 + }, + { + "category_id": 1, + "poly": [ + 296, + 1552, + 1399, + 1552, + 1399, + 1617, + 296, + 1617 + ], + "score": 0.557 + }, + { + "category_id": 1, + "poly": [ + 299, + 1084, + 1400, + 1084, + 1400, + 1179, + 299, + 1179 + ], + "score": 0.523 + }, + { + "category_id": 1, + "poly": [ + 295, + 1196, + 1400, + 1196, + 1400, + 1261, + 295, + 1261 + ], + "score": 0.511 + }, + { + "category_id": 1, + "poly": [ + 296, + 1471, + 1400, + 1471, + 1400, + 1536, + 296, + 1536 + ], + "score": 0.508 + }, + { + "category_id": 1, + "poly": [ + 297, + 1277, + 1399, + 1277, + 1399, + 1343, + 297, + 1343 + ], + "score": 0.506 + }, + { + "category_id": 1, + "poly": [ + 300, + 1359, + 1401, + 1359, + 1401, + 1454, + 300, + 1454 + ], + "score": 0.498 + }, + { + "category_id": 1, + "poly": [ + 294, + 1635, + 1400, + 1635, + 1400, + 1699, + 294, + 1699 + ], + "score": 0.485 + }, + { + "category_id": 1, + "poly": [ + 293, + 1002, + 1402, + 1002, + 1402, + 1068, + 293, + 1068 + ], + "score": 0.461 + }, + { + "category_id": 1, + "poly": [ + 297, + 1716, + 1401, + 1716, + 1401, + 1782, + 297, + 1782 + ], + "score": 0.457 + }, + { + "category_id": 1, + "poly": [ + 303, + 229, + 1400, + 229, + 1400, + 324, + 303, + 324 + ], + "score": 0.448 + }, + { + "category_id": 1, + "poly": [ + 301, + 890, + 1399, + 890, + 1399, + 985, + 301, + 985 + ], + "score": 0.444 + }, + { + "category_id": 1, + "poly": [ + 292, + 809, + 1401, + 809, + 1401, + 874, + 292, + 874 + ], + "score": 0.442 + }, + { + "category_id": 1, + "poly": [ + 302, + 697, + 1401, + 697, + 1401, + 792, + 302, + 792 + ], + "score": 0.431 + }, + { + "category_id": 1, + "poly": [ + 302, + 1971, + 1394, + 1971, + 1394, + 2034, + 302, + 2034 + ], + "score": 0.425 + }, + { + "category_id": 1, + "poly": [ + 302, + 503, + 1400, + 503, + 1400, + 599, + 302, + 599 + ], + "score": 0.424 + }, + { + "category_id": 1, + "poly": [ + 296, + 422, + 1401, + 422, + 1401, + 487, + 296, + 487 + ], + "score": 0.41 + }, + { + "category_id": 1, + "poly": [ + 300, + 341, + 1399, + 341, + 1399, + 405, + 300, + 405 + ], + "score": 0.405 + }, + { + "category_id": 1, + "poly": [ + 291, + 615, + 1401, + 615, + 1401, + 681, + 291, + 681 + ], + "score": 0.398 + }, + { + "category_id": 1, + "poly": [ + 309, + 1798, + 1401, + 1798, + 1401, + 1954, + 309, + 1954 + ], + "score": 0.21 + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1551.0, + 1404.0, + 1551.0, + 1404.0, + 1591.0, + 294.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1585.0, + 623.0, + 1585.0, + 623.0, + 1615.0, + 322.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1084.0, + 1404.0, + 1084.0, + 1404.0, + 1122.0, + 294.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1113.0, + 1404.0, + 1113.0, + 1404.0, + 1153.0, + 319.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1145.0, + 395.0, + 1145.0, + 395.0, + 1179.0, + 322.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1196.0, + 1404.0, + 1196.0, + 1404.0, + 1232.0, + 295.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1227.0, + 632.0, + 1227.0, + 632.0, + 1263.0, + 323.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1471.0, + 1404.0, + 1471.0, + 1404.0, + 1507.0, + 296.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1501.0, + 611.0, + 1501.0, + 611.0, + 1537.0, + 321.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1280.0, + 1401.0, + 1280.0, + 1401.0, + 1313.0, + 296.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1309.0, + 1201.0, + 1309.0, + 1201.0, + 1344.0, + 322.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1360.0, + 1403.0, + 1360.0, + 1403.0, + 1394.0, + 296.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1388.0, + 1405.0, + 1388.0, + 1405.0, + 1428.0, + 320.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1421.0, + 509.0, + 1421.0, + 509.0, + 1454.0, + 321.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1635.0, + 1404.0, + 1635.0, + 1404.0, + 1671.0, + 296.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1667.0, + 1011.0, + 1667.0, + 1011.0, + 1700.0, + 323.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1003.0, + 1404.0, + 1003.0, + 1404.0, + 1039.0, + 296.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1034.0, + 865.0, + 1034.0, + 865.0, + 1070.0, + 324.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1717.0, + 1403.0, + 1717.0, + 1403.0, + 1753.0, + 295.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1748.0, + 933.0, + 1748.0, + 933.0, + 1784.0, + 324.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 228.0, + 1404.0, + 228.0, + 1404.0, + 264.0, + 298.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 259.0, + 1404.0, + 259.0, + 1404.0, + 297.0, + 323.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 290.0, + 906.0, + 290.0, + 906.0, + 326.0, + 322.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 891.0, + 1403.0, + 891.0, + 1403.0, + 925.0, + 296.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 925.0, + 1402.0, + 925.0, + 1402.0, + 956.0, + 323.0, + 956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 955.0, + 549.0, + 955.0, + 549.0, + 986.0, + 322.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 811.0, + 1404.0, + 811.0, + 1404.0, + 847.0, + 296.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 840.0, + 1054.0, + 840.0, + 1054.0, + 875.0, + 323.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 695.0, + 1405.0, + 695.0, + 1405.0, + 736.0, + 295.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 727.0, + 1404.0, + 727.0, + 1404.0, + 764.0, + 323.0, + 764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 760.0, + 713.0, + 760.0, + 713.0, + 791.0, + 324.0, + 791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1971.0, + 1397.0, + 1971.0, + 1397.0, + 2006.0, + 295.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 2004.0, + 1378.0, + 2004.0, + 1378.0, + 2036.0, + 325.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 501.0, + 1405.0, + 501.0, + 1405.0, + 541.0, + 293.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 534.0, + 1404.0, + 534.0, + 1404.0, + 572.0, + 323.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 566.0, + 997.0, + 566.0, + 997.0, + 600.0, + 323.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 421.0, + 1405.0, + 421.0, + 1405.0, + 460.0, + 295.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 454.0, + 896.0, + 454.0, + 896.0, + 487.0, + 325.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 333.0, + 1404.0, + 333.0, + 1404.0, + 383.0, + 294.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 373.0, + 762.0, + 373.0, + 762.0, + 405.0, + 324.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 613.0, + 1404.0, + 613.0, + 1404.0, + 655.0, + 293.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 648.0, + 860.0, + 648.0, + 860.0, + 682.0, + 322.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 1799.0, + 1403.0, + 1799.0, + 1403.0, + 1832.0, + 304.0, + 1832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1831.0, + 1405.0, + 1831.0, + 1405.0, + 1864.0, + 322.0, + 1864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1856.0, + 1406.0, + 1856.0, + 1406.0, + 1900.0, + 319.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1888.0, + 1405.0, + 1888.0, + 1405.0, + 1927.0, + 321.0, + 1927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1920.0, + 1101.0, + 1920.0, + 1101.0, + 1956.0, + 321.0, + 1956.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 338, + 231, + 1359, + 231, + 1359, + 666, + 338, + 666 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 297, + 1371, + 1403, + 1371, + 1403, + 1463, + 297, + 1463 + ], + "score": 0.96 + }, + { + "category_id": 4, + "poly": [ + 300, + 698, + 1401, + 698, + 1401, + 784, + 300, + 784 + ], + "score": 0.94 + }, + { + "category_id": 1, + "poly": [ + 298, + 843, + 1408, + 843, + 1408, + 936, + 298, + 936 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 297, + 76, + 854, + 76, + 854, + 104, + 297, + 104 + ], + "score": 0.877 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.841 + }, + { + "category_id": 0, + "poly": [ + 299, + 1313, + 876, + 1313, + 876, + 1345, + 299, + 1345 + ], + "score": 0.81 + }, + { + "category_id": 0, + "poly": [ + 301, + 1245, + 509, + 1245, + 509, + 1280, + 301, + 1280 + ], + "score": 0.802 + }, + { + "category_id": 1, + "poly": [ + 304, + 1122, + 1403, + 1122, + 1403, + 1186, + 304, + 1186 + ], + "score": 0.767 + }, + { + "category_id": 1, + "poly": [ + 299, + 955, + 1402, + 955, + 1402, + 1021, + 299, + 1021 + ], + "score": 0.706 + }, + { + "category_id": 1, + "poly": [ + 301, + 1038, + 1402, + 1038, + 1402, + 1103, + 301, + 1103 + ], + "score": 0.685 + }, + { + "category_id": 13, + "poly": [ + 668, + 755, + 717, + 755, + 717, + 781, + 668, + 781 + ], + "score": 0.87, + "latex": "20 \\%" + }, + { + "category_id": 13, + "poly": [ + 1345, + 700, + 1401, + 700, + 1401, + 727, + 1345, + 727 + ], + "score": 0.86, + "latex": "0 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 603, + 755, + 640, + 755, + 640, + 781, + 603, + 781 + ], + "score": 0.85, + "latex": "0 \\%" + }, + { + "category_id": 13, + "poly": [ + 297, + 759, + 313, + 759, + 313, + 780, + 297, + 780 + ], + "score": 0.49, + "latex": "\\mathbf { X }" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 452.0, + 1035.0, + 452.0, + 1035.0, + 620.0, + 955.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 502.0, + 595.0, + 502.0, + 595.0, + 543.0, + 565.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 568.0, + 794.0, + 568.0, + 794.0, + 581.0, + 775.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 698.0, + 1344.0, + 698.0, + 1344.0, + 731.0, + 296.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 698.0, + 1405.0, + 698.0, + 1405.0, + 731.0, + 1402.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 727.0, + 1405.0, + 727.0, + 1405.0, + 758.0, + 294.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 755.0, + 602.0, + 755.0, + 602.0, + 784.0, + 314.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 641.0, + 755.0, + 667.0, + 755.0, + 667.0, + 784.0, + 641.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.0, + 755.0, + 727.0, + 755.0, + 727.0, + 784.0, + 718.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2084.0, + 870.0, + 2084.0, + 870.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1313.0, + 880.0, + 1313.0, + 880.0, + 1349.0, + 295.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1239.0, + 514.0, + 1239.0, + 514.0, + 1289.0, + 293.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1370.0, + 1404.0, + 1370.0, + 1404.0, + 1407.0, + 293.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1397.0, + 1407.0, + 1397.0, + 1407.0, + 1440.0, + 291.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1430.0, + 1310.0, + 1430.0, + 1310.0, + 1466.0, + 294.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 841.0, + 1405.0, + 841.0, + 1405.0, + 880.0, + 292.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 870.0, + 1408.0, + 870.0, + 1408.0, + 912.0, + 321.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 905.0, + 501.0, + 905.0, + 501.0, + 937.0, + 321.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 1122.0, + 1406.0, + 1122.0, + 1406.0, + 1158.0, + 299.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1153.0, + 1111.0, + 1153.0, + 1111.0, + 1187.0, + 323.0, + 1187.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 956.0, + 1404.0, + 956.0, + 1404.0, + 993.0, + 294.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 987.0, + 1135.0, + 987.0, + 1135.0, + 1022.0, + 322.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1037.0, + 1406.0, + 1037.0, + 1406.0, + 1077.0, + 296.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1071.0, + 1353.0, + 1071.0, + 1353.0, + 1105.0, + 321.0, + 1105.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/OItvP2-i9j/OItvP2-i9j.md b/parse/train/OItvP2-i9j/OItvP2-i9j.md new file mode 100644 index 0000000000000000000000000000000000000000..53a7893d7f88d0f71f385d8a32d5027b40a7c6f6 --- /dev/null +++ b/parse/train/OItvP2-i9j/OItvP2-i9j.md @@ -0,0 +1,487 @@ +# Closing the Gap: Tighter Analysis of Alternating Stochastic Gradient Methods for Bilevel Problems + +Tianyi Chen Rensselaer Polytechnic Institute chentianyi $1 9 @$ gmail.com + +Yuejiao Sun +UCLA +sunyj@math.ucla.edu + +Wotao Yin UCLA wotaoyin@math.ucla.edu + +# Abstract + +Stochastic nested optimization, including stochastic bilevel, min-max, and compositional optimization, is gaining popularity in many machine learning applications. While the three problems share a nested structure, existing works often treat them separately, thus developing problem-specific algorithms and analyses. Among various exciting developments, simple SGD-type updates (potentially on multiple variables) are still prevalent in solving this class of nested problems, but they are believed to have a slower convergence rate than non-nested problems. This paper unifies several SGD-type updates for stochastic nested problems into a single SGD approach that we term ALternating Stochastic gradient dEscenT (ALSET) method. By leveraging the hidden smoothness of the problem, this paper presents a tighter analysis of ALSET for stochastic nested problems. Under the new analysis, to achieve an $\epsilon$ -stationary point of the nested problem, it requires $\mathcal { O } ( \epsilon ^ { - 2 } )$ samples in total. Under certain regularity conditions, applying our results to stochastic compositional, min-max, and reinforcement learning problems either improves or matches the best-known sample complexity in the respective cases. Our results explain why simple SGD-type algorithms in stochastic nested problems all work very well in practice without the need for further modifications. + +# 1 Introduction + +Stochastic gradient descent (SGD) methods [1] are prevalent in solving large-scale machine learning problems. Often, SGD is applied to solve stochastic problems with a relatively simple structure. Specifically, applying SGD to minimize the function $\mathbb { E } _ { \xi } ^ { - } \left[ f ( x ; \xi ) \right]$ over the variable $x \in \mathbb { R } ^ { d }$ , we have the iterative update $\boldsymbol { x } ^ { k + 1 } = \boldsymbol { x } ^ { k } - \alpha \nabla f ( x ^ { k } ; \xi ^ { k } )$ , where $\alpha > 0$ is the stepsize and $\nabla f ( x ^ { k } ; \xi ^ { k } )$ is the stochastic gradient at the iterate $x ^ { k }$ and the sample $\xi ^ { k }$ . However, many problems in machine learning today, such as meta learning, deep learning, hyper-parameter optimization, and reinforcement learning, go beyond the above simple minimization structure (termed the non-nested problem thereafter). For example, the objective function may be the compositions of multiple functions, where each composition may introduce an additional expectation [2]; and, the objective function may depend on the solution of another optimization problem [3]. In these problems, how to apply SGD and the efficiency of running SGD are not fully understood. + +To answer these questions, in this paper, we consider the following form of stochastic nested optimization problems, which is a generalization of the non-nested problems, given by + +$$ +\begin{array} { r l } { \underset { x \in \mathbb { R } ^ { d } } { \operatorname* { m i n } } } & { F ( x ) : = \mathbb { E } _ { \xi } \left[ f \left( x , y ^ { * } ( x ) ; \xi \right) \right] } \\ { \mathrm { s . t . ~ } } & { y ^ { * } ( x ) = \underset { y \in \mathbb { R } ^ { d ^ { \prime } } } { \operatorname { a r g m i n } } \ \mathbb { E } _ { \phi } [ g ( x , y ; \phi ) ] } \end{array} +$$ + +where $f$ and $g$ are differentiable functions; and, $\xi$ and $\phi$ are random variables. In the optimization literature [4–6], the problem (1) is referred to as the stochastic bilevel problem, where the upper-level optimization problem depends on the solution of the lower-level optimization over $y \in \mathbb { R } ^ { d ^ { \prime } }$ , denoted as $y ^ { \ast } ( x )$ , which depends on the value of upper-level variable $\boldsymbol { x } \in \mathbb { R } ^ { d }$ . + +The stochastic bilevel nested problem (1) encompasses two popular formulations with the nested structure: stochastic min-max problems and stochastic compositional problems. Therefore, results on the general nested problem (1) will also imply the results in the special cases. For example, if the lower-level objective $g$ is the negative of the upper-level objective $f$ , i.e., $g ( x , y ; \phi ) : = - \bar { f } ( x , y ; \xi )$ , the stochastic bilevel problem (1) reduces to the stochastic min-max problem + +$$ +\operatorname { I f } g ( x , y ; \phi ) : = - f ( x , y ; \xi ) \quad \Rightarrow \quad \operatorname* { m i n } _ { x \in \mathbb { R } ^ { d } } F ( x ) : = \operatorname* { m a x } _ { y \in \mathbb { R } ^ { d ^ { \prime } } } \mathbb { E } _ { \xi } \left[ f ( x , y ; \xi ) \right] . +$$ + +Motivated by applications in zero-sum games, adversarial learning and training GANs, significant efforts have been recently made for solving the stochastic min-max problem; see e.g., [7–11]. + +For example, if the upper-level objective $f$ is only a function of $y$ , i.e., $f ( x , y ; \xi ) : = f ( y ; \xi )$ , and the lower-level objective $g$ is a quadratic function of $y$ , i.e., $g ( x , y ; \phi ) : = \| y - h ( x ; \phi ) \| ^ { 2 }$ with a smooth function $h$ of $x$ , then the variable $y ^ { * } ( x )$ admits a closed-form solution, and thus the stochastic bilevel problem (1) reduces to the stochastic compositional problem [12–14] + +$$ +\mathrm { I f } \ g ( x , y ; \phi ) : = \| y - h ( x ; \phi ) \| ^ { 2 } \quad \Rightarrow \quad \operatorname* { m i n } _ { x \in \mathbb { R } ^ { d } } \ F ( x ) : = \mathbb { E } _ { \xi } \left[ f \big ( \mathbb { E } _ { \phi } [ h ( x ; \phi ) ] ; \xi \big ) \right] . +$$ + +Stochastic compositional problems in the form of (3) have been studied in the applications in model-agnostic meta learning and policy evaluation in reinforcement learning; see e.g., [2, 15]. + +To solve the nested problem (1) by SGD, one natural solution is to apply alternating SGD updates on $x$ and $y$ based on their stochastic gradients + +$$ +y ^ { k + 1 } = y ^ { k } - \beta _ { k } h _ { g } ^ { k } ~ \mathrm { a n d } ~ x ^ { k + 1 } = x ^ { k } - \alpha _ { k } h _ { f } ^ { k } +$$ + +where $h _ { g } ^ { k }$ is the unbiased stochastic gradient of $\mathbb { E } _ { \phi } [ g ( x ^ { k } , y ^ { k } ; \phi ) ]$ and $h _ { f } ^ { k }$ is the (possibly biased) stochastic gradient of $F ( x ^ { k } )$ ; and, $\beta _ { k }$ and $\alpha _ { k }$ are the stepsizes. A key challenge of running (4) for the nested problem is that (stochastic) gradient of the upper-level variable $x$ is prohibitively expensive to compute. As we will show later, computing an unbiased stochastic gradient of $F ( x )$ requires solving the lower-level problem exactly to obtain $y ^ { * } ( x )$ . + +An accurate stochastic gradient $h _ { f } ^ { k }$ can be obtained in roughly three ways. One way is to run SGD updates on $y ^ { k }$ multiple times before updating $x ^ { k }$ , which yields a double-loop algorithm. To guarantee convergence, it typically requires either the increasing number of lower-level $y$ -update or the growing number of batch size to estimate $h _ { g } ^ { k }$ ; see e.g., [16, 17]. The second way is to update $y ^ { k }$ in a timescale faster than that of $x ^ { k }$ so that $x ^ { k }$ is relatively static with respect to $y ^ { k }$ ; i.e., $\scriptstyle \operatorname* { l i m } _ { k \to \infty } \alpha _ { k } / \beta _ { k } = 0$ ; see e.g., [18]. The third way is to modify the direction $h _ { g } ^ { k }$ of $y ^ { k }$ by incorporating additional correction term, which adds extra computation burden; see e.g., [19]. At a high level, these modifications either deviate from the lightweight implementation of SGD or sacrifice the sample complexity of SGD. + +To this end, the main goal of this paper is to study the efficiency of running the vanilla alternating SGD (4) for the nested problem (1) and its implications on the special problem classes (2)-(3). + +# 1.1 Main results + +This paper analyzes a unifying algorithm for the stochastic bilevel problems that runs SGD on each variable alternatingly. We provide sample complexity that matches the complexity of SGD for single-level stochastic problems. Our results explain why SGD-type algorithms in stochastic bilevel, min-max, and compositional problems work very well in practice without modifications, including correction, increasing batch size, and two-timescale stepsizes. + +In the context of existing methods, our contributions can be summarized as follows. + +C1) We connect three different classes of stochastic nested optimization problems (stochastic compositional, min-max, and bilevel optimization), and unify three popular SGD-type updates for the respective problems into a single SGD-type method. We call it the ALternating Stochastic gradient dEscenT (ALSET) method. + +
ALSETBSATTSAstocBiOSTABLESUSTAIN/RSVRB
batch size0(1)0(1)0(1)0(c-1)0(1)0(1)
y-updateSGDO(c-))SGD stepsSGDSGDcorrectionmomentum
samples in gsamples in(5∈-2)(-2)(k-2)(-3)O(KPe-(P-(5∈-2)(-2)O(KPe-2)O(KPe-2)O(KP-2)(P
+ +Table 1: Sample complexity of stochastic bilevel algorithms (BSA in [16], TTSA in [18], stocBiO in [17], STABLE in [19], SUSTAIN in [25], RSVRB in [26]) to achieve an $\epsilon$ -stationary point of $F ( x )$ ; the notation $\widetilde { \mathcal { O } } ( \cdot )$ hides the terms of $\log \epsilon ^ { - 1 }$ ; the notation $\kappa ^ { p }$ denotes a polynomial function of $\kappa$ since the dependence on $\kappa$ is not explicit in [18, 19, 25, 26]. + +C2) Under the same assumptions made in most of the previous work, we discover that the solution of the lower-level problem is smooth – a property that is overlooked by the previous analyses. By leveraging the hidden smoothness, we present a tighter analysis of ALSET for the stochastic bilevel problems. Under the new analysis, to achieve an $\epsilon$ -stationary point of the nested problem, ALSET requires $\mathcal { O } ( \epsilon ^ { - 2 } )$ samples in total, rather than the $\mathcal { O } \dot { ( \epsilon ^ { - 5 / 2 } ) }$ sample complexity in the existing literature. +C3) We further customize the analysis to the two special cases – the compositional and min-max problems, and establish the improved sample complexity relative to that in the literature. We apply a new analysis to the celebrated actor-critic method for reinforcement learning problems. Under some regularity conditions, we show that, to achieve an $\epsilon$ -stationary point, the single-loop actor-critic method requires $\mathcal { O } ( \epsilon ^ { - 2 } )$ samples with i.i.d. sampling, which improves the best-known result of $\mathcal { O } ( \epsilon ^ { - 5 / 2 } )$ in the literature. + +# 1.2 Other related works + +To put our work in context, we review prior art that we group in the following three categories. + +Stochastic bilevel optimization. We can trace the study of bilevel optimization to the 1950s [20]. Many recent efforts have been made to solve the bilevel problems. One successful approach is to reformulate the bilevel problem as a single-level problem by replacing the lower-level problem by its optimality conditions [4, 5]. Recently, gradient-based methods for bilevel optimization have gained popularity. They iteratively approximate the (stochastic) gradient of the upper-level problem either in a forward or backward manner [21, 3, 22, 23]. Recent work has also studied the case where the lower-level problem does not have a unique solution [24]. + +The non-asymptotic analysis of bilevel optimization algorithms has been recently studied in some pioneering works, e.g., [16, 18, 17], just to name a few. In both [16, 17], bilevel stochastic optimization algorithms have been developed that run in a double-loop manner. To achieve an $\epsilon$ -stationary point, they only need the sample complexities $\mathcal { O } ( \epsilon ^ { - 3 } )$ and $\mathcal { O } ( \epsilon ^ { - 2 } )$ , respectively, comparable to that of SGD for the single-level case. Recently, a single-loop two-timescale stochastic approximation algorithm has been developed in [18] for the bilevel problem (1). Due to the nature of the two-timescale update, it incurs the sub-optimal sample complexity $\mathcal { O } ( \epsilon ^ { - 5 / 2 } )$ . A single-loop single-timescale stochastic bilevel optimization method has been recently developed in [19]. While the method can achieve the sample complexity $\mathcal { O } ( \epsilon ^ { - 2 } )$ , the resultant update on $y$ needs extra matrix projection, which can be costly. Very recently, the momentum-based acceleration has been incorporated into both the $x$ - and $y$ -updates in [25, 26] and also in [27] after our submission to the conference, where the new algorithms therein enjoy an improved sample complexity $\mathcal { O } ( \epsilon ^ { - 3 / 2 } )$ . However, these results cannot imply the $\mathcal { O } ( \epsilon ^ { - 2 } )$ sample complexity of the alternating SGD update (4), and are orthogonal to our results. A comparison of our results with prior work can be found in Table 1. + +Stochastic min-max optimization. In the context of min-max problems, the alternating version of the stochastic gradient descent ascent (GDA) method can be viewed as the alternating SGD updates (4) for the special nested problem (2). To mitigate the cycling behavior of GDA for convex-concave min-max problems, several variants have been developed by incorporating the idea of optimism; see e.g., [7, 8, 11, 29]. The analysis of stochastic GDA in the nonconvex-strongly concave setting is closely related to this paper; e.g., [9, 10, 30, 28]. Specifically, for stochastic GDA (SGDA), the $\mathcal { O } ( \epsilon ^ { - 2 } )$ sample complexity has been established in [28] under an increasing batch size $\mathcal { O } ( \epsilon ^ { - 1 } )$ . As highlighted in [28], how to achieve the $\mathcal { O } ( \epsilon ^ { - 2 } )$ sample complexity under an $\mathcal { O } ( 1 )$ constant batch size remains open. The reduction of our results to the min-max setting will provide an answer to this open question. In the same setting, accelerated GDA algorithms have been developed in [31–33]. Going beyond the one-side concave settings, algorithms and their convergence analysis have been studied for nonconvex-nonconcave min-max problems with certain benign structure; see e.g., [8, 34–36]. A comparison of our results with prior work can be found in Table 2. + +Stochastic compositional optimization. Stochastic compositional gradient algorithms developed in [12, 37] can be viewed as the alternating SGD updates (4) for the special compositional problem (3). However, to ensure convergence, the algorithms [12, 37] use two sequences of variables being updated in two different time scales, and thus the complexity of [12] and [37] is worse than $\mathcal { O } ( \epsilon ^ { - 2 } )$ of SGD for the non-compositional case. While most of existing algorithms rely on either two-timescale updates, the single-timescale single-loop approaches have been recently developed in [14, 38, 39], which achieve the sample complexity $\bar { \mathcal { O } } \bar { ( } \epsilon ^ { - 2 } \bar { ) }$ , same as SGD for the non-nested problems. However, the algorithms proposed therein are not the vanilla alternating SGD update in the sense of (4). Other related compositional algorithms also include [40–42]. A comparison can be found in Table 3. + +Organization. The basic background of bilevel optimization is reviewed, and the tighter analysis of the unifying ALSET method is presented in Section 2. The reduction of the main results to the special stochastic nested problems is provided in Section 3, and its applications to the actor-critic method are discussed in Section 4, followed by the conclusions in Section 5. + +# 2 Improved Analysis of Alternating Stochastic Gradient Method + +In this section, we will first provide background of bilevel problems and then introduce ALSET for stochastic nested problems. + +# 2.1 Preliminaries + +We use $\| \cdot \|$ to denote the $\ell _ { 2 }$ norm for vectors and Frobenius norm for matrices. For convenience, we define the deterministic functions as $g ( x , y ) : = \mathbb { E } _ { \phi } [ g ( x , y ; \phi ) ]$ and $f ( x , y ) : = \mathbb { E } _ { \xi } [ f ( x , y ; \xi ) ]$ . + +We also define $\nabla _ { y y } ^ { 2 } g \big ( x , y \big )$ as the Hessian matrix of $g$ with respect to $y$ and define $\nabla _ { x y } ^ { 2 } g \left( x , y \right)$ as + +$$ +\nabla _ { x y } ^ { 2 } g ( x , y ) : = \left[ \begin{array} { l l l } { \frac { \partial ^ { 2 } } { \partial x _ { 1 } \partial y _ { 1 } } g ( x , y ) } & { \cdot \cdot \cdot } & { \frac { \partial ^ { 2 } } { \partial x _ { 1 } \partial y _ { d ^ { \prime } } } g ( x , y ) } \\ & { \cdot \cdot \cdot } \\ { \frac { \partial ^ { 2 } } { \partial x _ { d } \partial y _ { 1 } } g ( x , y ) } & { \cdot \cdot \cdot } & { \frac { \partial ^ { 2 } } { \partial x _ { d } \partial y _ { d ^ { \prime } } } g ( x , y ) } \end{array} \right] . +$$ + +We make the following assumptions, which are common in the bilevel optimization literature [16– 18, 26]. + +Assumption 1 (Lipschitz continuity). Assume that $f , \nabla f , \nabla g , \nabla ^ { 2 } g$ are respectively $\ell _ { f , 0 } .$ , $\ell _ { f , 1 } , \ell _ { g , 1 } , \ell _ { g , 2 }$ -Lipschitz continuous; that is, for $z _ { 1 } : = [ x _ { 1 } ; y _ { 1 } ]$ , $z _ { 2 } : = [ x _ { 2 } ; y _ { 2 } ]$ , we have $\parallel f ( x _ { 1 } , y _ { 1 } ) -$ $\begin{array} { r c l } { f ( x _ { 2 } , y _ { 2 } ) \| ^ { - } \le } & { \ell _ { f , 0 } \| z _ { 1 } - z _ { 2 } \| , \| \nabla f ( x _ { 1 } , y _ { 1 } ) - \nabla f ( x _ { 2 } , y _ { 2 } ) \| } & { \le } & { \ell _ { f , 1 } \| z _ { 1 } - x _ { 2 } \| , } \end{array}$ $\nabla g ( x _ { 2 } , y _ { 2 } ) \| \leq \ell _ { g , 1 } \| z _ { 1 } - z _ { 2 } \|$ , $\begin{array} { r } { \| \nabla ^ { 2 } g ( x _ { 1 } , y _ { 1 } ) - \nabla ^ { 2 } g ( x _ { 2 } , y _ { 2 } ) \| \le \ell _ { g , 2 } \| z _ { 1 } - z _ { 2 } \| . } \end{array}$ . + +Assumption 2 (Strong convexity of $g$ in $y$ ). For any fixed $x$ , $g ( x , y )$ is $\mu _ { g }$ -strongly convex in $y$ + +Assumptions 1 and 2 together ensure that the first- and second-order derivations of $f ( x , y ) , g ( x , y )$ as well as the solution mapping $y ^ { \ast } ( x )$ , are well-behaved. Define the condition number $\kappa : = \ell _ { g , 1 } / \mu _ { g }$ + +Assumption 3 (Stochastic derivatives). The stochastic derivatives $\nabla f ( x , y ; \xi )$ , $\nabla g ( x , y ; \phi )$ , $\nabla ^ { 2 } g ( x , \mathbf { \bar { y } } , \phi )$ are unbiased estimators of $\nabla f ( x , y )$ , $\nabla g ( x , y )$ , $\nabla ^ { 2 } g ( x , y )$ , respectively; and their variances are bounded by $\sigma _ { f } ^ { 2 } , \sigma _ { g , 1 } ^ { 2 }$ , $\sigma _ { g , 2 } ^ { 2 }$ , respectively. + +
ALSETSCGDNASA
batch size0(1)0(1)0(1)
y-updateSGDSGDcorrection
samplesO(c-²)0(c-4)O(c-2)
+ +Table 2: Sample complexity of stochastic minmax algorithms (BSA in [16], GDA in [28], SMD in [9]) to achieve an $\epsilon$ -stationary point of $F ( x )$ . + +
ALSETSGDASMD
batch size0(1)0(e-1)1
y-updateSGDSGDsubproblem
samplesO(kc-2)O(κ³-²)O(k³-2)
+ +Table 3: Sample complexity of stochastic compositional algorithms (SCGD in [12], NASA in [14]) to achieve an $\epsilon$ -stationary point of $F ( x )$ . + +Assumptions 2 and 3 together imply that the second moments are bounded by + +$$ +\begin{array} { r l } & { \mathbb { E } _ { \xi } [ \| \nabla f ( x , y ; \xi ) \| ^ { 2 } ] \le \ell _ { f , 0 } ^ { 2 } + \sigma _ { f } ^ { 2 } : = C _ { f } ^ { 2 } } \\ & { \mathbb { E } _ { \phi } [ \| \nabla ^ { 2 } g ( x , y ; \phi ) \| ^ { 2 } ] \le \ell _ { g , 1 } ^ { 2 } + \sigma _ { g , 2 } ^ { 2 } : = C _ { g } ^ { 2 } . } \end{array} +$$ + +Assumption 3 is the counterpart of the unbiasedness and bounded variance assumption in the singlelevel stochastic optimization. In addition, the bounded moments in Assumption 3 ensure the Lipschitz continuity of the upper-level gradient $\nabla F ( x )$ . + +We first highlight the inherent challenge of directly applying the alternating SGD method to the bilevel problem (1). To illustrate this point, we derive the gradient of the upper-level function $F ( x )$ in the next proposition; see the proof in the supplementary document. + +Proposition 1. Under Assumptions $_ { I - 3 }$ , we have the gradients + +$$ +\begin{array} { r } { \nabla F ( x ) = \nabla _ { x } f ( x , y ^ { * } ( x ) ) - \nabla _ { x y } ^ { 2 } g ( x , y ^ { * } ( x ) ) \left[ \nabla _ { y y } ^ { 2 } g ( x , y ^ { * } ( x ) ) \right] ^ { - 1 } \nabla _ { y } f ( x , y ^ { * } ( x ) ) . } \end{array} +$$ + +urthermore, $\nabla F ( x )$ and $y ^ { * } ( x )$ are Lipschitz continuous with constants $L _ { F } , L _ { y }$ , respectively. + +Notice that obtaining an unbiased stochastic estimate of $\nabla F ( x )$ and applying SGD on $x$ face two main difficulties: i) the gradient $\nabla F ( x )$ at $x$ depends on the minimizer of the lower-level problem $y ^ { \ast } ( x )$ ; ii) even if $y ^ { * } ( x )$ is known, it is hard to apply the stochastic approximation to obtain an unbiased estimate of $\dot { \nabla } F ( { \boldsymbol { x } } )$ since $\nabla F ( x )$ is nonlinear in $\nabla _ { y y } ^ { 2 } g ( x , y ^ { * } ( x ) )$ . + +Similar to some existing stochastic bilevel algorithms [16, 18, 17], we evaluate $\nabla F ( x )$ on a certain vector $y$ in place of $y ^ { * } ( x )$ . Replacing the $y ^ { * } ( x )$ in definition (6) by $y$ , we define + +$$ +\overline { { \nabla } } _ { x } f \big ( x , y \big ) : = \nabla _ { x } f \big ( x , y \big ) - \nabla _ { x y } ^ { 2 } g \big ( x , y \big ) \left[ \nabla _ { y y } ^ { 2 } g \big ( x , y \big ) \right] ^ { - 1 } \nabla _ { y } f \big ( x , y \big ) . +$$ + +And to reduce the bias in (7), we estimate $\left[ \nabla _ { y y } ^ { 2 } g ( x , y ) \right] ^ { - 1 }$ via + +$$ +\left[ \nabla _ { y y } ^ { 2 } g ( x , y ) \right] ^ { - 1 } \approx \Big [ \frac { N } { \ell _ { g , 1 } } \prod _ { n = 1 } ^ { N ^ { \prime } } \Big ( I - \frac { 1 } { \ell _ { g , 1 } } \nabla _ { y y } ^ { 2 } g ( x , y ; \phi _ { ( n ) } ) \Big ) \Big ] +$$ + +where $N ^ { \prime }$ is drawn from $\{ 1 , 2 , \ldots , N \}$ uniformly at random and $\{ \phi ^ { ( 1 ) } , \dots , \phi ^ { ( N ^ { \prime } ) } \}$ are i.i.d. samples. It has been shown in [16] that using (8), the estimation bias of $\left[ \nabla _ { y y } ^ { 2 } g ( x , y ) \right] ^ { - 1 }$ exponentially decreases with the number of samples $N$ . + +# 2.2 Main results: Tighter analysis of ALSET + +In this subsection, we first describe the general ALSET algorithm for the stochastic bilevel problem, and then present its new convergence result. + +This algorithm is very simple to implement. At each iteration $k$ , ALSET alternates between the stochastic gradient update on $y ^ { k }$ and that on $x ^ { k }$ . Although it is possible that $T = 1$ , for generality, we run $T$ steps of SGD on + +# Algorithm 1 ALSET for the stochastic bilevel problem (1) + +1: initialize: $x ^ { 0 } , y ^ { 0 }$ , stepsizes $\{ \alpha _ { k } , \beta _ { k } \}$ . +2: for $k = 0 , 1 , \ldots , K - 1$ do +3: for $t = 0 , 1 , \dots , T - 1$ do +4: update $y ^ { k , t + 1 } = y ^ { k , t } - \beta _ { k } h _ { g } ^ { k , t }$ . set $y ^ { k , 0 } = y ^ { k }$ +5: end for +6: update $x ^ { k + 1 } = x ^ { k } - \alpha _ { k } h _ { f } ^ { k } \qquad \Join$ +7: end for + +the lower-level variable $y ^ { k }$ before updating upper-level variable $x ^ { k }$ . With $\alpha _ { k }$ and $\beta _ { k }$ denoting the stepsizes of $x ^ { k }$ and $y ^ { k }$ that decrease at the same rate as SGD, the ALSET update is + +$$ +\begin{array} { r l } & { y ^ { k , t + 1 } = y ^ { k , t } - \beta _ { k } h _ { g } ^ { k , t } , t = 0 , \ldots , T \quad \mathrm { w i t h } y ^ { k , 0 } : = y ^ { k } ; y ^ { k + 1 } : = y ^ { k , T } } \\ & { x ^ { k + 1 } = x ^ { k } - \alpha _ { k } h _ { f } ^ { k } } \end{array} +$$ + +where the update direction of $y$ is the stochastic gradient $h _ { g } ^ { k , t } : = \nabla _ { y } g ( x ^ { k } , y ^ { k , t } ; \phi ^ { k , t } )$ ; and, with the Hessian inverse estimator (8), the update direction of $x$ is the slightly biased gradient + +$$ +\begin{array} { r l } & { \boldsymbol { h } _ { f } ^ { k } : = \nabla _ { \boldsymbol { x } } f ( \boldsymbol { x } ^ { k } , \boldsymbol { y } ^ { k + 1 } ; \boldsymbol { \xi } ^ { k } ) } \\ & { \qquad - \nabla _ { \boldsymbol { x } \boldsymbol { y } } ^ { 2 } g ( \boldsymbol { x } ^ { k } , \boldsymbol { y } ; \phi _ { ( 0 ) } ^ { k } ) \Bigl [ \frac { N } { \ell _ { g , 1 } } \displaystyle \prod _ { n = 1 } ^ { N ^ { \prime } } \left( I - \frac { 1 } { \ell _ { g , 1 } } \nabla _ { \boldsymbol { y } \boldsymbol { y } } ^ { 2 } g ( \boldsymbol { x } ^ { k } , \boldsymbol { y } ^ { k + 1 } ; \phi _ { ( n ) } ^ { k } ) \right) \Bigr ] \nabla _ { \boldsymbol { y } } f ( \boldsymbol { x } ^ { k } , \boldsymbol { y } ^ { k + 1 } ; \boldsymbol { \xi } ^ { k } ) . } \end{array} +$$ + +The alternating update (9) serves as a template for running SGD on stochastic nested problems. As we will show in the subsequent sections, we can generate stochastic algorithms for min-max, compositional, and even reinforcement learning problems following (9) as a template, but they differ in the particular forms of the stochastic gradients $h _ { g } ^ { k } , h _ { f } ^ { k }$ for the specific upper- and lower-level objective functions. See Algorithm 1 for a summary of ALSET for the bilevel problem. + +Comparison between ALSET with existing works. Readers who are familiar with recent developments on stochastic optimization for bilevel problems may readily recognize the similarities between the general ALSET update (1) that we will analyze and the SGD-based updates in BSA [16], TTSA [18] and stocBiO [17]. However, the update (1) is different from BSA in that the number of $y$ -update, denoted as $T$ , is a constant in (1) that does not grow with the accuracy $\epsilon ^ { - 1 }$ ; the update (1) is different from stocBiO in that the stochastic gradient $h _ { g } ^ { k , \bar { t } }$ used in the $y$ -update (9a) is obtained by a fixed batch size that does not depend on the accuracy $\epsilon ^ { - 1 }$ ; and, the update (1) is different from TTSA in that the stepsizes $\alpha _ { k }$ and $\beta _ { k }$ in (9) decrease at the same timescale. + +We next present the convergence result of ALSET. + +Theorem 1 (Bilevel problems). Suppose Assumptions $_ { I - 3 }$ hold. Define the constants as + +$$ +\bar { \alpha } _ { 1 } = \frac { 1 } { 2 L _ { F } + 4 L _ { f } L _ { y } + \frac { 2 L _ { f } L _ { y x } } { L _ { y } \eta } } , \bar { \alpha } _ { 2 } = \frac { 1 6 T \mu _ { g } \ell _ { g , 1 } } { ( \mu _ { g } + \ell _ { g , 1 } ) ^ { 2 } ( 8 L _ { f } L _ { y } + 2 \eta L _ { y x } \tilde { C } _ { f } ^ { 2 } \bar { \alpha } _ { 1 } ) } +$$ + +where $\eta > 0$ is a control constant that will be specified in each special case to achieve the best sample complexity. With $\alpha > 0$ being a control constant that will be specified later, choose the stepsizes as + +$$ +\alpha _ { k } = \operatorname* { m i n } \left\{ \bar { \alpha } _ { 1 } , \bar { \alpha } _ { 2 } , \frac { \alpha } { \sqrt { K } } \right\} \mathrm { a n d } \beta _ { k } = \frac { 8 L _ { f } L _ { y } + 2 \eta L _ { y x } \tilde { C } _ { f } ^ { 2 } \bar { \alpha } _ { 1 } } { 4 T \mu _ { g } } \alpha _ { k } . +$$ + +For any $T \geq 1$ and $N = \mathcal { O } ( \log K )$ , the iterates $\{ x ^ { k } , y ^ { k } \}$ generated by Algorithm $I$ satisfy + +$$ +\frac { 1 } { K } \sum _ { k = 1 } ^ { K } \mathbb { E } \left[ \left. \nabla F ( x ^ { k } ) \right. ^ { 2 } \right] = \mathcal { O } \Big ( \frac { 1 } { \sqrt { K } } \Big ) \ \mathrm { ~ a n d ~ } \ \mathbb { E } \left[ \left. y ^ { K } - y ^ { * } ( x ^ { K } ) \right. ^ { 2 } \right] = \mathcal { O } \Big ( \frac { 1 } { \sqrt { K } } \Big ) +$$ + +where $y ^ { * } ( x ^ { K } )$ is the minimizer of the lower-level problem in (1b). + +Proposition 2. Under the same assumptions and the choice of parameters of Theorem $^ { l }$ , with $\begin{array} { r } { \kappa : = { \frac { \ell _ { g , 1 } } { \mu _ { g } } } } \end{array}$ \`g,1µg being the condition number, select α = Θ(κ−5/2), T = Θ(κ4), η = O(κ) in (12), and then + +$$ +\frac { 1 } { K } \sum _ { k = 0 } ^ { K - 1 } \mathbb { E } [ \| \nabla F ( x ^ { k } ) \| ^ { 2 } ] = \mathcal { O } \left( \frac { \kappa ^ { 3 } } { K } + \frac { \kappa ^ { \frac { 5 } { 2 } } } { \sqrt { K } } \right) . +$$ + +Discussion of Theorem 1. To achieve $\epsilon$ -stationary point, we need $K = \mathcal { O } ( \kappa ^ { 5 } \epsilon ^ { - 2 } )$ , and the number of evaluations of $h _ { f } ^ { k } , h _ { g } ^ { k , t }$ are $\mathcal { O } ( \kappa ^ { 5 } \epsilon ^ { - 2 } )$ and $\mathcal { O } ( \kappa ^ { 9 } \epsilon ^ { - 2 } )$ , respectively. Therefore, the sample complexity is on the same order of SGD’s sample complexity for the single-level nonconvex problems [43], and improves the state-of-the-art single-loop TTSA’s sample complexity $\mathcal { O } ( \epsilon ^ { - 5 / 2 } )$ [18]. Compared to [17], ALSET achieves the same sample complexity in terms of both $\epsilon$ and $\kappa$ , without using a growing batch size. Importantly, we obtain this tighter bound without introducing additional assumptions. + +# 2.3 Proof sketch + +In this subsection, we highlight the key steps of the proof towards Theorem 1, and highlight the differences between our analysis and the existing ones. + +For simplicity, we define the following Lyapunov function as $\begin{array} { r } { \mathbb { V } ^ { k } : = F ( x ^ { k } ) + \frac { L _ { f } } { L _ { y } } \| y ^ { k } - y ^ { * } ( x ^ { k } ) \| ^ { 2 } . } \end{array}$ We first quantify the difference between two Lyapunov functions as + +$$ +\mathbb { V } ^ { k + 1 } - \mathbb { V } ^ { k } = \underbrace { F ( x ^ { k + 1 } ) - F ( x ^ { k } ) } _ { \mathrm { L e m m a ~ 1 } } + \ \frac { L _ { f } } { L _ { y } } ( \| y ^ { k + 1 } - y ^ { * } ( x ^ { k + 1 } ) \| ^ { 2 } - \| y ^ { k } - y ^ { * } ( x ^ { k } ) \| ^ { 2 } ) . +$$ + +The difference in (15) consists of two difference terms: the first term quantifies the descent of the overall objective functions; the second term characterizes the descent of the lower-level errors. + +We will first analyze the descent of the upper-level objective in the next lemma. + +Lemma 1 (Descent of upper level). Suppose Assumptions $_ { I - 3 }$ hold. Define $\bar { h } _ { f } ^ { k } : = \mathbb { E } [ h _ { f } ^ { k } | x ^ { k } , y ^ { k + 1 } ]$ and $\| \bar { h } _ { f } ^ { k } - \overline { { \nabla } } f ( x ^ { k } , y ^ { k + 1 } ) \| \leq b _ { k }$ . The sequence of $x ^ { k }$ generated by Algorithm $I$ satisfies + +$$ +\begin{array} { r } { \mathbb { E } [ F ( { x } ^ { k + 1 } ) ] - \mathbb { E } [ F ( { x } ^ { k } ) ] \le - \frac { \alpha _ { k } } { 2 } \mathbb { E } [ \| \nabla F ( { x } ^ { k } ) \| ^ { 2 } ] - \left( \frac { \alpha _ { k } } { 2 } - \frac { L _ { F } \alpha _ { k } ^ { 2 } } { 2 } \right) \mathbb { E } [ \| \bar { h } _ { f } ^ { k } \| ^ { 2 } ] } \\ { + L _ { f } ^ { 2 } \alpha _ { k } \mathbb { E } [ \| y ^ { k + 1 } - y ^ { * } ( { x } ^ { k } ) \| ^ { 2 } ] + \alpha _ { k } b _ { k } ^ { 2 } + \frac { L _ { F } \alpha _ { k } ^ { 2 } } { 2 } \tilde { \sigma } _ { f } ^ { 2 } } \end{array} +$$ + +where constants $L _ { f } , L _ { F } , \sigma _ { f } ^ { 2 }$ are defined in Lemma 4 of the supplementary document. + +Lemma 1 implies that the descent of the upper-level objective functions depends on the error of the lower-level variable $y ^ { k }$ . We will next analyze the error of the lower-level variable, which is the key step to improving the existing results. + +Before we analyze the error of $y ^ { k }$ , we introduce a lemma that characterizes the smoothness of $y ^ { \ast } ( x )$ and the bounded moments of $h _ { f } ^ { k }$ . The smoothness and the bounded moments have not been explored by previous analysis such as [16–18], and they play an essential role in our improved analysis of $y ^ { k }$ . + +Lemma 2 (Smoothness and boundedness). Under Assumptions $^ { l }$ and 2, we have + +$$ +\begin{array} { r } { \| \nabla y ^ { * } ( x _ { 1 } ) - \nabla y ^ { * } ( x _ { 2 } ) \| \leq L _ { y x } \| x _ { 1 } - x _ { 2 } \| ; \quad \mathbb { E } [ \| h _ { f } ^ { k } \| ^ { 2 } | x ^ { k } , y ^ { k + 1 } ] \leq \tilde { C } _ { f } ^ { 2 } } \end{array} +$$ + +where $L _ { y x }$ and $\tilde { C } _ { f } ^ { 2 }$ depend on the constants defined in Assumptions 1-2. + +Building upon Lemma 2, we establish the progress of the lower-level update. + +Lemma 3 (Error of lower level). Suppose that Assumptions 1–3 hold, and $y ^ { k + 1 }$ is generated by running iteration (9) given $x ^ { k }$ . If we choose $\begin{array} { r } { \beta _ { k } \le \frac { 2 ^ { \binom { - } { q } } } { \mu _ { g } + \ell _ { g , 1 } } } \end{array}$ , then $y ^ { k + 1 }$ satisfies + +$$ +\begin{array} { r l } & { \mathbb { E } [ \| y ^ { k + 1 } - y ^ { * } ( x ^ { k } ) \| ^ { 2 } ] \leq ( 1 - \mu _ { g } \beta _ { k } ) ^ { T } \mathbb { E } [ \| y ^ { k } - y ^ { * } ( x ^ { k } ) \| ^ { 2 } ] + T \beta _ { k } ^ { 2 } \sigma _ { g , 1 } ^ { 2 } } \\ & { \mathbb { E } [ \| y ^ { k + 1 } - y ^ { * } ( x ^ { k + 1 } ) \| ^ { 2 } ] \leq \Big ( 1 + 4 L _ { f } L _ { y } \alpha _ { k } + \frac { \eta L _ { y x } \tilde { C } _ { f } ^ { 2 } } { 2 } \alpha _ { k } ^ { 2 } \Big ) \mathbb { E } [ \| y ^ { k + 1 } - y ^ { * } ( x ^ { k } ) \| ^ { 2 } ] } \\ & { \qquad + \Big ( L _ { y } ^ { 2 } + \frac { L _ { y } } { 4 L _ { f } \alpha _ { k } } + \frac { L _ { y x } } { 2 \eta } \Big ) \alpha _ { k } ^ { 2 } \mathbb { E } [ \| \bar { h } _ { f } ^ { k } \| ^ { 2 } ] + \Big ( L _ { y } ^ { 2 } + \frac { L _ { y x } } { 2 \eta } \Big ) \alpha _ { k } ^ { 2 } \tilde { \sigma } _ { f } ^ { 2 } } \end{array} +$$ + +where $\eta > 0$ is a fixed constant that will be chosen to obtain the tighter complexity bound. + +The improved analysis of the lower-level problem. Next we explain where we can obtain improved analysis. Plugging (18a) into (18b), and selecting stepsizes $\alpha _ { k } , \beta _ { k }$ properly, we can show that + +$$ +\begin{array} { r } { \mathbb { E } [ \| y ^ { k + 1 } - y ^ { * } ( x ^ { k + 1 } ) \| ^ { 2 } ] \leq ( 1 - \delta _ { 1 } ) \mathbb { E } [ \| y ^ { k } - y ^ { * } ( x ^ { k } ) \| ^ { 2 } ] + \delta _ { 2 } \mathbb { E } [ \| \bar { h } _ { f } ^ { k } \| ^ { 2 } ] + \delta _ { 3 } T \sigma _ { g , 1 } ^ { 2 } + \delta _ { 4 } \tilde { \sigma } _ { f } ^ { 2 } } \end{array} +$$ + +where the constants are $\delta _ { 1 } \in [ 0 , 1 ) , \delta _ { 2 } = \mathcal { O } ( \alpha _ { k } ) , \delta _ { 3 } = \mathcal { O } ( \beta _ { k } ^ { 2 } ) , \delta _ { 4 } = \mathcal { O } ( \alpha _ { k } ^ { 2 } )$ . As we will show in our supplementary material, the term $\mathbb { E } [ \| \bar { h } _ { f } ^ { k } \| ^ { 2 } ]$ will be canceled when combined with (16) in our analysis. Hence, choosing $\alpha _ { k } = \mathcal { O } ( k ^ { - 1 / 2 } )$ and $\beta _ { k } = \mathcal { O } ( k ^ { - 1 / 2 } )$ makes the variance terms in (19) decrease at the same $\mathcal { O } ( k ^ { - 1 / 2 } )$ rate as the vanilla SGD for stochastic non-nested problems. + +As a comparison, the progress of the lower-level problem in [18, 17] can be summarized as + +$$ +\mathbb { E } [ \| y ^ { k + 1 } - y ^ { * } ( x ^ { k + 1 } ) \| ^ { 2 } ] \leq ( 1 - \delta _ { 1 } ) \mathbb { E } [ \| y ^ { k } - y ^ { * } ( x ^ { k } ) \| ^ { 2 } ] + \delta _ { 5 } \sigma ^ { 2 } +$$ + +where $\sigma ^ { 2 }$ is some variance term, and the constant is $\delta _ { 5 } = \mathcal { O } ( \beta _ { k } ^ { 2 } + \alpha _ { k } ^ { 2 } / \beta _ { k } )$ or $\mathcal { O } ( 1 / B _ { k } )$ with $B _ { k }$ being the batch size at iteration $k$ . To balance the two terms in $\delta _ { 5 } = \mathcal { O } ( \beta _ { k } ^ { 2 } + \alpha _ { k } ^ { 2 } / \beta _ { k } )$ , two timescales of stepsizes $\begin{array} { r } { \operatorname* { l i m } _ { k \to \infty } \alpha _ { k } / \beta _ { k } = 0 } \end{array}$ are needed, which will make the variance term of the $y$ -update in (20) and that of the $x$ -update in (16) decrease at two different rates, slower than that of SGD; and to reduce $\delta _ { 5 } = \mathcal { O } ( 1 / B _ { k } )$ , a growing batch size $B _ { k } = \mathcal { O } ( k )$ is needed for the $y$ -update. + +# 3 Applications to Stochastic Min-Max and Compositional Problems + +Building upon the general results for the bilevel problems in Section 2, this section will identify special features of the stochastic min-max and stochastic compositional problems, and customize the general results to yield state-of-the-art convergence results for two special nested problems. + +# 3.1 Stochastic min-max problems + +We first apply our results to the stochastic min-max problem (2). In this special case, the lower-level function is $\bar { g ( x , y ; \phi ) } = - f ( x , y ; \xi )$ , and the bilevel gradient in (6) reduces to + +$$ +\nabla F ( x ) : = \nabla _ { x } f { \big ( } x , y ^ { * } ( x ) { \big ) } + \nabla _ { x } y ^ { * } ( x ) ^ { \top } \nabla _ { y } f { \big ( } x , y ^ { * } ( x ) { \big ) } = \nabla _ { x } f { \big ( } x , y ^ { * } ( x ) { \big ) } +$$ + +where the second equality follows from the optimality condition of the lower-level problem, i.e., $\nabla _ { y } f ( x , y ^ { * } ( x ) ) = 0$ . Similar to Section 2, we again approximate $\nabla F ( x )$ on a certain vector $y$ in place of $y ^ { * } ( x )$ . Therefore, the alternating stochastic gradients for this special case are given by + +$$ +\begin{array} { r } { h _ { g } ^ { k , t } = - \nabla _ { y } f ( x ^ { k } , y ^ { k , t } ; \xi _ { 1 } ^ { k , t } ) ~ \mathrm { a n d } ~ h _ { f } ^ { k } = \nabla _ { x } f ( x ^ { k } , y ^ { k + 1 } ; \xi _ { 2 } ^ { k } ) . } \end{array} +$$ + +Plugging the stochastic gradient into the general update (9), we summarize the update in Algorithm 2. +When the number of $y$ -update is $T = 1$ , the ALSET algorithm reduces to the SGDA method in [28]. + +Proposition 3 (Min-max problems). Choose the same choice of parameters as those in Theorem $I$ , and follow the same assumption as those in Theorem $^ { l }$ except that $f ( \cdot , y )$ is only Lipchitz over $x \in \mathbb { R } ^ { d }$ but not that $f ( x , \cdot )$ is Lipschitz continuous over $y \in \mathbb { R } ^ { d ^ { \prime } }$ . If we select $\alpha = \Theta ( \kappa ^ { - 1 } )$ , $T = \Theta ( \kappa )$ , $\eta = 1$ in (12), the iterates generated by Algorithm 2 satisfy + +$$ +\frac { 1 } { K } \sum _ { k = 0 } ^ { K - 1 } \mathbb { E } \left[ \left. \nabla F ( x ^ { k } ) \right. ^ { 2 } \right] = \mathcal { O } \left( \frac { \kappa ^ { 2 } } { K } + \frac { \kappa } { \sqrt { K } } \right) . +$$ + +Proposition 3 implies that for the minmax problem, the convergence rate of ALSET to the stationary point of $\begin{array} { r } { F ( x ) \ \mathrel { \mathop : } = \ \operatorname* { m a x } _ { y \in \mathbb { R } ^ { d ^ { \prime } } } \mathbb { E } _ { \xi } \left[ f ( x , y ; \xi ) \right] } \end{array}$ is $\mathcal { O } ( K ^ { - 1 / 2 } )$ . To achieve $\epsilon$ -stationary point, we need $K = \mathcal { O } ( \kappa ^ { 2 } \epsilon ^ { - 2 } )$ . And the number of gradient evaluations for $h _ { f } ^ { k } , h _ { g } ^ { k , t }$ are $\mathcal { O } \bar { ( \kappa ^ { 2 } \epsilon ^ { - 2 } ) }$ and $\mathcal { O } ( \kappa ^ { 3 } \epsilon ^ { - 2 } )$ , respectively. Comparing with the results in [28], we achieve the same sample complexity without an increasing batch size $\mathsf { \bar { \mathcal { O } } } ( \epsilon ^ { - 1 } )$ , and improve their sample complexity $\mathcal { O } ( \epsilon ^ { - 5 / 2 } )$ under a fixed batch size. + +Algorithm 2 ALSET for the min-max problem (2) + +1: initialize: $x ^ { 0 } , y ^ { 0 }$ , stepsizes $\{ \alpha _ { k } , \beta _ { k } \}$ . +2: for $k = 0 , 1 , \ldots , K - 1$ do +3: set $y ^ { k , 0 } = y ^ { k }$ +4: for $t = 0 , 1 , \dots , T - 1$ do +5: update $y ^ { k , t + 1 } = y ^ { k , t } - \beta _ { k } \nabla _ { y } f ( x ^ { k } , y ^ { k , t } ; \xi _ { 1 } ^ { k , t } )$ +6: end for +7: set $y ^ { k + 1 } = y ^ { k , T }$ +8: update $\boldsymbol { x } ^ { k + \mathrm { i } } = x ^ { k } - \alpha _ { k } \nabla _ { x } f ( x ^ { k } , y ^ { k + 1 } ; \xi _ { 2 } ^ { k } )$ +9: end for + +However, it is also worth mentioning that compared with [28], our analysis requires the additional Lipschitz continuity assumption of $f ( \cdot , y )$ over $x \in \mathbb { R } ^ { d }$ , which inherits from the analysis for the general bilevel problem. Therefore, our result complements, rather than improves, the analysis in [28]. We view our contribution in min-max problems as a supplementary of existing results. + +# 3.2 Stochastic compositional problems + +In this section, we apply our results to the stochastic compositional problem (3). In this special case, the upper-level function is $f ( x , y ; \xi ) : = f ( y ; \xi )$ , and the lower-level function is $g ( x , y ; \phi ) =$ $\| y - h ( x ; \phi ) \| ^ { 2 }$ , and the bilevel gradient in (6) reduces to + +$$ +\begin{array} { r l } & { \nabla F ( x ) : = \nabla _ { x } f \big ( x , y ^ { * } ( x ) \big ) - \nabla _ { x y } ^ { 2 } g ( x , y ^ { * } ( x ) ) \big [ \nabla _ { y y } ^ { 2 } g ( x , y ^ { * } ( x ) ) \big ] ^ { - 1 } \nabla _ { y } f ( x , y ^ { * } ( x ) ) } \\ & { \qquad = \nabla h ( x ; \phi ) ^ { \top } \nabla _ { y } f ( y ^ { * } ( x ) ) } \end{array} +$$ + +where we use the fact that $\nabla _ { y y } ^ { 2 } g ( x , y ; \phi ) = \mathbf { I } _ { d ^ { \prime } \times d ^ { \prime } } , \nabla _ { x y } ^ { 2 } g ( x , y ; \phi ) = - \nabla h ( x ; \phi ) ^ { \top }$ . Similar to Section 2, we again evaluate $\nabla F ( x )$ on a certain vector $y$ in place of $y ^ { \ast } ( x )$ . Therefore, by choosing $T = 1$ , the alternating stochastic gradients $h _ { f } ^ { k } , h _ { g } ^ { k , t }$ for this special case are much simpler, given by + +$$ +h _ { g } ^ { k , t } = h _ { g } ^ { k } = y ^ { k } - h ( x ^ { k } ; \phi ^ { k } ) ~ \mathrm { a n d } ~ h _ { f } ^ { k } = \nabla h ( x ^ { k } ; \phi ^ { k } ) \nabla f ( y ^ { k + 1 } ; \xi ^ { k } ) . +$$ + +Plugging the stochastic gradient into the general update (9), we summarize the update in Algorithm 3. +When $T = 1$ , the ALSET algorithm reduces to SCGD proposed in [12]. + +In the supplementary document, we have verified that the standard assumptions of stochastic compositional optimization in [12, 37, 14, 41, 38] are sufficient for Assumptions 1–3 to hold. + +Proposition 4 (Compositional problems). Under the same assumptions and the parameters as those in Theorem $I$ , if we select $\begin{array} { r } { T ^ { } = 1 , \alpha = 1 , \eta = \frac { 1 } { L _ { y x } } } \end{array}$ in (12), the iterates of Algorithm 3 satisfy + +$$ +\frac { 1 } { K } \sum _ { k = 1 } ^ { K } \mathbb { E } \left[ \left\| \nabla F ( x ^ { k } ) \right\| ^ { 2 } \right] = \mathcal { O } \Big ( \frac { 1 } { \sqrt { K } } \Big ) . +$$ + +Since each iteration of ALSET only uses $\mathcal { O } ( 1 )$ samples (see Algorithm 3), Proposition 4 implies that the sample complexity to achieve an $\epsilon$ -stationary point of (3) is $\mathcal { O } ( \epsilon ^ { - 2 } )$ . Comparing with the results + +Algorithm 3 ALSET for the compositional problem (3) + +1: initialize: $x ^ { 0 } , y ^ { 0 }$ , stepsizes $\{ \alpha _ { k } , \beta _ { k } \}$ . +2: for $k = 0 , 1 , \ldots , K - 1$ do +3: update $y ^ { k + 1 } = y ^ { k } - \beta _ { k } ( y ^ { k } - h ( x ^ { k } ; \phi ^ { k } ) )$ +4: update $x ^ { k + 1 } = x ^ { k } - \alpha _ { k } \nabla f ( y ^ { k + 1 } ; \xi ^ { k } ) \nabla h ( x ^ { k } ; \phi ^ { k } )$ +5: end for + +of the SCGD method in [12], our result improves the sample complexity $\mathcal { O } ( \epsilon ^ { - 4 } )$ under a fixed batch size. Importantly, our analysis does not introduce additional assumption compared to [12]. + +# 4 Applications to Actor-Critic Methods + +In this section, we apply our tighter analysis to the actor-critic (AC) method with linear value function approximation [44], which can be viewed as a special case of the stochastic bilevel algorithm [45, 46]. + +Consider a Markov decision process described by $\mathcal { M } = \{ { \cal S } , \mathcal { A } , \mathcal { P } , { \cal R } , \gamma \}$ , where $s$ is the state space, $\mathcal { A }$ is the action space, $\mathcal { P } ( s ^ { \prime } | s , a )$ is the probability of transitioning to $s ^ { \prime } \in \mathcal { S }$ given state $s \in S$ and action $a \in { \mathcal { A } }$ , and $R ( s , a , s ^ { \prime } )$ is the reward associated with $( s , a , s ^ { \prime } )$ , and $\gamma \in [ 0 , 1 )$ is a discount factor. For a policy $\pi _ { \theta }$ , define the value function $V _ { \pi _ { \theta } } ( s )$ that satisfies the Bellman equation [47] + +$$ +\begin{array} { r } { V _ { \pi _ { \theta } } ( s ) = \mathbb { E } _ { a \sim \pi _ { \theta } ( . | s ) , s ^ { \prime } \sim \mathcal { P } ( \cdot | s , a ) } \left[ r ( s , a , s ^ { \prime } ) + \gamma V _ { \pi _ { \theta } } ( s ^ { \prime } ) \right] . } \end{array} +$$ + +Given the state feature mapping $\phi ( \cdot ) : \mathcal { S } \mathbb { R } ^ { d _ { y } }$ , we approximate the value function linearly as $V _ { \pi _ { \boldsymbol { \theta } } } ( s ) \approx \hat { V } _ { y } ( s ) : = \boldsymbol { \phi } ( s ) ^ { \top } \boldsymbol { y }$ , where $\boldsymbol { y } \in \mathbb { R } ^ { d _ { y } }$ is the critic parameter. The task of finding the best $y$ such that $V _ { \pi _ { \theta } } ( s ) \approx \hat { V } _ { y } ( s )$ is usually addressed by TD learning [48]. + +Defining the stationary distribution induced by the policy parameter $\theta _ { k }$ as $\mu _ { \theta _ { k } }$ and the $k$ th transition as $\xi _ { k } : = ( s _ { k } , a _ { k } , s _ { k + 1 } )$ , which is sampled from $s _ { k } \sim \mu _ { \theta _ { k } } , a \sim \pi _ { \theta _ { k } } , s _ { k + 1 } \sim \mathcal { P }$ , the TD-error is + +$$ +\hat { \delta } ( \xi _ { k } , y _ { k } ) : = r ( s _ { k } , a _ { k } , s _ { k + 1 } ) + \gamma \phi ( s _ { k + 1 } ) ^ { \top } y _ { k } - \phi ( s _ { k } ) ^ { \top } y _ { k } +$$ + +and the critic gradient $h _ { g } ( \xi _ { k } , y _ { k } ) : = \hat { \delta } ( \xi _ { k } , y _ { k } ) \nabla \hat { V } _ { y _ { k } } ( s _ { k } )$ . We update the parameter $y$ via + +$$ +y _ { k + 1 } = \Pi _ { R _ { y } } \big ( y _ { k } + \beta _ { k } h _ { g } ( \xi _ { k } , y _ { k } ) \big ) , +$$ + +where $\beta _ { k }$ is the critic stepsize, and $\Pi _ { R _ { y } }$ is the projection to control the norm of the gradient. A pre-defined constant $R _ { y }$ will be specified in the supplementary document. + +The goal of policy optimization is to solve ${ \mathrm { m a x } } _ { \theta \in \mathbb { R } ^ { d } } F ( \theta )$ with $F ( \theta ) : = \mathbb { E } _ { s \sim \eta } [ V _ { \pi _ { \theta } } ( s ) ]$ , where $\eta$ is the initial distribution. Leveraging the value function approximation and the policy gradient theorem [49], we have the policy gradient $h _ { f } ( \xi , \theta , y ) : = \hat { \delta } ( \xi , \bar { y ) \psi } _ { \theta } ( s , a )$ , which gives the policy update + +$$ +\theta _ { k + 1 } = \theta _ { k } + \alpha _ { k } h _ { f } ( \xi _ { k } ^ { \prime } , \theta _ { k } , y _ { k + 1 } ) , +$$ + +where $\alpha _ { k }$ is the stepsize and $\psi _ { \boldsymbol \theta } ( s , a ) : = \nabla \log \pi _ { \boldsymbol \theta } ( a | s )$ . Note that the sample $\xi _ { k } ^ { \prime } : = ( s _ { k } ^ { \prime } , a _ { k } ^ { \prime } , s _ { k + 1 } ^ { \prime } )$ used in (30) is independent from $\xi _ { k }$ in (29). Specifically, $\xi _ { k } ^ { \prime }$ is sampled from $s _ { k } ^ { \prime } \sim d _ { \theta _ { k } } , a _ { k } ^ { \prime } \sim$ $\pi _ { \boldsymbol { \theta } _ { k } } , s _ { k + 1 } ^ { \prime } \sim \mathcal { P }$ with $d _ { \theta _ { k } }$ being the discounted state action visitation measure under $\theta _ { k }$ . + +The alternating AC update (29)-(30) is a special case of ALSET, where the critic update is the lower-level update, and the actor update is the upper-level update. + +Due to space limitation, we will directly present the results of the alternating AC next, and defer presentation of the proof and the corresponding assumptions, which are the counterparts of Assumptions 1–3 in the context of AC, to the supplementary document. + +Theorem 2 (Actor-critic). Under the some regularity conditions that are specified in the supplementary document, selecting step size $\begin{array} { r } { \alpha _ { k } = \alpha = \overset { \cdot } { \mathcal { O } } ( \frac { 1 } { \sqrt { K } } ) } \end{array}$ , $\begin{array} { r } { \beta _ { k } = \beta = \mathcal { O } ( \frac { 1 } { \sqrt { K } } ) } \end{array}$ , it holds + +$$ +\frac { 1 } { K } \sum _ { k = 1 } ^ { K } \mathbb { E } \left[ \| \nabla F ( \theta _ { k } ) \| ^ { 2 } \right] = \mathcal { O } \left( \frac { 1 } { \sqrt { K } } \right) + \epsilon _ { \mathrm { a p p } } +$$ + +where $\epsilon _ { \mathrm { a p p } }$ , defined in the supplementary document, captures the richness of the linear function class. + +Both sides of Theorem 2. As an application of our tighter analysis, Theorem 2 establishes for the first time that the sample complexity of the single-loop alternating actor-critic method is $\mathcal { O } ( \epsilon ^ { - 2 } )$ . On the positive side, this new result improves the previous complexity $\mathcal { O } ( \epsilon ^ { - 5 / 2 } )$ for the single-loop AC [50], and $\mathcal { O } ( \epsilon ^ { - 2 } \log \epsilon ^ { - 1 } )$ for the nested-loop AC [51], and matches $\mathcal { O } ( \epsilon ^ { - 2 } )$ for AC with an exact critic oracle [52]. In addition to using two independent samples, one limitation of our result is that inheriting from the analysis for the general bilevel case, our analysis of AC requires the smoothness of the critic fixed-point $y ^ { * } ( \theta )$ . As shown in the supplementary document, this implicitly requires the additional bounded and Lipschitz continuity assumption on the stationary distribution $\mu _ { \theta }$ . The removal of this assumption and the extension to Markovian sampling are left for future research. + +# 5 Preliminary Experiments + +To validate our new theoretical results, we have conducted the simple experiment using the riskaverse portfolio management task on a benchmark dataset - 100 Book-to-Market. This is a typical application of stochastic compositional optimization (3) that is used in [40, 41]. We compared the popular two-timescale SCGD approach [12] with our single-timescale ALSET approach. + +We use the same initialization of $x ^ { 0 } , y ^ { 0 }$ for both SCGD and ALSET, and tune the stepsizes $\alpha _ { k } , \beta _ { k }$ by following the suggested order in the original SCGD paper and then using a grid search for the multiplicative constant $c$ , that is + +
Iter kln kSCGDALSETALSET-const
102.305.325.315.63
1004.613.783.493.63
2005.303.402.943.06
4005.993.042.402.55
10006.912.571.652.06
+ +The constant $c$ is chosen from the searching + +Table 4: Comparison of $\begin{array} { r l } { { \ln ( \frac { 1 } { K } \sum _ { k = 1 } ^ { K } \| \nabla F ( x ^ { k } ) \| ^ { 2 } ) } \quad } & { { } } \end{array}$ among the two-timescale and single-timescale algorithms. + +grid $\{ 1 0 ^ { - 3 } , 5 \times 1 0 ^ { - 4 } , 1 0 ^ { - 4 } \}$ and is optimized for each algorithm in terms of ergodic average gradient norm versus the number of iterations. In Table 4, we report the logarithmic value of the average gradient norm performance of SCGD, ALSET with both the above decreasing stepsizes and ALSETconst with the constant stepsizes (replacing $k$ with $K = 1 0 0 0$ ). Since SCGD and ALSET use the same number of samples and gradient evaluations per iteration, we report the progress in terms of iterations. By calculating the decay rate, we can observe that the empirical convergence rate of ALSET is no worse than the theoretical rate $\mathcal { O } ( k ^ { - 1 / 2 } )$ , and ALSET outperforms SCGD thanks to its single-timescale stepsizes. We will pursue more comprehensive experiments in our future work. + +# 6 Conclusions + +This paper unifies several SGD-type updates for stochastic nested problems into a single nested SGD approach that we term ALternating Stochastic gradient dEscenT (ALSET) method. ALSET runs in the single-timescale and uses a fixed batch size. This paper presents a tighter analysis for using ALSET to solve stochastic nested problems. Under the new analysis, to achieve an $\epsilon$ -stationary point of the nested problem, ALSET requires $\mathcal { O } ( \epsilon ^ { - 2 } )$ samples in total. As a by-product, this general result also improves the existing sample complexity of the min-max and compositional cases. It matches the sample complexity of SGD for single-level stochastic problems. Applying our analysis to an alternating version of the actor-critic algorithm also yields a state-of-the-art sample complexity. + +Potential limitations of our results include additional assumptions in the min-max and actor-critic cases, which inherit from the assumptions of general bilevel problems. Nevertheless, our work can also lead to promising future research in understanding the theoretical performance of many successful empirical nested optimization algorithms. To this end, our future work consists of relaxing the regularity conditions needed to achieve our theoretical results and Possible extensions include applying our the tighter analysis in this paper to the existing two-timescale Hessian-free bilevel optimization algorithms and decentralized stochastic nested optimization algorithms. + +# Acknowledgements + +The work of T. Chen was partially supported by NSF Grant 2047177 and the RPI-IBM Artificial Intelligence Research Collaboration (AIRC). The work of Y. Sun was partially supported by ONR + +Grant N000141712162 and AFOSR MURI FA9550-18-1-0502. We thank anonymous reviewers for their valuable feedback on improving the current paper. + +References +[1] H. Robbins and S. Monro, “A stochastic approximation method,” Annals of Mathematical Statistics, vol. 22, no. 3, pp. 400–407, Sep. 1951. +[2] C. Finn, P. Abbeel, and S. Levine, “Model-agnostic meta-learning for fast adaptation of deep networks,” in Proc. Intl. Conf. Machine Learn., Sydney, Australia, Jun. 2017, pp. 1126–1135. +[3] L. Franceschi, P. Frasconi, S. Salzo, R. Grazzi, and M. Pontil, “Bilevel programming for hyperparameter optimization and meta-learning,” in Proc. Intl. Conf. Machine Learn., Vienna, Austria, Jun. 2018, pp. 1568–1577. +[4] B. Colson, P. Marcotte, and G. Savard, “An overview of bilevel optimization,” Annals of operations research, vol. 153, no. 1, pp. 235–256, 2007. +[5] G. Kunapuli, K. P. Bennett, J. Hu, and J.-S. Pang, “Classification model selection via bilevel programming,” Optimization Methods & Software, vol. 23, no. 4, pp. 475–489, 2008. +[6] S. Dempe and A. Zemkoho, Bilevel Optimization. Springer, 2020. +[7] C. Daskalakis and I. Panageas, “The limit points of (optimistic) gradient descent in min-max optimization,” in Proc. Advances in Neural Info. Process. Syst., Montreal, Canada, Dec. 2018, pp. 9256–9266. +[8] G. Gidel, H. Berard, G. Vignoud, P. Vincent, and S. Lacoste-Julien, “A variational inequality perspective on generative adversarial networks,” in Proc. Intl. Conf. Learn. Representations, Vancouver, Canada, Apr. 2018. +[9] H. Rafique, M. Liu, Q. Lin, and T. Yang, “Non-convex min-max optimization: Provable algorithms and applications in machine learning,” Optimization Methods and Software, Mar. 2021. +[10] K. K. Thekumparampil, P. Jain, P. Netrapalli, and S. Oh, “Efficient algorithms for smooth minimax optimization,” in NeurIPS, Vancouver, Canada, Dec. 2019. +[11] A. Mokhtari, A. Ozdaglar, and S. Pattathil, “A unified analysis of extra-gradient and optimistic gradient methods for saddle point problems: Proximal point approach,” in Proc. Intl. Conf. on Artif. Intell. and Stat., Palermo, Italy, Aug. 2020, pp. 1497–1507. +[12] M. Wang, E. X. Fang, and H. Liu, “Stochastic compositional gradient descent: algorithms for minimizing compositions of expected-value functions,” Mathematical Programming, vol. 161, no. 1-2, pp. 419–449, Jan. 2017. +[13] B. Dai, N. He, Y. Pan, B. Boots, and L. Song, “Learning from conditional distributions via dual embeddings,” in Proc. Intl. Conf. on Artif. Intell. and Stat., Fort Lauderdale, FL, Apr. 2017, pp. 1458–1467. +[14] S. Ghadimi, A. Ruszczynski, and M. Wang, “A single timescale stochastic approximation method for nested stochastic optimization,” SIAM Journal on Optimization, vol. 30, no. 1, pp. 960–979, Mar. 2020. +[15] K. Ji, J. Yang, and Y. Liang, “Multi-step model-agnostic meta-learning: Convergence and improved algorithms,” arXiv preprint:2002.07836, Feb. 2020. +[16] S. Ghadimi and M. Wang, “Approximation methods for bilevel programming,” arXiv preprint:1802.02246, 2018. +[17] K. Ji, J. Yang, and Y. Liang, “Provably faster algorithms for bilevel optimization and applications to meta-learning,” in Proc. Intl. Conf. Machine Learn., Virtual, Jul. 2021. +[18] M. Hong, H.-T. Wai, Z. Wang, and Z. Yang, “A two-timescale framework for bilevel optimization: Complexity analysis and application to actor-critic,” arXiv preprint:2007.05170, 2020. +[19] T. Chen, Y. Sun, and W. Yin, “A single-timescale stochastic bilevel optimization method,” arXiv preprint arXiv:2102.04671, 2021. +[20] H. V. Stackelberg, The Theory of Market Economy. Oxford University Press, 1952. +[21] S. Sabach and S. Shtern, “A first order method for solving convex bilevel optimization problems,” SIAM Journal on Optimization, vol. 27, no. 2, pp. 640–660, 2017. +[22] A. Shaban, C.-A. Cheng, N. Hatch, and B. Boots, “Truncated back-propagation for bilevel optimization,” in Proc. Intl. Conf. on Artif. Intell. and Stat., Naha, Okinawa, Japan, Apr. 2019, pp. 1723–1732. +[23] R. Grazzi, L. Franceschi, M. Pontil, and S. Salzo, “On the iteration complexity of hypergradient computation,” in Proc. Intl. Conf. Machine Learn., virtual, Jul. 2020, pp. 3748–3758. +[24] R. Liu, P. Mu, X. Yuan, S. Zeng, and J. Zhang, “A generic first-order algorithmic framework for bi-level programming beyond lower-level singleton,” in Proc. of International Conference on Machine Learning, Virtual, July 2020, pp. 6305–6315. +[25] P. Khanduri, S. Zeng, M. Hong, H.-T. Wai, Z. Wang, and Z. Yang, “A momentum-assisted single-timescale stochastic approximation algorithm for bilevel optimization,” arXiv preprint arXiv:2102.07367, Feb. 2021. +[26] Z. Guo and T. Yang, “Randomized stochastic variance-reduced methods for stochastic bilevel optimization,” arXiv preprint arXiv:2105.02266, May 2021. +[27] J. Yang, K. Ji, and Y. Liang, “Provably faster algorithms for bilevel optimization,” arXiv preprint arXiv:2106.04692, Jun. 2021. +[28] T. Lin, C. Jin, and M. Jordan, “On gradient descent ascent for nonconvex-concave minimax problems,” in Proc. Intl. Conf. Machine Learn., virtual, Jul. 2020, pp. 6083–6093. +[29] T. Yoon and E. K. Ryu, “Accelerated algorithms for smooth convex-concave minimax problems with $O ( 1 / k ^ { 2 } )$ rate on squared gradient norm,” in Proc. Intl. Conf. Machine Learn., Virtual, Jul. 2021. +[30] M. Nouiehed, M. Sanjabi, T. Huang, J. D. Lee, and M. Razaviyayn, “Solving a class of nonconvex min-max games using iterative first order methods,” in Proc. Advances in Neural Info. Process. Syst., Vancouver, Canada, Dec. 2019, pp. 14 934–14 942. +[31] L. Luo, H. Ye, Z. Huang, and T. Zhang, “Stochastic recursive gradient descent ascent for stochastic nonconvex-strongly-concave minimax problems,” in Proc. Advances in Neural Info. Process. Syst., Virtual, Dec. 2020. +[32] Y. Yan, Y. Xu, Q. Lin, W. Liu, and T. Yang, “Optimal epoch stochastic gradient descent ascent methods for min-max optimization,” Proc. Advances in Neural Info. Process. Syst., vol. 33, Dec. 2020. +[33] Q. Tran Dinh, D. Liu, and L. Nguyen, “Hybrid variance-reduced sgd algorithms for minimax problems with nonconvex-linear function,” in Proc. Advances in Neural Info. Process. Syst., Virtual, Dec. 2020. +[34] M. Liu, Y. Mroueh, J. Ross, W. Zhang, X. Cui, P. Das, and T. Yang, “Towards better understanding of adaptive gradient algorithms in generative adversarial nets,” in Proc. Intl. Conf. Learn. Representations, Virtual, Apr. 2020. +[35] J. Yang, N. Kiyavash, and N. He, “Global convergence and variance reduction for a class of nonconvex-nonconcave minimax problems,” in Proc. Advances in Neural Info. Process. Syst., Virtual, Dec. 2020. +[36] J. Diakonikolas, C. Daskalakis, and M. Jordan, “Efficient methods for structured nonconvexnonconcave min-max optimization,” in Proc. Intl. Conf. on Artif. Intell. and Stat., Virtual, Apr. 2021. +[37] M. Wang, J. Liu, and E. Fang, “Accelerating stochastic composition optimization,” Journal Machine Learning Research, vol. 18, no. 1, pp. 3721–3743, 2017. +[38] T. Chen, Y. Sun, and W. Yin, “Solving stochastic compositional optimization is nearly as easy as solving stochastic optimization,” IEEE Trans. Sig. Proc., vol. 69, Aug. 2021. +[39] A. Ruszczynski, “A stochastic subgradient method for nonsmooth nonconvex multi-level composition optimization,” arXiv preprint:2001.10669, Jan. 2020. +[40] X. Lian, M. Wang, and J. Liu, “Finite-sum composition optimization via variance reduced gradient descent,” in Proc. Intl. Conf. on Artif. Intell. and Stat., Fort Lauderdale, FL, Apr. 2017. +[41] J. Zhang and L. Xiao, “A stochastic composite gradient method with incremental variance reduction,” in Proc. Advances in Neural Info. Process. Syst., Vancouver, Canada, Dec. 2019. +[42] Q. Tran-Dinh, N. Pham, and L. Nguyen, “Stochastic gauss-newton algorithms for nonconvex compositional optimization,” in Proc. Intl. Conf. Machine Learn., Virtual, Jul. 2020. +[43] S. Ghadimi and G. Lan, “Stochastic first-and zeroth-order methods for nonconvex stochastic programming,” SIAM Journal on Optimization, vol. 23, no. 4, pp. 2341–2368, 2013. +[44] V. Konda and V. Borkar, “Actor-critic-type learning algorithms for markov decision processes,” SIAM Journal on Control and Optimization, vol. 38, no. 1, pp. 94–123, 1999. +[45] J. Wen, S. Kumar, R. Gummadi, and D. Schuurmans, “Characterizing the gap between actorcritic and policy gradient,” in Proc. Intl. Conf. Machine Learn., Virtual, 2021. +[46] L. Zheng, T. Fiez, Z. Alumbaugh, B. Chasnov, and L. J. Ratliff, “Stackelberg actor-critic: Game-theoretic reinforcement learning algorithms,” arXiv preprint arXiv:2109.12286, 2021. +[47] R. S. Sutton and A. G. Barto, Reinforcement learning: An introduction. MIT Press, 2018. +[48] R. Sutton, “Learning to predict by the methods of temporal differences,” Machine Learning, vol. 3, pp. 9–44, 1988. +[49] R. Sutton, D. McAllester, S. Singh, and Y. Mansour, “Policy gradient methods for reinforcement learning with function approximation.” in Proc. Advances in Neural Info. Process. Syst., 2000. +[50] Y. Wu, W. Zhang, P. Xu, and Q. Gu, “A finite time analysis of two time-scale actor critic methods,” in Proc. Advances in Neural Info. Process. Syst., 2020. +[51] T. Xu, Z. Wang, and Y. Liang, “Improving sample complexity bounds for (natural) actor-critic algorithms,” in Proc. Advances in Neural Info. Process. Syst., 2020. +[52] Z. Fu, Z. Yang, and Z. Wang, “Single-timescale actor-critic provably finds globally optimal policy,” in Proc. Intl. Conf. Learn. Representations, 2020. +[53] Y. Nesterov, Introductory Lectures on Convex Optimization: A basic course. Berlin, Germany: Springer, 2013, vol. 87. +[54] J. Bhandari, D. Russo, and R. Singal, “A finite time analysis of temporal difference learning with linear function approximation.” in COLT, 2018. +[55] T. Xu, Z. Wang, Y. Zhou, and Y. Liang, “Reanalysis of variance reduced temporal difference learning,” in Proc. Intl. Conf. Learn. Representations, 2020. +[56] K. Zhang, A. Koppel, H. Zhu, and T. Ba¸sar, “Global convergence of policy gradient methods to (almost) locally optimal policies,” arXiv preprint:1906.08383, 2019. +[57] A. Agarwal, S. M. Kakade, J. D. Lee, and G. Mahajan, “Optimality and approximation with policy gradient methods in markov decision processes.” in Proc. of Thirty Third Conference on Learning Theory, 2020. +[58] K. Doya, “Reinforcement learning in continuous time and space,” Neural Computation, vol. 12, no. 1, pp. 219–245, 2000. +[59] J. Baxter and P. L. Bartlett, “Infinite-horizon policy-gradient estimation,” J. Artificial Intelligence Res., vol. 15, pp. 319–350, 2001. +[60] A. Y. Mitrophanov, “Sensitivity and convergence of uniformly ergodic markov chains,” Journal of Applied Probability, vol. 42, no. 4, pp. 1003–1014, 2005. +[61] S. Qiu, Z. Yang, J. Ye, and Z. Wang, “On the finite-time convergence of actor-critic algorithm,” in Optimization Foundations for Reinforcement Learning Workshop at Advances in Neural Information Processing Systems, 2019. \ No newline at end of file diff --git a/parse/train/OItvP2-i9j/OItvP2-i9j_model.json b/parse/train/OItvP2-i9j/OItvP2-i9j_model.json new file mode 100644 index 0000000000000000000000000000000000000000..1177ad939d960949ac3a527d96a0f4ad6206eb81 --- /dev/null +++ b/parse/train/OItvP2-i9j/OItvP2-i9j_model.json @@ -0,0 +1,24503 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 397, + 733, + 1304, + 733, + 1304, + 1248, + 397, + 1248 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1367, + 1406, + 1367, + 1406, + 1710, + 298, + 1710 + ], + "score": 0.983 + }, + { + "category_id": 0, + "poly": [ + 337, + 271, + 1365, + 271, + 1365, + 381, + 337, + 381 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 299, + 1926, + 1404, + 1926, + 1404, + 1989, + 299, + 1989 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 298, + 1723, + 1399, + 1723, + 1399, + 1786, + 298, + 1786 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 549, + 1853, + 985, + 1853, + 985, + 1913, + 549, + 1913 + ], + "score": 0.936 + }, + { + "category_id": 1, + "poly": [ + 754, + 490, + 1000, + 490, + 1000, + 588, + 754, + 588 + ], + "score": 0.927 + }, + { + "category_id": 0, + "poly": [ + 299, + 1299, + 530, + 1299, + 530, + 1338, + 299, + 1338 + ], + "score": 0.91 + }, + { + "category_id": 1, + "poly": [ + 1072, + 490, + 1360, + 490, + 1360, + 588, + 1072, + 588 + ], + "score": 0.901 + }, + { + "category_id": 0, + "poly": [ + 788, + 664, + 912, + 664, + 912, + 700, + 788, + 700 + ], + "score": 0.894 + }, + { + "category_id": 8, + "poly": [ + 550, + 1795, + 950, + 1795, + 950, + 1847, + 550, + 1847 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 296, + 2032, + 1071, + 2032, + 1071, + 2063, + 296, + 2063 + ], + "score": 0.883 + }, + { + "category_id": 9, + "poly": [ + 1353, + 1857, + 1399, + 1857, + 1399, + 1886, + 1353, + 1886 + ], + "score": 0.883 + }, + { + "category_id": 9, + "poly": [ + 1354, + 1801, + 1399, + 1801, + 1399, + 1830, + 1354, + 1830 + ], + "score": 0.881 + }, + { + "category_id": 9, + "poly": [ + 1064, + 1856, + 1147, + 1856, + 1147, + 1888, + 1064, + 1888 + ], + "score": 0.82 + }, + { + "category_id": 1, + "poly": [ + 335, + 489, + 696, + 489, + 696, + 587, + 335, + 587 + ], + "score": 0.688 + }, + { + "category_id": 9, + "poly": [ + 1065, + 1800, + 1154, + 1800, + 1154, + 1833, + 1065, + 1833 + ], + "score": 0.594 + }, + { + "category_id": 0, + "poly": [ + 1153, + 490, + 1281, + 490, + 1281, + 520, + 1153, + 520 + ], + "score": 0.1 + }, + { + "category_id": 2, + "poly": [ + 339, + 216, + 1355, + 216, + 1355, + 233, + 339, + 233 + ], + "score": 0.097 + }, + { + "category_id": 0, + "poly": [ + 440, + 490, + 589, + 490, + 589, + 521, + 440, + 521 + ], + "score": 0.093 + }, + { + "category_id": 13, + "poly": [ + 1114, + 1063, + 1202, + 1063, + 1202, + 1098, + 1114, + 1098 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1202, + 1461, + 1333, + 1461, + 1333, + 1497, + 1202, + 1497 + ], + "score": 0.93, + "latex": "\\nabla f ( x ^ { k } ; \\xi ^ { k } )" + }, + { + "category_id": 13, + "poly": [ + 884, + 1429, + 1017, + 1429, + 1017, + 1464, + 884, + 1464 + ], + "score": 0.93, + "latex": "\\mathbb { E } _ { \\xi } ^ { - } \\left[ f ( x ; \\xi ) \\right]" + }, + { + "category_id": 14, + "poly": [ + 545, + 1794, + 987, + 1794, + 987, + 1916, + 545, + 1916 + ], + "score": 0.92, + "latex": "\\begin{array} { r l } { \\underset { x \\in \\mathbb { R } ^ { d } } { \\operatorname* { m i n } } } & { F ( x ) : = \\mathbb { E } _ { \\xi } \\left[ f \\left( x , y ^ { * } ( x ) ; \\xi \\right) \\right] } \\\\ { \\mathrm { s . t . ~ } } & { y ^ { * } ( x ) = \\underset { y \\in \\mathbb { R } ^ { d ^ { \\prime } } } { \\operatorname { a r g m i n } } \\ \\mathbb { E } _ { \\phi } [ g ( x , y ; \\phi ) ] } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 519, + 1460, + 828, + 1460, + 828, + 1496, + 519, + 1496 + ], + "score": 0.92, + "latex": "\\boldsymbol { x } ^ { k + 1 } = \\boldsymbol { x } ^ { k } - \\alpha \\nabla f ( x ^ { k } ; \\xi ^ { k } )" + }, + { + "category_id": 13, + "poly": [ + 1211, + 1428, + 1296, + 1428, + 1296, + 1458, + 1211, + 1458 + ], + "score": 0.9, + "latex": "x \\in \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 914, + 1466, + 987, + 1466, + 987, + 1493, + 914, + 1493 + ], + "score": 0.89, + "latex": "\\alpha > 0" + }, + { + "category_id": 13, + "poly": [ + 854, + 1494, + 884, + 1494, + 884, + 1529, + 854, + 1529 + ], + "score": 0.87, + "latex": "\\xi ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 648, + 1495, + 681, + 1495, + 681, + 1524, + 648, + 1524 + ], + "score": 0.86, + "latex": "x ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 372, + 1928, + 392, + 1928, + 392, + 1959, + 372, + 1959 + ], + "score": 0.86, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 907, + 1928, + 928, + 1928, + 928, + 1959, + 907, + 1959 + ], + "score": 0.86, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 839, + 1928, + 857, + 1928, + 857, + 1959, + 839, + 1959 + ], + "score": 0.84, + "latex": "\\xi" + }, + { + "category_id": 13, + "poly": [ + 443, + 1932, + 461, + 1932, + 461, + 1958, + 443, + 1958 + ], + "score": 0.8, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 524, + 1070, + 539, + 1070, + 539, + 1093, + 524, + 1093 + ], + "score": 0.73, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 492, + 557, + 540, + 557, + 540, + 587, + 492, + 587 + ], + "score": 0.41, + "latex": "1 9 @" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 271.0, + 1357.0, + 271.0, + 1357.0, + 329.0, + 347.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 328.0, + 1364.0, + 328.0, + 1364.0, + 380.0, + 334.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1296.0, + 536.0, + 1296.0, + 536.0, + 1344.0, + 292.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 782.0, + 661.0, + 919.0, + 661.0, + 919.0, + 705.0, + 782.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2028.0, + 1073.0, + 2028.0, + 1073.0, + 2066.0, + 294.0, + 2066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 488.0, + 1284.0, + 488.0, + 1284.0, + 524.0, + 1150.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 437.0, + 485.0, + 595.0, + 485.0, + 595.0, + 530.0, + 437.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 731.0, + 1307.0, + 731.0, + 1307.0, + 766.0, + 396.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 763.0, + 1309.0, + 763.0, + 1309.0, + 796.0, + 395.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 791.0, + 1305.0, + 791.0, + 1305.0, + 826.0, + 393.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 823.0, + 1305.0, + 823.0, + 1305.0, + 858.0, + 393.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 853.0, + 1305.0, + 853.0, + 1305.0, + 889.0, + 393.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 883.0, + 1304.0, + 883.0, + 1304.0, + 918.0, + 393.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 914.0, + 1306.0, + 914.0, + 1306.0, + 950.0, + 394.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 944.0, + 1305.0, + 944.0, + 1305.0, + 977.0, + 393.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 973.0, + 1308.0, + 973.0, + 1308.0, + 1009.0, + 392.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1003.0, + 1308.0, + 1003.0, + 1308.0, + 1040.0, + 393.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1033.0, + 1306.0, + 1033.0, + 1306.0, + 1071.0, + 392.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1064.0, + 523.0, + 1064.0, + 523.0, + 1099.0, + 392.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 1064.0, + 1113.0, + 1064.0, + 1113.0, + 1099.0, + 540.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1203.0, + 1064.0, + 1306.0, + 1064.0, + 1306.0, + 1099.0, + 1203.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 1093.0, + 1306.0, + 1093.0, + 1306.0, + 1131.0, + 391.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1127.0, + 1306.0, + 1127.0, + 1306.0, + 1160.0, + 394.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1156.0, + 1304.0, + 1156.0, + 1304.0, + 1188.0, + 394.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1187.0, + 1305.0, + 1187.0, + 1305.0, + 1220.0, + 395.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1218.0, + 1103.0, + 1218.0, + 1103.0, + 1251.0, + 394.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1364.0, + 1406.0, + 1364.0, + 1406.0, + 1406.0, + 292.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1398.0, + 1408.0, + 1398.0, + 1408.0, + 1435.0, + 293.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1428.0, + 883.0, + 1428.0, + 883.0, + 1464.0, + 293.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 1428.0, + 1210.0, + 1428.0, + 1210.0, + 1464.0, + 1018.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1297.0, + 1428.0, + 1407.0, + 1428.0, + 1407.0, + 1464.0, + 1297.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1458.0, + 518.0, + 1458.0, + 518.0, + 1501.0, + 292.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 1458.0, + 913.0, + 1458.0, + 913.0, + 1501.0, + 829.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 1458.0, + 1201.0, + 1458.0, + 1201.0, + 1501.0, + 988.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1334.0, + 1458.0, + 1407.0, + 1458.0, + 1407.0, + 1501.0, + 1334.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1489.0, + 647.0, + 1489.0, + 647.0, + 1536.0, + 291.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 1489.0, + 853.0, + 1489.0, + 853.0, + 1536.0, + 682.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 1489.0, + 1408.0, + 1489.0, + 1408.0, + 1536.0, + 885.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1525.0, + 1409.0, + 1525.0, + 1409.0, + 1566.0, + 292.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1557.0, + 1409.0, + 1557.0, + 1409.0, + 1594.0, + 292.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1588.0, + 1406.0, + 1588.0, + 1406.0, + 1623.0, + 295.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1619.0, + 1406.0, + 1619.0, + 1406.0, + 1653.0, + 293.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1649.0, + 1404.0, + 1649.0, + 1404.0, + 1684.0, + 295.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1678.0, + 877.0, + 1678.0, + 877.0, + 1713.0, + 295.0, + 1713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1924.0, + 371.0, + 1924.0, + 371.0, + 1961.0, + 294.0, + 1961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1924.0, + 442.0, + 1924.0, + 442.0, + 1961.0, + 393.0, + 1961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 462.0, + 1924.0, + 838.0, + 1924.0, + 838.0, + 1961.0, + 462.0, + 1961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 1924.0, + 906.0, + 1924.0, + 906.0, + 1961.0, + 858.0, + 1961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 1924.0, + 1404.0, + 1924.0, + 1404.0, + 1961.0, + 929.0, + 1961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1958.0, + 1403.0, + 1958.0, + 1403.0, + 1989.0, + 297.0, + 1989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1724.0, + 1405.0, + 1724.0, + 1405.0, + 1760.0, + 296.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1753.0, + 1259.0, + 1753.0, + 1259.0, + 1791.0, + 293.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 487.0, + 957.0, + 487.0, + 957.0, + 525.0, + 805.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 524.0, + 923.0, + 524.0, + 923.0, + 559.0, + 839.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 751.0, + 554.0, + 1003.0, + 554.0, + 1003.0, + 590.0, + 751.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 488.0, + 1285.0, + 488.0, + 1285.0, + 521.0, + 1151.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 524.0, + 1261.0, + 524.0, + 1261.0, + 558.0, + 1176.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 556.0, + 1363.0, + 556.0, + 1363.0, + 588.0, + 1070.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 437.0, + 489.0, + 595.0, + 489.0, + 595.0, + 525.0, + 437.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 523.0, + 698.0, + 523.0, + 698.0, + 562.0, + 334.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 553.0, + 491.0, + 553.0, + 491.0, + 596.0, + 368.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 553.0, + 666.0, + 553.0, + 666.0, + 596.0, + 541.0, + 596.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1216, + 1404, + 1216, + 1404, + 1481, + 297, + 1481 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1038, + 1404, + 1038, + 1404, + 1205, + 297, + 1205 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 278, + 1405, + 278, + 1405, + 433, + 297, + 433 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1654, + 1405, + 1654, + 1405, + 1808, + 298, + 1808 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 602, + 1404, + 602, + 1404, + 727, + 297, + 727 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 343, + 1884, + 1404, + 1884, + 1404, + 2007, + 343, + 2007 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 299, + 817, + 1404, + 817, + 1404, + 881, + 299, + 881 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 298, + 893, + 1399, + 893, + 1399, + 957, + 298, + 957 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 295, + 1493, + 1400, + 1493, + 1400, + 1557, + 295, + 1557 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 292, + 201, + 1400, + 201, + 1400, + 265, + 292, + 265 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 294, + 528, + 1402, + 528, + 1402, + 591, + 294, + 591 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 401, + 742, + 1294, + 742, + 1294, + 798, + 401, + 798 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 437, + 450, + 1259, + 450, + 1259, + 507, + 437, + 507 + ], + "score": 0.941 + }, + { + "category_id": 8, + "poly": [ + 562, + 974, + 1135, + 974, + 1135, + 1021, + 562, + 1021 + ], + "score": 0.939 + }, + { + "category_id": 1, + "poly": [ + 299, + 1820, + 1226, + 1820, + 1226, + 1853, + 299, + 1853 + ], + "score": 0.921 + }, + { + "category_id": 0, + "poly": [ + 299, + 1596, + 512, + 1596, + 512, + 1629, + 299, + 1629 + ], + "score": 0.907 + }, + { + "category_id": 9, + "poly": [ + 1366, + 983, + 1400, + 983, + 1400, + 1011, + 1366, + 1011 + ], + "score": 0.875 + }, + { + "category_id": 9, + "poly": [ + 1365, + 455, + 1400, + 455, + 1400, + 485, + 1365, + 485 + ], + "score": 0.868 + }, + { + "category_id": 9, + "poly": [ + 1366, + 749, + 1400, + 749, + 1400, + 780, + 1366, + 780 + ], + "score": 0.864 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 858, + 2061, + 858, + 2084, + 841, + 2084 + ], + "score": 0.695 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2084, + 841, + 2084 + ], + "score": 0.267 + }, + { + "category_id": 13, + "poly": [ + 851, + 1039, + 1037, + 1039, + 1037, + 1077, + 851, + 1077 + ], + "score": 0.93, + "latex": "\\mathbb { E } _ { \\phi } [ g ( x ^ { k } , y ^ { k } ; \\phi ) ]" + }, + { + "category_id": 13, + "poly": [ + 760, + 1172, + 826, + 1172, + 826, + 1205, + 760, + 1205 + ], + "score": 0.92, + "latex": "y ^ { * } ( x )" + }, + { + "category_id": 13, + "poly": [ + 1115, + 369, + 1397, + 369, + 1397, + 403, + 1115, + 403 + ], + "score": 0.92, + "latex": "g ( x , y ; \\phi ) : = - \\bar { f } ( x , y ; \\xi )" + }, + { + "category_id": 13, + "poly": [ + 536, + 1078, + 610, + 1078, + 610, + 1113, + 536, + 1113 + ], + "score": 0.92, + "latex": "F ( x ^ { k } )" + }, + { + "category_id": 13, + "poly": [ + 664, + 665, + 731, + 665, + 731, + 698, + 664, + 698 + ], + "score": 0.92, + "latex": "y ^ { * } ( x )" + }, + { + "category_id": 13, + "poly": [ + 1208, + 198, + 1298, + 198, + 1298, + 235, + 1208, + 235 + ], + "score": 0.92, + "latex": "y \\in \\mathbb { R } ^ { d ^ { \\prime } }" + }, + { + "category_id": 13, + "poly": [ + 1157, + 1142, + 1218, + 1142, + 1218, + 1175, + 1157, + 1175 + ], + "score": 0.92, + "latex": "F ( x )" + }, + { + "category_id": 13, + "poly": [ + 1076, + 602, + 1306, + 602, + 1306, + 636, + 1076, + 636 + ], + "score": 0.92, + "latex": "f ( x , y ; \\xi ) : = f ( y ; \\xi )" + }, + { + "category_id": 13, + "poly": [ + 977, + 233, + 1061, + 233, + 1061, + 262, + 977, + 262 + ], + "score": 0.92, + "latex": "\\boldsymbol { x } \\in \\mathbb { R } ^ { d }" + }, + { + "category_id": 14, + "poly": [ + 402, + 741, + 1297, + 741, + 1297, + 800, + 402, + 800 + ], + "score": 0.91, + "latex": "\\mathrm { I f } \\ g ( x , y ; \\phi ) : = \\| y - h ( x ; \\phi ) \\| ^ { 2 } \\quad \\Rightarrow \\quad \\operatorname* { m i n } _ { x \\in \\mathbb { R } ^ { d } } \\ F ( x ) : = \\mathbb { E } _ { \\xi } \\left[ f \\big ( \\mathbb { E } _ { \\phi } [ h ( x ; \\phi ) ] ; \\xi \\big ) \\right] ." + }, + { + "category_id": 13, + "poly": [ + 328, + 234, + 394, + 234, + 394, + 267, + 328, + 267 + ], + "score": 0.91, + "latex": "y ^ { \\ast } ( x )" + }, + { + "category_id": 13, + "poly": [ + 1093, + 1040, + 1127, + 1040, + 1127, + 1081, + 1093, + 1081 + ], + "score": 0.91, + "latex": "h _ { f } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 655, + 1217, + 689, + 1217, + 689, + 1258, + 655, + 1258 + ], + "score": 0.91, + "latex": "h _ { f } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1121, + 1354, + 1350, + 1354, + 1350, + 1389, + 1121, + 1389 + ], + "score": 0.91, + "latex": "\\scriptstyle \\operatorname* { l i m } _ { k \\to \\infty } \\alpha _ { k } / \\beta _ { k } = 0" + }, + { + "category_id": 14, + "poly": [ + 564, + 974, + 1135, + 974, + 1135, + 1020, + 564, + 1020 + ], + "score": 0.91, + "latex": "y ^ { k + 1 } = y ^ { k } - \\beta _ { k } h _ { g } ^ { k } ~ \\mathrm { a n d } ~ x ^ { k + 1 } = x ^ { k } - \\alpha _ { k } h _ { f } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 656, + 1317, + 689, + 1317, + 689, + 1355, + 656, + 1355 + ], + "score": 0.9, + "latex": "h _ { g } ^ { k }" + }, + { + "category_id": 14, + "poly": [ + 437, + 450, + 1262, + 450, + 1262, + 509, + 437, + 509 + ], + "score": 0.9, + "latex": "\\operatorname { I f } g ( x , y ; \\phi ) : = - f ( x , y ; \\xi ) \\quad \\Rightarrow \\quad \\operatorname* { m i n } _ { x \\in \\mathbb { R } ^ { d } } F ( x ) : = \\operatorname* { m a x } _ { y \\in \\mathbb { R } ^ { d ^ { \\prime } } } \\mathbb { E } _ { \\xi } \\left[ f ( x , y ; \\xi ) \\right] ." + }, + { + "category_id": 13, + "poly": [ + 374, + 1040, + 408, + 1040, + 408, + 1080, + 374, + 1080 + ], + "score": 0.9, + "latex": "h _ { g } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 675, + 1081, + 707, + 1081, + 707, + 1112, + 675, + 1112 + ], + "score": 0.89, + "latex": "\\beta _ { k }" + }, + { + "category_id": 13, + "poly": [ + 420, + 1255, + 452, + 1255, + 452, + 1289, + 420, + 1289 + ], + "score": 0.89, + "latex": "y ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1029, + 1353, + 1060, + 1353, + 1060, + 1388, + 1029, + 1388 + ], + "score": 0.89, + "latex": "y ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 936, + 1386, + 967, + 1386, + 967, + 1421, + 936, + 1421 + ], + "score": 0.89, + "latex": "y ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1213, + 1317, + 1244, + 1317, + 1244, + 1351, + 1213, + 1351 + ], + "score": 0.88, + "latex": "y ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 869, + 1386, + 902, + 1386, + 902, + 1425, + 869, + 1425 + ], + "score": 0.88, + "latex": "h _ { g } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 914, + 635, + 1237, + 635, + 1237, + 668, + 914, + 668 + ], + "score": 0.88, + "latex": "g ( x , y ; \\phi ) : = \\| y - h ( x ; \\phi ) \\| ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 618, + 1353, + 650, + 1353, + 650, + 1383, + 618, + 1383 + ], + "score": 0.88, + "latex": "x ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 501, + 1352, + 533, + 1352, + 533, + 1383, + 501, + 1383 + ], + "score": 0.88, + "latex": "x ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 794, + 1255, + 826, + 1255, + 826, + 1286, + 794, + 1286 + ], + "score": 0.87, + "latex": "x ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 756, + 1084, + 791, + 1084, + 791, + 1111, + 756, + 1111 + ], + "score": 0.86, + "latex": "\\alpha _ { k }" + }, + { + "category_id": 13, + "poly": [ + 748, + 605, + 768, + 605, + 768, + 636, + 748, + 636 + ], + "score": 0.86, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 1036, + 371, + 1055, + 371, + 1055, + 402, + 1036, + 402 + ], + "score": 0.84, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 1136, + 1293, + 1154, + 1293, + 1154, + 1319, + 1136, + 1319 + ], + "score": 0.82, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 367, + 929, + 385, + 929, + 385, + 957, + 367, + 957 + ], + "score": 0.81, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 537, + 375, + 555, + 375, + 555, + 402, + 537, + 402 + ], + "score": 0.81, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 394, + 666, + 414, + 666, + 414, + 692, + 394, + 692 + ], + "score": 0.81, + "latex": "h" + }, + { + "category_id": 13, + "poly": [ + 533, + 640, + 552, + 640, + 552, + 666, + 533, + 666 + ], + "score": 0.81, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 447, + 669, + 466, + 669, + 466, + 692, + 447, + 692 + ], + "score": 0.79, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 1067, + 1116, + 1086, + 1116, + 1086, + 1138, + 1067, + 1138 + ], + "score": 0.79, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 837, + 639, + 854, + 639, + 854, + 667, + 837, + 667 + ], + "score": 0.77, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 999, + 609, + 1017, + 609, + 1017, + 635, + 999, + 635 + ], + "score": 0.76, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 298, + 931, + 316, + 931, + 316, + 952, + 298, + 952 + ], + "score": 0.73, + "latex": "x" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1594.0, + 514.0, + 1594.0, + 514.0, + 1633.0, + 294.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2093.0, + 839.0, + 2093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2093.0, + 838.0, + 2093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1217.0, + 654.0, + 1217.0, + 654.0, + 1256.0, + 294.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 1217.0, + 1405.0, + 1217.0, + 1405.0, + 1256.0, + 690.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1255.0, + 419.0, + 1255.0, + 419.0, + 1294.0, + 296.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 1255.0, + 793.0, + 1255.0, + 793.0, + 1294.0, + 453.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 1255.0, + 1406.0, + 1255.0, + 1406.0, + 1294.0, + 827.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1285.0, + 1135.0, + 1285.0, + 1135.0, + 1326.0, + 294.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1155.0, + 1285.0, + 1404.0, + 1285.0, + 1404.0, + 1326.0, + 1155.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1313.0, + 655.0, + 1313.0, + 655.0, + 1361.0, + 291.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 1313.0, + 1212.0, + 1313.0, + 1212.0, + 1361.0, + 690.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1245.0, + 1313.0, + 1407.0, + 1313.0, + 1407.0, + 1361.0, + 1245.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1348.0, + 500.0, + 1348.0, + 500.0, + 1394.0, + 292.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 1348.0, + 617.0, + 1348.0, + 617.0, + 1394.0, + 534.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 651.0, + 1348.0, + 1028.0, + 1348.0, + 1028.0, + 1394.0, + 651.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 1348.0, + 1120.0, + 1348.0, + 1120.0, + 1394.0, + 1061.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1351.0, + 1348.0, + 1405.0, + 1348.0, + 1405.0, + 1394.0, + 1351.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1384.0, + 868.0, + 1384.0, + 868.0, + 1427.0, + 292.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 1384.0, + 935.0, + 1384.0, + 935.0, + 1427.0, + 903.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 1384.0, + 1406.0, + 1384.0, + 1406.0, + 1427.0, + 968.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1417.0, + 1409.0, + 1417.0, + 1409.0, + 1456.0, + 292.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1450.0, + 1375.0, + 1450.0, + 1375.0, + 1482.0, + 296.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1039.0, + 373.0, + 1039.0, + 373.0, + 1080.0, + 294.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 1039.0, + 850.0, + 1039.0, + 850.0, + 1080.0, + 409.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1038.0, + 1039.0, + 1092.0, + 1039.0, + 1092.0, + 1080.0, + 1038.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 1039.0, + 1406.0, + 1039.0, + 1406.0, + 1080.0, + 1128.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1079.0, + 535.0, + 1079.0, + 535.0, + 1116.0, + 294.0, + 1116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 1079.0, + 674.0, + 1079.0, + 674.0, + 1116.0, + 611.0, + 1116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 1079.0, + 755.0, + 1079.0, + 755.0, + 1116.0, + 708.0, + 1116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 1079.0, + 1405.0, + 1079.0, + 1405.0, + 1116.0, + 792.0, + 1116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1111.0, + 1066.0, + 1111.0, + 1066.0, + 1144.0, + 295.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1087.0, + 1111.0, + 1406.0, + 1111.0, + 1406.0, + 1144.0, + 1087.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1141.0, + 1156.0, + 1141.0, + 1156.0, + 1179.0, + 292.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1219.0, + 1141.0, + 1405.0, + 1141.0, + 1405.0, + 1179.0, + 1219.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1172.0, + 759.0, + 1172.0, + 759.0, + 1209.0, + 294.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 1172.0, + 838.0, + 1172.0, + 838.0, + 1209.0, + 827.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 278.0, + 1406.0, + 278.0, + 1406.0, + 316.0, + 295.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 309.0, + 1405.0, + 309.0, + 1405.0, + 344.0, + 294.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 338.0, + 1406.0, + 338.0, + 1406.0, + 374.0, + 294.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 369.0, + 536.0, + 369.0, + 536.0, + 406.0, + 295.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 369.0, + 1035.0, + 369.0, + 1035.0, + 406.0, + 556.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 369.0, + 1114.0, + 369.0, + 1114.0, + 406.0, + 1056.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 369.0, + 1408.0, + 369.0, + 1408.0, + 406.0, + 1398.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 398.0, + 1157.0, + 398.0, + 1157.0, + 437.0, + 294.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1654.0, + 1405.0, + 1654.0, + 1405.0, + 1691.0, + 296.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1686.0, + 1405.0, + 1686.0, + 1405.0, + 1719.0, + 296.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1715.0, + 1408.0, + 1715.0, + 1408.0, + 1749.0, + 293.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1744.0, + 1405.0, + 1744.0, + 1405.0, + 1784.0, + 293.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1777.0, + 987.0, + 1777.0, + 987.0, + 1814.0, + 295.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 600.0, + 747.0, + 600.0, + 747.0, + 640.0, + 294.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 600.0, + 998.0, + 600.0, + 998.0, + 640.0, + 769.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 600.0, + 1075.0, + 600.0, + 1075.0, + 640.0, + 1018.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1307.0, + 600.0, + 1405.0, + 600.0, + 1405.0, + 640.0, + 1307.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 633.0, + 532.0, + 633.0, + 532.0, + 669.0, + 292.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 553.0, + 633.0, + 836.0, + 633.0, + 836.0, + 669.0, + 553.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 633.0, + 913.0, + 633.0, + 913.0, + 669.0, + 855.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 633.0, + 1405.0, + 633.0, + 1405.0, + 669.0, + 1238.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 664.0, + 393.0, + 664.0, + 393.0, + 697.0, + 295.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 664.0, + 446.0, + 664.0, + 446.0, + 697.0, + 415.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 467.0, + 664.0, + 663.0, + 664.0, + 663.0, + 697.0, + 467.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 732.0, + 664.0, + 1405.0, + 664.0, + 1405.0, + 697.0, + 732.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 694.0, + 1071.0, + 694.0, + 1071.0, + 730.0, + 294.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 1884.0, + 1404.0, + 1884.0, + 1404.0, + 1920.0, + 340.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1913.0, + 1407.0, + 1913.0, + 1407.0, + 1952.0, + 393.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1944.0, + 1406.0, + 1944.0, + 1406.0, + 1983.0, + 393.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1977.0, + 926.0, + 1977.0, + 926.0, + 2009.0, + 396.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 816.0, + 1403.0, + 816.0, + 1403.0, + 852.0, + 297.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 849.0, + 1356.0, + 849.0, + 1356.0, + 885.0, + 295.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 890.0, + 1403.0, + 890.0, + 1403.0, + 930.0, + 294.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 925.0, + 297.0, + 925.0, + 297.0, + 957.0, + 294.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 925.0, + 366.0, + 925.0, + 366.0, + 957.0, + 317.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 925.0, + 776.0, + 925.0, + 776.0, + 957.0, + 386.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1489.0, + 1406.0, + 1489.0, + 1406.0, + 1533.0, + 293.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1525.0, + 1347.0, + 1525.0, + 1347.0, + 1561.0, + 296.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 200.0, + 1207.0, + 200.0, + 1207.0, + 237.0, + 294.0, + 237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1299.0, + 200.0, + 1405.0, + 200.0, + 1405.0, + 237.0, + 1299.0, + 237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 232.0, + 327.0, + 232.0, + 327.0, + 266.0, + 292.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 232.0, + 976.0, + 232.0, + 976.0, + 266.0, + 395.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 232.0, + 1072.0, + 232.0, + 1072.0, + 266.0, + 1062.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 528.0, + 1405.0, + 528.0, + 1405.0, + 563.0, + 294.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 558.0, + 1336.0, + 558.0, + 1336.0, + 594.0, + 296.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1819.0, + 1232.0, + 1819.0, + 1232.0, + 1857.0, + 294.0, + 1857.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1317, + 1405, + 1317, + 1405, + 1749, + 297, + 1749 + ], + "score": 0.979 + }, + { + "category_id": 5, + "poly": [ + 296, + 203, + 1427, + 203, + 1427, + 375, + 296, + 375 + ], + "score": 0.978, + "html": "
ALSETBSATTSAstocBiOSTABLESUSTAIN/RSVRB
batch size0(1)0(1)0(1)0(c-1)0(1)0(1)
y-updateSGDO(c-))SGD stepsSGDSGDcorrectionmomentum
samples in gsamples in(5∈-2)(-2)(k-2)(-3)O(KPe-(P-(5∈-2)(-2)O(KPe-2)O(KPe-2)O(KP-2)(P
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1090, + 1405, + 1090, + 1405, + 1304, + 298, + 1304 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 1763, + 1404, + 1763, + 1404, + 2008, + 298, + 2008 + ], + "score": 0.975 + }, + { + "category_id": 0, + "poly": [ + 299, + 986, + 602, + 986, + 602, + 1019, + 299, + 1019 + ], + "score": 0.922 + }, + { + "category_id": 1, + "poly": [ + 298, + 1044, + 1348, + 1044, + 1348, + 1077, + 298, + 1077 + ], + "score": 0.906 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 858, + 2061, + 858, + 2085, + 841, + 2085 + ], + "score": 0.638 + }, + { + "category_id": 1, + "poly": [ + 338, + 559, + 1405, + 559, + 1405, + 948, + 338, + 948 + ], + "score": 0.607 + }, + { + "category_id": 1, + "poly": [ + 297, + 391, + 1408, + 391, + 1408, + 521, + 297, + 521 + ], + "score": 0.466 + }, + { + "category_id": 6, + "poly": [ + 297, + 391, + 1408, + 391, + 1408, + 521, + 297, + 521 + ], + "score": 0.465 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2085, + 841, + 2085 + ], + "score": 0.354 + }, + { + "category_id": 13, + "poly": [ + 782, + 913, + 890, + 913, + 890, + 949, + 782, + 949 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 5 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 412, + 1686, + 499, + 1686, + 499, + 1720, + 412, + 1720 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 730, + 1407, + 817, + 1407, + 817, + 1442, + 730, + 1442 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 3 } )" + }, + { + "category_id": 13, + "poly": [ + 806, + 1500, + 915, + 1500, + 915, + 1536, + 806, + 1536 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 5 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 897, + 880, + 985, + 880, + 985, + 915, + 897, + 915 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 845, + 682, + 931, + 682, + 931, + 718, + 845, + 718 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 559, + 1562, + 646, + 1562, + 646, + 1597, + 559, + 1597 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 724, + 1975, + 811, + 1975, + 811, + 2009, + 724, + 2009 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 868, + 1407, + 954, + 1407, + 954, + 1442, + 868, + 1442 + ], + "score": 0.92, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1944, + 385, + 1944, + 385, + 1979, + 298, + 1979 + ], + "score": 0.92, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1294, + 681, + 1403, + 681, + 1403, + 718, + 1294, + 718 + ], + "score": 0.92, + "latex": "\\mathcal { O } \\dot { ( \\epsilon ^ { - 5 / 2 } ) }" + }, + { + "category_id": 13, + "poly": [ + 943, + 1654, + 1052, + 1654, + 1052, + 1691, + 943, + 1691 + ], + "score": 0.92, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 3 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1266, + 1945, + 1353, + 1945, + 1353, + 1979, + 1266, + 1979 + ], + "score": 0.92, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 972, + 240, + 1050, + 240, + 1050, + 269, + 972, + 269 + ], + "score": 0.92, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 442, + 455, + 503, + 455, + 503, + 492, + 442, + 492 + ], + "score": 0.92, + "latex": "\\widetilde { \\mathcal { O } } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 505, + 243, + 559, + 243, + 559, + 270, + 505, + 270 + ], + "score": 0.91, + "latex": "\\underline { { \\mathcal { O } ( 1 ) } }" + }, + { + "category_id": 13, + "poly": [ + 850, + 243, + 904, + 243, + 904, + 270, + 850, + 270 + ], + "score": 0.91, + "latex": "\\underline { { \\mathcal { O } ( 1 ) } }" + }, + { + "category_id": 13, + "poly": [ + 680, + 243, + 734, + 243, + 734, + 270, + 680, + 270 + ], + "score": 0.91, + "latex": "\\underline { { \\mathcal { O } ( 1 ) } }" + }, + { + "category_id": 13, + "poly": [ + 1124, + 243, + 1178, + 243, + 1178, + 270, + 1124, + 270 + ], + "score": 0.9, + "latex": "\\underline { { \\mathcal { O } ( 1 ) } }" + }, + { + "category_id": 13, + "poly": [ + 1334, + 424, + 1394, + 424, + 1394, + 455, + 1334, + 455 + ], + "score": 0.9, + "latex": "F ( x )" + }, + { + "category_id": 13, + "poly": [ + 1129, + 1976, + 1189, + 1976, + 1189, + 2009, + 1129, + 2009 + ], + "score": 0.9, + "latex": "\\mathcal { O } ( 1 )" + }, + { + "category_id": 13, + "poly": [ + 821, + 336, + 933, + 336, + 933, + 370, + 821, + 370 + ], + "score": 0.89, + "latex": "\\widetilde { \\mathcal { O } } ( \\kappa ^ { p } \\epsilon ^ { - \\frac { 5 } { 2 } } )" + }, + { + "category_id": 13, + "poly": [ + 1296, + 243, + 1351, + 243, + 1351, + 270, + 1296, + 270 + ], + "score": 0.89, + "latex": "\\underline { { \\mathcal { O } ( 1 ) } }" + }, + { + "category_id": 13, + "poly": [ + 609, + 271, + 687, + 271, + 687, + 299, + 609, + 299 + ], + "score": 0.87, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 961, + 460, + 992, + 460, + 992, + 486, + 961, + 486 + ], + "score": 0.85, + "latex": "\\kappa ^ { p }" + }, + { + "category_id": 13, + "poly": [ + 720, + 456, + 804, + 456, + 804, + 490, + 720, + 490 + ], + "score": 0.84, + "latex": "\\log \\epsilon ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 432, + 311, + 445, + 311, + 445, + 333, + 432, + 333 + ], + "score": 0.82, + "latex": "\\xi" + }, + { + "category_id": 13, + "poly": [ + 1267, + 337, + 1380, + 337, + 1380, + 370, + 1267, + 370 + ], + "score": 0.81, + "latex": "\\widetilde { \\mathcal { O } } ( \\kappa ^ { p } \\epsilon ^ { - \\frac { 3 } { 2 } } )" + }, + { + "category_id": 13, + "poly": [ + 821, + 302, + 933, + 302, + 933, + 334, + 821, + 334 + ], + "score": 0.81, + "latex": "\\mathcal { O } ( \\kappa ^ { p } \\epsilon ^ { - \\frac { 5 } { 2 } } )" + }, + { + "category_id": 13, + "poly": [ + 1097, + 306, + 1205, + 306, + 1205, + 340, + 1097, + 340 + ], + "score": 0.8, + "latex": "\\mathcal { O } ( \\kappa ^ { p } \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1268, + 301, + 1380, + 301, + 1380, + 335, + 1268, + 335 + ], + "score": 0.79, + "latex": "\\mathcal { O } ( \\kappa ^ { p } \\epsilon ^ { - \\frac { 3 } { 2 } } )" + }, + { + "category_id": 13, + "poly": [ + 346, + 1628, + 364, + 1628, + 364, + 1656, + 346, + 1656 + ], + "score": 0.79, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 919, + 1569, + 938, + 1569, + 938, + 1595, + 919, + 1595 + ], + "score": 0.78, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 479, + 333, + 586, + 333, + 586, + 367, + 479, + 367 + ], + "score": 0.77, + "latex": "\\widetilde { \\mathcal { O } } ( \\kappa ^ { 9 } \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 329, + 281, + 343, + 281, + 343, + 298, + 329, + 298 + ], + "score": 0.77, + "latex": "_ y" + }, + { + "category_id": 13, + "poly": [ + 1097, + 314, + 1205, + 314, + 1205, + 365, + 1097, + 365 + ], + "score": 0.76, + "latex": "\\begin{array} { l } { { \\mathcal { O } ( \\kappa ^ { r } \\epsilon ^ { \\mathrm { ~ \\tiny ~ - ~ } } ) } } \\\\ { { \\mathcal { O } ( \\kappa ^ { p } \\epsilon ^ { \\mathrm { - 2 } } ) } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 574, + 495, + 593, + 495, + 593, + 516, + 574, + 516 + ], + "score": 0.76, + "latex": "\\kappa" + }, + { + "category_id": 13, + "poly": [ + 958, + 334, + 1065, + 334, + 1065, + 367, + 958, + 367 + ], + "score": 0.75, + "latex": "\\widetilde { \\mathcal { O } } ( \\kappa ^ { 9 } \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1383, + 470, + 1401, + 470, + 1401, + 486, + 1383, + 486 + ], + "score": 0.74, + "latex": "\\kappa" + }, + { + "category_id": 13, + "poly": [ + 1203, + 857, + 1217, + 857, + 1217, + 880, + 1203, + 880 + ], + "score": 0.72, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 431, + 337, + 447, + 337, + 447, + 361, + 431, + 361 + ], + "score": 0.71, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 640, + 304, + 768, + 304, + 768, + 369, + 640, + 369 + ], + "score": 0.66, + "latex": "\\begin{array} { c } { { \\mathcal { O } ( \\kappa ^ { 6 } \\epsilon ^ { - 2 } ) } } \\\\ { { \\widetilde { \\mathcal { O } } ( \\kappa ^ { 9 } \\epsilon ^ { - 3 } ) } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1104, + 429, + 1118, + 429, + 1118, + 449, + 1104, + 449 + ], + "score": 0.65, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1199, + 1385, + 1214, + 1385, + 1214, + 1406, + 1199, + 1406 + ], + "score": 0.61, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1200, + 658, + 1215, + 658, + 1215, + 679, + 1200, + 679 + ], + "score": 0.59, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 958, + 305, + 1065, + 305, + 1065, + 332, + 958, + 332 + ], + "score": 0.59, + "latex": "\\mathcal { O } ( \\kappa ^ { 5 } \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 479, + 305, + 586, + 305, + 586, + 332, + 479, + 332 + ], + "score": 0.55, + "latex": "\\mathcal { O } ( \\kappa ^ { 5 } \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1377, + 1599, + 1396, + 1599, + 1396, + 1621, + 1377, + 1621 + ], + "score": 0.55, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 653, + 335, + 760, + 335, + 760, + 367, + 653, + 367 + ], + "score": 0.41, + "latex": "\\bar { \\mathcal { O } } ( \\kappa ^ { 9 } \\epsilon ^ { - 3 } )" + }, + { + "category_id": 13, + "poly": [ + 1258, + 300, + 1386, + 300, + 1386, + 372, + 1258, + 372 + ], + "score": 0.41, + "latex": "\\begin{array} { c } { { \\overline { { \\mathcal { O } ( \\kappa ^ { p } \\epsilon ^ { - \\frac { 3 } { 2 } } ) } } } } \\\\ { { \\widetilde { \\mathcal { O } } ( \\kappa ^ { p } \\epsilon ^ { - \\frac { 3 } { 2 } } ) } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 811, + 301, + 939, + 301, + 939, + 372, + 811, + 372 + ], + "score": 0.4, + "latex": "\\left| \\begin{array} { l } { \\mathcal { O } ( \\kappa ^ { p } \\epsilon ^ { - \\frac { 5 } { 2 } } ) } \\\\ { \\widetilde { \\mathcal { O } } ( \\kappa ^ { p } \\epsilon ^ { - \\frac { 5 } { 2 } } ) } \\end{array} \\right." + }, + { + "category_id": 13, + "poly": [ + 654, + 305, + 760, + 305, + 760, + 332, + 654, + 332 + ], + "score": 0.29, + "latex": "\\mathcal { O } ( \\kappa ^ { 6 } \\epsilon ^ { - 2 } )" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 984.0, + 605.0, + 984.0, + 605.0, + 1023.0, + 295.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2058.0, + 860.0, + 2058.0, + 860.0, + 2089.0, + 839.0, + 2089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 389.0, + 1406.0, + 389.0, + 1406.0, + 426.0, + 292.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 419.0, + 1103.0, + 419.0, + 1103.0, + 458.0, + 292.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 419.0, + 1333.0, + 419.0, + 1333.0, + 458.0, + 1119.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 419.0, + 1408.0, + 419.0, + 1408.0, + 458.0, + 1395.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 454.0, + 441.0, + 454.0, + 441.0, + 496.0, + 293.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 454.0, + 719.0, + 454.0, + 719.0, + 496.0, + 504.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 454.0, + 960.0, + 454.0, + 960.0, + 496.0, + 805.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 454.0, + 1382.0, + 454.0, + 1382.0, + 496.0, + 993.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 454.0, + 1408.0, + 454.0, + 1408.0, + 496.0, + 1402.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 487.0, + 573.0, + 487.0, + 573.0, + 524.0, + 294.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 594.0, + 487.0, + 967.0, + 487.0, + 967.0, + 524.0, + 594.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2091.0, + 838.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1317.0, + 1408.0, + 1317.0, + 1408.0, + 1353.0, + 295.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1349.0, + 1406.0, + 1349.0, + 1406.0, + 1385.0, + 294.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1376.0, + 1198.0, + 1376.0, + 1198.0, + 1417.0, + 292.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 1376.0, + 1408.0, + 1376.0, + 1408.0, + 1417.0, + 1215.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1406.0, + 729.0, + 1406.0, + 729.0, + 1446.0, + 294.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 1406.0, + 867.0, + 1406.0, + 867.0, + 1446.0, + 818.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 1406.0, + 1406.0, + 1406.0, + 1406.0, + 1446.0, + 955.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1438.0, + 1403.0, + 1438.0, + 1403.0, + 1474.0, + 294.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1468.0, + 1407.0, + 1468.0, + 1407.0, + 1506.0, + 292.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1497.0, + 805.0, + 1497.0, + 805.0, + 1541.0, + 290.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 1497.0, + 1407.0, + 1497.0, + 1407.0, + 1541.0, + 916.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1533.0, + 1405.0, + 1533.0, + 1405.0, + 1569.0, + 294.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1561.0, + 558.0, + 1561.0, + 558.0, + 1601.0, + 294.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 1561.0, + 918.0, + 1561.0, + 918.0, + 1601.0, + 647.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 1561.0, + 1407.0, + 1561.0, + 1407.0, + 1601.0, + 939.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1593.0, + 1376.0, + 1593.0, + 1376.0, + 1629.0, + 295.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 1593.0, + 1408.0, + 1593.0, + 1408.0, + 1629.0, + 1397.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1624.0, + 345.0, + 1624.0, + 345.0, + 1658.0, + 294.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1624.0, + 1407.0, + 1624.0, + 1407.0, + 1658.0, + 365.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1653.0, + 942.0, + 1653.0, + 942.0, + 1694.0, + 291.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 1653.0, + 1408.0, + 1653.0, + 1408.0, + 1694.0, + 1053.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1685.0, + 411.0, + 1685.0, + 411.0, + 1725.0, + 294.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 500.0, + 1685.0, + 1406.0, + 1685.0, + 1406.0, + 1725.0, + 500.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1717.0, + 1155.0, + 1717.0, + 1155.0, + 1752.0, + 294.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1090.0, + 1408.0, + 1090.0, + 1408.0, + 1125.0, + 295.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1121.0, + 1405.0, + 1121.0, + 1405.0, + 1155.0, + 295.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1152.0, + 1405.0, + 1152.0, + 1405.0, + 1186.0, + 295.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1181.0, + 1407.0, + 1181.0, + 1407.0, + 1218.0, + 293.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1211.0, + 1406.0, + 1211.0, + 1406.0, + 1247.0, + 292.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1244.0, + 1403.0, + 1244.0, + 1403.0, + 1274.0, + 296.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1273.0, + 943.0, + 1273.0, + 943.0, + 1307.0, + 295.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1762.0, + 1408.0, + 1762.0, + 1408.0, + 1799.0, + 293.0, + 1799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1794.0, + 1405.0, + 1794.0, + 1405.0, + 1828.0, + 294.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1824.0, + 1405.0, + 1824.0, + 1405.0, + 1858.0, + 294.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1853.0, + 1408.0, + 1853.0, + 1408.0, + 1892.0, + 292.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1883.0, + 1405.0, + 1883.0, + 1405.0, + 1923.0, + 292.0, + 1923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1914.0, + 1406.0, + 1914.0, + 1406.0, + 1951.0, + 292.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1941.0, + 297.0, + 1941.0, + 297.0, + 1983.0, + 292.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 1941.0, + 1265.0, + 1941.0, + 1265.0, + 1983.0, + 386.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 1941.0, + 1405.0, + 1941.0, + 1405.0, + 1983.0, + 1354.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1974.0, + 723.0, + 1974.0, + 723.0, + 2011.0, + 293.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 812.0, + 1974.0, + 1128.0, + 1974.0, + 1128.0, + 2011.0, + 812.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 1974.0, + 1404.0, + 1974.0, + 1404.0, + 2011.0, + 1190.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1040.0, + 1350.0, + 1040.0, + 1350.0, + 1083.0, + 295.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 560.0, + 1405.0, + 560.0, + 1405.0, + 596.0, + 340.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 590.0, + 1406.0, + 590.0, + 1406.0, + 627.0, + 394.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 623.0, + 1405.0, + 623.0, + 1405.0, + 656.0, + 395.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 651.0, + 1199.0, + 651.0, + 1199.0, + 687.0, + 394.0, + 687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 651.0, + 1405.0, + 651.0, + 1405.0, + 687.0, + 1216.0, + 687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 682.0, + 844.0, + 682.0, + 844.0, + 719.0, + 392.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 682.0, + 1293.0, + 682.0, + 1293.0, + 719.0, + 932.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 682.0, + 1407.0, + 682.0, + 1407.0, + 719.0, + 1404.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 717.0, + 890.0, + 717.0, + 890.0, + 750.0, + 395.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 758.0, + 1405.0, + 758.0, + 1405.0, + 796.0, + 343.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 790.0, + 1410.0, + 790.0, + 1410.0, + 826.0, + 394.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 818.0, + 1406.0, + 818.0, + 1406.0, + 858.0, + 393.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 853.0, + 1202.0, + 853.0, + 1202.0, + 886.0, + 395.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1218.0, + 853.0, + 1406.0, + 853.0, + 1406.0, + 886.0, + 1218.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 880.0, + 896.0, + 880.0, + 896.0, + 917.0, + 395.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 986.0, + 880.0, + 1406.0, + 880.0, + 1406.0, + 917.0, + 986.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 911.0, + 781.0, + 911.0, + 781.0, + 953.0, + 393.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 911.0, + 1081.0, + 911.0, + 1081.0, + 953.0, + 891.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 389.0, + 1406.0, + 389.0, + 1406.0, + 426.0, + 292.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 419.0, + 1103.0, + 419.0, + 1103.0, + 458.0, + 292.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 419.0, + 1333.0, + 419.0, + 1333.0, + 458.0, + 1119.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 419.0, + 1408.0, + 419.0, + 1408.0, + 458.0, + 1395.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 454.0, + 441.0, + 454.0, + 441.0, + 496.0, + 293.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 454.0, + 719.0, + 454.0, + 719.0, + 496.0, + 504.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 454.0, + 960.0, + 454.0, + 960.0, + 496.0, + 805.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 454.0, + 1382.0, + 454.0, + 1382.0, + 496.0, + 993.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 454.0, + 1408.0, + 454.0, + 1408.0, + 496.0, + 1402.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 487.0, + 573.0, + 487.0, + 573.0, + 524.0, + 294.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 594.0, + 487.0, + 967.0, + 487.0, + 967.0, + 524.0, + 594.0, + 524.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 368, + 1405, + 368, + 1405, + 645, + 297, + 645 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 202, + 1404, + 202, + 1404, + 356, + 298, + 356 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 656, + 1404, + 656, + 1404, + 781, + 297, + 781 + ], + "score": 0.977 + }, + { + "category_id": 5, + "poly": [ + 296, + 1769, + 876, + 1769, + 876, + 1901, + 296, + 1901 + ], + "score": 0.973, + "html": "
ALSETSGDASMD
batch size0(1)0(e-1)1
y-updateSGDSGDsubproblem
samplesO(kc-2)O(κ³-²)O(k³-2)
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1380, + 1407, + 1380, + 1407, + 1512, + 297, + 1512 + ], + "score": 0.972 + }, + { + "category_id": 5, + "poly": [ + 890, + 1770, + 1402, + 1770, + 1402, + 1901, + 890, + 1901 + ], + "score": 0.972, + "html": "
ALSETSCGDNASA
batch size0(1)0(1)0(1)
y-updateSGDSGDcorrection
samplesO(c-²)0(c-4)O(c-2)
" + }, + { + "category_id": 8, + "poly": [ + 523, + 1159, + 1167, + 1159, + 1167, + 1287, + 523, + 1287 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 296, + 888, + 1403, + 888, + 1403, + 952, + 296, + 952 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 291, + 1304, + 1407, + 1304, + 1407, + 1369, + 291, + 1369 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 297, + 1033, + 1400, + 1033, + 1400, + 1100, + 297, + 1100 + ], + "score": 0.947 + }, + { + "category_id": 0, + "poly": [ + 296, + 820, + 1234, + 820, + 1234, + 860, + 296, + 860 + ], + "score": 0.929 + }, + { + "category_id": 0, + "poly": [ + 298, + 977, + 524, + 977, + 524, + 1010, + 298, + 1010 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 290, + 1111, + 1377, + 1111, + 1377, + 1149, + 290, + 1149 + ], + "score": 0.92 + }, + { + "category_id": 1, + "poly": [ + 301, + 1515, + 1356, + 1515, + 1356, + 1550, + 301, + 1550 + ], + "score": 0.904 + }, + { + "category_id": 2, + "poly": [ + 840, + 2061, + 859, + 2061, + 859, + 2085, + 840, + 2085 + ], + "score": 0.785 + }, + { + "category_id": 6, + "poly": [ + 296, + 1918, + 852, + 1918, + 852, + 2013, + 296, + 2013 + ], + "score": 0.683 + }, + { + "category_id": 1, + "poly": [ + 298, + 1568, + 1400, + 1568, + 1400, + 1633, + 298, + 1633 + ], + "score": 0.548 + }, + { + "category_id": 1, + "poly": [ + 298, + 1638, + 1405, + 1638, + 1405, + 1736, + 298, + 1736 + ], + "score": 0.5 + }, + { + "category_id": 1, + "poly": [ + 888, + 1918, + 1443, + 1918, + 1443, + 2011, + 888, + 2011 + ], + "score": 0.464 + }, + { + "category_id": 1, + "poly": [ + 296, + 1918, + 852, + 1918, + 852, + 2013, + 296, + 2013 + ], + "score": 0.215 + }, + { + "category_id": 7, + "poly": [ + 888, + 1918, + 1443, + 1918, + 1443, + 2011, + 888, + 2011 + ], + "score": 0.156 + }, + { + "category_id": 13, + "poly": [ + 1212, + 1110, + 1344, + 1110, + 1344, + 1150, + 1212, + 1150 + ], + "score": 0.94, + "latex": "\\nabla _ { x y } ^ { 2 } g \\left( x , y \\right)" + }, + { + "category_id": 13, + "poly": [ + 466, + 1111, + 598, + 1111, + 598, + 1150, + 466, + 1150 + ], + "score": 0.94, + "latex": "\\nabla _ { y y } ^ { 2 } g \\big ( x , y \\big )" + }, + { + "category_id": 14, + "poly": [ + 523, + 1156, + 1175, + 1156, + 1175, + 1286, + 523, + 1286 + ], + "score": 0.94, + "latex": "\\nabla _ { x y } ^ { 2 } g ( x , y ) : = \\left[ \\begin{array} { l l l } { \\frac { \\partial ^ { 2 } } { \\partial x _ { 1 } \\partial y _ { 1 } } g ( x , y ) } & { \\cdot \\cdot \\cdot } & { \\frac { \\partial ^ { 2 } } { \\partial x _ { 1 } \\partial y _ { d ^ { \\prime } } } g ( x , y ) } \\\\ & { \\cdot \\cdot \\cdot } \\\\ { \\frac { \\partial ^ { 2 } } { \\partial x _ { d } \\partial y _ { 1 } } g ( x , y ) } & { \\cdot \\cdot \\cdot } & { \\frac { \\partial ^ { 2 } } { \\partial x _ { d } \\partial y _ { d ^ { \\prime } } } g ( x , y ) } \\end{array} \\right] ." + }, + { + "category_id": 13, + "poly": [ + 1284, + 459, + 1371, + 459, + 1371, + 494, + 1284, + 494 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 648, + 1600, + 715, + 1600, + 715, + 1634, + 648, + 1634 + ], + "score": 0.93, + "latex": "y ^ { \\ast } ( x )" + }, + { + "category_id": 13, + "poly": [ + 717, + 551, + 804, + 551, + 804, + 585, + 717, + 585 + ], + "score": 0.92, + "latex": "\\bar { \\mathcal { O } } \\bar { ( } \\epsilon ^ { - 2 } \\bar { ) }" + }, + { + "category_id": 13, + "poly": [ + 705, + 1064, + 986, + 1064, + 986, + 1099, + 705, + 1099 + ], + "score": 0.92, + "latex": "g ( x , y ) : = \\mathbb { E } _ { \\phi } [ g ( x , y ; \\phi ) ]" + }, + { + "category_id": 13, + "poly": [ + 298, + 1667, + 443, + 1667, + 443, + 1702, + 298, + 1702 + ], + "score": 0.92, + "latex": "\\nabla ^ { 2 } g ( x , \\mathbf { \\bar { y } } , \\phi )" + }, + { + "category_id": 13, + "poly": [ + 461, + 1865, + 567, + 1865, + 567, + 1896, + 461, + 1896 + ], + "score": 0.92, + "latex": "\\underline { { \\boldsymbol { O } ( \\kappa ^ { 3 } \\epsilon ^ { - 2 } ) } }" + }, + { + "category_id": 13, + "poly": [ + 600, + 1865, + 706, + 1865, + 706, + 1896, + 600, + 1896 + ], + "score": 0.92, + "latex": "\\frac { \\mathcal { O } ( \\kappa ^ { 3 } \\epsilon ^ { - 2 } ) } { \\mathcal { O } ( \\kappa ^ { 3 } \\epsilon ^ { - 2 } ) }" + }, + { + "category_id": 13, + "poly": [ + 1274, + 1983, + 1334, + 1983, + 1334, + 2012, + 1274, + 2012 + ], + "score": 0.92, + "latex": "F ( x )" + }, + { + "category_id": 13, + "poly": [ + 1038, + 1064, + 1317, + 1064, + 1317, + 1099, + 1038, + 1099 + ], + "score": 0.91, + "latex": "f ( x , y ) : = \\mathbb { E } _ { \\xi } [ f ( x , y ; \\xi ) ]" + }, + { + "category_id": 13, + "poly": [ + 757, + 1982, + 817, + 1982, + 817, + 2013, + 757, + 2013 + ], + "score": 0.91, + "latex": "F ( x )" + }, + { + "category_id": 13, + "poly": [ + 1167, + 1865, + 1247, + 1865, + 1247, + 1894, + 1167, + 1894 + ], + "score": 0.91, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 4 } )" + }, + { + "category_id": 13, + "poly": [ + 975, + 1515, + 1057, + 1515, + 1057, + 1549, + 975, + 1549 + ], + "score": 0.91, + "latex": "g ( x , y )" + }, + { + "category_id": 13, + "poly": [ + 1054, + 1864, + 1134, + 1864, + 1134, + 1894, + 1054, + 1894 + ], + "score": 0.91, + "latex": "\\overline { { \\mathcal { O } ( \\epsilon ^ { - 2 } ) } }" + }, + { + "category_id": 13, + "poly": [ + 1223, + 1569, + 1396, + 1569, + 1396, + 1602, + 1223, + 1602 + ], + "score": 0.9, + "latex": "f ( x , y ) , g ( x , y )" + }, + { + "category_id": 13, + "poly": [ + 1250, + 1602, + 1398, + 1602, + 1398, + 1634, + 1250, + 1634 + ], + "score": 0.9, + "latex": "\\kappa : = \\ell _ { g , 1 } / \\mu _ { g }" + }, + { + "category_id": 13, + "poly": [ + 947, + 1381, + 1128, + 1381, + 1128, + 1414, + 947, + 1414 + ], + "score": 0.9, + "latex": "f , \\nabla f , \\nabla g , \\nabla ^ { 2 } g" + }, + { + "category_id": 13, + "poly": [ + 383, + 1035, + 432, + 1035, + 432, + 1068, + 383, + 1068 + ], + "score": 0.9, + "latex": "\\| \\cdot \\|" + }, + { + "category_id": 13, + "poly": [ + 614, + 1806, + 692, + 1806, + 692, + 1835, + 614, + 1835 + ], + "score": 0.89, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 1180, + 1807, + 1234, + 1807, + 1234, + 1834, + 1180, + 1834 + ], + "score": 0.89, + "latex": "\\mathcal { O } ( 1 )" + }, + { + "category_id": 13, + "poly": [ + 1254, + 1415, + 1403, + 1415, + 1403, + 1446, + 1254, + 1446 + ], + "score": 0.89, + "latex": "\\parallel f ( x _ { 1 } , y _ { 1 } ) -" + }, + { + "category_id": 13, + "poly": [ + 1292, + 1864, + 1371, + 1864, + 1371, + 1894, + 1292, + 1894 + ], + "score": 0.89, + "latex": "\\overline { { \\mathcal { O } ( \\epsilon ^ { - 2 } ) } }" + }, + { + "category_id": 13, + "poly": [ + 1304, + 1807, + 1359, + 1807, + 1359, + 1834, + 1304, + 1834 + ], + "score": 0.89, + "latex": "\\mathcal { O } ( 1 )" + }, + { + "category_id": 13, + "poly": [ + 1110, + 1637, + 1241, + 1637, + 1241, + 1672, + 1110, + 1672 + ], + "score": 0.88, + "latex": "\\nabla f ( x , y ; \\xi )" + }, + { + "category_id": 13, + "poly": [ + 583, + 1036, + 610, + 1036, + 610, + 1065, + 583, + 1065 + ], + "score": 0.87, + "latex": "\\ell _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1352, + 1384, + 1399, + 1384, + 1399, + 1415, + 1352, + 1415 + ], + "score": 0.87, + "latex": "\\ell _ { f , 0 } ." + }, + { + "category_id": 13, + "poly": [ + 297, + 1414, + 450, + 1414, + 450, + 1446, + 297, + 1446 + ], + "score": 0.87, + "latex": "\\ell _ { f , 1 } , \\ell _ { g , 1 } , \\ell _ { g , 2 }" + }, + { + "category_id": 13, + "poly": [ + 767, + 1668, + 872, + 1668, + 872, + 1702, + 767, + 1702 + ], + "score": 0.87, + "latex": "\\nabla f ( x , y )" + }, + { + "category_id": 13, + "poly": [ + 487, + 1808, + 541, + 1808, + 541, + 1835, + 487, + 1835 + ], + "score": 0.87, + "latex": "\\mathcal { O } ( 1 )" + }, + { + "category_id": 13, + "poly": [ + 636, + 1477, + 1172, + 1477, + 1172, + 1511, + 636, + 1511 + ], + "score": 0.86, + "latex": "\\begin{array} { r } { \\| \\nabla ^ { 2 } g ( x _ { 1 } , y _ { 1 } ) - \\nabla ^ { 2 } g ( x _ { 2 } , y _ { 2 } ) \\| \\le \\ell _ { g , 2 } \\| z _ { 1 } - z _ { 2 } \\| . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1067, + 1807, + 1121, + 1807, + 1121, + 1834, + 1067, + 1834 + ], + "score": 0.86, + "latex": "\\mathcal { O } ( 1 )" + }, + { + "category_id": 13, + "poly": [ + 746, + 1864, + 852, + 1864, + 852, + 1896, + 746, + 1896 + ], + "score": 0.86, + "latex": "\\frac { \\boldsymbol { \\mathcal { O } } ( \\kappa ^ { 3 } \\epsilon ^ { - 2 } ) } { \\boldsymbol { \\mathcal { O } } ( \\kappa ^ { 3 } \\epsilon ^ { - 2 } ) }" + }, + { + "category_id": 13, + "poly": [ + 1086, + 1519, + 1118, + 1519, + 1118, + 1550, + 1086, + 1550 + ], + "score": 0.85, + "latex": "\\mu _ { g }" + }, + { + "category_id": 13, + "poly": [ + 1264, + 1639, + 1398, + 1639, + 1398, + 1672, + 1264, + 1672 + ], + "score": 0.85, + "latex": "\\nabla g ( x , y ; \\phi )" + }, + { + "category_id": 13, + "poly": [ + 989, + 1415, + 1143, + 1415, + 1143, + 1446, + 989, + 1446 + ], + "score": 0.83, + "latex": "z _ { 2 } : = [ x _ { 2 } ; y _ { 2 } ]" + }, + { + "category_id": 13, + "poly": [ + 877, + 1119, + 895, + 1119, + 895, + 1146, + 877, + 1146 + ], + "score": 0.82, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 1068, + 1119, + 1086, + 1119, + 1086, + 1146, + 1068, + 1146 + ], + "score": 0.82, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 887, + 1668, + 991, + 1668, + 991, + 1702, + 887, + 1702 + ], + "score": 0.82, + "latex": "\\nabla g ( x , y )" + }, + { + "category_id": 13, + "poly": [ + 700, + 1520, + 719, + 1520, + 719, + 1548, + 700, + 1548 + ], + "score": 0.8, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 1005, + 1667, + 1122, + 1667, + 1122, + 1702, + 1005, + 1702 + ], + "score": 0.78, + "latex": "\\nabla ^ { 2 } g ( x , y )" + }, + { + "category_id": 13, + "poly": [ + 823, + 1414, + 978, + 1414, + 978, + 1445, + 823, + 1445 + ], + "score": 0.69, + "latex": "z _ { 1 } : = [ x _ { 1 } ; y _ { 1 } ]" + }, + { + "category_id": 13, + "poly": [ + 750, + 1520, + 768, + 1520, + 768, + 1548, + 750, + 1548 + ], + "score": 0.69, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 912, + 1839, + 928, + 1839, + 928, + 1862, + 912, + 1862 + ], + "score": 0.67, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 527, + 1987, + 541, + 1987, + 541, + 2007, + 527, + 2007 + ], + "score": 0.67, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 693, + 1697, + 741, + 1697, + 741, + 1736, + 693, + 1736 + ], + "score": 0.63, + "latex": "\\sigma _ { g , 2 } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 590, + 1697, + 681, + 1697, + 681, + 1737, + 590, + 1737 + ], + "score": 0.62, + "latex": "\\sigma _ { f } ^ { 2 } , \\sigma _ { g , 1 } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1043, + 1985, + 1057, + 1985, + 1057, + 2006, + 1043, + 2006 + ], + "score": 0.61, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 319, + 1842, + 334, + 1842, + 334, + 1863, + 319, + 1863 + ], + "score": 0.61, + "latex": "_ y" + }, + { + "category_id": 13, + "poly": [ + 298, + 1445, + 1178, + 1445, + 1178, + 1479, + 298, + 1479 + ], + "score": 0.6, + "latex": "\\begin{array} { r c l } { f ( x _ { 2 } , y _ { 2 } ) \\| ^ { - } \\le } & { \\ell _ { f , 0 } \\| z _ { 1 } - z _ { 2 } \\| , \\| \\nabla f ( x _ { 1 } , y _ { 1 } ) - \\nabla f ( x _ { 2 } , y _ { 2 } ) \\| } & { \\le } & { \\ell _ { f , 1 } \\| z _ { 1 } - x _ { 2 } \\| , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 946, + 1521, + 965, + 1521, + 965, + 1543, + 946, + 1543 + ], + "score": 0.54, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 1332, + 1522, + 1349, + 1522, + 1349, + 1548, + 1332, + 1548 + ], + "score": 0.54, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 647, + 1445, + 1407, + 1445, + 1407, + 1477, + 647, + 1477 + ], + "score": 0.51, + "latex": "\\begin{array} { r c l } { \\displaystyle \\| \\nabla f ( x _ { 1 } , y _ { 1 } ) - \\nabla f ( x _ { 2 } , y _ { 2 } ) \\| } & { \\leq } & { \\ell _ { f , 1 } \\| z _ { 1 } - z _ { 2 } \\| , \\| \\nabla g ( x _ { 1 } , y _ { 1 } ) - } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 298, + 1478, + 629, + 1478, + 629, + 1511, + 298, + 1511 + ], + "score": 0.43, + "latex": "\\nabla g ( x _ { 2 } , y _ { 2 } ) \\| \\leq \\ell _ { g , 1 } \\| z _ { 1 } - z _ { 2 } \\|" + }, + { + "category_id": 13, + "poly": [ + 793, + 1808, + 806, + 1808, + 806, + 1830, + 793, + 1830 + ], + "score": 0.35, + "latex": "/" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 818.0, + 1241.0, + 818.0, + 1241.0, + 864.0, + 288.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 973.0, + 526.0, + 973.0, + 526.0, + 1014.0, + 292.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 863.0, + 2058.0, + 863.0, + 2091.0, + 838.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1918.0, + 853.0, + 1918.0, + 853.0, + 1952.0, + 294.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1948.0, + 849.0, + 1948.0, + 849.0, + 1983.0, + 294.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1978.0, + 526.0, + 1978.0, + 526.0, + 2015.0, + 294.0, + 2015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 1978.0, + 756.0, + 1978.0, + 756.0, + 2015.0, + 542.0, + 2015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 1978.0, + 827.0, + 1978.0, + 827.0, + 2015.0, + 818.0, + 2015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 1915.0, + 1446.0, + 1915.0, + 1446.0, + 1952.0, + 886.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 1945.0, + 1445.0, + 1945.0, + 1445.0, + 1985.0, + 888.0, + 1985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 1978.0, + 1042.0, + 1978.0, + 1042.0, + 2016.0, + 887.0, + 2016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.0, + 1978.0, + 1273.0, + 1978.0, + 1273.0, + 2016.0, + 1058.0, + 2016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1335.0, + 1978.0, + 1347.0, + 1978.0, + 1347.0, + 2016.0, + 1335.0, + 2016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 368.0, + 1405.0, + 368.0, + 1405.0, + 404.0, + 295.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 398.0, + 1405.0, + 398.0, + 1405.0, + 436.0, + 292.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 427.0, + 1408.0, + 427.0, + 1408.0, + 470.0, + 291.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 458.0, + 1283.0, + 458.0, + 1283.0, + 496.0, + 292.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1372.0, + 458.0, + 1407.0, + 458.0, + 1407.0, + 496.0, + 1372.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 491.0, + 1407.0, + 491.0, + 1407.0, + 527.0, + 295.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 520.0, + 1408.0, + 520.0, + 1408.0, + 560.0, + 294.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 547.0, + 716.0, + 547.0, + 716.0, + 590.0, + 291.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 547.0, + 1410.0, + 547.0, + 1410.0, + 590.0, + 805.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 581.0, + 1406.0, + 581.0, + 1406.0, + 618.0, + 295.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 611.0, + 1349.0, + 611.0, + 1349.0, + 648.0, + 292.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 205.0, + 1405.0, + 205.0, + 1405.0, + 238.0, + 294.0, + 238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 230.0, + 1408.0, + 230.0, + 1408.0, + 272.0, + 293.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 263.0, + 1406.0, + 263.0, + 1406.0, + 300.0, + 294.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 294.0, + 1406.0, + 294.0, + 1406.0, + 331.0, + 294.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 323.0, + 1041.0, + 323.0, + 1041.0, + 360.0, + 293.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 658.0, + 1405.0, + 658.0, + 1405.0, + 690.0, + 296.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 687.0, + 1405.0, + 687.0, + 1405.0, + 721.0, + 294.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 719.0, + 1405.0, + 719.0, + 1405.0, + 754.0, + 292.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 749.0, + 1151.0, + 749.0, + 1151.0, + 782.0, + 295.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1373.0, + 946.0, + 1373.0, + 946.0, + 1421.0, + 293.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 1373.0, + 1351.0, + 1373.0, + 1351.0, + 1421.0, + 1129.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1400.0, + 1373.0, + 1409.0, + 1373.0, + 1409.0, + 1421.0, + 1400.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 1412.0, + 822.0, + 1412.0, + 822.0, + 1450.0, + 451.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 1412.0, + 988.0, + 1412.0, + 988.0, + 1450.0, + 979.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1144.0, + 1412.0, + 1253.0, + 1412.0, + 1253.0, + 1450.0, + 1144.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1473.0, + 297.0, + 1473.0, + 297.0, + 1514.0, + 294.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 630.0, + 1473.0, + 635.0, + 1473.0, + 635.0, + 1514.0, + 630.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 1473.0, + 1183.0, + 1473.0, + 1183.0, + 1514.0, + 1173.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 888.0, + 1405.0, + 888.0, + 1405.0, + 924.0, + 294.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 919.0, + 608.0, + 919.0, + 608.0, + 955.0, + 294.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1302.0, + 1410.0, + 1302.0, + 1410.0, + 1342.0, + 293.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1331.0, + 392.0, + 1331.0, + 392.0, + 1374.0, + 290.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1031.0, + 382.0, + 1031.0, + 382.0, + 1069.0, + 293.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 433.0, + 1031.0, + 582.0, + 1031.0, + 582.0, + 1069.0, + 433.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 1031.0, + 1404.0, + 1031.0, + 1404.0, + 1069.0, + 611.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1060.0, + 704.0, + 1060.0, + 704.0, + 1102.0, + 292.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 987.0, + 1060.0, + 1037.0, + 1060.0, + 1037.0, + 1102.0, + 987.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1318.0, + 1060.0, + 1327.0, + 1060.0, + 1327.0, + 1102.0, + 1318.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1103.0, + 465.0, + 1103.0, + 465.0, + 1154.0, + 292.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 1103.0, + 876.0, + 1103.0, + 876.0, + 1154.0, + 599.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 1103.0, + 1067.0, + 1103.0, + 1067.0, + 1154.0, + 896.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1087.0, + 1103.0, + 1211.0, + 1103.0, + 1211.0, + 1154.0, + 1087.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1345.0, + 1103.0, + 1381.0, + 1103.0, + 1381.0, + 1154.0, + 1345.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1510.0, + 699.0, + 1510.0, + 699.0, + 1556.0, + 294.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 1510.0, + 749.0, + 1510.0, + 749.0, + 1556.0, + 720.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 1510.0, + 945.0, + 1510.0, + 945.0, + 1556.0, + 769.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 1510.0, + 974.0, + 1510.0, + 974.0, + 1556.0, + 966.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.0, + 1510.0, + 1085.0, + 1510.0, + 1085.0, + 1556.0, + 1058.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 1510.0, + 1331.0, + 1510.0, + 1331.0, + 1556.0, + 1119.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1350.0, + 1510.0, + 1362.0, + 1510.0, + 1362.0, + 1556.0, + 1350.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1567.0, + 1222.0, + 1567.0, + 1222.0, + 1607.0, + 294.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 1567.0, + 1406.0, + 1567.0, + 1406.0, + 1607.0, + 1397.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1589.0, + 647.0, + 1589.0, + 647.0, + 1643.0, + 289.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 1589.0, + 1249.0, + 1589.0, + 1249.0, + 1643.0, + 716.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 1589.0, + 1408.0, + 1589.0, + 1408.0, + 1643.0, + 1399.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1633.0, + 1109.0, + 1633.0, + 1109.0, + 1675.0, + 293.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 1633.0, + 1263.0, + 1633.0, + 1263.0, + 1675.0, + 1242.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 1633.0, + 1407.0, + 1633.0, + 1407.0, + 1675.0, + 1399.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 1665.0, + 766.0, + 1665.0, + 766.0, + 1706.0, + 444.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 1665.0, + 886.0, + 1665.0, + 886.0, + 1706.0, + 873.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.0, + 1665.0, + 1004.0, + 1665.0, + 1004.0, + 1706.0, + 992.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 1665.0, + 1407.0, + 1665.0, + 1407.0, + 1706.0, + 1123.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1694.0, + 589.0, + 1694.0, + 589.0, + 1745.0, + 291.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 1694.0, + 692.0, + 1694.0, + 692.0, + 1745.0, + 682.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 1694.0, + 898.0, + 1694.0, + 898.0, + 1745.0, + 742.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 1915.0, + 1446.0, + 1915.0, + 1446.0, + 1952.0, + 886.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 1945.0, + 1445.0, + 1945.0, + 1445.0, + 1985.0, + 888.0, + 1985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 1978.0, + 1042.0, + 1978.0, + 1042.0, + 2016.0, + 887.0, + 2016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.0, + 1978.0, + 1273.0, + 1978.0, + 1273.0, + 2016.0, + 1058.0, + 2016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1335.0, + 1978.0, + 1347.0, + 1978.0, + 1347.0, + 2016.0, + 1335.0, + 2016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1918.0, + 853.0, + 1918.0, + 853.0, + 1952.0, + 294.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1948.0, + 849.0, + 1948.0, + 849.0, + 1983.0, + 294.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1978.0, + 526.0, + 1978.0, + 526.0, + 2015.0, + 294.0, + 2015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 1978.0, + 756.0, + 1978.0, + 756.0, + 2015.0, + 542.0, + 2015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 1978.0, + 827.0, + 1978.0, + 827.0, + 2015.0, + 818.0, + 2015.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1116, + 1405, + 1116, + 1405, + 1221, + 297, + 1221 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 684, + 1402, + 684, + 1402, + 813, + 297, + 813 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 296, + 1310, + 716, + 1310, + 716, + 1433, + 296, + 1433 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 297, + 1446, + 718, + 1446, + 718, + 1629, + 297, + 1629 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 298, + 340, + 1405, + 340, + 1405, + 436, + 298, + 436 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 298, + 446, + 1403, + 446, + 1403, + 541, + 298, + 541 + ], + "score": 0.96 + }, + { + "category_id": 8, + "poly": [ + 515, + 1018, + 1184, + 1018, + 1184, + 1108, + 515, + 1108 + ], + "score": 0.958 + }, + { + "category_id": 8, + "poly": [ + 314, + 1861, + 1335, + 1861, + 1335, + 2002, + 314, + 2002 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 300, + 826, + 1402, + 826, + 1402, + 890, + 300, + 890 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 289, + 1627, + 1401, + 1627, + 1401, + 1690, + 289, + 1690 + ], + "score": 0.934 + }, + { + "category_id": 8, + "poly": [ + 457, + 897, + 1239, + 897, + 1239, + 946, + 457, + 946 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 296, + 965, + 995, + 965, + 995, + 1008, + 296, + 1008 + ], + "score": 0.924 + }, + { + "category_id": 1, + "poly": [ + 295, + 1790, + 1408, + 1790, + 1408, + 1857, + 295, + 1857 + ], + "score": 0.923 + }, + { + "category_id": 1, + "poly": [ + 747, + 1366, + 1402, + 1366, + 1402, + 1587, + 747, + 1587 + ], + "score": 0.92 + }, + { + "category_id": 0, + "poly": [ + 297, + 1253, + 847, + 1253, + 847, + 1286, + 297, + 1286 + ], + "score": 0.919 + }, + { + "category_id": 8, + "poly": [ + 610, + 283, + 1089, + 283, + 1089, + 327, + 610, + 327 + ], + "score": 0.918 + }, + { + "category_id": 1, + "poly": [ + 295, + 202, + 1165, + 202, + 1165, + 235, + 295, + 235 + ], + "score": 0.905 + }, + { + "category_id": 8, + "poly": [ + 430, + 1695, + 1248, + 1695, + 1248, + 1736, + 430, + 1736 + ], + "score": 0.895 + }, + { + "category_id": 9, + "poly": [ + 1353, + 243, + 1400, + 243, + 1400, + 273, + 1353, + 273 + ], + "score": 0.893 + }, + { + "category_id": 1, + "poly": [ + 294, + 545, + 1002, + 545, + 1002, + 577, + 294, + 577 + ], + "score": 0.888 + }, + { + "category_id": 8, + "poly": [ + 609, + 238, + 1049, + 238, + 1049, + 279, + 609, + 279 + ], + "score": 0.887 + }, + { + "category_id": 9, + "poly": [ + 1352, + 289, + 1400, + 289, + 1400, + 318, + 1352, + 318 + ], + "score": 0.884 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1749, + 1400, + 1749, + 1400, + 1778, + 1352, + 1778 + ], + "score": 0.877 + }, + { + "category_id": 9, + "poly": [ + 1354, + 1702, + 1400, + 1702, + 1400, + 1731, + 1354, + 1731 + ], + "score": 0.875 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1047, + 1400, + 1047, + 1400, + 1077, + 1366, + 1077 + ], + "score": 0.875 + }, + { + "category_id": 8, + "poly": [ + 344, + 585, + 1315, + 585, + 1315, + 630, + 344, + 630 + ], + "score": 0.867 + }, + { + "category_id": 9, + "poly": [ + 1365, + 906, + 1400, + 906, + 1400, + 937, + 1365, + 937 + ], + "score": 0.865 + }, + { + "category_id": 9, + "poly": [ + 1366, + 594, + 1401, + 594, + 1401, + 623, + 1366, + 623 + ], + "score": 0.853 + }, + { + "category_id": 0, + "poly": [ + 736, + 1321, + 1397, + 1321, + 1397, + 1354, + 736, + 1354 + ], + "score": 0.851 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1940, + 1401, + 1940, + 1401, + 1972, + 1352, + 1972 + ], + "score": 0.831 + }, + { + "category_id": 1, + "poly": [ + 327, + 635, + 1332, + 635, + 1332, + 668, + 327, + 668 + ], + "score": 0.819 + }, + { + "category_id": 2, + "poly": [ + 840, + 2061, + 859, + 2061, + 859, + 2085, + 840, + 2085 + ], + "score": 0.752 + }, + { + "category_id": 8, + "poly": [ + 442, + 1741, + 666, + 1741, + 666, + 1784, + 442, + 1784 + ], + "score": 0.214 + }, + { + "category_id": 13, + "poly": [ + 768, + 962, + 951, + 962, + 951, + 1009, + 768, + 1009 + ], + "score": 0.94, + "latex": "\\left[ \\nabla _ { y y } ^ { 2 } g ( x , y ) \\right] ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 569, + 1119, + 725, + 1119, + 725, + 1154, + 569, + 1154 + ], + "score": 0.94, + "latex": "\\{ 1 , 2 , \\ldots , N \\}" + }, + { + "category_id": 14, + "poly": [ + 515, + 1015, + 1185, + 1015, + 1185, + 1110, + 515, + 1110 + ], + "score": 0.94, + "latex": "\\left[ \\nabla _ { y y } ^ { 2 } g ( x , y ) \\right] ^ { - 1 } \\approx \\Big [ \\frac { N } { \\ell _ { g , 1 } } \\prod _ { n = 1 } ^ { N ^ { \\prime } } \\Big ( I - \\frac { 1 } { \\ell _ { g , 1 } } \\nabla _ { y y } ^ { 2 } g ( x , y ; \\phi _ { ( n ) } ) \\Big ) \\Big ]" + }, + { + "category_id": 13, + "poly": [ + 685, + 778, + 769, + 778, + 769, + 811, + 685, + 811 + ], + "score": 0.93, + "latex": "\\nabla F ( x )" + }, + { + "category_id": 13, + "poly": [ + 936, + 686, + 1020, + 686, + 1020, + 719, + 936, + 719 + ], + "score": 0.93, + "latex": "\\nabla F ( x )" + }, + { + "category_id": 13, + "poly": [ + 1179, + 827, + 1263, + 827, + 1263, + 861, + 1179, + 861 + ], + "score": 0.93, + "latex": "\\nabla F ( x )" + }, + { + "category_id": 13, + "poly": [ + 940, + 776, + 1118, + 776, + 1118, + 815, + 940, + 815 + ], + "score": 0.93, + "latex": "\\nabla _ { y y } ^ { 2 } g ( x , y ^ { * } ( x ) )" + }, + { + "category_id": 14, + "poly": [ + 309, + 1855, + 1342, + 1855, + 1342, + 2004, + 309, + 2004 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } & { \\boldsymbol { h } _ { f } ^ { k } : = \\nabla _ { \\boldsymbol { x } } f ( \\boldsymbol { x } ^ { k } , \\boldsymbol { y } ^ { k + 1 } ; \\boldsymbol { \\xi } ^ { k } ) } \\\\ & { \\qquad - \\nabla _ { \\boldsymbol { x } \\boldsymbol { y } } ^ { 2 } g ( \\boldsymbol { x } ^ { k } , \\boldsymbol { y } ; \\phi _ { ( 0 ) } ^ { k } ) \\Bigl [ \\frac { N } { \\ell _ { g , 1 } } \\displaystyle \\prod _ { n = 1 } ^ { N ^ { \\prime } } \\left( I - \\frac { 1 } { \\ell _ { g , 1 } } \\nabla _ { \\boldsymbol { y } \\boldsymbol { y } } ^ { 2 } g ( \\boldsymbol { x } ^ { k } , \\boldsymbol { y } ^ { k + 1 } ; \\phi _ { ( n ) } ^ { k } ) \\right) \\Bigr ] \\nabla _ { \\boldsymbol { y } } f ( \\boldsymbol { x } ^ { k } , \\boldsymbol { y } ^ { k + 1 } ; \\boldsymbol { \\xi } ^ { k } ) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 662, + 717, + 746, + 717, + 746, + 750, + 662, + 750 + ], + "score": 0.92, + "latex": "\\nabla F ( x )" + }, + { + "category_id": 13, + "poly": [ + 717, + 402, + 801, + 402, + 801, + 436, + 717, + 436 + ], + "score": 0.92, + "latex": "\\nabla F ( x )" + }, + { + "category_id": 13, + "poly": [ + 518, + 858, + 585, + 858, + 585, + 891, + 518, + 891 + ], + "score": 0.92, + "latex": "y ^ { * } ( x )" + }, + { + "category_id": 13, + "poly": [ + 533, + 778, + 617, + 778, + 617, + 811, + 533, + 811 + ], + "score": 0.92, + "latex": "\\dot { \\nabla } F ( { \\boldsymbol { x } } )" + }, + { + "category_id": 13, + "poly": [ + 758, + 858, + 825, + 858, + 825, + 891, + 758, + 891 + ], + "score": 0.92, + "latex": "y ^ { * } ( x )" + }, + { + "category_id": 13, + "poly": [ + 935, + 1789, + 1241, + 1789, + 1241, + 1830, + 935, + 1830 + ], + "score": 0.92, + "latex": "h _ { g } ^ { k , t } : = \\nabla _ { y } g ( x ^ { k } , y ^ { k , t } ; \\phi ^ { k , t } )" + }, + { + "category_id": 13, + "poly": [ + 451, + 634, + 536, + 634, + 536, + 668, + 451, + 668 + ], + "score": 0.92, + "latex": "\\nabla F ( x )" + }, + { + "category_id": 13, + "poly": [ + 589, + 634, + 656, + 634, + 656, + 668, + 589, + 668 + ], + "score": 0.91, + "latex": "y ^ { * } ( x )" + }, + { + "category_id": 13, + "poly": [ + 505, + 748, + 572, + 748, + 572, + 780, + 505, + 780 + ], + "score": 0.91, + "latex": "y ^ { * } ( x )" + }, + { + "category_id": 13, + "poly": [ + 1054, + 1153, + 1238, + 1153, + 1238, + 1196, + 1054, + 1196 + ], + "score": 0.91, + "latex": "\\left[ \\nabla _ { y y } ^ { 2 } g ( x , y ) \\right] ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 298, + 747, + 365, + 747, + 365, + 781, + 298, + 781 + ], + "score": 0.91, + "latex": "y ^ { \\ast } ( x )" + }, + { + "category_id": 14, + "poly": [ + 607, + 235, + 1091, + 235, + 1091, + 332, + 607, + 332 + ], + "score": 0.91, + "latex": "\\begin{array} { r l } & { \\mathbb { E } _ { \\xi } [ \\| \\nabla f ( x , y ; \\xi ) \\| ^ { 2 } ] \\le \\ell _ { f , 0 } ^ { 2 } + \\sigma _ { f } ^ { 2 } : = C _ { f } ^ { 2 } } \\\\ & { \\mathbb { E } _ { \\phi } [ \\| \\nabla ^ { 2 } g ( x , y ; \\phi ) \\| ^ { 2 } ] \\le \\ell _ { g , 1 } ^ { 2 } + \\sigma _ { g , 2 } ^ { 2 } : = C _ { g } ^ { 2 } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1104, + 635, + 1189, + 635, + 1189, + 668, + 1104, + 668 + ], + "score": 0.91, + "latex": "L _ { F } , L _ { y }" + }, + { + "category_id": 13, + "poly": [ + 1091, + 1369, + 1193, + 1369, + 1193, + 1403, + 1091, + 1403 + ], + "score": 0.91, + "latex": "\\{ \\alpha _ { k } , \\beta _ { k } \\}" + }, + { + "category_id": 13, + "poly": [ + 1342, + 480, + 1403, + 480, + 1403, + 512, + 1342, + 512 + ], + "score": 0.9, + "latex": "F ( x )" + }, + { + "category_id": 13, + "poly": [ + 586, + 1568, + 664, + 1568, + 664, + 1596, + 586, + 1596 + ], + "score": 0.9, + "latex": "T = 1" + }, + { + "category_id": 13, + "poly": [ + 1008, + 1115, + 1206, + 1115, + 1206, + 1153, + 1008, + 1153 + ], + "score": 0.9, + "latex": "\\{ \\phi ^ { ( 1 ) } , \\dots , \\phi ^ { ( N ^ { \\prime } ) } \\}" + }, + { + "category_id": 13, + "poly": [ + 471, + 1536, + 503, + 1536, + 503, + 1570, + 471, + 1570 + ], + "score": 0.9, + "latex": "y ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 516, + 1657, + 547, + 1657, + 547, + 1690, + 516, + 1690 + ], + "score": 0.9, + "latex": "y ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 433, + 1657, + 465, + 1657, + 465, + 1686, + 433, + 1686 + ], + "score": 0.89, + "latex": "x ^ { k }" + }, + { + "category_id": 14, + "poly": [ + 391, + 580, + 1306, + 580, + 1306, + 630, + 391, + 630 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { \\nabla F ( x ) = \\nabla _ { x } f ( x , y ^ { * } ( x ) ) - \\nabla _ { x y } ^ { 2 } g ( x , y ^ { * } ( x ) ) \\left[ \\nabla _ { y y } ^ { 2 } g ( x , y ^ { * } ( x ) ) \\right] ^ { - 1 } \\nabla _ { y } f ( x , y ^ { * } ( x ) ) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 570, + 1627, + 602, + 1627, + 602, + 1660, + 570, + 1660 + ], + "score": 0.89, + "latex": "y ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1220, + 1629, + 1252, + 1629, + 1252, + 1660, + 1220, + 1660 + ], + "score": 0.88, + "latex": "\\beta _ { k }" + }, + { + "category_id": 13, + "poly": [ + 1024, + 1626, + 1056, + 1626, + 1056, + 1656, + 1024, + 1656 + ], + "score": 0.88, + "latex": "x ^ { k }" + }, + { + "category_id": 14, + "poly": [ + 458, + 895, + 1241, + 895, + 1241, + 945, + 458, + 945 + ], + "score": 0.88, + "latex": "\\overline { { \\nabla } } _ { x } f \\big ( x , y \\big ) : = \\nabla _ { x } f \\big ( x , y \\big ) - \\nabla _ { x y } ^ { 2 } g \\big ( x , y \\big ) \\left[ \\nabla _ { y y } ^ { 2 } g \\big ( x , y \\big ) \\right] ^ { - 1 } \\nabla _ { y } f \\big ( x , y \\big ) ." + }, + { + "category_id": 13, + "poly": [ + 1133, + 1632, + 1168, + 1632, + 1168, + 1659, + 1133, + 1659 + ], + "score": 0.87, + "latex": "\\alpha _ { k }" + }, + { + "category_id": 13, + "poly": [ + 633, + 1536, + 665, + 1536, + 665, + 1565, + 633, + 1565 + ], + "score": 0.87, + "latex": "x ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 903, + 1367, + 974, + 1367, + 974, + 1401, + 903, + 1401 + ], + "score": 0.85, + "latex": "x ^ { 0 } , y ^ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 370, + 1120, + 405, + 1120, + 405, + 1147, + 370, + 1147 + ], + "score": 0.85, + "latex": "N ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 725, + 1191, + 753, + 1191, + 753, + 1216, + 725, + 1216 + ], + "score": 0.85, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 630, + 1798, + 649, + 1798, + 649, + 1825, + 630, + 1825 + ], + "score": 0.82, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 501, + 1600, + 526, + 1600, + 526, + 1626, + 501, + 1626 + ], + "score": 0.81, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 1044, + 864, + 1062, + 864, + 1062, + 890, + 1044, + 890 + ], + "score": 0.8, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 373, + 864, + 390, + 864, + 390, + 890, + 373, + 890 + ], + "score": 0.78, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 890, + 1830, + 909, + 1830, + 909, + 1851, + 890, + 1851 + ], + "score": 0.77, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 595, + 1478, + 613, + 1478, + 613, + 1504, + 595, + 1504 + ], + "score": 0.76, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 778, + 723, + 797, + 723, + 797, + 746, + 778, + 746 + ], + "score": 0.75, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 1278, + 693, + 1297, + 693, + 1297, + 714, + 1278, + 714 + ], + "score": 0.75, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 826, + 1401, + 1056, + 1401, + 1056, + 1431, + 826, + 1431 + ], + "score": 0.74, + "latex": "k = 0 , 1 , \\ldots , K - 1" + }, + { + "category_id": 13, + "poly": [ + 1286, + 1456, + 1400, + 1456, + 1400, + 1494, + 1286, + 1494 + ], + "score": 0.71, + "latex": "y ^ { k , 0 } = y ^ { k }" + }, + { + "category_id": 14, + "poly": [ + 435, + 1691, + 1250, + 1691, + 1250, + 1788, + 435, + 1788 + ], + "score": 0.67, + "latex": "\\begin{array} { r l } & { y ^ { k , t + 1 } = y ^ { k , t } - \\beta _ { k } h _ { g } ^ { k , t } , t = 0 , \\ldots , T \\quad \\mathrm { w i t h } y ^ { k , 0 } : = y ^ { k } ; y ^ { k + 1 } : = y ^ { k , T } } \\\\ & { x ^ { k + 1 } = x ^ { k } - \\alpha _ { k } h _ { f } ^ { k } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 905, + 1517, + 1127, + 1517, + 1127, + 1558, + 905, + 1558 + ], + "score": 0.65, + "latex": "x ^ { k + 1 } = x ^ { k } - \\alpha _ { k } h _ { f } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 868, + 1431, + 1089, + 1431, + 1089, + 1460, + 868, + 1460 + ], + "score": 0.65, + "latex": "t = 0 , 1 , \\dots , T - 1" + }, + { + "category_id": 13, + "poly": [ + 707, + 1698, + 854, + 1698, + 854, + 1733, + 707, + 1733 + ], + "score": 0.53, + "latex": "t = 0 , \\ldots , T" + }, + { + "category_id": 13, + "poly": [ + 949, + 1459, + 1209, + 1459, + 1209, + 1496, + 949, + 1496 + ], + "score": 0.5, + "latex": "y ^ { k , t + 1 } = y ^ { k , t } - \\beta _ { k } h _ { g } ^ { k , t }" + }, + { + "category_id": 13, + "poly": [ + 701, + 547, + 744, + 547, + 744, + 574, + 701, + 574 + ], + "score": 0.42, + "latex": "_ { I - 3 }" + }, + { + "category_id": 13, + "poly": [ + 904, + 1514, + 1402, + 1514, + 1402, + 1558, + 904, + 1558 + ], + "score": 0.32, + "latex": "x ^ { k + 1 } = x ^ { k } - \\alpha _ { k } h _ { f } ^ { k } \\qquad \\Join" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1252.0, + 849.0, + 1252.0, + 849.0, + 1291.0, + 294.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 1314.0, + 1398.0, + 1314.0, + 1398.0, + 1364.0, + 733.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2059.0, + 861.0, + 2059.0, + 861.0, + 2091.0, + 839.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1111.0, + 369.0, + 1111.0, + 369.0, + 1157.0, + 291.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 1111.0, + 568.0, + 1111.0, + 568.0, + 1157.0, + 406.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 1111.0, + 1007.0, + 1111.0, + 1007.0, + 1157.0, + 726.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 1111.0, + 1407.0, + 1111.0, + 1407.0, + 1157.0, + 1207.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1152.0, + 1053.0, + 1152.0, + 1053.0, + 1198.0, + 288.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1239.0, + 1152.0, + 1407.0, + 1152.0, + 1407.0, + 1198.0, + 1239.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1186.0, + 724.0, + 1186.0, + 724.0, + 1222.0, + 295.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 1186.0, + 764.0, + 1186.0, + 764.0, + 1222.0, + 754.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 684.0, + 935.0, + 684.0, + 935.0, + 722.0, + 292.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 684.0, + 1277.0, + 684.0, + 1277.0, + 722.0, + 1021.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1298.0, + 684.0, + 1406.0, + 684.0, + 1406.0, + 722.0, + 1298.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 716.0, + 661.0, + 716.0, + 661.0, + 753.0, + 293.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 716.0, + 777.0, + 716.0, + 777.0, + 753.0, + 747.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 716.0, + 1406.0, + 716.0, + 1406.0, + 753.0, + 798.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 747.0, + 504.0, + 747.0, + 504.0, + 784.0, + 366.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 747.0, + 1407.0, + 747.0, + 1407.0, + 784.0, + 573.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 774.0, + 532.0, + 774.0, + 532.0, + 819.0, + 292.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 774.0, + 684.0, + 774.0, + 684.0, + 819.0, + 618.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 774.0, + 939.0, + 774.0, + 939.0, + 819.0, + 770.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 774.0, + 1133.0, + 774.0, + 1133.0, + 819.0, + 1119.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1310.0, + 713.0, + 1310.0, + 713.0, + 1342.0, + 296.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1340.0, + 716.0, + 1340.0, + 716.0, + 1374.0, + 295.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1367.0, + 717.0, + 1367.0, + 717.0, + 1404.0, + 294.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1403.0, + 688.0, + 1403.0, + 688.0, + 1435.0, + 295.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1444.0, + 720.0, + 1444.0, + 720.0, + 1481.0, + 294.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1478.0, + 594.0, + 1478.0, + 594.0, + 1506.0, + 296.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 1478.0, + 717.0, + 1478.0, + 717.0, + 1506.0, + 614.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1507.0, + 720.0, + 1507.0, + 720.0, + 1539.0, + 295.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1537.0, + 470.0, + 1537.0, + 470.0, + 1569.0, + 295.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 1537.0, + 632.0, + 1537.0, + 632.0, + 1569.0, + 504.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 1537.0, + 721.0, + 1537.0, + 721.0, + 1569.0, + 666.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1567.0, + 585.0, + 1567.0, + 585.0, + 1599.0, + 295.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 665.0, + 1567.0, + 718.0, + 1567.0, + 718.0, + 1599.0, + 665.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1599.0, + 500.0, + 1599.0, + 500.0, + 1631.0, + 295.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 1599.0, + 716.0, + 1599.0, + 716.0, + 1631.0, + 527.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 339.0, + 1407.0, + 339.0, + 1407.0, + 376.0, + 293.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 375.0, + 1402.0, + 375.0, + 1402.0, + 405.0, + 295.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 401.0, + 716.0, + 401.0, + 716.0, + 439.0, + 295.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 401.0, + 813.0, + 401.0, + 813.0, + 439.0, + 802.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 446.0, + 1404.0, + 446.0, + 1404.0, + 484.0, + 294.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 478.0, + 1341.0, + 478.0, + 1341.0, + 515.0, + 293.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 509.0, + 1071.0, + 509.0, + 1071.0, + 543.0, + 294.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 826.0, + 1178.0, + 826.0, + 1178.0, + 862.0, + 296.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1264.0, + 826.0, + 1404.0, + 826.0, + 1404.0, + 862.0, + 1264.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 857.0, + 372.0, + 857.0, + 372.0, + 893.0, + 295.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 857.0, + 517.0, + 857.0, + 517.0, + 893.0, + 391.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 857.0, + 757.0, + 857.0, + 757.0, + 893.0, + 586.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 826.0, + 857.0, + 1043.0, + 857.0, + 1043.0, + 893.0, + 826.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 857.0, + 1187.0, + 857.0, + 1187.0, + 893.0, + 1063.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1622.0, + 569.0, + 1622.0, + 569.0, + 1664.0, + 293.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 603.0, + 1622.0, + 1023.0, + 1622.0, + 1023.0, + 1664.0, + 603.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 1622.0, + 1132.0, + 1622.0, + 1132.0, + 1664.0, + 1057.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 1622.0, + 1219.0, + 1622.0, + 1219.0, + 1664.0, + 1169.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 1622.0, + 1404.0, + 1622.0, + 1404.0, + 1664.0, + 1253.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1655.0, + 432.0, + 1655.0, + 432.0, + 1694.0, + 295.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 1655.0, + 515.0, + 1655.0, + 515.0, + 1694.0, + 466.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 1655.0, + 1222.0, + 1655.0, + 1222.0, + 1694.0, + 548.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 956.0, + 767.0, + 956.0, + 767.0, + 1016.0, + 290.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 956.0, + 1002.0, + 956.0, + 1002.0, + 1016.0, + 952.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1783.0, + 629.0, + 1783.0, + 629.0, + 1830.0, + 292.0, + 1830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 1783.0, + 934.0, + 1783.0, + 934.0, + 1830.0, + 650.0, + 1830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 1783.0, + 1407.0, + 1783.0, + 1407.0, + 1830.0, + 1242.0, + 1830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1821.0, + 889.0, + 1821.0, + 889.0, + 1857.0, + 296.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 1821.0, + 1244.0, + 1821.0, + 1244.0, + 1857.0, + 910.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 1361.0, + 902.0, + 1361.0, + 902.0, + 1406.0, + 747.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 1361.0, + 1090.0, + 1361.0, + 1090.0, + 1406.0, + 975.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1194.0, + 1361.0, + 1205.0, + 1361.0, + 1205.0, + 1406.0, + 1194.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 1394.0, + 825.0, + 1394.0, + 825.0, + 1434.0, + 745.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 1394.0, + 1100.0, + 1394.0, + 1100.0, + 1434.0, + 1057.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 1429.0, + 781.0, + 1429.0, + 781.0, + 1461.0, + 747.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 1428.0, + 867.0, + 1428.0, + 867.0, + 1460.0, + 823.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 1428.0, + 1128.0, + 1428.0, + 1128.0, + 1460.0, + 1090.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 1459.0, + 780.0, + 1459.0, + 780.0, + 1493.0, + 747.0, + 1493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 1449.0, + 948.0, + 1449.0, + 948.0, + 1504.0, + 856.0, + 1504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1210.0, + 1449.0, + 1285.0, + 1449.0, + 1285.0, + 1504.0, + 1210.0, + 1504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1449.0, + 1409.0, + 1449.0, + 1409.0, + 1504.0, + 1401.0, + 1504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 1490.0, + 780.0, + 1490.0, + 780.0, + 1524.0, + 747.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 1490.0, + 919.0, + 1490.0, + 919.0, + 1520.0, + 823.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 1521.0, + 780.0, + 1521.0, + 780.0, + 1554.0, + 747.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 1507.0, + 903.0, + 1507.0, + 903.0, + 1562.0, + 817.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 1551.0, + 880.0, + 1551.0, + 880.0, + 1590.0, + 745.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 199.0, + 1164.0, + 199.0, + 1164.0, + 242.0, + 293.0, + 242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 542.0, + 700.0, + 542.0, + 700.0, + 583.0, + 294.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 542.0, + 1004.0, + 542.0, + 1004.0, + 583.0, + 745.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 630.0, + 450.0, + 630.0, + 450.0, + 673.0, + 321.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 537.0, + 630.0, + 588.0, + 630.0, + 588.0, + 673.0, + 537.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 630.0, + 1103.0, + 630.0, + 1103.0, + 673.0, + 657.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 630.0, + 1338.0, + 630.0, + 1338.0, + 673.0, + 1190.0, + 673.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 370, + 1407, + 370, + 1407, + 624, + 296, + 624 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 296, + 1344, + 1405, + 1344, + 1405, + 1541, + 296, + 1541 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 202, + 1406, + 202, + 1406, + 360, + 297, + 360 + ], + "score": 0.977 + }, + { + "category_id": 8, + "poly": [ + 355, + 1790, + 1299, + 1790, + 1299, + 1879, + 355, + 1879 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 296, + 809, + 1399, + 809, + 1399, + 872, + 296, + 872 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 297, + 1627, + 1402, + 1627, + 1402, + 1693, + 297, + 1693 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 615, + 1238, + 1084, + 1238, + 1084, + 1322, + 615, + 1322 + ], + "score": 0.948 + }, + { + "category_id": 8, + "poly": [ + 468, + 885, + 1230, + 885, + 1230, + 964, + 468, + 964 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 409, + 716, + 1288, + 716, + 1288, + 801, + 409, + 801 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 295, + 1705, + 1401, + 1705, + 1401, + 1781, + 295, + 1781 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 429, + 1024, + 1269, + 1024, + 1269, + 1096, + 429, + 1096 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 294, + 1898, + 1405, + 1898, + 1405, + 1962, + 294, + 1962 + ], + "score": 0.943 + }, + { + "category_id": 0, + "poly": [ + 298, + 1573, + 512, + 1573, + 512, + 1606, + 298, + 1606 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 297, + 1151, + 1403, + 1151, + 1403, + 1225, + 297, + 1225 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 293, + 973, + 1303, + 973, + 1303, + 1011, + 293, + 1011 + ], + "score": 0.924 + }, + { + "category_id": 1, + "poly": [ + 294, + 1974, + 1182, + 1974, + 1182, + 2009, + 294, + 2009 + ], + "score": 0.918 + }, + { + "category_id": 1, + "poly": [ + 295, + 635, + 860, + 635, + 860, + 667, + 295, + 667 + ], + "score": 0.9 + }, + { + "category_id": 9, + "poly": [ + 1352, + 735, + 1400, + 735, + 1400, + 766, + 1352, + 766 + ], + "score": 0.896 + }, + { + "category_id": 9, + "poly": [ + 1356, + 1265, + 1400, + 1265, + 1400, + 1293, + 1356, + 1293 + ], + "score": 0.896 + }, + { + "category_id": 1, + "poly": [ + 294, + 673, + 1281, + 673, + 1281, + 707, + 294, + 707 + ], + "score": 0.894 + }, + { + "category_id": 1, + "poly": [ + 297, + 1111, + 1040, + 1111, + 1040, + 1145, + 297, + 1145 + ], + "score": 0.891 + }, + { + "category_id": 9, + "poly": [ + 1356, + 1044, + 1400, + 1044, + 1400, + 1073, + 1356, + 1073 + ], + "score": 0.891 + }, + { + "category_id": 9, + "poly": [ + 1351, + 910, + 1400, + 910, + 1400, + 940, + 1351, + 940 + ], + "score": 0.878 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1807, + 1400, + 1807, + 1400, + 1839, + 1352, + 1839 + ], + "score": 0.861 + }, + { + "category_id": 2, + "poly": [ + 839, + 2061, + 859, + 2061, + 859, + 2085, + 839, + 2085 + ], + "score": 0.799 + }, + { + "category_id": 14, + "poly": [ + 431, + 1017, + 1269, + 1017, + 1269, + 1103, + 431, + 1103 + ], + "score": 0.95, + "latex": "\\frac { 1 } { K } \\sum _ { k = 1 } ^ { K } \\mathbb { E } \\left[ \\left. \\nabla F ( x ^ { k } ) \\right. ^ { 2 } \\right] = \\mathcal { O } \\Big ( \\frac { 1 } { \\sqrt { K } } \\Big ) \\ \\mathrm { ~ a n d ~ } \\ \\mathbb { E } \\left[ \\left. y ^ { K } - y ^ { * } ( x ^ { K } ) \\right. ^ { 2 } \\right] = \\mathcal { O } \\Big ( \\frac { 1 } { \\sqrt { K } } \\Big )" + }, + { + "category_id": 14, + "poly": [ + 470, + 879, + 1232, + 879, + 1232, + 965, + 470, + 965 + ], + "score": 0.93, + "latex": "\\alpha _ { k } = \\operatorname* { m i n } \\left\\{ \\bar { \\alpha } _ { 1 } , \\bar { \\alpha } _ { 2 } , \\frac { \\alpha } { \\sqrt { K } } \\right\\} \\mathrm { a n d } \\beta _ { k } = \\frac { 8 L _ { f } L _ { y } + 2 \\eta L _ { y x } \\tilde { C } _ { f } ^ { 2 } \\bar { \\alpha } _ { 1 } } { 4 T \\mu _ { g } } \\alpha _ { k } ." + }, + { + "category_id": 14, + "poly": [ + 612, + 1236, + 1088, + 1236, + 1088, + 1323, + 612, + 1323 + ], + "score": 0.93, + "latex": "\\frac { 1 } { K } \\sum _ { k = 0 } ^ { K - 1 } \\mathbb { E } [ \\| \\nabla F ( x ^ { k } ) \\| ^ { 2 } ] = \\mathcal { O } \\left( \\frac { \\kappa ^ { 3 } } { K } + \\frac { \\kappa ^ { \\frac { 5 } { 2 } } } { \\sqrt { K } } \\right) ." + }, + { + "category_id": 13, + "poly": [ + 832, + 973, + 931, + 973, + 931, + 1010, + 832, + 1010 + ], + "score": 0.93, + "latex": "\\{ x ^ { k } , y ^ { k } \\}" + }, + { + "category_id": 13, + "poly": [ + 1075, + 1444, + 1183, + 1444, + 1183, + 1480, + 1075, + 1480 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 5 / 2 } )" + }, + { + "category_id": 14, + "poly": [ + 408, + 715, + 1289, + 715, + 1289, + 802, + 408, + 802 + ], + "score": 0.93, + "latex": "\\bar { \\alpha } _ { 1 } = \\frac { 1 } { 2 L _ { F } + 4 L _ { f } L _ { y } + \\frac { 2 L _ { f } L _ { y x } } { L _ { y } \\eta } } , \\bar { \\alpha } _ { 2 } = \\frac { 1 6 T \\mu _ { g } \\ell _ { g , 1 } } { ( \\mu _ { g } + \\ell _ { g , 1 } ) ^ { 2 } ( 8 L _ { f } L _ { y } + 2 \\eta L _ { y x } \\tilde { C } _ { f } ^ { 2 } \\bar { \\alpha } _ { 1 } ) }" + }, + { + "category_id": 13, + "poly": [ + 457, + 1377, + 547, + 1377, + 547, + 1418, + 457, + 1418 + ], + "score": 0.93, + "latex": "h _ { f } ^ { k } , h _ { g } ^ { k , t }" + }, + { + "category_id": 13, + "poly": [ + 516, + 976, + 689, + 976, + 689, + 1010, + 516, + 1010 + ], + "score": 0.93, + "latex": "N = \\mathcal { O } ( \\log K )" + }, + { + "category_id": 13, + "poly": [ + 875, + 292, + 951, + 292, + 951, + 331, + 875, + 331 + ], + "score": 0.93, + "latex": "h _ { g } ^ { k } , h _ { f } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1015, + 1345, + 1192, + 1345, + 1192, + 1381, + 1015, + 1381 + ], + "score": 0.93, + "latex": "K = \\mathcal { O } ( \\kappa ^ { 5 } \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 592, + 1378, + 707, + 1378, + 707, + 1414, + 592, + 1414 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( \\kappa ^ { 5 } \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 759, + 1378, + 874, + 1378, + 874, + 1414, + 759, + 1414 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( \\kappa ^ { 9 } \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1182, + 403, + 1182, + 403, + 1230, + 298, + 1230 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\kappa : = { \\frac { \\ell _ { g , 1 } } { \\mu _ { g } } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 372, + 1110, + 459, + 1110, + 459, + 1146, + 372, + 1146 + ], + "score": 0.92, + "latex": "y ^ { * } ( x ^ { K } )" + }, + { + "category_id": 14, + "poly": [ + 350, + 1787, + 1301, + 1787, + 1301, + 1878, + 350, + 1878 + ], + "score": 0.92, + "latex": "\\mathbb { V } ^ { k + 1 } - \\mathbb { V } ^ { k } = \\underbrace { F ( x ^ { k + 1 } ) - F ( x ^ { k } ) } _ { \\mathrm { L e m m a ~ 1 } } + \\ \\frac { L _ { f } } { L _ { y } } ( \\| y ^ { k + 1 } - y ^ { * } ( x ^ { k + 1 } ) \\| ^ { 2 } - \\| y ^ { k } - y ^ { * } ( x ^ { k } ) \\| ^ { 2 } ) ." + }, + { + "category_id": 13, + "poly": [ + 999, + 1705, + 1401, + 1705, + 1401, + 1753, + 999, + 1753 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\mathbb { V } ^ { k } : = F ( x ^ { k } ) + \\frac { L _ { f } } { L _ { y } } \\| y ^ { k } - y ^ { * } ( x ^ { k } ) \\| ^ { 2 } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 369, + 811, + 437, + 811, + 437, + 842, + 369, + 842 + ], + "score": 0.9, + "latex": "\\eta > 0" + }, + { + "category_id": 13, + "poly": [ + 1091, + 1188, + 1197, + 1188, + 1197, + 1220, + 1091, + 1220 + ], + "score": 0.9, + "latex": "\\eta = \\mathcal { O } ( \\kappa )" + }, + { + "category_id": 13, + "poly": [ + 775, + 523, + 822, + 523, + 822, + 560, + 775, + 560 + ], + "score": 0.9, + "latex": "h _ { g } ^ { k , \\bar { t } }" + }, + { + "category_id": 13, + "poly": [ + 389, + 977, + 462, + 977, + 462, + 1007, + 389, + 1007 + ], + "score": 0.9, + "latex": "T \\geq 1" + }, + { + "category_id": 13, + "poly": [ + 1066, + 492, + 1110, + 492, + 1110, + 522, + 1066, + 522 + ], + "score": 0.89, + "latex": "\\epsilon ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 488, + 592, + 520, + 592, + 520, + 622, + 488, + 622 + ], + "score": 0.89, + "latex": "\\beta _ { k }" + }, + { + "category_id": 13, + "poly": [ + 489, + 841, + 560, + 841, + 560, + 868, + 489, + 868 + ], + "score": 0.88, + "latex": "\\alpha > 0" + }, + { + "category_id": 13, + "poly": [ + 759, + 560, + 802, + 560, + 802, + 589, + 759, + 589 + ], + "score": 0.88, + "latex": "\\epsilon ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 959, + 1186, + 1081, + 1186, + 1081, + 1221, + 959, + 1221 + ], + "score": 0.87, + "latex": "T = \\Theta ( \\kappa ^ { 4 } )" + }, + { + "category_id": 13, + "poly": [ + 403, + 594, + 437, + 594, + 437, + 621, + 403, + 621 + ], + "score": 0.87, + "latex": "\\alpha _ { k }" + }, + { + "category_id": 13, + "poly": [ + 795, + 1185, + 948, + 1185, + 948, + 1220, + 795, + 1220 + ], + "score": 0.85, + "latex": "\\alpha = \\Theta ( \\kappa ^ { - 5 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 949, + 529, + 967, + 529, + 967, + 557, + 949, + 557 + ], + "score": 0.82, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 1298, + 468, + 1316, + 468, + 1316, + 495, + 1298, + 495 + ], + "score": 0.81, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 1105, + 1484, + 1123, + 1484, + 1123, + 1505, + 1105, + 1505 + ], + "score": 0.78, + "latex": "\\kappa" + }, + { + "category_id": 13, + "poly": [ + 419, + 494, + 443, + 494, + 443, + 522, + 419, + 522 + ], + "score": 0.77, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 720, + 1354, + 733, + 1354, + 733, + 1375, + 720, + 1375 + ], + "score": 0.74, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1040, + 1484, + 1056, + 1484, + 1056, + 1505, + 1040, + 1505 + ], + "score": 0.67, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1318, + 1154, + 1332, + 1154, + 1332, + 1179, + 1318, + 1179 + ], + "score": 0.53, + "latex": "^ { l }" + }, + { + "category_id": 13, + "poly": [ + 1205, + 979, + 1220, + 979, + 1220, + 1004, + 1205, + 1004 + ], + "score": 0.43, + "latex": "I" + }, + { + "category_id": 13, + "poly": [ + 906, + 675, + 951, + 675, + 951, + 703, + 906, + 703 + ], + "score": 0.33, + "latex": "_ { I - 3 }" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1570.0, + 514.0, + 1570.0, + 514.0, + 1608.0, + 292.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2059.0, + 861.0, + 2059.0, + 861.0, + 2090.0, + 840.0, + 2090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 369.0, + 1407.0, + 369.0, + 1407.0, + 407.0, + 295.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 402.0, + 1407.0, + 402.0, + 1407.0, + 438.0, + 294.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 433.0, + 1405.0, + 433.0, + 1405.0, + 466.0, + 294.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 463.0, + 1297.0, + 463.0, + 1297.0, + 498.0, + 294.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1317.0, + 463.0, + 1408.0, + 463.0, + 1408.0, + 498.0, + 1317.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 492.0, + 418.0, + 492.0, + 418.0, + 526.0, + 294.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 492.0, + 1065.0, + 492.0, + 1065.0, + 526.0, + 444.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1111.0, + 492.0, + 1405.0, + 492.0, + 1405.0, + 526.0, + 1111.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 519.0, + 774.0, + 519.0, + 774.0, + 561.0, + 291.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 519.0, + 948.0, + 519.0, + 948.0, + 561.0, + 823.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 519.0, + 1408.0, + 519.0, + 1408.0, + 561.0, + 968.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 561.0, + 758.0, + 561.0, + 758.0, + 595.0, + 294.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 561.0, + 1405.0, + 561.0, + 1405.0, + 595.0, + 803.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 593.0, + 402.0, + 593.0, + 402.0, + 624.0, + 296.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 593.0, + 487.0, + 593.0, + 487.0, + 624.0, + 438.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 593.0, + 941.0, + 593.0, + 941.0, + 624.0, + 521.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1344.0, + 719.0, + 1344.0, + 719.0, + 1381.0, + 294.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 1344.0, + 1014.0, + 1344.0, + 1014.0, + 1381.0, + 734.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 1344.0, + 1406.0, + 1344.0, + 1406.0, + 1381.0, + 1193.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1372.0, + 456.0, + 1372.0, + 456.0, + 1420.0, + 291.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 1372.0, + 591.0, + 1372.0, + 591.0, + 1420.0, + 548.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 1372.0, + 758.0, + 1372.0, + 758.0, + 1420.0, + 708.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 1372.0, + 1406.0, + 1372.0, + 1406.0, + 1420.0, + 875.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1412.0, + 1405.0, + 1412.0, + 1405.0, + 1449.0, + 293.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1442.0, + 1074.0, + 1442.0, + 1074.0, + 1484.0, + 293.0, + 1484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1184.0, + 1442.0, + 1406.0, + 1442.0, + 1406.0, + 1484.0, + 1184.0, + 1484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1472.0, + 1039.0, + 1472.0, + 1039.0, + 1518.0, + 293.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 1472.0, + 1104.0, + 1472.0, + 1104.0, + 1518.0, + 1057.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1124.0, + 1472.0, + 1406.0, + 1472.0, + 1406.0, + 1518.0, + 1124.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1506.0, + 1378.0, + 1506.0, + 1378.0, + 1543.0, + 295.0, + 1543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 200.0, + 1409.0, + 200.0, + 1409.0, + 239.0, + 294.0, + 239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 233.0, + 1408.0, + 233.0, + 1408.0, + 270.0, + 294.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 262.0, + 1406.0, + 262.0, + 1406.0, + 298.0, + 294.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 284.0, + 874.0, + 284.0, + 874.0, + 343.0, + 287.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 284.0, + 1412.0, + 284.0, + 1412.0, + 343.0, + 952.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 327.0, + 1270.0, + 327.0, + 1270.0, + 364.0, + 295.0, + 364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 809.0, + 368.0, + 809.0, + 368.0, + 844.0, + 296.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 809.0, + 1403.0, + 809.0, + 1403.0, + 844.0, + 438.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 838.0, + 488.0, + 838.0, + 488.0, + 877.0, + 295.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 838.0, + 1400.0, + 838.0, + 1400.0, + 877.0, + 561.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1626.0, + 1404.0, + 1626.0, + 1404.0, + 1664.0, + 293.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1657.0, + 911.0, + 1657.0, + 911.0, + 1696.0, + 295.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1702.0, + 998.0, + 1702.0, + 998.0, + 1753.0, + 291.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1702.0, + 1407.0, + 1702.0, + 1407.0, + 1753.0, + 1402.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1746.0, + 1054.0, + 1746.0, + 1054.0, + 1784.0, + 295.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1899.0, + 1403.0, + 1899.0, + 1403.0, + 1931.0, + 297.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1929.0, + 1348.0, + 1929.0, + 1348.0, + 1965.0, + 296.0, + 1965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1150.0, + 1317.0, + 1150.0, + 1317.0, + 1188.0, + 293.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1333.0, + 1150.0, + 1404.0, + 1150.0, + 1404.0, + 1188.0, + 1333.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1189.0, + 297.0, + 1189.0, + 297.0, + 1222.0, + 293.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.75, + 1173.5, + 1398.75, + 1173.5, + 1398.75, + 1233.5, + 347.75, + 1233.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 972.0, + 388.0, + 972.0, + 388.0, + 1016.0, + 292.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 972.0, + 515.0, + 972.0, + 515.0, + 1016.0, + 463.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 972.0, + 831.0, + 972.0, + 831.0, + 1016.0, + 690.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 972.0, + 1204.0, + 972.0, + 1204.0, + 1016.0, + 932.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1221.0, + 972.0, + 1303.0, + 972.0, + 1303.0, + 1016.0, + 1221.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1971.0, + 1184.0, + 1971.0, + 1184.0, + 2013.0, + 294.0, + 2013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 635.0, + 860.0, + 635.0, + 860.0, + 671.0, + 296.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 670.0, + 905.0, + 670.0, + 905.0, + 712.0, + 294.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 670.0, + 1282.0, + 670.0, + 1282.0, + 712.0, + 952.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1107.0, + 371.0, + 1107.0, + 371.0, + 1151.0, + 294.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 460.0, + 1107.0, + 1032.0, + 1107.0, + 1032.0, + 1151.0, + 460.0, + 1151.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1676, + 1404, + 1676, + 1404, + 1838, + 296, + 1838 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1913, + 1403, + 1913, + 1403, + 2008, + 299, + 2008 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 1419, + 1406, + 1419, + 1406, + 1565, + 297, + 1565 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 302, + 498, + 1404, + 498, + 1404, + 594, + 302, + 594 + ], + "score": 0.964 + }, + { + "category_id": 8, + "poly": [ + 436, + 293, + 1261, + 293, + 1261, + 426, + 436, + 426 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 297, + 604, + 1407, + 604, + 1407, + 711, + 297, + 711 + ], + "score": 0.962 + }, + { + "category_id": 8, + "poly": [ + 332, + 1069, + 1304, + 1069, + 1304, + 1216, + 332, + 1216 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 298, + 1284, + 1403, + 1284, + 1403, + 1349, + 298, + 1349 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 294, + 199, + 1404, + 199, + 1404, + 277, + 294, + 277 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 489, + 1621, + 1207, + 1621, + 1207, + 1667, + 489, + 1667 + ], + "score": 0.94 + }, + { + "category_id": 0, + "poly": [ + 292, + 1860, + 1283, + 1860, + 1283, + 1900, + 292, + 1900 + ], + "score": 0.938 + }, + { + "category_id": 1, + "poly": [ + 300, + 930, + 1407, + 930, + 1407, + 1003, + 300, + 1003 + ], + "score": 0.932 + }, + { + "category_id": 8, + "poly": [ + 459, + 766, + 1243, + 766, + 1243, + 812, + 459, + 812 + ], + "score": 0.922 + }, + { + "category_id": 1, + "poly": [ + 292, + 1227, + 1297, + 1227, + 1297, + 1261, + 292, + 1261 + ], + "score": 0.92 + }, + { + "category_id": 1, + "poly": [ + 300, + 828, + 1094, + 828, + 1094, + 865, + 300, + 865 + ], + "score": 0.919 + }, + { + "category_id": 1, + "poly": [ + 301, + 1574, + 1313, + 1574, + 1313, + 1609, + 301, + 1609 + ], + "score": 0.918 + }, + { + "category_id": 1, + "poly": [ + 302, + 438, + 1245, + 438, + 1245, + 477, + 302, + 477 + ], + "score": 0.917 + }, + { + "category_id": 1, + "poly": [ + 298, + 718, + 1202, + 718, + 1202, + 751, + 298, + 751 + ], + "score": 0.914 + }, + { + "category_id": 1, + "poly": [ + 301, + 888, + 1155, + 888, + 1155, + 923, + 301, + 923 + ], + "score": 0.905 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1629, + 1400, + 1629, + 1400, + 1660, + 1351, + 1660 + ], + "score": 0.89 + }, + { + "category_id": 9, + "poly": [ + 1356, + 385, + 1401, + 385, + 1401, + 414, + 1356, + 414 + ], + "score": 0.889 + }, + { + "category_id": 9, + "poly": [ + 1351, + 772, + 1401, + 772, + 1401, + 804, + 1351, + 804 + ], + "score": 0.888 + }, + { + "category_id": 9, + "poly": [ + 1339, + 1024, + 1400, + 1024, + 1400, + 1055, + 1339, + 1055 + ], + "score": 0.884 + }, + { + "category_id": 8, + "poly": [ + 312, + 1361, + 1321, + 1361, + 1321, + 1407, + 312, + 1407 + ], + "score": 0.882 + }, + { + "category_id": 9, + "poly": [ + 1353, + 1367, + 1400, + 1367, + 1400, + 1401, + 1353, + 1401 + ], + "score": 0.867 + }, + { + "category_id": 9, + "poly": [ + 1338, + 1160, + 1400, + 1160, + 1400, + 1192, + 1338, + 1192 + ], + "score": 0.866 + }, + { + "category_id": 8, + "poly": [ + 332, + 1016, + 1101, + 1016, + 1101, + 1061, + 332, + 1061 + ], + "score": 0.866 + }, + { + "category_id": 2, + "poly": [ + 841, + 2060, + 858, + 2060, + 858, + 2084, + 841, + 2084 + ], + "score": 0.75 + }, + { + "category_id": 13, + "poly": [ + 489, + 440, + 618, + 440, + 618, + 480, + 489, + 480 + ], + "score": 0.94, + "latex": "L _ { f } , L _ { F } , \\sigma _ { f } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 790, + 960, + 943, + 960, + 943, + 1005, + 790, + 1005 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { \\beta _ { k } \\le \\frac { 2 ^ { \\binom { - } { q } } } { \\mu _ { g } + \\ell _ { g , 1 } } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 331, + 1013, + 1306, + 1013, + 1306, + 1221, + 331, + 1221 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { \\mathbb { E } [ \\| y ^ { k + 1 } - y ^ { * } ( x ^ { k } ) \\| ^ { 2 } ] \\leq ( 1 - \\mu _ { g } \\beta _ { k } ) ^ { T } \\mathbb { E } [ \\| y ^ { k } - y ^ { * } ( x ^ { k } ) \\| ^ { 2 } ] + T \\beta _ { k } ^ { 2 } \\sigma _ { g , 1 } ^ { 2 } } \\\\ & { \\mathbb { E } [ \\| y ^ { k + 1 } - y ^ { * } ( x ^ { k + 1 } ) \\| ^ { 2 } ] \\leq \\Big ( 1 + 4 L _ { f } L _ { y } \\alpha _ { k } + \\frac { \\eta L _ { y x } \\tilde { C } _ { f } ^ { 2 } } { 2 } \\alpha _ { k } ^ { 2 } \\Big ) \\mathbb { E } [ \\| y ^ { k + 1 } - y ^ { * } ( x ^ { k } ) \\| ^ { 2 } ] } \\\\ & { \\qquad + \\Big ( L _ { y } ^ { 2 } + \\frac { L _ { y } } { 4 L _ { f } \\alpha _ { k } } + \\frac { L _ { y x } } { 2 \\eta } \\Big ) \\alpha _ { k } ^ { 2 } \\mathbb { E } [ \\| \\bar { h } _ { f } ^ { k } \\| ^ { 2 } ] + \\Big ( L _ { y } ^ { 2 } + \\frac { L _ { y x } } { 2 \\eta } \\Big ) \\alpha _ { k } ^ { 2 } \\tilde { \\sigma } _ { f } ^ { 2 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1337, + 610, + 1403, + 610, + 1403, + 640, + 1337, + 640 + ], + "score": 0.93, + "latex": "y ^ { \\ast } ( x )" + }, + { + "category_id": 13, + "poly": [ + 532, + 1529, + 645, + 1529, + 645, + 1565, + 532, + 1565 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( k ^ { - 1 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 796, + 1804, + 928, + 1804, + 928, + 1837, + 796, + 1837 + ], + "score": 0.93, + "latex": "B _ { k } = \\mathcal { O } ( k )" + }, + { + "category_id": 14, + "poly": [ + 438, + 290, + 1260, + 290, + 1260, + 430, + 438, + 430 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\mathbb { E } [ F ( { x } ^ { k + 1 } ) ] - \\mathbb { E } [ F ( { x } ^ { k } ) ] \\le - \\frac { \\alpha _ { k } } { 2 } \\mathbb { E } [ \\| \\nabla F ( { x } ^ { k } ) \\| ^ { 2 } ] - \\left( \\frac { \\alpha _ { k } } { 2 } - \\frac { L _ { F } \\alpha _ { k } ^ { 2 } } { 2 } \\right) \\mathbb { E } [ \\| \\bar { h } _ { f } ^ { k } \\| ^ { 2 } ] } \\\\ { + L _ { f } ^ { 2 } \\alpha _ { k } \\mathbb { E } [ \\| y ^ { k + 1 } - y ^ { * } ( { x } ^ { k } ) \\| ^ { 2 } ] + \\alpha _ { k } b _ { k } ^ { 2 } + \\frac { L _ { F } \\alpha _ { k } ^ { 2 } } { 2 } \\tilde { \\sigma } _ { f } ^ { 2 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 379, + 1803, + 548, + 1803, + 548, + 1837, + 379, + 1837 + ], + "score": 0.93, + "latex": "\\delta _ { 5 } = \\mathcal { O } ( 1 / B _ { k } )" + }, + { + "category_id": 13, + "poly": [ + 841, + 1492, + 1024, + 1492, + 1024, + 1530, + 841, + 1530 + ], + "score": 0.93, + "latex": "\\beta _ { k } = \\mathcal { O } ( k ^ { - 1 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 603, + 1495, + 787, + 1495, + 787, + 1530, + 603, + 1530 + ], + "score": 0.92, + "latex": "\\alpha _ { k } = \\mathcal { O } ( k ^ { - 1 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 347, + 237, + 661, + 237, + 661, + 280, + 347, + 280 + ], + "score": 0.92, + "latex": "\\| \\bar { h } _ { f } ^ { k } - \\overline { { \\nabla } } f ( x ^ { k } , y ^ { k + 1 } ) \\| \\leq b _ { k }" + }, + { + "category_id": 13, + "poly": [ + 1154, + 201, + 1401, + 201, + 1401, + 242, + 1154, + 242 + ], + "score": 0.92, + "latex": "\\bar { h } _ { f } ^ { k } : = \\mathbb { E } [ h _ { f } ^ { k } | x ^ { k } , y ^ { k + 1 } ]" + }, + { + "category_id": 13, + "poly": [ + 435, + 1742, + 663, + 1742, + 663, + 1776, + 435, + 1776 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\operatorname* { l i m } _ { k \\to \\infty } \\alpha _ { k } / \\beta _ { k } = 0 } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1191, + 1679, + 1298, + 1679, + 1298, + 1713, + 1191, + 1713 + ], + "score": 0.92, + "latex": "\\mathcal { O } ( 1 / B _ { k } )" + }, + { + "category_id": 13, + "poly": [ + 956, + 1317, + 1031, + 1317, + 1031, + 1348, + 956, + 1348 + ], + "score": 0.92, + "latex": "\\alpha _ { k } , \\beta _ { k }" + }, + { + "category_id": 13, + "poly": [ + 727, + 1456, + 833, + 1456, + 833, + 1495, + 727, + 1495 + ], + "score": 0.92, + "latex": "\\mathbb { E } [ \\| \\bar { h } _ { f } ^ { k } \\| ^ { 2 } ]" + }, + { + "category_id": 13, + "poly": [ + 1159, + 929, + 1217, + 929, + 1217, + 964, + 1159, + 964 + ], + "score": 0.91, + "latex": "y ^ { k + 1 }" + }, + { + "category_id": 13, + "poly": [ + 1010, + 960, + 1068, + 960, + 1068, + 994, + 1010, + 994 + ], + "score": 0.91, + "latex": "y ^ { k + 1 }" + }, + { + "category_id": 13, + "poly": [ + 371, + 1230, + 440, + 1230, + 440, + 1261, + 371, + 1261 + ], + "score": 0.9, + "latex": "\\eta > 0" + }, + { + "category_id": 13, + "poly": [ + 899, + 1677, + 1153, + 1677, + 1153, + 1713, + 899, + 1713 + ], + "score": 0.9, + "latex": "\\delta _ { 5 } = \\mathcal { O } ( \\beta _ { k } ^ { 2 } + \\alpha _ { k } ^ { 2 } / \\beta _ { k } )" + }, + { + "category_id": 13, + "poly": [ + 982, + 1714, + 1226, + 1714, + 1226, + 1747, + 982, + 1747 + ], + "score": 0.9, + "latex": "\\delta _ { 5 } = \\mathcal { O } ( \\beta _ { k } ^ { 2 } + \\alpha _ { k } ^ { 2 } / \\beta _ { k } )" + }, + { + "category_id": 13, + "poly": [ + 472, + 825, + 509, + 825, + 509, + 869, + 472, + 869 + ], + "score": 0.9, + "latex": "\\tilde { C } _ { f } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 371, + 831, + 418, + 831, + 418, + 865, + 371, + 865 + ], + "score": 0.9, + "latex": "L _ { y x }" + }, + { + "category_id": 14, + "poly": [ + 492, + 1623, + 1206, + 1623, + 1206, + 1665, + 492, + 1665 + ], + "score": 0.9, + "latex": "\\mathbb { E } [ \\| y ^ { k + 1 } - y ^ { * } ( x ^ { k + 1 } ) \\| ^ { 2 } ] \\leq ( 1 - \\delta _ { 1 } ) \\mathbb { E } [ \\| y ^ { k } - y ^ { * } ( x ^ { k } ) \\| ^ { 2 } ] + \\delta _ { 5 } \\sigma ^ { 2 }" + }, + { + "category_id": 14, + "poly": [ + 458, + 765, + 1241, + 765, + 1241, + 811, + 458, + 811 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { \\| \\nabla y ^ { * } ( x _ { 1 } ) - \\nabla y ^ { * } ( x _ { 2 } ) \\| \\leq L _ { y x } \\| x _ { 1 } - x _ { 2 } \\| ; \\quad \\mathbb { E } [ \\| h _ { f } ^ { k } \\| ^ { 2 } | x ^ { k } , y ^ { k + 1 } ] \\leq \\tilde { C } _ { f } ^ { 2 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 621, + 638, + 655, + 638, + 655, + 677, + 621, + 677 + ], + "score": 0.9, + "latex": "h _ { f } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 640, + 604, + 670, + 604, + 670, + 638, + 640, + 638 + ], + "score": 0.89, + "latex": "y ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1368, + 677, + 1397, + 677, + 1397, + 710, + 1368, + 710 + ], + "score": 0.89, + "latex": "y ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 525, + 529, + 556, + 529, + 556, + 563, + 525, + 563 + ], + "score": 0.89, + "latex": "y ^ { k }" + }, + { + "category_id": 14, + "poly": [ + 331, + 1361, + 1327, + 1361, + 1327, + 1407, + 331, + 1407 + ], + "score": 0.88, + "latex": "\\begin{array} { r } { \\mathbb { E } [ \\| y ^ { k + 1 } - y ^ { * } ( x ^ { k + 1 } ) \\| ^ { 2 } ] \\leq ( 1 - \\delta _ { 1 } ) \\mathbb { E } [ \\| y ^ { k } - y ^ { * } ( x ^ { k } ) \\| ^ { 2 } ] + \\delta _ { 2 } \\mathbb { E } [ \\| \\bar { h } _ { f } ^ { k } \\| ^ { 2 } ] + \\delta _ { 3 } T \\sigma _ { g , 1 } ^ { 2 } + \\delta _ { 4 } \\tilde { \\sigma } _ { f } ^ { 2 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 373, + 1678, + 406, + 1678, + 406, + 1707, + 373, + 1707 + ], + "score": 0.87, + "latex": "\\sigma ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 860, + 240, + 891, + 240, + 891, + 270, + 860, + 270 + ], + "score": 0.86, + "latex": "x ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 600, + 960, + 631, + 960, + 631, + 989, + 600, + 989 + ], + "score": 0.85, + "latex": "x ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1363, + 1682, + 1400, + 1682, + 1400, + 1711, + 1363, + 1711 + ], + "score": 0.85, + "latex": "B _ { k }" + }, + { + "category_id": 13, + "poly": [ + 1270, + 1751, + 1287, + 1751, + 1287, + 1775, + 1270, + 1775 + ], + "score": 0.8, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 643, + 1714, + 661, + 1714, + 661, + 1740, + 643, + 1740 + ], + "score": 0.8, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1124, + 1809, + 1141, + 1809, + 1141, + 1836, + 1124, + 1836 + ], + "score": 0.79, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 516, + 1780, + 534, + 1780, + 534, + 1801, + 516, + 1801 + ], + "score": 0.78, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 571, + 1422, + 1160, + 1422, + 1160, + 1458, + 571, + 1458 + ], + "score": 0.73, + "latex": "\\delta _ { 1 } \\in [ 0 , 1 ) , \\delta _ { 2 } = \\mathcal { O } ( \\alpha _ { k } ) , \\delta _ { 3 } = \\mathcal { O } ( \\beta _ { k } ^ { 2 } ) , \\delta _ { 4 } = \\mathcal { O } ( \\alpha _ { k } ^ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1166, + 245, + 1181, + 245, + 1181, + 269, + 1166, + 269 + ], + "score": 0.48, + "latex": "I" + }, + { + "category_id": 13, + "poly": [ + 959, + 204, + 1004, + 204, + 1004, + 233, + 959, + 233 + ], + "score": 0.45, + "latex": "_ { I - 3 }" + }, + { + "category_id": 13, + "poly": [ + 1011, + 721, + 1027, + 721, + 1027, + 747, + 1011, + 747 + ], + "score": 0.28, + "latex": "^ { l }" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1859.0, + 1284.0, + 1859.0, + 1284.0, + 1907.0, + 290.0, + 1907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2059.0, + 860.0, + 2059.0, + 860.0, + 2090.0, + 839.0, + 2090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1675.0, + 372.0, + 1675.0, + 372.0, + 1717.0, + 293.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 1675.0, + 898.0, + 1675.0, + 898.0, + 1717.0, + 407.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 1675.0, + 1190.0, + 1675.0, + 1190.0, + 1717.0, + 1154.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1299.0, + 1675.0, + 1362.0, + 1675.0, + 1362.0, + 1717.0, + 1299.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1675.0, + 1405.0, + 1675.0, + 1405.0, + 1717.0, + 1401.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1708.0, + 642.0, + 1708.0, + 642.0, + 1750.0, + 293.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 662.0, + 1708.0, + 981.0, + 1708.0, + 981.0, + 1750.0, + 662.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 1708.0, + 1407.0, + 1708.0, + 1407.0, + 1750.0, + 1227.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1741.0, + 434.0, + 1741.0, + 434.0, + 1779.0, + 294.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 1741.0, + 1269.0, + 1741.0, + 1269.0, + 1779.0, + 664.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1288.0, + 1741.0, + 1406.0, + 1741.0, + 1406.0, + 1779.0, + 1288.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1771.0, + 515.0, + 1771.0, + 515.0, + 1809.0, + 294.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 1771.0, + 1406.0, + 1771.0, + 1406.0, + 1809.0, + 535.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1803.0, + 378.0, + 1803.0, + 378.0, + 1838.0, + 295.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 549.0, + 1803.0, + 795.0, + 1803.0, + 795.0, + 1838.0, + 549.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 1803.0, + 1123.0, + 1803.0, + 1123.0, + 1838.0, + 929.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1142.0, + 1803.0, + 1234.0, + 1803.0, + 1234.0, + 1838.0, + 1142.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1912.0, + 1404.0, + 1912.0, + 1404.0, + 1951.0, + 293.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1945.0, + 1405.0, + 1945.0, + 1405.0, + 1980.0, + 293.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1975.0, + 1318.0, + 1975.0, + 1318.0, + 2012.0, + 293.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1418.0, + 570.0, + 1418.0, + 570.0, + 1461.0, + 292.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1161.0, + 1418.0, + 1407.0, + 1418.0, + 1407.0, + 1461.0, + 1161.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1452.0, + 726.0, + 1452.0, + 726.0, + 1496.0, + 294.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 834.0, + 1452.0, + 1408.0, + 1452.0, + 1408.0, + 1496.0, + 834.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1491.0, + 602.0, + 1491.0, + 602.0, + 1534.0, + 292.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 788.0, + 1491.0, + 840.0, + 1491.0, + 840.0, + 1534.0, + 788.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1025.0, + 1491.0, + 1408.0, + 1491.0, + 1408.0, + 1534.0, + 1025.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1525.0, + 531.0, + 1525.0, + 531.0, + 1568.0, + 294.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 646.0, + 1525.0, + 1314.0, + 1525.0, + 1314.0, + 1568.0, + 646.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 499.0, + 1403.0, + 499.0, + 1403.0, + 534.0, + 296.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 525.0, + 524.0, + 525.0, + 524.0, + 568.0, + 293.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 557.0, + 525.0, + 1405.0, + 525.0, + 1405.0, + 568.0, + 557.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 562.0, + 719.0, + 562.0, + 719.0, + 595.0, + 296.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 602.0, + 639.0, + 602.0, + 639.0, + 643.0, + 292.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 602.0, + 1336.0, + 602.0, + 1336.0, + 643.0, + 671.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 602.0, + 1407.0, + 602.0, + 1407.0, + 643.0, + 1404.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 638.0, + 620.0, + 638.0, + 620.0, + 674.0, + 295.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 656.0, + 638.0, + 1405.0, + 638.0, + 1405.0, + 674.0, + 656.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 676.0, + 1367.0, + 676.0, + 1367.0, + 713.0, + 292.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 676.0, + 1407.0, + 676.0, + 1407.0, + 713.0, + 1398.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1284.0, + 1404.0, + 1284.0, + 1404.0, + 1320.0, + 296.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1315.0, + 955.0, + 1315.0, + 955.0, + 1351.0, + 296.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 1315.0, + 1340.0, + 1315.0, + 1340.0, + 1351.0, + 1032.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 195.0, + 958.0, + 195.0, + 958.0, + 242.0, + 293.0, + 242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 195.0, + 1153.0, + 195.0, + 1153.0, + 242.0, + 1005.0, + 242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 195.0, + 1405.0, + 195.0, + 1405.0, + 242.0, + 1402.0, + 242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 237.0, + 346.0, + 237.0, + 346.0, + 280.0, + 294.0, + 280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 662.0, + 237.0, + 859.0, + 237.0, + 859.0, + 280.0, + 662.0, + 280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 237.0, + 1165.0, + 237.0, + 1165.0, + 280.0, + 892.0, + 280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1182.0, + 237.0, + 1283.0, + 237.0, + 1283.0, + 280.0, + 1182.0, + 280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 922.0, + 1158.0, + 922.0, + 1158.0, + 972.0, + 292.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1218.0, + 922.0, + 1407.0, + 922.0, + 1407.0, + 972.0, + 1218.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 949.0, + 599.0, + 949.0, + 599.0, + 1018.0, + 285.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 949.0, + 789.0, + 949.0, + 789.0, + 1018.0, + 632.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 944.0, + 949.0, + 1009.0, + 949.0, + 1009.0, + 1018.0, + 944.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1069.0, + 949.0, + 1179.0, + 949.0, + 1179.0, + 1018.0, + 1069.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1225.0, + 370.0, + 1225.0, + 370.0, + 1266.0, + 294.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 1225.0, + 1300.0, + 1225.0, + 1300.0, + 1266.0, + 441.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 822.0, + 370.0, + 822.0, + 370.0, + 872.0, + 291.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 822.0, + 471.0, + 822.0, + 471.0, + 872.0, + 419.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 822.0, + 1100.0, + 822.0, + 1100.0, + 872.0, + 510.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1574.0, + 1313.0, + 1574.0, + 1313.0, + 1613.0, + 294.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 438.0, + 488.0, + 438.0, + 488.0, + 479.0, + 302.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 438.0, + 1248.0, + 438.0, + 1248.0, + 479.0, + 619.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 716.0, + 1010.0, + 716.0, + 1010.0, + 756.0, + 293.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 716.0, + 1205.0, + 716.0, + 1205.0, + 756.0, + 1028.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 887.0, + 1157.0, + 887.0, + 1157.0, + 929.0, + 294.0, + 929.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1698, + 1403, + 1698, + 1403, + 1803, + 296, + 1803 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 296, + 615, + 1406, + 615, + 1406, + 745, + 296, + 745 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 1486, + 1406, + 1486, + 1406, + 1579, + 298, + 1579 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 295, + 386, + 1408, + 386, + 1408, + 479, + 295, + 479 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 297, + 862, + 751, + 862, + 751, + 1271, + 297, + 1271 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 298, + 1273, + 1405, + 1273, + 1405, + 1396, + 298, + 1396 + ], + "score": 0.971 + }, + { + "category_id": 8, + "poly": [ + 607, + 758, + 1092, + 758, + 1092, + 837, + 607, + 837 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 295, + 257, + 1403, + 257, + 1403, + 321, + 295, + 321 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 383, + 1594, + 1311, + 1594, + 1311, + 1685, + 383, + 1685 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 432, + 333, + 1271, + 333, + 1271, + 377, + 432, + 377 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 297, + 1869, + 1408, + 1869, + 1408, + 1932, + 297, + 1932 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 458, + 1816, + 1236, + 1816, + 1236, + 1861, + 458, + 1861 + ], + "score": 0.941 + }, + { + "category_id": 8, + "poly": [ + 498, + 491, + 1197, + 491, + 1197, + 537, + 498, + 537 + ], + "score": 0.94 + }, + { + "category_id": 1, + "poly": [ + 780, + 933, + 1406, + 933, + 1406, + 1217, + 780, + 1217 + ], + "score": 0.939 + }, + { + "category_id": 1, + "poly": [ + 296, + 545, + 1408, + 545, + 1408, + 609, + 296, + 609 + ], + "score": 0.93 + }, + { + "category_id": 0, + "poly": [ + 298, + 203, + 715, + 203, + 715, + 236, + 298, + 236 + ], + "score": 0.919 + }, + { + "category_id": 0, + "poly": [ + 299, + 1429, + 772, + 1429, + 772, + 1463, + 299, + 1463 + ], + "score": 0.917 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1649, + 1400, + 1649, + 1400, + 1679, + 1352, + 1679 + ], + "score": 0.903 + }, + { + "category_id": 9, + "poly": [ + 1356, + 782, + 1400, + 782, + 1400, + 811, + 1356, + 811 + ], + "score": 0.894 + }, + { + "category_id": 1, + "poly": [ + 297, + 1944, + 1403, + 1944, + 1403, + 2009, + 297, + 2009 + ], + "score": 0.889 + }, + { + "category_id": 9, + "poly": [ + 1352, + 340, + 1400, + 340, + 1400, + 371, + 1352, + 371 + ], + "score": 0.888 + }, + { + "category_id": 9, + "poly": [ + 1352, + 500, + 1400, + 500, + 1400, + 530, + 1352, + 530 + ], + "score": 0.877 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1822, + 1400, + 1822, + 1400, + 1853, + 1351, + 1853 + ], + "score": 0.874 + }, + { + "category_id": 2, + "poly": [ + 840, + 2061, + 859, + 2061, + 859, + 2085, + 840, + 2085 + ], + "score": 0.821 + }, + { + "category_id": 1, + "poly": [ + 772, + 892, + 1332, + 892, + 1332, + 923, + 772, + 923 + ], + "score": 0.51 + }, + { + "category_id": 0, + "poly": [ + 772, + 892, + 1332, + 892, + 1332, + 923, + 772, + 923 + ], + "score": 0.296 + }, + { + "category_id": 14, + "poly": [ + 605, + 755, + 1095, + 755, + 1095, + 840, + 605, + 840 + ], + "score": 0.94, + "latex": "\\frac { 1 } { K } \\sum _ { k = 0 } ^ { K - 1 } \\mathbb { E } \\left[ \\left. \\nabla F ( x ^ { k } ) \\right. ^ { 2 } \\right] = \\mathcal { O } \\left( \\frac { \\kappa ^ { 2 } } { K } + \\frac { \\kappa } { \\sqrt { K } } \\right) ." + }, + { + "category_id": 13, + "poly": [ + 299, + 1547, + 470, + 1547, + 470, + 1580, + 299, + 1580 + ], + "score": 0.93, + "latex": "\\| y - h ( x ; \\phi ) \\| ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 480, + 1022, + 670, + 1022, + 670, + 1057, + 480, + 1057 + ], + "score": 0.93, + "latex": "K = \\mathcal { O } ( \\kappa ^ { 2 } \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 446, + 1082, + 561, + 1082, + 561, + 1117, + 446, + 1117 + ], + "score": 0.93, + "latex": "\\mathcal { O } \\bar { ( \\kappa ^ { 2 } \\epsilon ^ { - 2 } ) }" + }, + { + "category_id": 13, + "poly": [ + 703, + 1303, + 778, + 1303, + 778, + 1336, + 703, + 1336 + ], + "score": 0.93, + "latex": "f ( \\cdot , y )" + }, + { + "category_id": 13, + "poly": [ + 297, + 1081, + 388, + 1081, + 388, + 1121, + 297, + 1121 + ], + "score": 0.93, + "latex": "h _ { f } ^ { k } , h _ { g } ^ { k , t }" + }, + { + "category_id": 13, + "poly": [ + 1042, + 417, + 1127, + 417, + 1127, + 450, + 1042, + 450 + ], + "score": 0.92, + "latex": "\\nabla F ( x )" + }, + { + "category_id": 13, + "poly": [ + 379, + 1239, + 488, + 1239, + 488, + 1275, + 379, + 1275 + ], + "score": 0.92, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 5 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1014, + 647, + 1087, + 647, + 1087, + 680, + 1014, + 680 + ], + "score": 0.92, + "latex": "f ( \\cdot , y )" + }, + { + "category_id": 13, + "poly": [ + 665, + 1516, + 897, + 1516, + 897, + 1550, + 665, + 1550 + ], + "score": 0.92, + "latex": "f ( x , y ; \\xi ) : = f ( y ; \\xi )" + }, + { + "category_id": 13, + "poly": [ + 423, + 288, + 697, + 288, + 697, + 322, + 423, + 322 + ], + "score": 0.92, + "latex": "\\bar { g ( x , y ; \\phi ) } = - f ( x , y ; \\xi )" + }, + { + "category_id": 13, + "poly": [ + 626, + 1082, + 741, + 1082, + 741, + 1117, + 626, + 1117 + ], + "score": 0.92, + "latex": "\\mathcal { O } ( \\kappa ^ { 3 } \\epsilon ^ { - 2 } )" + }, + { + "category_id": 14, + "poly": [ + 386, + 1589, + 1311, + 1589, + 1311, + 1688, + 386, + 1688 + ], + "score": 0.92, + "latex": "\\begin{array} { r l } & { \\nabla F ( x ) : = \\nabla _ { x } f \\big ( x , y ^ { * } ( x ) \\big ) - \\nabla _ { x y } ^ { 2 } g ( x , y ^ { * } ( x ) ) \\big [ \\nabla _ { y y } ^ { 2 } g ( x , y ^ { * } ( x ) ) \\big ] ^ { - 1 } \\nabla _ { y } f ( x , y ^ { * } ( x ) ) } \\\\ & { \\qquad = \\nabla h ( x ; \\phi ) ^ { \\top } \\nabla _ { y } f ( y ^ { * } ( x ) ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 773, + 1765, + 862, + 1765, + 862, + 1806, + 773, + 1806 + ], + "score": 0.92, + "latex": "h _ { f } ^ { k } , h _ { g } ^ { k , t }" + }, + { + "category_id": 13, + "poly": [ + 618, + 1736, + 701, + 1736, + 701, + 1768, + 618, + 1768 + ], + "score": 0.92, + "latex": "\\nabla F ( x )" + }, + { + "category_id": 13, + "poly": [ + 818, + 678, + 906, + 678, + 906, + 714, + 818, + 714 + ], + "score": 0.92, + "latex": "y \\in \\mathbb { R } ^ { d ^ { \\prime } }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1206, + 385, + 1206, + 385, + 1241, + 298, + 1241 + ], + "score": 0.91, + "latex": "\\mathsf { \\bar { \\mathcal { O } } } ( \\epsilon ^ { - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 841, + 1301, + 932, + 1301, + 932, + 1332, + 841, + 1332 + ], + "score": 0.91, + "latex": "x \\in \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 1261, + 1516, + 1405, + 1516, + 1405, + 1550, + 1261, + 1550 + ], + "score": 0.91, + "latex": "g ( x , y ; \\phi ) =" + }, + { + "category_id": 13, + "poly": [ + 429, + 682, + 504, + 682, + 504, + 716, + 429, + 716 + ], + "score": 0.91, + "latex": "f ( x , \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 298, + 989, + 421, + 989, + 421, + 1026, + 298, + 1026 + ], + "score": 0.91, + "latex": "\\mathcal { O } ( K ^ { - 1 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1062, + 1735, + 1128, + 1735, + 1128, + 1768, + 1062, + 1768 + ], + "score": 0.91, + "latex": "y ^ { \\ast } ( x )" + }, + { + "category_id": 14, + "poly": [ + 501, + 491, + 1198, + 491, + 1198, + 538, + 501, + 538 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { h _ { g } ^ { k , t } = - \\nabla _ { y } f ( x ^ { k } , y ^ { k , t } ; \\xi _ { 1 } ^ { k , t } ) ~ \\mathrm { a n d } ~ h _ { f } ^ { k } = \\nabla _ { x } f ( x ^ { k } , y ^ { k + 1 } ; \\xi _ { 2 } ^ { k } ) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1124, + 937, + 1226, + 937, + 1226, + 972, + 1124, + 972 + ], + "score": 0.91, + "latex": "\\{ \\alpha _ { k } , \\beta _ { k } \\}" + }, + { + "category_id": 13, + "poly": [ + 298, + 416, + 523, + 416, + 523, + 450, + 298, + 450 + ], + "score": 0.91, + "latex": "\\nabla _ { y } f ( x , y ^ { * } ( x ) ) = 0" + }, + { + "category_id": 13, + "poly": [ + 394, + 450, + 459, + 450, + 459, + 480, + 394, + 480 + ], + "score": 0.9, + "latex": "y ^ { * } ( x )" + }, + { + "category_id": 14, + "poly": [ + 430, + 333, + 1268, + 333, + 1268, + 377, + 430, + 377 + ], + "score": 0.89, + "latex": "\\nabla F ( x ) : = \\nabla _ { x } f { \\big ( } x , y ^ { * } ( x ) { \\big ) } + \\nabla _ { x } y ^ { * } ( x ) ^ { \\top } \\nabla _ { y } f { \\big ( } x , y ^ { * } ( x ) { \\big ) } = \\nabla _ { x } f { \\big ( } x , y ^ { * } ( x ) { \\big ) }" + }, + { + "category_id": 14, + "poly": [ + 461, + 1815, + 1238, + 1815, + 1238, + 1861, + 461, + 1861 + ], + "score": 0.89, + "latex": "h _ { g } ^ { k , t } = h _ { g } ^ { k } = y ^ { k } - h ( x ^ { k } ; \\phi ^ { k } ) ~ \\mathrm { a n d } ~ h _ { f } ^ { k } = \\nabla h ( x ^ { k } ; \\phi ^ { k } ) \\nabla f ( y ^ { k + 1 } ; \\xi ^ { k } ) ." + }, + { + "category_id": 13, + "poly": [ + 660, + 577, + 733, + 577, + 733, + 604, + 660, + 604 + ], + "score": 0.89, + "latex": "T = 1" + }, + { + "category_id": 13, + "poly": [ + 979, + 1061, + 1403, + 1061, + 1403, + 1098, + 979, + 1098 + ], + "score": 0.89, + "latex": "y ^ { k , t + 1 } = y ^ { k , t } - \\beta _ { k } \\nabla _ { y } f ( x ^ { k } , y ^ { k , t } ; \\xi _ { 1 } ^ { k , t } )" + }, + { + "category_id": 13, + "poly": [ + 1049, + 680, + 1194, + 680, + 1194, + 716, + 1049, + 716 + ], + "score": 0.89, + "latex": "\\alpha = \\Theta ( \\kappa ^ { - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 369, + 1901, + 442, + 1901, + 442, + 1927, + 369, + 1927 + ], + "score": 0.88, + "latex": "T = 1" + }, + { + "category_id": 13, + "poly": [ + 618, + 1698, + 1257, + 1698, + 1257, + 1737, + 618, + 1737 + ], + "score": 0.88, + "latex": "\\nabla _ { y y } ^ { 2 } g ( x , y ; \\phi ) = \\mathbf { I } _ { d ^ { \\prime } \\times d ^ { \\prime } } , \\nabla _ { x y } ^ { 2 } g ( x , y ; \\phi ) = - \\nabla h ( x ; \\phi ) ^ { \\top }" + }, + { + "category_id": 13, + "poly": [ + 1316, + 646, + 1401, + 646, + 1401, + 675, + 1316, + 675 + ], + "score": 0.88, + "latex": "x \\in \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1768, + 371, + 1768, + 371, + 1795, + 298, + 1795 + ], + "score": 0.88, + "latex": "T = 1" + }, + { + "category_id": 13, + "poly": [ + 297, + 954, + 712, + 954, + 712, + 991, + 297, + 991 + ], + "score": 0.88, + "latex": "\\begin{array} { r } { F ( x ) \\ \\mathrel { \\mathop : } = \\ \\operatorname* { m a x } _ { y \\in \\mathbb { R } ^ { d ^ { \\prime } } } \\mathbb { E } _ { \\xi } \\left[ f ( x , y ; \\xi ) \\right] } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 940, + 1153, + 1344, + 1153, + 1344, + 1188, + 940, + 1188 + ], + "score": 0.88, + "latex": "\\boldsymbol { x } ^ { k + \\mathrm { i } } = x ^ { k } - \\alpha _ { k } \\nabla _ { x } f ( x ^ { k } , y ^ { k + 1 } ; \\xi _ { 2 } ^ { k } )" + }, + { + "category_id": 13, + "poly": [ + 1205, + 681, + 1324, + 681, + 1324, + 716, + 1205, + 716 + ], + "score": 0.86, + "latex": "T = \\Theta ( \\kappa )" + }, + { + "category_id": 13, + "poly": [ + 936, + 935, + 1007, + 935, + 1007, + 969, + 936, + 969 + ], + "score": 0.84, + "latex": "x ^ { 0 } , y ^ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 917, + 1741, + 935, + 1741, + 935, + 1767, + 917, + 1767 + ], + "score": 0.82, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 530, + 581, + 548, + 581, + 548, + 609, + 530, + 609 + ], + "score": 0.81, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 897, + 997, + 1011, + 997, + 1011, + 1030, + 897, + 1030 + ], + "score": 0.81, + "latex": "y ^ { k , 0 } = y ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1334, + 683, + 1404, + 683, + 1404, + 715, + 1334, + 715 + ], + "score": 0.8, + "latex": "\\eta = 1" + }, + { + "category_id": 13, + "poly": [ + 1354, + 427, + 1371, + 427, + 1371, + 449, + 1354, + 449 + ], + "score": 0.79, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 896, + 1121, + 1044, + 1121, + 1044, + 1154, + 896, + 1154 + ], + "score": 0.77, + "latex": "y ^ { k + 1 } = y ^ { k , T }" + }, + { + "category_id": 13, + "poly": [ + 611, + 998, + 626, + 998, + 626, + 1020, + 611, + 1020 + ], + "score": 0.7, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 859, + 969, + 1088, + 969, + 1088, + 998, + 859, + 998 + ], + "score": 0.7, + "latex": "k = 0 , 1 , \\ldots , K - 1" + }, + { + "category_id": 13, + "poly": [ + 1382, + 621, + 1397, + 621, + 1397, + 644, + 1382, + 644 + ], + "score": 0.54, + "latex": "I" + }, + { + "category_id": 13, + "poly": [ + 872, + 649, + 886, + 649, + 886, + 673, + 872, + 673 + ], + "score": 0.52, + "latex": "^ { l }" + }, + { + "category_id": 13, + "poly": [ + 900, + 1030, + 1119, + 1030, + 1119, + 1060, + 900, + 1060 + ], + "score": 0.42, + "latex": "t = 0 , 1 , \\dots , T - 1" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 199.0, + 718.0, + 199.0, + 718.0, + 240.0, + 293.0, + 240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1424.0, + 776.0, + 1424.0, + 776.0, + 1470.0, + 292.0, + 1470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2058.0, + 861.0, + 2058.0, + 861.0, + 2089.0, + 839.0, + 2089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 884.0, + 1339.0, + 884.0, + 1339.0, + 932.0, + 765.0, + 932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1693.0, + 617.0, + 1693.0, + 617.0, + 1745.0, + 290.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 1693.0, + 1410.0, + 1693.0, + 1410.0, + 1745.0, + 1258.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1730.0, + 617.0, + 1730.0, + 617.0, + 1771.0, + 293.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 1730.0, + 916.0, + 1730.0, + 916.0, + 1771.0, + 702.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 936.0, + 1730.0, + 1061.0, + 1730.0, + 1061.0, + 1771.0, + 936.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 1730.0, + 1404.0, + 1730.0, + 1404.0, + 1771.0, + 1129.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1761.0, + 297.0, + 1761.0, + 297.0, + 1809.0, + 291.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 1761.0, + 772.0, + 1761.0, + 772.0, + 1809.0, + 372.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 1761.0, + 1400.0, + 1761.0, + 1400.0, + 1809.0, + 863.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 614.0, + 1381.0, + 614.0, + 1381.0, + 651.0, + 294.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 614.0, + 1408.0, + 614.0, + 1408.0, + 651.0, + 1398.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 642.0, + 871.0, + 642.0, + 871.0, + 684.0, + 290.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 642.0, + 1013.0, + 642.0, + 1013.0, + 684.0, + 887.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1088.0, + 642.0, + 1315.0, + 642.0, + 1315.0, + 684.0, + 1088.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 642.0, + 1409.0, + 642.0, + 1409.0, + 684.0, + 1402.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 678.0, + 428.0, + 678.0, + 428.0, + 718.0, + 291.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 678.0, + 817.0, + 678.0, + 817.0, + 718.0, + 505.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 678.0, + 1048.0, + 678.0, + 1048.0, + 718.0, + 907.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 678.0, + 1204.0, + 678.0, + 1204.0, + 718.0, + 1195.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1325.0, + 678.0, + 1333.0, + 678.0, + 1333.0, + 718.0, + 1325.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1405.0, + 678.0, + 1408.0, + 678.0, + 1408.0, + 718.0, + 1405.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 712.0, + 884.0, + 712.0, + 884.0, + 749.0, + 294.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1484.0, + 1406.0, + 1484.0, + 1406.0, + 1522.0, + 293.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1516.0, + 664.0, + 1516.0, + 664.0, + 1553.0, + 293.0, + 1553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 1516.0, + 1260.0, + 1516.0, + 1260.0, + 1553.0, + 898.0, + 1553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 471.0, + 1545.0, + 936.0, + 1545.0, + 936.0, + 1582.0, + 471.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 382.0, + 1409.0, + 382.0, + 1409.0, + 423.0, + 293.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 413.0, + 297.0, + 413.0, + 297.0, + 454.0, + 294.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 413.0, + 1041.0, + 413.0, + 1041.0, + 454.0, + 524.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 413.0, + 1353.0, + 413.0, + 1353.0, + 454.0, + 1128.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1372.0, + 413.0, + 1409.0, + 413.0, + 1409.0, + 454.0, + 1372.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 446.0, + 393.0, + 446.0, + 393.0, + 482.0, + 293.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 460.0, + 446.0, + 1351.0, + 446.0, + 1351.0, + 482.0, + 460.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 862.0, + 753.0, + 862.0, + 753.0, + 895.0, + 295.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 894.0, + 751.0, + 894.0, + 751.0, + 927.0, + 295.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 919.0, + 752.0, + 919.0, + 752.0, + 959.0, + 294.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 948.0, + 296.0, + 948.0, + 296.0, + 995.0, + 292.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 948.0, + 754.0, + 948.0, + 754.0, + 995.0, + 713.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 983.0, + 297.0, + 983.0, + 297.0, + 1030.0, + 293.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 422.0, + 983.0, + 610.0, + 983.0, + 610.0, + 1030.0, + 422.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 983.0, + 753.0, + 983.0, + 753.0, + 1030.0, + 627.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1022.0, + 479.0, + 1022.0, + 479.0, + 1055.0, + 293.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 1022.0, + 752.0, + 1022.0, + 752.0, + 1055.0, + 671.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1051.0, + 752.0, + 1051.0, + 752.0, + 1086.0, + 294.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1075.0, + 296.0, + 1075.0, + 296.0, + 1121.0, + 291.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 1075.0, + 445.0, + 1075.0, + 445.0, + 1121.0, + 389.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 1075.0, + 625.0, + 1075.0, + 625.0, + 1121.0, + 562.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 1075.0, + 754.0, + 1075.0, + 754.0, + 1121.0, + 742.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1116.0, + 750.0, + 1116.0, + 750.0, + 1151.0, + 294.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1145.0, + 753.0, + 1145.0, + 753.0, + 1183.0, + 294.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1177.0, + 751.0, + 1177.0, + 751.0, + 1211.0, + 294.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1203.0, + 297.0, + 1203.0, + 297.0, + 1244.0, + 293.0, + 1244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 1203.0, + 754.0, + 1203.0, + 754.0, + 1244.0, + 386.0, + 1244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1237.0, + 378.0, + 1237.0, + 378.0, + 1278.0, + 291.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 489.0, + 1237.0, + 757.0, + 1237.0, + 757.0, + 1278.0, + 489.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1272.0, + 1406.0, + 1272.0, + 1406.0, + 1308.0, + 293.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1301.0, + 702.0, + 1301.0, + 702.0, + 1337.0, + 292.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 779.0, + 1301.0, + 840.0, + 1301.0, + 840.0, + 1337.0, + 779.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 1301.0, + 1406.0, + 1301.0, + 1406.0, + 1337.0, + 933.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1332.0, + 1407.0, + 1332.0, + 1407.0, + 1369.0, + 291.0, + 1369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1364.0, + 1322.0, + 1364.0, + 1322.0, + 1400.0, + 295.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 257.0, + 1405.0, + 257.0, + 1405.0, + 293.0, + 295.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 288.0, + 422.0, + 288.0, + 422.0, + 324.0, + 295.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 288.0, + 1164.0, + 288.0, + 1164.0, + 324.0, + 698.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1869.0, + 1409.0, + 1869.0, + 1409.0, + 1904.0, + 295.0, + 1904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1897.0, + 368.0, + 1897.0, + 368.0, + 1934.0, + 295.0, + 1934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 1897.0, + 1099.0, + 1897.0, + 1099.0, + 1934.0, + 443.0, + 1934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 929.0, + 935.0, + 929.0, + 935.0, + 974.0, + 780.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 929.0, + 1123.0, + 929.0, + 1123.0, + 974.0, + 1008.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 929.0, + 1238.0, + 929.0, + 1238.0, + 974.0, + 1227.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 779.0, + 965.0, + 858.0, + 965.0, + 858.0, + 1000.0, + 779.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 965.0, + 1129.0, + 965.0, + 1129.0, + 1000.0, + 1089.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 998.0, + 813.0, + 998.0, + 813.0, + 1031.0, + 780.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 992.0, + 896.0, + 992.0, + 896.0, + 1034.0, + 852.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 992.0, + 1016.0, + 992.0, + 1016.0, + 1034.0, + 1012.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 1030.0, + 811.0, + 1030.0, + 811.0, + 1060.0, + 781.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 1028.0, + 899.0, + 1028.0, + 899.0, + 1060.0, + 857.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 1028.0, + 1159.0, + 1028.0, + 1159.0, + 1060.0, + 1120.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 1062.0, + 812.0, + 1062.0, + 812.0, + 1096.0, + 780.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 1054.0, + 978.0, + 1054.0, + 978.0, + 1103.0, + 893.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 1054.0, + 1408.0, + 1054.0, + 1408.0, + 1103.0, + 1404.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 1096.0, + 811.0, + 1096.0, + 811.0, + 1126.0, + 781.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 1093.0, + 952.0, + 1093.0, + 952.0, + 1125.0, + 855.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 1125.0, + 811.0, + 1125.0, + 811.0, + 1156.0, + 781.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 1117.0, + 895.0, + 1117.0, + 895.0, + 1156.0, + 851.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 1117.0, + 1052.0, + 1117.0, + 1052.0, + 1156.0, + 1045.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 779.0, + 1154.0, + 813.0, + 1154.0, + 813.0, + 1187.0, + 779.0, + 1187.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 1145.0, + 939.0, + 1145.0, + 939.0, + 1192.0, + 851.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 1182.0, + 911.0, + 1182.0, + 911.0, + 1218.0, + 776.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 545.0, + 1409.0, + 545.0, + 1409.0, + 581.0, + 295.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 576.0, + 529.0, + 576.0, + 529.0, + 612.0, + 295.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 549.0, + 576.0, + 659.0, + 576.0, + 659.0, + 612.0, + 549.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 576.0, + 1410.0, + 576.0, + 1410.0, + 612.0, + 734.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1942.0, + 1408.0, + 1942.0, + 1408.0, + 1983.0, + 292.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1974.0, + 1261.0, + 1974.0, + 1261.0, + 2010.0, + 293.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 884.0, + 1339.0, + 884.0, + 1339.0, + 932.0, + 765.0, + 932.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 788, + 1405, + 788, + 1405, + 913, + 297, + 913 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 296, + 1373, + 1405, + 1373, + 1405, + 1475, + 296, + 1475 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 297, + 967, + 1404, + 967, + 1404, + 1076, + 297, + 1076 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 297, + 1523, + 1404, + 1523, + 1404, + 1622, + 297, + 1622 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 297, + 391, + 751, + 391, + 751, + 545, + 297, + 545 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 298, + 1709, + 1400, + 1709, + 1400, + 1803, + 298, + 1803 + ], + "score": 0.962 + }, + { + "category_id": 1, + "poly": [ + 295, + 1631, + 1401, + 1631, + 1401, + 1697, + 295, + 1697 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 620, + 1889, + 1081, + 1889, + 1081, + 1967, + 620, + 1967 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 299, + 714, + 1403, + 714, + 1403, + 777, + 299, + 777 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 294, + 545, + 1405, + 545, + 1405, + 607, + 294, + 607 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 295, + 1808, + 1400, + 1808, + 1400, + 1878, + 295, + 1878 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 292, + 1301, + 1403, + 1301, + 1403, + 1363, + 292, + 1363 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 294, + 1087, + 1403, + 1087, + 1403, + 1152, + 294, + 1152 + ], + "score": 0.938 + }, + { + "category_id": 8, + "poly": [ + 657, + 1481, + 1038, + 1481, + 1038, + 1519, + 657, + 1519 + ], + "score": 0.938 + }, + { + "category_id": 0, + "poly": [ + 297, + 646, + 880, + 646, + 880, + 685, + 297, + 685 + ], + "score": 0.937 + }, + { + "category_id": 8, + "poly": [ + 531, + 920, + 1163, + 920, + 1163, + 961, + 531, + 961 + ], + "score": 0.936 + }, + { + "category_id": 1, + "poly": [ + 294, + 202, + 1402, + 202, + 1402, + 273, + 294, + 273 + ], + "score": 0.934 + }, + { + "category_id": 1, + "poly": [ + 782, + 347, + 1414, + 347, + 1414, + 506, + 782, + 506 + ], + "score": 0.934 + }, + { + "category_id": 8, + "poly": [ + 520, + 1161, + 1176, + 1161, + 1176, + 1202, + 520, + 1202 + ], + "score": 0.924 + }, + { + "category_id": 8, + "poly": [ + 291, + 292, + 687, + 292, + 687, + 373, + 291, + 373 + ], + "score": 0.923 + }, + { + "category_id": 1, + "poly": [ + 296, + 1976, + 1403, + 1976, + 1403, + 2009, + 296, + 2009 + ], + "score": 0.922 + }, + { + "category_id": 8, + "poly": [ + 655, + 1254, + 1042, + 1254, + 1042, + 1296, + 655, + 1296 + ], + "score": 0.917 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1483, + 1400, + 1483, + 1400, + 1513, + 1352, + 1513 + ], + "score": 0.899 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1166, + 1400, + 1166, + 1400, + 1196, + 1351, + 1196 + ], + "score": 0.895 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1258, + 1400, + 1258, + 1400, + 1289, + 1352, + 1289 + ], + "score": 0.894 + }, + { + "category_id": 9, + "poly": [ + 1356, + 1913, + 1400, + 1913, + 1400, + 1942, + 1356, + 1942 + ], + "score": 0.892 + }, + { + "category_id": 9, + "poly": [ + 1351, + 923, + 1400, + 923, + 1400, + 953, + 1351, + 953 + ], + "score": 0.886 + }, + { + "category_id": 1, + "poly": [ + 293, + 1208, + 1277, + 1208, + 1277, + 1248, + 293, + 1248 + ], + "score": 0.883 + }, + { + "category_id": 2, + "poly": [ + 840, + 2061, + 859, + 2061, + 859, + 2084, + 840, + 2084 + ], + "score": 0.826 + }, + { + "category_id": 9, + "poly": [ + 719, + 320, + 761, + 320, + 761, + 345, + 719, + 345 + ], + "score": 0.75 + }, + { + "category_id": 1, + "poly": [ + 769, + 301, + 1398, + 301, + 1398, + 336, + 769, + 336 + ], + "score": 0.456 + }, + { + "category_id": 0, + "poly": [ + 769, + 301, + 1398, + 301, + 1398, + 336, + 769, + 336 + ], + "score": 0.436 + }, + { + "category_id": 13, + "poly": [ + 404, + 1039, + 583, + 1039, + 583, + 1077, + 404, + 1077 + ], + "score": 0.94, + "latex": "V _ { \\pi _ { \\theta } } ( s ) \\approx \\hat { V } _ { y } ( s )" + }, + { + "category_id": 13, + "poly": [ + 1015, + 1374, + 1268, + 1374, + 1268, + 1410, + 1015, + 1410 + ], + "score": 0.93, + "latex": "F ( \\theta ) : = \\mathbb { E } _ { s \\sim \\eta } [ V _ { \\pi _ { \\theta } } ( s ) ]" + }, + { + "category_id": 14, + "poly": [ + 289, + 289, + 690, + 289, + 690, + 376, + 289, + 376 + ], + "score": 0.93, + "latex": "\\frac { 1 } { K } \\sum _ { k = 1 } ^ { K } \\mathbb { E } \\left[ \\left\\| \\nabla F ( x ^ { k } ) \\right\\| ^ { 2 } \\right] = \\mathcal { O } \\Big ( \\frac { 1 } { \\sqrt { K } } \\Big ) ." + }, + { + "category_id": 13, + "poly": [ + 851, + 789, + 1100, + 789, + 1100, + 824, + 851, + 824 + ], + "score": 0.93, + "latex": "\\mathcal { M } = \\{ { \\cal S } , \\mathcal { A } , \\mathcal { P } , { \\cal R } , \\gamma \\}" + }, + { + "category_id": 14, + "poly": [ + 620, + 1886, + 1080, + 1886, + 1080, + 1971, + 620, + 1971 + ], + "score": 0.93, + "latex": "\\frac { 1 } { K } \\sum _ { k = 1 } ^ { K } \\mathbb { E } \\left[ \\| \\nabla F ( \\theta _ { k } ) \\| ^ { 2 } \\right] = \\mathcal { O } \\left( \\frac { 1 } { \\sqrt { K } } \\right) + \\epsilon _ { \\mathrm { a p p } }" + }, + { + "category_id": 13, + "poly": [ + 976, + 851, + 1071, + 851, + 1071, + 883, + 976, + 883 + ], + "score": 0.93, + "latex": "( s , a , s ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 838, + 881, + 917, + 881, + 917, + 915, + 838, + 915 + ], + "score": 0.93, + "latex": "V _ { \\pi _ { \\theta } } ( s )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1589, + 465, + 1589, + 465, + 1626, + 298, + 1626 + ], + "score": 0.93, + "latex": "\\pi _ { \\boldsymbol { \\theta } _ { k } } , s _ { k + 1 } ^ { \\prime } \\sim \\mathcal { P }" + }, + { + "category_id": 13, + "poly": [ + 1097, + 543, + 1185, + 543, + 1185, + 578, + 1097, + 578 + ], + "score": 0.92, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 4 } )" + }, + { + "category_id": 13, + "poly": [ + 610, + 232, + 905, + 232, + 905, + 275, + 610, + 275 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { T ^ { } = 1 , \\alpha = 1 , \\eta = \\frac { 1 } { L _ { y x } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 548, + 820, + 661, + 820, + 661, + 853, + 548, + 853 + ], + "score": 0.92, + "latex": "\\mathcal { P } ( s ^ { \\prime } | s , a )" + }, + { + "category_id": 13, + "poly": [ + 297, + 1000, + 612, + 1000, + 612, + 1040, + 297, + 1040 + ], + "score": 0.92, + "latex": "V _ { \\pi _ { \\boldsymbol { \\theta } } } ( s ) \\approx \\hat { V } _ { y } ( s ) : = \\boldsymbol { \\phi } ( s ) ^ { \\top } \\boldsymbol { y }" + }, + { + "category_id": 13, + "poly": [ + 325, + 512, + 412, + 512, + 412, + 547, + 325, + 547 + ], + "score": 0.92, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 327, + 1119, + 553, + 1119, + 553, + 1152, + 327, + 1152 + ], + "score": 0.92, + "latex": "\\xi _ { k } : = ( s _ { k } , a _ { k } , s _ { k + 1 } )" + }, + { + "category_id": 13, + "poly": [ + 1133, + 851, + 1249, + 851, + 1249, + 883, + 1133, + 883 + ], + "score": 0.92, + "latex": "\\gamma \\in [ 0 , 1 )" + }, + { + "category_id": 13, + "poly": [ + 514, + 852, + 632, + 852, + 632, + 883, + 514, + 883 + ], + "score": 0.92, + "latex": "R ( s , a , s ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 671, + 967, + 860, + 967, + 860, + 1002, + 671, + 1002 + ], + "score": 0.92, + "latex": "\\phi ( \\cdot ) : \\mathcal { S } \\mathbb { R } ^ { d _ { y } }" + }, + { + "category_id": 13, + "poly": [ + 548, + 1209, + 923, + 1209, + 923, + 1248, + 548, + 1248 + ], + "score": 0.91, + "latex": "h _ { g } ( \\xi _ { k } , y _ { k } ) : = \\hat { \\delta } ( \\xi _ { k } , y _ { k } ) \\nabla \\hat { V } _ { y _ { k } } ( s _ { k } )" + }, + { + "category_id": 13, + "poly": [ + 903, + 1837, + 1113, + 1837, + 1113, + 1881, + 903, + 1881 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\beta _ { k } = \\beta = \\mathcal { O } ( \\frac { 1 } { \\sqrt { K } } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 699, + 1004, + 796, + 1004, + 796, + 1037, + 699, + 1037 + ], + "score": 0.91, + "latex": "\\boldsymbol { y } \\in \\mathbb { R } ^ { d _ { y } }" + }, + { + "category_id": 13, + "poly": [ + 625, + 1524, + 919, + 1524, + 919, + 1558, + 625, + 1558 + ], + "score": 0.91, + "latex": "\\psi _ { \\boldsymbol \\theta } ( s , a ) : = \\nabla \\log \\pi _ { \\boldsymbol \\theta } ( a | s )" + }, + { + "category_id": 13, + "poly": [ + 705, + 1302, + 757, + 1302, + 757, + 1336, + 705, + 1336 + ], + "score": 0.91, + "latex": "\\Pi _ { R _ { y } }" + }, + { + "category_id": 13, + "poly": [ + 1283, + 822, + 1353, + 822, + 1353, + 849, + 1283, + 849 + ], + "score": 0.9, + "latex": "s \\in S" + }, + { + "category_id": 14, + "poly": [ + 655, + 1254, + 1041, + 1254, + 1041, + 1296, + 655, + 1296 + ], + "score": 0.9, + "latex": "y _ { k + 1 } = \\Pi _ { R _ { y } } \\big ( y _ { k } + \\beta _ { k } h _ { g } ( \\xi _ { k } , y _ { k } ) \\big ) ," + }, + { + "category_id": 13, + "poly": [ + 526, + 1590, + 565, + 1590, + 565, + 1622, + 526, + 1622 + ], + "score": 0.9, + "latex": "d _ { \\theta _ { k } }" + }, + { + "category_id": 13, + "poly": [ + 1074, + 821, + 1152, + 821, + 1152, + 849, + 1074, + 849 + ], + "score": 0.9, + "latex": "s ^ { \\prime } \\in \\mathcal { S }" + }, + { + "category_id": 13, + "poly": [ + 530, + 1332, + 567, + 1332, + 567, + 1365, + 530, + 1365 + ], + "score": 0.9, + "latex": "R _ { y }" + }, + { + "category_id": 13, + "poly": [ + 1175, + 1523, + 1403, + 1523, + 1403, + 1559, + 1175, + 1559 + ], + "score": 0.9, + "latex": "\\xi _ { k } ^ { \\prime } : = ( s _ { k } ^ { \\prime } , a _ { k } ^ { \\prime } , s _ { k + 1 } ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 669, + 1436, + 1002, + 1436, + 1002, + 1476, + 669, + 1476 + ], + "score": 0.9, + "latex": "h _ { f } ( \\xi , \\theta , y ) : = \\hat { \\delta } ( \\xi , \\bar { y ) \\psi } _ { \\theta } ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 937, + 442, + 1415, + 442, + 1415, + 476, + 937, + 476 + ], + "score": 0.9, + "latex": "x ^ { k + 1 } = x ^ { k } - \\alpha _ { k } \\nabla f ( y ^ { k + 1 } ; \\xi ^ { k } ) \\nabla h ( x ^ { k } ; \\phi ^ { k } )" + }, + { + "category_id": 13, + "poly": [ + 1124, + 349, + 1226, + 349, + 1226, + 383, + 1124, + 383 + ], + "score": 0.89, + "latex": "\\{ \\alpha _ { k } , \\beta _ { k } \\}" + }, + { + "category_id": 13, + "poly": [ + 375, + 851, + 452, + 851, + 452, + 880, + 375, + 880 + ], + "score": 0.89, + "latex": "a \\in { \\mathcal { A } }" + }, + { + "category_id": 13, + "poly": [ + 677, + 1838, + 890, + 1838, + 890, + 1881, + 677, + 1881 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { \\alpha _ { k } = \\alpha = \\overset { \\cdot } { \\mathcal { O } } ( \\frac { 1 } { \\sqrt { K } } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 975, + 1558, + 1005, + 1558, + 1005, + 1592, + 975, + 1592 + ], + "score": 0.89, + "latex": "\\xi _ { k } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1210, + 1560, + 1404, + 1560, + 1404, + 1592, + 1210, + 1592 + ], + "score": 0.89, + "latex": "s _ { k } ^ { \\prime } \\sim d _ { \\theta _ { k } } , a _ { k } ^ { \\prime } \\sim" + }, + { + "category_id": 14, + "poly": [ + 658, + 1481, + 1036, + 1481, + 1036, + 1518, + 658, + 1518 + ], + "score": 0.89, + "latex": "\\theta _ { k + 1 } = \\theta _ { k } + \\alpha _ { k } h _ { f } ( \\xi _ { k } ^ { \\prime } , \\theta _ { k } , y _ { k + 1 } ) ," + }, + { + "category_id": 13, + "poly": [ + 374, + 1302, + 406, + 1302, + 406, + 1332, + 374, + 1332 + ], + "score": 0.89, + "latex": "\\beta _ { k }" + }, + { + "category_id": 14, + "poly": [ + 524, + 1159, + 1176, + 1159, + 1176, + 1200, + 524, + 1200 + ], + "score": 0.88, + "latex": "\\hat { \\delta } ( \\xi _ { k } , y _ { k } ) : = r ( s _ { k } , a _ { k } , s _ { k + 1 } ) + \\gamma \\phi ( s _ { k + 1 } ) ^ { \\top } y _ { k } - \\phi ( s _ { k } ) ^ { \\top } y _ { k }" + }, + { + "category_id": 14, + "poly": [ + 535, + 920, + 1163, + 920, + 1163, + 959, + 535, + 959 + ], + "score": 0.88, + "latex": "\\begin{array} { r } { V _ { \\pi _ { \\theta } } ( s ) = \\mathbb { E } _ { a \\sim \\pi _ { \\theta } ( . | s ) , s ^ { \\prime } \\sim \\mathcal { P } ( \\cdot | s , a ) } \\left[ r ( s , a , s ^ { \\prime } ) + \\gamma V _ { \\pi _ { \\theta } } ( s ^ { \\prime } ) \\right] . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 298, + 422, + 358, + 422, + 358, + 456, + 298, + 456 + ], + "score": 0.87, + "latex": "\\mathcal { O } ( 1 )" + }, + { + "category_id": 13, + "poly": [ + 687, + 1560, + 718, + 1560, + 718, + 1591, + 687, + 1591 + ], + "score": 0.87, + "latex": "\\xi _ { k }" + }, + { + "category_id": 13, + "poly": [ + 1218, + 1592, + 1247, + 1592, + 1247, + 1619, + 1218, + 1619 + ], + "score": 0.86, + "latex": "\\theta _ { k }" + }, + { + "category_id": 13, + "poly": [ + 369, + 1979, + 419, + 1979, + 419, + 2010, + 369, + 2010 + ], + "score": 0.86, + "latex": "\\epsilon _ { \\mathrm { a p p } }" + }, + { + "category_id": 13, + "poly": [ + 1051, + 1090, + 1081, + 1090, + 1081, + 1119, + 1051, + 1119 + ], + "score": 0.86, + "latex": "\\theta _ { k }" + }, + { + "category_id": 13, + "poly": [ + 373, + 1529, + 407, + 1529, + 407, + 1555, + 373, + 1555 + ], + "score": 0.86, + "latex": "\\alpha _ { k }" + }, + { + "category_id": 13, + "poly": [ + 515, + 887, + 545, + 887, + 545, + 912, + 515, + 912 + ], + "score": 0.85, + "latex": "\\pi _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 1115, + 1093, + 1157, + 1093, + 1157, + 1121, + 1115, + 1121 + ], + "score": 0.84, + "latex": "\\mu _ { \\theta _ { k } }" + }, + { + "category_id": 13, + "poly": [ + 940, + 408, + 1320, + 408, + 1320, + 442, + 940, + 442 + ], + "score": 0.84, + "latex": "y ^ { k + 1 } = y ^ { k } - \\beta _ { k } ( y ^ { k } - h ( x ^ { k } ; \\phi ^ { k } ) )" + }, + { + "category_id": 13, + "poly": [ + 936, + 347, + 1007, + 347, + 1007, + 381, + 936, + 381 + ], + "score": 0.84, + "latex": "x ^ { 0 } , y ^ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1184, + 792, + 1207, + 792, + 1207, + 818, + 1184, + 818 + ], + "score": 0.82, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1216, + 1220, + 1234, + 1220, + 1234, + 1246, + 1216, + 1246 + ], + "score": 0.82, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 1356, + 1381, + 1375, + 1381, + 1375, + 1408, + 1356, + 1408 + ], + "score": 0.81, + "latex": "\\eta" + }, + { + "category_id": 13, + "poly": [ + 298, + 822, + 323, + 822, + 323, + 848, + 298, + 848 + ], + "score": 0.8, + "latex": "\\mathcal { A }" + }, + { + "category_id": 13, + "poly": [ + 784, + 1374, + 953, + 1374, + 953, + 1409, + 784, + 1409 + ], + "score": 0.75, + "latex": "{ \\mathrm { m a x } } _ { \\theta \\in \\mathbb { R } ^ { d } } F ( \\theta )" + }, + { + "category_id": 13, + "poly": [ + 859, + 381, + 1090, + 381, + 1090, + 410, + 859, + 410 + ], + "score": 0.74, + "latex": "k = 0 , 1 , \\ldots , K - 1" + }, + { + "category_id": 13, + "poly": [ + 1383, + 1012, + 1402, + 1012, + 1402, + 1037, + 1383, + 1037 + ], + "score": 0.74, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 826, + 1123, + 1161, + 1123, + 1161, + 1152, + 826, + 1152 + ], + "score": 0.72, + "latex": "s _ { k } \\sim \\mu _ { \\theta _ { k } } , a \\sim \\pi _ { \\theta _ { k } } , s _ { k + 1 } \\sim \\mathcal { P }" + }, + { + "category_id": 13, + "poly": [ + 484, + 490, + 499, + 490, + 499, + 511, + 484, + 511 + ], + "score": 0.62, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1044, + 1122, + 1160, + 1122, + 1160, + 1152, + 1044, + 1152 + ], + "score": 0.54, + "latex": "s _ { k + 1 } \\sim \\mathcal { P }" + }, + { + "category_id": 13, + "poly": [ + 1250, + 1090, + 1267, + 1090, + 1267, + 1116, + 1250, + 1116 + ], + "score": 0.53, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 892, + 1374, + 952, + 1374, + 952, + 1409, + 892, + 1409 + ], + "score": 0.49, + "latex": "F ( \\theta )" + }, + { + "category_id": 13, + "poly": [ + 439, + 238, + 454, + 238, + 454, + 260, + 439, + 260 + ], + "score": 0.28, + "latex": "I" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 644.0, + 883.0, + 644.0, + 883.0, + 688.0, + 292.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2060.0, + 861.0, + 2060.0, + 861.0, + 2090.0, + 839.0, + 2090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 294.0, + 1398.0, + 294.0, + 1398.0, + 345.0, + 767.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 786.0, + 850.0, + 786.0, + 850.0, + 826.0, + 294.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 786.0, + 1183.0, + 786.0, + 1183.0, + 826.0, + 1101.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1208.0, + 786.0, + 1408.0, + 786.0, + 1408.0, + 826.0, + 1208.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 819.0, + 297.0, + 819.0, + 297.0, + 854.0, + 294.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 819.0, + 547.0, + 819.0, + 547.0, + 854.0, + 324.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 662.0, + 819.0, + 1073.0, + 819.0, + 1073.0, + 854.0, + 662.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 819.0, + 1282.0, + 819.0, + 1282.0, + 854.0, + 1153.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 819.0, + 1406.0, + 819.0, + 1406.0, + 854.0, + 1354.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 852.0, + 374.0, + 852.0, + 374.0, + 884.0, + 295.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 852.0, + 513.0, + 852.0, + 513.0, + 884.0, + 453.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 852.0, + 975.0, + 852.0, + 975.0, + 884.0, + 633.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 852.0, + 1132.0, + 852.0, + 1132.0, + 884.0, + 1072.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 852.0, + 1405.0, + 852.0, + 1405.0, + 884.0, + 1250.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 882.0, + 514.0, + 882.0, + 514.0, + 915.0, + 295.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 546.0, + 882.0, + 837.0, + 882.0, + 837.0, + 915.0, + 546.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 882.0, + 1361.0, + 882.0, + 1361.0, + 915.0, + 918.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1370.0, + 783.0, + 1370.0, + 783.0, + 1415.0, + 291.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 1370.0, + 1014.0, + 1370.0, + 1014.0, + 1415.0, + 954.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1269.0, + 1370.0, + 1355.0, + 1370.0, + 1355.0, + 1415.0, + 1269.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1376.0, + 1370.0, + 1406.0, + 1370.0, + 1406.0, + 1415.0, + 1376.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1404.0, + 1405.0, + 1404.0, + 1405.0, + 1444.0, + 293.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1437.0, + 668.0, + 1437.0, + 668.0, + 1481.0, + 293.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 1437.0, + 1349.0, + 1437.0, + 1349.0, + 1481.0, + 1003.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 961.0, + 670.0, + 961.0, + 670.0, + 1008.0, + 294.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 961.0, + 1408.0, + 961.0, + 1408.0, + 1008.0, + 861.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 1002.0, + 698.0, + 1002.0, + 698.0, + 1042.0, + 613.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 1002.0, + 1382.0, + 1002.0, + 1382.0, + 1042.0, + 797.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1002.0, + 1406.0, + 1002.0, + 1406.0, + 1042.0, + 1403.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1038.0, + 403.0, + 1038.0, + 403.0, + 1079.0, + 295.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 1038.0, + 1053.0, + 1038.0, + 1053.0, + 1079.0, + 584.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1514.0, + 372.0, + 1514.0, + 372.0, + 1566.0, + 290.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 1514.0, + 624.0, + 1514.0, + 624.0, + 1566.0, + 408.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 1514.0, + 1174.0, + 1514.0, + 1174.0, + 1566.0, + 920.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 1514.0, + 1408.0, + 1514.0, + 1408.0, + 1566.0, + 1404.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1554.0, + 686.0, + 1554.0, + 686.0, + 1596.0, + 292.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 719.0, + 1554.0, + 974.0, + 1554.0, + 974.0, + 1596.0, + 719.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 1554.0, + 1209.0, + 1554.0, + 1209.0, + 1596.0, + 1006.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1586.0, + 297.0, + 1586.0, + 297.0, + 1626.0, + 291.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 1586.0, + 525.0, + 1586.0, + 525.0, + 1626.0, + 466.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 1586.0, + 1217.0, + 1586.0, + 1217.0, + 1626.0, + 566.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1248.0, + 1586.0, + 1262.0, + 1586.0, + 1262.0, + 1626.0, + 1248.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 389.0, + 750.0, + 389.0, + 750.0, + 426.0, + 295.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 420.0, + 753.0, + 420.0, + 753.0, + 458.0, + 359.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 453.0, + 753.0, + 453.0, + 753.0, + 487.0, + 295.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 482.0, + 483.0, + 482.0, + 483.0, + 518.0, + 294.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 500.0, + 482.0, + 751.0, + 482.0, + 751.0, + 518.0, + 500.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 513.0, + 324.0, + 513.0, + 324.0, + 547.0, + 294.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 513.0, + 749.0, + 513.0, + 749.0, + 547.0, + 413.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1709.0, + 1404.0, + 1709.0, + 1404.0, + 1746.0, + 294.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1740.0, + 1405.0, + 1740.0, + 1405.0, + 1778.0, + 293.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1769.0, + 943.0, + 1769.0, + 943.0, + 1806.0, + 293.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1628.0, + 1405.0, + 1628.0, + 1405.0, + 1671.0, + 293.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1664.0, + 1030.0, + 1664.0, + 1030.0, + 1700.0, + 295.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 714.0, + 1405.0, + 714.0, + 1405.0, + 749.0, + 294.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 743.0, + 1408.0, + 743.0, + 1408.0, + 781.0, + 294.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 543.0, + 1096.0, + 543.0, + 1096.0, + 579.0, + 294.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1186.0, + 543.0, + 1405.0, + 543.0, + 1405.0, + 579.0, + 1186.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 575.0, + 1304.0, + 575.0, + 1304.0, + 610.0, + 294.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1807.0, + 1404.0, + 1807.0, + 1404.0, + 1844.0, + 296.0, + 1844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1831.0, + 676.0, + 1831.0, + 676.0, + 1884.0, + 290.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 1831.0, + 902.0, + 1831.0, + 902.0, + 1884.0, + 891.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 1831.0, + 1218.0, + 1831.0, + 1218.0, + 1884.0, + 1114.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1299.0, + 373.0, + 1299.0, + 373.0, + 1335.0, + 295.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 1299.0, + 704.0, + 1299.0, + 704.0, + 1335.0, + 407.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 1299.0, + 1405.0, + 1299.0, + 1405.0, + 1335.0, + 758.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1330.0, + 529.0, + 1330.0, + 529.0, + 1366.0, + 294.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 568.0, + 1330.0, + 1120.0, + 1330.0, + 1120.0, + 1366.0, + 568.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1085.0, + 1050.0, + 1085.0, + 1050.0, + 1123.0, + 294.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 1085.0, + 1114.0, + 1085.0, + 1114.0, + 1123.0, + 1082.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 1085.0, + 1249.0, + 1085.0, + 1249.0, + 1123.0, + 1158.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1268.0, + 1085.0, + 1405.0, + 1085.0, + 1405.0, + 1123.0, + 1268.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1116.0, + 326.0, + 1116.0, + 326.0, + 1154.0, + 292.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 1116.0, + 825.0, + 1116.0, + 825.0, + 1154.0, + 554.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 1116.0, + 1347.0, + 1116.0, + 1347.0, + 1154.0, + 1162.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 201.0, + 1405.0, + 201.0, + 1405.0, + 239.0, + 296.0, + 239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 231.0, + 438.0, + 231.0, + 438.0, + 271.0, + 293.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 455.0, + 231.0, + 609.0, + 231.0, + 609.0, + 271.0, + 455.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 232.0, + 1402.0, + 232.0, + 1402.0, + 270.0, + 906.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 341.0, + 935.0, + 341.0, + 935.0, + 386.0, + 780.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 341.0, + 1123.0, + 341.0, + 1123.0, + 386.0, + 1008.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 341.0, + 1237.0, + 341.0, + 1237.0, + 386.0, + 1227.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 377.0, + 858.0, + 377.0, + 858.0, + 412.0, + 780.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1091.0, + 377.0, + 1131.0, + 377.0, + 1131.0, + 412.0, + 1091.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 409.0, + 815.0, + 409.0, + 815.0, + 442.0, + 780.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 402.0, + 939.0, + 402.0, + 939.0, + 445.0, + 851.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1321.0, + 402.0, + 1324.0, + 402.0, + 1324.0, + 445.0, + 1321.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 442.0, + 817.0, + 442.0, + 817.0, + 474.0, + 780.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 435.0, + 936.0, + 435.0, + 936.0, + 479.0, + 851.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 472.0, + 912.0, + 472.0, + 912.0, + 505.0, + 778.0, + 505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1972.0, + 368.0, + 1972.0, + 368.0, + 2015.0, + 296.0, + 2015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 1972.0, + 1409.0, + 1972.0, + 1409.0, + 2015.0, + 420.0, + 2015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1205.0, + 547.0, + 1205.0, + 547.0, + 1254.0, + 292.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 924.0, + 1205.0, + 1215.0, + 1205.0, + 1215.0, + 1254.0, + 924.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1235.0, + 1205.0, + 1282.0, + 1205.0, + 1282.0, + 1254.0, + 1235.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 294.0, + 1398.0, + 294.0, + 1398.0, + 345.0, + 767.0, + 345.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 202, + 1405, + 202, + 1405, + 482, + 297, + 482 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1372, + 1404, + 1372, + 1404, + 1618, + 297, + 1618 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1630, + 1403, + 1630, + 1403, + 1846, + 298, + 1846 + ], + "score": 0.98 + }, + { + "category_id": 5, + "poly": [ + 800, + 739, + 1392, + 739, + 1392, + 938, + 800, + 938 + ], + "score": 0.98, + "html": "
Iter kln kSCGDALSETALSET-const
102.305.325.315.63
1004.613.783.493.63
2005.303.402.943.06
4005.993.042.402.55
10006.912.571.652.06
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1026, + 1406, + 1026, + 1406, + 1274, + 297, + 1274 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 581, + 1405, + 581, + 1405, + 705, + 298, + 705 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 717, + 772, + 717, + 772, + 900, + 298, + 900 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 300, + 1944, + 1400, + 1944, + 1400, + 2007, + 300, + 2007 + ], + "score": 0.943 + }, + { + "category_id": 0, + "poly": [ + 300, + 513, + 711, + 513, + 711, + 552, + 300, + 552 + ], + "score": 0.921 + }, + { + "category_id": 0, + "poly": [ + 300, + 1878, + 576, + 1878, + 576, + 1915, + 300, + 1915 + ], + "score": 0.912 + }, + { + "category_id": 0, + "poly": [ + 298, + 1306, + 523, + 1306, + 523, + 1343, + 298, + 1343 + ], + "score": 0.912 + }, + { + "category_id": 8, + "poly": [ + 298, + 910, + 722, + 910, + 722, + 984, + 298, + 984 + ], + "score": 0.911 + }, + { + "category_id": 1, + "poly": [ + 302, + 997, + 767, + 997, + 767, + 1026, + 302, + 1026 + ], + "score": 0.858 + }, + { + "category_id": 2, + "poly": [ + 837, + 2062, + 865, + 2062, + 865, + 2085, + 837, + 2085 + ], + "score": 0.856 + }, + { + "category_id": 1, + "poly": [ + 790, + 952, + 1400, + 952, + 1400, + 1017, + 790, + 1017 + ], + "score": 0.501 + }, + { + "category_id": 7, + "poly": [ + 790, + 952, + 1400, + 952, + 1400, + 1017, + 790, + 1017 + ], + "score": 0.41 + }, + { + "category_id": 13, + "poly": [ + 783, + 1208, + 896, + 1208, + 896, + 1245, + 783, + 1245 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( k ^ { - 1 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 735, + 1494, + 823, + 1494, + 823, + 1528, + 735, + 1528 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1264, + 232, + 1351, + 232, + 1351, + 267, + 1264, + 267 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 409, + 296, + 580, + 296, + 580, + 331, + 409, + 331 + ], + "score": 0.92, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 2 } \\log \\epsilon ^ { - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 568, + 389, + 632, + 389, + 632, + 422, + 568, + 422 + ], + "score": 0.92, + "latex": "y ^ { * } ( \\theta )" + }, + { + "category_id": 13, + "poly": [ + 1053, + 951, + 1320, + 951, + 1320, + 989, + 1053, + 989 + ], + "score": 0.91, + "latex": "\\begin{array} { r l } { { \\ln ( \\frac { 1 } { K } \\sum _ { k = 1 } ^ { K } \\| \\nabla F ( x ^ { k } ) \\| ^ { 2 } ) } \\quad } & { { } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 348, + 1025, + 617, + 1025, + 617, + 1060, + 348, + 1060 + ], + "score": 0.9, + "latex": "\\{ 1 0 ^ { - 3 } , 5 \\times 1 0 ^ { - 4 } , 1 0 ^ { - 4 } \\}" + }, + { + "category_id": 13, + "poly": [ + 1066, + 298, + 1153, + 298, + 1153, + 331, + 1066, + 331 + ], + "score": 0.9, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1036, + 264, + 1146, + 264, + 1146, + 299, + 1036, + 299 + ], + "score": 0.9, + "latex": "\\mathcal { O } ( \\epsilon ^ { - 5 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 876, + 1118, + 1000, + 1118, + 1000, + 1147, + 876, + 1147 + ], + "score": 0.89, + "latex": "K = 1 0 0 0" + }, + { + "category_id": 13, + "poly": [ + 357, + 780, + 433, + 780, + 433, + 810, + 357, + 810 + ], + "score": 0.89, + "latex": "\\alpha _ { k } , \\beta _ { k }" + }, + { + "category_id": 13, + "poly": [ + 659, + 715, + 729, + 715, + 729, + 749, + 659, + 749 + ], + "score": 0.88, + "latex": "x ^ { 0 } , y ^ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 551, + 910, + 704, + 910, + 704, + 946, + 551, + 946 + ], + "score": 0.88, + "latex": "\\beta _ { k } = c k ^ { - 1 / 2 }" + }, + { + "category_id": 13, + "poly": [ + 560, + 947, + 714, + 947, + 714, + 982, + 560, + 982 + ], + "score": 0.86, + "latex": "\\beta _ { k } = c k ^ { - 1 / 2 }" + }, + { + "category_id": 13, + "poly": [ + 395, + 947, + 550, + 947, + 550, + 982, + 395, + 982 + ], + "score": 0.83, + "latex": "\\alpha _ { k } = c k ^ { - 1 / 2 }" + }, + { + "category_id": 13, + "poly": [ + 385, + 910, + 540, + 910, + 540, + 946, + 385, + 946 + ], + "score": 0.83, + "latex": "\\alpha _ { k } = c k ^ { - 3 / 4 }" + }, + { + "category_id": 13, + "poly": [ + 1309, + 424, + 1341, + 424, + 1341, + 451, + 1309, + 451 + ], + "score": 0.83, + "latex": "\\mu _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 795, + 1119, + 815, + 1119, + 815, + 1146, + 795, + 1146 + ], + "score": 0.76, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 441, + 1003, + 457, + 1003, + 457, + 1023, + 441, + 1023 + ], + "score": 0.76, + "latex": "c" + }, + { + "category_id": 13, + "poly": [ + 397, + 876, + 412, + 876, + 412, + 897, + 397, + 897 + ], + "score": 0.67, + "latex": "c" + }, + { + "category_id": 13, + "poly": [ + 1206, + 1471, + 1222, + 1471, + 1222, + 1492, + 1206, + 1492 + ], + "score": 0.65, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 864, + 743, + 882, + 743, + 882, + 768, + 864, + 768 + ], + "score": 0.47, + "latex": "\\overline { { k } }" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 509.0, + 716.0, + 509.0, + 716.0, + 563.0, + 289.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1873.0, + 579.0, + 1873.0, + 579.0, + 1923.0, + 294.0, + 1923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1302.0, + 528.0, + 1302.0, + 528.0, + 1350.0, + 291.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 870.0, + 2058.0, + 870.0, + 2097.0, + 832.0, + 2097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 938.0, + 1052.0, + 938.0, + 1052.0, + 1003.0, + 780.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1321.0, + 938.0, + 1413.0, + 938.0, + 1413.0, + 1003.0, + 1321.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 789.0, + 982.0, + 1359.0, + 982.0, + 1359.0, + 1019.0, + 789.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 203.0, + 1405.0, + 203.0, + 1405.0, + 236.0, + 296.0, + 236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 231.0, + 1263.0, + 231.0, + 1263.0, + 268.0, + 294.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1352.0, + 231.0, + 1406.0, + 231.0, + 1406.0, + 268.0, + 1352.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 260.0, + 1035.0, + 260.0, + 1035.0, + 305.0, + 292.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1147.0, + 260.0, + 1407.0, + 260.0, + 1407.0, + 305.0, + 1147.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 292.0, + 408.0, + 292.0, + 408.0, + 337.0, + 292.0, + 337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 292.0, + 1065.0, + 292.0, + 1065.0, + 337.0, + 581.0, + 337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 292.0, + 1410.0, + 292.0, + 1410.0, + 337.0, + 1154.0, + 337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 326.0, + 1407.0, + 326.0, + 1407.0, + 364.0, + 294.0, + 364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 358.0, + 1402.0, + 358.0, + 1402.0, + 391.0, + 296.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 386.0, + 567.0, + 386.0, + 567.0, + 425.0, + 294.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 386.0, + 1405.0, + 386.0, + 1405.0, + 425.0, + 633.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 419.0, + 1308.0, + 419.0, + 1308.0, + 455.0, + 295.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1342.0, + 419.0, + 1405.0, + 419.0, + 1405.0, + 455.0, + 1342.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 449.0, + 1371.0, + 449.0, + 1371.0, + 486.0, + 294.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1372.0, + 1405.0, + 1372.0, + 1405.0, + 1410.0, + 294.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1405.0, + 1406.0, + 1405.0, + 1406.0, + 1437.0, + 293.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1431.0, + 1405.0, + 1431.0, + 1405.0, + 1472.0, + 291.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1463.0, + 1205.0, + 1463.0, + 1205.0, + 1500.0, + 294.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 1463.0, + 1405.0, + 1463.0, + 1405.0, + 1500.0, + 1223.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1495.0, + 734.0, + 1495.0, + 734.0, + 1529.0, + 295.0, + 1529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 1495.0, + 1406.0, + 1495.0, + 1406.0, + 1529.0, + 824.0, + 1529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1526.0, + 1405.0, + 1526.0, + 1405.0, + 1560.0, + 295.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1556.0, + 1405.0, + 1556.0, + 1405.0, + 1590.0, + 295.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1585.0, + 1361.0, + 1585.0, + 1361.0, + 1622.0, + 294.0, + 1622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1633.0, + 1404.0, + 1633.0, + 1404.0, + 1664.0, + 296.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1663.0, + 1405.0, + 1663.0, + 1405.0, + 1694.0, + 294.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1690.0, + 1407.0, + 1690.0, + 1407.0, + 1731.0, + 292.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1719.0, + 1407.0, + 1719.0, + 1407.0, + 1760.0, + 291.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1753.0, + 1405.0, + 1753.0, + 1405.0, + 1787.0, + 294.0, + 1787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1784.0, + 1405.0, + 1784.0, + 1405.0, + 1816.0, + 294.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1813.0, + 1242.0, + 1813.0, + 1242.0, + 1849.0, + 294.0, + 1849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1022.0, + 347.0, + 1022.0, + 347.0, + 1063.0, + 292.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 1022.0, + 1408.0, + 1022.0, + 1408.0, + 1063.0, + 618.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1055.0, + 1406.0, + 1055.0, + 1406.0, + 1093.0, + 291.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1087.0, + 1408.0, + 1087.0, + 1408.0, + 1121.0, + 294.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1117.0, + 794.0, + 1117.0, + 794.0, + 1151.0, + 295.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.0, + 1117.0, + 875.0, + 1117.0, + 875.0, + 1151.0, + 816.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1001.0, + 1117.0, + 1404.0, + 1117.0, + 1404.0, + 1151.0, + 1001.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1149.0, + 1406.0, + 1149.0, + 1406.0, + 1183.0, + 295.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1178.0, + 1407.0, + 1178.0, + 1407.0, + 1215.0, + 294.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1208.0, + 782.0, + 1208.0, + 782.0, + 1245.0, + 294.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 1208.0, + 1407.0, + 1208.0, + 1407.0, + 1245.0, + 897.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1243.0, + 1364.0, + 1243.0, + 1364.0, + 1274.0, + 294.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 582.0, + 1407.0, + 582.0, + 1407.0, + 615.0, + 295.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 610.0, + 1406.0, + 610.0, + 1406.0, + 646.0, + 292.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 643.0, + 1405.0, + 643.0, + 1405.0, + 678.0, + 293.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 672.0, + 1299.0, + 672.0, + 1299.0, + 708.0, + 292.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 713.0, + 658.0, + 713.0, + 658.0, + 750.0, + 295.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 713.0, + 773.0, + 713.0, + 773.0, + 750.0, + 730.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 744.0, + 774.0, + 744.0, + 774.0, + 783.0, + 294.0, + 783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 778.0, + 356.0, + 778.0, + 356.0, + 811.0, + 295.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 778.0, + 775.0, + 778.0, + 775.0, + 811.0, + 434.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 807.0, + 771.0, + 807.0, + 771.0, + 840.0, + 295.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 839.0, + 771.0, + 839.0, + 771.0, + 872.0, + 294.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 870.0, + 396.0, + 870.0, + 396.0, + 900.0, + 295.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 870.0, + 497.0, + 870.0, + 497.0, + 900.0, + 413.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1942.0, + 1404.0, + 1942.0, + 1404.0, + 1981.0, + 295.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1973.0, + 1404.0, + 1973.0, + 1404.0, + 2011.0, + 295.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 991.0, + 440.0, + 991.0, + 440.0, + 1034.0, + 296.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 458.0, + 991.0, + 772.0, + 991.0, + 772.0, + 1034.0, + 458.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 938.0, + 1052.0, + 938.0, + 1052.0, + 1003.0, + 780.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1321.0, + 938.0, + 1413.0, + 938.0, + 1413.0, + 1003.0, + 1321.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 789.0, + 982.0, + 1359.0, + 982.0, + 1359.0, + 1019.0, + 789.0, + 1019.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 202, + 1402, + 202, + 1402, + 266, + 298, + 266 + ], + "score": 0.913 + }, + { + "category_id": 0, + "poly": [ + 298, + 310, + 455, + 310, + 455, + 345, + 298, + 345 + ], + "score": 0.9 + }, + { + "category_id": 1, + "poly": [ + 297, + 310, + 1411, + 310, + 1411, + 2020, + 297, + 2020 + ], + "score": 0.877 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 863, + 2061, + 863, + 2086, + 836, + 2086 + ], + "score": 0.785 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 863, + 2061, + 863, + 2086, + 836, + 2086 + ], + "score": 0.19 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 307.0, + 460.0, + 307.0, + 460.0, + 350.0, + 295.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 868.0, + 2058.0, + 868.0, + 2098.0, + 832.0, + 2098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 868.0, + 2058.0, + 868.0, + 2098.0, + 832.0, + 2098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 199.0, + 1404.0, + 199.0, + 1404.0, + 239.0, + 294.0, + 239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 231.0, + 917.0, + 231.0, + 917.0, + 270.0, + 294.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 305.0, + 464.0, + 305.0, + 464.0, + 353.0, + 294.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 362.0, + 1408.0, + 362.0, + 1408.0, + 403.0, + 306.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 394.0, + 909.0, + 394.0, + 909.0, + 435.0, + 351.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 449.0, + 1406.0, + 449.0, + 1406.0, + 490.0, + 308.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 479.0, + 1402.0, + 479.0, + 1402.0, + 520.0, + 351.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 533.0, + 1408.0, + 533.0, + 1408.0, + 575.0, + 308.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 565.0, + 1410.0, + 565.0, + 1410.0, + 607.0, + 353.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 597.0, + 755.0, + 597.0, + 755.0, + 633.0, + 355.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 646.0, + 1410.0, + 646.0, + 1410.0, + 692.0, + 304.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 679.0, + 989.0, + 679.0, + 989.0, + 724.0, + 351.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 735.0, + 1408.0, + 735.0, + 1408.0, + 777.0, + 308.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 765.0, + 1311.0, + 765.0, + 1311.0, + 807.0, + 347.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 820.0, + 1114.0, + 820.0, + 1114.0, + 860.0, + 306.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 877.0, + 1408.0, + 877.0, + 1408.0, + 918.0, + 308.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 905.0, + 1412.0, + 905.0, + 1412.0, + 950.0, + 349.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 937.0, + 540.0, + 937.0, + 540.0, + 974.0, + 349.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 990.0, + 1408.0, + 990.0, + 1408.0, + 1035.0, + 304.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1024.0, + 1410.0, + 1024.0, + 1410.0, + 1065.0, + 353.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1050.0, + 712.0, + 1050.0, + 712.0, + 1093.0, + 353.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 1108.0, + 1408.0, + 1108.0, + 1408.0, + 1150.0, + 308.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1139.0, + 1410.0, + 1139.0, + 1410.0, + 1180.0, + 351.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1169.0, + 429.0, + 1169.0, + 429.0, + 1206.0, + 353.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1223.0, + 1406.0, + 1223.0, + 1406.0, + 1265.0, + 294.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 1257.0, + 1123.0, + 1257.0, + 1123.0, + 1293.0, + 355.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1308.0, + 1408.0, + 1308.0, + 1408.0, + 1350.0, + 294.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1340.0, + 1408.0, + 1340.0, + 1408.0, + 1382.0, + 353.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1371.0, + 1084.0, + 1371.0, + 1084.0, + 1412.0, + 349.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1425.0, + 1408.0, + 1425.0, + 1408.0, + 1465.0, + 292.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 1459.0, + 1408.0, + 1459.0, + 1408.0, + 1495.0, + 355.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1487.0, + 723.0, + 1487.0, + 723.0, + 1527.0, + 351.0, + 1527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1542.0, + 1404.0, + 1542.0, + 1404.0, + 1578.0, + 294.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1567.0, + 1412.0, + 1567.0, + 1412.0, + 1618.0, + 348.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 1604.0, + 494.0, + 1604.0, + 494.0, + 1640.0, + 355.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1657.0, + 1408.0, + 1657.0, + 1408.0, + 1699.0, + 294.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1685.0, + 1410.0, + 1685.0, + 1410.0, + 1731.0, + 351.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 1719.0, + 596.0, + 1719.0, + 596.0, + 1755.0, + 355.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1770.0, + 1408.0, + 1770.0, + 1408.0, + 1815.0, + 291.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1804.0, + 1049.0, + 1804.0, + 1049.0, + 1846.0, + 353.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1859.0, + 1406.0, + 1859.0, + 1406.0, + 1900.0, + 294.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1889.0, + 675.0, + 1889.0, + 675.0, + 1926.0, + 349.0, + 1926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1944.0, + 1408.0, + 1944.0, + 1408.0, + 1985.0, + 293.0, + 1985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1974.0, + 1176.0, + 1974.0, + 1176.0, + 2013.0, + 349.0, + 2013.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 292, + 175, + 1410, + 175, + 1410, + 2019, + 292, + 2019 + ], + "score": 0.839 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 866, + 2061, + 866, + 2087, + 836, + 2087 + ], + "score": 0.831 + }, + { + "category_id": 13, + "poly": [ + 412, + 1254, + 513, + 1254, + 513, + 1289, + 412, + 1289 + ], + "score": 0.92, + "latex": "O ( 1 / k ^ { 2 } )" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2057.0, + 869.0, + 2057.0, + 869.0, + 2097.0, + 832.0, + 2097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 200.0, + 1410.0, + 200.0, + 1410.0, + 242.0, + 290.0, + 242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 234.0, + 1408.0, + 234.0, + 1408.0, + 273.0, + 350.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 261.0, + 430.0, + 261.0, + 430.0, + 303.0, + 352.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 317.0, + 1406.0, + 317.0, + 1406.0, + 356.0, + 296.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 350.0, + 742.0, + 350.0, + 742.0, + 384.0, + 348.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 402.0, + 1302.0, + 402.0, + 1302.0, + 441.0, + 294.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 457.0, + 1410.0, + 457.0, + 1410.0, + 496.0, + 296.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 487.0, + 1095.0, + 487.0, + 1095.0, + 526.0, + 352.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 538.0, + 1408.0, + 538.0, + 1408.0, + 583.0, + 294.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 573.0, + 1408.0, + 573.0, + 1408.0, + 611.0, + 352.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 603.0, + 538.0, + 603.0, + 538.0, + 637.0, + 350.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 656.0, + 1406.0, + 656.0, + 1406.0, + 694.0, + 296.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 688.0, + 1308.0, + 688.0, + 1308.0, + 726.0, + 352.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 739.0, + 1408.0, + 739.0, + 1408.0, + 779.0, + 290.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 769.0, + 1404.0, + 769.0, + 1404.0, + 807.0, + 354.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 801.0, + 969.0, + 801.0, + 969.0, + 840.0, + 352.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 856.0, + 1408.0, + 856.0, + 1408.0, + 895.0, + 296.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 882.0, + 1410.0, + 882.0, + 1410.0, + 929.0, + 350.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 917.0, + 701.0, + 917.0, + 701.0, + 953.0, + 352.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 971.0, + 1406.0, + 971.0, + 1406.0, + 1010.0, + 296.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1000.0, + 1033.0, + 1000.0, + 1033.0, + 1040.0, + 350.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1052.0, + 1406.0, + 1052.0, + 1406.0, + 1095.0, + 294.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1089.0, + 695.0, + 1089.0, + 695.0, + 1121.0, + 354.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1137.0, + 1410.0, + 1137.0, + 1410.0, + 1182.0, + 292.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1170.0, + 1272.0, + 1170.0, + 1272.0, + 1208.0, + 350.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1225.0, + 1406.0, + 1225.0, + 1406.0, + 1263.0, + 296.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1255.0, + 411.0, + 1255.0, + 411.0, + 1293.0, + 352.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 1255.0, + 1410.0, + 1255.0, + 1410.0, + 1293.0, + 514.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1283.0, + 432.0, + 1283.0, + 432.0, + 1324.0, + 352.0, + 1324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1340.0, + 1408.0, + 1340.0, + 1408.0, + 1378.0, + 296.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1368.0, + 1404.0, + 1368.0, + 1404.0, + 1407.0, + 354.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1401.0, + 1095.0, + 1401.0, + 1095.0, + 1439.0, + 352.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1453.0, + 1406.0, + 1453.0, + 1406.0, + 1492.0, + 294.0, + 1492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1486.0, + 1408.0, + 1486.0, + 1408.0, + 1524.0, + 354.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1518.0, + 739.0, + 1518.0, + 739.0, + 1551.0, + 354.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1567.0, + 1410.0, + 1567.0, + 1410.0, + 1609.0, + 292.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1603.0, + 1408.0, + 1603.0, + 1408.0, + 1636.0, + 354.0, + 1636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1632.0, + 428.0, + 1632.0, + 428.0, + 1666.0, + 354.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1684.0, + 1406.0, + 1684.0, + 1406.0, + 1723.0, + 296.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1713.0, + 1410.0, + 1713.0, + 1410.0, + 1757.0, + 352.0, + 1757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1747.0, + 571.0, + 1747.0, + 571.0, + 1779.0, + 358.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1796.0, + 1410.0, + 1796.0, + 1410.0, + 1840.0, + 294.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1830.0, + 1408.0, + 1830.0, + 1408.0, + 1869.0, + 354.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1860.0, + 763.0, + 1860.0, + 763.0, + 1899.0, + 354.0, + 1899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1913.0, + 1408.0, + 1913.0, + 1408.0, + 1952.0, + 296.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1939.0, + 1412.0, + 1939.0, + 1412.0, + 1988.0, + 348.0, + 1988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1974.0, + 577.0, + 1974.0, + 577.0, + 2010.0, + 354.0, + 2010.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 294, + 199, + 1412, + 199, + 1412, + 2011, + 294, + 2011 + ], + "score": 0.904 + }, + { + "category_id": 2, + "poly": [ + 835, + 2060, + 865, + 2060, + 865, + 2087, + 835, + 2087 + ], + "score": 0.834 + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 869.0, + 2058.0, + 869.0, + 2096.0, + 832.0, + 2096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 203.0, + 1408.0, + 203.0, + 1408.0, + 241.0, + 296.0, + 241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 233.0, + 1408.0, + 233.0, + 1408.0, + 273.0, + 352.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 263.0, + 430.0, + 263.0, + 430.0, + 302.0, + 352.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 314.0, + 1406.0, + 314.0, + 1406.0, + 352.0, + 294.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 346.0, + 1095.0, + 346.0, + 1095.0, + 384.0, + 352.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 392.0, + 1408.0, + 392.0, + 1408.0, + 438.0, + 292.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 430.0, + 1238.0, + 430.0, + 1238.0, + 462.0, + 354.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 476.0, + 1410.0, + 476.0, + 1410.0, + 517.0, + 292.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 508.0, + 1053.0, + 508.0, + 1053.0, + 547.0, + 348.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 559.0, + 1406.0, + 559.0, + 1406.0, + 597.0, + 296.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 587.0, + 1412.0, + 587.0, + 1412.0, + 629.0, + 350.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 641.0, + 1406.0, + 641.0, + 1406.0, + 679.0, + 294.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 675.0, + 1386.0, + 675.0, + 1386.0, + 707.0, + 354.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 723.0, + 1408.0, + 723.0, + 1408.0, + 760.0, + 294.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 753.0, + 1294.0, + 753.0, + 1294.0, + 788.0, + 352.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 804.0, + 1406.0, + 804.0, + 1406.0, + 842.0, + 294.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 836.0, + 1298.0, + 836.0, + 1298.0, + 872.0, + 350.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 882.0, + 1408.0, + 882.0, + 1408.0, + 926.0, + 292.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 918.0, + 1216.0, + 918.0, + 1216.0, + 950.0, + 354.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 968.0, + 1408.0, + 968.0, + 1408.0, + 1005.0, + 294.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 997.0, + 1222.0, + 997.0, + 1222.0, + 1035.0, + 354.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1051.0, + 1408.0, + 1051.0, + 1408.0, + 1083.0, + 296.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1079.0, + 1394.0, + 1079.0, + 1394.0, + 1117.0, + 354.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1131.0, + 1376.0, + 1131.0, + 1376.0, + 1169.0, + 294.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1177.0, + 1410.0, + 1177.0, + 1410.0, + 1225.0, + 290.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1211.0, + 619.0, + 1211.0, + 619.0, + 1248.0, + 352.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1262.0, + 1408.0, + 1262.0, + 1408.0, + 1300.0, + 294.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1294.0, + 1410.0, + 1294.0, + 1410.0, + 1332.0, + 354.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1344.0, + 1406.0, + 1344.0, + 1406.0, + 1382.0, + 296.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1378.0, + 1087.0, + 1378.0, + 1087.0, + 1410.0, + 354.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1424.0, + 1404.0, + 1424.0, + 1404.0, + 1462.0, + 294.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1456.0, + 1111.0, + 1456.0, + 1111.0, + 1491.0, + 350.0, + 1491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1507.0, + 1408.0, + 1507.0, + 1408.0, + 1545.0, + 296.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1535.0, + 1005.0, + 1535.0, + 1005.0, + 1577.0, + 348.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1585.0, + 1410.0, + 1585.0, + 1410.0, + 1629.0, + 292.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1619.0, + 626.0, + 1619.0, + 626.0, + 1655.0, + 352.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1665.0, + 1408.0, + 1665.0, + 1408.0, + 1713.0, + 292.0, + 1713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1701.0, + 947.0, + 1701.0, + 947.0, + 1738.0, + 352.0, + 1738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1748.0, + 1408.0, + 1748.0, + 1408.0, + 1792.0, + 292.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1782.0, + 1027.0, + 1782.0, + 1027.0, + 1820.0, + 354.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1828.0, + 1410.0, + 1828.0, + 1410.0, + 1874.0, + 292.0, + 1874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1864.0, + 1121.0, + 1864.0, + 1121.0, + 1902.0, + 354.0, + 1902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1914.0, + 1406.0, + 1914.0, + 1406.0, + 1951.0, + 296.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1944.0, + 1408.0, + 1944.0, + 1408.0, + 1985.0, + 348.0, + 1985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1975.0, + 629.0, + 1975.0, + 629.0, + 2013.0, + 352.0, + 2013.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 836, + 2061, + 865, + 2061, + 865, + 2085, + 836, + 2085 + ], + "score": 0.834 + }, + { + "category_id": 1, + "poly": [ + 293, + 201, + 1410, + 201, + 1410, + 547, + 293, + 547 + ], + "score": 0.676 + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2057.0, + 871.0, + 2057.0, + 871.0, + 2095.0, + 832.0, + 2095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 204.0, + 1407.0, + 204.0, + 1407.0, + 240.0, + 296.0, + 240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 236.0, + 645.0, + 236.0, + 645.0, + 266.0, + 353.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 283.0, + 1404.0, + 283.0, + 1404.0, + 323.0, + 294.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 318.0, + 729.0, + 318.0, + 729.0, + 350.0, + 355.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 366.0, + 1407.0, + 366.0, + 1407.0, + 406.0, + 295.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 399.0, + 1025.0, + 399.0, + 1025.0, + 432.0, + 353.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 450.0, + 1408.0, + 450.0, + 1408.0, + 489.0, + 295.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 480.0, + 1407.0, + 480.0, + 1407.0, + 520.0, + 353.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 512.0, + 797.0, + 512.0, + 797.0, + 551.0, + 355.0, + 551.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/PQlC91XxqK5/PQlC91XxqK5.md b/parse/train/PQlC91XxqK5/PQlC91XxqK5.md new file mode 100644 index 0000000000000000000000000000000000000000..e69e60664ab569a502d1b259925b96253f21d01d --- /dev/null +++ b/parse/train/PQlC91XxqK5/PQlC91XxqK5.md @@ -0,0 +1,331 @@ +# SEGMENTING NATURAL LANGUAGE SENTENCES VIA LEXICAL UNIT ANALYSIS + +Anonymous authors Paper under double-blind review + +# ABSTRACT + +In this work, we present Lexical Unit Analysis (LUA), a framework for general sequence segmentation tasks. Given a natural language sentence, LUA scores all the valid segmentation candidates and utilizes dynamic programming (DP) to extract the maximum scoring one. LUA enjoys a number of appealing properties such as inherently guaranteeing the predicted segmentation to be valid and facilitating globally optimal training and inference. Besides, the practical time complexity of LUA can be reduced to linear time, which is very efficient. We have conducted extensive experiments on 5 tasks, including syntactic chunking, named entity recognition (NER), slot filling, Chinese word segmentation, and Chinese part-of-speech (POS) tagging, across 15 datasets. Our models have achieved the state-of-the-art performances on 13 of them. The results also show that the F1 score of identifying long-length segments is notably improved. + +# 1 INTRODUCTION + +Sequence segmentation is essentially the process of partitioning a sequence of fine-grained lexical units into a sequence of coarse-grained ones. In some scenarios, each composed unit is assigned a categorical label. For example, Chinese word segmentation splits a character sequence into a word sequence (Xue, 2003). Syntactic chunking segments a word sequence into a sequence of labeled groups of words (i.e., constituents) (Sang & Buchholz, 2000). + +There are currently two mainstream approaches to sequence segmentation. The most common is to regard it as a sequence labeling problem by using IOB tagging scheme (Mesnil et al., 2014; Ma & Hovy, 2016; Liu et al., 2019b; Chen et al., 2019a; Luo et al., 2020). A representative work is Bidirectional LSTM-CRF (Huang et al., 2015), which adopts LSTM (Hochreiter & Schmidhuber, 1997) to read an input sentence and CRF (Lafferty et al., 2001) to decode the label sequence. This type of method is very effective, providing tons of state-of-the-art performances. However, it is vulnerable to producing invalid labels, for instance, “O, I-tag, I-tag”. This problem is very severe in low resource settings (Peng et al., 2017). In experiments (see section 4.6), we also find that it performs poorly in recognizing long-length segments. + +Recently, there is a growing interest in span-based models (Zhai et al., 2017; Li et al., 2019; Yu et al., 2020). They treat a span rather than a token as the basic unit for labeling. Li et al. (2019) cast named entity recognition (NER) to a machine reading comprehension (MRC) task, where entities are extracted as retrieving answer spans. Yu et al. (2020) rank all the spans in terms of the scores predicted by a bi-affine model (Dozat & Manning, 2016). In NER, span-based models have significantly outperformed their sequence labeling based counterparts. While these methods circumvent the use of IOB tagging scheme, they still rely on post-processing rules to guarantee the extracted span set to be valid. Moreover, since span-based models are locally normalized at span level, they potentially suffer from the label bias problem (Lafferty et al., 2001). + +This paper seeks to provide a new framework which infers the segmentation of a unit sequence by directly selecting from all valid segmentation candidates, instead of manipulating tokens or spans. To this end, we propose Lexical Unit Analysis (LUA) in this paper. LUA assigns a score to every valid segmentation candidate and leverages dynamic programming (DP) (Bellman, 1966) to search for the maximum scoring one. The score of a segmentation is computed by using the scores of its all segments. Besides, we adopt neural networks to score every segment of the input sentence. + +![](images/b34a0a4b29cfa62fc1064e82fa52cff24949a657d0e6f47cf445c7abc4ae1d90.jpg) +Figure 1: A toy example to show LUA and how it differs from prior methods. The items in blue and red respectively denote valid and invalid predictions. + +The purpose of using DP is to solve the intractability of extracting the maximum scoring segmentation candidate by brute-force search. The time complexity of LUA is quadratic time, yet it can be optimized to linear time in practice by performing parallel matrix computations. For training criterion, we incur a hinge loss between the ground truth and the predictions. We also extend LUA to unlabeled segmentation and capturing label correlations. + +Figure 1 illustrates the comparison between previous methods and the proposed LUA. Prior models at token level and span level are vulnerable to generating invalid predictions, and hence rely on heuristic rules to fix them. For example, in the middle part of Figure 1, the spans of two inferred named entities, [Word $\mathrm { C u p } \mathrm { _ { M I S C } }$ and $[ \mathrm { C u p } ] _ { \mathrm { M I S C } }$ , conflicts, which is mitigated by comparing the predicted scores. LUA scores all possible segmentation candidates and uses DP to extract the maximum scoring one. In this way, our models guarantee the predictions to be valid. Moreover, the globality of DP addresses the label bias problem. + +Extensive experiments are conducted on syntactic chunking, NER, slot filling, Chinese word segmentation, and Chinese part-of-speech (POS) tagging across 15 tasks. We have obtained new stateof-the-art results on 13 of them and performed competitively on the others. In particular, we observe that LUA is expert at identifying long-length segments. + +# 2 METHODOLOGY + +We denote an input sequence (i.e., fine-grained lexical units) as $\mathbf { x } = [ x _ { 1 } , x _ { 2 } , \cdot \cdot \cdot , x _ { n } ]$ , where $n$ is the sequence length. An output sequence (i.e., coarse-grained lexical units) is represented as the segmentation $\mathbf { y } = [ y _ { 1 } , y _ { 2 } , \cdots , y _ { m } ]$ with each segment $y _ { k }$ being a triple $( i _ { k } , j _ { k } , t _ { k } )$ . $m$ denotes its length. $( i _ { k } , j _ { k } )$ specifies a span that corresponds to the phrase $\mathbf { x } _ { i _ { k } , j _ { k } } = [ x _ { i _ { k } } , x _ { i _ { k } + 1 } , \cdot \cdot \cdot , x _ { j _ { k } } ]$ . $t _ { k }$ is a label from the label space $\mathcal { L }$ . We define a valid segmentation candidate as its segments are non-overlapping and fully cover the input sequence. + +A case extracted from CoNLL-2003 dataset (Sang & De Meulder, 2003): + +$$ +\begin{array} { r } { \mathbf { x } = [ [ \mathrm { S O S } ] , \mathrm { S a n g t h a i } , \mathrm { G l o r y } , 2 2 / 1 1 / 9 6 , 3 0 0 0 , \mathrm { S i n g a p o r e } ] } \\ { \mathbf { y } = [ ( 1 , 1 , 0 ) , ( 2 , 3 , \mathrm { M I S C } ) , ( 4 , 4 , 0 ) , ( 5 , 5 , 0 ) , ( 6 , 6 , \mathrm { L O C } ) ] } \end{array} . +$$ + +Start-of-sentence symbol [SOS] is added in the pre-processing stage. + +# 2.1 MODEL: SCORING SEGMENTATION CANDIDATES + +We denote $\mathcal { V }$ as the universal set that contains all valid segmentation candidates. Given one of its members $\mathbf { y } \in \mathcal { V }$ , we compute the score $f ( \mathbf { y } )$ as + +$$ +f ( \mathbf { y } ) = \sum _ { ( i , j , t ) \in \mathbf { y } } \Big ( s _ { i , j } ^ { c } + s _ { i , j , t } ^ { l } \Big ) , +$$ + +Input: Composition score $s _ { i , j } ^ { c }$ and label score $s _ { i , j , t } ^ { l }$ for every possible segment $( i , j , t )$ . + +utput: The maximum segmentation scoring candidate $\hat { \mathbf { y } }$ and its score $f ( \hat { \mathbf { y } } )$ . + +1 Set two $n \times n$ shaped matrices, $\mathbf { c } ^ { L }$ and ${ \bf b } ^ { c }$ , for computing maximum scoring labels. + +2 Set two $n$ -length vectors, $\mathbf { g }$ and $\mathbf { b } ^ { g }$ , for computing maximum scoring segmentation. + +4 Compute the maximum label score for each span $( i , j ) \colon s _ { i , j } ^ { L } = \operatorname* { m a x } _ { t \in \mathcal { L } } s _ { i , j , t } ^ { l }$ +5 Record the backtracking index: $b _ { i , j } ^ { c } = \arg \operatorname* { m a x } _ { t \in \mathcal { L } } s _ { i , j , t } ^ { l }$ . + +6 Initialize the value of the base case $\mathbf { x } _ { 1 , 1 } \colon g _ { 1 } = s _ { 1 , 1 } ^ { c } + s _ { 1 , 1 } ^ { L }$ + +8 Compute the value of the prefix $\begin{array} { r } { \mathbf { x } _ { 1 , i } { \mathrm { : ~ } } g _ { i } = \operatorname* { m a x } _ { 1 \leq j \leq i - 1 } \left( g _ { i - j } + \left( s _ { i - j + 1 , i } ^ { c } + s _ { i - j + 1 , i } ^ { L } \right) \right) } \end{array}$ +9 Record the backtracking index: $b _ { i } ^ { g } = \arg \operatorname* { m a x } _ { 1 \leq j \leq i - 1 } \left( g _ { i - j } + ( s _ { i - j + 1 , i } ^ { c } + s _ { i - j + 1 , i } ^ { L } ) \right) .$ . +10 Get the maximum scoring candidate $\hat { \mathbf { y } }$ by back tracing the tables $\mathbf { b } ^ { g }$ and $\mathbf { b } ^ { c }$ . +11 Get the maximum segmentation score: $f ( \hat { \mathbf { y } } ) = g _ { n }$ . + +where $s _ { i , j } ^ { c }$ is the composition score to estimate the feasibility of merging several fine-grained units $[ x _ { i } , x _ { i + 1 } , \cdot \cdot \cdot , x _ { j } ]$ into a coarse-grained unit and $s _ { i , j , t } ^ { l }$ is the label score to measure how likely the label of this segment is $t$ . Both scores are obtained by a scoring model. + +Scoring Model. a scoring model scores all possible segments $( i , j , t )$ for an input sentence $\mathbf { x }$ . Firstly, we get the representation for each fine-grained unit. Following prior works (Li et al., 2019; Luo et al., 2020; Yu et al., 2020), we adopt BERT (Devlin et al., 2018), a powerful pre-trained language model, as the sentence encoder. Specifically, we have + +$$ +[ \mathbf { h } _ { 1 } ^ { w } , \mathbf { h } _ { 2 } ^ { w } \cdot \cdot \cdot \mathbf { \epsilon } , \mathbf { h } _ { n } ^ { w } ] = \mathrm { B E R T } ( \mathbf { x } ) , +$$ + +Then, we compute the representation for a coarse-grained unit $\mathbf { x } _ { i , j } , 1 \leq i \leq j \leq n$ as + +$$ +\mathbf { h } _ { i , j } ^ { p } = \mathbf { h } _ { i } ^ { w } \oplus \mathbf { h } _ { j } ^ { w } \oplus \left( \mathbf { h } _ { i } ^ { w } - \mathbf { h } _ { j } ^ { w } \right) \oplus \big ( \mathbf { h } _ { i } ^ { w } \odot \mathbf { h } _ { j } ^ { w } \big ) , +$$ + +where $\oplus$ is vector concatenation and $\odot$ is element-wise product. + +Eventually, we employ two non-linear feedforward networks to score a segment $( i , j , t )$ : + +$$ +\begin{array} { r } { \boldsymbol { s } _ { i , j } ^ { c } = \left( \mathbf { v } ^ { c } \right) ^ { T } \operatorname { t a n h } ( \mathbf { W } ^ { c } \mathbf { h } _ { i , j } ^ { p } ) , \boldsymbol { s } _ { i , j , t } ^ { l } = \left( \mathbf { v } _ { t } ^ { l } \right) ^ { T } \operatorname { t a n h } ( \mathbf { W } ^ { l } \mathbf { h } _ { i , j } ^ { p } ) , } \end{array} +$$ + +where $\mathbf { v } _ { } ^ { c }$ , $\mathbf { W } ^ { c }$ , $\mathbf { v } _ { t } ^ { l } , t \in \mathcal { L }$ , and $\mathbf { W } ^ { l }$ are all learnable parameters. Besides, the scoring model used here can be flexibly replaced by any regression method. + +# 2.2 INFERENCE VIA DYNAMIC PROGRAMMING + +The prediction of the maximum scoring segmentation candidate can be formulated as + +$$ +{ \hat { \mathbf { y } } } = \operatorname * { a r g m a x } _ { \mathbf { y } \in \mathcal { Y } } f ( \mathbf { y } ) . +$$ + +Because the size of search space $| \mathcal { V } |$ increases exponentially with respect to the sequence length $n$ , brute-force search to solve Equation 5 is computationally infeasible. LUA uses DP to address this issue, which is facilitated by the decomposable nature of Equation 1. + +DP is a well-known optimization method which solves a complicated problem by breaking it down into simpler sub-problems in a recursive manner. The relation between the value of the larger problem and the values of its sub-problems is called the Bellman equation. + +Sub-problem. In the context of LUA, the sub-problem of segmenting an input unit sequence $\mathbf { x }$ is segmenting its prefixes $\mathbf { x } _ { 1 , i } , 1 \leq i \leq n$ . We define $g _ { i }$ as the maximum segmentation score of the prefix $\mathbf { x } _ { 1 , i }$ . Under this scheme, we have $\textstyle \operatorname* { m a x } _ { \mathbf { y } \in { \mathcal { y } } } f ( \mathbf { y } ) = g _ { n }$ . + +The Bellman Equation. The relatinship between segmenting a sequence $\mathbf { x } _ { 1 , i } , i > 1$ and segmenting its prefixes $x _ { 1 , i - j } , 1 \leq j \leq i - 1$ is built by the last segments $( i - j + 1 , i , t )$ : + +$$ +g _ { i } = \operatorname* { m a x } _ { 1 \leq j \leq i - 1 } \big ( g _ { i - j } + \big ( s _ { i - j + 1 , i } ^ { c } + \operatorname* { m a x } _ { t \in \mathcal { L } } s _ { i - j + 1 , i , t } ^ { l } \big ) \big ) . +$$ + +In practice, to reduce the time complexity of above equation, the last term is computed beforehand as $\begin{array} { r } { \dot { s } _ { i , j } ^ { L } = \operatorname* { m a x } _ { t \in \mathcal { L } } s _ { i , j , t } ^ { l } , 1 \leq i \leq j \dot { \leq } n } \end{array}$ . Hence, Equation 6 is reformulated as + +$$ +g _ { i } = \operatorname* { m a x } _ { 1 \leq j \leq i - 1 } \big ( g _ { i - j } + ( s _ { i - j + 1 , i } ^ { c } + s _ { i - j + 1 , i } ^ { L } ) \big ) . +$$ + +The base case is the first token $\mathbf { x } _ { 1 , 1 } = [ [ \mathrm { S O S } ] ]$ . We get its score $g _ { 1 }$ as $s _ { 1 , 1 } ^ { c } + s _ { 1 , 1 } ^ { L }$ + +Algorithm 1 shows how DP is applied in inference. Firstly, we set two matrices and two vectors to store the solutions to the sub-problems (1-st to 2-nd lines). Secondly, we get the maximum label scores for all the spans (3-rd to 5-th lines). Then, we initialize the trivial case $g _ { 1 }$ and recursively calculate the values for prefixes $\mathbf { x } _ { 1 , i } , i > 1$ (6-th to 9-th lines). Finally, we get the predicted segmentation $\hat { \mathbf { y } }$ and its score $f ( \hat { \mathbf { y } } )$ (10-th to 11-th lines). + +The time complexity of Algorithm 1 is $\mathcal { O } ( n ^ { 2 } )$ . By performing the max operation of Equation 7 in parallel on GPU, it can be optimized to only ${ \mathcal { O } } ( n )$ , which is highly efficient. Besides, DP, as the backbone of the proposed model, is non-parametric. The trainable parameters only exist in the scoring model part. These show LUA is a very light-weight algorithm. + +# 2.3 TRAINING CRITERION + +We adopt max-margin penalty as the loss function for training. Given the predicted segmentation $\hat { \mathbf { y } }$ and the ground truth segmentation $\mathbf { y } ^ { * }$ , we have + +$$ +\mathcal { T } = \operatorname* { m a x } \big ( 0 , 1 - f ( \mathbf { y } ^ { * } ) + f ( \hat { \mathbf { y } } ) \big ) . +$$ + +# 3 EXTENSIONS OF LUA + +We propose two extensions of LUA for generalizing it to different scenarios. + +Unlabeled Segmentation. In some tasks (e.g., Chinese word segmentation), the segments are unlabeled. Under this scheme, the Equation 1 and Equation 7 are reformulated as + +$$ +f ( \mathbf { y } ) = \sum _ { ( i , j ) \in \mathbf { y } } s _ { i , j } ^ { c } , ~ g _ { i } = \operatorname* { m a x } _ { 1 \leq j \leq i - 1 } ( g _ { i - j } + s _ { i - j + 1 , i } ^ { c } ) . +$$ + +Capturing Label Correlations. In some tasks (e.g., syntactic chunking), the labels of segments are strongly correlated. To incorporate this information, we redefine $f ( \mathbf { y } )$ as + +$$ +f ( { \bf { y } } ) = \sum _ { 1 \le k \le m } \left( s _ { i _ { k } , j _ { k } } ^ { c } + s _ { i _ { k } , j _ { k } , t _ { k } } ^ { l } \right) + \sum _ { 1 \le k \le m } s _ { t _ { k - q + 1 } , t _ { k - q + 2 } , \cdots , t _ { k } } ^ { d } . +$$ + +Score In pra $s _ { t _ { k - q + 1 } , t _ { k - q + 2 } , \cdots , t _ { k } } ^ { d }$ models the label dependencies among balances the efficiency and the effecti $q$ successive segments, ness well, and thus pa $_ { \mathbf { y } _ { k - q + 1 , k } }$ $q = 2$ +a learnable matrix $\mathbf { W } ^ { d } \in \mathbb { R } ^ { | \nu | \times | \nu | }$ to implement it. + +The corresponding Bellman equation to above scoring function is + +$$ +g _ { i , t } = \underset { 1 \leq j \leq i - 1 } { \operatorname* { m a x } } \big ( \underset { t ^ { \prime } \in \mathcal { L } } { \operatorname* { m a x } } ( g _ { i - j , t ^ { \prime } } + s _ { t ^ { \prime } , t } ^ { d } ) + ( s _ { i - j + 1 , i } ^ { c } + s _ { i - j + 1 , i , t } ^ { l } ) \big ) , +$$ + +where $g _ { i , t }$ is the maximum score of labeling the last segment of the prefix $\mathbf { x } _ { 1 , i }$ with $t$ . For initialization, we set the value of $g _ { . 1 , \mathrm { O } } ^ { d }$ as 0 and the others as $- \infty$ . By performing the inner loops of two max operations in parallel, the practical time complexity for computing $g _ { i , t } , 1 \leq i \leq n , t \in \mathcal { L }$ is also ${ \mathcal { O } } ( n )$ . Ultimately, the segmentation score $f ( \hat { \mathbf { y } } )$ is obtained by $\operatorname* { m a x } _ { t \in \mathcal { L } } g _ { n , t }$ . + +This extension further improves the results on syntactic chunking and Chinese POS tagging, as both tasks have rich sequential features among the labels of segments. + +Table 1: Experiment results on Chinese word segmentation. + +
ModelASMSRCITYUPKUCTB6
Rich Pretraining(Yang et al.,2017)95.797.596.996.396.2
Bi-LSTM(Ma et al.,2018)96.298.197.296.196.7
Multi-Criteria_Learning +_BERT_(Huang etal., 2019)96.697.997.696.697.6
BERT (Meng et al.,2019)96.598.197.696.5=
Glyce + BERT (Meng et al.,2019)96.798.397.996.7-
Unlabeled LUA96.9498.2798.2196.8898.13
+ +Table 2: Experiment results on the four datasets of Chinese POS tagging. + +
ModelCTB5CTB6CTB9UD1
Bi-RNN+ CRF (Single) (Shao et al., 2017) Bi-RNN + CRF (Ensemble) (Shao et al.,2017)94.0790.8191.8989.41
Lattice-LSTM(Meng et al.,2019)94.38-92.3489.75
Glyce + Lattice-LSTM (Meng et al., 2019)95.1491.4392.1390.09
BERT (Meng et al.,2019)95.6191.9292.3890.87
Glyce +BERT (Meng et al., 2019)96.0694.7792.2994.79
96.6195.4193.1596.14
This WorkLUA96.7995.3993.2296.01
LUA w/Label Correlations97.9696.6393.9597.08
+ +# 4 EXPERIMENTS + +We have conducted extensive studies on 5 tasks, including Chinese word segmentation, Chinese POS tagging, syntactic chunking, NER, and slot filling, across 15 datasets. Firstly, Our models have achieved new state-of-the-art performances on 13 of them. Secondly, the results demonstrate that the F1 score of identifying long-length segments has been notably improved. Lastly, we show that LUA is a very efficient algorithm concerning the running time. + +# 4.1 SETTINGS + +We use the same configurations for all 15 datasets. L2 regularization and dropout ratio are respectively set as $1 \times 1 0 ^ { - 6 }$ and 0.2 for reducing overfit. We use Adam (Kingma & Ba, 2014) to optimize our model. Following prior works, BERTBASE is adopted as the sentence encoder. We use uncased BERTBASE for slot filling, Chinese BERTBASE for Chinese tasks (e.g., Chinese POS tagging), and cased BERTBASE for others (e.g., syntactic chunking). In addition, the improvements of our model over baselines are statistically significant with $p < 0 . 0 5$ under t-test. + +# 4.2 CHINESE WORD SEGMENTATION + +Chinese word segmentation splits a Chinese character sequence into a sequence of Chinese words. We use SIGHAN 2005 bake-off (Emerson, 2005) and Chinese Treebank 6.0 (CTB6) (Xue et al., 2005). SIGHAN 2005 back-off consists of 5 datasets, namely AS, MSR, CITYU, and PKU. Following Ma et al. (2018), we randomly select $1 0 \%$ training data as development set. We convert all digits, punctuation, and Latin letters to half-width for handling full/half-width mismatch between training and test set. We also convert AS and CITYU to simplified Chinese. For CTB6, we follow the same format and partition as in Yang et al. (2017); Ma et al. (2018). + +Table 1 depicts the experiment results. All the results of baselines are from Yang et al. (2017); Ma et al. (2018); Huang et al. (2019); Meng et al. (2019). We have achieved new state-of-the-art performance on all datasets except MSR. Our model improves the F1 score by $0 . 2 5 \%$ on AS, $0 . 3 2 \%$ on CITYU, $0 . 1 9 \%$ on PKU, and $0 . 5 4 \%$ on CTB6. Note that our model doesn’t use any external resources, such as glyph information (Meng et al., 2019) or POS tags (Yang et al., 2017). Despite this, our model is still competitive with Glyce $^ +$ BERT on MSR. + +# 4.3 CHINESE POS TAGGING + +Chinese POS tagging jointly segments a Chinese character sequence and assigns a POS tag to each segmented unit. We use Chinese Treebank 5.0 (CTB5), CTB6, Chinese Treebank 9.0 (CTB9) (Xue et al., 2005), and the Chinese section of Universal Dependencies 1.4 (UD1) (Nivre et al., 2016). CTB5 is comprised of newswire data. CTB9 consists of source texts in various genres, which cover CTB5. we convert the texts in UD1 from traditional Chinese into simplified Chinese. We follow the same train/dev/test split for above datasets as in Shao et al. (2017). + +Table 3: Experiment results on syntactic chunking and NER. + +
ModelChunkingNER
CoNLL-2000CoNLL-2003OntoNotes5.0
Bi-LSTM + CRF (Huang et al., 2015)94.4690.101
Flair Embeddings (Akbik et al., 2018)96.7293.0989.3
GCDT w/BERT (Liu et al., 2019b)96.8193.231
BERT-MRC (Li et al., 2019)-93.0491.11
HCR w/BERT (Luo et al., 2020)=93.3790.30
BERT-Biaffine Model (Yu et al., 2020) LUA-93.591.3
This Work96.9593.4692.09
LUA w/Label Correlations97.23--
+ +Table 2 shows the experiment results. The performances of all baselines are reported from Meng et al. (2019). Our model LUA w/ Label Correlations has yielded new state-of-the-art results on all the datasets: it improves the F1 scores by $1 . 3 5 \%$ on CTB5, $1 . 2 2 \%$ on CTB6, $0 . 8 \%$ on CTB9, and $0 . 9 4 \%$ on UD1. Moreover, the basic LUA without capturing the label correlations also outperforms the strongest baseline, Glyce $^ +$ BERT, by $0 . 1 8 \%$ on CTB5 and $0 . 0 7 \%$ on CTB9. All these facts further verify the effectiveness of LUA and its extension. + +# 4.4 SYNTACTIC CHUNKING AND NER + +Syntactic chunking aims to find phrases related to syntatic category for a sentence. We use CoNLL2000 dataset (Sang & Buchholz, 2000), which defines 11 syntactic chunk types (NP, VP, PP, etc.) and follow the standard splittings of training and test datasets as previous work. NER locates the named entities mentioned in unstructured text and meanwhile classifies them into predefined categories. We use CoNLL-2003 dataset (Sang & De Meulder, 2003) and OntoNotes 5.0 dataset (Pradhan et al., 2013). CoNLL-2003 dataset consists of 22137 sentences totally and is split into 14987, 3466, and 3684 sentences for the training set, development set, and test set, respectively. It is tagged with four linguistic entity types (PER, LOC, ORG, MISC). OntoNotes 5.0 dataset contains 76714 sentences from a wide variety of sources (e.g., magazine and newswire). It includes 18 types of named entity, which consists of 11 types (Person, Organization, etc.) and 7 values (Date, Percent, etc.). We follow the same format and partition as in Li et al. (2019); Luo et al. (2020); Yu et al. (2020). In order to fairly compare with previous reported results, we convert the predicted segments into IOB format and utilize conlleval script1 to compute the F1 score at test time. + +Table 3 shows the results. Most of baselines are directly taken from Akbik et al. (2018); Li et al. (2019); Luo et al. (2020); Yu et al. (2020). Besides, following Luo et al. (2020), we rerun the source code2 of GCDT and report its result on CoNLL-2000 with standard evaluation method. Generally, our proposed models LUA w/o Label Correlations yield competitive performance over state-of-theart models on both Chunking and NER tasks. Specifically, regarding to the NER task, on CoNLL2003 dataset our model LUA outperforms several strong baselines including Flair Embedding, and it is comparable to the state-of-the-art model (i.e., BERT-Biaffine Model). In particular, on OntoNotes dataset, LUA outperforms it by $0 . 7 9 \%$ points and establishes a new state-of-the-art result. Regarding to the Chunking task, LUA advances the best model (GCDT) and the improvements are further enlarged to $0 . 4 \hat { 2 } \%$ points by LUA w/ Label Correlations. + +# 4.5 SLOT FILLING + +Slot filling, as an important task in spoken language understanding (SLU), extracts semantic constituents from an utterance. We use ATIS dataset (Hemphill et al., 1990), SNIPS dataset (Coucke et al., 2018), and MTOD dataset (Schuster et al., 2018). ATIS dataset consists of audio recordings of + +Table 4: Experiment results on the three datasets of slot filling. + +
ModelATISSNIPSMTOD
Slot-Gated SLU (Goo et al.,2018) Bi-LSTM + EMLo (Siddhant et al., 2019)95.2088.3095.12
95.4293.90-
Joint BERT (Chen et al., 2019b) CM-Net (Liu et al.,2019c)96.10 96.2097.0096.48
96.1597.15-
This WorkLUA LUA w/ Intent Detection96.2797.1097.53
97.2097.55
+ +
Model1-3(8695)4-7(2380)8-11(151)12-24(31)Overall
HCRw/BERT91.1585.2250.4320.6790.27
BERT-Biaffine Model91.6787.2370.2440.5591.26
LUA92.3188.5277.3457.2792.09
+ +Table 5: The F1 scores for NER models on different segment lengths. $A - B ( N )$ denotes that there are $N$ entities whose span lengths are between $A$ and $B$ . + +people making flight reservations. The training set contains 4478 utterances and the test set contains 893 utterances. SNIPS dataset is collected by Snips personal voice assistant. The training set contains 13084 utterances and the test set contains 700 utterances. MTOD dataset has three domains, including Alarm, Reminder, and Weather. We use the English part of MTOD dataset, where training set, dev set, and test set respectively contain 30521, 4181, and 8621 utterances. We follow the same partition of above datasets as in Goo et al. (2018); Schuster et al. (2018). + +Table 4 summarizes the experiment results for slot filling. On ATIS and SNIPS, we take the results of all baselines as reported in Liu et al. (2019c) for comparison. On MTOD, we rerun the open source toolkits, Slot-gated $\mathrm { S L U } ^ { 3 }$ and Joint BERT4. As all previous approaches jointly model slot filling and intent detection (a classification task in SLU), we follow them to augment LUA with intent detection for a fair comparison. As shown in Table 4, the augmented LUA has surpassed all baselines and obtained state-of-the-art results on the three datasets: it increases the F1 scores by around $0 . 0 5 \%$ on ATIS and SNIPS, and delivers a substantial gain of $1 . 1 1 \%$ on MTOD. It’s worth mentioning that LUA even outperforms the strong baseline Joint BERT with a margin of $0 . 1 8 \%$ and $0 . 2 1 \%$ on ATIS and SNIPS without modeling intent detection. + +# 4.6 LONG-LENGTH SEGMENT IDENTIFICATION + +Since LUA doesn’t resort to IOB tagging scheme, it should be more accurate in recognizing longlength segments than prior methods. To verify this intuition, we evaluate different models on the segments of different lengths. This study is investigated on OntoNotes 5.0 dataset. Two strong models are adopted as the baselines: one is the best sequence labeling model (i.e., HCR) and the other is the best span-based model (i.e., BERT-Biaffine Model). Both baselines are reproduced by rerunning their open source codes, biaffine-ner5 and Hire-NER6. + +The results are shown in Table 5. On the one hand, both LUA and Biaffine Model obtain much higher scores of extracting long-length entities than HCR. For example, LUA outperforms HCR w/ BERT by almost twofold on range $1 2 - 2 4$ . On the other hand, LUA achieves even better results than BERT-Biaffine Model. For instance, the F1 score improvements of LUA over it are $1 0 . 1 1 \%$ on range $8 - 1 1$ and $4 1 . 2 3 \%$ on range $1 2 - 2 4$ . + +# 4.7 RUNNING TIME ANALYSIS + +Table 6 shows the running time comparison among different models. The middle two columns are the time complexity of decoding a label sequence. The last column is the time cost of one epoch in training. We set the batch size as 16 and run all the models on 1 GPU. The results indicate that + +Table 6: Running time comparison on the syntactic chunking dataset. + +
ModelTheoretical ComplexityPractical ComplexityRunning Time
BERT BERT+CRFO(n) O(n|C|2)0(1)5m11s 7m33s
LUAO(n²)O(n) O(n)6m25s
LUA w/Label CorrelationsO(n²|C1²)0(n)7m09s
+ +the success of our models in performances does not lead to serious side-effects on efficiency. For example, with the same practical time complexity, BERT $^ +$ CRF is slower than the proposed LUA by $1 5 . 0 1 \%$ and LUA w/ Label Correlations by $5 . \dot { 3 } 0 \%$ . + +# 5 RELATED WORK + +Sequence segmentation aims to partition a fine-grained unit sequence into multiple labeled coarsegrained units. Traditionally, there are two types of methods. The most common is to cast it into a sequence labeling task (Mesnil et al., 2014; Ma & Hovy, 2016; Chen et al., 2019a) by using IOB tagging scheme. This method is simple and effective, providing a number of state-of-the-art results. Akbik et al. (2018) present Flair Embeddings that pretrain character embedding in a large corpus and directly use it, instead of word representation, to encode a sentence. Liu et al. (2019b) introduce GCDT that deepens the state transition path at each position in a sentence, and further assigns each word with global representation. Luo et al. (2020) use hierarchical contextualized representations to incorporate both sentence-level and document-level information. Nevertheless, these models are vulnerable to producing invalid labels and perform poorly in identifying longlength segments. This problem is very severe in low-resource setting. Ye & Ling (2018); Liu et al. (2019a) adopt Semi-Markov CRF (Sarawagi & Cohen, 2005) that improves CRF at phrase level. However, the computation of CRF loss is costly in practice and the potential to model the label dependencies among segments is limited. An alternative approach that is less studied uses a transition-based system to incrementally segment and label an input sequence (Zhang et al., 2016; Lample et al., 2016). For instance, Qian et al. (2015) present a transition-based model for joint word segmentation, POS tagging, and text normalization. Wang et al. (2017) employ a transitionbased model to disfluency detection task, which helps capture non-local chunk-level features. These models have many advantages like theoretically lower time complexity and labeling the extracted mentions at span level. However, to our best knowledge, no recent transition-based models surpass their sequence labeling based counterparts. + +More recently, there is a surge of interests in span-based models. They treat a segment, instead of a fine-grained token, as the basic unit for labeling. For example, Li et al. (2019) regard NER as a MRC task, where entities are recognized as retrieving answer spans. Since these methods are locally normalized at span level rather than sequence level, they potentially suffer from the label bias problem. Additionally, they rely on rules to ensure the extracted span set to be valid. Spanbased methods also emerge in other fields of NLP. In dependency parsing, Wang & Chang (2016) propose a LSTM-based sentence segment embedding method named LSTM-Minus. Stern et al. (2017) integrate LSTM-minus feature into constituent parsing models. In coreference resolution, Lee et al. (2018) consider all spans in a document as the potential mentions and learn distributions over all the possible antecedents for each other. + +# 6 CONCLUSION + +This work proposes a novel LUA for general sequence segmentation tasks. LUA directly scores all the valid segmentation candidates and uses dynamic programming to extract the maximum scoring one. Compared with previous models, LUA naturally guarantees the predicted segmentation to be valid and circumvents the label bias problem. Extensive studies are conducted on 5 tasks across 15 datasets. We have achieved the state-of-the-art performances on 13 of them. Importantly, the F1 score of identifying long-length segments is significantly improved. + +# REFERENCES + +Alan Akbik, Duncan Blythe, and Roland Vollgraf. Contextual string embeddings for sequence labeling. In Proceedings of the 27th International Conference on Computational Linguistics, pp. 1638–1649, 2018. + +Richard Bellman. Dynamic programming. Science, 153(3731):34–37, 1966. + +Hui Chen, Zijia Lin, Guiguang Ding, Jianguang Lou, Yusen Zhang, and Borje Karlsson. Grn: Gated relation network to enhance convolutional neural network for named entity recognition. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 33, pp. 6236–6243, 2019a. + +Qian Chen, Zhu Zhuo, and Wen Wang. Bert for joint intent classification and slot filling. arXiv preprint arXiv:1902.10909, 2019b. + +Alice Coucke, Alaa Saade, Adrien Ball, Theodore Bluche, Alexandre Caulier, David Leroy, Cl ´ ement ´ Doumouro, Thibault Gisselbrecht, Francesco Caltagirone, Thibaut Lavril, et al. Snips voice platform: an embedded spoken language understanding system for private-by-design voice interfaces. arXiv preprint arXiv:1805.10190, 2018. + +Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep bidirectional transformers for language understanding. arXiv preprint arXiv:1810.04805, 2018. + +Timothy Dozat and Christopher D Manning. Deep biaffine attention for neural dependency parsing. arXiv preprint arXiv:1611.01734, 2016. + +Thomas Emerson. The second international chinese word segmentation bakeoff. In Proceedings of the fourth SIGHAN workshop on Chinese language Processing, 2005. + +Chih-Wen Goo, Guang Gao, Yun-Kai Hsu, Chih-Li Huo, Tsung-Chieh Chen, Keng-Wei Hsu, and Yun-Nung Chen. Slot-gated modeling for joint slot filling and intent prediction. 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. 753–757, 2018. + +Charles T Hemphill, John J Godfrey, and George R Doddington. The atis spoken language systems pilot corpus. In Speech and Natural Language: Proceedings of a Workshop Held at Hidden Valley, Pennsylvania, June 24-27, 1990, 1990. + +Sepp Hochreiter and Jurgen Schmidhuber. Long short-term memory. ¨ Neural computation, 9(8): 1735–1780, 1997. + +Weipeng Huang, Xingyi Cheng, Kunlong Chen, Taifeng Wang, and Wei Chu. Toward fast and accurate neural chinese word segmentation with multi-criteria learning. arXiv preprint arXiv:1903.04190, 2019. + +Zhiheng Huang, Wei Xu, and Kai Yu. Bidirectional lstm-crf models for sequence tagging. arXiv preprint arXiv:1508.01991, 2015. + +Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980, 2014. + +John Lafferty, Andrew McCallum, and Fernando CN Pereira. Conditional random fields: Probabilistic models for segmenting and labeling sequence data. 2001. + +Guillaume Lample, Miguel Ballesteros, Sandeep Subramanian, Kazuya Kawakami, and Chris Dyer. Neural architectures for named entity recognition. arXiv preprint arXiv:1603.01360, 2016. + +Kenton Lee, Luheng He, and Luke Zettlemoyer. Higher-order coreference resolution with coarseto-fine inference. arXiv preprint arXiv:1804.05392, 2018. + +Xiaoya Li, Jingrong Feng, Yuxian Meng, Qinghong Han, Fei Wu, and Jiwei Li. A unified mrc framework for named entity recognition. arXiv preprint arXiv:1910.11476, 2019. + +Tianyu Liu, Jin-Ge Yao, and Chin-Yew Lin. Towards improving neural named entity recognition with gazetteers. In Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics, pp. 5301–5307, 2019a. + +Yijin Liu, Fandong Meng, Jinchao Zhang, Jinan Xu, Yufeng Chen, and Jie Zhou. Gcdt: A global context enhanced deep transition architecture for sequence labeling. arXiv preprint arXiv:1906.02437, 2019b. + +Yijin Liu, Fandong Meng, Jinchao Zhang, Jie Zhou, Yufeng Chen, and Jinan Xu. Cm-net: A novel collaborative memory network for spoken language understanding. arXiv preprint arXiv:1909.06937, 2019c. + +Ying Luo, Fengshun Xiao, and Hai Zhao. Hierarchical contextualized representation for named entity recognition. In AAAI, pp. 8441–8448, 2020. + +Ji Ma, Kuzman Ganchev, and David Weiss. State-of-the-art chinese word segmentation with bilstms. arXiv preprint arXiv:1808.06511, 2018. + +Xuezhe Ma and Eduard Hovy. End-to-end sequence labeling via bi-directional lstm-cnns-crf. arXiv preprint arXiv:1603.01354, 2016. + +Yuxian Meng, Wei Wu, Fei Wang, Xiaoya Li, Ping Nie, Fan Yin, Muyu Li, Qinghong Han, Xiaofei Sun, and Jiwei Li. Glyce: Glyph-vectors for chinese character representations. In Advances in Neural Information Processing Systems, pp. 2746–2757, 2019. + +Gregoire Mesnil, Yann Dauphin, Kaisheng Yao, Yoshua Bengio, Li Deng, Dilek Hakkani-Tur, Xi-´ aodong He, Larry Heck, Gokhan Tur, Dong Yu, et al. Using recurrent neural networks for slot filling in spoken language understanding. IEEE/ACM Transactions on Audio, Speech, and Language Processing, 23(3):530–539, 2014. + +Joakim Nivre, Marie-Catherine De Marneffe, Filip Ginter, Yoav Goldberg, Jan Hajic, Christopher D Manning, Ryan McDonald, Slav Petrov, Sampo Pyysalo, Natalia Silveira, et al. Universal dependencies v1: A multilingual treebank collection. In Proceedings of the Tenth International Conference on Language Resources and Evaluation (LREC’16), pp. 1659–1666, 2016. + +Nanyun Peng et al. Jointly Learning Representations for Low-Resource Information Extraction. PhD thesis, Ph. D. thesis, Johns Hopkins University, 2017. + +Sameer Pradhan, Alessandro Moschitti, Nianwen Xue, Hwee Tou Ng, Anders Bjorkelund, Olga ¨ Uryupina, Yuchen Zhang, and Zhi Zhong. Towards robust linguistic analysis using ontonotes. In Proceedings of the Seventeenth Conference on Computational Natural Language Learning, pp. 143–152, 2013. + +Tao Qian, Yue Zhang, Meishan Zhang, Yafeng Ren, and Donghong Ji. A transition-based model for joint segmentation, pos-tagging and normalization. In Proceedings of the 2015 Conference on Empirical Methods in Natural Language Processing, pp. 1837–1846, 2015. + +Erik F Sang and Sabine Buchholz. Introduction to the conll-2000 shared task: Chunking. arXiv preprint cs/0009008, 2000. + +Erik F Sang and Fien De Meulder. Introduction to the conll-2003 shared task: Languageindependent named entity recognition. arXiv preprint cs/0306050, 2003. + +Sunita Sarawagi and William W Cohen. Semi-markov conditional random fields for information extraction. In Advances in neural information processing systems, pp. 1185–1192, 2005. + +Sebastian Schuster, Sonal Gupta, Rushin Shah, and Mike Lewis. Cross-lingual transfer learning for multilingual task oriented dialog. arXiv preprint arXiv:1810.13327, 2018. + +Yan Shao, Christian Hardmeier, Jorg Tiedemann, and Joakim Nivre. Character-based joint segmen- ¨ tation and pos tagging for chinese using bidirectional rnn-crf. arXiv preprint arXiv:1704.01314, 2017. + +Aditya Siddhant, Anuj Goyal, and Angeliki Metallinou. Unsupervised transfer learning for spoken language understanding in intelligent agents. In Proceedings of the AAAI conference on artificial intelligence, volume 33, pp. 4959–4966, 2019. + +Mitchell Stern, Jacob Andreas, and Dan Klein. A minimal span-based neural constituency parser. arXiv preprint arXiv:1705.03919, 2017. + +Shaolei Wang, Wanxiang Che, Yue Zhang, Meishan Zhang, and Ting Liu. Transition-based disfluency detection using lstms. In Proceedings of the 2017 Conference on Empirical Methods in Natural Language Processing, pp. 2785–2794, 2017. + +Wenhui Wang and Baobao Chang. Graph-based dependency parsing with bidirectional lstm. In Proceedings of the 54th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pp. 2306–2315, 2016. + +Naiwen Xue, Fei Xia, Fu-Dong Chiou, and Marta Palmer. The penn chinese treebank: Phrase structure annotation of a large corpus. Natural language engineering, 11(2):207, 2005. + +Nianwen Xue. Chinese word segmentation as character tagging. In International Journal of Computational Linguistics & Chinese Language Processing, Volume 8, Number 1, February 2003: Special Issue on Word Formation and Chinese Language Processing, pp. 29–48, 2003. + +Jie Yang, Yue Zhang, and Fei Dong. Neural word segmentation with rich pretraining. arXiv preprint arXiv:1704.08960, 2017. + +Zhi-Xiu Ye and Zhen-Hua Ling. Hybrid semi-markov crf for neural sequence labeling. arXiv preprint arXiv:1805.03838, 2018. + +Juntao Yu, Bernd Bohnet, and Massimo Poesio. Named entity recognition as dependency parsing. arXiv preprint arXiv:2005.07150, 2020. + +Feifei Zhai, Saloni Potdar, Bing Xiang, and Bowen Zhou. Neural models for sequence chunking. In Thirty-First AAAI Conference on Artificial Intelligence, 2017. + +Meishan Zhang, Yue Zhang, and Guohong Fu. Transition-based neural word segmentation. In Proceedings of the 54th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pp. 421–431, 2016. \ No newline at end of file diff --git a/parse/train/PQlC91XxqK5/PQlC91XxqK5_content_list.json b/parse/train/PQlC91XxqK5/PQlC91XxqK5_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..517f46f950a7b41fd1ce37cfa08b72a402562fad --- /dev/null +++ b/parse/train/PQlC91XxqK5/PQlC91XxqK5_content_list.json @@ -0,0 +1,1705 @@ +[ + { + "type": "text", + "text": "SEGMENTING NATURAL LANGUAGE SENTENCES VIA LEXICAL UNIT ANALYSIS ", + "text_level": 1, + "bbox": [ + 176, + 98, + 821, + 146 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Anonymous authors Paper under double-blind review ", + "bbox": [ + 183, + 171, + 398, + 198 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 236, + 544, + 251 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "In this work, we present Lexical Unit Analysis (LUA), a framework for general sequence segmentation tasks. Given a natural language sentence, LUA scores all the valid segmentation candidates and utilizes dynamic programming (DP) to extract the maximum scoring one. LUA enjoys a number of appealing properties such as inherently guaranteeing the predicted segmentation to be valid and facilitating globally optimal training and inference. Besides, the practical time complexity of LUA can be reduced to linear time, which is very efficient. We have conducted extensive experiments on 5 tasks, including syntactic chunking, named entity recognition (NER), slot filling, Chinese word segmentation, and Chinese part-of-speech (POS) tagging, across 15 datasets. Our models have achieved the state-of-the-art performances on 13 of them. The results also show that the F1 score of identifying long-length segments is notably improved. ", + "bbox": [ + 233, + 268, + 764, + 435 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 465, + 336, + 482 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Sequence segmentation is essentially the process of partitioning a sequence of fine-grained lexical units into a sequence of coarse-grained ones. In some scenarios, each composed unit is assigned a categorical label. For example, Chinese word segmentation splits a character sequence into a word sequence (Xue, 2003). Syntactic chunking segments a word sequence into a sequence of labeled groups of words (i.e., constituents) (Sang & Buchholz, 2000). ", + "bbox": [ + 174, + 500, + 825, + 569 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "There are currently two mainstream approaches to sequence segmentation. The most common is to regard it as a sequence labeling problem by using IOB tagging scheme (Mesnil et al., 2014; Ma & Hovy, 2016; Liu et al., 2019b; Chen et al., 2019a; Luo et al., 2020). A representative work is Bidirectional LSTM-CRF (Huang et al., 2015), which adopts LSTM (Hochreiter & Schmidhuber, 1997) to read an input sentence and CRF (Lafferty et al., 2001) to decode the label sequence. This type of method is very effective, providing tons of state-of-the-art performances. However, it is vulnerable to producing invalid labels, for instance, “O, I-tag, I-tag”. This problem is very severe in low resource settings (Peng et al., 2017). In experiments (see section 4.6), we also find that it performs poorly in recognizing long-length segments. ", + "bbox": [ + 174, + 575, + 825, + 702 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Recently, there is a growing interest in span-based models (Zhai et al., 2017; Li et al., 2019; Yu et al., 2020). They treat a span rather than a token as the basic unit for labeling. Li et al. (2019) cast named entity recognition (NER) to a machine reading comprehension (MRC) task, where entities are extracted as retrieving answer spans. Yu et al. (2020) rank all the spans in terms of the scores predicted by a bi-affine model (Dozat & Manning, 2016). In NER, span-based models have significantly outperformed their sequence labeling based counterparts. While these methods circumvent the use of IOB tagging scheme, they still rely on post-processing rules to guarantee the extracted span set to be valid. Moreover, since span-based models are locally normalized at span level, they potentially suffer from the label bias problem (Lafferty et al., 2001). ", + "bbox": [ + 174, + 708, + 825, + 833 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "This paper seeks to provide a new framework which infers the segmentation of a unit sequence by directly selecting from all valid segmentation candidates, instead of manipulating tokens or spans. To this end, we propose Lexical Unit Analysis (LUA) in this paper. LUA assigns a score to every valid segmentation candidate and leverages dynamic programming (DP) (Bellman, 1966) to search for the maximum scoring one. The score of a segmentation is computed by using the scores of its all segments. Besides, we adopt neural networks to score every segment of the input sentence. ", + "bbox": [ + 174, + 840, + 825, + 922 + ], + "page_idx": 0 + }, + { + "type": "image", + "img_path": "images/b34a0a4b29cfa62fc1064e82fa52cff24949a657d0e6f47cf445c7abc4ae1d90.jpg", + "image_caption": [ + "Figure 1: A toy example to show LUA and how it differs from prior methods. The items in blue and red respectively denote valid and invalid predictions. " + ], + "image_footnote": [], + "bbox": [ + 207, + 99, + 790, + 287 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "The purpose of using DP is to solve the intractability of extracting the maximum scoring segmentation candidate by brute-force search. The time complexity of LUA is quadratic time, yet it can be optimized to linear time in practice by performing parallel matrix computations. For training criterion, we incur a hinge loss between the ground truth and the predictions. We also extend LUA to unlabeled segmentation and capturing label correlations. ", + "bbox": [ + 174, + 357, + 825, + 428 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Figure 1 illustrates the comparison between previous methods and the proposed LUA. Prior models at token level and span level are vulnerable to generating invalid predictions, and hence rely on heuristic rules to fix them. For example, in the middle part of Figure 1, the spans of two inferred named entities, [Word $\\mathrm { C u p } \\mathrm { _ { M I S C } }$ and $[ \\mathrm { C u p } ] _ { \\mathrm { M I S C } }$ , conflicts, which is mitigated by comparing the predicted scores. LUA scores all possible segmentation candidates and uses DP to extract the maximum scoring one. In this way, our models guarantee the predictions to be valid. Moreover, the globality of DP addresses the label bias problem. ", + "bbox": [ + 173, + 434, + 825, + 532 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Extensive experiments are conducted on syntactic chunking, NER, slot filling, Chinese word segmentation, and Chinese part-of-speech (POS) tagging across 15 tasks. We have obtained new stateof-the-art results on 13 of them and performed competitively on the others. In particular, we observe that LUA is expert at identifying long-length segments. ", + "bbox": [ + 174, + 539, + 825, + 594 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 METHODOLOGY ", + "text_level": 1, + "bbox": [ + 176, + 614, + 341, + 631 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We denote an input sequence (i.e., fine-grained lexical units) as $\\mathbf { x } = [ x _ { 1 } , x _ { 2 } , \\cdot \\cdot \\cdot , x _ { n } ]$ , where $n$ is the sequence length. An output sequence (i.e., coarse-grained lexical units) is represented as the segmentation $\\mathbf { y } = [ y _ { 1 } , y _ { 2 } , \\cdots , y _ { m } ]$ with each segment $y _ { k }$ being a triple $( i _ { k } , j _ { k } , t _ { k } )$ . $m$ denotes its length. $( i _ { k } , j _ { k } )$ specifies a span that corresponds to the phrase $\\mathbf { x } _ { i _ { k } , j _ { k } } = [ x _ { i _ { k } } , x _ { i _ { k } + 1 } , \\cdot \\cdot \\cdot , x _ { j _ { k } } ]$ . $t _ { k }$ is a label from the label space $\\mathcal { L }$ . We define a valid segmentation candidate as its segments are non-overlapping and fully cover the input sequence. ", + "bbox": [ + 173, + 646, + 826, + 731 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "A case extracted from CoNLL-2003 dataset (Sang & De Meulder, 2003): ", + "bbox": [ + 176, + 737, + 653, + 752 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/f88d55dbc3255902eb4f47a9e662f9a54902436565787429bd2615935f3acfc4.jpg", + "text": "$$\n\\begin{array} { r } { \\mathbf { x } = [ [ \\mathrm { S O S } ] , \\mathrm { S a n g t h a i } , \\mathrm { G l o r y } , 2 2 / 1 1 / 9 6 , 3 0 0 0 , \\mathrm { S i n g a p o r e } ] } \\\\ { \\mathbf { y } = [ ( 1 , 1 , 0 ) , ( 2 , 3 , \\mathrm { M I S C } ) , ( 4 , 4 , 0 ) , ( 5 , 5 , 0 ) , ( 6 , 6 , \\mathrm { L O C } ) ] } \\end{array} .\n$$", + "text_format": "latex", + "bbox": [ + 292, + 758, + 709, + 790 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Start-of-sentence symbol [SOS] is added in the pre-processing stage. ", + "bbox": [ + 176, + 796, + 622, + 813 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2.1 MODEL: SCORING SEGMENTATION CANDIDATES ", + "text_level": 1, + "bbox": [ + 173, + 828, + 555, + 843 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We denote $\\mathcal { V }$ as the universal set that contains all valid segmentation candidates. Given one of its members $\\mathbf { y } \\in \\mathcal { V }$ , we compute the score $f ( \\mathbf { y } )$ as ", + "bbox": [ + 173, + 854, + 823, + 883 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/b4eeb1215c28a8c7d8a70ce88bcebb7c8716dddcb809969942d46b5d4d1b1a17.jpg", + "text": "$$\nf ( \\mathbf { y } ) = \\sum _ { ( i , j , t ) \\in \\mathbf { y } } \\Big ( s _ { i , j } ^ { c } + s _ { i , j , t } ^ { l } \\Big ) ,\n$$", + "text_format": "latex", + "bbox": [ + 393, + 890, + 602, + 928 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Input: Composition score $s _ { i , j } ^ { c }$ and label score $s _ { i , j , t } ^ { l }$ for every possible segment $( i , j , t )$ . ", + "bbox": [ + 169, + 126, + 746, + 142 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "utput: The maximum segmentation scoring candidate $\\hat { \\mathbf { y } }$ and its score $f ( \\hat { \\mathbf { y } } )$ . ", + "bbox": [ + 187, + 143, + 714, + 156 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "1 Set two $n \\times n$ shaped matrices, $\\mathbf { c } ^ { L }$ and ${ \\bf b } ^ { c }$ , for computing maximum scoring labels. ", + "bbox": [ + 160, + 157, + 725, + 170 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2 Set two $n$ -length vectors, $\\mathbf { g }$ and $\\mathbf { b } ^ { g }$ , for computing maximum scoring segmentation. ", + "bbox": [ + 160, + 171, + 718, + 185 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "4 Compute the maximum label score for each span $( i , j ) \\colon s _ { i , j } ^ { L } = \\operatorname* { m a x } _ { t \\in \\mathcal { L } } s _ { i , j , t } ^ { l }$ \n5 Record the backtracking index: $b _ { i , j } ^ { c } = \\arg \\operatorname* { m a x } _ { t \\in \\mathcal { L } } s _ { i , j , t } ^ { l }$ . ", + "bbox": [ + 165, + 199, + 704, + 233 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "6 Initialize the value of the base case $\\mathbf { x } _ { 1 , 1 } \\colon g _ { 1 } = s _ { 1 , 1 } ^ { c } + s _ { 1 , 1 } ^ { L }$ ", + "bbox": [ + 160, + 236, + 555, + 252 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "8 Compute the value of the prefix $\\begin{array} { r } { \\mathbf { x } _ { 1 , i } { \\mathrm { : ~ } } g _ { i } = \\operatorname* { m a x } _ { 1 \\leq j \\leq i - 1 } \\left( g _ { i - j } + \\left( s _ { i - j + 1 , i } ^ { c } + s _ { i - j + 1 , i } ^ { L } \\right) \\right) } \\end{array}$ \n9 Record the backtracking index: $b _ { i } ^ { g } = \\arg \\operatorname* { m a x } _ { 1 \\leq j \\leq i - 1 } \\left( g _ { i - j } + ( s _ { i - j + 1 , i } ^ { c } + s _ { i - j + 1 , i } ^ { L } ) \\right) .$ . \n10 Get the maximum scoring candidate $\\hat { \\mathbf { y } }$ by back tracing the tables $\\mathbf { b } ^ { g }$ and $\\mathbf { b } ^ { c }$ . \n11 Get the maximum segmentation score: $f ( \\hat { \\mathbf { y } } ) = g _ { n }$ . ", + "bbox": [ + 165, + 267, + 779, + 300 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "", + "bbox": [ + 156, + 303, + 671, + 333 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $s _ { i , j } ^ { c }$ is the composition score to estimate the feasibility of merging several fine-grained units $[ x _ { i } , x _ { i + 1 } , \\cdot \\cdot \\cdot , x _ { j } ]$ into a coarse-grained unit and $s _ { i , j , t } ^ { l }$ is the label score to measure how likely the label of this segment is $t$ . Both scores are obtained by a scoring model. ", + "bbox": [ + 174, + 367, + 825, + 412 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Scoring Model. a scoring model scores all possible segments $( i , j , t )$ for an input sentence $\\mathbf { x }$ . Firstly, we get the representation for each fine-grained unit. Following prior works (Li et al., 2019; Luo et al., 2020; Yu et al., 2020), we adopt BERT (Devlin et al., 2018), a powerful pre-trained language model, as the sentence encoder. Specifically, we have ", + "bbox": [ + 173, + 429, + 825, + 486 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/d9e94df8f089510bd74aa3185e0dcd1b7e94b88c40f2f670c76dd9fd397c10d4.jpg", + "text": "$$\n[ \\mathbf { h } _ { 1 } ^ { w } , \\mathbf { h } _ { 2 } ^ { w } \\cdot \\cdot \\cdot \\mathbf { \\epsilon } , \\mathbf { h } _ { n } ^ { w } ] = \\mathrm { B E R T } ( \\mathbf { x } ) ,\n$$", + "text_format": "latex", + "bbox": [ + 392, + 493, + 604, + 511 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Then, we compute the representation for a coarse-grained unit $\\mathbf { x } _ { i , j } , 1 \\leq i \\leq j \\leq n$ as ", + "bbox": [ + 173, + 517, + 733, + 534 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/27e2d0c5384994b44168713ea50683326c64817a294acd44ec9c0adea92468ca.jpg", + "text": "$$\n\\mathbf { h } _ { i , j } ^ { p } = \\mathbf { h } _ { i } ^ { w } \\oplus \\mathbf { h } _ { j } ^ { w } \\oplus \\left( \\mathbf { h } _ { i } ^ { w } - \\mathbf { h } _ { j } ^ { w } \\right) \\oplus \\big ( \\mathbf { h } _ { i } ^ { w } \\odot \\mathbf { h } _ { j } ^ { w } \\big ) ,\n$$", + "text_format": "latex", + "bbox": [ + 344, + 540, + 651, + 560 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $\\oplus$ is vector concatenation and $\\odot$ is element-wise product. ", + "bbox": [ + 171, + 565, + 594, + 580 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Eventually, we employ two non-linear feedforward networks to score a segment $( i , j , t )$ : ", + "bbox": [ + 179, + 587, + 751, + 602 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/bec80a12be79ba41c21d919bcb58d452ae9381b46291688e763333d89b2a2884.jpg", + "text": "$$\n\\begin{array} { r } { \\boldsymbol { s } _ { i , j } ^ { c } = \\left( \\mathbf { v } ^ { c } \\right) ^ { T } \\operatorname { t a n h } ( \\mathbf { W } ^ { c } \\mathbf { h } _ { i , j } ^ { p } ) , \\boldsymbol { s } _ { i , j , t } ^ { l } = \\left( \\mathbf { v } _ { t } ^ { l } \\right) ^ { T } \\operatorname { t a n h } ( \\mathbf { W } ^ { l } \\mathbf { h } _ { i , j } ^ { p } ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 295, + 609, + 700, + 633 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $\\mathbf { v } _ { } ^ { c }$ , $\\mathbf { W } ^ { c }$ , $\\mathbf { v } _ { t } ^ { l } , t \\in \\mathcal { L }$ , and $\\mathbf { W } ^ { l }$ are all learnable parameters. Besides, the scoring model used here can be flexibly replaced by any regression method. ", + "bbox": [ + 173, + 642, + 825, + 671 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.2 INFERENCE VIA DYNAMIC PROGRAMMING ", + "text_level": 1, + "bbox": [ + 173, + 689, + 513, + 704 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The prediction of the maximum scoring segmentation candidate can be formulated as ", + "bbox": [ + 174, + 714, + 732, + 731 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/caa4c2a21b43a8e4714ab0d3f8d55af123600d3527111674492360b846f69e31.jpg", + "text": "$$\n{ \\hat { \\mathbf { y } } } = \\operatorname * { a r g m a x } _ { \\mathbf { y } \\in \\mathcal { Y } } f ( \\mathbf { y } ) .\n$$", + "text_format": "latex", + "bbox": [ + 431, + 738, + 565, + 765 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Because the size of search space $| \\mathcal { V } |$ increases exponentially with respect to the sequence length $n$ , brute-force search to solve Equation 5 is computationally infeasible. LUA uses DP to address this issue, which is facilitated by the decomposable nature of Equation 1. ", + "bbox": [ + 174, + 773, + 823, + 816 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "DP is a well-known optimization method which solves a complicated problem by breaking it down into simpler sub-problems in a recursive manner. The relation between the value of the larger problem and the values of its sub-problems is called the Bellman equation. ", + "bbox": [ + 174, + 821, + 825, + 866 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Sub-problem. In the context of LUA, the sub-problem of segmenting an input unit sequence $\\mathbf { x }$ is segmenting its prefixes $\\mathbf { x } _ { 1 , i } , 1 \\leq i \\leq n$ . We define $g _ { i }$ as the maximum segmentation score of the prefix $\\mathbf { x } _ { 1 , i }$ . Under this scheme, we have $\\textstyle \\operatorname* { m a x } _ { \\mathbf { y } \\in { \\mathcal { y } } } f ( \\mathbf { y } ) = g _ { n }$ . ", + "bbox": [ + 174, + 881, + 823, + 926 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The Bellman Equation. The relatinship between segmenting a sequence $\\mathbf { x } _ { 1 , i } , i > 1$ and segmenting its prefixes $x _ { 1 , i - j } , 1 \\leq j \\leq i - 1$ is built by the last segments $( i - j + 1 , i , t )$ : ", + "bbox": [ + 171, + 103, + 821, + 133 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/4ea631d18eb1fb1f52c566c91fa1d6d6420b272c87e744cc707644d49966264d.jpg", + "text": "$$\ng _ { i } = \\operatorname* { m a x } _ { 1 \\leq j \\leq i - 1 } \\big ( g _ { i - j } + \\big ( s _ { i - j + 1 , i } ^ { c } + \\operatorname* { m a x } _ { t \\in \\mathcal { L } } s _ { i - j + 1 , i , t } ^ { l } \\big ) \\big ) .\n$$", + "text_format": "latex", + "bbox": [ + 325, + 137, + 673, + 165 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In practice, to reduce the time complexity of above equation, the last term is computed beforehand as $\\begin{array} { r } { \\dot { s } _ { i , j } ^ { L } = \\operatorname* { m a x } _ { t \\in \\mathcal { L } } s _ { i , j , t } ^ { l } , 1 \\leq i \\leq j \\dot { \\leq } n } \\end{array}$ . Hence, Equation 6 is reformulated as ", + "bbox": [ + 173, + 169, + 828, + 199 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/34d8e85a05ba47dd37e6f441f4752efb18981451822aae6ba358f4e3517ee83e.jpg", + "text": "$$\ng _ { i } = \\operatorname* { m a x } _ { 1 \\leq j \\leq i - 1 } \\big ( g _ { i - j } + ( s _ { i - j + 1 , i } ^ { c } + s _ { i - j + 1 , i } ^ { L } ) \\big ) .\n$$", + "text_format": "latex", + "bbox": [ + 346, + 205, + 651, + 232 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The base case is the first token $\\mathbf { x } _ { 1 , 1 } = [ [ \\mathrm { S O S } ] ]$ . We get its score $g _ { 1 }$ as $s _ { 1 , 1 } ^ { c } + s _ { 1 , 1 } ^ { L }$ ", + "bbox": [ + 176, + 238, + 705, + 256 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Algorithm 1 shows how DP is applied in inference. Firstly, we set two matrices and two vectors to store the solutions to the sub-problems (1-st to 2-nd lines). Secondly, we get the maximum label scores for all the spans (3-rd to 5-th lines). Then, we initialize the trivial case $g _ { 1 }$ and recursively calculate the values for prefixes $\\mathbf { x } _ { 1 , i } , i > 1$ (6-th to 9-th lines). Finally, we get the predicted segmentation $\\hat { \\mathbf { y } }$ and its score $f ( \\hat { \\mathbf { y } } )$ (10-th to 11-th lines). ", + "bbox": [ + 174, + 260, + 825, + 332 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The time complexity of Algorithm 1 is $\\mathcal { O } ( n ^ { 2 } )$ . By performing the max operation of Equation 7 in parallel on GPU, it can be optimized to only ${ \\mathcal { O } } ( n )$ , which is highly efficient. Besides, DP, as the backbone of the proposed model, is non-parametric. The trainable parameters only exist in the scoring model part. These show LUA is a very light-weight algorithm. ", + "bbox": [ + 174, + 335, + 825, + 393 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "2.3 TRAINING CRITERION ", + "text_level": 1, + "bbox": [ + 174, + 410, + 369, + 424 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We adopt max-margin penalty as the loss function for training. Given the predicted segmentation $\\hat { \\mathbf { y } }$ and the ground truth segmentation $\\mathbf { y } ^ { * }$ , we have ", + "bbox": [ + 173, + 435, + 821, + 464 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/457d011c2cb217443885823246c257c541dd779d0f588fa29aaf2bef5c6a620f.jpg", + "text": "$$\n\\mathcal { T } = \\operatorname* { m a x } \\big ( 0 , 1 - f ( \\mathbf { y } ^ { * } ) + f ( \\hat { \\mathbf { y } } ) \\big ) .\n$$", + "text_format": "latex", + "bbox": [ + 383, + 469, + 614, + 488 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3 EXTENSIONS OF LUA ", + "text_level": 1, + "bbox": [ + 176, + 506, + 388, + 522 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We propose two extensions of LUA for generalizing it to different scenarios. ", + "bbox": [ + 173, + 536, + 674, + 553 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Unlabeled Segmentation. In some tasks (e.g., Chinese word segmentation), the segments are unlabeled. Under this scheme, the Equation 1 and Equation 7 are reformulated as ", + "bbox": [ + 171, + 565, + 823, + 595 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/e031642fd8af3f46620e1ea6c4a50cf093b131fe03f0a02674e2595726f5da4a.jpg", + "text": "$$\nf ( \\mathbf { y } ) = \\sum _ { ( i , j ) \\in \\mathbf { y } } s _ { i , j } ^ { c } , ~ g _ { i } = \\operatorname* { m a x } _ { 1 \\leq j \\leq i - 1 } ( g _ { i - j } + s _ { i - j + 1 , i } ^ { c } ) .\n$$", + "text_format": "latex", + "bbox": [ + 320, + 601, + 676, + 637 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Capturing Label Correlations. In some tasks (e.g., syntactic chunking), the labels of segments are strongly correlated. To incorporate this information, we redefine $f ( \\mathbf { y } )$ as ", + "bbox": [ + 173, + 650, + 825, + 679 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/e0811db3c3ddd656234cd29dda83006120b3b4bd9af090d84908e46367e14c5f.jpg", + "text": "$$\nf ( { \\bf { y } } ) = \\sum _ { 1 \\le k \\le m } \\left( s _ { i _ { k } , j _ { k } } ^ { c } + s _ { i _ { k } , j _ { k } , t _ { k } } ^ { l } \\right) + \\sum _ { 1 \\le k \\le m } s _ { t _ { k - q + 1 } , t _ { k - q + 2 } , \\cdots , t _ { k } } ^ { d } .\n$$", + "text_format": "latex", + "bbox": [ + 281, + 683, + 717, + 720 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Score In pra $s _ { t _ { k - q + 1 } , t _ { k - q + 2 } , \\cdots , t _ { k } } ^ { d }$ models the label dependencies among balances the efficiency and the effecti $q$ successive segments, ness well, and thus pa $_ { \\mathbf { y } _ { k - q + 1 , k } }$ $q = 2$ \na learnable matrix $\\mathbf { W } ^ { d } \\in \\mathbb { R } ^ { | \\nu | \\times | \\nu | }$ to implement it. ", + "bbox": [ + 173, + 727, + 825, + 773 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The corresponding Bellman equation to above scoring function is ", + "bbox": [ + 174, + 780, + 602, + 795 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/9cae8d71dd0da00eaa135294c9af6a6cbb256d6c4f0214b771b20ea37e723112.jpg", + "text": "$$\ng _ { i , t } = \\underset { 1 \\leq j \\leq i - 1 } { \\operatorname* { m a x } } \\big ( \\underset { t ^ { \\prime } \\in \\mathcal { L } } { \\operatorname* { m a x } } ( g _ { i - j , t ^ { \\prime } } + s _ { t ^ { \\prime } , t } ^ { d } ) + ( s _ { i - j + 1 , i } ^ { c } + s _ { i - j + 1 , i , t } ^ { l } ) \\big ) ,\n$$", + "text_format": "latex", + "bbox": [ + 284, + 799, + 712, + 825 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $g _ { i , t }$ is the maximum score of labeling the last segment of the prefix $\\mathbf { x } _ { 1 , i }$ with $t$ . For initialization, we set the value of $g _ { . 1 , \\mathrm { O } } ^ { d }$ as 0 and the others as $- \\infty$ . By performing the inner loops of two max operations in parallel, the practical time complexity for computing $g _ { i , t } , 1 \\leq i \\leq n , t \\in \\mathcal { L }$ is also ${ \\mathcal { O } } ( n )$ . Ultimately, the segmentation score $f ( \\hat { \\mathbf { y } } )$ is obtained by $\\operatorname* { m a x } _ { t \\in \\mathcal { L } } g _ { n , t }$ . ", + "bbox": [ + 174, + 830, + 825, + 890 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "This extension further improves the results on syntactic chunking and Chinese POS tagging, as both tasks have rich sequential features among the labels of segments. ", + "bbox": [ + 174, + 895, + 823, + 924 + ], + "page_idx": 3 + }, + { + "type": "table", + "img_path": "images/01ef1500ea87c73cf80341c505cfc841fc0043a8912d34c933cff91bf688af24.jpg", + "table_caption": [ + "Table 1: Experiment results on Chinese word segmentation. " + ], + "table_footnote": [], + "table_body": "
ModelASMSRCITYUPKUCTB6
Rich Pretraining(Yang et al.,2017)95.797.596.996.396.2
Bi-LSTM(Ma et al.,2018)96.298.197.296.196.7
Multi-Criteria_Learning +_BERT_(Huang etal., 2019)96.697.997.696.697.6
BERT (Meng et al.,2019)96.598.197.696.5=
Glyce + BERT (Meng et al.,2019)96.798.397.996.7-
Unlabeled LUA96.9498.2798.2196.8898.13
", + "bbox": [ + 200, + 101, + 797, + 194 + ], + "page_idx": 4 + }, + { + "type": "table", + "img_path": "images/81b0f9609d55192d669a0737e0bf384714999e6f84337f7f6ad042fe99b86ced.jpg", + "table_caption": [ + "Table 2: Experiment results on the four datasets of Chinese POS tagging. " + ], + "table_footnote": [], + "table_body": "
ModelCTB5CTB6CTB9UD1
Bi-RNN+ CRF (Single) (Shao et al., 2017) Bi-RNN + CRF (Ensemble) (Shao et al.,2017)94.0790.8191.8989.41
Lattice-LSTM(Meng et al.,2019)94.38-92.3489.75
Glyce + Lattice-LSTM (Meng et al., 2019)95.1491.4392.1390.09
BERT (Meng et al.,2019)95.6191.9292.3890.87
Glyce +BERT (Meng et al., 2019)96.0694.7792.2994.79
96.6195.4193.1596.14
This WorkLUA96.7995.3993.2296.01
LUA w/Label Correlations97.9696.6393.9597.08
", + "bbox": [ + 232, + 229, + 766, + 348 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 395, + 328, + 411 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We have conducted extensive studies on 5 tasks, including Chinese word segmentation, Chinese POS tagging, syntactic chunking, NER, and slot filling, across 15 datasets. Firstly, Our models have achieved new state-of-the-art performances on 13 of them. Secondly, the results demonstrate that the F1 score of identifying long-length segments has been notably improved. Lastly, we show that LUA is a very efficient algorithm concerning the running time. ", + "bbox": [ + 173, + 425, + 825, + 496 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4.1 SETTINGS ", + "text_level": 1, + "bbox": [ + 174, + 512, + 284, + 526 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We use the same configurations for all 15 datasets. L2 regularization and dropout ratio are respectively set as $1 \\times 1 0 ^ { - 6 }$ and 0.2 for reducing overfit. We use Adam (Kingma & Ba, 2014) to optimize our model. Following prior works, BERTBASE is adopted as the sentence encoder. We use uncased BERTBASE for slot filling, Chinese BERTBASE for Chinese tasks (e.g., Chinese POS tagging), and cased BERTBASE for others (e.g., syntactic chunking). In addition, the improvements of our model over baselines are statistically significant with $p < 0 . 0 5$ under t-test. ", + "bbox": [ + 174, + 537, + 825, + 622 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4.2 CHINESE WORD SEGMENTATION ", + "text_level": 1, + "bbox": [ + 176, + 638, + 442, + 654 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Chinese word segmentation splits a Chinese character sequence into a sequence of Chinese words. We use SIGHAN 2005 bake-off (Emerson, 2005) and Chinese Treebank 6.0 (CTB6) (Xue et al., 2005). SIGHAN 2005 back-off consists of 5 datasets, namely AS, MSR, CITYU, and PKU. Following Ma et al. (2018), we randomly select $1 0 \\%$ training data as development set. We convert all digits, punctuation, and Latin letters to half-width for handling full/half-width mismatch between training and test set. We also convert AS and CITYU to simplified Chinese. For CTB6, we follow the same format and partition as in Yang et al. (2017); Ma et al. (2018). ", + "bbox": [ + 174, + 665, + 825, + 762 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Table 1 depicts the experiment results. All the results of baselines are from Yang et al. (2017); Ma et al. (2018); Huang et al. (2019); Meng et al. (2019). We have achieved new state-of-the-art performance on all datasets except MSR. Our model improves the F1 score by $0 . 2 5 \\%$ on AS, $0 . 3 2 \\%$ on CITYU, $0 . 1 9 \\%$ on PKU, and $0 . 5 4 \\%$ on CTB6. Note that our model doesn’t use any external resources, such as glyph information (Meng et al., 2019) or POS tags (Yang et al., 2017). Despite this, our model is still competitive with Glyce $^ +$ BERT on MSR. ", + "bbox": [ + 174, + 768, + 825, + 852 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4.3 CHINESE POS TAGGING ", + "text_level": 1, + "bbox": [ + 174, + 869, + 383, + 883 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Chinese POS tagging jointly segments a Chinese character sequence and assigns a POS tag to each segmented unit. We use Chinese Treebank 5.0 (CTB5), CTB6, Chinese Treebank 9.0 (CTB9) (Xue et al., 2005), and the Chinese section of Universal Dependencies 1.4 (UD1) (Nivre et al., 2016). CTB5 is comprised of newswire data. CTB9 consists of source texts in various genres, which cover CTB5. we convert the texts in UD1 from traditional Chinese into simplified Chinese. We follow the same train/dev/test split for above datasets as in Shao et al. (2017). ", + "bbox": [ + 174, + 895, + 823, + 924 + ], + "page_idx": 4 + }, + { + "type": "table", + "img_path": "images/046cdaf77be2ed2e24da69ff4d35d36af359dc163ceb6f8adf35a5565af6b32d.jpg", + "table_caption": [ + "Table 3: Experiment results on syntactic chunking and NER. " + ], + "table_footnote": [], + "table_body": "
ModelChunkingNER
CoNLL-2000CoNLL-2003OntoNotes5.0
Bi-LSTM + CRF (Huang et al., 2015)94.4690.101
Flair Embeddings (Akbik et al., 2018)96.7293.0989.3
GCDT w/BERT (Liu et al., 2019b)96.8193.231
BERT-MRC (Li et al., 2019)-93.0491.11
HCR w/BERT (Luo et al., 2020)=93.3790.30
BERT-Biaffine Model (Yu et al., 2020) LUA-93.591.3
This Work96.9593.4692.09
LUA w/Label Correlations97.23--
", + "bbox": [ + 214, + 101, + 784, + 232 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 281, + 823, + 338 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Table 2 shows the experiment results. The performances of all baselines are reported from Meng et al. (2019). Our model LUA w/ Label Correlations has yielded new state-of-the-art results on all the datasets: it improves the F1 scores by $1 . 3 5 \\%$ on CTB5, $1 . 2 2 \\%$ on CTB6, $0 . 8 \\%$ on CTB9, and $0 . 9 4 \\%$ on UD1. Moreover, the basic LUA without capturing the label correlations also outperforms the strongest baseline, Glyce $^ +$ BERT, by $0 . 1 8 \\%$ on CTB5 and $0 . 0 7 \\%$ on CTB9. All these facts further verify the effectiveness of LUA and its extension. ", + "bbox": [ + 173, + 344, + 825, + 429 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.4 SYNTACTIC CHUNKING AND NER ", + "text_level": 1, + "bbox": [ + 176, + 445, + 450, + 460 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Syntactic chunking aims to find phrases related to syntatic category for a sentence. We use CoNLL2000 dataset (Sang & Buchholz, 2000), which defines 11 syntactic chunk types (NP, VP, PP, etc.) and follow the standard splittings of training and test datasets as previous work. NER locates the named entities mentioned in unstructured text and meanwhile classifies them into predefined categories. We use CoNLL-2003 dataset (Sang & De Meulder, 2003) and OntoNotes 5.0 dataset (Pradhan et al., 2013). CoNLL-2003 dataset consists of 22137 sentences totally and is split into 14987, 3466, and 3684 sentences for the training set, development set, and test set, respectively. It is tagged with four linguistic entity types (PER, LOC, ORG, MISC). OntoNotes 5.0 dataset contains 76714 sentences from a wide variety of sources (e.g., magazine and newswire). It includes 18 types of named entity, which consists of 11 types (Person, Organization, etc.) and 7 values (Date, Percent, etc.). We follow the same format and partition as in Li et al. (2019); Luo et al. (2020); Yu et al. (2020). In order to fairly compare with previous reported results, we convert the predicted segments into IOB format and utilize conlleval script1 to compute the F1 score at test time. ", + "bbox": [ + 174, + 473, + 825, + 652 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Table 3 shows the results. Most of baselines are directly taken from Akbik et al. (2018); Li et al. (2019); Luo et al. (2020); Yu et al. (2020). Besides, following Luo et al. (2020), we rerun the source code2 of GCDT and report its result on CoNLL-2000 with standard evaluation method. Generally, our proposed models LUA w/o Label Correlations yield competitive performance over state-of-theart models on both Chunking and NER tasks. Specifically, regarding to the NER task, on CoNLL2003 dataset our model LUA outperforms several strong baselines including Flair Embedding, and it is comparable to the state-of-the-art model (i.e., BERT-Biaffine Model). In particular, on OntoNotes dataset, LUA outperforms it by $0 . 7 9 \\%$ points and establishes a new state-of-the-art result. Regarding to the Chunking task, LUA advances the best model (GCDT) and the improvements are further enlarged to $0 . 4 \\hat { 2 } \\%$ points by LUA w/ Label Correlations. ", + "bbox": [ + 173, + 660, + 825, + 799 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.5 SLOT FILLING ", + "text_level": 1, + "bbox": [ + 174, + 816, + 313, + 830 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Slot filling, as an important task in spoken language understanding (SLU), extracts semantic constituents from an utterance. We use ATIS dataset (Hemphill et al., 1990), SNIPS dataset (Coucke et al., 2018), and MTOD dataset (Schuster et al., 2018). ATIS dataset consists of audio recordings of ", + "bbox": [ + 178, + 843, + 825, + 885 + ], + "page_idx": 5 + }, + { + "type": "table", + "img_path": "images/b85c1a025f9b33999faf6903084d89eb9f902b629107d69eea5992dff1e779bb.jpg", + "table_caption": [ + "Table 4: Experiment results on the three datasets of slot filling. " + ], + "table_footnote": [], + "table_body": "
ModelATISSNIPSMTOD
Slot-Gated SLU (Goo et al.,2018) Bi-LSTM + EMLo (Siddhant et al., 2019)95.2088.3095.12
95.4293.90-
Joint BERT (Chen et al., 2019b) CM-Net (Liu et al.,2019c)96.10 96.2097.0096.48
96.1597.15-
This WorkLUA LUA w/ Intent Detection96.2797.1097.53
97.2097.55
", + "bbox": [ + 274, + 101, + 723, + 194 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/0d8a988459cd38745b0972009b489a7a6c36555d632195fbb5dfc48458492265.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
Model1-3(8695)4-7(2380)8-11(151)12-24(31)Overall
HCRw/BERT91.1585.2250.4320.6790.27
BERT-Biaffine Model91.6787.2370.2440.5591.26
LUA92.3188.5277.3457.2792.09
", + "bbox": [ + 217, + 229, + 781, + 286 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Table 5: The F1 scores for NER models on different segment lengths. $A - B ( N )$ denotes that there are $N$ entities whose span lengths are between $A$ and $B$ . ", + "bbox": [ + 173, + 297, + 825, + 325 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "people making flight reservations. The training set contains 4478 utterances and the test set contains 893 utterances. SNIPS dataset is collected by Snips personal voice assistant. The training set contains 13084 utterances and the test set contains 700 utterances. MTOD dataset has three domains, including Alarm, Reminder, and Weather. We use the English part of MTOD dataset, where training set, dev set, and test set respectively contain 30521, 4181, and 8621 utterances. We follow the same partition of above datasets as in Goo et al. (2018); Schuster et al. (2018). ", + "bbox": [ + 174, + 352, + 825, + 435 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Table 4 summarizes the experiment results for slot filling. On ATIS and SNIPS, we take the results of all baselines as reported in Liu et al. (2019c) for comparison. On MTOD, we rerun the open source toolkits, Slot-gated $\\mathrm { S L U } ^ { 3 }$ and Joint BERT4. As all previous approaches jointly model slot filling and intent detection (a classification task in SLU), we follow them to augment LUA with intent detection for a fair comparison. As shown in Table 4, the augmented LUA has surpassed all baselines and obtained state-of-the-art results on the three datasets: it increases the F1 scores by around $0 . 0 5 \\%$ on ATIS and SNIPS, and delivers a substantial gain of $1 . 1 1 \\%$ on MTOD. It’s worth mentioning that LUA even outperforms the strong baseline Joint BERT with a margin of $0 . 1 8 \\%$ and $0 . 2 1 \\%$ on ATIS and SNIPS without modeling intent detection. ", + "bbox": [ + 174, + 443, + 825, + 568 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.6 LONG-LENGTH SEGMENT IDENTIFICATION", + "text_level": 1, + "bbox": [ + 174, + 585, + 511, + 599 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Since LUA doesn’t resort to IOB tagging scheme, it should be more accurate in recognizing longlength segments than prior methods. To verify this intuition, we evaluate different models on the segments of different lengths. This study is investigated on OntoNotes 5.0 dataset. Two strong models are adopted as the baselines: one is the best sequence labeling model (i.e., HCR) and the other is the best span-based model (i.e., BERT-Biaffine Model). Both baselines are reproduced by rerunning their open source codes, biaffine-ner5 and Hire-NER6. ", + "bbox": [ + 174, + 611, + 823, + 695 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "The results are shown in Table 5. On the one hand, both LUA and Biaffine Model obtain much higher scores of extracting long-length entities than HCR. For example, LUA outperforms HCR w/ BERT by almost twofold on range $1 2 - 2 4$ . On the other hand, LUA achieves even better results than BERT-Biaffine Model. For instance, the F1 score improvements of LUA over it are $1 0 . 1 1 \\%$ on range $8 - 1 1$ and $4 1 . 2 3 \\%$ on range $1 2 - 2 4$ . ", + "bbox": [ + 174, + 702, + 825, + 772 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.7 RUNNING TIME ANALYSIS ", + "text_level": 1, + "bbox": [ + 174, + 790, + 398, + 804 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Table 6 shows the running time comparison among different models. The middle two columns are the time complexity of decoding a label sequence. The last column is the time cost of one epoch in training. We set the batch size as 16 and run all the models on 1 GPU. The results indicate that ", + "bbox": [ + 176, + 815, + 823, + 857 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/3639b599177115723ea18d0f6cf9562ca42b4a8d5ff61ee459784a3e91af33fd.jpg", + "table_caption": [ + "Table 6: Running time comparison on the syntactic chunking dataset. " + ], + "table_footnote": [], + "table_body": "
ModelTheoretical ComplexityPractical ComplexityRunning Time
BERT BERT+CRFO(n) O(n|C|2)0(1)5m11s 7m33s
LUAO(n²)O(n) O(n)6m25s
LUA w/Label CorrelationsO(n²|C1²)0(n)7m09s
", + "bbox": [ + 186, + 101, + 812, + 176 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "the success of our models in performances does not lead to serious side-effects on efficiency. For example, with the same practical time complexity, BERT $^ +$ CRF is slower than the proposed LUA by $1 5 . 0 1 \\%$ and LUA w/ Label Correlations by $5 . \\dot { 3 } 0 \\%$ . ", + "bbox": [ + 176, + 233, + 825, + 275 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5 RELATED WORK ", + "text_level": 1, + "bbox": [ + 176, + 303, + 343, + 319 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Sequence segmentation aims to partition a fine-grained unit sequence into multiple labeled coarsegrained units. Traditionally, there are two types of methods. The most common is to cast it into a sequence labeling task (Mesnil et al., 2014; Ma & Hovy, 2016; Chen et al., 2019a) by using IOB tagging scheme. This method is simple and effective, providing a number of state-of-the-art results. Akbik et al. (2018) present Flair Embeddings that pretrain character embedding in a large corpus and directly use it, instead of word representation, to encode a sentence. Liu et al. (2019b) introduce GCDT that deepens the state transition path at each position in a sentence, and further assigns each word with global representation. Luo et al. (2020) use hierarchical contextualized representations to incorporate both sentence-level and document-level information. Nevertheless, these models are vulnerable to producing invalid labels and perform poorly in identifying longlength segments. This problem is very severe in low-resource setting. Ye & Ling (2018); Liu et al. (2019a) adopt Semi-Markov CRF (Sarawagi & Cohen, 2005) that improves CRF at phrase level. However, the computation of CRF loss is costly in practice and the potential to model the label dependencies among segments is limited. An alternative approach that is less studied uses a transition-based system to incrementally segment and label an input sequence (Zhang et al., 2016; Lample et al., 2016). For instance, Qian et al. (2015) present a transition-based model for joint word segmentation, POS tagging, and text normalization. Wang et al. (2017) employ a transitionbased model to disfluency detection task, which helps capture non-local chunk-level features. These models have many advantages like theoretically lower time complexity and labeling the extracted mentions at span level. However, to our best knowledge, no recent transition-based models surpass their sequence labeling based counterparts. ", + "bbox": [ + 173, + 338, + 825, + 630 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "More recently, there is a surge of interests in span-based models. They treat a segment, instead of a fine-grained token, as the basic unit for labeling. For example, Li et al. (2019) regard NER as a MRC task, where entities are recognized as retrieving answer spans. Since these methods are locally normalized at span level rather than sequence level, they potentially suffer from the label bias problem. Additionally, they rely on rules to ensure the extracted span set to be valid. Spanbased methods also emerge in other fields of NLP. In dependency parsing, Wang & Chang (2016) propose a LSTM-based sentence segment embedding method named LSTM-Minus. Stern et al. (2017) integrate LSTM-minus feature into constituent parsing models. In coreference resolution, Lee et al. (2018) consider all spans in a document as the potential mentions and learn distributions over all the possible antecedents for each other. ", + "bbox": [ + 173, + 637, + 825, + 776 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "6 CONCLUSION ", + "text_level": 1, + "bbox": [ + 174, + 804, + 318, + 820 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "This work proposes a novel LUA for general sequence segmentation tasks. LUA directly scores all the valid segmentation candidates and uses dynamic programming to extract the maximum scoring one. Compared with previous models, LUA naturally guarantees the predicted segmentation to be valid and circumvents the label bias problem. Extensive studies are conducted on 5 tasks across 15 datasets. We have achieved the state-of-the-art performances on 13 of them. Importantly, the F1 score of identifying long-length segments is significantly improved. ", + "bbox": [ + 174, + 840, + 823, + 924 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 176, + 102, + 287, + 117 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Alan Akbik, Duncan Blythe, and Roland Vollgraf. Contextual string embeddings for sequence labeling. In Proceedings of the 27th International Conference on Computational Linguistics, pp. 1638–1649, 2018. ", + "bbox": [ + 176, + 127, + 823, + 169 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Richard Bellman. Dynamic programming. Science, 153(3731):34–37, 1966. ", + "bbox": [ + 173, + 179, + 676, + 195 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Hui Chen, Zijia Lin, Guiguang Ding, Jianguang Lou, Yusen Zhang, and Borje Karlsson. Grn: Gated relation network to enhance convolutional neural network for named entity recognition. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 33, pp. 6236–6243, 2019a. ", + "bbox": [ + 176, + 205, + 825, + 248 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Qian Chen, Zhu Zhuo, and Wen Wang. Bert for joint intent classification and slot filling. arXiv preprint arXiv:1902.10909, 2019b. ", + "bbox": [ + 171, + 258, + 823, + 287 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Alice Coucke, Alaa Saade, Adrien Ball, Theodore Bluche, Alexandre Caulier, David Leroy, Cl ´ ement ´ Doumouro, Thibault Gisselbrecht, Francesco Caltagirone, Thibaut Lavril, et al. Snips voice platform: an embedded spoken language understanding system for private-by-design voice interfaces. arXiv preprint arXiv:1805.10190, 2018. ", + "bbox": [ + 173, + 297, + 825, + 354 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep bidirectional transformers for language understanding. arXiv preprint arXiv:1810.04805, 2018. ", + "bbox": [ + 168, + 366, + 823, + 395 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Timothy Dozat and Christopher D Manning. Deep biaffine attention for neural dependency parsing. arXiv preprint arXiv:1611.01734, 2016. ", + "bbox": [ + 169, + 405, + 821, + 434 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Thomas Emerson. The second international chinese word segmentation bakeoff. In Proceedings of the fourth SIGHAN workshop on Chinese language Processing, 2005. ", + "bbox": [ + 173, + 444, + 825, + 473 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Chih-Wen Goo, Guang Gao, Yun-Kai Hsu, Chih-Li Huo, Tsung-Chieh Chen, Keng-Wei Hsu, and Yun-Nung Chen. Slot-gated modeling for joint slot filling and intent prediction. 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. 753–757, 2018. ", + "bbox": [ + 173, + 483, + 826, + 541 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Charles T Hemphill, John J Godfrey, and George R Doddington. The atis spoken language systems pilot corpus. In Speech and Natural Language: Proceedings of a Workshop Held at Hidden Valley, Pennsylvania, June 24-27, 1990, 1990. ", + "bbox": [ + 174, + 550, + 823, + 593 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Sepp Hochreiter and Jurgen Schmidhuber. Long short-term memory. ¨ Neural computation, 9(8): 1735–1780, 1997. ", + "bbox": [ + 169, + 604, + 823, + 633 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Weipeng Huang, Xingyi Cheng, Kunlong Chen, Taifeng Wang, and Wei Chu. Toward fast and accurate neural chinese word segmentation with multi-criteria learning. arXiv preprint arXiv:1903.04190, 2019. ", + "bbox": [ + 174, + 643, + 825, + 686 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Zhiheng Huang, Wei Xu, and Kai Yu. Bidirectional lstm-crf models for sequence tagging. arXiv preprint arXiv:1508.01991, 2015. ", + "bbox": [ + 173, + 696, + 823, + 727 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980, 2014. ", + "bbox": [ + 173, + 737, + 823, + 766 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "John Lafferty, Andrew McCallum, and Fernando CN Pereira. Conditional random fields: Probabilistic models for segmenting and labeling sequence data. 2001. ", + "bbox": [ + 171, + 776, + 823, + 806 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Guillaume Lample, Miguel Ballesteros, Sandeep Subramanian, Kazuya Kawakami, and Chris Dyer. Neural architectures for named entity recognition. arXiv preprint arXiv:1603.01360, 2016. ", + "bbox": [ + 174, + 815, + 823, + 845 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Kenton Lee, Luheng He, and Luke Zettlemoyer. Higher-order coreference resolution with coarseto-fine inference. arXiv preprint arXiv:1804.05392, 2018. ", + "bbox": [ + 171, + 856, + 821, + 885 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Xiaoya Li, Jingrong Feng, Yuxian Meng, Qinghong Han, Fei Wu, and Jiwei Li. A unified mrc framework for named entity recognition. arXiv preprint arXiv:1910.11476, 2019. ", + "bbox": [ + 173, + 895, + 821, + 924 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Tianyu Liu, Jin-Ge Yao, and Chin-Yew Lin. Towards improving neural named entity recognition with gazetteers. In Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics, pp. 5301–5307, 2019a. ", + "bbox": [ + 176, + 103, + 823, + 146 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Yijin Liu, Fandong Meng, Jinchao Zhang, Jinan Xu, Yufeng Chen, and Jie Zhou. Gcdt: A global context enhanced deep transition architecture for sequence labeling. arXiv preprint arXiv:1906.02437, 2019b. ", + "bbox": [ + 176, + 156, + 823, + 199 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Yijin Liu, Fandong Meng, Jinchao Zhang, Jie Zhou, Yufeng Chen, and Jinan Xu. Cm-net: A novel collaborative memory network for spoken language understanding. arXiv preprint arXiv:1909.06937, 2019c. ", + "bbox": [ + 174, + 208, + 826, + 252 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ying Luo, Fengshun Xiao, and Hai Zhao. Hierarchical contextualized representation for named entity recognition. In AAAI, pp. 8441–8448, 2020. ", + "bbox": [ + 173, + 262, + 823, + 291 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ji Ma, Kuzman Ganchev, and David Weiss. State-of-the-art chinese word segmentation with bilstms. arXiv preprint arXiv:1808.06511, 2018. ", + "bbox": [ + 169, + 301, + 823, + 330 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Xuezhe Ma and Eduard Hovy. End-to-end sequence labeling via bi-directional lstm-cnns-crf. arXiv preprint arXiv:1603.01354, 2016. ", + "bbox": [ + 169, + 340, + 823, + 369 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Yuxian Meng, Wei Wu, Fei Wang, Xiaoya Li, Ping Nie, Fan Yin, Muyu Li, Qinghong Han, Xiaofei Sun, and Jiwei Li. Glyce: Glyph-vectors for chinese character representations. In Advances in Neural Information Processing Systems, pp. 2746–2757, 2019. ", + "bbox": [ + 176, + 378, + 823, + 422 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Gregoire Mesnil, Yann Dauphin, Kaisheng Yao, Yoshua Bengio, Li Deng, Dilek Hakkani-Tur, Xi-´ aodong He, Larry Heck, Gokhan Tur, Dong Yu, et al. Using recurrent neural networks for slot filling in spoken language understanding. IEEE/ACM Transactions on Audio, Speech, and Language Processing, 23(3):530–539, 2014. ", + "bbox": [ + 173, + 431, + 825, + 488 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Joakim Nivre, Marie-Catherine De Marneffe, Filip Ginter, Yoav Goldberg, Jan Hajic, Christopher D Manning, Ryan McDonald, Slav Petrov, Sampo Pyysalo, Natalia Silveira, et al. Universal dependencies v1: A multilingual treebank collection. In Proceedings of the Tenth International Conference on Language Resources and Evaluation (LREC’16), pp. 1659–1666, 2016. ", + "bbox": [ + 173, + 498, + 825, + 556 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Nanyun Peng et al. Jointly Learning Representations for Low-Resource Information Extraction. PhD thesis, Ph. D. thesis, Johns Hopkins University, 2017. ", + "bbox": [ + 171, + 565, + 823, + 595 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Sameer Pradhan, Alessandro Moschitti, Nianwen Xue, Hwee Tou Ng, Anders Bjorkelund, Olga ¨ Uryupina, Yuchen Zhang, and Zhi Zhong. Towards robust linguistic analysis using ontonotes. In Proceedings of the Seventeenth Conference on Computational Natural Language Learning, pp. 143–152, 2013. ", + "bbox": [ + 174, + 604, + 825, + 661 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Tao Qian, Yue Zhang, Meishan Zhang, Yafeng Ren, and Donghong Ji. A transition-based model for joint segmentation, pos-tagging and normalization. In Proceedings of the 2015 Conference on Empirical Methods in Natural Language Processing, pp. 1837–1846, 2015. ", + "bbox": [ + 173, + 671, + 825, + 715 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Erik F Sang and Sabine Buchholz. Introduction to the conll-2000 shared task: Chunking. arXiv preprint cs/0009008, 2000. ", + "bbox": [ + 173, + 724, + 823, + 753 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Erik F Sang and Fien De Meulder. Introduction to the conll-2003 shared task: Languageindependent named entity recognition. arXiv preprint cs/0306050, 2003. ", + "bbox": [ + 171, + 763, + 823, + 794 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Sunita Sarawagi and William W Cohen. Semi-markov conditional random fields for information extraction. In Advances in neural information processing systems, pp. 1185–1192, 2005. ", + "bbox": [ + 173, + 803, + 823, + 833 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Sebastian Schuster, Sonal Gupta, Rushin Shah, and Mike Lewis. Cross-lingual transfer learning for multilingual task oriented dialog. arXiv preprint arXiv:1810.13327, 2018. ", + "bbox": [ + 171, + 842, + 823, + 871 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Yan Shao, Christian Hardmeier, Jorg Tiedemann, and Joakim Nivre. Character-based joint segmen- ¨ tation and pos tagging for chinese using bidirectional rnn-crf. arXiv preprint arXiv:1704.01314, 2017. ", + "bbox": [ + 176, + 882, + 823, + 922 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Aditya Siddhant, Anuj Goyal, and Angeliki Metallinou. Unsupervised transfer learning for spoken language understanding in intelligent agents. In Proceedings of the AAAI conference on artificial intelligence, volume 33, pp. 4959–4966, 2019. ", + "bbox": [ + 174, + 103, + 823, + 146 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Mitchell Stern, Jacob Andreas, and Dan Klein. A minimal span-based neural constituency parser. arXiv preprint arXiv:1705.03919, 2017. ", + "bbox": [ + 171, + 155, + 821, + 184 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Shaolei Wang, Wanxiang Che, Yue Zhang, Meishan Zhang, and Ting Liu. Transition-based disfluency detection using lstms. In Proceedings of the 2017 Conference on Empirical Methods in Natural Language Processing, pp. 2785–2794, 2017. ", + "bbox": [ + 174, + 193, + 823, + 236 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Wenhui Wang and Baobao Chang. Graph-based dependency parsing with bidirectional lstm. In Proceedings of the 54th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pp. 2306–2315, 2016. ", + "bbox": [ + 174, + 244, + 823, + 287 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Naiwen Xue, Fei Xia, Fu-Dong Chiou, and Marta Palmer. The penn chinese treebank: Phrase structure annotation of a large corpus. Natural language engineering, 11(2):207, 2005. ", + "bbox": [ + 171, + 295, + 823, + 325 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Nianwen Xue. Chinese word segmentation as character tagging. In International Journal of Computational Linguistics & Chinese Language Processing, Volume 8, Number 1, February 2003: Special Issue on Word Formation and Chinese Language Processing, pp. 29–48, 2003. ", + "bbox": [ + 174, + 333, + 823, + 376 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jie Yang, Yue Zhang, and Fei Dong. Neural word segmentation with rich pretraining. arXiv preprint arXiv:1704.08960, 2017. ", + "bbox": [ + 173, + 385, + 823, + 414 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Zhi-Xiu Ye and Zhen-Hua Ling. Hybrid semi-markov crf for neural sequence labeling. arXiv preprint arXiv:1805.03838, 2018. ", + "bbox": [ + 171, + 422, + 823, + 452 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Juntao Yu, Bernd Bohnet, and Massimo Poesio. Named entity recognition as dependency parsing. arXiv preprint arXiv:2005.07150, 2020. ", + "bbox": [ + 173, + 460, + 823, + 489 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Feifei Zhai, Saloni Potdar, Bing Xiang, and Bowen Zhou. Neural models for sequence chunking. In Thirty-First AAAI Conference on Artificial Intelligence, 2017. ", + "bbox": [ + 173, + 497, + 823, + 527 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Meishan Zhang, Yue Zhang, and Guohong Fu. Transition-based neural word segmentation. In Proceedings of the 54th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pp. 421–431, 2016. ", + "bbox": [ + 174, + 536, + 825, + 579 + ], + "page_idx": 10 + } +] \ No newline at end of file diff --git a/parse/train/PQlC91XxqK5/PQlC91XxqK5_middle.json b/parse/train/PQlC91XxqK5/PQlC91XxqK5_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..2de5457def6d62cd5e2c0f0998fa663b79ac17b7 --- /dev/null +++ b/parse/train/PQlC91XxqK5/PQlC91XxqK5_middle.json @@ -0,0 +1,30295 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 503, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 77, + 505, + 98 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 505, + 98 + ], + "score": 1.0, + "content": "SEGMENTING NATURAL LANGUAGE SENTENCES VIA", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 97, + 299, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 97, + 299, + 118 + ], + "score": 1.0, + "content": "LEXICAL UNIT ANALYSIS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 112, + 136, + 244, + 157 + ], + "lines": [ + { + "bbox": [ + 113, + 136, + 201, + 147 + ], + "spans": [ + { + "bbox": [ + 113, + 136, + 201, + 147 + ], + "score": 1.0, + "content": "Anonymous authors", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 146, + 245, + 159 + ], + "spans": [ + { + "bbox": [ + 112, + 146, + 245, + 159 + ], + "score": 1.0, + "content": "Paper under double-blind review", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 278, + 187, + 333, + 199 + ], + "lines": [ + { + "bbox": [ + 276, + 186, + 335, + 200 + ], + "spans": [ + { + "bbox": [ + 276, + 186, + 335, + 200 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 143, + 213, + 468, + 345 + ], + "lines": [ + { + "bbox": [ + 141, + 213, + 469, + 226 + ], + "spans": [ + { + "bbox": [ + 141, + 213, + 469, + 226 + ], + "score": 1.0, + "content": "In this work, we present Lexical Unit Analysis (LUA), a framework for general", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 224, + 470, + 236 + ], + "spans": [ + { + "bbox": [ + 141, + 224, + 470, + 236 + ], + "score": 1.0, + "content": "sequence segmentation tasks. Given a natural language sentence, LUA scores all", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 235, + 469, + 247 + ], + "spans": [ + { + "bbox": [ + 141, + 235, + 469, + 247 + ], + "score": 1.0, + "content": "the valid segmentation candidates and utilizes dynamic programming (DP) to ex-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 246, + 469, + 258 + ], + "spans": [ + { + "bbox": [ + 141, + 246, + 469, + 258 + ], + "score": 1.0, + "content": "tract the maximum scoring one. LUA enjoys a number of appealing properties", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 257, + 469, + 268 + ], + "spans": [ + { + "bbox": [ + 141, + 257, + 469, + 268 + ], + "score": 1.0, + "content": "such as inherently guaranteeing the predicted segmentation to be valid and facil-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 268, + 470, + 280 + ], + "spans": [ + { + "bbox": [ + 141, + 268, + 470, + 280 + ], + "score": 1.0, + "content": "itating globally optimal training and inference. Besides, the practical time com-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 279, + 470, + 291 + ], + "spans": [ + { + "bbox": [ + 141, + 279, + 470, + 291 + ], + "score": 1.0, + "content": "plexity of LUA can be reduced to linear time, which is very efficient. We have", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 290, + 469, + 302 + ], + "spans": [ + { + "bbox": [ + 141, + 290, + 469, + 302 + ], + "score": 1.0, + "content": "conducted extensive experiments on 5 tasks, including syntactic chunking, named", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 301, + 470, + 312 + ], + "spans": [ + { + "bbox": [ + 141, + 301, + 470, + 312 + ], + "score": 1.0, + "content": "entity recognition (NER), slot filling, Chinese word segmentation, and Chinese", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 312, + 469, + 324 + ], + "spans": [ + { + "bbox": [ + 141, + 312, + 469, + 324 + ], + "score": 1.0, + "content": "part-of-speech (POS) tagging, across 15 datasets. Our models have achieved the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 323, + 469, + 334 + ], + "spans": [ + { + "bbox": [ + 141, + 323, + 469, + 334 + ], + "score": 1.0, + "content": "state-of-the-art performances on 13 of them. The results also show that the F1", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 334, + 395, + 346 + ], + "spans": [ + { + "bbox": [ + 141, + 334, + 395, + 346 + ], + "score": 1.0, + "content": "score of identifying long-length segments is notably improved.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 10.5 + }, + { + "type": "title", + "bbox": [ + 108, + 369, + 206, + 382 + ], + "lines": [ + { + "bbox": [ + 105, + 368, + 208, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 208, + 385 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 396, + 505, + 451 + ], + "lines": [ + { + "bbox": [ + 106, + 396, + 505, + 409 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 505, + 409 + ], + "score": 1.0, + "content": "Sequence segmentation is essentially the process of partitioning a sequence of fine-grained lexical", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 406, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 505, + 419 + ], + "score": 1.0, + "content": "units into a sequence of coarse-grained ones. In some scenarios, each composed unit is assigned a", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 417, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 505, + 431 + ], + "score": 1.0, + "content": "categorical label. For example, Chinese word segmentation splits a character sequence into a word", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 505, + 442 + ], + "score": 1.0, + "content": "sequence (Xue, 2003). Syntactic chunking segments a word sequence into a sequence of labeled", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 440, + 354, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 354, + 452 + ], + "score": 1.0, + "content": "groups of words (i.e., constituents) (Sang & Buchholz, 2000).", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 456, + 505, + 556 + ], + "lines": [ + { + "bbox": [ + 106, + 456, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 506, + 469 + ], + "score": 1.0, + "content": "There are currently two mainstream approaches to sequence segmentation. The most common is", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 467, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 506, + 480 + ], + "score": 1.0, + "content": "to regard it as a sequence labeling problem by using IOB tagging scheme (Mesnil et al., 2014; Ma", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 479, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 505, + 491 + ], + "score": 1.0, + "content": "& Hovy, 2016; Liu et al., 2019b; Chen et al., 2019a; Luo et al., 2020). A representative work is", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 487, + 506, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 506, + 503 + ], + "score": 1.0, + "content": "Bidirectional LSTM-CRF (Huang et al., 2015), which adopts LSTM (Hochreiter & Schmidhuber,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 500, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 506, + 514 + ], + "score": 1.0, + "content": "1997) to read an input sentence and CRF (Lafferty et al., 2001) to decode the label sequence. This", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "score": 1.0, + "content": "type of method is very effective, providing tons of state-of-the-art performances. However, it is", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 522, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 505, + 535 + ], + "score": 1.0, + "content": "vulnerable to producing invalid labels, for instance, “O, I-tag, I-tag”. This problem is very severe", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 533, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 506, + 546 + ], + "score": 1.0, + "content": "in low resource settings (Peng et al., 2017). In experiments (see section 4.6), we also find that it", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 545, + 324, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 324, + 558 + ], + "score": 1.0, + "content": "performs poorly in recognizing long-length segments.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 561, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 561, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 573 + ], + "score": 1.0, + "content": "Recently, there is a growing interest in span-based models (Zhai et al., 2017; Li et al., 2019; Yu", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "et al., 2020). They treat a span rather than a token as the basic unit for labeling. Li et al. (2019) cast", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 583, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 506, + 595 + ], + "score": 1.0, + "content": "named entity recognition (NER) to a machine reading comprehension (MRC) task, where entities", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 594, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 607 + ], + "score": 1.0, + "content": "are extracted as retrieving answer spans. Yu et al. (2020) rank all the spans in terms of the scores", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "predicted by a bi-affine model (Dozat & Manning, 2016). In NER, span-based models have signif-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 616, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 506, + 628 + ], + "score": 1.0, + "content": "icantly outperformed their sequence labeling based counterparts. While these methods circumvent", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 626, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 506, + 641 + ], + "score": 1.0, + "content": "the use of IOB tagging scheme, they still rely on post-processing rules to guarantee the extracted", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 637, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 505, + 652 + ], + "score": 1.0, + "content": "span set to be valid. Moreover, since span-based models are locally normalized at span level, they", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 649, + 380, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 380, + 661 + ], + "score": 1.0, + "content": "potentially suffer from the label bias problem (Lafferty et al., 2001).", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "This paper seeks to provide a new framework which infers the segmentation of a unit sequence by", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "directly selecting from all valid segmentation candidates, instead of manipulating tokens or spans.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 687, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 701 + ], + "score": 1.0, + "content": "To this end, we propose Lexical Unit Analysis (LUA) in this paper. LUA assigns a score to every", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "valid segmentation candidate and leverages dynamic programming (DP) (Bellman, 1966) to search", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "for the maximum scoring one. The score of a segmentation is computed by using the scores of", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "its all segments. Besides, we adopt neural networks to score every segment of the input sentence.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 43.5 + } + ], + "page_idx": 0, + "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": [ + 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": [ + 108, + 78, + 503, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 77, + 505, + 98 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 505, + 98 + ], + "score": 1.0, + "content": "SEGMENTING NATURAL LANGUAGE SENTENCES VIA", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 97, + 299, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 97, + 299, + 118 + ], + "score": 1.0, + "content": "LEXICAL UNIT ANALYSIS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 112, + 136, + 244, + 157 + ], + "lines": [ + { + "bbox": [ + 113, + 136, + 201, + 147 + ], + "spans": [ + { + "bbox": [ + 113, + 136, + 201, + 147 + ], + "score": 1.0, + "content": "Anonymous authors", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 146, + 245, + 159 + ], + "spans": [ + { + "bbox": [ + 112, + 146, + 245, + 159 + ], + "score": 1.0, + "content": "Paper under double-blind review", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 112, + 136, + 245, + 159 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 187, + 333, + 199 + ], + "lines": [ + { + "bbox": [ + 276, + 186, + 335, + 200 + ], + "spans": [ + { + "bbox": [ + 276, + 186, + 335, + 200 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 143, + 213, + 468, + 345 + ], + "lines": [ + { + "bbox": [ + 141, + 213, + 469, + 226 + ], + "spans": [ + { + "bbox": [ + 141, + 213, + 469, + 226 + ], + "score": 1.0, + "content": "In this work, we present Lexical Unit Analysis (LUA), a framework for general", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 224, + 470, + 236 + ], + "spans": [ + { + "bbox": [ + 141, + 224, + 470, + 236 + ], + "score": 1.0, + "content": "sequence segmentation tasks. Given a natural language sentence, LUA scores all", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 235, + 469, + 247 + ], + "spans": [ + { + "bbox": [ + 141, + 235, + 469, + 247 + ], + "score": 1.0, + "content": "the valid segmentation candidates and utilizes dynamic programming (DP) to ex-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 246, + 469, + 258 + ], + "spans": [ + { + "bbox": [ + 141, + 246, + 469, + 258 + ], + "score": 1.0, + "content": "tract the maximum scoring one. LUA enjoys a number of appealing properties", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 257, + 469, + 268 + ], + "spans": [ + { + "bbox": [ + 141, + 257, + 469, + 268 + ], + "score": 1.0, + "content": "such as inherently guaranteeing the predicted segmentation to be valid and facil-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 268, + 470, + 280 + ], + "spans": [ + { + "bbox": [ + 141, + 268, + 470, + 280 + ], + "score": 1.0, + "content": "itating globally optimal training and inference. Besides, the practical time com-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 279, + 470, + 291 + ], + "spans": [ + { + "bbox": [ + 141, + 279, + 470, + 291 + ], + "score": 1.0, + "content": "plexity of LUA can be reduced to linear time, which is very efficient. We have", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 290, + 469, + 302 + ], + "spans": [ + { + "bbox": [ + 141, + 290, + 469, + 302 + ], + "score": 1.0, + "content": "conducted extensive experiments on 5 tasks, including syntactic chunking, named", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 301, + 470, + 312 + ], + "spans": [ + { + "bbox": [ + 141, + 301, + 470, + 312 + ], + "score": 1.0, + "content": "entity recognition (NER), slot filling, Chinese word segmentation, and Chinese", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 312, + 469, + 324 + ], + "spans": [ + { + "bbox": [ + 141, + 312, + 469, + 324 + ], + "score": 1.0, + "content": "part-of-speech (POS) tagging, across 15 datasets. Our models have achieved the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 323, + 469, + 334 + ], + "spans": [ + { + "bbox": [ + 141, + 323, + 469, + 334 + ], + "score": 1.0, + "content": "state-of-the-art performances on 13 of them. The results also show that the F1", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 334, + 395, + 346 + ], + "spans": [ + { + "bbox": [ + 141, + 334, + 395, + 346 + ], + "score": 1.0, + "content": "score of identifying long-length segments is notably improved.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 10.5, + "bbox_fs": [ + 141, + 213, + 470, + 346 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 369, + 206, + 382 + ], + "lines": [ + { + "bbox": [ + 105, + 368, + 208, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 208, + 385 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 396, + 505, + 451 + ], + "lines": [ + { + "bbox": [ + 106, + 396, + 505, + 409 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 505, + 409 + ], + "score": 1.0, + "content": "Sequence segmentation is essentially the process of partitioning a sequence of fine-grained lexical", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 406, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 505, + 419 + ], + "score": 1.0, + "content": "units into a sequence of coarse-grained ones. In some scenarios, each composed unit is assigned a", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 417, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 505, + 431 + ], + "score": 1.0, + "content": "categorical label. For example, Chinese word segmentation splits a character sequence into a word", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 505, + 442 + ], + "score": 1.0, + "content": "sequence (Xue, 2003). Syntactic chunking segments a word sequence into a sequence of labeled", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 440, + 354, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 354, + 452 + ], + "score": 1.0, + "content": "groups of words (i.e., constituents) (Sang & Buchholz, 2000).", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 396, + 505, + 452 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 456, + 505, + 556 + ], + "lines": [ + { + "bbox": [ + 106, + 456, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 506, + 469 + ], + "score": 1.0, + "content": "There are currently two mainstream approaches to sequence segmentation. The most common is", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 467, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 506, + 480 + ], + "score": 1.0, + "content": "to regard it as a sequence labeling problem by using IOB tagging scheme (Mesnil et al., 2014; Ma", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 479, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 505, + 491 + ], + "score": 1.0, + "content": "& Hovy, 2016; Liu et al., 2019b; Chen et al., 2019a; Luo et al., 2020). A representative work is", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 487, + 506, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 506, + 503 + ], + "score": 1.0, + "content": "Bidirectional LSTM-CRF (Huang et al., 2015), which adopts LSTM (Hochreiter & Schmidhuber,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 500, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 506, + 514 + ], + "score": 1.0, + "content": "1997) to read an input sentence and CRF (Lafferty et al., 2001) to decode the label sequence. This", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "score": 1.0, + "content": "type of method is very effective, providing tons of state-of-the-art performances. However, it is", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 522, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 505, + 535 + ], + "score": 1.0, + "content": "vulnerable to producing invalid labels, for instance, “O, I-tag, I-tag”. This problem is very severe", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 533, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 506, + 546 + ], + "score": 1.0, + "content": "in low resource settings (Peng et al., 2017). In experiments (see section 4.6), we also find that it", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 545, + 324, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 324, + 558 + ], + "score": 1.0, + "content": "performs poorly in recognizing long-length segments.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 456, + 506, + 558 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 561, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 561, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 573 + ], + "score": 1.0, + "content": "Recently, there is a growing interest in span-based models (Zhai et al., 2017; Li et al., 2019; Yu", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "et al., 2020). They treat a span rather than a token as the basic unit for labeling. Li et al. (2019) cast", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 583, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 506, + 595 + ], + "score": 1.0, + "content": "named entity recognition (NER) to a machine reading comprehension (MRC) task, where entities", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 594, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 607 + ], + "score": 1.0, + "content": "are extracted as retrieving answer spans. Yu et al. (2020) rank all the spans in terms of the scores", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "predicted by a bi-affine model (Dozat & Manning, 2016). In NER, span-based models have signif-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 616, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 506, + 628 + ], + "score": 1.0, + "content": "icantly outperformed their sequence labeling based counterparts. While these methods circumvent", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 626, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 506, + 641 + ], + "score": 1.0, + "content": "the use of IOB tagging scheme, they still rely on post-processing rules to guarantee the extracted", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 637, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 505, + 652 + ], + "score": 1.0, + "content": "span set to be valid. Moreover, since span-based models are locally normalized at span level, they", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 649, + 380, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 380, + 661 + ], + "score": 1.0, + "content": "potentially suffer from the label bias problem (Lafferty et al., 2001).", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 561, + 506, + 661 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "This paper seeks to provide a new framework which infers the segmentation of a unit sequence by", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "directly selecting from all valid segmentation candidates, instead of manipulating tokens or spans.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 687, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 701 + ], + "score": 1.0, + "content": "To this end, we propose Lexical Unit Analysis (LUA) in this paper. LUA assigns a score to every", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "valid segmentation candidate and leverages dynamic programming (DP) (Bellman, 1966) to search", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "for the maximum scoring one. The score of a segmentation is computed by using the scores of", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "its all segments. Besides, we adopt neural networks to score every segment of the input sentence.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 665, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 127, + 79, + 484, + 228 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 127, + 79, + 484, + 228 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 127, + 79, + 484, + 228 + ], + "spans": [ + { + "bbox": [ + 127, + 79, + 484, + 228 + ], + "score": 0.973, + "type": "image", + "image_path": "b34a0a4b29cfa62fc1064e82fa52cff24949a657d0e6f47cf445c7abc4ae1d90.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 127, + 79, + 484, + 128.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 127, + 128.66666666666666, + 484, + 178.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 127, + 178.33333333333331, + 484, + 227.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 240, + 505, + 263 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 240, + 505, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 505, + 253 + ], + "score": 1.0, + "content": "Figure 1: A toy example to show LUA and how it differs from prior methods. The items in blue and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 251, + 319, + 264 + ], + "spans": [ + { + "bbox": [ + 106, + 251, + 319, + 264 + ], + "score": 1.0, + "content": "red respectively denote valid and invalid predictions.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 107, + 283, + 505, + 339 + ], + "lines": [ + { + "bbox": [ + 106, + 283, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 505, + 297 + ], + "score": 1.0, + "content": "The purpose of using DP is to solve the intractability of extracting the maximum scoring segmen-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 294, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 505, + 307 + ], + "score": 1.0, + "content": "tation candidate by brute-force search. The time complexity of LUA is quadratic time, yet it can", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 304, + 506, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 506, + 320 + ], + "score": 1.0, + "content": "be optimized to linear time in practice by performing parallel matrix computations. For training", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 316, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 505, + 330 + ], + "score": 1.0, + "content": "criterion, we incur a hinge loss between the ground truth and the predictions. We also extend LUA", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 326, + 344, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 344, + 342 + ], + "score": 1.0, + "content": "to unlabeled segmentation and capturing label correlations.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 344, + 505, + 422 + ], + "lines": [ + { + "bbox": [ + 105, + 343, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 505, + 357 + ], + "score": 1.0, + "content": "Figure 1 illustrates the comparison between previous methods and the proposed LUA. Prior mod-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 355, + 505, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 505, + 368 + ], + "score": 1.0, + "content": "els at token level and span level are vulnerable to generating invalid predictions, and hence rely on", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 366, + 506, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 506, + 379 + ], + "score": 1.0, + "content": "heuristic rules to fix them. For example, in the middle part of Figure 1, the spans of two inferred", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 376, + 506, + 393 + ], + "spans": [ + { + "bbox": [ + 104, + 376, + 200, + 393 + ], + "score": 1.0, + "content": "named entities, [Word", + "type": "text" + }, + { + "bbox": [ + 200, + 377, + 243, + 390 + ], + "score": 0.75, + "content": "\\mathrm { C u p } \\mathrm { _ { M I S C } }", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 376, + 263, + 393 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 263, + 377, + 308, + 390 + ], + "score": 0.84, + "content": "[ \\mathrm { C u p } ] _ { \\mathrm { M I S C } }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 376, + 506, + 393 + ], + "score": 1.0, + "content": ", conflicts, which is mitigated by comparing the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 388, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 106, + 388, + 505, + 400 + ], + "score": 1.0, + "content": "predicted scores. LUA scores all possible segmentation candidates and uses DP to extract the max-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 399, + 506, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 506, + 412 + ], + "score": 1.0, + "content": "imum scoring one. In this way, our models guarantee the predictions to be valid. Moreover, the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 411, + 304, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 304, + 423 + ], + "score": 1.0, + "content": "globality of DP addresses the label bias problem.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 427, + 505, + 471 + ], + "lines": [ + { + "bbox": [ + 105, + 426, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 505, + 441 + ], + "score": 1.0, + "content": "Extensive experiments are conducted on syntactic chunking, NER, slot filling, Chinese word seg-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 438, + 506, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 506, + 451 + ], + "score": 1.0, + "content": "mentation, and Chinese part-of-speech (POS) tagging across 15 tasks. We have obtained new state-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 448, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 505, + 462 + ], + "score": 1.0, + "content": "of-the-art results on 13 of them and performed competitively on the others. In particular, we observe", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 461, + 329, + 472 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 329, + 472 + ], + "score": 1.0, + "content": "that LUA is expert at identifying long-length segments.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18.5 + }, + { + "type": "title", + "bbox": [ + 108, + 487, + 209, + 500 + ], + "lines": [ + { + "bbox": [ + 104, + 486, + 211, + 503 + ], + "spans": [ + { + "bbox": [ + 104, + 486, + 211, + 503 + ], + "score": 1.0, + "content": "2 METHODOLOGY", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 512, + 506, + 579 + ], + "lines": [ + { + "bbox": [ + 106, + 512, + 506, + 525 + ], + "spans": [ + { + "bbox": [ + 106, + 512, + 366, + 525 + ], + "score": 1.0, + "content": "We denote an input sequence (i.e., fine-grained lexical units) as", + "type": "text" + }, + { + "bbox": [ + 367, + 513, + 455, + 525 + ], + "score": 0.92, + "content": "\\mathbf { x } = [ x _ { 1 } , x _ { 2 } , \\cdot \\cdot \\cdot , x _ { n } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 512, + 487, + 525 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 487, + 515, + 494, + 523 + ], + "score": 0.76, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 512, + 506, + 525 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 523, + 506, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 506, + 536 + ], + "score": 1.0, + "content": "the sequence length. An output sequence (i.e., coarse-grained lexical units) is represented as the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 533, + 506, + 547 + ], + "spans": [ + { + "bbox": [ + 104, + 533, + 162, + 547 + ], + "score": 1.0, + "content": "segmentation", + "type": "text" + }, + { + "bbox": [ + 162, + 534, + 249, + 546 + ], + "score": 0.92, + "content": "\\mathbf { y } = [ y _ { 1 } , y _ { 2 } , \\cdots , y _ { m } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 533, + 329, + 547 + ], + "score": 1.0, + "content": "with each segment", + "type": "text" + }, + { + "bbox": [ + 329, + 536, + 340, + 546 + ], + "score": 0.86, + "content": "y _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 533, + 399, + 547 + ], + "score": 1.0, + "content": "being a triple", + "type": "text" + }, + { + "bbox": [ + 399, + 534, + 442, + 546 + ], + "score": 0.91, + "content": "( i _ { k } , j _ { k } , t _ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 533, + 448, + 547 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 448, + 536, + 458, + 545 + ], + "score": 0.68, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 533, + 506, + 547 + ], + "score": 1.0, + "content": "denotes its", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 544, + 504, + 560 + ], + "spans": [ + { + "bbox": [ + 104, + 544, + 139, + 560 + ], + "score": 1.0, + "content": "length.", + "type": "text" + }, + { + "bbox": [ + 140, + 546, + 169, + 558 + ], + "score": 0.93, + "content": "( i _ { k } , j _ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 544, + 362, + 560 + ], + "score": 1.0, + "content": "specifies a span that corresponds to the phrase", + "type": "text" + }, + { + "bbox": [ + 362, + 546, + 487, + 558 + ], + "score": 0.84, + "content": "\\mathbf { x } _ { i _ { k } , j _ { k } } = [ x _ { i _ { k } } , x _ { i _ { k } + 1 } , \\cdot \\cdot \\cdot , x _ { j _ { k } } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 544, + 493, + 560 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 494, + 546, + 504, + 557 + ], + "score": 0.69, + "content": "t _ { k }", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 556, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 235, + 569 + ], + "score": 1.0, + "content": "is a label from the label space", + "type": "text" + }, + { + "bbox": [ + 235, + 557, + 243, + 566 + ], + "score": 0.68, + "content": "\\mathcal { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 556, + 506, + 569 + ], + "score": 1.0, + "content": ". We define a valid segmentation candidate as its segments are", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 567, + 316, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 316, + 580 + ], + "score": 1.0, + "content": "non-overlapping and fully cover the input sequence.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 108, + 584, + 400, + 596 + ], + "lines": [ + { + "bbox": [ + 105, + 583, + 401, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 401, + 597 + ], + "score": 1.0, + "content": "A case extracted from CoNLL-2003 dataset (Sang & De Meulder, 2003):", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "interline_equation", + "bbox": [ + 179, + 601, + 434, + 626 + ], + "lines": [ + { + "bbox": [ + 179, + 601, + 434, + 626 + ], + "spans": [ + { + "bbox": [ + 179, + 601, + 434, + 626 + ], + "score": 0.82, + "content": "\\begin{array} { r } { \\mathbf { x } = [ [ \\mathrm { S O S } ] , \\mathrm { S a n g t h a i } , \\mathrm { G l o r y } , 2 2 / 1 1 / 9 6 , 3 0 0 0 , \\mathrm { S i n g a p o r e } ] } \\\\ { \\mathbf { y } = [ ( 1 , 1 , 0 ) , ( 2 , 3 , \\mathrm { M I S C } ) , ( 4 , 4 , 0 ) , ( 5 , 5 , 0 ) , ( 6 , 6 , \\mathrm { L O C } ) ] } \\end{array} .", + "type": "interline_equation", + "image_path": "f88d55dbc3255902eb4f47a9e662f9a54902436565787429bd2615935f3acfc4.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 179, + 601, + 434, + 626 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 631, + 381, + 644 + ], + "lines": [ + { + "bbox": [ + 105, + 629, + 383, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 383, + 647 + ], + "score": 1.0, + "content": "Start-of-sentence symbol [SOS] is added in the pre-processing stage.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "title", + "bbox": [ + 106, + 656, + 340, + 668 + ], + "lines": [ + { + "bbox": [ + 106, + 656, + 340, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 340, + 669 + ], + "score": 1.0, + "content": "2.1 MODEL: SCORING SEGMENTATION CANDIDATES", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 677, + 504, + 700 + ], + "lines": [ + { + "bbox": [ + 106, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 152, + 690 + ], + "score": 1.0, + "content": "We denote", + "type": "text" + }, + { + "bbox": [ + 152, + 678, + 161, + 688 + ], + "score": 0.84, + "content": "\\mathcal { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "as the universal set that contains all valid segmentation candidates. Given one of its", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 687, + 299, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 145, + 702 + ], + "score": 1.0, + "content": "members", + "type": "text" + }, + { + "bbox": [ + 145, + 689, + 172, + 700 + ], + "score": 0.91, + "content": "\\mathbf { y } \\in \\mathcal { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 687, + 265, + 702 + ], + "score": 1.0, + "content": ", we compute the score", + "type": "text" + }, + { + "bbox": [ + 266, + 688, + 286, + 700 + ], + "score": 0.91, + "content": "f ( \\mathbf { y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 687, + 299, + 702 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "interline_equation", + "bbox": [ + 241, + 705, + 369, + 735 + ], + "lines": [ + { + "bbox": [ + 241, + 705, + 369, + 735 + ], + "spans": [ + { + "bbox": [ + 241, + 705, + 369, + 735 + ], + "score": 0.94, + "content": "f ( \\mathbf { y } ) = \\sum _ { ( i , j , t ) \\in \\mathbf { y } } \\Big ( s _ { i , j } ^ { c } + s _ { i , j , t } ^ { l } \\Big ) ,", + "type": "interline_equation", + "image_path": "b4eeb1215c28a8c7d8a70ce88bcebb7c8716dddcb809969942d46b5d4d1b1a17.jpg" + } + ] + } + ], + "index": 34.5, + "virtual_lines": [ + { + "bbox": [ + 241, + 705, + 369, + 720.0 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 241, + 720.0, + 369, + 735.0 + ], + "spans": [], + "index": 35 + } + ] + } + ], + "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": "image", + "bbox": [ + 127, + 79, + 484, + 228 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 127, + 79, + 484, + 228 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 127, + 79, + 484, + 228 + ], + "spans": [ + { + "bbox": [ + 127, + 79, + 484, + 228 + ], + "score": 0.973, + "type": "image", + "image_path": "b34a0a4b29cfa62fc1064e82fa52cff24949a657d0e6f47cf445c7abc4ae1d90.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 127, + 79, + 484, + 128.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 127, + 128.66666666666666, + 484, + 178.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 127, + 178.33333333333331, + 484, + 227.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 240, + 505, + 263 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 240, + 505, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 505, + 253 + ], + "score": 1.0, + "content": "Figure 1: A toy example to show LUA and how it differs from prior methods. The items in blue and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 251, + 319, + 264 + ], + "spans": [ + { + "bbox": [ + 106, + 251, + 319, + 264 + ], + "score": 1.0, + "content": "red respectively denote valid and invalid predictions.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 107, + 283, + 505, + 339 + ], + "lines": [ + { + "bbox": [ + 106, + 283, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 505, + 297 + ], + "score": 1.0, + "content": "The purpose of using DP is to solve the intractability of extracting the maximum scoring segmen-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 294, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 505, + 307 + ], + "score": 1.0, + "content": "tation candidate by brute-force search. The time complexity of LUA is quadratic time, yet it can", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 304, + 506, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 506, + 320 + ], + "score": 1.0, + "content": "be optimized to linear time in practice by performing parallel matrix computations. For training", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 316, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 505, + 330 + ], + "score": 1.0, + "content": "criterion, we incur a hinge loss between the ground truth and the predictions. We also extend LUA", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 326, + 344, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 344, + 342 + ], + "score": 1.0, + "content": "to unlabeled segmentation and capturing label correlations.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 283, + 506, + 342 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 344, + 505, + 422 + ], + "lines": [ + { + "bbox": [ + 105, + 343, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 505, + 357 + ], + "score": 1.0, + "content": "Figure 1 illustrates the comparison between previous methods and the proposed LUA. Prior mod-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 355, + 505, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 505, + 368 + ], + "score": 1.0, + "content": "els at token level and span level are vulnerable to generating invalid predictions, and hence rely on", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 366, + 506, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 506, + 379 + ], + "score": 1.0, + "content": "heuristic rules to fix them. For example, in the middle part of Figure 1, the spans of two inferred", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 376, + 506, + 393 + ], + "spans": [ + { + "bbox": [ + 104, + 376, + 200, + 393 + ], + "score": 1.0, + "content": "named entities, [Word", + "type": "text" + }, + { + "bbox": [ + 200, + 377, + 243, + 390 + ], + "score": 0.75, + "content": "\\mathrm { C u p } \\mathrm { _ { M I S C } }", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 376, + 263, + 393 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 263, + 377, + 308, + 390 + ], + "score": 0.84, + "content": "[ \\mathrm { C u p } ] _ { \\mathrm { M I S C } }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 376, + 506, + 393 + ], + "score": 1.0, + "content": ", conflicts, which is mitigated by comparing the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 388, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 106, + 388, + 505, + 400 + ], + "score": 1.0, + "content": "predicted scores. LUA scores all possible segmentation candidates and uses DP to extract the max-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 399, + 506, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 506, + 412 + ], + "score": 1.0, + "content": "imum scoring one. In this way, our models guarantee the predictions to be valid. Moreover, the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 411, + 304, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 304, + 423 + ], + "score": 1.0, + "content": "globality of DP addresses the label bias problem.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13, + "bbox_fs": [ + 104, + 343, + 506, + 423 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 427, + 505, + 471 + ], + "lines": [ + { + "bbox": [ + 105, + 426, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 505, + 441 + ], + "score": 1.0, + "content": "Extensive experiments are conducted on syntactic chunking, NER, slot filling, Chinese word seg-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 438, + 506, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 506, + 451 + ], + "score": 1.0, + "content": "mentation, and Chinese part-of-speech (POS) tagging across 15 tasks. We have obtained new state-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 448, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 505, + 462 + ], + "score": 1.0, + "content": "of-the-art results on 13 of them and performed competitively on the others. In particular, we observe", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 461, + 329, + 472 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 329, + 472 + ], + "score": 1.0, + "content": "that LUA is expert at identifying long-length segments.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 426, + 506, + 472 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 487, + 209, + 500 + ], + "lines": [ + { + "bbox": [ + 104, + 486, + 211, + 503 + ], + "spans": [ + { + "bbox": [ + 104, + 486, + 211, + 503 + ], + "score": 1.0, + "content": "2 METHODOLOGY", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 512, + 506, + 579 + ], + "lines": [ + { + "bbox": [ + 106, + 512, + 506, + 525 + ], + "spans": [ + { + "bbox": [ + 106, + 512, + 366, + 525 + ], + "score": 1.0, + "content": "We denote an input sequence (i.e., fine-grained lexical units) as", + "type": "text" + }, + { + "bbox": [ + 367, + 513, + 455, + 525 + ], + "score": 0.92, + "content": "\\mathbf { x } = [ x _ { 1 } , x _ { 2 } , \\cdot \\cdot \\cdot , x _ { n } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 512, + 487, + 525 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 487, + 515, + 494, + 523 + ], + "score": 0.76, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 512, + 506, + 525 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 523, + 506, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 506, + 536 + ], + "score": 1.0, + "content": "the sequence length. An output sequence (i.e., coarse-grained lexical units) is represented as the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 533, + 506, + 547 + ], + "spans": [ + { + "bbox": [ + 104, + 533, + 162, + 547 + ], + "score": 1.0, + "content": "segmentation", + "type": "text" + }, + { + "bbox": [ + 162, + 534, + 249, + 546 + ], + "score": 0.92, + "content": "\\mathbf { y } = [ y _ { 1 } , y _ { 2 } , \\cdots , y _ { m } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 533, + 329, + 547 + ], + "score": 1.0, + "content": "with each segment", + "type": "text" + }, + { + "bbox": [ + 329, + 536, + 340, + 546 + ], + "score": 0.86, + "content": "y _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 533, + 399, + 547 + ], + "score": 1.0, + "content": "being a triple", + "type": "text" + }, + { + "bbox": [ + 399, + 534, + 442, + 546 + ], + "score": 0.91, + "content": "( i _ { k } , j _ { k } , t _ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 533, + 448, + 547 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 448, + 536, + 458, + 545 + ], + "score": 0.68, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 533, + 506, + 547 + ], + "score": 1.0, + "content": "denotes its", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 544, + 504, + 560 + ], + "spans": [ + { + "bbox": [ + 104, + 544, + 139, + 560 + ], + "score": 1.0, + "content": "length.", + "type": "text" + }, + { + "bbox": [ + 140, + 546, + 169, + 558 + ], + "score": 0.93, + "content": "( i _ { k } , j _ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 544, + 362, + 560 + ], + "score": 1.0, + "content": "specifies a span that corresponds to the phrase", + "type": "text" + }, + { + "bbox": [ + 362, + 546, + 487, + 558 + ], + "score": 0.84, + "content": "\\mathbf { x } _ { i _ { k } , j _ { k } } = [ x _ { i _ { k } } , x _ { i _ { k } + 1 } , \\cdot \\cdot \\cdot , x _ { j _ { k } } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 544, + 493, + 560 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 494, + 546, + 504, + 557 + ], + "score": 0.69, + "content": "t _ { k }", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 556, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 235, + 569 + ], + "score": 1.0, + "content": "is a label from the label space", + "type": "text" + }, + { + "bbox": [ + 235, + 557, + 243, + 566 + ], + "score": 0.68, + "content": "\\mathcal { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 556, + 506, + 569 + ], + "score": 1.0, + "content": ". We define a valid segmentation candidate as its segments are", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 567, + 316, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 316, + 580 + ], + "score": 1.0, + "content": "non-overlapping and fully cover the input sequence.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24.5, + "bbox_fs": [ + 104, + 512, + 506, + 580 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 584, + 400, + 596 + ], + "lines": [ + { + "bbox": [ + 105, + 583, + 401, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 401, + 597 + ], + "score": 1.0, + "content": "A case extracted from CoNLL-2003 dataset (Sang & De Meulder, 2003):", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 583, + 401, + 597 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 179, + 601, + 434, + 626 + ], + "lines": [ + { + "bbox": [ + 179, + 601, + 434, + 626 + ], + "spans": [ + { + "bbox": [ + 179, + 601, + 434, + 626 + ], + "score": 0.82, + "content": "\\begin{array} { r } { \\mathbf { x } = [ [ \\mathrm { S O S } ] , \\mathrm { S a n g t h a i } , \\mathrm { G l o r y } , 2 2 / 1 1 / 9 6 , 3 0 0 0 , \\mathrm { S i n g a p o r e } ] } \\\\ { \\mathbf { y } = [ ( 1 , 1 , 0 ) , ( 2 , 3 , \\mathrm { M I S C } ) , ( 4 , 4 , 0 ) , ( 5 , 5 , 0 ) , ( 6 , 6 , \\mathrm { L O C } ) ] } \\end{array} .", + "type": "interline_equation", + "image_path": "f88d55dbc3255902eb4f47a9e662f9a54902436565787429bd2615935f3acfc4.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 179, + 601, + 434, + 626 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 631, + 381, + 644 + ], + "lines": [ + { + "bbox": [ + 105, + 629, + 383, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 383, + 647 + ], + "score": 1.0, + "content": "Start-of-sentence symbol [SOS] is added in the pre-processing stage.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 629, + 383, + 647 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 656, + 340, + 668 + ], + "lines": [ + { + "bbox": [ + 106, + 656, + 340, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 340, + 669 + ], + "score": 1.0, + "content": "2.1 MODEL: SCORING SEGMENTATION CANDIDATES", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 677, + 504, + 700 + ], + "lines": [ + { + "bbox": [ + 106, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 152, + 690 + ], + "score": 1.0, + "content": "We denote", + "type": "text" + }, + { + "bbox": [ + 152, + 678, + 161, + 688 + ], + "score": 0.84, + "content": "\\mathcal { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "as the universal set that contains all valid segmentation candidates. Given one of its", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 687, + 299, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 145, + 702 + ], + "score": 1.0, + "content": "members", + "type": "text" + }, + { + "bbox": [ + 145, + 689, + 172, + 700 + ], + "score": 0.91, + "content": "\\mathbf { y } \\in \\mathcal { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 687, + 265, + 702 + ], + "score": 1.0, + "content": ", we compute the score", + "type": "text" + }, + { + "bbox": [ + 266, + 688, + 286, + 700 + ], + "score": 0.91, + "content": "f ( \\mathbf { y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 687, + 299, + 702 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 677, + 505, + 702 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 241, + 705, + 369, + 735 + ], + "lines": [ + { + "bbox": [ + 241, + 705, + 369, + 735 + ], + "spans": [ + { + "bbox": [ + 241, + 705, + 369, + 735 + ], + "score": 0.94, + "content": "f ( \\mathbf { y } ) = \\sum _ { ( i , j , t ) \\in \\mathbf { y } } \\Big ( s _ { i , j } ^ { c } + s _ { i , j , t } ^ { l } \\Big ) ,", + "type": "interline_equation", + "image_path": "b4eeb1215c28a8c7d8a70ce88bcebb7c8716dddcb809969942d46b5d4d1b1a17.jpg" + } + ] + } + ], + "index": 34.5, + "virtual_lines": [ + { + "bbox": [ + 241, + 705, + 369, + 720.0 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 241, + 720.0, + 369, + 735.0 + ], + "spans": [], + "index": 35 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 100, + 457, + 113 + ], + "lines": [ + { + "bbox": [ + 105, + 98, + 457, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 98, + 214, + 116 + ], + "score": 1.0, + "content": "Input: Composition score", + "type": "text" + }, + { + "bbox": [ + 214, + 101, + 229, + 114 + ], + "score": 0.9, + "content": "s _ { i , j } ^ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 98, + 293, + 116 + ], + "score": 1.0, + "content": "and label score", + "type": "text" + }, + { + "bbox": [ + 293, + 100, + 313, + 114 + ], + "score": 0.92, + "content": "s _ { i , j , t } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 98, + 424, + 116 + ], + "score": 1.0, + "content": "for every possible segment", + "type": "text" + }, + { + "bbox": [ + 424, + 100, + 452, + 113 + ], + "score": 0.94, + "content": "( i , j , t )", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 98, + 457, + 116 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 115, + 114, + 437, + 124 + ], + "lines": [ + { + "bbox": [ + 113, + 111, + 419, + 128 + ], + "spans": [ + { + "bbox": [ + 113, + 111, + 332, + 128 + ], + "score": 1.0, + "content": "utput: The maximum segmentation scoring candidate", + "type": "text" + }, + { + "bbox": [ + 333, + 113, + 340, + 124 + ], + "score": 0.85, + "content": "\\hat { \\mathbf { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 111, + 394, + 128 + ], + "score": 1.0, + "content": "and its score", + "type": "text" + }, + { + "bbox": [ + 394, + 113, + 415, + 125 + ], + "score": 0.9, + "content": "f ( \\hat { \\mathbf { y } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 111, + 419, + 128 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 98, + 125, + 444, + 135 + ], + "lines": [ + { + "bbox": [ + 98, + 123, + 443, + 137 + ], + "spans": [ + { + "bbox": [ + 98, + 123, + 139, + 137 + ], + "score": 1.0, + "content": "1 Set two", + "type": "text" + }, + { + "bbox": [ + 139, + 125, + 164, + 135 + ], + "score": 0.9, + "content": "n \\times n", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 123, + 234, + 137 + ], + "score": 1.0, + "content": "shaped matrices,", + "type": "text" + }, + { + "bbox": [ + 235, + 123, + 247, + 134 + ], + "score": 0.87, + "content": "\\mathbf { c } ^ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 123, + 264, + 137 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 265, + 124, + 276, + 134 + ], + "score": 0.84, + "content": "{ \\bf b } ^ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 123, + 443, + 137 + ], + "score": 1.0, + "content": ", for computing maximum scoring labels.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 98, + 136, + 440, + 147 + ], + "lines": [ + { + "bbox": [ + 97, + 133, + 442, + 149 + ], + "spans": [ + { + "bbox": [ + 97, + 133, + 139, + 149 + ], + "score": 1.0, + "content": "2 Set two", + "type": "text" + }, + { + "bbox": [ + 139, + 137, + 146, + 145 + ], + "score": 0.8, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 133, + 209, + 149 + ], + "score": 1.0, + "content": "-length vectors,", + "type": "text" + }, + { + "bbox": [ + 209, + 137, + 217, + 147 + ], + "score": 0.51, + "content": "\\mathbf { g }", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 133, + 234, + 149 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 235, + 136, + 246, + 145 + ], + "score": 0.86, + "content": "\\mathbf { b } ^ { g }", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 133, + 442, + 149 + ], + "score": 1.0, + "content": ", for computing maximum scoring segmentation.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 101, + 158, + 431, + 185 + ], + "lines": [ + { + "bbox": [ + 100, + 151, + 428, + 175 + ], + "spans": [ + { + "bbox": [ + 100, + 162, + 103, + 167 + ], + "score": 1.0, + "content": "4", + "type": "text" + }, + { + "bbox": [ + 119, + 151, + 320, + 175 + ], + "score": 1.0, + "content": "Compute the maximum label score for each span", + "type": "text" + }, + { + "bbox": [ + 321, + 156, + 428, + 171 + ], + "score": 0.78, + "content": "( i , j ) \\colon s _ { i , j } ^ { L } = \\operatorname* { m a x } _ { t \\in \\mathcal { L } } s _ { i , j , t } ^ { l }", + "type": "inline_equation" + } + ], + "index": 4 + }, + { + "bbox": [ + 99, + 168, + 351, + 187 + ], + "spans": [ + { + "bbox": [ + 99, + 174, + 105, + 182 + ], + "score": 1.0, + "content": "5", + "type": "text" + }, + { + "bbox": [ + 120, + 168, + 249, + 187 + ], + "score": 1.0, + "content": "Record the backtracking index:", + "type": "text" + }, + { + "bbox": [ + 250, + 171, + 347, + 185 + ], + "score": 0.93, + "content": "b _ { i , j } ^ { c } = \\arg \\operatorname* { m a x } _ { t \\in \\mathcal { L } } s _ { i , j , t } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 168, + 351, + 187 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 98, + 187, + 340, + 200 + ], + "lines": [ + { + "bbox": [ + 95, + 183, + 338, + 204 + ], + "spans": [ + { + "bbox": [ + 95, + 183, + 248, + 204 + ], + "score": 1.0, + "content": "6 Initialize the value of the base case", + "type": "text" + }, + { + "bbox": [ + 248, + 187, + 338, + 201 + ], + "score": 0.85, + "content": "\\mathbf { x } _ { 1 , 1 } \\colon g _ { 1 } = s _ { 1 , 1 } ^ { c } + s _ { 1 , 1 } ^ { L }", + "type": "inline_equation" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 101, + 212, + 477, + 238 + ], + "lines": [ + { + "bbox": [ + 100, + 206, + 474, + 228 + ], + "spans": [ + { + "bbox": [ + 100, + 216, + 104, + 219 + ], + "score": 0.554, + "content": "8", + "type": "text" + }, + { + "bbox": [ + 118, + 206, + 250, + 228 + ], + "score": 1.0, + "content": "Compute the value of the prefix", + "type": "text" + }, + { + "bbox": [ + 252, + 210, + 474, + 225 + ], + "score": 0.83, + "content": "\\begin{array} { r } { \\mathbf { x } _ { 1 , i } { \\mathrm { : ~ } } g _ { i } = \\operatorname* { m a x } _ { 1 \\leq j \\leq i - 1 } \\left( g _ { i - j } + \\left( s _ { i - j + 1 , i } ^ { c } + s _ { i - j + 1 , i } ^ { L } \\right) \\right) } \\end{array}", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 100, + 221, + 474, + 241 + ], + "spans": [ + { + "bbox": [ + 100, + 229, + 104, + 233 + ], + "score": 0.976, + "content": "9", + "type": "text" + }, + { + "bbox": [ + 118, + 221, + 249, + 241 + ], + "score": 1.0, + "content": "Record the backtracking index:", + "type": "text" + }, + { + "bbox": [ + 250, + 225, + 469, + 239 + ], + "score": 0.85, + "content": "b _ { i } ^ { g } = \\arg \\operatorname* { m a x } _ { 1 \\leq j \\leq i - 1 } \\left( g _ { i - j } + ( s _ { i - j + 1 , i } ^ { c } + s _ { i - j + 1 , i } ^ { L } ) \\right) .", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 221, + 474, + 241 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 96, + 240, + 411, + 264 + ], + "lines": [ + { + "bbox": [ + 94, + 239, + 412, + 253 + ], + "spans": [ + { + "bbox": [ + 94, + 239, + 253, + 253 + ], + "score": 1.0, + "content": "10 Get the maximum scoring candidate", + "type": "text" + }, + { + "bbox": [ + 253, + 241, + 261, + 252 + ], + "score": 0.84, + "content": "\\hat { \\mathbf { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 239, + 366, + 253 + ], + "score": 1.0, + "content": "by back tracing the tables", + "type": "text" + }, + { + "bbox": [ + 366, + 240, + 379, + 250 + ], + "score": 0.84, + "content": "\\mathbf { b } ^ { g }", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 239, + 396, + 253 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 397, + 241, + 408, + 250 + ], + "score": 0.81, + "content": "\\mathbf { b } ^ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 239, + 412, + 253 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 94, + 250, + 312, + 265 + ], + "spans": [ + { + "bbox": [ + 94, + 250, + 263, + 265 + ], + "score": 1.0, + "content": "11 Get the maximum segmentation score:", + "type": "text" + }, + { + "bbox": [ + 263, + 251, + 307, + 263 + ], + "score": 0.92, + "content": "f ( \\hat { \\mathbf { y } } ) = g _ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 250, + 312, + 265 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 107, + 291, + 505, + 327 + ], + "lines": [ + { + "bbox": [ + 105, + 289, + 506, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 133, + 306 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 292, + 149, + 305 + ], + "score": 0.9, + "content": "s _ { i , j } ^ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 289, + 506, + 306 + ], + "score": 1.0, + "content": "is the composition score to estimate the feasibility of merging several fine-grained units", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 107, + 303, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 107, + 304, + 180, + 317 + ], + "score": 0.88, + "content": "[ x _ { i } , x _ { i + 1 } , \\cdot \\cdot \\cdot , x _ { j } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 303, + 304, + 318 + ], + "score": 1.0, + "content": "into a coarse-grained unit and", + "type": "text" + }, + { + "bbox": [ + 305, + 303, + 325, + 318 + ], + "score": 0.93, + "content": "s _ { i , j , t } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 303, + 505, + 318 + ], + "score": 1.0, + "content": "is the label score to measure how likely the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 315, + 392, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 200, + 329 + ], + "score": 1.0, + "content": "label of this segment is", + "type": "text" + }, + { + "bbox": [ + 201, + 317, + 205, + 325 + ], + "score": 0.7, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 315, + 392, + 329 + ], + "score": 1.0, + "content": ". Both scores are obtained by a scoring model.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 340, + 505, + 385 + ], + "lines": [ + { + "bbox": [ + 106, + 340, + 506, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 340, + 372, + 353 + ], + "score": 1.0, + "content": "Scoring Model. a scoring model scores all possible segments", + "type": "text" + }, + { + "bbox": [ + 372, + 340, + 400, + 352 + ], + "score": 0.92, + "content": "( i , j , t )", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 340, + 493, + 353 + ], + "score": 1.0, + "content": "for an input sentence", + "type": "text" + }, + { + "bbox": [ + 493, + 342, + 501, + 351 + ], + "score": 0.31, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 340, + 506, + 353 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 351, + 506, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 506, + 364 + ], + "score": 1.0, + "content": "Firstly, we get the representation for each fine-grained unit. Following prior works (Li et al., 2019;", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 362, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 505, + 375 + ], + "score": 1.0, + "content": "Luo et al., 2020; Yu et al., 2020), we adopt BERT (Devlin et al., 2018), a powerful pre-trained", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 373, + 361, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 361, + 386 + ], + "score": 1.0, + "content": "language model, as the sentence encoder. Specifically, we have", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5 + }, + { + "type": "interline_equation", + "bbox": [ + 240, + 391, + 370, + 405 + ], + "lines": [ + { + "bbox": [ + 240, + 391, + 370, + 405 + ], + "spans": [ + { + "bbox": [ + 240, + 391, + 370, + 405 + ], + "score": 0.92, + "content": "[ \\mathbf { h } _ { 1 } ^ { w } , \\mathbf { h } _ { 2 } ^ { w } \\cdot \\cdot \\cdot \\mathbf { \\epsilon } , \\mathbf { h } _ { n } ^ { w } ] = \\mathrm { B E R T } ( \\mathbf { x } ) ,", + "type": "interline_equation", + "image_path": "d9e94df8f089510bd74aa3185e0dcd1b7e94b88c40f2f670c76dd9fd397c10d4.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 240, + 391, + 370, + 405 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 410, + 449, + 423 + ], + "lines": [ + { + "bbox": [ + 105, + 409, + 450, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 409, + 357, + 425 + ], + "score": 1.0, + "content": "Then, we compute the representation for a coarse-grained unit", + "type": "text" + }, + { + "bbox": [ + 357, + 411, + 437, + 423 + ], + "score": 0.91, + "content": "\\mathbf { x } _ { i , j } , 1 \\leq i \\leq j \\leq n", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 409, + 450, + 425 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "interline_equation", + "bbox": [ + 211, + 428, + 399, + 444 + ], + "lines": [ + { + "bbox": [ + 211, + 428, + 399, + 444 + ], + "spans": [ + { + "bbox": [ + 211, + 428, + 399, + 444 + ], + "score": 0.92, + "content": "\\mathbf { h } _ { i , j } ^ { p } = \\mathbf { h } _ { i } ^ { w } \\oplus \\mathbf { h } _ { j } ^ { w } \\oplus \\left( \\mathbf { h } _ { i } ^ { w } - \\mathbf { h } _ { j } ^ { w } \\right) \\oplus \\big ( \\mathbf { h } _ { i } ^ { w } \\odot \\mathbf { h } _ { j } ^ { w } \\big ) ,", + "type": "interline_equation", + "image_path": "27e2d0c5384994b44168713ea50683326c64817a294acd44ec9c0adea92468ca.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 211, + 428, + 399, + 444 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 448, + 364, + 460 + ], + "lines": [ + { + "bbox": [ + 106, + 447, + 365, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 447, + 133, + 462 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 450, + 142, + 459 + ], + "score": 0.81, + "content": "\\oplus", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 447, + 254, + 462 + ], + "score": 1.0, + "content": "is vector concatenation and", + "type": "text" + }, + { + "bbox": [ + 255, + 450, + 264, + 459 + ], + "score": 0.83, + "content": "\\odot", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 447, + 365, + 462 + ], + "score": 1.0, + "content": "is element-wise product.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 110, + 465, + 460, + 477 + ], + "lines": [ + { + "bbox": [ + 107, + 464, + 461, + 479 + ], + "spans": [ + { + "bbox": [ + 107, + 464, + 428, + 479 + ], + "score": 1.0, + "content": "Eventually, we employ two non-linear feedforward networks to score a segment", + "type": "text" + }, + { + "bbox": [ + 428, + 465, + 456, + 478 + ], + "score": 0.92, + "content": "( i , j , t )", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 464, + 461, + 479 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "interline_equation", + "bbox": [ + 181, + 483, + 429, + 502 + ], + "lines": [ + { + "bbox": [ + 181, + 483, + 429, + 502 + ], + "spans": [ + { + "bbox": [ + 181, + 483, + 429, + 502 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\boldsymbol { s } _ { i , j } ^ { c } = \\left( \\mathbf { v } ^ { c } \\right) ^ { T } \\operatorname { t a n h } ( \\mathbf { W } ^ { c } \\mathbf { h } _ { i , j } ^ { p } ) , \\boldsymbol { s } _ { i , j , t } ^ { l } = \\left( \\mathbf { v } _ { t } ^ { l } \\right) ^ { T } \\operatorname { t a n h } ( \\mathbf { W } ^ { l } \\mathbf { h } _ { i , j } ^ { p } ) , } \\end{array}", + "type": "interline_equation", + "image_path": "bec80a12be79ba41c21d919bcb58d452ae9381b46291688e763333d89b2a2884.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 181, + 483, + 429, + 502 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 509, + 505, + 532 + ], + "lines": [ + { + "bbox": [ + 106, + 507, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 507, + 133, + 523 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 510, + 145, + 519 + ], + "score": 0.77, + "content": "\\mathbf { v } _ { } ^ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 507, + 150, + 523 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 150, + 509, + 167, + 520 + ], + "score": 0.53, + "content": "\\mathbf { W } ^ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 507, + 171, + 523 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 171, + 508, + 212, + 521 + ], + "score": 0.69, + "content": "\\mathbf { v } _ { t } ^ { l } , t \\in \\mathcal { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 507, + 234, + 523 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 234, + 508, + 250, + 519 + ], + "score": 0.87, + "content": "\\mathbf { W } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 507, + 505, + 523 + ], + "score": 1.0, + "content": "are all learnable parameters. Besides, the scoring model used", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 519, + 330, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 330, + 533 + ], + "score": 1.0, + "content": "here can be flexibly replaced by any regression method.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "title", + "bbox": [ + 106, + 546, + 314, + 558 + ], + "lines": [ + { + "bbox": [ + 105, + 545, + 314, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 314, + 559 + ], + "score": 1.0, + "content": "2.2 INFERENCE VIA DYNAMIC PROGRAMMING", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 566, + 448, + 579 + ], + "lines": [ + { + "bbox": [ + 106, + 566, + 450, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 566, + 450, + 581 + ], + "score": 1.0, + "content": "The prediction of the maximum scoring segmentation candidate can be formulated as", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "interline_equation", + "bbox": [ + 264, + 585, + 346, + 606 + ], + "lines": [ + { + "bbox": [ + 264, + 585, + 346, + 606 + ], + "spans": [ + { + "bbox": [ + 264, + 585, + 346, + 606 + ], + "score": 0.93, + "content": "{ \\hat { \\mathbf { y } } } = \\operatorname * { a r g m a x } _ { \\mathbf { y } \\in \\mathcal { Y } } f ( \\mathbf { y } ) .", + "type": "interline_equation", + "image_path": "caa4c2a21b43a8e4714ab0d3f8d55af123600d3527111674492360b846f69e31.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 264, + 585, + 346, + 606 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 613, + 504, + 647 + ], + "lines": [ + { + "bbox": [ + 105, + 613, + 505, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 239, + 626 + ], + "score": 1.0, + "content": "Because the size of search space", + "type": "text" + }, + { + "bbox": [ + 239, + 613, + 254, + 625 + ], + "score": 0.89, + "content": "| \\mathcal { V } |", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 613, + 494, + 626 + ], + "score": 1.0, + "content": "increases exponentially with respect to the sequence length", + "type": "text" + }, + { + "bbox": [ + 494, + 616, + 501, + 623 + ], + "score": 0.71, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 613, + 505, + 626 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 623, + 505, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 505, + 636 + ], + "score": 1.0, + "content": "brute-force search to solve Equation 5 is computationally infeasible. LUA uses DP to address this", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 635, + 383, + 647 + ], + "spans": [ + { + "bbox": [ + 106, + 635, + 383, + 647 + ], + "score": 1.0, + "content": "issue, which is facilitated by the decomposable nature of Equation 1.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 651, + 505, + 686 + ], + "lines": [ + { + "bbox": [ + 106, + 652, + 504, + 664 + ], + "spans": [ + { + "bbox": [ + 106, + 652, + 504, + 664 + ], + "score": 1.0, + "content": "DP is a well-known optimization method which solves a complicated problem by breaking it down", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 662, + 504, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 504, + 675 + ], + "score": 1.0, + "content": "into simpler sub-problems in a recursive manner. The relation between the value of the larger prob-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 674, + 388, + 686 + ], + "spans": [ + { + "bbox": [ + 106, + 674, + 388, + 686 + ], + "score": 1.0, + "content": "lem and the values of its sub-problems is called the Bellman equation.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 504, + 734 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 487, + 712 + ], + "score": 1.0, + "content": "Sub-problem. In the context of LUA, the sub-problem of segmenting an input unit sequence", + "type": "text" + }, + { + "bbox": [ + 487, + 701, + 495, + 709 + ], + "score": 0.48, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 201, + 723 + ], + "score": 1.0, + "content": "segmenting its prefixes", + "type": "text" + }, + { + "bbox": [ + 202, + 710, + 268, + 722 + ], + "score": 0.91, + "content": "\\mathbf { x } _ { 1 , i } , 1 \\leq i \\leq n", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 709, + 317, + 723 + ], + "score": 1.0, + "content": ". We define", + "type": "text" + }, + { + "bbox": [ + 318, + 711, + 327, + 721 + ], + "score": 0.83, + "content": "g _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "as the maximum segmentation score of the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 719, + 353, + 735 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 132, + 735 + ], + "score": 1.0, + "content": "prefix", + "type": "text" + }, + { + "bbox": [ + 132, + 722, + 149, + 733 + ], + "score": 0.89, + "content": "\\mathbf { x } _ { 1 , i }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 719, + 268, + 735 + ], + "score": 1.0, + "content": ". Under this scheme, we have", + "type": "text" + }, + { + "bbox": [ + 268, + 721, + 348, + 733 + ], + "score": 0.9, + "content": "\\textstyle \\operatorname* { m a x } _ { \\mathbf { y } \\in { \\mathcal { y } } } f ( \\mathbf { y } ) = g _ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 719, + 353, + 735 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 100, + 457, + 113 + ], + "lines": [ + { + "bbox": [ + 105, + 98, + 457, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 98, + 214, + 116 + ], + "score": 1.0, + "content": "Input: Composition score", + "type": "text" + }, + { + "bbox": [ + 214, + 101, + 229, + 114 + ], + "score": 0.9, + "content": "s _ { i , j } ^ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 98, + 293, + 116 + ], + "score": 1.0, + "content": "and label score", + "type": "text" + }, + { + "bbox": [ + 293, + 100, + 313, + 114 + ], + "score": 0.92, + "content": "s _ { i , j , t } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 98, + 424, + 116 + ], + "score": 1.0, + "content": "for every possible segment", + "type": "text" + }, + { + "bbox": [ + 424, + 100, + 452, + 113 + ], + "score": 0.94, + "content": "( i , j , t )", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 98, + 457, + 116 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 98, + 457, + 116 + ] + }, + { + "type": "text", + "bbox": [ + 115, + 114, + 437, + 124 + ], + "lines": [ + { + "bbox": [ + 113, + 111, + 419, + 128 + ], + "spans": [ + { + "bbox": [ + 113, + 111, + 332, + 128 + ], + "score": 1.0, + "content": "utput: The maximum segmentation scoring candidate", + "type": "text" + }, + { + "bbox": [ + 333, + 113, + 340, + 124 + ], + "score": 0.85, + "content": "\\hat { \\mathbf { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 111, + 394, + 128 + ], + "score": 1.0, + "content": "and its score", + "type": "text" + }, + { + "bbox": [ + 394, + 113, + 415, + 125 + ], + "score": 0.9, + "content": "f ( \\hat { \\mathbf { y } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 111, + 419, + 128 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1, + "bbox_fs": [ + 113, + 111, + 419, + 128 + ] + }, + { + "type": "text", + "bbox": [ + 98, + 125, + 444, + 135 + ], + "lines": [ + { + "bbox": [ + 98, + 123, + 443, + 137 + ], + "spans": [ + { + "bbox": [ + 98, + 123, + 139, + 137 + ], + "score": 1.0, + "content": "1 Set two", + "type": "text" + }, + { + "bbox": [ + 139, + 125, + 164, + 135 + ], + "score": 0.9, + "content": "n \\times n", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 123, + 234, + 137 + ], + "score": 1.0, + "content": "shaped matrices,", + "type": "text" + }, + { + "bbox": [ + 235, + 123, + 247, + 134 + ], + "score": 0.87, + "content": "\\mathbf { c } ^ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 123, + 264, + 137 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 265, + 124, + 276, + 134 + ], + "score": 0.84, + "content": "{ \\bf b } ^ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 123, + 443, + 137 + ], + "score": 1.0, + "content": ", for computing maximum scoring labels.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2, + "bbox_fs": [ + 98, + 123, + 443, + 137 + ] + }, + { + "type": "text", + "bbox": [ + 98, + 136, + 440, + 147 + ], + "lines": [ + { + "bbox": [ + 97, + 133, + 442, + 149 + ], + "spans": [ + { + "bbox": [ + 97, + 133, + 139, + 149 + ], + "score": 1.0, + "content": "2 Set two", + "type": "text" + }, + { + "bbox": [ + 139, + 137, + 146, + 145 + ], + "score": 0.8, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 133, + 209, + 149 + ], + "score": 1.0, + "content": "-length vectors,", + "type": "text" + }, + { + "bbox": [ + 209, + 137, + 217, + 147 + ], + "score": 0.51, + "content": "\\mathbf { g }", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 133, + 234, + 149 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 235, + 136, + 246, + 145 + ], + "score": 0.86, + "content": "\\mathbf { b } ^ { g }", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 133, + 442, + 149 + ], + "score": 1.0, + "content": ", for computing maximum scoring segmentation.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3, + "bbox_fs": [ + 97, + 133, + 442, + 149 + ] + }, + { + "type": "index", + "bbox": [ + 101, + 158, + 431, + 185 + ], + "lines": [ + { + "bbox": [ + 100, + 151, + 428, + 175 + ], + "spans": [ + { + "bbox": [ + 100, + 162, + 103, + 167 + ], + "score": 1.0, + "content": "4", + "type": "text" + }, + { + "bbox": [ + 119, + 151, + 320, + 175 + ], + "score": 1.0, + "content": "Compute the maximum label score for each span", + "type": "text" + }, + { + "bbox": [ + 321, + 156, + 428, + 171 + ], + "score": 0.78, + "content": "( i , j ) \\colon s _ { i , j } ^ { L } = \\operatorname* { m a x } _ { t \\in \\mathcal { L } } s _ { i , j , t } ^ { l }", + "type": "inline_equation" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 99, + 168, + 351, + 187 + ], + "spans": [ + { + "bbox": [ + 99, + 174, + 105, + 182 + ], + "score": 1.0, + "content": "5", + "type": "text" + }, + { + "bbox": [ + 120, + 168, + 249, + 187 + ], + "score": 1.0, + "content": "Record the backtracking index:", + "type": "text" + }, + { + "bbox": [ + 250, + 171, + 347, + 185 + ], + "score": 0.93, + "content": "b _ { i , j } ^ { c } = \\arg \\operatorname* { m a x } _ { t \\in \\mathcal { L } } s _ { i , j , t } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 168, + 351, + 187 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + } + ], + "index": 4.5, + "bbox_fs": [ + 99, + 151, + 428, + 187 + ] + }, + { + "type": "text", + "bbox": [ + 98, + 187, + 340, + 200 + ], + "lines": [ + { + "bbox": [ + 95, + 183, + 338, + 204 + ], + "spans": [ + { + "bbox": [ + 95, + 183, + 248, + 204 + ], + "score": 1.0, + "content": "6 Initialize the value of the base case", + "type": "text" + }, + { + "bbox": [ + 248, + 187, + 338, + 201 + ], + "score": 0.85, + "content": "\\mathbf { x } _ { 1 , 1 } \\colon g _ { 1 } = s _ { 1 , 1 } ^ { c } + s _ { 1 , 1 } ^ { L }", + "type": "inline_equation" + } + ], + "index": 6 + } + ], + "index": 6, + "bbox_fs": [ + 95, + 183, + 338, + 204 + ] + }, + { + "type": "index", + "bbox": [ + 101, + 212, + 477, + 238 + ], + "lines": [ + { + "bbox": [ + 100, + 206, + 474, + 228 + ], + "spans": [ + { + "bbox": [ + 100, + 216, + 104, + 219 + ], + "score": 0.554, + "content": "8", + "type": "text" + }, + { + "bbox": [ + 118, + 206, + 250, + 228 + ], + "score": 1.0, + "content": "Compute the value of the prefix", + "type": "text" + }, + { + "bbox": [ + 252, + 210, + 474, + 225 + ], + "score": 0.83, + "content": "\\begin{array} { r } { \\mathbf { x } _ { 1 , i } { \\mathrm { : ~ } } g _ { i } = \\operatorname* { m a x } _ { 1 \\leq j \\leq i - 1 } \\left( g _ { i - j } + \\left( s _ { i - j + 1 , i } ^ { c } + s _ { i - j + 1 , i } ^ { L } \\right) \\right) } \\end{array}", + "type": "inline_equation" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 100, + 221, + 474, + 241 + ], + "spans": [ + { + "bbox": [ + 100, + 229, + 104, + 233 + ], + "score": 0.976, + "content": "9", + "type": "text" + }, + { + "bbox": [ + 118, + 221, + 249, + 241 + ], + "score": 1.0, + "content": "Record the backtracking index:", + "type": "text" + }, + { + "bbox": [ + 250, + 225, + 469, + 239 + ], + "score": 0.85, + "content": "b _ { i } ^ { g } = \\arg \\operatorname* { m a x } _ { 1 \\leq j \\leq i - 1 } \\left( g _ { i - j } + ( s _ { i - j + 1 , i } ^ { c } + s _ { i - j + 1 , i } ^ { L } ) \\right) .", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 221, + 474, + 241 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 94, + 239, + 412, + 253 + ], + "spans": [ + { + "bbox": [ + 94, + 239, + 253, + 253 + ], + "score": 1.0, + "content": "10 Get the maximum scoring candidate", + "type": "text" + }, + { + "bbox": [ + 253, + 241, + 261, + 252 + ], + "score": 0.84, + "content": "\\hat { \\mathbf { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 239, + 366, + 253 + ], + "score": 1.0, + "content": "by back tracing the tables", + "type": "text" + }, + { + "bbox": [ + 366, + 240, + 379, + 250 + ], + "score": 0.84, + "content": "\\mathbf { b } ^ { g }", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 239, + 396, + 253 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 397, + 241, + 408, + 250 + ], + "score": 0.81, + "content": "\\mathbf { b } ^ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 239, + 412, + 253 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 94, + 250, + 312, + 265 + ], + "spans": [ + { + "bbox": [ + 94, + 250, + 263, + 265 + ], + "score": 1.0, + "content": "11 Get the maximum segmentation score:", + "type": "text" + }, + { + "bbox": [ + 263, + 251, + 307, + 263 + ], + "score": 0.92, + "content": "f ( \\hat { \\mathbf { y } } ) = g _ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 250, + 312, + 265 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true + } + ], + "index": 7.5, + "bbox_fs": [ + 100, + 206, + 474, + 241 + ] + }, + { + "type": "index", + "bbox": [ + 96, + 240, + 411, + 264 + ], + "lines": [], + "index": 9.5, + "bbox_fs": [ + 94, + 239, + 412, + 265 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 291, + 505, + 327 + ], + "lines": [ + { + "bbox": [ + 105, + 289, + 506, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 133, + 306 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 292, + 149, + 305 + ], + "score": 0.9, + "content": "s _ { i , j } ^ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 289, + 506, + 306 + ], + "score": 1.0, + "content": "is the composition score to estimate the feasibility of merging several fine-grained units", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 107, + 303, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 107, + 304, + 180, + 317 + ], + "score": 0.88, + "content": "[ x _ { i } , x _ { i + 1 } , \\cdot \\cdot \\cdot , x _ { j } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 303, + 304, + 318 + ], + "score": 1.0, + "content": "into a coarse-grained unit and", + "type": "text" + }, + { + "bbox": [ + 305, + 303, + 325, + 318 + ], + "score": 0.93, + "content": "s _ { i , j , t } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 303, + 505, + 318 + ], + "score": 1.0, + "content": "is the label score to measure how likely the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 315, + 392, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 200, + 329 + ], + "score": 1.0, + "content": "label of this segment is", + "type": "text" + }, + { + "bbox": [ + 201, + 317, + 205, + 325 + ], + "score": 0.7, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 315, + 392, + 329 + ], + "score": 1.0, + "content": ". Both scores are obtained by a scoring model.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 289, + 506, + 329 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 340, + 505, + 385 + ], + "lines": [ + { + "bbox": [ + 106, + 340, + 506, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 340, + 372, + 353 + ], + "score": 1.0, + "content": "Scoring Model. a scoring model scores all possible segments", + "type": "text" + }, + { + "bbox": [ + 372, + 340, + 400, + 352 + ], + "score": 0.92, + "content": "( i , j , t )", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 340, + 493, + 353 + ], + "score": 1.0, + "content": "for an input sentence", + "type": "text" + }, + { + "bbox": [ + 493, + 342, + 501, + 351 + ], + "score": 0.31, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 340, + 506, + 353 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 351, + 506, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 506, + 364 + ], + "score": 1.0, + "content": "Firstly, we get the representation for each fine-grained unit. Following prior works (Li et al., 2019;", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 362, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 505, + 375 + ], + "score": 1.0, + "content": "Luo et al., 2020; Yu et al., 2020), we adopt BERT (Devlin et al., 2018), a powerful pre-trained", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 373, + 361, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 361, + 386 + ], + "score": 1.0, + "content": "language model, as the sentence encoder. Specifically, we have", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 340, + 506, + 386 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 240, + 391, + 370, + 405 + ], + "lines": [ + { + "bbox": [ + 240, + 391, + 370, + 405 + ], + "spans": [ + { + "bbox": [ + 240, + 391, + 370, + 405 + ], + "score": 0.92, + "content": "[ \\mathbf { h } _ { 1 } ^ { w } , \\mathbf { h } _ { 2 } ^ { w } \\cdot \\cdot \\cdot \\mathbf { \\epsilon } , \\mathbf { h } _ { n } ^ { w } ] = \\mathrm { B E R T } ( \\mathbf { x } ) ,", + "type": "interline_equation", + "image_path": "d9e94df8f089510bd74aa3185e0dcd1b7e94b88c40f2f670c76dd9fd397c10d4.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 240, + 391, + 370, + 405 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 410, + 449, + 423 + ], + "lines": [ + { + "bbox": [ + 105, + 409, + 450, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 409, + 357, + 425 + ], + "score": 1.0, + "content": "Then, we compute the representation for a coarse-grained unit", + "type": "text" + }, + { + "bbox": [ + 357, + 411, + 437, + 423 + ], + "score": 0.91, + "content": "\\mathbf { x } _ { i , j } , 1 \\leq i \\leq j \\leq n", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 409, + 450, + 425 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 409, + 450, + 425 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 211, + 428, + 399, + 444 + ], + "lines": [ + { + "bbox": [ + 211, + 428, + 399, + 444 + ], + "spans": [ + { + "bbox": [ + 211, + 428, + 399, + 444 + ], + "score": 0.92, + "content": "\\mathbf { h } _ { i , j } ^ { p } = \\mathbf { h } _ { i } ^ { w } \\oplus \\mathbf { h } _ { j } ^ { w } \\oplus \\left( \\mathbf { h } _ { i } ^ { w } - \\mathbf { h } _ { j } ^ { w } \\right) \\oplus \\big ( \\mathbf { h } _ { i } ^ { w } \\odot \\mathbf { h } _ { j } ^ { w } \\big ) ,", + "type": "interline_equation", + "image_path": "27e2d0c5384994b44168713ea50683326c64817a294acd44ec9c0adea92468ca.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 211, + 428, + 399, + 444 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 448, + 364, + 460 + ], + "lines": [ + { + "bbox": [ + 106, + 447, + 365, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 447, + 133, + 462 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 450, + 142, + 459 + ], + "score": 0.81, + "content": "\\oplus", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 447, + 254, + 462 + ], + "score": 1.0, + "content": "is vector concatenation and", + "type": "text" + }, + { + "bbox": [ + 255, + 450, + 264, + 459 + ], + "score": 0.83, + "content": "\\odot", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 447, + 365, + 462 + ], + "score": 1.0, + "content": "is element-wise product.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21, + "bbox_fs": [ + 106, + 447, + 365, + 462 + ] + }, + { + "type": "text", + "bbox": [ + 110, + 465, + 460, + 477 + ], + "lines": [ + { + "bbox": [ + 107, + 464, + 461, + 479 + ], + "spans": [ + { + "bbox": [ + 107, + 464, + 428, + 479 + ], + "score": 1.0, + "content": "Eventually, we employ two non-linear feedforward networks to score a segment", + "type": "text" + }, + { + "bbox": [ + 428, + 465, + 456, + 478 + ], + "score": 0.92, + "content": "( i , j , t )", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 464, + 461, + 479 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22, + "bbox_fs": [ + 107, + 464, + 461, + 479 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 181, + 483, + 429, + 502 + ], + "lines": [ + { + "bbox": [ + 181, + 483, + 429, + 502 + ], + "spans": [ + { + "bbox": [ + 181, + 483, + 429, + 502 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\boldsymbol { s } _ { i , j } ^ { c } = \\left( \\mathbf { v } ^ { c } \\right) ^ { T } \\operatorname { t a n h } ( \\mathbf { W } ^ { c } \\mathbf { h } _ { i , j } ^ { p } ) , \\boldsymbol { s } _ { i , j , t } ^ { l } = \\left( \\mathbf { v } _ { t } ^ { l } \\right) ^ { T } \\operatorname { t a n h } ( \\mathbf { W } ^ { l } \\mathbf { h } _ { i , j } ^ { p } ) , } \\end{array}", + "type": "interline_equation", + "image_path": "bec80a12be79ba41c21d919bcb58d452ae9381b46291688e763333d89b2a2884.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 181, + 483, + 429, + 502 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 509, + 505, + 532 + ], + "lines": [ + { + "bbox": [ + 106, + 507, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 507, + 133, + 523 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 510, + 145, + 519 + ], + "score": 0.77, + "content": "\\mathbf { v } _ { } ^ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 507, + 150, + 523 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 150, + 509, + 167, + 520 + ], + "score": 0.53, + "content": "\\mathbf { W } ^ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 507, + 171, + 523 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 171, + 508, + 212, + 521 + ], + "score": 0.69, + "content": "\\mathbf { v } _ { t } ^ { l } , t \\in \\mathcal { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 507, + 234, + 523 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 234, + 508, + 250, + 519 + ], + "score": 0.87, + "content": "\\mathbf { W } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 507, + 505, + 523 + ], + "score": 1.0, + "content": "are all learnable parameters. Besides, the scoring model used", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 519, + 330, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 330, + 533 + ], + "score": 1.0, + "content": "here can be flexibly replaced by any regression method.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 507, + 505, + 533 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 546, + 314, + 558 + ], + "lines": [ + { + "bbox": [ + 105, + 545, + 314, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 314, + 559 + ], + "score": 1.0, + "content": "2.2 INFERENCE VIA DYNAMIC PROGRAMMING", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 566, + 448, + 579 + ], + "lines": [ + { + "bbox": [ + 106, + 566, + 450, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 566, + 450, + 581 + ], + "score": 1.0, + "content": "The prediction of the maximum scoring segmentation candidate can be formulated as", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27, + "bbox_fs": [ + 106, + 566, + 450, + 581 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 264, + 585, + 346, + 606 + ], + "lines": [ + { + "bbox": [ + 264, + 585, + 346, + 606 + ], + "spans": [ + { + "bbox": [ + 264, + 585, + 346, + 606 + ], + "score": 0.93, + "content": "{ \\hat { \\mathbf { y } } } = \\operatorname * { a r g m a x } _ { \\mathbf { y } \\in \\mathcal { Y } } f ( \\mathbf { y } ) .", + "type": "interline_equation", + "image_path": "caa4c2a21b43a8e4714ab0d3f8d55af123600d3527111674492360b846f69e31.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 264, + 585, + 346, + 606 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 613, + 504, + 647 + ], + "lines": [ + { + "bbox": [ + 105, + 613, + 505, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 239, + 626 + ], + "score": 1.0, + "content": "Because the size of search space", + "type": "text" + }, + { + "bbox": [ + 239, + 613, + 254, + 625 + ], + "score": 0.89, + "content": "| \\mathcal { V } |", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 613, + 494, + 626 + ], + "score": 1.0, + "content": "increases exponentially with respect to the sequence length", + "type": "text" + }, + { + "bbox": [ + 494, + 616, + 501, + 623 + ], + "score": 0.71, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 613, + 505, + 626 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 623, + 505, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 505, + 636 + ], + "score": 1.0, + "content": "brute-force search to solve Equation 5 is computationally infeasible. LUA uses DP to address this", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 635, + 383, + 647 + ], + "spans": [ + { + "bbox": [ + 106, + 635, + 383, + 647 + ], + "score": 1.0, + "content": "issue, which is facilitated by the decomposable nature of Equation 1.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 613, + 505, + 647 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 651, + 505, + 686 + ], + "lines": [ + { + "bbox": [ + 106, + 652, + 504, + 664 + ], + "spans": [ + { + "bbox": [ + 106, + 652, + 504, + 664 + ], + "score": 1.0, + "content": "DP is a well-known optimization method which solves a complicated problem by breaking it down", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 662, + 504, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 504, + 675 + ], + "score": 1.0, + "content": "into simpler sub-problems in a recursive manner. The relation between the value of the larger prob-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 674, + 388, + 686 + ], + "spans": [ + { + "bbox": [ + 106, + 674, + 388, + 686 + ], + "score": 1.0, + "content": "lem and the values of its sub-problems is called the Bellman equation.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 652, + 504, + 686 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 504, + 734 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 487, + 712 + ], + "score": 1.0, + "content": "Sub-problem. In the context of LUA, the sub-problem of segmenting an input unit sequence", + "type": "text" + }, + { + "bbox": [ + 487, + 701, + 495, + 709 + ], + "score": 0.48, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 201, + 723 + ], + "score": 1.0, + "content": "segmenting its prefixes", + "type": "text" + }, + { + "bbox": [ + 202, + 710, + 268, + 722 + ], + "score": 0.91, + "content": "\\mathbf { x } _ { 1 , i } , 1 \\leq i \\leq n", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 709, + 317, + 723 + ], + "score": 1.0, + "content": ". We define", + "type": "text" + }, + { + "bbox": [ + 318, + 711, + 327, + 721 + ], + "score": 0.83, + "content": "g _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "as the maximum segmentation score of the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 719, + 353, + 735 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 132, + 735 + ], + "score": 1.0, + "content": "prefix", + "type": "text" + }, + { + "bbox": [ + 132, + 722, + 149, + 733 + ], + "score": 0.89, + "content": "\\mathbf { x } _ { 1 , i }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 719, + 268, + 735 + ], + "score": 1.0, + "content": ". Under this scheme, we have", + "type": "text" + }, + { + "bbox": [ + 268, + 721, + 348, + 733 + ], + "score": 0.9, + "content": "\\textstyle \\operatorname* { m a x } _ { \\mathbf { y } \\in { \\mathcal { y } } } f ( \\mathbf { y } ) = g _ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 719, + 353, + 735 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 698, + 506, + 735 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 503, + 106 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 405, + 96 + ], + "score": 1.0, + "content": "The Bellman Equation. The relatinship between segmenting a sequence", + "type": "text" + }, + { + "bbox": [ + 406, + 83, + 448, + 94 + ], + "score": 0.9, + "content": "\\mathbf { x } _ { 1 , i } , i > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "and segment-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 436, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 167, + 107 + ], + "score": 1.0, + "content": "ing its prefixes", + "type": "text" + }, + { + "bbox": [ + 168, + 94, + 255, + 106 + ], + "score": 0.9, + "content": "x _ { 1 , i - j } , 1 \\leq j \\leq i - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 93, + 369, + 107 + ], + "score": 1.0, + "content": "is built by the last segments", + "type": "text" + }, + { + "bbox": [ + 370, + 94, + 431, + 106 + ], + "score": 0.91, + "content": "( i - j + 1 , i , t )", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 93, + 436, + 107 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 199, + 109, + 412, + 131 + ], + "lines": [ + { + "bbox": [ + 199, + 109, + 412, + 131 + ], + "spans": [ + { + "bbox": [ + 199, + 109, + 412, + 131 + ], + "score": 0.9, + "content": "g _ { i } = \\operatorname* { m a x } _ { 1 \\leq j \\leq i - 1 } \\big ( g _ { i - j } + \\big ( s _ { i - j + 1 , i } ^ { c } + \\operatorname* { m a x } _ { t \\in \\mathcal { L } } s _ { i - j + 1 , i , t } ^ { l } \\big ) \\big ) .", + "type": "interline_equation", + "image_path": "4ea631d18eb1fb1f52c566c91fa1d6d6420b272c87e744cc707644d49966264d.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 199, + 109, + 412, + 131 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 134, + 507, + 158 + ], + "lines": [ + { + "bbox": [ + 105, + 134, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 105, + 134, + 505, + 147 + ], + "score": 1.0, + "content": "In practice, to reduce the time complexity of above equation, the last term is computed beforehand", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 144, + 420, + 161 + ], + "spans": [ + { + "bbox": [ + 104, + 144, + 118, + 161 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 118, + 145, + 263, + 159 + ], + "score": 0.84, + "content": "\\begin{array} { r } { \\dot { s } _ { i , j } ^ { L } = \\operatorname* { m a x } _ { t \\in \\mathcal { L } } s _ { i , j , t } ^ { l } , 1 \\leq i \\leq j \\dot { \\leq } n } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 144, + 420, + 161 + ], + "score": 1.0, + "content": ". Hence, Equation 6 is reformulated as", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "interline_equation", + "bbox": [ + 212, + 163, + 399, + 184 + ], + "lines": [ + { + "bbox": [ + 212, + 163, + 399, + 184 + ], + "spans": [ + { + "bbox": [ + 212, + 163, + 399, + 184 + ], + "score": 0.93, + "content": "g _ { i } = \\operatorname* { m a x } _ { 1 \\leq j \\leq i - 1 } \\big ( g _ { i - j } + ( s _ { i - j + 1 , i } ^ { c } + s _ { i - j + 1 , i } ^ { L } ) \\big ) .", + "type": "interline_equation", + "image_path": "34d8e85a05ba47dd37e6f441f4752efb18981451822aae6ba358f4e3517ee83e.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 212, + 163, + 399, + 184 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 189, + 432, + 203 + ], + "lines": [ + { + "bbox": [ + 105, + 185, + 428, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 185, + 231, + 206 + ], + "score": 1.0, + "content": "The base case is the first token", + "type": "text" + }, + { + "bbox": [ + 231, + 189, + 291, + 202 + ], + "score": 0.93, + "content": "\\mathbf { x } _ { 1 , 1 } = [ [ \\mathrm { S O S } ] ]", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 185, + 361, + 206 + ], + "score": 1.0, + "content": ". We get its score", + "type": "text" + }, + { + "bbox": [ + 362, + 191, + 372, + 201 + ], + "score": 0.83, + "content": "g _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 185, + 384, + 206 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 385, + 189, + 428, + 203 + ], + "score": 0.92, + "content": "s _ { 1 , 1 } ^ { c } + s _ { 1 , 1 } ^ { L }", + "type": "inline_equation" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 206, + 505, + 263 + ], + "lines": [ + { + "bbox": [ + 106, + 207, + 505, + 219 + ], + "spans": [ + { + "bbox": [ + 106, + 207, + 505, + 219 + ], + "score": 1.0, + "content": "Algorithm 1 shows how DP is applied in inference. Firstly, we set two matrices and two vectors to", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 218, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 106, + 218, + 505, + 230 + ], + "score": 1.0, + "content": "store the solutions to the sub-problems (1-st to 2-nd lines). Secondly, we get the maximum label", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 229, + 504, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 229, + 428, + 241 + ], + "score": 1.0, + "content": "scores for all the spans (3-rd to 5-th lines). Then, we initialize the trivial case", + "type": "text" + }, + { + "bbox": [ + 428, + 230, + 439, + 240 + ], + "score": 0.84, + "content": "g _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 229, + 504, + 241 + ], + "score": 1.0, + "content": "and recursively", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 237, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 237, + 254 + ], + "score": 1.0, + "content": "calculate the values for prefixes", + "type": "text" + }, + { + "bbox": [ + 238, + 240, + 284, + 252 + ], + "score": 0.9, + "content": "\\mathbf { x } _ { 1 , i } , i > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 237, + 505, + 254 + ], + "score": 1.0, + "content": "(6-th to 9-th lines). Finally, we get the predicted seg-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 251, + 320, + 263 + ], + "spans": [ + { + "bbox": [ + 106, + 251, + 148, + 263 + ], + "score": 1.0, + "content": "mentation", + "type": "text" + }, + { + "bbox": [ + 149, + 251, + 156, + 262 + ], + "score": 0.84, + "content": "\\hat { \\mathbf { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 251, + 210, + 263 + ], + "score": 1.0, + "content": "and its score", + "type": "text" + }, + { + "bbox": [ + 210, + 251, + 231, + 263 + ], + "score": 0.91, + "content": "f ( \\hat { \\mathbf { y } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 251, + 320, + 263 + ], + "score": 1.0, + "content": "(10-th to 11-th lines).", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 266, + 505, + 312 + ], + "lines": [ + { + "bbox": [ + 105, + 267, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 270, + 280 + ], + "score": 1.0, + "content": "The time complexity of Algorithm 1 is", + "type": "text" + }, + { + "bbox": [ + 270, + 267, + 297, + 279 + ], + "score": 0.92, + "content": "\\mathcal { O } ( n ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 267, + 506, + 280 + ], + "score": 1.0, + "content": ". By performing the max operation of Equation 7", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 278, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 304, + 291 + ], + "score": 1.0, + "content": "in parallel on GPU, it can be optimized to only", + "type": "text" + }, + { + "bbox": [ + 304, + 279, + 327, + 290 + ], + "score": 0.91, + "content": "{ \\mathcal { O } } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 278, + 505, + 291 + ], + "score": 1.0, + "content": ", which is highly efficient. Besides, DP, as", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 289, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 505, + 302 + ], + "score": 1.0, + "content": "the backbone of the proposed model, is non-parametric. The trainable parameters only exist in the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 300, + 389, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 389, + 313 + ], + "score": 1.0, + "content": "scoring model part. These show LUA is a very light-weight algorithm.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5 + }, + { + "type": "title", + "bbox": [ + 107, + 325, + 226, + 336 + ], + "lines": [ + { + "bbox": [ + 106, + 325, + 227, + 338 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 227, + 338 + ], + "score": 1.0, + "content": "2.3 TRAINING CRITERION", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 345, + 503, + 368 + ], + "lines": [ + { + "bbox": [ + 106, + 344, + 504, + 359 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 496, + 359 + ], + "score": 1.0, + "content": "We adopt max-margin penalty as the loss function for training. Given the predicted segmentation", + "type": "text" + }, + { + "bbox": [ + 496, + 346, + 504, + 357 + ], + "score": 0.7, + "content": "\\hat { \\mathbf { y } }", + "type": "inline_equation" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 357, + 297, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 245, + 370 + ], + "score": 1.0, + "content": "and the ground truth segmentation", + "type": "text" + }, + { + "bbox": [ + 245, + 357, + 257, + 368 + ], + "score": 0.88, + "content": "\\mathbf { y } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 357, + 297, + 370 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "interline_equation", + "bbox": [ + 235, + 372, + 376, + 387 + ], + "lines": [ + { + "bbox": [ + 235, + 372, + 376, + 387 + ], + "spans": [ + { + "bbox": [ + 235, + 372, + 376, + 387 + ], + "score": 0.92, + "content": "\\mathcal { T } = \\operatorname* { m a x } \\big ( 0 , 1 - f ( \\mathbf { y } ^ { * } ) + f ( \\hat { \\mathbf { y } } ) \\big ) .", + "type": "interline_equation", + "image_path": "457d011c2cb217443885823246c257c541dd779d0f588fa29aaf2bef5c6a620f.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 235, + 372, + 376, + 387 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "title", + "bbox": [ + 108, + 401, + 238, + 414 + ], + "lines": [ + { + "bbox": [ + 105, + 400, + 239, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 239, + 416 + ], + "score": 1.0, + "content": "3 EXTENSIONS OF LUA", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 425, + 413, + 438 + ], + "lines": [ + { + "bbox": [ + 106, + 425, + 414, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 425, + 414, + 439 + ], + "score": 1.0, + "content": "We propose two extensions of LUA for generalizing it to different scenarios.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 105, + 448, + 504, + 472 + ], + "lines": [ + { + "bbox": [ + 106, + 448, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 505, + 462 + ], + "score": 1.0, + "content": "Unlabeled Segmentation. In some tasks (e.g., Chinese word segmentation), the segments are", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 459, + 433, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 433, + 473 + ], + "score": 1.0, + "content": "unlabeled. Under this scheme, the Equation 1 and Equation 7 are reformulated as", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "interline_equation", + "bbox": [ + 196, + 476, + 414, + 505 + ], + "lines": [ + { + "bbox": [ + 196, + 476, + 414, + 505 + ], + "spans": [ + { + "bbox": [ + 196, + 476, + 414, + 505 + ], + "score": 0.93, + "content": "f ( \\mathbf { y } ) = \\sum _ { ( i , j ) \\in \\mathbf { y } } s _ { i , j } ^ { c } , ~ g _ { i } = \\operatorname* { m a x } _ { 1 \\leq j \\leq i - 1 } ( g _ { i - j } + s _ { i - j + 1 , i } ^ { c } ) .", + "type": "interline_equation", + "image_path": "e031642fd8af3f46620e1ea6c4a50cf093b131fe03f0a02674e2595726f5da4a.jpg" + } + ] + } + ], + "index": 24.5, + "virtual_lines": [ + { + "bbox": [ + 196, + 476, + 414, + 490.5 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 196, + 490.5, + 414, + 505.0 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 515, + 505, + 538 + ], + "lines": [ + { + "bbox": [ + 106, + 514, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 505, + 528 + ], + "score": 1.0, + "content": "Capturing Label Correlations. In some tasks (e.g., syntactic chunking), the labels of segments", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 526, + 414, + 539 + ], + "spans": [ + { + "bbox": [ + 106, + 526, + 380, + 539 + ], + "score": 1.0, + "content": "are strongly correlated. To incorporate this information, we redefine", + "type": "text" + }, + { + "bbox": [ + 380, + 526, + 401, + 538 + ], + "score": 0.92, + "content": "f ( \\mathbf { y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 526, + 414, + 539 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "interline_equation", + "bbox": [ + 172, + 541, + 439, + 571 + ], + "lines": [ + { + "bbox": [ + 172, + 541, + 439, + 571 + ], + "spans": [ + { + "bbox": [ + 172, + 541, + 439, + 571 + ], + "score": 0.94, + "content": "f ( { \\bf { y } } ) = \\sum _ { 1 \\le k \\le m } \\left( s _ { i _ { k } , j _ { k } } ^ { c } + s _ { i _ { k } , j _ { k } , t _ { k } } ^ { l } \\right) + \\sum _ { 1 \\le k \\le m } s _ { t _ { k - q + 1 } , t _ { k - q + 2 } , \\cdots , t _ { k } } ^ { d } .", + "type": "interline_equation", + "image_path": "e0811db3c3ddd656234cd29dda83006120b3b4bd9af090d84908e46367e14c5f.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 172, + 541, + 439, + 551.0 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 172, + 551.0, + 439, + 561.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 172, + 561.0, + 439, + 571.0 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 576, + 505, + 613 + ], + "lines": [ + { + "bbox": [ + 100, + 568, + 501, + 602 + ], + "spans": [ + { + "bbox": [ + 100, + 568, + 132, + 602 + ], + "score": 1.0, + "content": "Score In pra", + "type": "text" + }, + { + "bbox": [ + 132, + 575, + 210, + 590 + ], + "score": 0.91, + "content": "s _ { t _ { k - q + 1 } , t _ { k - q + 2 } , \\cdots , t _ { k } } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 568, + 367, + 602 + ], + "score": 1.0, + "content": "models the label dependencies among balances the efficiency and the effecti", + "type": "text" + }, + { + "bbox": [ + 368, + 579, + 374, + 588 + ], + "score": 0.8, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 568, + 462, + 602 + ], + "score": 1.0, + "content": "successive segments, ness well, and thus pa", + "type": "text" + }, + { + "bbox": [ + 462, + 579, + 501, + 589 + ], + "score": 0.89, + "content": "_ { \\mathbf { y } _ { k - q + 1 , k } }", + "type": "inline_equation" + } + ], + "index": 31 + }, + { + "bbox": [ + 187, + 590, + 212, + 600 + ], + "spans": [ + { + "bbox": [ + 187, + 590, + 212, + 600 + ], + "score": 0.86, + "content": "q = 2", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 599, + 313, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 181, + 614 + ], + "score": 1.0, + "content": "a learnable matrix", + "type": "text" + }, + { + "bbox": [ + 181, + 600, + 245, + 611 + ], + "score": 0.91, + "content": "\\mathbf { W } ^ { d } \\in \\mathbb { R } ^ { | \\nu | \\times | \\nu | }", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 599, + 313, + 614 + ], + "score": 1.0, + "content": "to implement it.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 618, + 369, + 630 + ], + "lines": [ + { + "bbox": [ + 105, + 616, + 371, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 371, + 632 + ], + "score": 1.0, + "content": "The corresponding Bellman equation to above scoring function is", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "interline_equation", + "bbox": [ + 174, + 633, + 436, + 654 + ], + "lines": [ + { + "bbox": [ + 174, + 633, + 436, + 654 + ], + "spans": [ + { + "bbox": [ + 174, + 633, + 436, + 654 + ], + "score": 0.92, + "content": "g _ { i , t } = \\underset { 1 \\leq j \\leq i - 1 } { \\operatorname* { m a x } } \\big ( \\underset { t ^ { \\prime } \\in \\mathcal { L } } { \\operatorname* { m a x } } ( g _ { i - j , t ^ { \\prime } } + s _ { t ^ { \\prime } , t } ^ { d } ) + ( s _ { i - j + 1 , i } ^ { c } + s _ { i - j + 1 , i , t } ^ { l } ) \\big ) ,", + "type": "interline_equation", + "image_path": "9cae8d71dd0da00eaa135294c9af6a6cbb256d6c4f0214b771b20ea37e723112.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 174, + 633, + 436, + 654 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 658, + 505, + 705 + ], + "lines": [ + { + "bbox": [ + 105, + 658, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 133, + 670 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 660, + 149, + 671 + ], + "score": 0.87, + "content": "g _ { i , t }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 658, + 409, + 670 + ], + "score": 1.0, + "content": "is the maximum score of labeling the last segment of the prefix", + "type": "text" + }, + { + "bbox": [ + 409, + 660, + 426, + 671 + ], + "score": 0.88, + "content": "\\mathbf { x } _ { 1 , i }", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 658, + 448, + 670 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 449, + 660, + 453, + 668 + ], + "score": 0.7, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 658, + 505, + 670 + ], + "score": 1.0, + "content": ". For initial-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 670, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 218, + 685 + ], + "score": 1.0, + "content": "ization, we set the value of", + "type": "text" + }, + { + "bbox": [ + 218, + 670, + 236, + 685 + ], + "score": 0.92, + "content": "g _ { . 1 , \\mathrm { O } } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 670, + 327, + 685 + ], + "score": 1.0, + "content": "as 0 and the others as", + "type": "text" + }, + { + "bbox": [ + 328, + 672, + 347, + 681 + ], + "score": 0.85, + "content": "- \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 670, + 506, + 685 + ], + "score": 1.0, + "content": ". By performing the inner loops of two", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 681, + 506, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 400, + 695 + ], + "score": 1.0, + "content": "max operations in parallel, the practical time complexity for computing", + "type": "text" + }, + { + "bbox": [ + 401, + 682, + 494, + 694 + ], + "score": 0.91, + "content": "g _ { i , t } , 1 \\leq i \\leq n , t \\in \\mathcal { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 681, + 506, + 695 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 691, + 430, + 708 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 125, + 708 + ], + "score": 1.0, + "content": "also", + "type": "text" + }, + { + "bbox": [ + 126, + 693, + 148, + 705 + ], + "score": 0.92, + "content": "{ \\mathcal { O } } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 691, + 293, + 708 + ], + "score": 1.0, + "content": ". Ultimately, the segmentation score", + "type": "text" + }, + { + "bbox": [ + 294, + 693, + 314, + 705 + ], + "score": 0.92, + "content": "f ( \\hat { \\mathbf { y } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 691, + 374, + 708 + ], + "score": 1.0, + "content": "is obtained by", + "type": "text" + }, + { + "bbox": [ + 374, + 694, + 425, + 705 + ], + "score": 0.84, + "content": "\\operatorname* { m a x } _ { t \\in \\mathcal { L } } g _ { n , t }", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 691, + 430, + 708 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "This extension further improves the results on syntactic chunking and Chinese POS tagging, as both", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 720, + 368, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 368, + 733 + ], + "score": 1.0, + "content": "tasks have rich sequential features among the labels of segments.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 307, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 307, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 307, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 759 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "4", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 503, + 106 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 405, + 96 + ], + "score": 1.0, + "content": "The Bellman Equation. The relatinship between segmenting a sequence", + "type": "text" + }, + { + "bbox": [ + 406, + 83, + 448, + 94 + ], + "score": 0.9, + "content": "\\mathbf { x } _ { 1 , i } , i > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "and segment-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 436, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 167, + 107 + ], + "score": 1.0, + "content": "ing its prefixes", + "type": "text" + }, + { + "bbox": [ + 168, + 94, + 255, + 106 + ], + "score": 0.9, + "content": "x _ { 1 , i - j } , 1 \\leq j \\leq i - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 93, + 369, + 107 + ], + "score": 1.0, + "content": "is built by the last segments", + "type": "text" + }, + { + "bbox": [ + 370, + 94, + 431, + 106 + ], + "score": 0.91, + "content": "( i - j + 1 , i , t )", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 93, + 436, + 107 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 505, + 107 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 199, + 109, + 412, + 131 + ], + "lines": [ + { + "bbox": [ + 199, + 109, + 412, + 131 + ], + "spans": [ + { + "bbox": [ + 199, + 109, + 412, + 131 + ], + "score": 0.9, + "content": "g _ { i } = \\operatorname* { m a x } _ { 1 \\leq j \\leq i - 1 } \\big ( g _ { i - j } + \\big ( s _ { i - j + 1 , i } ^ { c } + \\operatorname* { m a x } _ { t \\in \\mathcal { L } } s _ { i - j + 1 , i , t } ^ { l } \\big ) \\big ) .", + "type": "interline_equation", + "image_path": "4ea631d18eb1fb1f52c566c91fa1d6d6420b272c87e744cc707644d49966264d.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 199, + 109, + 412, + 131 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 134, + 507, + 158 + ], + "lines": [ + { + "bbox": [ + 105, + 134, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 105, + 134, + 505, + 147 + ], + "score": 1.0, + "content": "In practice, to reduce the time complexity of above equation, the last term is computed beforehand", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 144, + 420, + 161 + ], + "spans": [ + { + "bbox": [ + 104, + 144, + 118, + 161 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 118, + 145, + 263, + 159 + ], + "score": 0.84, + "content": "\\begin{array} { r } { \\dot { s } _ { i , j } ^ { L } = \\operatorname* { m a x } _ { t \\in \\mathcal { L } } s _ { i , j , t } ^ { l } , 1 \\leq i \\leq j \\dot { \\leq } n } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 144, + 420, + 161 + ], + "score": 1.0, + "content": ". Hence, Equation 6 is reformulated as", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 104, + 134, + 505, + 161 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 212, + 163, + 399, + 184 + ], + "lines": [ + { + "bbox": [ + 212, + 163, + 399, + 184 + ], + "spans": [ + { + "bbox": [ + 212, + 163, + 399, + 184 + ], + "score": 0.93, + "content": "g _ { i } = \\operatorname* { m a x } _ { 1 \\leq j \\leq i - 1 } \\big ( g _ { i - j } + ( s _ { i - j + 1 , i } ^ { c } + s _ { i - j + 1 , i } ^ { L } ) \\big ) .", + "type": "interline_equation", + "image_path": "34d8e85a05ba47dd37e6f441f4752efb18981451822aae6ba358f4e3517ee83e.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 212, + 163, + 399, + 184 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 189, + 432, + 203 + ], + "lines": [ + { + "bbox": [ + 105, + 185, + 428, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 185, + 231, + 206 + ], + "score": 1.0, + "content": "The base case is the first token", + "type": "text" + }, + { + "bbox": [ + 231, + 189, + 291, + 202 + ], + "score": 0.93, + "content": "\\mathbf { x } _ { 1 , 1 } = [ [ \\mathrm { S O S } ] ]", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 185, + 361, + 206 + ], + "score": 1.0, + "content": ". We get its score", + "type": "text" + }, + { + "bbox": [ + 362, + 191, + 372, + 201 + ], + "score": 0.83, + "content": "g _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 185, + 384, + 206 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 385, + 189, + 428, + 203 + ], + "score": 0.92, + "content": "s _ { 1 , 1 } ^ { c } + s _ { 1 , 1 } ^ { L }", + "type": "inline_equation" + } + ], + "index": 6 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 185, + 428, + 206 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 206, + 505, + 263 + ], + "lines": [ + { + "bbox": [ + 106, + 207, + 505, + 219 + ], + "spans": [ + { + "bbox": [ + 106, + 207, + 505, + 219 + ], + "score": 1.0, + "content": "Algorithm 1 shows how DP is applied in inference. Firstly, we set two matrices and two vectors to", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 218, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 106, + 218, + 505, + 230 + ], + "score": 1.0, + "content": "store the solutions to the sub-problems (1-st to 2-nd lines). Secondly, we get the maximum label", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 229, + 504, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 229, + 428, + 241 + ], + "score": 1.0, + "content": "scores for all the spans (3-rd to 5-th lines). Then, we initialize the trivial case", + "type": "text" + }, + { + "bbox": [ + 428, + 230, + 439, + 240 + ], + "score": 0.84, + "content": "g _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 229, + 504, + 241 + ], + "score": 1.0, + "content": "and recursively", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 237, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 237, + 254 + ], + "score": 1.0, + "content": "calculate the values for prefixes", + "type": "text" + }, + { + "bbox": [ + 238, + 240, + 284, + 252 + ], + "score": 0.9, + "content": "\\mathbf { x } _ { 1 , i } , i > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 237, + 505, + 254 + ], + "score": 1.0, + "content": "(6-th to 9-th lines). Finally, we get the predicted seg-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 251, + 320, + 263 + ], + "spans": [ + { + "bbox": [ + 106, + 251, + 148, + 263 + ], + "score": 1.0, + "content": "mentation", + "type": "text" + }, + { + "bbox": [ + 149, + 251, + 156, + 262 + ], + "score": 0.84, + "content": "\\hat { \\mathbf { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 251, + 210, + 263 + ], + "score": 1.0, + "content": "and its score", + "type": "text" + }, + { + "bbox": [ + 210, + 251, + 231, + 263 + ], + "score": 0.91, + "content": "f ( \\hat { \\mathbf { y } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 251, + 320, + 263 + ], + "score": 1.0, + "content": "(10-th to 11-th lines).", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 207, + 505, + 263 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 266, + 505, + 312 + ], + "lines": [ + { + "bbox": [ + 105, + 267, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 270, + 280 + ], + "score": 1.0, + "content": "The time complexity of Algorithm 1 is", + "type": "text" + }, + { + "bbox": [ + 270, + 267, + 297, + 279 + ], + "score": 0.92, + "content": "\\mathcal { O } ( n ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 267, + 506, + 280 + ], + "score": 1.0, + "content": ". By performing the max operation of Equation 7", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 278, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 304, + 291 + ], + "score": 1.0, + "content": "in parallel on GPU, it can be optimized to only", + "type": "text" + }, + { + "bbox": [ + 304, + 279, + 327, + 290 + ], + "score": 0.91, + "content": "{ \\mathcal { O } } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 278, + 505, + 291 + ], + "score": 1.0, + "content": ", which is highly efficient. Besides, DP, as", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 289, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 505, + 302 + ], + "score": 1.0, + "content": "the backbone of the proposed model, is non-parametric. The trainable parameters only exist in the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 300, + 389, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 389, + 313 + ], + "score": 1.0, + "content": "scoring model part. These show LUA is a very light-weight algorithm.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 267, + 506, + 313 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 325, + 226, + 336 + ], + "lines": [ + { + "bbox": [ + 106, + 325, + 227, + 338 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 227, + 338 + ], + "score": 1.0, + "content": "2.3 TRAINING CRITERION", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 345, + 503, + 368 + ], + "lines": [ + { + "bbox": [ + 106, + 344, + 504, + 359 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 496, + 359 + ], + "score": 1.0, + "content": "We adopt max-margin penalty as the loss function for training. Given the predicted segmentation", + "type": "text" + }, + { + "bbox": [ + 496, + 346, + 504, + 357 + ], + "score": 0.7, + "content": "\\hat { \\mathbf { y } }", + "type": "inline_equation" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 357, + 297, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 245, + 370 + ], + "score": 1.0, + "content": "and the ground truth segmentation", + "type": "text" + }, + { + "bbox": [ + 245, + 357, + 257, + 368 + ], + "score": 0.88, + "content": "\\mathbf { y } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 357, + 297, + 370 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 106, + 344, + 504, + 370 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 235, + 372, + 376, + 387 + ], + "lines": [ + { + "bbox": [ + 235, + 372, + 376, + 387 + ], + "spans": [ + { + "bbox": [ + 235, + 372, + 376, + 387 + ], + "score": 0.92, + "content": "\\mathcal { T } = \\operatorname* { m a x } \\big ( 0 , 1 - f ( \\mathbf { y } ^ { * } ) + f ( \\hat { \\mathbf { y } } ) \\big ) .", + "type": "interline_equation", + "image_path": "457d011c2cb217443885823246c257c541dd779d0f588fa29aaf2bef5c6a620f.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 235, + 372, + 376, + 387 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "title", + "bbox": [ + 108, + 401, + 238, + 414 + ], + "lines": [ + { + "bbox": [ + 105, + 400, + 239, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 239, + 416 + ], + "score": 1.0, + "content": "3 EXTENSIONS OF LUA", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 425, + 413, + 438 + ], + "lines": [ + { + "bbox": [ + 106, + 425, + 414, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 425, + 414, + 439 + ], + "score": 1.0, + "content": "We propose two extensions of LUA for generalizing it to different scenarios.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21, + "bbox_fs": [ + 106, + 425, + 414, + 439 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 448, + 504, + 472 + ], + "lines": [ + { + "bbox": [ + 106, + 448, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 505, + 462 + ], + "score": 1.0, + "content": "Unlabeled Segmentation. In some tasks (e.g., Chinese word segmentation), the segments are", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 459, + 433, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 433, + 473 + ], + "score": 1.0, + "content": "unlabeled. Under this scheme, the Equation 1 and Equation 7 are reformulated as", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 448, + 505, + 473 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 196, + 476, + 414, + 505 + ], + "lines": [ + { + "bbox": [ + 196, + 476, + 414, + 505 + ], + "spans": [ + { + "bbox": [ + 196, + 476, + 414, + 505 + ], + "score": 0.93, + "content": "f ( \\mathbf { y } ) = \\sum _ { ( i , j ) \\in \\mathbf { y } } s _ { i , j } ^ { c } , ~ g _ { i } = \\operatorname* { m a x } _ { 1 \\leq j \\leq i - 1 } ( g _ { i - j } + s _ { i - j + 1 , i } ^ { c } ) .", + "type": "interline_equation", + "image_path": "e031642fd8af3f46620e1ea6c4a50cf093b131fe03f0a02674e2595726f5da4a.jpg" + } + ] + } + ], + "index": 24.5, + "virtual_lines": [ + { + "bbox": [ + 196, + 476, + 414, + 490.5 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 196, + 490.5, + 414, + 505.0 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 515, + 505, + 538 + ], + "lines": [ + { + "bbox": [ + 106, + 514, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 505, + 528 + ], + "score": 1.0, + "content": "Capturing Label Correlations. In some tasks (e.g., syntactic chunking), the labels of segments", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 526, + 414, + 539 + ], + "spans": [ + { + "bbox": [ + 106, + 526, + 380, + 539 + ], + "score": 1.0, + "content": "are strongly correlated. To incorporate this information, we redefine", + "type": "text" + }, + { + "bbox": [ + 380, + 526, + 401, + 538 + ], + "score": 0.92, + "content": "f ( \\mathbf { y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 526, + 414, + 539 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 106, + 514, + 505, + 539 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 172, + 541, + 439, + 571 + ], + "lines": [ + { + "bbox": [ + 172, + 541, + 439, + 571 + ], + "spans": [ + { + "bbox": [ + 172, + 541, + 439, + 571 + ], + "score": 0.94, + "content": "f ( { \\bf { y } } ) = \\sum _ { 1 \\le k \\le m } \\left( s _ { i _ { k } , j _ { k } } ^ { c } + s _ { i _ { k } , j _ { k } , t _ { k } } ^ { l } \\right) + \\sum _ { 1 \\le k \\le m } s _ { t _ { k - q + 1 } , t _ { k - q + 2 } , \\cdots , t _ { k } } ^ { d } .", + "type": "interline_equation", + "image_path": "e0811db3c3ddd656234cd29dda83006120b3b4bd9af090d84908e46367e14c5f.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 172, + 541, + 439, + 551.0 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 172, + 551.0, + 439, + 561.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 172, + 561.0, + 439, + 571.0 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "list", + "bbox": [ + 106, + 576, + 505, + 613 + ], + "lines": [ + { + "bbox": [ + 100, + 568, + 501, + 602 + ], + "spans": [ + { + "bbox": [ + 100, + 568, + 132, + 602 + ], + "score": 1.0, + "content": "Score In pra", + "type": "text" + }, + { + "bbox": [ + 132, + 575, + 210, + 590 + ], + "score": 0.91, + "content": "s _ { t _ { k - q + 1 } , t _ { k - q + 2 } , \\cdots , t _ { k } } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 568, + 367, + 602 + ], + "score": 1.0, + "content": "models the label dependencies among balances the efficiency and the effecti", + "type": "text" + }, + { + "bbox": [ + 368, + 579, + 374, + 588 + ], + "score": 0.8, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 568, + 462, + 602 + ], + "score": 1.0, + "content": "successive segments, ness well, and thus pa", + "type": "text" + }, + { + "bbox": [ + 462, + 579, + 501, + 589 + ], + "score": 0.89, + "content": "_ { \\mathbf { y } _ { k - q + 1 , k } }", + "type": "inline_equation" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 187, + 590, + 212, + 600 + ], + "spans": [ + { + "bbox": [ + 187, + 590, + 212, + 600 + ], + "score": 0.86, + "content": "q = 2", + "type": "inline_equation" + } + ], + "index": 32, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 599, + 313, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 181, + 614 + ], + "score": 1.0, + "content": "a learnable matrix", + "type": "text" + }, + { + "bbox": [ + 181, + 600, + 245, + 611 + ], + "score": 0.91, + "content": "\\mathbf { W } ^ { d } \\in \\mathbb { R } ^ { | \\nu | \\times | \\nu | }", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 599, + 313, + 614 + ], + "score": 1.0, + "content": "to implement it.", + "type": "text" + } + ], + "index": 33, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 32, + "bbox_fs": [ + 100, + 568, + 501, + 614 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 618, + 369, + 630 + ], + "lines": [ + { + "bbox": [ + 105, + 616, + 371, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 371, + 632 + ], + "score": 1.0, + "content": "The corresponding Bellman equation to above scoring function is", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 616, + 371, + 632 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 174, + 633, + 436, + 654 + ], + "lines": [ + { + "bbox": [ + 174, + 633, + 436, + 654 + ], + "spans": [ + { + "bbox": [ + 174, + 633, + 436, + 654 + ], + "score": 0.92, + "content": "g _ { i , t } = \\underset { 1 \\leq j \\leq i - 1 } { \\operatorname* { m a x } } \\big ( \\underset { t ^ { \\prime } \\in \\mathcal { L } } { \\operatorname* { m a x } } ( g _ { i - j , t ^ { \\prime } } + s _ { t ^ { \\prime } , t } ^ { d } ) + ( s _ { i - j + 1 , i } ^ { c } + s _ { i - j + 1 , i , t } ^ { l } ) \\big ) ,", + "type": "interline_equation", + "image_path": "9cae8d71dd0da00eaa135294c9af6a6cbb256d6c4f0214b771b20ea37e723112.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 174, + 633, + 436, + 654 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 658, + 505, + 705 + ], + "lines": [ + { + "bbox": [ + 105, + 658, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 133, + 670 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 660, + 149, + 671 + ], + "score": 0.87, + "content": "g _ { i , t }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 658, + 409, + 670 + ], + "score": 1.0, + "content": "is the maximum score of labeling the last segment of the prefix", + "type": "text" + }, + { + "bbox": [ + 409, + 660, + 426, + 671 + ], + "score": 0.88, + "content": "\\mathbf { x } _ { 1 , i }", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 658, + 448, + 670 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 449, + 660, + 453, + 668 + ], + "score": 0.7, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 658, + 505, + 670 + ], + "score": 1.0, + "content": ". For initial-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 670, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 218, + 685 + ], + "score": 1.0, + "content": "ization, we set the value of", + "type": "text" + }, + { + "bbox": [ + 218, + 670, + 236, + 685 + ], + "score": 0.92, + "content": "g _ { . 1 , \\mathrm { O } } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 670, + 327, + 685 + ], + "score": 1.0, + "content": "as 0 and the others as", + "type": "text" + }, + { + "bbox": [ + 328, + 672, + 347, + 681 + ], + "score": 0.85, + "content": "- \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 670, + 506, + 685 + ], + "score": 1.0, + "content": ". By performing the inner loops of two", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 681, + 506, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 400, + 695 + ], + "score": 1.0, + "content": "max operations in parallel, the practical time complexity for computing", + "type": "text" + }, + { + "bbox": [ + 401, + 682, + 494, + 694 + ], + "score": 0.91, + "content": "g _ { i , t } , 1 \\leq i \\leq n , t \\in \\mathcal { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 681, + 506, + 695 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 691, + 430, + 708 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 125, + 708 + ], + "score": 1.0, + "content": "also", + "type": "text" + }, + { + "bbox": [ + 126, + 693, + 148, + 705 + ], + "score": 0.92, + "content": "{ \\mathcal { O } } ( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 691, + 293, + 708 + ], + "score": 1.0, + "content": ". Ultimately, the segmentation score", + "type": "text" + }, + { + "bbox": [ + 294, + 693, + 314, + 705 + ], + "score": 0.92, + "content": "f ( \\hat { \\mathbf { y } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 691, + 374, + 708 + ], + "score": 1.0, + "content": "is obtained by", + "type": "text" + }, + { + "bbox": [ + 374, + 694, + 425, + 705 + ], + "score": 0.84, + "content": "\\operatorname* { m a x } _ { t \\in \\mathcal { L } } g _ { n , t }", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 691, + 430, + 708 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 658, + 506, + 708 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "This extension further improves the results on syntactic chunking and Chinese POS tagging, as both", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 720, + 368, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 368, + 733 + ], + "score": 1.0, + "content": "tasks have rich sequential features among the labels of segments.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 709, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 123, + 80, + 488, + 154 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 123, + 80, + 488, + 154 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 123, + 80, + 488, + 154 + ], + "spans": [ + { + "bbox": [ + 123, + 80, + 488, + 154 + ], + "score": 0.981, + "html": "
ModelASMSRCITYUPKUCTB6
Rich Pretraining(Yang et al.,2017)95.797.596.996.396.2
Bi-LSTM(Ma et al.,2018)96.298.197.296.196.7
Multi-Criteria_Learning +_BERT_(Huang etal., 2019)96.697.997.696.697.6
BERT (Meng et al.,2019)96.598.197.696.5=
Glyce + BERT (Meng et al.,2019)96.798.397.996.7-
Unlabeled LUA96.9498.2798.2196.8898.13
", + "type": "table", + "image_path": "01ef1500ea87c73cf80341c505cfc841fc0043a8912d34c933cff91bf688af24.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 123, + 80, + 488, + 104.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 123, + 104.66666666666667, + 488, + 129.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 123, + 129.33333333333334, + 488, + 154.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 182, + 162, + 424, + 173 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 184, + 160, + 426, + 176 + ], + "spans": [ + { + "bbox": [ + 184, + 160, + 426, + 176 + ], + "score": 1.0, + "content": "Table 1: Experiment results on Chinese word segmentation.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "table", + "bbox": [ + 142, + 182, + 469, + 276 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 142, + 182, + 469, + 276 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 142, + 182, + 469, + 276 + ], + "spans": [ + { + "bbox": [ + 142, + 182, + 469, + 276 + ], + "score": 0.981, + "html": "
ModelCTB5CTB6CTB9UD1
Bi-RNN+ CRF (Single) (Shao et al., 2017) Bi-RNN + CRF (Ensemble) (Shao et al.,2017)94.0790.8191.8989.41
Lattice-LSTM(Meng et al.,2019)94.38-92.3489.75
Glyce + Lattice-LSTM (Meng et al., 2019)95.1491.4392.1390.09
BERT (Meng et al.,2019)95.6191.9292.3890.87
Glyce +BERT (Meng et al., 2019)96.0694.7792.2994.79
96.6195.4193.1596.14
This WorkLUA96.7995.3993.2296.01
LUA w/Label Correlations97.9696.6393.9597.08
", + "type": "table", + "image_path": "81b0f9609d55192d669a0737e0bf384714999e6f84337f7f6ad042fe99b86ced.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 142, + 182, + 469, + 213.33333333333334 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 142, + 213.33333333333334, + 469, + 244.66666666666669 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 142, + 244.66666666666669, + 469, + 276.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 158, + 284, + 451, + 296 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 157, + 281, + 453, + 299 + ], + "spans": [ + { + "bbox": [ + 157, + 281, + 453, + 299 + ], + "score": 1.0, + "content": "Table 2: Experiment results on the four datasets of Chinese POS tagging.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + } + ], + "index": 6.0 + }, + { + "type": "title", + "bbox": [ + 108, + 313, + 201, + 326 + ], + "lines": [ + { + "bbox": [ + 104, + 312, + 202, + 328 + ], + "spans": [ + { + "bbox": [ + 104, + 312, + 202, + 328 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 337, + 505, + 393 + ], + "lines": [ + { + "bbox": [ + 106, + 336, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 505, + 351 + ], + "score": 1.0, + "content": "We have conducted extensive studies on 5 tasks, including Chinese word segmentation, Chinese", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 348, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 505, + 362 + ], + "score": 1.0, + "content": "POS tagging, syntactic chunking, NER, and slot filling, across 15 datasets. Firstly, Our models have", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 360, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 505, + 372 + ], + "score": 1.0, + "content": "achieved new state-of-the-art performances on 13 of them. Secondly, the results demonstrate that", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 370, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 506, + 384 + ], + "score": 1.0, + "content": "the F1 score of identifying long-length segments has been notably improved. Lastly, we show that", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 381, + 358, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 381, + 358, + 395 + ], + "score": 1.0, + "content": "LUA is a very efficient algorithm concerning the running time.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11 + }, + { + "type": "title", + "bbox": [ + 107, + 406, + 174, + 417 + ], + "lines": [ + { + "bbox": [ + 105, + 405, + 176, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 176, + 419 + ], + "score": 1.0, + "content": "4.1 SETTINGS", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 426, + 505, + 493 + ], + "lines": [ + { + "bbox": [ + 105, + 426, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 505, + 440 + ], + "score": 1.0, + "content": "We use the same configurations for all 15 datasets. L2 regularization and dropout ratio are respec-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 436, + 506, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 155, + 451 + ], + "score": 1.0, + "content": "tively set as", + "type": "text" + }, + { + "bbox": [ + 155, + 437, + 194, + 448 + ], + "score": 0.92, + "content": "1 \\times 1 0 ^ { - 6 }", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 436, + 506, + 451 + ], + "score": 1.0, + "content": "and 0.2 for reducing overfit. We use Adam (Kingma & Ba, 2014) to optimize", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 448, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 506, + 462 + ], + "score": 1.0, + "content": "our model. Following prior works, BERTBASE is adopted as the sentence encoder. We use uncased", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 459, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 506, + 473 + ], + "score": 1.0, + "content": "BERTBASE for slot filling, Chinese BERTBASE for Chinese tasks (e.g., Chinese POS tagging), and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 471, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 505, + 483 + ], + "score": 1.0, + "content": "cased BERTBASE for others (e.g., syntactic chunking). In addition, the improvements of our model", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 482, + 380, + 494 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 292, + 494 + ], + "score": 1.0, + "content": "over baselines are statistically significant with", + "type": "text" + }, + { + "bbox": [ + 292, + 482, + 330, + 493 + ], + "score": 0.9, + "content": "p < 0 . 0 5", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 482, + 380, + 494 + ], + "score": 1.0, + "content": "under t-test.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 17.5 + }, + { + "type": "title", + "bbox": [ + 108, + 506, + 271, + 518 + ], + "lines": [ + { + "bbox": [ + 105, + 505, + 273, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 273, + 519 + ], + "score": 1.0, + "content": "4.2 CHINESE WORD SEGMENTATION", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 527, + 505, + 604 + ], + "lines": [ + { + "bbox": [ + 105, + 527, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 505, + 541 + ], + "score": 1.0, + "content": "Chinese word segmentation splits a Chinese character sequence into a sequence of Chinese words.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 536, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 505, + 551 + ], + "score": 1.0, + "content": "We use SIGHAN 2005 bake-off (Emerson, 2005) and Chinese Treebank 6.0 (CTB6) (Xue et al.,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 549, + 505, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 505, + 561 + ], + "score": 1.0, + "content": "2005). SIGHAN 2005 back-off consists of 5 datasets, namely AS, MSR, CITYU, and PKU. Fol-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 560, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 288, + 572 + ], + "score": 1.0, + "content": "lowing Ma et al. (2018), we randomly select", + "type": "text" + }, + { + "bbox": [ + 288, + 560, + 308, + 570 + ], + "score": 0.88, + "content": "1 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 560, + 505, + 572 + ], + "score": 1.0, + "content": "training data as development set. We convert all", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 570, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 505, + 583 + ], + "score": 1.0, + "content": "digits, punctuation, and Latin letters to half-width for handling full/half-width mismatch between", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 582, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 505, + 594 + ], + "score": 1.0, + "content": "training and test set. We also convert AS and CITYU to simplified Chinese. For CTB6, we follow", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 593, + 393, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 393, + 605 + ], + "score": 1.0, + "content": "the same format and partition as in Yang et al. (2017); Ma et al. (2018).", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 609, + 505, + 675 + ], + "lines": [ + { + "bbox": [ + 105, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 505, + 622 + ], + "score": 1.0, + "content": "Table 1 depicts the experiment results. All the results of baselines are from Yang et al. (2017);", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 620, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 506, + 633 + ], + "score": 1.0, + "content": "Ma et al. (2018); Huang et al. (2019); Meng et al. (2019). We have achieved new state-of-the-art", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 631, + 504, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 418, + 644 + ], + "score": 1.0, + "content": "performance on all datasets except MSR. Our model improves the F1 score by", + "type": "text" + }, + { + "bbox": [ + 419, + 631, + 446, + 642 + ], + "score": 0.87, + "content": "0 . 2 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 631, + 476, + 644 + ], + "score": 1.0, + "content": "on AS,", + "type": "text" + }, + { + "bbox": [ + 477, + 631, + 504, + 642 + ], + "score": 0.86, + "content": "0 . 3 2 \\%", + "type": "inline_equation" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 642, + 506, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 156, + 655 + ], + "score": 1.0, + "content": "on CITYU,", + "type": "text" + }, + { + "bbox": [ + 156, + 642, + 184, + 654 + ], + "score": 0.93, + "content": "0 . 1 9 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 642, + 242, + 655 + ], + "score": 1.0, + "content": "on PKU, and", + "type": "text" + }, + { + "bbox": [ + 243, + 642, + 270, + 653 + ], + "score": 0.89, + "content": "0 . 5 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 642, + 506, + 655 + ], + "score": 1.0, + "content": "on CTB6. Note that our model doesn’t use any external", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 654, + 504, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 504, + 666 + ], + "score": 1.0, + "content": "resources, such as glyph information (Meng et al., 2019) or POS tags (Yang et al., 2017). Despite", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 664, + 365, + 676 + ], + "spans": [ + { + "bbox": [ + 106, + 664, + 290, + 676 + ], + "score": 1.0, + "content": "this, our model is still competitive with Glyce", + "type": "text" + }, + { + "bbox": [ + 291, + 665, + 299, + 675 + ], + "score": 0.76, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 664, + 365, + 676 + ], + "score": 1.0, + "content": "BERT on MSR.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5 + }, + { + "type": "title", + "bbox": [ + 107, + 689, + 235, + 700 + ], + "lines": [ + { + "bbox": [ + 106, + 689, + 236, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 236, + 702 + ], + "score": 1.0, + "content": "4.3 CHINESE POS TAGGING", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Chinese POS tagging jointly segments a Chinese character sequence and assigns a POS tag to each", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 719, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 505, + 733 + ], + "score": 1.0, + "content": "segmented unit. We use Chinese Treebank 5.0 (CTB5), CTB6, Chinese Treebank 9.0 (CTB9) (Xue", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 123, + 80, + 488, + 154 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 123, + 80, + 488, + 154 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 123, + 80, + 488, + 154 + ], + "spans": [ + { + "bbox": [ + 123, + 80, + 488, + 154 + ], + "score": 0.981, + "html": "
ModelASMSRCITYUPKUCTB6
Rich Pretraining(Yang et al.,2017)95.797.596.996.396.2
Bi-LSTM(Ma et al.,2018)96.298.197.296.196.7
Multi-Criteria_Learning +_BERT_(Huang etal., 2019)96.697.997.696.697.6
BERT (Meng et al.,2019)96.598.197.696.5=
Glyce + BERT (Meng et al.,2019)96.798.397.996.7-
Unlabeled LUA96.9498.2798.2196.8898.13
", + "type": "table", + "image_path": "01ef1500ea87c73cf80341c505cfc841fc0043a8912d34c933cff91bf688af24.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 123, + 80, + 488, + 104.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 123, + 104.66666666666667, + 488, + 129.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 123, + 129.33333333333334, + 488, + 154.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 182, + 162, + 424, + 173 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 184, + 160, + 426, + 176 + ], + "spans": [ + { + "bbox": [ + 184, + 160, + 426, + 176 + ], + "score": 1.0, + "content": "Table 1: Experiment results on Chinese word segmentation.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "table", + "bbox": [ + 142, + 182, + 469, + 276 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 142, + 182, + 469, + 276 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 142, + 182, + 469, + 276 + ], + "spans": [ + { + "bbox": [ + 142, + 182, + 469, + 276 + ], + "score": 0.981, + "html": "
ModelCTB5CTB6CTB9UD1
Bi-RNN+ CRF (Single) (Shao et al., 2017) Bi-RNN + CRF (Ensemble) (Shao et al.,2017)94.0790.8191.8989.41
Lattice-LSTM(Meng et al.,2019)94.38-92.3489.75
Glyce + Lattice-LSTM (Meng et al., 2019)95.1491.4392.1390.09
BERT (Meng et al.,2019)95.6191.9292.3890.87
Glyce +BERT (Meng et al., 2019)96.0694.7792.2994.79
96.6195.4193.1596.14
This WorkLUA96.7995.3993.2296.01
LUA w/Label Correlations97.9696.6393.9597.08
", + "type": "table", + "image_path": "81b0f9609d55192d669a0737e0bf384714999e6f84337f7f6ad042fe99b86ced.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 142, + 182, + 469, + 213.33333333333334 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 142, + 213.33333333333334, + 469, + 244.66666666666669 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 142, + 244.66666666666669, + 469, + 276.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 158, + 284, + 451, + 296 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 157, + 281, + 453, + 299 + ], + "spans": [ + { + "bbox": [ + 157, + 281, + 453, + 299 + ], + "score": 1.0, + "content": "Table 2: Experiment results on the four datasets of Chinese POS tagging.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + } + ], + "index": 6.0 + }, + { + "type": "title", + "bbox": [ + 108, + 313, + 201, + 326 + ], + "lines": [ + { + "bbox": [ + 104, + 312, + 202, + 328 + ], + "spans": [ + { + "bbox": [ + 104, + 312, + 202, + 328 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 337, + 505, + 393 + ], + "lines": [ + { + "bbox": [ + 106, + 336, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 505, + 351 + ], + "score": 1.0, + "content": "We have conducted extensive studies on 5 tasks, including Chinese word segmentation, Chinese", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 348, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 505, + 362 + ], + "score": 1.0, + "content": "POS tagging, syntactic chunking, NER, and slot filling, across 15 datasets. Firstly, Our models have", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 360, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 505, + 372 + ], + "score": 1.0, + "content": "achieved new state-of-the-art performances on 13 of them. Secondly, the results demonstrate that", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 370, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 506, + 384 + ], + "score": 1.0, + "content": "the F1 score of identifying long-length segments has been notably improved. Lastly, we show that", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 381, + 358, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 381, + 358, + 395 + ], + "score": 1.0, + "content": "LUA is a very efficient algorithm concerning the running time.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 336, + 506, + 395 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 406, + 174, + 417 + ], + "lines": [ + { + "bbox": [ + 105, + 405, + 176, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 176, + 419 + ], + "score": 1.0, + "content": "4.1 SETTINGS", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 426, + 505, + 493 + ], + "lines": [ + { + "bbox": [ + 105, + 426, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 505, + 440 + ], + "score": 1.0, + "content": "We use the same configurations for all 15 datasets. L2 regularization and dropout ratio are respec-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 436, + 506, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 155, + 451 + ], + "score": 1.0, + "content": "tively set as", + "type": "text" + }, + { + "bbox": [ + 155, + 437, + 194, + 448 + ], + "score": 0.92, + "content": "1 \\times 1 0 ^ { - 6 }", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 436, + 506, + 451 + ], + "score": 1.0, + "content": "and 0.2 for reducing overfit. We use Adam (Kingma & Ba, 2014) to optimize", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 448, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 506, + 462 + ], + "score": 1.0, + "content": "our model. Following prior works, BERTBASE is adopted as the sentence encoder. We use uncased", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 459, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 506, + 473 + ], + "score": 1.0, + "content": "BERTBASE for slot filling, Chinese BERTBASE for Chinese tasks (e.g., Chinese POS tagging), and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 471, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 505, + 483 + ], + "score": 1.0, + "content": "cased BERTBASE for others (e.g., syntactic chunking). In addition, the improvements of our model", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 482, + 380, + 494 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 292, + 494 + ], + "score": 1.0, + "content": "over baselines are statistically significant with", + "type": "text" + }, + { + "bbox": [ + 292, + 482, + 330, + 493 + ], + "score": 0.9, + "content": "p < 0 . 0 5", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 482, + 380, + 494 + ], + "score": 1.0, + "content": "under t-test.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 426, + 506, + 494 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 506, + 271, + 518 + ], + "lines": [ + { + "bbox": [ + 105, + 505, + 273, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 273, + 519 + ], + "score": 1.0, + "content": "4.2 CHINESE WORD SEGMENTATION", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 527, + 505, + 604 + ], + "lines": [ + { + "bbox": [ + 105, + 527, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 505, + 541 + ], + "score": 1.0, + "content": "Chinese word segmentation splits a Chinese character sequence into a sequence of Chinese words.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 536, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 505, + 551 + ], + "score": 1.0, + "content": "We use SIGHAN 2005 bake-off (Emerson, 2005) and Chinese Treebank 6.0 (CTB6) (Xue et al.,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 549, + 505, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 505, + 561 + ], + "score": 1.0, + "content": "2005). SIGHAN 2005 back-off consists of 5 datasets, namely AS, MSR, CITYU, and PKU. Fol-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 560, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 288, + 572 + ], + "score": 1.0, + "content": "lowing Ma et al. (2018), we randomly select", + "type": "text" + }, + { + "bbox": [ + 288, + 560, + 308, + 570 + ], + "score": 0.88, + "content": "1 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 560, + 505, + 572 + ], + "score": 1.0, + "content": "training data as development set. We convert all", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 570, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 505, + 583 + ], + "score": 1.0, + "content": "digits, punctuation, and Latin letters to half-width for handling full/half-width mismatch between", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 582, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 505, + 594 + ], + "score": 1.0, + "content": "training and test set. We also convert AS and CITYU to simplified Chinese. For CTB6, we follow", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 593, + 393, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 393, + 605 + ], + "score": 1.0, + "content": "the same format and partition as in Yang et al. (2017); Ma et al. (2018).", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 527, + 505, + 605 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 609, + 505, + 675 + ], + "lines": [ + { + "bbox": [ + 105, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 505, + 622 + ], + "score": 1.0, + "content": "Table 1 depicts the experiment results. All the results of baselines are from Yang et al. (2017);", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 620, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 506, + 633 + ], + "score": 1.0, + "content": "Ma et al. (2018); Huang et al. (2019); Meng et al. (2019). We have achieved new state-of-the-art", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 631, + 504, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 418, + 644 + ], + "score": 1.0, + "content": "performance on all datasets except MSR. Our model improves the F1 score by", + "type": "text" + }, + { + "bbox": [ + 419, + 631, + 446, + 642 + ], + "score": 0.87, + "content": "0 . 2 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 631, + 476, + 644 + ], + "score": 1.0, + "content": "on AS,", + "type": "text" + }, + { + "bbox": [ + 477, + 631, + 504, + 642 + ], + "score": 0.86, + "content": "0 . 3 2 \\%", + "type": "inline_equation" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 642, + 506, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 156, + 655 + ], + "score": 1.0, + "content": "on CITYU,", + "type": "text" + }, + { + "bbox": [ + 156, + 642, + 184, + 654 + ], + "score": 0.93, + "content": "0 . 1 9 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 642, + 242, + 655 + ], + "score": 1.0, + "content": "on PKU, and", + "type": "text" + }, + { + "bbox": [ + 243, + 642, + 270, + 653 + ], + "score": 0.89, + "content": "0 . 5 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 642, + 506, + 655 + ], + "score": 1.0, + "content": "on CTB6. Note that our model doesn’t use any external", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 654, + 504, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 504, + 666 + ], + "score": 1.0, + "content": "resources, such as glyph information (Meng et al., 2019) or POS tags (Yang et al., 2017). Despite", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 664, + 365, + 676 + ], + "spans": [ + { + "bbox": [ + 106, + 664, + 290, + 676 + ], + "score": 1.0, + "content": "this, our model is still competitive with Glyce", + "type": "text" + }, + { + "bbox": [ + 291, + 665, + 299, + 675 + ], + "score": 0.76, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 664, + 365, + 676 + ], + "score": 1.0, + "content": "BERT on MSR.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 609, + 506, + 676 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 689, + 235, + 700 + ], + "lines": [ + { + "bbox": [ + 106, + 689, + 236, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 236, + 702 + ], + "score": 1.0, + "content": "4.3 CHINESE POS TAGGING", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Chinese POS tagging jointly segments a Chinese character sequence and assigns a POS tag to each", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 719, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 505, + 733 + ], + "score": 1.0, + "content": "segmented unit. We use Chinese Treebank 5.0 (CTB5), CTB6, Chinese Treebank 9.0 (CTB9) (Xue", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 224, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 505, + 236 + ], + "score": 1.0, + "content": "et al., 2005), and the Chinese section of Universal Dependencies 1.4 (UD1) (Nivre et al., 2016).", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 234, + 506, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 506, + 247 + ], + "score": 1.0, + "content": "CTB5 is comprised of newswire data. CTB9 consists of source texts in various genres, which cover", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 245, + 506, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 506, + 258 + ], + "score": 1.0, + "content": "CTB5. we convert the texts in UD1 from traditional Chinese into simplified Chinese. We follow the", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 257, + 374, + 269 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 374, + 269 + ], + "score": 1.0, + "content": "same train/dev/test split for above datasets as in Shao et al. (2017).", + "type": "text", + "cross_page": true + } + ], + "index": 7 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 709, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 131, + 80, + 480, + 184 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 131, + 80, + 480, + 184 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 131, + 80, + 480, + 184 + ], + "spans": [ + { + "bbox": [ + 131, + 80, + 480, + 184 + ], + "score": 0.981, + "html": "
ModelChunkingNER
CoNLL-2000CoNLL-2003OntoNotes5.0
Bi-LSTM + CRF (Huang et al., 2015)94.4690.101
Flair Embeddings (Akbik et al., 2018)96.7293.0989.3
GCDT w/BERT (Liu et al., 2019b)96.8193.231
BERT-MRC (Li et al., 2019)-93.0491.11
HCR w/BERT (Luo et al., 2020)=93.3790.30
BERT-Biaffine Model (Yu et al., 2020) LUA-93.591.3
This Work96.9593.4692.09
LUA w/Label Correlations97.23--
", + "type": "table", + "image_path": "046cdaf77be2ed2e24da69ff4d35d36af359dc163ceb6f8adf35a5565af6b32d.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 131, + 80, + 480, + 114.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 131, + 114.66666666666666, + 480, + 149.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 131, + 149.33333333333331, + 480, + 183.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 185, + 191, + 424, + 203 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 183, + 191, + 425, + 205 + ], + "spans": [ + { + "bbox": [ + 183, + 191, + 425, + 205 + ], + "score": 1.0, + "content": "Table 3: Experiment results on syntactic chunking and NER.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 107, + 223, + 504, + 268 + ], + "lines": [ + { + "bbox": [ + 105, + 224, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 505, + 236 + ], + "score": 1.0, + "content": "et al., 2005), and the Chinese section of Universal Dependencies 1.4 (UD1) (Nivre et al., 2016).", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 234, + 506, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 506, + 247 + ], + "score": 1.0, + "content": "CTB5 is comprised of newswire data. CTB9 consists of source texts in various genres, which cover", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 245, + 506, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 506, + 258 + ], + "score": 1.0, + "content": "CTB5. we convert the texts in UD1 from traditional Chinese into simplified Chinese. We follow the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 257, + 374, + 269 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 374, + 269 + ], + "score": 1.0, + "content": "same train/dev/test split for above datasets as in Shao et al. (2017).", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 106, + 273, + 505, + 340 + ], + "lines": [ + { + "bbox": [ + 105, + 272, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 505, + 288 + ], + "score": 1.0, + "content": "Table 2 shows the experiment results. The performances of all baselines are reported from Meng", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 285, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 106, + 285, + 505, + 297 + ], + "score": 1.0, + "content": "et al. (2019). Our model LUA w/ Label Correlations has yielded new state-of-the-art results on all", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 295, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 277, + 308 + ], + "score": 1.0, + "content": "the datasets: it improves the F1 scores by", + "type": "text" + }, + { + "bbox": [ + 277, + 295, + 305, + 307 + ], + "score": 0.87, + "content": "1 . 3 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 295, + 349, + 308 + ], + "score": 1.0, + "content": "on CTB5,", + "type": "text" + }, + { + "bbox": [ + 349, + 295, + 377, + 306 + ], + "score": 0.89, + "content": "1 . 2 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 295, + 421, + 308 + ], + "score": 1.0, + "content": "on CTB6,", + "type": "text" + }, + { + "bbox": [ + 421, + 295, + 444, + 307 + ], + "score": 0.88, + "content": "0 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 295, + 505, + 308 + ], + "score": 1.0, + "content": "on CTB9, and", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 306, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 306, + 134, + 318 + ], + "score": 0.88, + "content": "0 . 9 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 306, + 505, + 320 + ], + "score": 1.0, + "content": "on UD1. Moreover, the basic LUA without capturing the label correlations also outperforms", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 317, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 226, + 330 + ], + "score": 1.0, + "content": "the strongest baseline, Glyce", + "type": "text" + }, + { + "bbox": [ + 226, + 318, + 236, + 328 + ], + "score": 0.76, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 317, + 280, + 330 + ], + "score": 1.0, + "content": "BERT, by", + "type": "text" + }, + { + "bbox": [ + 280, + 317, + 307, + 329 + ], + "score": 0.89, + "content": "0 . 1 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 317, + 368, + 330 + ], + "score": 1.0, + "content": "on CTB5 and", + "type": "text" + }, + { + "bbox": [ + 368, + 317, + 396, + 329 + ], + "score": 0.87, + "content": "0 . 0 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 317, + 505, + 330 + ], + "score": 1.0, + "content": "on CTB9. All these facts", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 329, + 336, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 336, + 341 + ], + "score": 1.0, + "content": "further verify the effectiveness of LUA and its extension.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 10.5 + }, + { + "type": "title", + "bbox": [ + 108, + 353, + 276, + 365 + ], + "lines": [ + { + "bbox": [ + 106, + 353, + 277, + 366 + ], + "spans": [ + { + "bbox": [ + 106, + 353, + 277, + 366 + ], + "score": 1.0, + "content": "4.4 SYNTACTIC CHUNKING AND NER", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 375, + 505, + 517 + ], + "lines": [ + { + "bbox": [ + 105, + 374, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 505, + 387 + ], + "score": 1.0, + "content": "Syntactic chunking aims to find phrases related to syntatic category for a sentence. We use CoNLL-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 385, + 504, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 504, + 397 + ], + "score": 1.0, + "content": "2000 dataset (Sang & Buchholz, 2000), which defines 11 syntactic chunk types (NP, VP, PP, etc.) and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 397, + 505, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 505, + 409 + ], + "score": 1.0, + "content": "follow the standard splittings of training and test datasets as previous work. NER locates the named", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "score": 1.0, + "content": "entities mentioned in unstructured text and meanwhile classifies them into predefined categories.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 418, + 505, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 505, + 432 + ], + "score": 1.0, + "content": "We use CoNLL-2003 dataset (Sang & De Meulder, 2003) and OntoNotes 5.0 dataset (Pradhan et al.,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "score": 1.0, + "content": "2013). CoNLL-2003 dataset consists of 22137 sentences totally and is split into 14987, 3466, and", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 440, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 506, + 453 + ], + "score": 1.0, + "content": "3684 sentences for the training set, development set, and test set, respectively. It is tagged with four", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 451, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 506, + 464 + ], + "score": 1.0, + "content": "linguistic entity types (PER, LOC, ORG, MISC). OntoNotes 5.0 dataset contains 76714 sentences", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 461, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 505, + 475 + ], + "score": 1.0, + "content": "from a wide variety of sources (e.g., magazine and newswire). It includes 18 types of named entity,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 473, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 505, + 486 + ], + "score": 1.0, + "content": "which consists of 11 types (Person, Organization, etc.) and 7 values (Date, Percent, etc.). We follow", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 484, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 505, + 496 + ], + "score": 1.0, + "content": "the same format and partition as in Li et al. (2019); Luo et al. (2020); Yu et al. (2020). In order to", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 495, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 506, + 509 + ], + "score": 1.0, + "content": "fairly compare with previous reported results, we convert the predicted segments into IOB format", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 506, + 365, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 365, + 519 + ], + "score": 1.0, + "content": "and utilize conlleval script1 to compute the F1 score at test time.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 523, + 505, + 633 + ], + "lines": [ + { + "bbox": [ + 106, + 523, + 504, + 535 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 504, + 535 + ], + "score": 1.0, + "content": "Table 3 shows the results. Most of baselines are directly taken from Akbik et al. (2018); Li et al.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 534, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 505, + 546 + ], + "score": 1.0, + "content": "(2019); Luo et al. (2020); Yu et al. (2020). Besides, following Luo et al. (2020), we rerun the source", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 544, + 505, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 505, + 558 + ], + "score": 1.0, + "content": "code2 of GCDT and report its result on CoNLL-2000 with standard evaluation method. Generally,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 555, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 104, + 555, + 505, + 569 + ], + "score": 1.0, + "content": "our proposed models LUA w/o Label Correlations yield competitive performance over state-of-the-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 566, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 505, + 580 + ], + "score": 1.0, + "content": "art models on both Chunking and NER tasks. Specifically, regarding to the NER task, on CoNLL-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 577, + 506, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 506, + 591 + ], + "score": 1.0, + "content": "2003 dataset our model LUA outperforms several strong baselines including Flair Embedding, and it", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 588, + 506, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 506, + 602 + ], + "score": 1.0, + "content": "is comparable to the state-of-the-art model (i.e., BERT-Biaffine Model). In particular, on OntoNotes", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 598, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 104, + 598, + 231, + 614 + ], + "score": 1.0, + "content": "dataset, LUA outperforms it by", + "type": "text" + }, + { + "bbox": [ + 231, + 600, + 259, + 611 + ], + "score": 0.88, + "content": "0 . 7 9 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 598, + 505, + 614 + ], + "score": 1.0, + "content": "points and establishes a new state-of-the-art result. Regarding", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 611, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 505, + 624 + ], + "score": 1.0, + "content": "to the Chunking task, LUA advances the best model (GCDT) and the improvements are further", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 622, + 336, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 153, + 635 + ], + "score": 1.0, + "content": "enlarged to", + "type": "text" + }, + { + "bbox": [ + 154, + 622, + 181, + 633 + ], + "score": 0.88, + "content": "0 . 4 \\hat { 2 } \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 622, + 336, + 635 + ], + "score": 1.0, + "content": "points by LUA w/ Label Correlations.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 32.5 + }, + { + "type": "title", + "bbox": [ + 107, + 647, + 192, + 658 + ], + "lines": [ + { + "bbox": [ + 105, + 646, + 194, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 194, + 660 + ], + "score": 1.0, + "content": "4.5 SLOT FILLING", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 109, + 668, + 505, + 701 + ], + "lines": [ + { + "bbox": [ + 106, + 668, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 505, + 680 + ], + "score": 1.0, + "content": "Slot filling, as an important task in spoken language understanding (SLU), extracts semantic con-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 679, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 106, + 679, + 505, + 691 + ], + "score": 1.0, + "content": "stituents from an utterance. We use ATIS dataset (Hemphill et al., 1990), SNIPS dataset (Coucke", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 690, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 690, + 505, + 702 + ], + "score": 1.0, + "content": "et al., 2018), and MTOD dataset (Schuster et al., 2018). ATIS dataset consists of audio recordings of", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 118, + 711, + 365, + 731 + ], + "lines": [ + { + "bbox": [ + 119, + 709, + 365, + 722 + ], + "spans": [ + { + "bbox": [ + 119, + 709, + 365, + 722 + ], + "score": 1.0, + "content": "1https://www.clips.uantwerpen.be/conll2000/chunking/conlleval.txt.", + "type": "text" + } + ] + }, + { + "bbox": [ + 119, + 721, + 248, + 733 + ], + "spans": [ + { + "bbox": [ + 119, + 721, + 248, + 733 + ], + "score": 1.0, + "content": "2https://github.com/Adaxry/GCDT.", + "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": [ + 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": [ + 131, + 80, + 480, + 184 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 131, + 80, + 480, + 184 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 131, + 80, + 480, + 184 + ], + "spans": [ + { + "bbox": [ + 131, + 80, + 480, + 184 + ], + "score": 0.981, + "html": "
ModelChunkingNER
CoNLL-2000CoNLL-2003OntoNotes5.0
Bi-LSTM + CRF (Huang et al., 2015)94.4690.101
Flair Embeddings (Akbik et al., 2018)96.7293.0989.3
GCDT w/BERT (Liu et al., 2019b)96.8193.231
BERT-MRC (Li et al., 2019)-93.0491.11
HCR w/BERT (Luo et al., 2020)=93.3790.30
BERT-Biaffine Model (Yu et al., 2020) LUA-93.591.3
This Work96.9593.4692.09
LUA w/Label Correlations97.23--
", + "type": "table", + "image_path": "046cdaf77be2ed2e24da69ff4d35d36af359dc163ceb6f8adf35a5565af6b32d.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 131, + 80, + 480, + 114.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 131, + 114.66666666666666, + 480, + 149.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 131, + 149.33333333333331, + 480, + 183.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 185, + 191, + 424, + 203 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 183, + 191, + 425, + 205 + ], + "spans": [ + { + "bbox": [ + 183, + 191, + 425, + 205 + ], + "score": 1.0, + "content": "Table 3: Experiment results on syntactic chunking and NER.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 107, + 223, + 504, + 268 + ], + "lines": [], + "index": 5.5, + "bbox_fs": [ + 105, + 224, + 506, + 269 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 273, + 505, + 340 + ], + "lines": [ + { + "bbox": [ + 105, + 272, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 505, + 288 + ], + "score": 1.0, + "content": "Table 2 shows the experiment results. The performances of all baselines are reported from Meng", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 285, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 106, + 285, + 505, + 297 + ], + "score": 1.0, + "content": "et al. (2019). Our model LUA w/ Label Correlations has yielded new state-of-the-art results on all", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 295, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 277, + 308 + ], + "score": 1.0, + "content": "the datasets: it improves the F1 scores by", + "type": "text" + }, + { + "bbox": [ + 277, + 295, + 305, + 307 + ], + "score": 0.87, + "content": "1 . 3 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 295, + 349, + 308 + ], + "score": 1.0, + "content": "on CTB5,", + "type": "text" + }, + { + "bbox": [ + 349, + 295, + 377, + 306 + ], + "score": 0.89, + "content": "1 . 2 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 295, + 421, + 308 + ], + "score": 1.0, + "content": "on CTB6,", + "type": "text" + }, + { + "bbox": [ + 421, + 295, + 444, + 307 + ], + "score": 0.88, + "content": "0 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 295, + 505, + 308 + ], + "score": 1.0, + "content": "on CTB9, and", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 306, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 306, + 134, + 318 + ], + "score": 0.88, + "content": "0 . 9 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 306, + 505, + 320 + ], + "score": 1.0, + "content": "on UD1. Moreover, the basic LUA without capturing the label correlations also outperforms", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 317, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 226, + 330 + ], + "score": 1.0, + "content": "the strongest baseline, Glyce", + "type": "text" + }, + { + "bbox": [ + 226, + 318, + 236, + 328 + ], + "score": 0.76, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 317, + 280, + 330 + ], + "score": 1.0, + "content": "BERT, by", + "type": "text" + }, + { + "bbox": [ + 280, + 317, + 307, + 329 + ], + "score": 0.89, + "content": "0 . 1 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 317, + 368, + 330 + ], + "score": 1.0, + "content": "on CTB5 and", + "type": "text" + }, + { + "bbox": [ + 368, + 317, + 396, + 329 + ], + "score": 0.87, + "content": "0 . 0 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 317, + 505, + 330 + ], + "score": 1.0, + "content": "on CTB9. All these facts", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 329, + 336, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 336, + 341 + ], + "score": 1.0, + "content": "further verify the effectiveness of LUA and its extension.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 272, + 505, + 341 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 353, + 276, + 365 + ], + "lines": [ + { + "bbox": [ + 106, + 353, + 277, + 366 + ], + "spans": [ + { + "bbox": [ + 106, + 353, + 277, + 366 + ], + "score": 1.0, + "content": "4.4 SYNTACTIC CHUNKING AND NER", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 375, + 505, + 517 + ], + "lines": [ + { + "bbox": [ + 105, + 374, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 505, + 387 + ], + "score": 1.0, + "content": "Syntactic chunking aims to find phrases related to syntatic category for a sentence. We use CoNLL-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 385, + 504, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 504, + 397 + ], + "score": 1.0, + "content": "2000 dataset (Sang & Buchholz, 2000), which defines 11 syntactic chunk types (NP, VP, PP, etc.) and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 397, + 505, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 505, + 409 + ], + "score": 1.0, + "content": "follow the standard splittings of training and test datasets as previous work. NER locates the named", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "score": 1.0, + "content": "entities mentioned in unstructured text and meanwhile classifies them into predefined categories.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 418, + 505, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 505, + 432 + ], + "score": 1.0, + "content": "We use CoNLL-2003 dataset (Sang & De Meulder, 2003) and OntoNotes 5.0 dataset (Pradhan et al.,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "score": 1.0, + "content": "2013). CoNLL-2003 dataset consists of 22137 sentences totally and is split into 14987, 3466, and", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 440, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 506, + 453 + ], + "score": 1.0, + "content": "3684 sentences for the training set, development set, and test set, respectively. It is tagged with four", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 451, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 506, + 464 + ], + "score": 1.0, + "content": "linguistic entity types (PER, LOC, ORG, MISC). OntoNotes 5.0 dataset contains 76714 sentences", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 461, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 505, + 475 + ], + "score": 1.0, + "content": "from a wide variety of sources (e.g., magazine and newswire). It includes 18 types of named entity,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 473, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 505, + 486 + ], + "score": 1.0, + "content": "which consists of 11 types (Person, Organization, etc.) and 7 values (Date, Percent, etc.). We follow", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 484, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 505, + 496 + ], + "score": 1.0, + "content": "the same format and partition as in Li et al. (2019); Luo et al. (2020); Yu et al. (2020). In order to", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 495, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 506, + 509 + ], + "score": 1.0, + "content": "fairly compare with previous reported results, we convert the predicted segments into IOB format", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 506, + 365, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 365, + 519 + ], + "score": 1.0, + "content": "and utilize conlleval script1 to compute the F1 score at test time.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 374, + 506, + 519 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 523, + 505, + 633 + ], + "lines": [ + { + "bbox": [ + 106, + 523, + 504, + 535 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 504, + 535 + ], + "score": 1.0, + "content": "Table 3 shows the results. Most of baselines are directly taken from Akbik et al. (2018); Li et al.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 534, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 505, + 546 + ], + "score": 1.0, + "content": "(2019); Luo et al. (2020); Yu et al. (2020). Besides, following Luo et al. (2020), we rerun the source", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 544, + 505, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 505, + 558 + ], + "score": 1.0, + "content": "code2 of GCDT and report its result on CoNLL-2000 with standard evaluation method. Generally,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 555, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 104, + 555, + 505, + 569 + ], + "score": 1.0, + "content": "our proposed models LUA w/o Label Correlations yield competitive performance over state-of-the-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 566, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 505, + 580 + ], + "score": 1.0, + "content": "art models on both Chunking and NER tasks. Specifically, regarding to the NER task, on CoNLL-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 577, + 506, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 506, + 591 + ], + "score": 1.0, + "content": "2003 dataset our model LUA outperforms several strong baselines including Flair Embedding, and it", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 588, + 506, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 506, + 602 + ], + "score": 1.0, + "content": "is comparable to the state-of-the-art model (i.e., BERT-Biaffine Model). In particular, on OntoNotes", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 598, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 104, + 598, + 231, + 614 + ], + "score": 1.0, + "content": "dataset, LUA outperforms it by", + "type": "text" + }, + { + "bbox": [ + 231, + 600, + 259, + 611 + ], + "score": 0.88, + "content": "0 . 7 9 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 598, + 505, + 614 + ], + "score": 1.0, + "content": "points and establishes a new state-of-the-art result. Regarding", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 611, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 505, + 624 + ], + "score": 1.0, + "content": "to the Chunking task, LUA advances the best model (GCDT) and the improvements are further", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 622, + 336, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 153, + 635 + ], + "score": 1.0, + "content": "enlarged to", + "type": "text" + }, + { + "bbox": [ + 154, + 622, + 181, + 633 + ], + "score": 0.88, + "content": "0 . 4 \\hat { 2 } \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 622, + 336, + 635 + ], + "score": 1.0, + "content": "points by LUA w/ Label Correlations.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 32.5, + "bbox_fs": [ + 104, + 523, + 506, + 635 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 647, + 192, + 658 + ], + "lines": [ + { + "bbox": [ + 105, + 646, + 194, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 194, + 660 + ], + "score": 1.0, + "content": "4.5 SLOT FILLING", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 109, + 668, + 505, + 701 + ], + "lines": [ + { + "bbox": [ + 106, + 668, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 505, + 680 + ], + "score": 1.0, + "content": "Slot filling, as an important task in spoken language understanding (SLU), extracts semantic con-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 679, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 106, + 679, + 505, + 691 + ], + "score": 1.0, + "content": "stituents from an utterance. We use ATIS dataset (Hemphill et al., 1990), SNIPS dataset (Coucke", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 690, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 690, + 505, + 702 + ], + "score": 1.0, + "content": "et al., 2018), and MTOD dataset (Schuster et al., 2018). ATIS dataset consists of audio recordings of", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40, + "bbox_fs": [ + 106, + 668, + 505, + 702 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 168, + 80, + 443, + 154 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 168, + 80, + 443, + 154 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 168, + 80, + 443, + 154 + ], + "spans": [ + { + "bbox": [ + 168, + 80, + 443, + 154 + ], + "score": 0.981, + "html": "
ModelATISSNIPSMTOD
Slot-Gated SLU (Goo et al.,2018) Bi-LSTM + EMLo (Siddhant et al., 2019)95.2088.3095.12
95.4293.90-
Joint BERT (Chen et al., 2019b) CM-Net (Liu et al.,2019c)96.10 96.2097.0096.48
96.1597.15-
This WorkLUA LUA w/ Intent Detection96.2797.1097.53
97.2097.55
", + "type": "table", + "image_path": "b85c1a025f9b33999faf6903084d89eb9f902b629107d69eea5992dff1e779bb.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 168, + 80, + 443, + 104.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 168, + 104.66666666666667, + 443, + 129.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 168, + 129.33333333333334, + 443, + 154.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 181, + 162, + 432, + 173 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 179, + 160, + 432, + 176 + ], + "spans": [ + { + "bbox": [ + 179, + 160, + 432, + 176 + ], + "score": 1.0, + "content": "Table 4: Experiment results on the three datasets of slot filling.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "table", + "bbox": [ + 133, + 182, + 478, + 227 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 133, + 182, + 478, + 227 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 133, + 182, + 478, + 227 + ], + "spans": [ + { + "bbox": [ + 133, + 182, + 478, + 227 + ], + "score": 0.977, + "html": "
Model1-3(8695)4-7(2380)8-11(151)12-24(31)Overall
HCRw/BERT91.1585.2250.4320.6790.27
BERT-Biaffine Model91.6787.2370.2440.5591.26
LUA92.3188.5277.3457.2792.09
", + "type": "table", + "image_path": "0d8a988459cd38745b0972009b489a7a6c36555d632195fbb5dfc48458492265.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 133, + 182, + 478, + 197.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 133, + 197.0, + 478, + 212.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 133, + 212.0, + 478, + 227.0 + ], + "spans": [], + "index": 6 + } + ] + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 106, + 236, + 505, + 258 + ], + "lines": [ + { + "bbox": [ + 106, + 236, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 386, + 248 + ], + "score": 1.0, + "content": "Table 5: The F1 scores for NER models on different segment lengths.", + "type": "text" + }, + { + "bbox": [ + 386, + 236, + 431, + 248 + ], + "score": 0.93, + "content": "A - B ( N )", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 236, + 505, + 248 + ], + "score": 1.0, + "content": "denotes that there", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 246, + 334, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 121, + 259 + ], + "score": 1.0, + "content": "are", + "type": "text" + }, + { + "bbox": [ + 121, + 248, + 132, + 257 + ], + "score": 0.77, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 246, + 294, + 259 + ], + "score": 1.0, + "content": "entities whose span lengths are between", + "type": "text" + }, + { + "bbox": [ + 294, + 248, + 303, + 257 + ], + "score": 0.7, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 246, + 321, + 259 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 321, + 248, + 330, + 257 + ], + "score": 0.73, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 246, + 334, + 259 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 107, + 279, + 505, + 345 + ], + "lines": [ + { + "bbox": [ + 105, + 279, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 505, + 291 + ], + "score": 1.0, + "content": "people making flight reservations. The training set contains 4478 utterances and the test set contains", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 289, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 505, + 303 + ], + "score": 1.0, + "content": "893 utterances. SNIPS dataset is collected by Snips personal voice assistant. The training set con-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 301, + 506, + 314 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 506, + 314 + ], + "score": 1.0, + "content": "tains 13084 utterances and the test set contains 700 utterances. MTOD dataset has three domains,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 311, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 506, + 326 + ], + "score": 1.0, + "content": "including Alarm, Reminder, and Weather. We use the English part of MTOD dataset, where training", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 322, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 505, + 335 + ], + "score": 1.0, + "content": "set, dev set, and test set respectively contain 30521, 4181, and 8621 utterances. We follow the same", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 334, + 398, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 398, + 346 + ], + "score": 1.0, + "content": "partition of above datasets as in Goo et al. (2018); Schuster et al. (2018).", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 107, + 351, + 505, + 450 + ], + "lines": [ + { + "bbox": [ + 106, + 351, + 505, + 364 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 505, + 364 + ], + "score": 1.0, + "content": "Table 4 summarizes the experiment results for slot filling. On ATIS and SNIPS, we take the results", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 361, + 506, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 506, + 375 + ], + "score": 1.0, + "content": "of all baselines as reported in Liu et al. (2019c) for comparison. On MTOD, we rerun the open", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 371, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 104, + 371, + 216, + 387 + ], + "score": 1.0, + "content": "source toolkits, Slot-gated", + "type": "text" + }, + { + "bbox": [ + 216, + 372, + 240, + 384 + ], + "score": 0.66, + "content": "\\mathrm { S L U } ^ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 371, + 506, + 387 + ], + "score": 1.0, + "content": "and Joint BERT4. As all previous approaches jointly model slot", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 384, + 504, + 396 + ], + "spans": [ + { + "bbox": [ + 106, + 384, + 504, + 396 + ], + "score": 1.0, + "content": "filling and intent detection (a classification task in SLU), we follow them to augment LUA with", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 394, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 506, + 407 + ], + "score": 1.0, + "content": "intent detection for a fair comparison. As shown in Table 4, the augmented LUA has surpassed all", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 405, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 106, + 405, + 505, + 418 + ], + "score": 1.0, + "content": "baselines and obtained state-of-the-art results on the three datasets: it increases the F1 scores by", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 137, + 429 + ], + "score": 1.0, + "content": "around", + "type": "text" + }, + { + "bbox": [ + 137, + 417, + 165, + 428 + ], + "score": 0.88, + "content": "0 . 0 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 416, + 387, + 429 + ], + "score": 1.0, + "content": "on ATIS and SNIPS, and delivers a substantial gain of", + "type": "text" + }, + { + "bbox": [ + 388, + 417, + 415, + 428 + ], + "score": 0.88, + "content": "1 . 1 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 416, + 505, + 429 + ], + "score": 1.0, + "content": "on MTOD. It’s worth", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 427, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 460, + 440 + ], + "score": 1.0, + "content": "mentioning that LUA even outperforms the strong baseline Joint BERT with a margin of", + "type": "text" + }, + { + "bbox": [ + 460, + 428, + 487, + 439 + ], + "score": 0.89, + "content": "0 . 1 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 427, + 505, + 440 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 438, + 357, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 134, + 450 + ], + "score": 0.87, + "content": "0 . 2 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 438, + 357, + 452 + ], + "score": 1.0, + "content": "on ATIS and SNIPS without modeling intent detection.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 19 + }, + { + "type": "title", + "bbox": [ + 107, + 464, + 313, + 475 + ], + "lines": [ + { + "bbox": [ + 105, + 463, + 314, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 314, + 477 + ], + "score": 1.0, + "content": "4.6 LONG-LENGTH SEGMENT IDENTIFICATION", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 484, + 504, + 551 + ], + "lines": [ + { + "bbox": [ + 105, + 483, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 506, + 498 + ], + "score": 1.0, + "content": "Since LUA doesn’t resort to IOB tagging scheme, it should be more accurate in recognizing long-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 495, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 506, + 508 + ], + "score": 1.0, + "content": "length segments than prior methods. To verify this intuition, we evaluate different models on the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 505, + 506, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 506, + 521 + ], + "score": 1.0, + "content": "segments of different lengths. This study is investigated on OntoNotes 5.0 dataset. Two strong", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 518, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 505, + 530 + ], + "score": 1.0, + "content": "models are adopted as the baselines: one is the best sequence labeling model (i.e., HCR) and the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 527, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 505, + 542 + ], + "score": 1.0, + "content": "other is the best span-based model (i.e., BERT-Biaffine Model). Both baselines are reproduced by", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 540, + 366, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 366, + 551 + ], + "score": 1.0, + "content": "rerunning their open source codes, biaffine-ner5 and Hire-NER6.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 107, + 556, + 505, + 612 + ], + "lines": [ + { + "bbox": [ + 106, + 556, + 504, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 556, + 504, + 568 + ], + "score": 1.0, + "content": "The results are shown in Table 5. On the one hand, both LUA and Biaffine Model obtain much", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 566, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 505, + 580 + ], + "score": 1.0, + "content": "higher scores of extracting long-length entities than HCR. For example, LUA outperforms HCR w/", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 578, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 249, + 591 + ], + "score": 1.0, + "content": "BERT by almost twofold on range", + "type": "text" + }, + { + "bbox": [ + 249, + 578, + 284, + 589 + ], + "score": 0.53, + "content": "1 2 - 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 578, + 505, + 591 + ], + "score": 1.0, + "content": ". On the other hand, LUA achieves even better results", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 589, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 459, + 603 + ], + "score": 1.0, + "content": "than BERT-Biaffine Model. For instance, the F1 score improvements of LUA over it are", + "type": "text" + }, + { + "bbox": [ + 459, + 589, + 492, + 600 + ], + "score": 0.89, + "content": "1 0 . 1 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 589, + 505, + 603 + ], + "score": 1.0, + "content": "on", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 599, + 285, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 131, + 612 + ], + "score": 1.0, + "content": "range", + "type": "text" + }, + { + "bbox": [ + 131, + 600, + 159, + 611 + ], + "score": 0.39, + "content": "8 - 1 1", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 599, + 177, + 612 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 178, + 600, + 210, + 611 + ], + "score": 0.89, + "content": "4 1 . 2 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 599, + 248, + 612 + ], + "score": 1.0, + "content": "on range", + "type": "text" + }, + { + "bbox": [ + 248, + 600, + 281, + 611 + ], + "score": 0.57, + "content": "1 2 - 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 599, + 285, + 612 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33 + }, + { + "type": "title", + "bbox": [ + 107, + 626, + 244, + 637 + ], + "lines": [ + { + "bbox": [ + 105, + 624, + 246, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 246, + 639 + ], + "score": 1.0, + "content": "4.7 RUNNING TIME ANALYSIS", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 108, + 646, + 504, + 679 + ], + "lines": [ + { + "bbox": [ + 105, + 645, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 505, + 659 + ], + "score": 1.0, + "content": "Table 6 shows the running time comparison among different models. The middle two columns are", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 658, + 505, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 658, + 505, + 669 + ], + "score": 1.0, + "content": "the time complexity of decoding a label sequence. The last column is the time cost of one epoch", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 668, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 505, + 681 + ], + "score": 1.0, + "content": "in training. We set the batch size as 16 and run all the models on 1 GPU. The results indicate that", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 118, + 688, + 281, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 687, + 282, + 700 + ], + "spans": [ + { + "bbox": [ + 119, + 687, + 282, + 700 + ], + "score": 1.0, + "content": "3https://github.com/MiuLab/SlotGated-SLU.", + "type": "text" + } + ] + }, + { + "bbox": [ + 118, + 698, + 273, + 712 + ], + "spans": [ + { + "bbox": [ + 118, + 698, + 273, + 712 + ], + "score": 1.0, + "content": "4https://github.com/monologg/JointBERT.", + "type": "text" + } + ] + }, + { + "bbox": [ + 118, + 708, + 266, + 722 + ], + "spans": [ + { + "bbox": [ + 118, + 708, + 266, + 722 + ], + "score": 1.0, + "content": "5https://github.com/juntaoy/biaffine-ner.", + "type": "text" + } + ] + }, + { + "bbox": [ + 118, + 720, + 260, + 733 + ], + "spans": [ + { + "bbox": [ + 118, + 720, + 260, + 733 + ], + "score": 1.0, + "content": "6https://github.com/cslydia/Hire-NER.", + "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" + } + ] + } + ] + }, + { + "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" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 168, + 80, + 443, + 154 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 168, + 80, + 443, + 154 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 168, + 80, + 443, + 154 + ], + "spans": [ + { + "bbox": [ + 168, + 80, + 443, + 154 + ], + "score": 0.981, + "html": "
ModelATISSNIPSMTOD
Slot-Gated SLU (Goo et al.,2018) Bi-LSTM + EMLo (Siddhant et al., 2019)95.2088.3095.12
95.4293.90-
Joint BERT (Chen et al., 2019b) CM-Net (Liu et al.,2019c)96.10 96.2097.0096.48
96.1597.15-
This WorkLUA LUA w/ Intent Detection96.2797.1097.53
97.2097.55
", + "type": "table", + "image_path": "b85c1a025f9b33999faf6903084d89eb9f902b629107d69eea5992dff1e779bb.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 168, + 80, + 443, + 104.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 168, + 104.66666666666667, + 443, + 129.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 168, + 129.33333333333334, + 443, + 154.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 181, + 162, + 432, + 173 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 179, + 160, + 432, + 176 + ], + "spans": [ + { + "bbox": [ + 179, + 160, + 432, + 176 + ], + "score": 1.0, + "content": "Table 4: Experiment results on the three datasets of slot filling.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "table", + "bbox": [ + 133, + 182, + 478, + 227 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 133, + 182, + 478, + 227 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 133, + 182, + 478, + 227 + ], + "spans": [ + { + "bbox": [ + 133, + 182, + 478, + 227 + ], + "score": 0.977, + "html": "
Model1-3(8695)4-7(2380)8-11(151)12-24(31)Overall
HCRw/BERT91.1585.2250.4320.6790.27
BERT-Biaffine Model91.6787.2370.2440.5591.26
LUA92.3188.5277.3457.2792.09
", + "type": "table", + "image_path": "0d8a988459cd38745b0972009b489a7a6c36555d632195fbb5dfc48458492265.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 133, + 182, + 478, + 197.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 133, + 197.0, + 478, + 212.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 133, + 212.0, + 478, + 227.0 + ], + "spans": [], + "index": 6 + } + ] + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 106, + 236, + 505, + 258 + ], + "lines": [ + { + "bbox": [ + 106, + 236, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 386, + 248 + ], + "score": 1.0, + "content": "Table 5: The F1 scores for NER models on different segment lengths.", + "type": "text" + }, + { + "bbox": [ + 386, + 236, + 431, + 248 + ], + "score": 0.93, + "content": "A - B ( N )", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 236, + 505, + 248 + ], + "score": 1.0, + "content": "denotes that there", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 246, + 334, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 121, + 259 + ], + "score": 1.0, + "content": "are", + "type": "text" + }, + { + "bbox": [ + 121, + 248, + 132, + 257 + ], + "score": 0.77, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 246, + 294, + 259 + ], + "score": 1.0, + "content": "entities whose span lengths are between", + "type": "text" + }, + { + "bbox": [ + 294, + 248, + 303, + 257 + ], + "score": 0.7, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 246, + 321, + 259 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 321, + 248, + 330, + 257 + ], + "score": 0.73, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 246, + 334, + 259 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 236, + 505, + 259 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 279, + 505, + 345 + ], + "lines": [ + { + "bbox": [ + 105, + 279, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 505, + 291 + ], + "score": 1.0, + "content": "people making flight reservations. The training set contains 4478 utterances and the test set contains", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 289, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 505, + 303 + ], + "score": 1.0, + "content": "893 utterances. SNIPS dataset is collected by Snips personal voice assistant. The training set con-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 301, + 506, + 314 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 506, + 314 + ], + "score": 1.0, + "content": "tains 13084 utterances and the test set contains 700 utterances. MTOD dataset has three domains,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 311, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 506, + 326 + ], + "score": 1.0, + "content": "including Alarm, Reminder, and Weather. We use the English part of MTOD dataset, where training", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 322, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 505, + 335 + ], + "score": 1.0, + "content": "set, dev set, and test set respectively contain 30521, 4181, and 8621 utterances. We follow the same", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 334, + 398, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 398, + 346 + ], + "score": 1.0, + "content": "partition of above datasets as in Goo et al. (2018); Schuster et al. (2018).", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 279, + 506, + 346 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 351, + 505, + 450 + ], + "lines": [ + { + "bbox": [ + 106, + 351, + 505, + 364 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 505, + 364 + ], + "score": 1.0, + "content": "Table 4 summarizes the experiment results for slot filling. On ATIS and SNIPS, we take the results", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 361, + 506, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 506, + 375 + ], + "score": 1.0, + "content": "of all baselines as reported in Liu et al. (2019c) for comparison. On MTOD, we rerun the open", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 371, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 104, + 371, + 216, + 387 + ], + "score": 1.0, + "content": "source toolkits, Slot-gated", + "type": "text" + }, + { + "bbox": [ + 216, + 372, + 240, + 384 + ], + "score": 0.66, + "content": "\\mathrm { S L U } ^ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 371, + 506, + 387 + ], + "score": 1.0, + "content": "and Joint BERT4. As all previous approaches jointly model slot", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 384, + 504, + 396 + ], + "spans": [ + { + "bbox": [ + 106, + 384, + 504, + 396 + ], + "score": 1.0, + "content": "filling and intent detection (a classification task in SLU), we follow them to augment LUA with", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 394, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 506, + 407 + ], + "score": 1.0, + "content": "intent detection for a fair comparison. As shown in Table 4, the augmented LUA has surpassed all", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 405, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 106, + 405, + 505, + 418 + ], + "score": 1.0, + "content": "baselines and obtained state-of-the-art results on the three datasets: it increases the F1 scores by", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 137, + 429 + ], + "score": 1.0, + "content": "around", + "type": "text" + }, + { + "bbox": [ + 137, + 417, + 165, + 428 + ], + "score": 0.88, + "content": "0 . 0 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 416, + 387, + 429 + ], + "score": 1.0, + "content": "on ATIS and SNIPS, and delivers a substantial gain of", + "type": "text" + }, + { + "bbox": [ + 388, + 417, + 415, + 428 + ], + "score": 0.88, + "content": "1 . 1 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 416, + 505, + 429 + ], + "score": 1.0, + "content": "on MTOD. It’s worth", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 427, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 460, + 440 + ], + "score": 1.0, + "content": "mentioning that LUA even outperforms the strong baseline Joint BERT with a margin of", + "type": "text" + }, + { + "bbox": [ + 460, + 428, + 487, + 439 + ], + "score": 0.89, + "content": "0 . 1 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 427, + 505, + 440 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 438, + 357, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 134, + 450 + ], + "score": 0.87, + "content": "0 . 2 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 438, + 357, + 452 + ], + "score": 1.0, + "content": "on ATIS and SNIPS without modeling intent detection.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 19, + "bbox_fs": [ + 104, + 351, + 506, + 452 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 464, + 313, + 475 + ], + "lines": [ + { + "bbox": [ + 105, + 463, + 314, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 314, + 477 + ], + "score": 1.0, + "content": "4.6 LONG-LENGTH SEGMENT IDENTIFICATION", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 484, + 504, + 551 + ], + "lines": [ + { + "bbox": [ + 105, + 483, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 506, + 498 + ], + "score": 1.0, + "content": "Since LUA doesn’t resort to IOB tagging scheme, it should be more accurate in recognizing long-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 495, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 506, + 508 + ], + "score": 1.0, + "content": "length segments than prior methods. To verify this intuition, we evaluate different models on the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 505, + 506, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 506, + 521 + ], + "score": 1.0, + "content": "segments of different lengths. This study is investigated on OntoNotes 5.0 dataset. Two strong", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 518, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 505, + 530 + ], + "score": 1.0, + "content": "models are adopted as the baselines: one is the best sequence labeling model (i.e., HCR) and the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 527, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 505, + 542 + ], + "score": 1.0, + "content": "other is the best span-based model (i.e., BERT-Biaffine Model). Both baselines are reproduced by", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 540, + 366, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 366, + 551 + ], + "score": 1.0, + "content": "rerunning their open source codes, biaffine-ner5 and Hire-NER6.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 483, + 506, + 551 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 556, + 505, + 612 + ], + "lines": [ + { + "bbox": [ + 106, + 556, + 504, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 556, + 504, + 568 + ], + "score": 1.0, + "content": "The results are shown in Table 5. On the one hand, both LUA and Biaffine Model obtain much", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 566, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 505, + 580 + ], + "score": 1.0, + "content": "higher scores of extracting long-length entities than HCR. For example, LUA outperforms HCR w/", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 578, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 249, + 591 + ], + "score": 1.0, + "content": "BERT by almost twofold on range", + "type": "text" + }, + { + "bbox": [ + 249, + 578, + 284, + 589 + ], + "score": 0.53, + "content": "1 2 - 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 578, + 505, + 591 + ], + "score": 1.0, + "content": ". On the other hand, LUA achieves even better results", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 589, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 459, + 603 + ], + "score": 1.0, + "content": "than BERT-Biaffine Model. For instance, the F1 score improvements of LUA over it are", + "type": "text" + }, + { + "bbox": [ + 459, + 589, + 492, + 600 + ], + "score": 0.89, + "content": "1 0 . 1 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 589, + 505, + 603 + ], + "score": 1.0, + "content": "on", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 599, + 285, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 131, + 612 + ], + "score": 1.0, + "content": "range", + "type": "text" + }, + { + "bbox": [ + 131, + 600, + 159, + 611 + ], + "score": 0.39, + "content": "8 - 1 1", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 599, + 177, + 612 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 178, + 600, + 210, + 611 + ], + "score": 0.89, + "content": "4 1 . 2 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 599, + 248, + 612 + ], + "score": 1.0, + "content": "on range", + "type": "text" + }, + { + "bbox": [ + 248, + 600, + 281, + 611 + ], + "score": 0.57, + "content": "1 2 - 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 599, + 285, + 612 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 556, + 505, + 612 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 626, + 244, + 637 + ], + "lines": [ + { + "bbox": [ + 105, + 624, + 246, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 246, + 639 + ], + "score": 1.0, + "content": "4.7 RUNNING TIME ANALYSIS", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 108, + 646, + 504, + 679 + ], + "lines": [ + { + "bbox": [ + 105, + 645, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 505, + 659 + ], + "score": 1.0, + "content": "Table 6 shows the running time comparison among different models. The middle two columns are", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 658, + 505, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 658, + 505, + 669 + ], + "score": 1.0, + "content": "the time complexity of decoding a label sequence. The last column is the time cost of one epoch", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 668, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 505, + 681 + ], + "score": 1.0, + "content": "in training. We set the batch size as 16 and run all the models on 1 GPU. The results indicate that", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 645, + 505, + 681 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 114, + 80, + 497, + 140 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 114, + 80, + 497, + 140 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 80, + 497, + 140 + ], + "spans": [ + { + "bbox": [ + 114, + 80, + 497, + 140 + ], + "score": 0.981, + "html": "
ModelTheoretical ComplexityPractical ComplexityRunning Time
BERT BERT+CRFO(n) O(n|C|2)0(1)5m11s 7m33s
LUAO(n²)O(n) O(n)6m25s
LUA w/Label CorrelationsO(n²|C1²)0(n)7m09s
", + "type": "table", + "image_path": "3639b599177115723ea18d0f6cf9562ca42b4a8d5ff61ee459784a3e91af33fd.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 114, + 80, + 497, + 100.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 114, + 100.0, + 497, + 120.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 114, + 120.0, + 497, + 140.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 166, + 148, + 444, + 160 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 165, + 146, + 446, + 162 + ], + "spans": [ + { + "bbox": [ + 165, + 146, + 446, + 162 + ], + "score": 1.0, + "content": "Table 6: Running time comparison on the syntactic chunking dataset.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 108, + 185, + 505, + 218 + ], + "lines": [ + { + "bbox": [ + 105, + 184, + 505, + 197 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 505, + 197 + ], + "score": 1.0, + "content": "the success of our models in performances does not lead to serious side-effects on efficiency. For", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 196, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 196, + 339, + 209 + ], + "score": 1.0, + "content": "example, with the same practical time complexity, BERT", + "type": "text" + }, + { + "bbox": [ + 339, + 197, + 347, + 206 + ], + "score": 0.58, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 196, + 505, + 209 + ], + "score": 1.0, + "content": "CRF is slower than the proposed LUA", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 207, + 324, + 219 + ], + "spans": [ + { + "bbox": [ + 106, + 207, + 119, + 219 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 119, + 207, + 151, + 218 + ], + "score": 0.88, + "content": "1 5 . 0 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 207, + 293, + 219 + ], + "score": 1.0, + "content": "and LUA w/ Label Correlations by", + "type": "text" + }, + { + "bbox": [ + 294, + 207, + 321, + 218 + ], + "score": 0.88, + "content": "5 . \\dot { 3 } 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 207, + 324, + 219 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "title", + "bbox": [ + 108, + 240, + 210, + 253 + ], + "lines": [ + { + "bbox": [ + 105, + 239, + 213, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 213, + 255 + ], + "score": 1.0, + "content": "5 RELATED WORK", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 268, + 505, + 499 + ], + "lines": [ + { + "bbox": [ + 106, + 269, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 269, + 505, + 282 + ], + "score": 1.0, + "content": "Sequence segmentation aims to partition a fine-grained unit sequence into multiple labeled coarse-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 280, + 506, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 506, + 293 + ], + "score": 1.0, + "content": "grained units. Traditionally, there are two types of methods. The most common is to cast it into", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 103, + 289, + 507, + 306 + ], + "spans": [ + { + "bbox": [ + 103, + 289, + 507, + 306 + ], + "score": 1.0, + "content": "a sequence labeling task (Mesnil et al., 2014; Ma & Hovy, 2016; Chen et al., 2019a) by using", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 301, + 506, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 506, + 315 + ], + "score": 1.0, + "content": "IOB tagging scheme. This method is simple and effective, providing a number of state-of-the-art", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 313, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 506, + 326 + ], + "score": 1.0, + "content": "results. Akbik et al. (2018) present Flair Embeddings that pretrain character embedding in a large", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 324, + 506, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 506, + 336 + ], + "score": 1.0, + "content": "corpus and directly use it, instead of word representation, to encode a sentence. Liu et al. (2019b)", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 335, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 506, + 348 + ], + "score": 1.0, + "content": "introduce GCDT that deepens the state transition path at each position in a sentence, and further", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 345, + 506, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 506, + 358 + ], + "score": 1.0, + "content": "assigns each word with global representation. Luo et al. (2020) use hierarchical contextualized", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 357, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 505, + 369 + ], + "score": 1.0, + "content": "representations to incorporate both sentence-level and document-level information. Nevertheless,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 365, + 505, + 382 + ], + "spans": [ + { + "bbox": [ + 104, + 365, + 505, + 382 + ], + "score": 1.0, + "content": "these models are vulnerable to producing invalid labels and perform poorly in identifying long-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 379, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 505, + 392 + ], + "score": 1.0, + "content": "length segments. This problem is very severe in low-resource setting. Ye & Ling (2018); Liu", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 389, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 506, + 403 + ], + "score": 1.0, + "content": "et al. (2019a) adopt Semi-Markov CRF (Sarawagi & Cohen, 2005) that improves CRF at phrase", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 400, + 506, + 414 + ], + "spans": [ + { + "bbox": [ + 104, + 400, + 506, + 414 + ], + "score": 1.0, + "content": "level. However, the computation of CRF loss is costly in practice and the potential to model the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 410, + 507, + 425 + ], + "spans": [ + { + "bbox": [ + 104, + 410, + 507, + 425 + ], + "score": 1.0, + "content": "label dependencies among segments is limited. An alternative approach that is less studied uses a", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 423, + 505, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 505, + 436 + ], + "score": 1.0, + "content": "transition-based system to incrementally segment and label an input sequence (Zhang et al., 2016;", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 433, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 506, + 446 + ], + "score": 1.0, + "content": "Lample et al., 2016). For instance, Qian et al. (2015) present a transition-based model for joint", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 444, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 505, + 457 + ], + "score": 1.0, + "content": "word segmentation, POS tagging, and text normalization. Wang et al. (2017) employ a transition-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 455, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 506, + 468 + ], + "score": 1.0, + "content": "based model to disfluency detection task, which helps capture non-local chunk-level features. These", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 466, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 505, + 479 + ], + "score": 1.0, + "content": "models have many advantages like theoretically lower time complexity and labeling the extracted", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 476, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 506, + 491 + ], + "score": 1.0, + "content": "mentions at span level. However, to our best knowledge, no recent transition-based models surpass", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 489, + 280, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 280, + 501 + ], + "score": 1.0, + "content": "their sequence labeling based counterparts.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 505, + 505, + 615 + ], + "lines": [ + { + "bbox": [ + 106, + 506, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 505, + 517 + ], + "score": 1.0, + "content": "More recently, there is a surge of interests in span-based models. They treat a segment, instead", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 516, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 505, + 528 + ], + "score": 1.0, + "content": "of a fine-grained token, as the basic unit for labeling. For example, Li et al. (2019) regard NER", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 527, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 506, + 540 + ], + "score": 1.0, + "content": "as a MRC task, where entities are recognized as retrieving answer spans. Since these methods are", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 538, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 506, + 551 + ], + "score": 1.0, + "content": "locally normalized at span level rather than sequence level, they potentially suffer from the label", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 549, + 506, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 506, + 562 + ], + "score": 1.0, + "content": "bias problem. Additionally, they rely on rules to ensure the extracted span set to be valid. Span-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 559, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 505, + 573 + ], + "score": 1.0, + "content": "based methods also emerge in other fields of NLP. In dependency parsing, Wang & Chang (2016)", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 570, + 506, + 584 + ], + "spans": [ + { + "bbox": [ + 104, + 570, + 506, + 584 + ], + "score": 1.0, + "content": "propose a LSTM-based sentence segment embedding method named LSTM-Minus. Stern et al.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 582, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 594 + ], + "score": 1.0, + "content": "(2017) integrate LSTM-minus feature into constituent parsing models. In coreference resolution,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 592, + 506, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 506, + 605 + ], + "score": 1.0, + "content": "Lee et al. (2018) consider all spans in a document as the potential mentions and learn distributions", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 604, + 298, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 298, + 616 + ], + "score": 1.0, + "content": "over all the possible antecedents for each other.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 33.5 + }, + { + "type": "title", + "bbox": [ + 107, + 637, + 195, + 650 + ], + "lines": [ + { + "bbox": [ + 105, + 636, + 197, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 197, + 653 + ], + "score": 1.0, + "content": "6 CONCLUSION", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 679 + ], + "score": 1.0, + "content": "This work proposes a novel LUA for general sequence segmentation tasks. LUA directly scores all", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "the valid segmentation candidates and uses dynamic programming to extract the maximum scoring", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "one. Compared with previous models, LUA naturally guarantees the predicted segmentation to be", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "valid and circumvents the label bias problem. Extensive studies are conducted on 5 tasks across 15", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 709, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 721 + ], + "score": 1.0, + "content": "datasets. We have achieved the state-of-the-art performances on 13 of them. Importantly, the F1", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 721, + 379, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 379, + 733 + ], + "score": 1.0, + "content": "score of identifying long-length segments is significantly improved.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42.5 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "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" + } + ] + } + ] + }, + { + "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": [ + 114, + 80, + 497, + 140 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 114, + 80, + 497, + 140 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 80, + 497, + 140 + ], + "spans": [ + { + "bbox": [ + 114, + 80, + 497, + 140 + ], + "score": 0.981, + "html": "
ModelTheoretical ComplexityPractical ComplexityRunning Time
BERT BERT+CRFO(n) O(n|C|2)0(1)5m11s 7m33s
LUAO(n²)O(n) O(n)6m25s
LUA w/Label CorrelationsO(n²|C1²)0(n)7m09s
", + "type": "table", + "image_path": "3639b599177115723ea18d0f6cf9562ca42b4a8d5ff61ee459784a3e91af33fd.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 114, + 80, + 497, + 100.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 114, + 100.0, + 497, + 120.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 114, + 120.0, + 497, + 140.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 166, + 148, + 444, + 160 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 165, + 146, + 446, + 162 + ], + "spans": [ + { + "bbox": [ + 165, + 146, + 446, + 162 + ], + "score": 1.0, + "content": "Table 6: Running time comparison on the syntactic chunking dataset.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 108, + 185, + 505, + 218 + ], + "lines": [ + { + "bbox": [ + 105, + 184, + 505, + 197 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 505, + 197 + ], + "score": 1.0, + "content": "the success of our models in performances does not lead to serious side-effects on efficiency. For", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 196, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 196, + 339, + 209 + ], + "score": 1.0, + "content": "example, with the same practical time complexity, BERT", + "type": "text" + }, + { + "bbox": [ + 339, + 197, + 347, + 206 + ], + "score": 0.58, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 196, + 505, + 209 + ], + "score": 1.0, + "content": "CRF is slower than the proposed LUA", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 207, + 324, + 219 + ], + "spans": [ + { + "bbox": [ + 106, + 207, + 119, + 219 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 119, + 207, + 151, + 218 + ], + "score": 0.88, + "content": "1 5 . 0 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 207, + 293, + 219 + ], + "score": 1.0, + "content": "and LUA w/ Label Correlations by", + "type": "text" + }, + { + "bbox": [ + 294, + 207, + 321, + 218 + ], + "score": 0.88, + "content": "5 . \\dot { 3 } 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 207, + 324, + 219 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 184, + 505, + 219 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 240, + 210, + 253 + ], + "lines": [ + { + "bbox": [ + 105, + 239, + 213, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 213, + 255 + ], + "score": 1.0, + "content": "5 RELATED WORK", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 268, + 505, + 499 + ], + "lines": [ + { + "bbox": [ + 106, + 269, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 269, + 505, + 282 + ], + "score": 1.0, + "content": "Sequence segmentation aims to partition a fine-grained unit sequence into multiple labeled coarse-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 280, + 506, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 506, + 293 + ], + "score": 1.0, + "content": "grained units. Traditionally, there are two types of methods. The most common is to cast it into", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 103, + 289, + 507, + 306 + ], + "spans": [ + { + "bbox": [ + 103, + 289, + 507, + 306 + ], + "score": 1.0, + "content": "a sequence labeling task (Mesnil et al., 2014; Ma & Hovy, 2016; Chen et al., 2019a) by using", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 301, + 506, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 506, + 315 + ], + "score": 1.0, + "content": "IOB tagging scheme. This method is simple and effective, providing a number of state-of-the-art", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 313, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 506, + 326 + ], + "score": 1.0, + "content": "results. Akbik et al. (2018) present Flair Embeddings that pretrain character embedding in a large", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 324, + 506, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 506, + 336 + ], + "score": 1.0, + "content": "corpus and directly use it, instead of word representation, to encode a sentence. Liu et al. (2019b)", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 335, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 506, + 348 + ], + "score": 1.0, + "content": "introduce GCDT that deepens the state transition path at each position in a sentence, and further", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 345, + 506, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 506, + 358 + ], + "score": 1.0, + "content": "assigns each word with global representation. Luo et al. (2020) use hierarchical contextualized", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 357, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 505, + 369 + ], + "score": 1.0, + "content": "representations to incorporate both sentence-level and document-level information. Nevertheless,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 365, + 505, + 382 + ], + "spans": [ + { + "bbox": [ + 104, + 365, + 505, + 382 + ], + "score": 1.0, + "content": "these models are vulnerable to producing invalid labels and perform poorly in identifying long-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 379, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 505, + 392 + ], + "score": 1.0, + "content": "length segments. This problem is very severe in low-resource setting. Ye & Ling (2018); Liu", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 389, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 506, + 403 + ], + "score": 1.0, + "content": "et al. (2019a) adopt Semi-Markov CRF (Sarawagi & Cohen, 2005) that improves CRF at phrase", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 400, + 506, + 414 + ], + "spans": [ + { + "bbox": [ + 104, + 400, + 506, + 414 + ], + "score": 1.0, + "content": "level. However, the computation of CRF loss is costly in practice and the potential to model the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 410, + 507, + 425 + ], + "spans": [ + { + "bbox": [ + 104, + 410, + 507, + 425 + ], + "score": 1.0, + "content": "label dependencies among segments is limited. An alternative approach that is less studied uses a", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 423, + 505, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 505, + 436 + ], + "score": 1.0, + "content": "transition-based system to incrementally segment and label an input sequence (Zhang et al., 2016;", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 433, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 506, + 446 + ], + "score": 1.0, + "content": "Lample et al., 2016). For instance, Qian et al. (2015) present a transition-based model for joint", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 444, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 505, + 457 + ], + "score": 1.0, + "content": "word segmentation, POS tagging, and text normalization. Wang et al. (2017) employ a transition-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 455, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 506, + 468 + ], + "score": 1.0, + "content": "based model to disfluency detection task, which helps capture non-local chunk-level features. These", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 466, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 505, + 479 + ], + "score": 1.0, + "content": "models have many advantages like theoretically lower time complexity and labeling the extracted", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 476, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 506, + 491 + ], + "score": 1.0, + "content": "mentions at span level. However, to our best knowledge, no recent transition-based models surpass", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 489, + 280, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 280, + 501 + ], + "score": 1.0, + "content": "their sequence labeling based counterparts.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 18, + "bbox_fs": [ + 103, + 269, + 507, + 501 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 505, + 505, + 615 + ], + "lines": [ + { + "bbox": [ + 106, + 506, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 505, + 517 + ], + "score": 1.0, + "content": "More recently, there is a surge of interests in span-based models. They treat a segment, instead", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 516, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 505, + 528 + ], + "score": 1.0, + "content": "of a fine-grained token, as the basic unit for labeling. For example, Li et al. (2019) regard NER", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 527, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 506, + 540 + ], + "score": 1.0, + "content": "as a MRC task, where entities are recognized as retrieving answer spans. Since these methods are", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 538, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 506, + 551 + ], + "score": 1.0, + "content": "locally normalized at span level rather than sequence level, they potentially suffer from the label", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 549, + 506, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 506, + 562 + ], + "score": 1.0, + "content": "bias problem. Additionally, they rely on rules to ensure the extracted span set to be valid. Span-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 559, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 505, + 573 + ], + "score": 1.0, + "content": "based methods also emerge in other fields of NLP. In dependency parsing, Wang & Chang (2016)", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 570, + 506, + 584 + ], + "spans": [ + { + "bbox": [ + 104, + 570, + 506, + 584 + ], + "score": 1.0, + "content": "propose a LSTM-based sentence segment embedding method named LSTM-Minus. Stern et al.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 582, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 594 + ], + "score": 1.0, + "content": "(2017) integrate LSTM-minus feature into constituent parsing models. In coreference resolution,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 592, + 506, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 506, + 605 + ], + "score": 1.0, + "content": "Lee et al. (2018) consider all spans in a document as the potential mentions and learn distributions", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 604, + 298, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 298, + 616 + ], + "score": 1.0, + "content": "over all the possible antecedents for each other.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 33.5, + "bbox_fs": [ + 104, + 506, + 506, + 616 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 637, + 195, + 650 + ], + "lines": [ + { + "bbox": [ + 105, + 636, + 197, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 197, + 653 + ], + "score": 1.0, + "content": "6 CONCLUSION", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 679 + ], + "score": 1.0, + "content": "This work proposes a novel LUA for general sequence segmentation tasks. LUA directly scores all", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "the valid segmentation candidates and uses dynamic programming to extract the maximum scoring", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "one. Compared with previous models, LUA naturally guarantees the predicted segmentation to be", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "valid and circumvents the label bias problem. Extensive studies are conducted on 5 tasks across 15", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 709, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 721 + ], + "score": 1.0, + "content": "datasets. We have achieved the state-of-the-art performances on 13 of them. Importantly, the F1", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 721, + 379, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 379, + 733 + ], + "score": 1.0, + "content": "score of identifying long-length segments is significantly improved.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 665, + 506, + 733 + ] + } + ] + }, + { + "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": [ + 108, + 101, + 504, + 134 + ], + "lines": [ + { + "bbox": [ + 105, + 99, + 506, + 114 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 506, + 114 + ], + "score": 1.0, + "content": "Alan Akbik, Duncan Blythe, and Roland Vollgraf. Contextual string embeddings for sequence", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 110, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 115, + 110, + 505, + 126 + ], + "score": 1.0, + "content": "labeling. In Proceedings of the 27th International Conference on Computational Linguistics, pp.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 117, + 122, + 191, + 134 + ], + "spans": [ + { + "bbox": [ + 117, + 122, + 191, + 134 + ], + "score": 1.0, + "content": "1638–1649, 2018.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 106, + 142, + 414, + 155 + ], + "lines": [ + { + "bbox": [ + 106, + 142, + 414, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 142, + 414, + 156 + ], + "score": 1.0, + "content": "Richard Bellman. Dynamic programming. Science, 153(3731):34–37, 1966.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 108, + 163, + 505, + 197 + ], + "lines": [ + { + "bbox": [ + 105, + 162, + 506, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 162, + 506, + 177 + ], + "score": 1.0, + "content": "Hui Chen, Zijia Lin, Guiguang Ding, Jianguang Lou, Yusen Zhang, and Borje Karlsson. Grn:", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 174, + 505, + 187 + ], + "spans": [ + { + "bbox": [ + 116, + 174, + 505, + 187 + ], + "score": 1.0, + "content": "Gated relation network to enhance convolutional neural network for named entity recognition. In", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 184, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 115, + 184, + 505, + 198 + ], + "score": 1.0, + "content": "Proceedings of the AAAI Conference on Artificial Intelligence, volume 33, pp. 6236–6243, 2019a.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 105, + 205, + 504, + 228 + ], + "lines": [ + { + "bbox": [ + 106, + 204, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 505, + 218 + ], + "score": 1.0, + "content": "Qian Chen, Zhu Zhuo, and Wen Wang. Bert for joint intent classification and slot filling. arXiv", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 114, + 217, + 259, + 228 + ], + "spans": [ + { + "bbox": [ + 114, + 217, + 259, + 228 + ], + "score": 1.0, + "content": "preprint arXiv:1902.10909, 2019b.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 106, + 236, + 505, + 281 + ], + "lines": [ + { + "bbox": [ + 106, + 237, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 505, + 249 + ], + "score": 1.0, + "content": "Alice Coucke, Alaa Saade, Adrien Ball, Theodore Bluche, Alexandre Caulier, David Leroy, Cl ´ ement ´", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 248, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 116, + 248, + 505, + 260 + ], + "score": 1.0, + "content": "Doumouro, Thibault Gisselbrecht, Francesco Caltagirone, Thibaut Lavril, et al. Snips voice plat-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 259, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 116, + 259, + 505, + 272 + ], + "score": 1.0, + "content": "form: an embedded spoken language understanding system for private-by-design voice interfaces.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 270, + 279, + 281 + ], + "spans": [ + { + "bbox": [ + 115, + 270, + 279, + 281 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1805.10190, 2018.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 103, + 290, + 504, + 313 + ], + "lines": [ + { + "bbox": [ + 105, + 289, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 505, + 303 + ], + "score": 1.0, + "content": "Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 300, + 500, + 313 + ], + "spans": [ + { + "bbox": [ + 115, + 300, + 500, + 313 + ], + "score": 1.0, + "content": "bidirectional transformers for language understanding. arXiv preprint arXiv:1810.04805, 2018.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 104, + 321, + 503, + 344 + ], + "lines": [ + { + "bbox": [ + 105, + 319, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 505, + 335 + ], + "score": 1.0, + "content": "Timothy Dozat and Christopher D Manning. Deep biaffine attention for neural dependency parsing.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 332, + 280, + 344 + ], + "spans": [ + { + "bbox": [ + 115, + 332, + 280, + 344 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1611.01734, 2016.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 106, + 352, + 505, + 375 + ], + "lines": [ + { + "bbox": [ + 105, + 351, + 506, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 506, + 366 + ], + "score": 1.0, + "content": "Thomas Emerson. The second international chinese word segmentation bakeoff. In Proceedings of", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 362, + 398, + 376 + ], + "spans": [ + { + "bbox": [ + 115, + 362, + 398, + 376 + ], + "score": 1.0, + "content": "the fourth SIGHAN workshop on Chinese language Processing, 2005.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 106, + 383, + 506, + 429 + ], + "lines": [ + { + "bbox": [ + 106, + 384, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 106, + 384, + 505, + 396 + ], + "score": 1.0, + "content": "Chih-Wen Goo, Guang Gao, Yun-Kai Hsu, Chih-Li Huo, Tsung-Chieh Chen, Keng-Wei Hsu, and", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 395, + 506, + 408 + ], + "spans": [ + { + "bbox": [ + 116, + 395, + 506, + 408 + ], + "score": 1.0, + "content": "Yun-Nung Chen. Slot-gated modeling for joint slot filling and intent prediction. In Proceedings", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 406, + 506, + 418 + ], + "spans": [ + { + "bbox": [ + 115, + 406, + 506, + 418 + ], + "score": 1.0, + "content": "of the 2018 Conference of the North American Chapter of the Association for Computational", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 417, + 480, + 430 + ], + "spans": [ + { + "bbox": [ + 115, + 417, + 480, + 430 + ], + "score": 1.0, + "content": "Linguistics: Human Language Technologies, Volume 2 (Short Papers), pp. 753–757, 2018.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 107, + 436, + 504, + 470 + ], + "lines": [ + { + "bbox": [ + 105, + 436, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 505, + 450 + ], + "score": 1.0, + "content": "Charles T Hemphill, John J Godfrey, and George R Doddington. The atis spoken language systems", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 448, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 115, + 448, + 505, + 462 + ], + "score": 1.0, + "content": "pilot corpus. In Speech and Natural Language: Proceedings of a Workshop Held at Hidden Valley,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 459, + 273, + 471 + ], + "spans": [ + { + "bbox": [ + 116, + 459, + 273, + 471 + ], + "score": 1.0, + "content": "Pennsylvania, June 24-27, 1990, 1990.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 104, + 479, + 504, + 502 + ], + "lines": [ + { + "bbox": [ + 105, + 478, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 505, + 493 + ], + "score": 1.0, + "content": "Sepp Hochreiter and Jurgen Schmidhuber. Long short-term memory. ¨ Neural computation, 9(8):", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 490, + 192, + 502 + ], + "spans": [ + { + "bbox": [ + 116, + 490, + 192, + 502 + ], + "score": 1.0, + "content": "1735–1780, 1997.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 107, + 510, + 505, + 544 + ], + "lines": [ + { + "bbox": [ + 106, + 510, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 506, + 524 + ], + "score": 1.0, + "content": "Weipeng Huang, Xingyi Cheng, Kunlong Chen, Taifeng Wang, and Wei Chu. Toward fast", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 522, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 116, + 522, + 505, + 534 + ], + "score": 1.0, + "content": "and accurate neural chinese word segmentation with multi-criteria learning. arXiv preprint", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 532, + 219, + 545 + ], + "spans": [ + { + "bbox": [ + 115, + 532, + 219, + 545 + ], + "score": 1.0, + "content": "arXiv:1903.04190, 2019.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 106, + 552, + 504, + 576 + ], + "lines": [ + { + "bbox": [ + 105, + 552, + 505, + 566 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 505, + 566 + ], + "score": 1.0, + "content": "Zhiheng Huang, Wei Xu, and Kai Yu. Bidirectional lstm-crf models for sequence tagging. arXiv", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 564, + 254, + 576 + ], + "spans": [ + { + "bbox": [ + 115, + 564, + 254, + 576 + ], + "score": 1.0, + "content": "preprint arXiv:1508.01991, 2015.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 106, + 584, + 504, + 607 + ], + "lines": [ + { + "bbox": [ + 105, + 582, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 506, + 597 + ], + "score": 1.0, + "content": "Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 595, + 214, + 606 + ], + "spans": [ + { + "bbox": [ + 115, + 595, + 214, + 606 + ], + "score": 1.0, + "content": "arXiv:1412.6980, 2014.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 105, + 615, + 504, + 639 + ], + "lines": [ + { + "bbox": [ + 106, + 616, + 504, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 616, + 504, + 627 + ], + "score": 1.0, + "content": "John Lafferty, Andrew McCallum, and Fernando CN Pereira. Conditional random fields: Proba-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 626, + 378, + 639 + ], + "spans": [ + { + "bbox": [ + 116, + 626, + 378, + 639 + ], + "score": 1.0, + "content": "bilistic models for segmenting and labeling sequence data. 2001.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 107, + 646, + 504, + 670 + ], + "lines": [ + { + "bbox": [ + 105, + 646, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 505, + 660 + ], + "score": 1.0, + "content": "Guillaume Lample, Miguel Ballesteros, Sandeep Subramanian, Kazuya Kawakami, and Chris Dyer.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 658, + 481, + 671 + ], + "spans": [ + { + "bbox": [ + 116, + 658, + 481, + 671 + ], + "score": 1.0, + "content": "Neural architectures for named entity recognition. arXiv preprint arXiv:1603.01360, 2016.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 105, + 678, + 503, + 701 + ], + "lines": [ + { + "bbox": [ + 106, + 677, + 504, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 504, + 690 + ], + "score": 1.0, + "content": "Kenton Lee, Luheng He, and Luke Zettlemoyer. Higher-order coreference resolution with coarse-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 690, + 350, + 700 + ], + "spans": [ + { + "bbox": [ + 116, + 690, + 350, + 700 + ], + "score": 1.0, + "content": "to-fine inference. arXiv preprint arXiv:1804.05392, 2018.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Xiaoya Li, Jingrong Feng, Yuxian Meng, Qinghong Han, Fei Wu, and Jiwei Li. A unified mrc", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 720, + 444, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 444, + 732 + ], + "score": 1.0, + "content": "framework for named entity recognition. arXiv preprint arXiv:1910.11476, 2019.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "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" + } + ] + } + ] + }, + { + "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, + 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": [ + 108, + 101, + 504, + 134 + ], + "lines": [ + { + "bbox": [ + 105, + 99, + 506, + 114 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 506, + 114 + ], + "score": 1.0, + "content": "Alan Akbik, Duncan Blythe, and Roland Vollgraf. Contextual string embeddings for sequence", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 110, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 115, + 110, + 505, + 126 + ], + "score": 1.0, + "content": "labeling. In Proceedings of the 27th International Conference on Computational Linguistics, pp.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 117, + 122, + 191, + 134 + ], + "spans": [ + { + "bbox": [ + 117, + 122, + 191, + 134 + ], + "score": 1.0, + "content": "1638–1649, 2018.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 99, + 506, + 134 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 142, + 414, + 155 + ], + "lines": [ + { + "bbox": [ + 106, + 142, + 414, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 142, + 414, + 156 + ], + "score": 1.0, + "content": "Richard Bellman. Dynamic programming. Science, 153(3731):34–37, 1966.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 106, + 142, + 414, + 156 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 163, + 505, + 197 + ], + "lines": [ + { + "bbox": [ + 105, + 162, + 506, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 162, + 506, + 177 + ], + "score": 1.0, + "content": "Hui Chen, Zijia Lin, Guiguang Ding, Jianguang Lou, Yusen Zhang, and Borje Karlsson. Grn:", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 174, + 505, + 187 + ], + "spans": [ + { + "bbox": [ + 116, + 174, + 505, + 187 + ], + "score": 1.0, + "content": "Gated relation network to enhance convolutional neural network for named entity recognition. In", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 184, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 115, + 184, + 505, + 198 + ], + "score": 1.0, + "content": "Proceedings of the AAAI Conference on Artificial Intelligence, volume 33, pp. 6236–6243, 2019a.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 162, + 506, + 198 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 205, + 504, + 228 + ], + "lines": [ + { + "bbox": [ + 106, + 204, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 505, + 218 + ], + "score": 1.0, + "content": "Qian Chen, Zhu Zhuo, and Wen Wang. Bert for joint intent classification and slot filling. arXiv", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 114, + 217, + 259, + 228 + ], + "spans": [ + { + "bbox": [ + 114, + 217, + 259, + 228 + ], + "score": 1.0, + "content": "preprint arXiv:1902.10909, 2019b.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 106, + 204, + 505, + 228 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 236, + 505, + 281 + ], + "lines": [ + { + "bbox": [ + 106, + 237, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 505, + 249 + ], + "score": 1.0, + "content": "Alice Coucke, Alaa Saade, Adrien Ball, Theodore Bluche, Alexandre Caulier, David Leroy, Cl ´ ement ´", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 248, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 116, + 248, + 505, + 260 + ], + "score": 1.0, + "content": "Doumouro, Thibault Gisselbrecht, Francesco Caltagirone, Thibaut Lavril, et al. Snips voice plat-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 259, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 116, + 259, + 505, + 272 + ], + "score": 1.0, + "content": "form: an embedded spoken language understanding system for private-by-design voice interfaces.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 270, + 279, + 281 + ], + "spans": [ + { + "bbox": [ + 115, + 270, + 279, + 281 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1805.10190, 2018.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5, + "bbox_fs": [ + 106, + 237, + 505, + 281 + ] + }, + { + "type": "text", + "bbox": [ + 103, + 290, + 504, + 313 + ], + "lines": [ + { + "bbox": [ + 105, + 289, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 505, + 303 + ], + "score": 1.0, + "content": "Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 300, + 500, + 313 + ], + "spans": [ + { + "bbox": [ + 115, + 300, + 500, + 313 + ], + "score": 1.0, + "content": "bidirectional transformers for language understanding. arXiv preprint arXiv:1810.04805, 2018.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 289, + 505, + 313 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 321, + 503, + 344 + ], + "lines": [ + { + "bbox": [ + 105, + 319, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 505, + 335 + ], + "score": 1.0, + "content": "Timothy Dozat and Christopher D Manning. Deep biaffine attention for neural dependency parsing.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 332, + 280, + 344 + ], + "spans": [ + { + "bbox": [ + 115, + 332, + 280, + 344 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1611.01734, 2016.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 319, + 505, + 344 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 352, + 505, + 375 + ], + "lines": [ + { + "bbox": [ + 105, + 351, + 506, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 506, + 366 + ], + "score": 1.0, + "content": "Thomas Emerson. The second international chinese word segmentation bakeoff. In Proceedings of", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 362, + 398, + 376 + ], + "spans": [ + { + "bbox": [ + 115, + 362, + 398, + 376 + ], + "score": 1.0, + "content": "the fourth SIGHAN workshop on Chinese language Processing, 2005.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 351, + 506, + 376 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 383, + 506, + 429 + ], + "lines": [ + { + "bbox": [ + 106, + 384, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 106, + 384, + 505, + 396 + ], + "score": 1.0, + "content": "Chih-Wen Goo, Guang Gao, Yun-Kai Hsu, Chih-Li Huo, Tsung-Chieh Chen, Keng-Wei Hsu, and", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 395, + 506, + 408 + ], + "spans": [ + { + "bbox": [ + 116, + 395, + 506, + 408 + ], + "score": 1.0, + "content": "Yun-Nung Chen. Slot-gated modeling for joint slot filling and intent prediction. In Proceedings", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 406, + 506, + 418 + ], + "spans": [ + { + "bbox": [ + 115, + 406, + 506, + 418 + ], + "score": 1.0, + "content": "of the 2018 Conference of the North American Chapter of the Association for Computational", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 417, + 480, + 430 + ], + "spans": [ + { + "bbox": [ + 115, + 417, + 480, + 430 + ], + "score": 1.0, + "content": "Linguistics: Human Language Technologies, Volume 2 (Short Papers), pp. 753–757, 2018.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5, + "bbox_fs": [ + 106, + 384, + 506, + 430 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 436, + 504, + 470 + ], + "lines": [ + { + "bbox": [ + 105, + 436, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 505, + 450 + ], + "score": 1.0, + "content": "Charles T Hemphill, John J Godfrey, and George R Doddington. The atis spoken language systems", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 448, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 115, + 448, + 505, + 462 + ], + "score": 1.0, + "content": "pilot corpus. In Speech and Natural Language: Proceedings of a Workshop Held at Hidden Valley,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 459, + 273, + 471 + ], + "spans": [ + { + "bbox": [ + 116, + 459, + 273, + 471 + ], + "score": 1.0, + "content": "Pennsylvania, June 24-27, 1990, 1990.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 436, + 505, + 471 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 479, + 504, + 502 + ], + "lines": [ + { + "bbox": [ + 105, + 478, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 505, + 493 + ], + "score": 1.0, + "content": "Sepp Hochreiter and Jurgen Schmidhuber. Long short-term memory. ¨ Neural computation, 9(8):", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 490, + 192, + 502 + ], + "spans": [ + { + "bbox": [ + 116, + 490, + 192, + 502 + ], + "score": 1.0, + "content": "1735–1780, 1997.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 478, + 505, + 502 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 510, + 505, + 544 + ], + "lines": [ + { + "bbox": [ + 106, + 510, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 506, + 524 + ], + "score": 1.0, + "content": "Weipeng Huang, Xingyi Cheng, Kunlong Chen, Taifeng Wang, and Wei Chu. Toward fast", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 522, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 116, + 522, + 505, + 534 + ], + "score": 1.0, + "content": "and accurate neural chinese word segmentation with multi-criteria learning. arXiv preprint", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 532, + 219, + 545 + ], + "spans": [ + { + "bbox": [ + 115, + 532, + 219, + 545 + ], + "score": 1.0, + "content": "arXiv:1903.04190, 2019.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30, + "bbox_fs": [ + 106, + 510, + 506, + 545 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 552, + 504, + 576 + ], + "lines": [ + { + "bbox": [ + 105, + 552, + 505, + 566 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 505, + 566 + ], + "score": 1.0, + "content": "Zhiheng Huang, Wei Xu, and Kai Yu. Bidirectional lstm-crf models for sequence tagging. arXiv", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 564, + 254, + 576 + ], + "spans": [ + { + "bbox": [ + 115, + 564, + 254, + 576 + ], + "score": 1.0, + "content": "preprint arXiv:1508.01991, 2015.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 552, + 505, + 576 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 584, + 504, + 607 + ], + "lines": [ + { + "bbox": [ + 105, + 582, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 506, + 597 + ], + "score": 1.0, + "content": "Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 595, + 214, + 606 + ], + "spans": [ + { + "bbox": [ + 115, + 595, + 214, + 606 + ], + "score": 1.0, + "content": "arXiv:1412.6980, 2014.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 582, + 506, + 606 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 615, + 504, + 639 + ], + "lines": [ + { + "bbox": [ + 106, + 616, + 504, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 616, + 504, + 627 + ], + "score": 1.0, + "content": "John Lafferty, Andrew McCallum, and Fernando CN Pereira. Conditional random fields: Proba-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 626, + 378, + 639 + ], + "spans": [ + { + "bbox": [ + 116, + 626, + 378, + 639 + ], + "score": 1.0, + "content": "bilistic models for segmenting and labeling sequence data. 2001.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 106, + 616, + 504, + 639 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 646, + 504, + 670 + ], + "lines": [ + { + "bbox": [ + 105, + 646, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 505, + 660 + ], + "score": 1.0, + "content": "Guillaume Lample, Miguel Ballesteros, Sandeep Subramanian, Kazuya Kawakami, and Chris Dyer.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 658, + 481, + 671 + ], + "spans": [ + { + "bbox": [ + 116, + 658, + 481, + 671 + ], + "score": 1.0, + "content": "Neural architectures for named entity recognition. arXiv preprint arXiv:1603.01360, 2016.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 646, + 505, + 671 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 678, + 503, + 701 + ], + "lines": [ + { + "bbox": [ + 106, + 677, + 504, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 504, + 690 + ], + "score": 1.0, + "content": "Kenton Lee, Luheng He, and Luke Zettlemoyer. Higher-order coreference resolution with coarse-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 690, + 350, + 700 + ], + "spans": [ + { + "bbox": [ + 116, + 690, + 350, + 700 + ], + "score": 1.0, + "content": "to-fine inference. arXiv preprint arXiv:1804.05392, 2018.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5, + "bbox_fs": [ + 106, + 677, + 504, + 700 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Xiaoya Li, Jingrong Feng, Yuxian Meng, Qinghong Han, Fei Wu, and Jiwei Li. A unified mrc", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 720, + 444, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 444, + 732 + ], + "score": 1.0, + "content": "framework for named entity recognition. arXiv preprint arXiv:1910.11476, 2019.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5, + "bbox_fs": [ + 106, + 709, + 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": "Tianyu Liu, Jin-Ge Yao, and Chin-Yew Lin. Towards improving neural named entity recognition", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 505, + 107 + ], + "score": 1.0, + "content": "with gazetteers. In Proceedings of the 57th Annual Meeting of the Association for Computational", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 105, + 259, + 117 + ], + "spans": [ + { + "bbox": [ + 116, + 105, + 259, + 117 + ], + "score": 1.0, + "content": "Linguistics, pp. 5301–5307, 2019a.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 108, + 124, + 504, + 158 + ], + "lines": [ + { + "bbox": [ + 106, + 124, + 506, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 124, + 506, + 137 + ], + "score": 1.0, + "content": "Yijin Liu, Fandong Meng, Jinchao Zhang, Jinan Xu, Yufeng Chen, and Jie Zhou. Gcdt: A", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 135, + 506, + 148 + ], + "spans": [ + { + "bbox": [ + 115, + 135, + 506, + 148 + ], + "score": 1.0, + "content": "global context enhanced deep transition architecture for sequence labeling. arXiv preprint", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 146, + 224, + 157 + ], + "spans": [ + { + "bbox": [ + 115, + 146, + 224, + 157 + ], + "score": 1.0, + "content": "arXiv:1906.02437, 2019b.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 107, + 165, + 506, + 200 + ], + "lines": [ + { + "bbox": [ + 106, + 165, + 505, + 179 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 505, + 179 + ], + "score": 1.0, + "content": "Yijin Liu, Fandong Meng, Jinchao Zhang, Jie Zhou, Yufeng Chen, and Jinan Xu. Cm-net:", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 177, + 505, + 190 + ], + "spans": [ + { + "bbox": [ + 115, + 177, + 505, + 190 + ], + "score": 1.0, + "content": "A novel collaborative memory network for spoken language understanding. arXiv preprint", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 188, + 224, + 200 + ], + "spans": [ + { + "bbox": [ + 115, + 188, + 224, + 200 + ], + "score": 1.0, + "content": "arXiv:1909.06937, 2019c.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 208, + 504, + 231 + ], + "lines": [ + { + "bbox": [ + 107, + 208, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 107, + 208, + 505, + 221 + ], + "score": 1.0, + "content": "Ying Luo, Fengshun Xiao, and Hai Zhao. Hierarchical contextualized representation for named", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 219, + 320, + 231 + ], + "spans": [ + { + "bbox": [ + 115, + 219, + 320, + 231 + ], + "score": 1.0, + "content": "entity recognition. In AAAI, pp. 8441–8448, 2020.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 104, + 239, + 504, + 262 + ], + "lines": [ + { + "bbox": [ + 105, + 239, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 505, + 252 + ], + "score": 1.0, + "content": "Ji Ma, Kuzman Ganchev, and David Weiss. State-of-the-art chinese word segmentation with bi-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 250, + 306, + 263 + ], + "spans": [ + { + "bbox": [ + 115, + 250, + 306, + 263 + ], + "score": 1.0, + "content": "lstms. arXiv preprint arXiv:1808.06511, 2018.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 104, + 270, + 504, + 293 + ], + "lines": [ + { + "bbox": [ + 106, + 270, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 505, + 282 + ], + "score": 1.0, + "content": "Xuezhe Ma and Eduard Hovy. End-to-end sequence labeling via bi-directional lstm-cnns-crf. arXiv", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 281, + 254, + 293 + ], + "spans": [ + { + "bbox": [ + 115, + 281, + 254, + 293 + ], + "score": 1.0, + "content": "preprint arXiv:1603.01354, 2016.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 108, + 300, + 504, + 335 + ], + "lines": [ + { + "bbox": [ + 106, + 300, + 505, + 314 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 505, + 314 + ], + "score": 1.0, + "content": "Yuxian Meng, Wei Wu, Fei Wang, Xiaoya Li, Ping Nie, Fan Yin, Muyu Li, Qinghong Han, Xiaofei", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 312, + 506, + 324 + ], + "spans": [ + { + "bbox": [ + 116, + 312, + 506, + 324 + ], + "score": 1.0, + "content": "Sun, and Jiwei Li. Glyce: Glyph-vectors for chinese character representations. In Advances in", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 322, + 370, + 335 + ], + "spans": [ + { + "bbox": [ + 115, + 322, + 370, + 335 + ], + "score": 1.0, + "content": "Neural Information Processing Systems, pp. 2746–2757, 2019.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 342, + 505, + 387 + ], + "lines": [ + { + "bbox": [ + 106, + 343, + 504, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 504, + 356 + ], + "score": 1.0, + "content": "Gregoire Mesnil, Yann Dauphin, Kaisheng Yao, Yoshua Bengio, Li Deng, Dilek Hakkani-Tur, Xi-´", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 354, + 505, + 366 + ], + "spans": [ + { + "bbox": [ + 116, + 354, + 505, + 366 + ], + "score": 1.0, + "content": "aodong He, Larry Heck, Gokhan Tur, Dong Yu, et al. Using recurrent neural networks for slot", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 365, + 506, + 378 + ], + "spans": [ + { + "bbox": [ + 115, + 365, + 506, + 378 + ], + "score": 1.0, + "content": "filling in spoken language understanding. IEEE/ACM Transactions on Audio, Speech, and Lan-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 376, + 282, + 388 + ], + "spans": [ + { + "bbox": [ + 115, + 376, + 282, + 388 + ], + "score": 1.0, + "content": "guage Processing, 23(3):530–539, 2014.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 106, + 395, + 505, + 441 + ], + "lines": [ + { + "bbox": [ + 104, + 395, + 506, + 409 + ], + "spans": [ + { + "bbox": [ + 104, + 395, + 506, + 409 + ], + "score": 1.0, + "content": "Joakim Nivre, Marie-Catherine De Marneffe, Filip Ginter, Yoav Goldberg, Jan Hajic, Christopher D", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 407, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 115, + 407, + 505, + 419 + ], + "score": 1.0, + "content": "Manning, Ryan McDonald, Slav Petrov, Sampo Pyysalo, Natalia Silveira, et al. Universal de-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 419, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 115, + 419, + 505, + 430 + ], + "score": 1.0, + "content": "pendencies v1: A multilingual treebank collection. In Proceedings of the Tenth International", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 429, + 465, + 442 + ], + "spans": [ + { + "bbox": [ + 116, + 429, + 465, + 442 + ], + "score": 1.0, + "content": "Conference on Language Resources and Evaluation (LREC’16), pp. 1659–1666, 2016.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 105, + 448, + 504, + 472 + ], + "lines": [ + { + "bbox": [ + 105, + 449, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 505, + 462 + ], + "score": 1.0, + "content": "Nanyun Peng et al. Jointly Learning Representations for Low-Resource Information Extraction.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 459, + 353, + 472 + ], + "spans": [ + { + "bbox": [ + 116, + 459, + 353, + 472 + ], + "score": 1.0, + "content": "PhD thesis, Ph. D. thesis, Johns Hopkins University, 2017.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 107, + 479, + 505, + 524 + ], + "lines": [ + { + "bbox": [ + 105, + 479, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 505, + 493 + ], + "score": 1.0, + "content": "Sameer Pradhan, Alessandro Moschitti, Nianwen Xue, Hwee Tou Ng, Anders Bjorkelund, Olga ¨", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 491, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 115, + 491, + 505, + 503 + ], + "score": 1.0, + "content": "Uryupina, Yuchen Zhang, and Zhi Zhong. Towards robust linguistic analysis using ontonotes. In", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 501, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 115, + 501, + 505, + 516 + ], + "score": 1.0, + "content": "Proceedings of the Seventeenth Conference on Computational Natural Language Learning, pp.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 513, + 181, + 523 + ], + "spans": [ + { + "bbox": [ + 115, + 513, + 181, + 523 + ], + "score": 1.0, + "content": "143–152, 2013.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 106, + 532, + 505, + 567 + ], + "lines": [ + { + "bbox": [ + 106, + 532, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 506, + 546 + ], + "score": 1.0, + "content": "Tao Qian, Yue Zhang, Meishan Zhang, Yafeng Ren, and Donghong Ji. A transition-based model", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 543, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 115, + 543, + 506, + 558 + ], + "score": 1.0, + "content": "for joint segmentation, pos-tagging and normalization. In Proceedings of the 2015 Conference on", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 554, + 420, + 568 + ], + "spans": [ + { + "bbox": [ + 116, + 554, + 420, + 568 + ], + "score": 1.0, + "content": "Empirical Methods in Natural Language Processing, pp. 1837–1846, 2015.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 106, + 574, + 504, + 597 + ], + "lines": [ + { + "bbox": [ + 105, + 573, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 505, + 587 + ], + "score": 1.0, + "content": "Erik F Sang and Sabine Buchholz. Introduction to the conll-2000 shared task: Chunking. arXiv", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 586, + 227, + 597 + ], + "spans": [ + { + "bbox": [ + 115, + 586, + 227, + 597 + ], + "score": 1.0, + "content": "preprint cs/0009008, 2000.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 105, + 605, + 504, + 629 + ], + "lines": [ + { + "bbox": [ + 105, + 603, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 505, + 619 + ], + "score": 1.0, + "content": "Erik F Sang and Fien De Meulder. Introduction to the conll-2003 shared task: Language-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 616, + 409, + 629 + ], + "spans": [ + { + "bbox": [ + 115, + 616, + 409, + 629 + ], + "score": 1.0, + "content": "independent named entity recognition. arXiv preprint cs/0306050, 2003.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 106, + 636, + 504, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 636, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 505, + 649 + ], + "score": 1.0, + "content": "Sunita Sarawagi and William W Cohen. Semi-markov conditional random fields for information", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 647, + 473, + 660 + ], + "spans": [ + { + "bbox": [ + 115, + 647, + 473, + 660 + ], + "score": 1.0, + "content": "extraction. In Advances in neural information processing systems, pp. 1185–1192, 2005.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 105, + 667, + 504, + 690 + ], + "lines": [ + { + "bbox": [ + 106, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 505, + 680 + ], + "score": 1.0, + "content": "Sebastian Schuster, Sonal Gupta, Rushin Shah, and Mike Lewis. Cross-lingual transfer learning for", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 678, + 415, + 691 + ], + "spans": [ + { + "bbox": [ + 116, + 678, + 415, + 691 + ], + "score": 1.0, + "content": "multilingual task oriented dialog. arXiv preprint arXiv:1810.13327, 2018.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 697, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 697, + 505, + 712 + ], + "score": 1.0, + "content": "Yan Shao, Christian Hardmeier, Jorg Tiedemann, and Joakim Nivre. Character-based joint segmen- ¨", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "tation and pos tagging for chinese using bidirectional rnn-crf. arXiv preprint arXiv:1704.01314,", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 114, + 719, + 143, + 732 + ], + "spans": [ + { + "bbox": [ + 114, + 719, + 143, + 732 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "Tianyu Liu, Jin-Ge Yao, and Chin-Yew Lin. Towards improving neural named entity recognition", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 505, + 107 + ], + "score": 1.0, + "content": "with gazetteers. In Proceedings of the 57th Annual Meeting of the Association for Computational", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 105, + 259, + 117 + ], + "spans": [ + { + "bbox": [ + 116, + 105, + 259, + 117 + ], + "score": 1.0, + "content": "Linguistics, pp. 5301–5307, 2019a.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 106, + 81, + 505, + 117 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 124, + 504, + 158 + ], + "lines": [ + { + "bbox": [ + 106, + 124, + 506, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 124, + 506, + 137 + ], + "score": 1.0, + "content": "Yijin Liu, Fandong Meng, Jinchao Zhang, Jinan Xu, Yufeng Chen, and Jie Zhou. Gcdt: A", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 135, + 506, + 148 + ], + "spans": [ + { + "bbox": [ + 115, + 135, + 506, + 148 + ], + "score": 1.0, + "content": "global context enhanced deep transition architecture for sequence labeling. arXiv preprint", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 146, + 224, + 157 + ], + "spans": [ + { + "bbox": [ + 115, + 146, + 224, + 157 + ], + "score": 1.0, + "content": "arXiv:1906.02437, 2019b.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4, + "bbox_fs": [ + 106, + 124, + 506, + 157 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 165, + 506, + 200 + ], + "lines": [ + { + "bbox": [ + 106, + 165, + 505, + 179 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 505, + 179 + ], + "score": 1.0, + "content": "Yijin Liu, Fandong Meng, Jinchao Zhang, Jie Zhou, Yufeng Chen, and Jinan Xu. Cm-net:", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 177, + 505, + 190 + ], + "spans": [ + { + "bbox": [ + 115, + 177, + 505, + 190 + ], + "score": 1.0, + "content": "A novel collaborative memory network for spoken language understanding. arXiv preprint", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 188, + 224, + 200 + ], + "spans": [ + { + "bbox": [ + 115, + 188, + 224, + 200 + ], + "score": 1.0, + "content": "arXiv:1909.06937, 2019c.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 106, + 165, + 505, + 200 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 208, + 504, + 231 + ], + "lines": [ + { + "bbox": [ + 107, + 208, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 107, + 208, + 505, + 221 + ], + "score": 1.0, + "content": "Ying Luo, Fengshun Xiao, and Hai Zhao. Hierarchical contextualized representation for named", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 219, + 320, + 231 + ], + "spans": [ + { + "bbox": [ + 115, + 219, + 320, + 231 + ], + "score": 1.0, + "content": "entity recognition. In AAAI, pp. 8441–8448, 2020.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 107, + 208, + 505, + 231 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 239, + 504, + 262 + ], + "lines": [ + { + "bbox": [ + 105, + 239, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 505, + 252 + ], + "score": 1.0, + "content": "Ji Ma, Kuzman Ganchev, and David Weiss. State-of-the-art chinese word segmentation with bi-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 250, + 306, + 263 + ], + "spans": [ + { + "bbox": [ + 115, + 250, + 306, + 263 + ], + "score": 1.0, + "content": "lstms. arXiv preprint arXiv:1808.06511, 2018.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 239, + 505, + 263 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 270, + 504, + 293 + ], + "lines": [ + { + "bbox": [ + 106, + 270, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 505, + 282 + ], + "score": 1.0, + "content": "Xuezhe Ma and Eduard Hovy. End-to-end sequence labeling via bi-directional lstm-cnns-crf. arXiv", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 281, + 254, + 293 + ], + "spans": [ + { + "bbox": [ + 115, + 281, + 254, + 293 + ], + "score": 1.0, + "content": "preprint arXiv:1603.01354, 2016.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 106, + 270, + 505, + 293 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 300, + 504, + 335 + ], + "lines": [ + { + "bbox": [ + 106, + 300, + 505, + 314 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 505, + 314 + ], + "score": 1.0, + "content": "Yuxian Meng, Wei Wu, Fei Wang, Xiaoya Li, Ping Nie, Fan Yin, Muyu Li, Qinghong Han, Xiaofei", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 312, + 506, + 324 + ], + "spans": [ + { + "bbox": [ + 116, + 312, + 506, + 324 + ], + "score": 1.0, + "content": "Sun, and Jiwei Li. Glyce: Glyph-vectors for chinese character representations. In Advances in", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 322, + 370, + 335 + ], + "spans": [ + { + "bbox": [ + 115, + 322, + 370, + 335 + ], + "score": 1.0, + "content": "Neural Information Processing Systems, pp. 2746–2757, 2019.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 106, + 300, + 506, + 335 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 342, + 505, + 387 + ], + "lines": [ + { + "bbox": [ + 106, + 343, + 504, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 504, + 356 + ], + "score": 1.0, + "content": "Gregoire Mesnil, Yann Dauphin, Kaisheng Yao, Yoshua Bengio, Li Deng, Dilek Hakkani-Tur, Xi-´", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 354, + 505, + 366 + ], + "spans": [ + { + "bbox": [ + 116, + 354, + 505, + 366 + ], + "score": 1.0, + "content": "aodong He, Larry Heck, Gokhan Tur, Dong Yu, et al. Using recurrent neural networks for slot", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 365, + 506, + 378 + ], + "spans": [ + { + "bbox": [ + 115, + 365, + 506, + 378 + ], + "score": 1.0, + "content": "filling in spoken language understanding. IEEE/ACM Transactions on Audio, Speech, and Lan-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 376, + 282, + 388 + ], + "spans": [ + { + "bbox": [ + 115, + 376, + 282, + 388 + ], + "score": 1.0, + "content": "guage Processing, 23(3):530–539, 2014.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5, + "bbox_fs": [ + 106, + 343, + 506, + 388 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 395, + 505, + 441 + ], + "lines": [ + { + "bbox": [ + 104, + 395, + 506, + 409 + ], + "spans": [ + { + "bbox": [ + 104, + 395, + 506, + 409 + ], + "score": 1.0, + "content": "Joakim Nivre, Marie-Catherine De Marneffe, Filip Ginter, Yoav Goldberg, Jan Hajic, Christopher D", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 407, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 115, + 407, + 505, + 419 + ], + "score": 1.0, + "content": "Manning, Ryan McDonald, Slav Petrov, Sampo Pyysalo, Natalia Silveira, et al. Universal de-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 419, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 115, + 419, + 505, + 430 + ], + "score": 1.0, + "content": "pendencies v1: A multilingual treebank collection. In Proceedings of the Tenth International", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 429, + 465, + 442 + ], + "spans": [ + { + "bbox": [ + 116, + 429, + 465, + 442 + ], + "score": 1.0, + "content": "Conference on Language Resources and Evaluation (LREC’16), pp. 1659–1666, 2016.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5, + "bbox_fs": [ + 104, + 395, + 506, + 442 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 448, + 504, + 472 + ], + "lines": [ + { + "bbox": [ + 105, + 449, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 505, + 462 + ], + "score": 1.0, + "content": "Nanyun Peng et al. Jointly Learning Representations for Low-Resource Information Extraction.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 459, + 353, + 472 + ], + "spans": [ + { + "bbox": [ + 116, + 459, + 353, + 472 + ], + "score": 1.0, + "content": "PhD thesis, Ph. D. thesis, Johns Hopkins University, 2017.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 449, + 505, + 472 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 479, + 505, + 524 + ], + "lines": [ + { + "bbox": [ + 105, + 479, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 505, + 493 + ], + "score": 1.0, + "content": "Sameer Pradhan, Alessandro Moschitti, Nianwen Xue, Hwee Tou Ng, Anders Bjorkelund, Olga ¨", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 491, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 115, + 491, + 505, + 503 + ], + "score": 1.0, + "content": "Uryupina, Yuchen Zhang, and Zhi Zhong. Towards robust linguistic analysis using ontonotes. In", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 501, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 115, + 501, + 505, + 516 + ], + "score": 1.0, + "content": "Proceedings of the Seventeenth Conference on Computational Natural Language Learning, pp.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 513, + 181, + 523 + ], + "spans": [ + { + "bbox": [ + 115, + 513, + 181, + 523 + ], + "score": 1.0, + "content": "143–152, 2013.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 479, + 505, + 523 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 532, + 505, + 567 + ], + "lines": [ + { + "bbox": [ + 106, + 532, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 506, + 546 + ], + "score": 1.0, + "content": "Tao Qian, Yue Zhang, Meishan Zhang, Yafeng Ren, and Donghong Ji. A transition-based model", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 543, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 115, + 543, + 506, + 558 + ], + "score": 1.0, + "content": "for joint segmentation, pos-tagging and normalization. In Proceedings of the 2015 Conference on", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 554, + 420, + 568 + ], + "spans": [ + { + "bbox": [ + 116, + 554, + 420, + 568 + ], + "score": 1.0, + "content": "Empirical Methods in Natural Language Processing, pp. 1837–1846, 2015.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33, + "bbox_fs": [ + 106, + 532, + 506, + 568 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 574, + 504, + 597 + ], + "lines": [ + { + "bbox": [ + 105, + 573, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 505, + 587 + ], + "score": 1.0, + "content": "Erik F Sang and Sabine Buchholz. Introduction to the conll-2000 shared task: Chunking. arXiv", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 586, + 227, + 597 + ], + "spans": [ + { + "bbox": [ + 115, + 586, + 227, + 597 + ], + "score": 1.0, + "content": "preprint cs/0009008, 2000.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 573, + 505, + 597 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 605, + 504, + 629 + ], + "lines": [ + { + "bbox": [ + 105, + 603, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 505, + 619 + ], + "score": 1.0, + "content": "Erik F Sang and Fien De Meulder. Introduction to the conll-2003 shared task: Language-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 616, + 409, + 629 + ], + "spans": [ + { + "bbox": [ + 115, + 616, + 409, + 629 + ], + "score": 1.0, + "content": "independent named entity recognition. arXiv preprint cs/0306050, 2003.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 603, + 505, + 629 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 636, + 504, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 636, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 505, + 649 + ], + "score": 1.0, + "content": "Sunita Sarawagi and William W Cohen. Semi-markov conditional random fields for information", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 647, + 473, + 660 + ], + "spans": [ + { + "bbox": [ + 115, + 647, + 473, + 660 + ], + "score": 1.0, + "content": "extraction. In Advances in neural information processing systems, pp. 1185–1192, 2005.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 636, + 505, + 660 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 667, + 504, + 690 + ], + "lines": [ + { + "bbox": [ + 106, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 505, + 680 + ], + "score": 1.0, + "content": "Sebastian Schuster, Sonal Gupta, Rushin Shah, and Mike Lewis. Cross-lingual transfer learning for", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 678, + 415, + 691 + ], + "spans": [ + { + "bbox": [ + 116, + 678, + 415, + 691 + ], + "score": 1.0, + "content": "multilingual task oriented dialog. arXiv preprint arXiv:1810.13327, 2018.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5, + "bbox_fs": [ + 106, + 667, + 505, + 691 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 697, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 697, + 505, + 712 + ], + "score": 1.0, + "content": "Yan Shao, Christian Hardmeier, Jorg Tiedemann, and Joakim Nivre. Character-based joint segmen- ¨", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "tation and pos tagging for chinese using bidirectional rnn-crf. arXiv preprint arXiv:1704.01314,", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 114, + 719, + 143, + 732 + ], + "spans": [ + { + "bbox": [ + 114, + 719, + 143, + 732 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44, + "bbox_fs": [ + 106, + 697, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "score": 1.0, + "content": "Aditya Siddhant, Anuj Goyal, and Angeliki Metallinou. Unsupervised transfer learning for spoken", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "language understanding in intelligent agents. In Proceedings of the AAAI conference on artificial", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 104, + 306, + 118 + ], + "spans": [ + { + "bbox": [ + 116, + 104, + 306, + 118 + ], + "score": 1.0, + "content": "intelligence, volume 33, pp. 4959–4966, 2019.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 105, + 123, + 503, + 146 + ], + "lines": [ + { + "bbox": [ + 105, + 122, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 122, + 505, + 136 + ], + "score": 1.0, + "content": "Mitchell Stern, Jacob Andreas, and Dan Klein. A minimal span-based neural constituency parser.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 134, + 279, + 146 + ], + "spans": [ + { + "bbox": [ + 115, + 134, + 279, + 146 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1705.03919, 2017.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 107, + 153, + 504, + 187 + ], + "lines": [ + { + "bbox": [ + 106, + 153, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 106, + 153, + 505, + 166 + ], + "score": 1.0, + "content": "Shaolei Wang, Wanxiang Che, Yue Zhang, Meishan Zhang, and Ting Liu. Transition-based dis-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 164, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 116, + 164, + 505, + 177 + ], + "score": 1.0, + "content": "fluency detection using lstms. In Proceedings of the 2017 Conference on Empirical Methods in", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 174, + 331, + 188 + ], + "spans": [ + { + "bbox": [ + 115, + 174, + 331, + 188 + ], + "score": 1.0, + "content": "Natural Language Processing, pp. 2785–2794, 2017.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 194, + 504, + 228 + ], + "lines": [ + { + "bbox": [ + 106, + 194, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 506, + 207 + ], + "score": 1.0, + "content": "Wenhui Wang and Baobao Chang. Graph-based dependency parsing with bidirectional lstm. In", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 204, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 115, + 204, + 505, + 218 + ], + "score": 1.0, + "content": "Proceedings of the 54th Annual Meeting of the Association for Computational Linguistics (Volume", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 216, + 276, + 229 + ], + "spans": [ + { + "bbox": [ + 116, + 216, + 276, + 229 + ], + "score": 1.0, + "content": "1: Long Papers), pp. 2306–2315, 2016.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 105, + 234, + 504, + 258 + ], + "lines": [ + { + "bbox": [ + 105, + 234, + 505, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 505, + 247 + ], + "score": 1.0, + "content": "Naiwen Xue, Fei Xia, Fu-Dong Chiou, and Marta Palmer. The penn chinese treebank: Phrase", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 245, + 465, + 258 + ], + "spans": [ + { + "bbox": [ + 115, + 245, + 465, + 258 + ], + "score": 1.0, + "content": "structure annotation of a large corpus. Natural language engineering, 11(2):207, 2005.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 107, + 264, + 504, + 298 + ], + "lines": [ + { + "bbox": [ + 105, + 264, + 505, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 505, + 278 + ], + "score": 1.0, + "content": "Nianwen Xue. Chinese word segmentation as character tagging. In International Journal of Com-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 114, + 276, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 114, + 276, + 506, + 288 + ], + "score": 1.0, + "content": "putational Linguistics & Chinese Language Processing, Volume 8, Number 1, February 2003:", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 287, + 464, + 299 + ], + "spans": [ + { + "bbox": [ + 116, + 287, + 464, + 299 + ], + "score": 1.0, + "content": "Special Issue on Word Formation and Chinese Language Processing, pp. 29–48, 2003.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 305, + 504, + 328 + ], + "lines": [ + { + "bbox": [ + 105, + 304, + 505, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 505, + 319 + ], + "score": 1.0, + "content": "Jie Yang, Yue Zhang, and Fei Dong. Neural word segmentation with rich pretraining. arXiv preprint", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 316, + 219, + 327 + ], + "spans": [ + { + "bbox": [ + 116, + 316, + 219, + 327 + ], + "score": 1.0, + "content": "arXiv:1704.08960, 2017.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 105, + 335, + 504, + 358 + ], + "lines": [ + { + "bbox": [ + 105, + 333, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 505, + 349 + ], + "score": 1.0, + "content": "Zhi-Xiu Ye and Zhen-Hua Ling. Hybrid semi-markov crf for neural sequence labeling. arXiv", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 114, + 347, + 255, + 358 + ], + "spans": [ + { + "bbox": [ + 114, + 347, + 255, + 358 + ], + "score": 1.0, + "content": "preprint arXiv:1805.03838, 2018.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 106, + 365, + 504, + 388 + ], + "lines": [ + { + "bbox": [ + 104, + 362, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 104, + 362, + 505, + 380 + ], + "score": 1.0, + "content": "Juntao Yu, Bernd Bohnet, and Massimo Poesio. Named entity recognition as dependency parsing.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 376, + 279, + 388 + ], + "spans": [ + { + "bbox": [ + 115, + 376, + 279, + 388 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:2005.07150, 2020.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 106, + 394, + 504, + 418 + ], + "lines": [ + { + "bbox": [ + 105, + 395, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 505, + 408 + ], + "score": 1.0, + "content": "Feifei Zhai, Saloni Potdar, Bing Xiang, and Bowen Zhou. Neural models for sequence chunking. In", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 117, + 405, + 365, + 418 + ], + "spans": [ + { + "bbox": [ + 117, + 405, + 365, + 418 + ], + "score": 1.0, + "content": "Thirty-First AAAI Conference on Artificial Intelligence, 2017.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 107, + 425, + 505, + 459 + ], + "lines": [ + { + "bbox": [ + 105, + 424, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 505, + 438 + ], + "score": 1.0, + "content": "Meishan Zhang, Yue Zhang, and Guohong Fu. Transition-based neural word segmentation. In", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 435, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 115, + 435, + 505, + 449 + ], + "score": 1.0, + "content": "Proceedings of the 54th Annual Meeting of the Association for Computational Linguistics (Volume", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 447, + 266, + 460 + ], + "spans": [ + { + "bbox": [ + 115, + 447, + 266, + 460 + ], + "score": 1.0, + "content": "1: Long Papers), pp. 421–431, 2016.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25 + } + ], + "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": [ + 107, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "score": 1.0, + "content": "Aditya Siddhant, Anuj Goyal, and Angeliki Metallinou. Unsupervised transfer learning for spoken", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "language understanding in intelligent agents. In Proceedings of the AAAI conference on artificial", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 104, + 306, + 118 + ], + "spans": [ + { + "bbox": [ + 116, + 104, + 306, + 118 + ], + "score": 1.0, + "content": "intelligence, volume 33, pp. 4959–4966, 2019.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 82, + 505, + 118 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 123, + 503, + 146 + ], + "lines": [ + { + "bbox": [ + 105, + 122, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 122, + 505, + 136 + ], + "score": 1.0, + "content": "Mitchell Stern, Jacob Andreas, and Dan Klein. A minimal span-based neural constituency parser.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 134, + 279, + 146 + ], + "spans": [ + { + "bbox": [ + 115, + 134, + 279, + 146 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1705.03919, 2017.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 122, + 505, + 146 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 153, + 504, + 187 + ], + "lines": [ + { + "bbox": [ + 106, + 153, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 106, + 153, + 505, + 166 + ], + "score": 1.0, + "content": "Shaolei Wang, Wanxiang Che, Yue Zhang, Meishan Zhang, and Ting Liu. Transition-based dis-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 164, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 116, + 164, + 505, + 177 + ], + "score": 1.0, + "content": "fluency detection using lstms. In Proceedings of the 2017 Conference on Empirical Methods in", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 174, + 331, + 188 + ], + "spans": [ + { + "bbox": [ + 115, + 174, + 331, + 188 + ], + "score": 1.0, + "content": "Natural Language Processing, pp. 2785–2794, 2017.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 106, + 153, + 505, + 188 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 194, + 504, + 228 + ], + "lines": [ + { + "bbox": [ + 106, + 194, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 506, + 207 + ], + "score": 1.0, + "content": "Wenhui Wang and Baobao Chang. Graph-based dependency parsing with bidirectional lstm. In", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 204, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 115, + 204, + 505, + 218 + ], + "score": 1.0, + "content": "Proceedings of the 54th Annual Meeting of the Association for Computational Linguistics (Volume", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 216, + 276, + 229 + ], + "spans": [ + { + "bbox": [ + 116, + 216, + 276, + 229 + ], + "score": 1.0, + "content": "1: Long Papers), pp. 2306–2315, 2016.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 106, + 194, + 506, + 229 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 234, + 504, + 258 + ], + "lines": [ + { + "bbox": [ + 105, + 234, + 505, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 505, + 247 + ], + "score": 1.0, + "content": "Naiwen Xue, Fei Xia, Fu-Dong Chiou, and Marta Palmer. The penn chinese treebank: Phrase", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 245, + 465, + 258 + ], + "spans": [ + { + "bbox": [ + 115, + 245, + 465, + 258 + ], + "score": 1.0, + "content": "structure annotation of a large corpus. Natural language engineering, 11(2):207, 2005.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 234, + 505, + 258 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 264, + 504, + 298 + ], + "lines": [ + { + "bbox": [ + 105, + 264, + 505, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 505, + 278 + ], + "score": 1.0, + "content": "Nianwen Xue. Chinese word segmentation as character tagging. In International Journal of Com-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 114, + 276, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 114, + 276, + 506, + 288 + ], + "score": 1.0, + "content": "putational Linguistics & Chinese Language Processing, Volume 8, Number 1, February 2003:", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 287, + 464, + 299 + ], + "spans": [ + { + "bbox": [ + 116, + 287, + 464, + 299 + ], + "score": 1.0, + "content": "Special Issue on Word Formation and Chinese Language Processing, pp. 29–48, 2003.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 264, + 506, + 299 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 305, + 504, + 328 + ], + "lines": [ + { + "bbox": [ + 105, + 304, + 505, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 505, + 319 + ], + "score": 1.0, + "content": "Jie Yang, Yue Zhang, and Fei Dong. Neural word segmentation with rich pretraining. arXiv preprint", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 316, + 219, + 327 + ], + "spans": [ + { + "bbox": [ + 116, + 316, + 219, + 327 + ], + "score": 1.0, + "content": "arXiv:1704.08960, 2017.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 304, + 505, + 327 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 335, + 504, + 358 + ], + "lines": [ + { + "bbox": [ + 105, + 333, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 505, + 349 + ], + "score": 1.0, + "content": "Zhi-Xiu Ye and Zhen-Hua Ling. Hybrid semi-markov crf for neural sequence labeling. arXiv", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 114, + 347, + 255, + 358 + ], + "spans": [ + { + "bbox": [ + 114, + 347, + 255, + 358 + ], + "score": 1.0, + "content": "preprint arXiv:1805.03838, 2018.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 333, + 505, + 358 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 365, + 504, + 388 + ], + "lines": [ + { + "bbox": [ + 104, + 362, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 104, + 362, + 505, + 380 + ], + "score": 1.0, + "content": "Juntao Yu, Bernd Bohnet, and Massimo Poesio. Named entity recognition as dependency parsing.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 376, + 279, + 388 + ], + "spans": [ + { + "bbox": [ + 115, + 376, + 279, + 388 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:2005.07150, 2020.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 104, + 362, + 505, + 388 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 394, + 504, + 418 + ], + "lines": [ + { + "bbox": [ + 105, + 395, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 505, + 408 + ], + "score": 1.0, + "content": "Feifei Zhai, Saloni Potdar, Bing Xiang, and Bowen Zhou. Neural models for sequence chunking. In", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 117, + 405, + 365, + 418 + ], + "spans": [ + { + "bbox": [ + 117, + 405, + 365, + 418 + ], + "score": 1.0, + "content": "Thirty-First AAAI Conference on Artificial Intelligence, 2017.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 395, + 505, + 418 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 425, + 505, + 459 + ], + "lines": [ + { + "bbox": [ + 105, + 424, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 505, + 438 + ], + "score": 1.0, + "content": "Meishan Zhang, Yue Zhang, and Guohong Fu. Transition-based neural word segmentation. In", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 435, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 115, + 435, + 505, + 449 + ], + "score": 1.0, + "content": "Proceedings of the 54th Annual Meeting of the Association for Computational Linguistics (Volume", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 447, + 266, + 460 + ], + "spans": [ + { + "bbox": [ + 115, + 447, + 266, + 460 + ], + "score": 1.0, + "content": "1: Long Papers), pp. 421–431, 2016.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 424, + 505, + 460 + ] + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/PQlC91XxqK5/PQlC91XxqK5_model.json b/parse/train/PQlC91XxqK5/PQlC91XxqK5_model.json new file mode 100644 index 0000000000000000000000000000000000000000..1333f58aa0b00128b5ca721db2eeb4d4b3c67b8b --- /dev/null +++ b/parse/train/PQlC91XxqK5/PQlC91XxqK5_model.json @@ -0,0 +1,14692 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 592, + 1302, + 592, + 1302, + 959, + 398, + 959 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 299, + 1269, + 1403, + 1269, + 1403, + 1545, + 299, + 1545 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 299, + 1560, + 1403, + 1560, + 1403, + 1835, + 299, + 1835 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 1850, + 1403, + 1850, + 1403, + 2033, + 299, + 2033 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1100, + 1403, + 1100, + 1403, + 1253, + 299, + 1253 + ], + "score": 0.979 + }, + { + "category_id": 0, + "poly": [ + 300, + 219, + 1399, + 219, + 1399, + 323, + 300, + 323 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 313, + 378, + 680, + 378, + 680, + 438, + 313, + 438 + ], + "score": 0.935 + }, + { + "category_id": 0, + "poly": [ + 302, + 1027, + 573, + 1027, + 573, + 1062, + 302, + 1062 + ], + "score": 0.896 + }, + { + "category_id": 0, + "poly": [ + 773, + 520, + 926, + 520, + 926, + 553, + 773, + 553 + ], + "score": 0.86 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.839 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 857, + 2088, + 857, + 2112, + 842, + 2112 + ], + "score": 0.628 + }, + { + "category_id": 15, + "poly": [ + 294.0, + 216.0, + 1405.0, + 216.0, + 1405.0, + 274.0, + 294.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 272.0, + 831.0, + 272.0, + 831.0, + 328.0, + 293.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1024.0, + 579.0, + 1024.0, + 579.0, + 1071.0, + 294.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 519.0, + 932.0, + 519.0, + 932.0, + 556.0, + 769.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.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": [ + 394.0, + 593.0, + 1305.0, + 593.0, + 1305.0, + 629.0, + 394.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 624.0, + 1306.0, + 624.0, + 1306.0, + 658.0, + 392.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 654.0, + 1305.0, + 654.0, + 1305.0, + 688.0, + 394.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 686.0, + 1305.0, + 686.0, + 1305.0, + 718.0, + 394.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 715.0, + 1305.0, + 715.0, + 1305.0, + 747.0, + 393.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 746.0, + 1306.0, + 746.0, + 1306.0, + 779.0, + 394.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 777.0, + 1306.0, + 777.0, + 1306.0, + 809.0, + 393.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 808.0, + 1305.0, + 808.0, + 1305.0, + 840.0, + 393.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 838.0, + 1306.0, + 838.0, + 1306.0, + 869.0, + 394.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 869.0, + 1305.0, + 869.0, + 1305.0, + 900.0, + 393.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 899.0, + 1303.0, + 899.0, + 1303.0, + 929.0, + 393.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 928.0, + 1099.0, + 928.0, + 1099.0, + 963.0, + 394.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1269.0, + 1407.0, + 1269.0, + 1407.0, + 1305.0, + 295.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1299.0, + 1407.0, + 1299.0, + 1407.0, + 1334.0, + 293.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1331.0, + 1404.0, + 1331.0, + 1404.0, + 1364.0, + 295.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1355.0, + 1407.0, + 1355.0, + 1407.0, + 1398.0, + 292.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1389.0, + 1407.0, + 1389.0, + 1407.0, + 1428.0, + 294.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1420.0, + 1408.0, + 1420.0, + 1408.0, + 1458.0, + 293.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1450.0, + 1405.0, + 1450.0, + 1405.0, + 1487.0, + 295.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1481.0, + 1407.0, + 1481.0, + 1407.0, + 1518.0, + 293.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1514.0, + 900.0, + 1514.0, + 900.0, + 1551.0, + 294.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1561.0, + 1404.0, + 1561.0, + 1404.0, + 1593.0, + 294.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1589.0, + 1405.0, + 1589.0, + 1405.0, + 1626.0, + 294.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1621.0, + 1407.0, + 1621.0, + 1407.0, + 1655.0, + 293.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1651.0, + 1407.0, + 1651.0, + 1407.0, + 1687.0, + 294.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, + 1712.0, + 1407.0, + 1712.0, + 1407.0, + 1747.0, + 294.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1740.0, + 1407.0, + 1740.0, + 1407.0, + 1781.0, + 293.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1770.0, + 1404.0, + 1770.0, + 1404.0, + 1813.0, + 293.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1804.0, + 1058.0, + 1804.0, + 1058.0, + 1838.0, + 293.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1848.0, + 1403.0, + 1848.0, + 1403.0, + 1886.0, + 294.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1880.0, + 1405.0, + 1880.0, + 1405.0, + 1918.0, + 294.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1910.0, + 1404.0, + 1910.0, + 1404.0, + 1948.0, + 294.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1943.0, + 1407.0, + 1943.0, + 1407.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, + 2007.0, + 293.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2001.0, + 1405.0, + 2001.0, + 1405.0, + 2039.0, + 294.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1100.0, + 1404.0, + 1100.0, + 1404.0, + 1137.0, + 295.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1130.0, + 1405.0, + 1130.0, + 1405.0, + 1166.0, + 295.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1161.0, + 1405.0, + 1161.0, + 1405.0, + 1198.0, + 294.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1192.0, + 1405.0, + 1192.0, + 1405.0, + 1229.0, + 295.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1223.0, + 986.0, + 1223.0, + 986.0, + 1258.0, + 294.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 379.0, + 560.0, + 379.0, + 560.0, + 411.0, + 315.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 407.0, + 681.0, + 407.0, + 681.0, + 442.0, + 312.0, + 442.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 957, + 1404, + 957, + 1404, + 1173, + 297, + 1173 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1423, + 1406, + 1423, + 1406, + 1609, + 297, + 1609 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 788, + 1403, + 788, + 1403, + 942, + 298, + 942 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 1187, + 1403, + 1187, + 1403, + 1311, + 299, + 1311 + ], + "score": 0.976 + }, + { + "category_id": 3, + "poly": [ + 355, + 221, + 1347, + 221, + 1347, + 636, + 355, + 636 + ], + "score": 0.973 + }, + { + "category_id": 8, + "poly": [ + 673, + 1962, + 1025, + 1962, + 1025, + 2043, + 673, + 2043 + ], + "score": 0.962 + }, + { + "category_id": 1, + "poly": [ + 295, + 1882, + 1402, + 1882, + 1402, + 1947, + 295, + 1947 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 301, + 1754, + 1061, + 1754, + 1061, + 1790, + 301, + 1790 + ], + "score": 0.923 + }, + { + "category_id": 0, + "poly": [ + 300, + 1355, + 582, + 1355, + 582, + 1390, + 300, + 1390 + ], + "score": 0.913 + }, + { + "category_id": 4, + "poly": [ + 296, + 668, + 1403, + 668, + 1403, + 732, + 296, + 732 + ], + "score": 0.899 + }, + { + "category_id": 1, + "poly": [ + 301, + 1623, + 1113, + 1623, + 1113, + 1656, + 301, + 1656 + ], + "score": 0.891 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1976, + 1400, + 1976, + 1400, + 2006, + 1366, + 2006 + ], + "score": 0.878 + }, + { + "category_id": 0, + "poly": [ + 297, + 1823, + 945, + 1823, + 945, + 1858, + 297, + 1858 + ], + "score": 0.866 + }, + { + "category_id": 2, + "poly": [ + 301, + 76, + 852, + 76, + 852, + 104, + 301, + 104 + ], + "score": 0.786 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.749 + }, + { + "category_id": 1, + "poly": [ + 502, + 1670, + 1204, + 1670, + 1204, + 1740, + 502, + 1740 + ], + "score": 0.713 + }, + { + "category_id": 8, + "poly": [ + 502, + 1670, + 1204, + 1670, + 1204, + 1740, + 502, + 1740 + ], + "score": 0.386 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.144 + }, + { + "category_id": 14, + "poly": [ + 672, + 1960, + 1026, + 1960, + 1026, + 2043, + 672, + 2043 + ], + "score": 0.94, + "latex": "f ( \\mathbf { y } ) = \\sum _ { ( i , j , t ) \\in \\mathbf { y } } \\Big ( s _ { i , j } ^ { c } + s _ { i , j , t } ^ { l } \\Big ) ," + }, + { + "category_id": 13, + "poly": [ + 389, + 1517, + 472, + 1517, + 472, + 1550, + 389, + 1550 + ], + "score": 0.93, + "latex": "( i _ { k } , j _ { k } )" + }, + { + "category_id": 13, + "poly": [ + 452, + 1486, + 694, + 1486, + 694, + 1519, + 452, + 1519 + ], + "score": 0.92, + "latex": "\\mathbf { y } = [ y _ { 1 } , y _ { 2 } , \\cdots , y _ { m } ]" + }, + { + "category_id": 13, + "poly": [ + 1020, + 1425, + 1265, + 1425, + 1265, + 1459, + 1020, + 1459 + ], + "score": 0.92, + "latex": "\\mathbf { x } = [ x _ { 1 } , x _ { 2 } , \\cdot \\cdot \\cdot , x _ { n } ]" + }, + { + "category_id": 13, + "poly": [ + 739, + 1913, + 797, + 1913, + 797, + 1947, + 739, + 1947 + ], + "score": 0.91, + "latex": "f ( \\mathbf { y } )" + }, + { + "category_id": 13, + "poly": [ + 1111, + 1486, + 1229, + 1486, + 1229, + 1518, + 1111, + 1518 + ], + "score": 0.91, + "latex": "( i _ { k } , j _ { k } , t _ { k } )" + }, + { + "category_id": 13, + "poly": [ + 405, + 1915, + 480, + 1915, + 480, + 1945, + 405, + 1945 + ], + "score": 0.91, + "latex": "\\mathbf { y } \\in \\mathcal { V }" + }, + { + "category_id": 13, + "poly": [ + 916, + 1490, + 947, + 1490, + 947, + 1517, + 916, + 1517 + ], + "score": 0.86, + "latex": "y _ { k }" + }, + { + "category_id": 13, + "poly": [ + 732, + 1049, + 857, + 1049, + 857, + 1084, + 732, + 1084 + ], + "score": 0.84, + "latex": "[ \\mathrm { C u p } ] _ { \\mathrm { M I S C } }" + }, + { + "category_id": 13, + "poly": [ + 1008, + 1519, + 1355, + 1519, + 1355, + 1551, + 1008, + 1551 + ], + "score": 0.84, + "latex": "\\mathbf { x } _ { i _ { k } , j _ { k } } = [ x _ { i _ { k } } , x _ { i _ { k } + 1 } , \\cdot \\cdot \\cdot , x _ { j _ { k } } ]" + }, + { + "category_id": 13, + "poly": [ + 424, + 1885, + 449, + 1885, + 449, + 1913, + 424, + 1913 + ], + "score": 0.84, + "latex": "\\mathcal { V }" + }, + { + "category_id": 14, + "poly": [ + 499, + 1670, + 1208, + 1670, + 1208, + 1741, + 499, + 1741 + ], + "score": 0.82, + "latex": "\\begin{array} { r } { \\mathbf { x } = [ [ \\mathrm { S O S } ] , \\mathrm { S a n g t h a i } , \\mathrm { G l o r y } , 2 2 / 1 1 / 9 6 , 3 0 0 0 , \\mathrm { S i n g a p o r e } ] } \\\\ { \\mathbf { y } = [ ( 1 , 1 , 0 ) , ( 2 , 3 , \\mathrm { M I S C } ) , ( 4 , 4 , 0 ) , ( 5 , 5 , 0 ) , ( 6 , 6 , \\mathrm { L O C } ) ] } \\end{array} ." + }, + { + "category_id": 13, + "poly": [ + 1354, + 1432, + 1374, + 1432, + 1374, + 1453, + 1354, + 1453 + ], + "score": 0.76, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 558, + 1049, + 677, + 1049, + 677, + 1085, + 558, + 1085 + ], + "score": 0.75, + "latex": "\\mathrm { C u p } \\mathrm { _ { M I S C } }" + }, + { + "category_id": 13, + "poly": [ + 1373, + 1518, + 1400, + 1518, + 1400, + 1549, + 1373, + 1549 + ], + "score": 0.69, + "latex": "t _ { k }" + }, + { + "category_id": 13, + "poly": [ + 654, + 1548, + 677, + 1548, + 677, + 1574, + 654, + 1574 + ], + "score": 0.68, + "latex": "\\mathcal { L }" + }, + { + "category_id": 13, + "poly": [ + 1246, + 1489, + 1274, + 1489, + 1274, + 1514, + 1246, + 1514 + ], + "score": 0.68, + "latex": "m" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 233.0, + 625.0, + 233.0, + 625.0, + 262.0, + 406.0, + 262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 753.0, + 233.0, + 972.0, + 233.0, + 972.0, + 262.0, + 753.0, + 262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 231.0, + 1298.0, + 231.0, + 1298.0, + 263.0, + 1079.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 273.0, + 633.0, + 273.0, + 633.0, + 304.0, + 550.0, + 304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 274.0, + 964.0, + 274.0, + 964.0, + 307.0, + 897.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1224.0, + 276.0, + 1334.0, + 276.0, + 1334.0, + 305.0, + 1224.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 330.0, + 446.0, + 330.0, + 446.0, + 358.0, + 372.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 327.0, + 551.0, + 327.0, + 551.0, + 356.0, + 477.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 583.0, + 327.0, + 656.0, + 327.0, + 656.0, + 358.0, + 583.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 320.0, + 831.0, + 320.0, + 831.0, + 354.0, + 740.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 322.0, + 990.0, + 322.0, + 990.0, + 351.0, + 857.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1077.0, + 325.0, + 1300.0, + 325.0, + 1300.0, + 350.0, + 1077.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 349.0, + 443.0, + 349.0, + 443.0, + 377.0, + 373.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 480.0, + 347.0, + 550.0, + 347.0, + 550.0, + 377.0, + 480.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 349.0, + 654.0, + 349.0, + 654.0, + 377.0, + 586.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 383.0, + 419.0, + 383.0, + 419.0, + 395.0, + 398.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 383.0, + 525.0, + 383.0, + 525.0, + 395.0, + 505.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 612.0, + 385.0, + 627.0, + 385.0, + 627.0, + 394.0, + 612.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 364.0, + 844.0, + 364.0, + 844.0, + 397.0, + 726.0, + 397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 365.0, + 991.0, + 365.0, + 991.0, + 395.0, + 857.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1080.0, + 365.0, + 1296.0, + 365.0, + 1296.0, + 396.0, + 1080.0, + 396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 391.0, + 424.0, + 391.0, + 424.0, + 418.0, + 394.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 501.0, + 392.0, + 529.0, + 392.0, + 529.0, + 419.0, + 501.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 394.0, + 633.0, + 394.0, + 633.0, + 417.0, + 609.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 414.0, + 439.0, + 414.0, + 439.0, + 440.0, + 378.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 484.0, + 412.0, + 545.0, + 412.0, + 545.0, + 440.0, + 484.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 414.0, + 651.0, + 414.0, + 651.0, + 440.0, + 589.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 407.0, + 810.0, + 407.0, + 810.0, + 444.0, + 764.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 412.0, + 990.0, + 412.0, + 990.0, + 439.0, + 859.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1083.0, + 411.0, + 1295.0, + 411.0, + 1295.0, + 440.0, + 1083.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 433.0, + 437.0, + 433.0, + 437.0, + 461.0, + 380.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 485.0, + 433.0, + 543.0, + 433.0, + 543.0, + 461.0, + 485.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 591.0, + 433.0, + 649.0, + 433.0, + 649.0, + 461.0, + 591.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 473.0, + 438.0, + 473.0, + 438.0, + 504.0, + 380.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.0, + 471.0, + 661.0, + 471.0, + 661.0, + 508.0, + 577.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 474.0, + 827.0, + 474.0, + 827.0, + 505.0, + 745.0, + 505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 476.0, + 990.0, + 476.0, + 990.0, + 506.0, + 858.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1067.0, + 476.0, + 1308.0, + 476.0, + 1308.0, + 503.0, + 1067.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 515.0, + 679.0, + 515.0, + 679.0, + 547.0, + 351.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 516.0, + 964.0, + 516.0, + 964.0, + 546.0, + 764.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 515.0, + 1327.0, + 515.0, + 1327.0, + 546.0, + 1046.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 828.0, + 549.0, + 897.0, + 549.0, + 897.0, + 585.0, + 828.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 553.0, + 1223.0, + 553.0, + 1223.0, + 586.0, + 1151.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 597.0, + 444.0, + 597.0, + 444.0, + 629.0, + 386.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 596.0, + 540.0, + 596.0, + 540.0, + 632.0, + 495.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.0, + 596.0, + 660.0, + 596.0, + 660.0, + 631.0, + 577.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 597.0, + 792.0, + 597.0, + 792.0, + 629.0, + 733.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 597.0, + 888.0, + 597.0, + 888.0, + 633.0, + 841.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 924.0, + 596.0, + 1007.0, + 596.0, + 1007.0, + 631.0, + 924.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1059.0, + 597.0, + 1117.0, + 597.0, + 1117.0, + 629.0, + 1059.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1168.0, + 597.0, + 1212.0, + 597.0, + 1212.0, + 632.0, + 1168.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 596.0, + 1334.0, + 596.0, + 1334.0, + 631.0, + 1250.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 494.0, + 472.5, + 535.0, + 472.5, + 535.0, + 504.5, + 494.0, + 504.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 489.0, + 556.0, + 505.0, + 556.0, + 505.0, + 580.5, + 489.0, + 580.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 511.0, + 556.0, + 548.0, + 556.0, + 548.0, + 579.0, + 511.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1351.0, + 587.0, + 1351.0, + 587.0, + 1398.0, + 291.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 668.0, + 1405.0, + 668.0, + 1405.0, + 703.0, + 294.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 699.0, + 887.0, + 699.0, + 887.0, + 735.0, + 295.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1824.0, + 946.0, + 1824.0, + 946.0, + 1861.0, + 295.0, + 1861.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": [ + 292.0, + 955.0, + 1405.0, + 955.0, + 1405.0, + 992.0, + 292.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 987.0, + 1404.0, + 987.0, + 1404.0, + 1024.0, + 294.0, + 1024.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1017.0, + 1406.0, + 1017.0, + 1406.0, + 1055.0, + 292.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1046.0, + 557.0, + 1046.0, + 557.0, + 1092.0, + 290.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 1046.0, + 731.0, + 1046.0, + 731.0, + 1092.0, + 678.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 1046.0, + 1407.0, + 1046.0, + 1407.0, + 1092.0, + 858.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1079.0, + 1404.0, + 1079.0, + 1404.0, + 1113.0, + 295.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1109.0, + 1406.0, + 1109.0, + 1406.0, + 1145.0, + 292.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1142.0, + 845.0, + 1142.0, + 845.0, + 1176.0, + 296.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1424.0, + 1019.0, + 1424.0, + 1019.0, + 1460.0, + 296.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1266.0, + 1424.0, + 1353.0, + 1424.0, + 1353.0, + 1460.0, + 1266.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1375.0, + 1424.0, + 1406.0, + 1424.0, + 1406.0, + 1460.0, + 1375.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1455.0, + 1406.0, + 1455.0, + 1406.0, + 1490.0, + 295.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1483.0, + 451.0, + 1483.0, + 451.0, + 1522.0, + 291.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 1483.0, + 915.0, + 1483.0, + 915.0, + 1522.0, + 695.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 1483.0, + 1110.0, + 1483.0, + 1110.0, + 1522.0, + 948.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1230.0, + 1483.0, + 1245.0, + 1483.0, + 1245.0, + 1522.0, + 1230.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1275.0, + 1483.0, + 1407.0, + 1483.0, + 1407.0, + 1522.0, + 1275.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1512.0, + 388.0, + 1512.0, + 388.0, + 1558.0, + 290.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 1512.0, + 1007.0, + 1512.0, + 1007.0, + 1558.0, + 473.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1356.0, + 1512.0, + 1372.0, + 1512.0, + 1372.0, + 1558.0, + 1356.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1512.0, + 1407.0, + 1512.0, + 1407.0, + 1558.0, + 1401.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1545.0, + 653.0, + 1545.0, + 653.0, + 1581.0, + 294.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 1545.0, + 1406.0, + 1545.0, + 1406.0, + 1581.0, + 678.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1577.0, + 879.0, + 1577.0, + 879.0, + 1613.0, + 294.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 788.0, + 1404.0, + 788.0, + 1404.0, + 825.0, + 296.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 817.0, + 1403.0, + 817.0, + 1403.0, + 854.0, + 294.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 845.0, + 1407.0, + 845.0, + 1407.0, + 889.0, + 292.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 880.0, + 1403.0, + 880.0, + 1403.0, + 917.0, + 294.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 907.0, + 957.0, + 907.0, + 957.0, + 950.0, + 293.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1185.0, + 1404.0, + 1185.0, + 1404.0, + 1225.0, + 293.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1217.0, + 1407.0, + 1217.0, + 1407.0, + 1254.0, + 294.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1247.0, + 1404.0, + 1247.0, + 1404.0, + 1285.0, + 293.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1281.0, + 915.0, + 1281.0, + 915.0, + 1313.0, + 295.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1881.0, + 423.0, + 1881.0, + 423.0, + 1917.0, + 297.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 1881.0, + 1405.0, + 1881.0, + 1405.0, + 1917.0, + 450.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1909.0, + 404.0, + 1909.0, + 404.0, + 1951.0, + 293.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 481.0, + 1909.0, + 738.0, + 1909.0, + 738.0, + 1951.0, + 481.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 1909.0, + 833.0, + 1909.0, + 833.0, + 1951.0, + 798.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1749.0, + 1064.0, + 1749.0, + 1064.0, + 1799.0, + 293.0, + 1799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1621.0, + 1114.0, + 1621.0, + 1114.0, + 1661.0, + 294.0, + 1661.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 945, + 1403, + 945, + 1403, + 1070, + 297, + 1070 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 809, + 1403, + 809, + 1403, + 910, + 298, + 910 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1811, + 1403, + 1811, + 1403, + 1906, + 299, + 1906 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 1941, + 1401, + 1941, + 1401, + 2039, + 299, + 2039 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 1703, + 1402, + 1703, + 1402, + 1798, + 298, + 1798 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 297, + 1414, + 1403, + 1414, + 1403, + 1479, + 297, + 1479 + ], + "score": 0.957 + }, + { + "category_id": 8, + "poly": [ + 736, + 1627, + 958, + 1627, + 958, + 1685, + 736, + 1685 + ], + "score": 0.955 + }, + { + "category_id": 8, + "poly": [ + 500, + 1344, + 1197, + 1344, + 1197, + 1396, + 500, + 1396 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 588, + 1190, + 1109, + 1190, + 1109, + 1233, + 588, + 1233 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 671, + 1086, + 1030, + 1086, + 1030, + 1127, + 671, + 1127 + ], + "score": 0.938 + }, + { + "category_id": 1, + "poly": [ + 307, + 1293, + 1278, + 1293, + 1278, + 1327, + 307, + 1327 + ], + "score": 0.924 + }, + { + "category_id": 1, + "poly": [ + 298, + 1574, + 1247, + 1574, + 1247, + 1609, + 298, + 1609 + ], + "score": 0.923 + }, + { + "category_id": 1, + "poly": [ + 295, + 1141, + 1249, + 1141, + 1249, + 1176, + 295, + 1176 + ], + "score": 0.917 + }, + { + "category_id": 1, + "poly": [ + 292, + 1246, + 1012, + 1246, + 1012, + 1280, + 292, + 1280 + ], + "score": 0.913 + }, + { + "category_id": 0, + "poly": [ + 297, + 1517, + 873, + 1517, + 873, + 1550, + 297, + 1550 + ], + "score": 0.902 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1630, + 1400, + 1630, + 1400, + 1660, + 1366, + 1660 + ], + "score": 0.894 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1358, + 1400, + 1358, + 1400, + 1388, + 1366, + 1388 + ], + "score": 0.891 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1197, + 1400, + 1197, + 1400, + 1227, + 1366, + 1227 + ], + "score": 0.881 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1092, + 1400, + 1092, + 1400, + 1121, + 1366, + 1121 + ], + "score": 0.871 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 854, + 74, + 854, + 105, + 297, + 105 + ], + "score": 0.668 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.632 + }, + { + "category_id": 1, + "poly": [ + 269, + 668, + 1143, + 668, + 1143, + 735, + 269, + 735 + ], + "score": 0.628 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.568 + }, + { + "category_id": 6, + "poly": [ + 296, + 238, + 946, + 238, + 946, + 271, + 296, + 271 + ], + "score": 0.485 + }, + { + "category_id": 1, + "poly": [ + 282, + 589, + 1327, + 589, + 1327, + 663, + 282, + 663 + ], + "score": 0.481 + }, + { + "category_id": 1, + "poly": [ + 273, + 520, + 945, + 520, + 945, + 556, + 273, + 556 + ], + "score": 0.317 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 854, + 74, + 854, + 105, + 298, + 105 + ], + "score": 0.286 + }, + { + "category_id": 1, + "poly": [ + 281, + 440, + 1198, + 440, + 1198, + 514, + 281, + 514 + ], + "score": 0.249 + }, + { + "category_id": 0, + "poly": [ + 296, + 238, + 946, + 238, + 946, + 271, + 296, + 271 + ], + "score": 0.179 + }, + { + "category_id": 1, + "poly": [ + 273, + 380, + 1224, + 380, + 1224, + 409, + 273, + 409 + ], + "score": 0.172 + }, + { + "category_id": 1, + "poly": [ + 274, + 349, + 1236, + 349, + 1236, + 376, + 274, + 376 + ], + "score": 0.154 + }, + { + "category_id": 1, + "poly": [ + 289, + 278, + 1271, + 278, + 1271, + 316, + 289, + 316 + ], + "score": 0.122 + }, + { + "category_id": 1, + "poly": [ + 320, + 318, + 1214, + 318, + 1214, + 347, + 320, + 347 + ], + "score": 0.113 + }, + { + "category_id": 8, + "poly": [ + 501, + 1344, + 1196, + 1344, + 1196, + 1396, + 501, + 1396 + ], + "score": 0.11 + }, + { + "category_id": 13, + "poly": [ + 1179, + 280, + 1257, + 280, + 1257, + 314, + 1179, + 314 + ], + "score": 0.94, + "latex": "( i , j , t )" + }, + { + "category_id": 14, + "poly": [ + 735, + 1626, + 962, + 1626, + 962, + 1685, + 735, + 1685 + ], + "score": 0.93, + "latex": "{ \\hat { \\mathbf { y } } } = \\operatorname * { a r g m a x } _ { \\mathbf { y } \\in \\mathcal { Y } } f ( \\mathbf { y } ) ." + }, + { + "category_id": 13, + "poly": [ + 695, + 475, + 966, + 475, + 966, + 514, + 695, + 514 + ], + "score": 0.93, + "latex": "b _ { i , j } ^ { c } = \\arg \\operatorname* { m a x } _ { t \\in \\mathcal { L } } s _ { i , j , t } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 848, + 844, + 904, + 844, + 904, + 885, + 848, + 885 + ], + "score": 0.93, + "latex": "s _ { i , j , t } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 1035, + 947, + 1113, + 947, + 1113, + 980, + 1035, + 980 + ], + "score": 0.92, + "latex": "( i , j , t )" + }, + { + "category_id": 14, + "poly": [ + 669, + 1087, + 1028, + 1087, + 1028, + 1126, + 669, + 1126 + ], + "score": 0.92, + "latex": "[ \\mathbf { h } _ { 1 } ^ { w } , \\mathbf { h } _ { 2 } ^ { w } \\cdot \\cdot \\cdot \\mathbf { \\epsilon } , \\mathbf { h } _ { n } ^ { w } ] = \\mathrm { B E R T } ( \\mathbf { x } ) ," + }, + { + "category_id": 13, + "poly": [ + 733, + 699, + 855, + 699, + 855, + 733, + 733, + 733 + ], + "score": 0.92, + "latex": "f ( \\hat { \\mathbf { y } } ) = g _ { n }" + }, + { + "category_id": 13, + "poly": [ + 1190, + 1294, + 1268, + 1294, + 1268, + 1328, + 1190, + 1328 + ], + "score": 0.92, + "latex": "( i , j , t )" + }, + { + "category_id": 14, + "poly": [ + 587, + 1191, + 1109, + 1191, + 1109, + 1234, + 587, + 1234 + ], + "score": 0.92, + "latex": "\\mathbf { h } _ { i , j } ^ { p } = \\mathbf { h } _ { i } ^ { w } \\oplus \\mathbf { h } _ { j } ^ { w } \\oplus \\left( \\mathbf { h } _ { i } ^ { w } - \\mathbf { h } _ { j } ^ { w } \\right) \\oplus \\big ( \\mathbf { h } _ { i } ^ { w } \\odot \\mathbf { h } _ { j } ^ { w } \\big ) ," + }, + { + "category_id": 13, + "poly": [ + 816, + 278, + 872, + 278, + 872, + 318, + 816, + 318 + ], + "score": 0.92, + "latex": "s _ { i , j , t } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 339, + 556, + 523, + 556, + 523, + 590, + 339, + 590 + ], + "score": 0.91, + "latex": "i \\in [ 2 , 3 , \\cdots , n ]" + }, + { + "category_id": 14, + "poly": [ + 504, + 1343, + 1192, + 1343, + 1192, + 1395, + 504, + 1395 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\boldsymbol { s } _ { i , j } ^ { c } = \\left( \\mathbf { v } ^ { c } \\right) ^ { T } \\operatorname { t a n h } ( \\mathbf { W } ^ { c } \\mathbf { h } _ { i , j } ^ { p } ) , \\boldsymbol { s } _ { i , j , t } ^ { l } = \\left( \\mathbf { v } _ { t } ^ { l } \\right) ^ { T } \\operatorname { t a n h } ( \\mathbf { W } ^ { l } \\mathbf { h } _ { i , j } ^ { p } ) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 339, + 408, + 506, + 408, + 506, + 439, + 339, + 439 + ], + "score": 0.91, + "latex": "1 \\leq i \\leq j \\leq n" + }, + { + "category_id": 13, + "poly": [ + 993, + 1143, + 1214, + 1143, + 1214, + 1177, + 993, + 1177 + ], + "score": 0.91, + "latex": "\\mathbf { x } _ { i , j } , 1 \\leq i \\leq j \\leq n" + }, + { + "category_id": 13, + "poly": [ + 562, + 1974, + 747, + 1974, + 747, + 2006, + 562, + 2006 + ], + "score": 0.91, + "latex": "\\mathbf { x } _ { 1 , i } , 1 \\leq i \\leq n" + }, + { + "category_id": 13, + "poly": [ + 747, + 2003, + 969, + 2003, + 969, + 2037, + 747, + 2037 + ], + "score": 0.9, + "latex": "\\textstyle \\operatorname* { m a x } _ { \\mathbf { y } \\in { \\mathcal { y } } } f ( \\mathbf { y } ) = g _ { n }" + }, + { + "category_id": 13, + "poly": [ + 1096, + 315, + 1153, + 315, + 1153, + 349, + 1096, + 349 + ], + "score": 0.9, + "latex": "f ( \\hat { \\mathbf { y } } )" + }, + { + "category_id": 13, + "poly": [ + 596, + 282, + 638, + 282, + 638, + 318, + 596, + 318 + ], + "score": 0.9, + "latex": "s _ { i , j } ^ { c }" + }, + { + "category_id": 13, + "poly": [ + 372, + 812, + 415, + 812, + 415, + 848, + 372, + 848 + ], + "score": 0.9, + "latex": "s _ { i , j } ^ { c }" + }, + { + "category_id": 13, + "poly": [ + 388, + 349, + 458, + 349, + 458, + 375, + 388, + 375 + ], + "score": 0.9, + "latex": "n \\times n" + }, + { + "category_id": 13, + "poly": [ + 666, + 1705, + 706, + 1705, + 706, + 1737, + 666, + 1737 + ], + "score": 0.89, + "latex": "| \\mathcal { V } |" + }, + { + "category_id": 13, + "poly": [ + 368, + 2006, + 415, + 2006, + 415, + 2037, + 368, + 2037 + ], + "score": 0.89, + "latex": "\\mathbf { x } _ { 1 , i }" + }, + { + "category_id": 13, + "poly": [ + 298, + 847, + 500, + 847, + 500, + 882, + 298, + 882 + ], + "score": 0.88, + "latex": "[ x _ { i } , x _ { i + 1 } , \\cdot \\cdot \\cdot , x _ { j } ]" + }, + { + "category_id": 13, + "poly": [ + 653, + 344, + 687, + 344, + 687, + 374, + 653, + 374 + ], + "score": 0.87, + "latex": "\\mathbf { c } ^ { L }" + }, + { + "category_id": 13, + "poly": [ + 652, + 1413, + 697, + 1413, + 697, + 1444, + 652, + 1444 + ], + "score": 0.87, + "latex": "\\mathbf { W } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 653, + 378, + 686, + 378, + 686, + 405, + 653, + 405 + ], + "score": 0.86, + "latex": "\\mathbf { b } ^ { g }" + }, + { + "category_id": 13, + "poly": [ + 691, + 520, + 939, + 520, + 939, + 559, + 691, + 559 + ], + "score": 0.85, + "latex": "\\mathbf { x } _ { 1 , 1 } \\colon g _ { 1 } = s _ { 1 , 1 } ^ { c } + s _ { 1 , 1 } ^ { L }" + }, + { + "category_id": 13, + "poly": [ + 925, + 316, + 947, + 316, + 947, + 347, + 925, + 347 + ], + "score": 0.85, + "latex": "\\hat { \\mathbf { y } }" + }, + { + "category_id": 13, + "poly": [ + 695, + 627, + 1304, + 627, + 1304, + 664, + 695, + 664 + ], + "score": 0.85, + "latex": "b _ { i } ^ { g } = \\arg \\operatorname* { m a x } _ { 1 \\leq j \\leq i - 1 } \\left( g _ { i - j } + ( s _ { i - j + 1 , i } ^ { c } + s _ { i - j + 1 , i } ^ { L } ) \\right) ." + }, + { + "category_id": 13, + "poly": [ + 1019, + 669, + 1053, + 669, + 1053, + 697, + 1019, + 697 + ], + "score": 0.84, + "latex": "\\mathbf { b } ^ { g }" + }, + { + "category_id": 13, + "poly": [ + 705, + 670, + 727, + 670, + 727, + 700, + 705, + 700 + ], + "score": 0.84, + "latex": "\\hat { \\mathbf { y } }" + }, + { + "category_id": 13, + "poly": [ + 737, + 346, + 769, + 346, + 769, + 374, + 737, + 374 + ], + "score": 0.84, + "latex": "{ \\bf b } ^ { c }" + }, + { + "category_id": 13, + "poly": [ + 702, + 586, + 1319, + 586, + 1319, + 625, + 702, + 625 + ], + "score": 0.83, + "latex": "\\begin{array} { r } { \\mathbf { x } _ { 1 , i } { \\mathrm { : ~ } } g _ { i } = \\operatorname* { m a x } _ { 1 \\leq j \\leq i - 1 } \\left( g _ { i - j } + \\left( s _ { i - j + 1 , i } ^ { c } + s _ { i - j + 1 , i } ^ { L } \\right) \\right) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 709, + 1251, + 734, + 1251, + 734, + 1276, + 709, + 1276 + ], + "score": 0.83, + "latex": "\\odot" + }, + { + "category_id": 13, + "poly": [ + 884, + 1977, + 910, + 1977, + 910, + 2004, + 884, + 2004 + ], + "score": 0.83, + "latex": "g _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1103, + 670, + 1136, + 670, + 1136, + 697, + 1103, + 697 + ], + "score": 0.81, + "latex": "\\mathbf { b } ^ { c }" + }, + { + "category_id": 13, + "poly": [ + 372, + 1251, + 397, + 1251, + 397, + 1277, + 372, + 1277 + ], + "score": 0.81, + "latex": "\\oplus" + }, + { + "category_id": 13, + "poly": [ + 388, + 381, + 407, + 381, + 407, + 404, + 388, + 404 + ], + "score": 0.8, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 893, + 436, + 1191, + 436, + 1191, + 477, + 893, + 477 + ], + "score": 0.78, + "latex": "( i , j ) \\colon s _ { i , j } ^ { L } = \\operatorname* { m a x } _ { t \\in \\mathcal { L } } s _ { i , j , t } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 373, + 1417, + 404, + 1417, + 404, + 1444, + 373, + 1444 + ], + "score": 0.77, + "latex": "\\mathbf { v } _ { } ^ { c }" + }, + { + "category_id": 13, + "poly": [ + 1374, + 1712, + 1393, + 1712, + 1393, + 1733, + 1374, + 1733 + ], + "score": 0.71, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 559, + 881, + 572, + 881, + 572, + 905, + 559, + 905 + ], + "score": 0.7, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 477, + 1412, + 591, + 1412, + 591, + 1448, + 477, + 1448 + ], + "score": 0.69, + "latex": "\\mathbf { v } _ { t } ^ { l } , t \\in \\mathcal { L }" + }, + { + "category_id": 13, + "poly": [ + 890, + 438, + 947, + 438, + 947, + 473, + 890, + 473 + ], + "score": 0.69, + "latex": "( i , j )" + }, + { + "category_id": 13, + "poly": [ + 418, + 1414, + 465, + 1414, + 465, + 1445, + 418, + 1445 + ], + "score": 0.53, + "latex": "\\mathbf { W } ^ { c }" + }, + { + "category_id": 13, + "poly": [ + 583, + 382, + 604, + 382, + 604, + 409, + 583, + 409 + ], + "score": 0.51, + "latex": "\\mathbf { g }" + }, + { + "category_id": 13, + "poly": [ + 1354, + 1948, + 1376, + 1948, + 1376, + 1970, + 1354, + 1970 + ], + "score": 0.48, + "latex": "\\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 274, + 562, + 289, + 562, + 289, + 584, + 274, + 584 + ], + "score": 0.47, + "latex": "^ { 7 }" + }, + { + "category_id": 13, + "poly": [ + 1372, + 952, + 1394, + 952, + 1394, + 975, + 1372, + 975 + ], + "score": 0.31, + "latex": "\\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 697, + 594, + 744, + 594, + 744, + 622, + 697, + 622 + ], + "score": 0.3, + "latex": "\\mathbf { x } _ { 1 , i }" + }, + { + "category_id": 13, + "poly": [ + 757, + 588, + 965, + 588, + 965, + 623, + 757, + 623 + ], + "score": 0.25, + "latex": "g _ { i } = \\operatorname* { m a x } _ { 1 \\leq j \\leq i - 1 }" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1516.0, + 874.0, + 1516.0, + 874.0, + 1553.0, + 293.0, + 1553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 856.0, + 72.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 231.0, + 938.0, + 231.0, + 938.0, + 281.0, + 294.0, + 281.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": [ + 294.0, + 231.0, + 938.0, + 231.0, + 938.0, + 281.0, + 294.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 945.0, + 1034.0, + 945.0, + 1034.0, + 982.0, + 295.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 945.0, + 1371.0, + 945.0, + 1371.0, + 982.0, + 1114.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 945.0, + 1407.0, + 945.0, + 1407.0, + 982.0, + 1395.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 976.0, + 1407.0, + 976.0, + 1407.0, + 1012.0, + 293.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1007.0, + 1405.0, + 1007.0, + 1405.0, + 1044.0, + 292.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1038.0, + 1003.0, + 1038.0, + 1003.0, + 1074.0, + 293.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 804.0, + 371.0, + 804.0, + 371.0, + 852.0, + 293.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 804.0, + 1407.0, + 804.0, + 1407.0, + 852.0, + 416.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 501.0, + 842.0, + 847.0, + 842.0, + 847.0, + 885.0, + 501.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 905.0, + 842.0, + 1405.0, + 842.0, + 1405.0, + 885.0, + 905.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 875.0, + 558.0, + 875.0, + 558.0, + 914.0, + 293.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 875.0, + 1091.0, + 875.0, + 1091.0, + 914.0, + 573.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1812.0, + 1402.0, + 1812.0, + 1402.0, + 1846.0, + 295.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1841.0, + 1402.0, + 1841.0, + 1402.0, + 1876.0, + 294.0, + 1876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1874.0, + 1079.0, + 1874.0, + 1079.0, + 1908.0, + 295.0, + 1908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1939.0, + 1353.0, + 1939.0, + 1353.0, + 1980.0, + 293.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1377.0, + 1939.0, + 1406.0, + 1939.0, + 1406.0, + 1980.0, + 1377.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1971.0, + 561.0, + 1971.0, + 561.0, + 2010.0, + 294.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 1971.0, + 883.0, + 1971.0, + 883.0, + 2010.0, + 748.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 911.0, + 1971.0, + 1406.0, + 1971.0, + 1406.0, + 2010.0, + 911.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1999.0, + 367.0, + 1999.0, + 367.0, + 2043.0, + 293.0, + 2043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 1999.0, + 746.0, + 1999.0, + 746.0, + 2043.0, + 416.0, + 2043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 970.0, + 1999.0, + 983.0, + 1999.0, + 983.0, + 2043.0, + 970.0, + 2043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1703.0, + 665.0, + 1703.0, + 665.0, + 1741.0, + 294.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 707.0, + 1703.0, + 1373.0, + 1703.0, + 1373.0, + 1741.0, + 707.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1703.0, + 1404.0, + 1703.0, + 1404.0, + 1741.0, + 1394.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1732.0, + 1404.0, + 1732.0, + 1404.0, + 1769.0, + 294.0, + 1769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1765.0, + 1066.0, + 1765.0, + 1066.0, + 1799.0, + 296.0, + 1799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1409.0, + 372.0, + 1409.0, + 372.0, + 1453.0, + 295.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 1409.0, + 417.0, + 1409.0, + 417.0, + 1453.0, + 405.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 1409.0, + 476.0, + 1409.0, + 476.0, + 1453.0, + 466.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 592.0, + 1409.0, + 651.0, + 1409.0, + 651.0, + 1453.0, + 592.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 1409.0, + 1405.0, + 1409.0, + 1405.0, + 1453.0, + 698.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1443.0, + 919.0, + 1443.0, + 919.0, + 1481.0, + 293.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1289.0, + 1189.0, + 1289.0, + 1189.0, + 1333.0, + 298.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1269.0, + 1289.0, + 1281.0, + 1289.0, + 1281.0, + 1333.0, + 1269.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1574.0, + 1250.0, + 1574.0, + 1250.0, + 1614.0, + 295.0, + 1614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1137.0, + 992.0, + 1137.0, + 992.0, + 1182.0, + 292.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 1137.0, + 1251.0, + 1137.0, + 1251.0, + 1182.0, + 1215.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1242.0, + 371.0, + 1242.0, + 371.0, + 1284.0, + 295.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 1242.0, + 708.0, + 1242.0, + 708.0, + 1284.0, + 398.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 735.0, + 1242.0, + 1015.0, + 1242.0, + 1015.0, + 1284.0, + 735.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 263.0, + 665.0, + 704.0, + 665.0, + 704.0, + 704.0, + 263.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 665.0, + 1018.0, + 665.0, + 1018.0, + 704.0, + 728.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 665.0, + 1102.0, + 665.0, + 1102.0, + 704.0, + 1054.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 665.0, + 1146.0, + 665.0, + 1146.0, + 704.0, + 1137.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 262.0, + 695.0, + 732.0, + 695.0, + 732.0, + 738.0, + 262.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 695.0, + 868.0, + 695.0, + 868.0, + 738.0, + 856.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 280.0, + 602.0, + 290.0, + 602.0, + 290.0, + 611.0, + 280.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 573.0, + 696.0, + 573.0, + 696.0, + 634.0, + 329.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1320.0, + 573.0, + 1334.0, + 573.0, + 1334.0, + 634.0, + 1320.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 280.0, + 638.0, + 289.0, + 638.0, + 289.0, + 649.0, + 280.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 614.0, + 694.0, + 614.0, + 694.0, + 672.0, + 329.0, + 672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1305.0, + 614.0, + 1319.0, + 614.0, + 1319.0, + 672.0, + 1305.0, + 672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 266.0, + 511.0, + 690.0, + 511.0, + 690.0, + 568.0, + 266.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 511.0, + 954.0, + 511.0, + 954.0, + 568.0, + 940.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 280.0, + 452.0, + 288.0, + 452.0, + 288.0, + 464.0, + 280.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 420.0, + 889.0, + 420.0, + 889.0, + 488.0, + 331.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 420.0, + 1203.0, + 420.0, + 1203.0, + 488.0, + 1192.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 275.0, + 485.0, + 292.0, + 485.0, + 292.0, + 506.0, + 275.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 468.0, + 694.0, + 468.0, + 694.0, + 521.0, + 334.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 967.0, + 468.0, + 977.0, + 468.0, + 977.0, + 521.0, + 967.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 270.0, + 372.0, + 387.0, + 372.0, + 387.0, + 415.0, + 270.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 372.0, + 582.0, + 372.0, + 582.0, + 415.0, + 408.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 372.0, + 652.0, + 372.0, + 652.0, + 415.0, + 605.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 687.0, + 372.0, + 1230.0, + 372.0, + 1230.0, + 415.0, + 687.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 273.0, + 344.0, + 387.0, + 344.0, + 387.0, + 381.0, + 273.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 459.0, + 344.0, + 652.0, + 344.0, + 652.0, + 381.0, + 459.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 344.0, + 736.0, + 344.0, + 736.0, + 381.0, + 688.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 344.0, + 1231.0, + 344.0, + 1231.0, + 381.0, + 770.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 273.0, + 595.0, + 273.0, + 595.0, + 324.0, + 292.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 639.0, + 273.0, + 815.0, + 273.0, + 815.0, + 324.0, + 639.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 273.0, + 1178.0, + 273.0, + 1178.0, + 324.0, + 873.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 273.0, + 1271.0, + 273.0, + 1271.0, + 324.0, + 1258.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 311.0, + 924.0, + 311.0, + 924.0, + 356.0, + 316.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 311.0, + 1095.0, + 311.0, + 1095.0, + 356.0, + 948.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 311.0, + 1165.0, + 311.0, + 1165.0, + 356.0, + 1154.0, + 356.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 573, + 1404, + 573, + 1404, + 731, + 298, + 731 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 741, + 1404, + 741, + 1404, + 868, + 298, + 868 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1829, + 1404, + 1829, + 1404, + 1960, + 298, + 1960 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1600, + 1405, + 1600, + 1405, + 1703, + 297, + 1703 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 296, + 960, + 1399, + 960, + 1399, + 1024, + 296, + 1024 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 292, + 1247, + 1402, + 1247, + 1402, + 1313, + 292, + 1313 + ], + "score": 0.955 + }, + { + "category_id": 8, + "poly": [ + 479, + 1506, + 1217, + 1506, + 1217, + 1586, + 479, + 1586 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 296, + 1431, + 1405, + 1431, + 1405, + 1495, + 296, + 1495 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 292, + 228, + 1399, + 228, + 1399, + 295, + 292, + 295 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 295, + 374, + 1409, + 374, + 1409, + 441, + 295, + 441 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 548, + 1326, + 1150, + 1326, + 1150, + 1402, + 548, + 1402 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 552, + 307, + 1144, + 307, + 1144, + 363, + 552, + 363 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 298, + 1971, + 1400, + 1971, + 1400, + 2036, + 298, + 2036 + ], + "score": 0.949 + }, + { + "category_id": 8, + "poly": [ + 655, + 1035, + 1040, + 1035, + 1040, + 1077, + 655, + 1077 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 589, + 456, + 1108, + 456, + 1108, + 511, + 589, + 511 + ], + "score": 0.942 + }, + { + "category_id": 8, + "poly": [ + 484, + 1761, + 1215, + 1761, + 1215, + 1817, + 484, + 1817 + ], + "score": 0.941 + }, + { + "category_id": 1, + "poly": [ + 301, + 525, + 1200, + 525, + 1200, + 564, + 301, + 564 + ], + "score": 0.937 + }, + { + "category_id": 1, + "poly": [ + 296, + 1182, + 1148, + 1182, + 1148, + 1217, + 296, + 1217 + ], + "score": 0.936 + }, + { + "category_id": 0, + "poly": [ + 300, + 1114, + 663, + 1114, + 663, + 1151, + 300, + 1151 + ], + "score": 0.926 + }, + { + "category_id": 0, + "poly": [ + 299, + 903, + 630, + 903, + 630, + 935, + 299, + 935 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 298, + 1717, + 1026, + 1717, + 1026, + 1750, + 298, + 1750 + ], + "score": 0.925 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1520, + 1400, + 1520, + 1400, + 1552, + 1352, + 1552 + ], + "score": 0.904 + }, + { + "category_id": 2, + "poly": [ + 297, + 73, + 855, + 73, + 855, + 106, + 297, + 106 + ], + "score": 0.896 + }, + { + "category_id": 9, + "poly": [ + 1366, + 462, + 1400, + 462, + 1400, + 493, + 1366, + 493 + ], + "score": 0.893 + }, + { + "category_id": 9, + "poly": [ + 1366, + 315, + 1400, + 315, + 1400, + 345, + 1366, + 345 + ], + "score": 0.888 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1335, + 1400, + 1335, + 1400, + 1365, + 1366, + 1365 + ], + "score": 0.884 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1041, + 1400, + 1041, + 1400, + 1070, + 1366, + 1070 + ], + "score": 0.882 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2111, + 841, + 2111 + ], + "score": 0.793 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1767, + 1400, + 1767, + 1400, + 1799, + 1352, + 1799 + ], + "score": 0.736 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1767, + 1400, + 1767, + 1400, + 1799, + 1352, + 1799 + ], + "score": 0.346 + }, + { + "category_id": 14, + "poly": [ + 479, + 1505, + 1220, + 1505, + 1220, + 1588, + 479, + 1588 + ], + "score": 0.94, + "latex": "f ( { \\bf { y } } ) = \\sum _ { 1 \\le k \\le m } \\left( s _ { i _ { k } , j _ { k } } ^ { c } + s _ { i _ { k } , j _ { k } , t _ { k } } ^ { l } \\right) + \\sum _ { 1 \\le k \\le m } s _ { t _ { k - q + 1 } , t _ { k - q + 2 } , \\cdots , t _ { k } } ^ { d } ." + }, + { + "category_id": 13, + "poly": [ + 643, + 527, + 811, + 527, + 811, + 563, + 643, + 563 + ], + "score": 0.93, + "latex": "\\mathbf { x } _ { 1 , 1 } = [ [ \\mathrm { S O S } ] ]" + }, + { + "category_id": 14, + "poly": [ + 589, + 454, + 1110, + 454, + 1110, + 512, + 589, + 512 + ], + "score": 0.93, + "latex": "g _ { i } = \\operatorname* { m a x } _ { 1 \\leq j \\leq i - 1 } \\big ( g _ { i - j } + ( s _ { i - j + 1 , i } ^ { c } + s _ { i - j + 1 , i } ^ { L } ) \\big ) ." + }, + { + "category_id": 14, + "poly": [ + 547, + 1323, + 1151, + 1323, + 1151, + 1404, + 547, + 1404 + ], + "score": 0.93, + "latex": "f ( \\mathbf { y } ) = \\sum _ { ( i , j ) \\in \\mathbf { y } } s _ { i , j } ^ { c } , ~ g _ { i } = \\operatorname* { m a x } _ { 1 \\leq j \\leq i - 1 } ( g _ { i - j } + s _ { i - j + 1 , i } ^ { c } ) ." + }, + { + "category_id": 13, + "poly": [ + 752, + 743, + 826, + 743, + 826, + 777, + 752, + 777 + ], + "score": 0.92, + "latex": "\\mathcal { O } ( n ^ { 2 } )" + }, + { + "category_id": 14, + "poly": [ + 655, + 1034, + 1045, + 1034, + 1045, + 1076, + 655, + 1076 + ], + "score": 0.92, + "latex": "\\mathcal { T } = \\operatorname* { m a x } \\big ( 0 , 1 - f ( \\mathbf { y } ^ { * } ) + f ( \\hat { \\mathbf { y } } ) \\big ) ." + }, + { + "category_id": 13, + "poly": [ + 607, + 1862, + 657, + 1862, + 657, + 1903, + 607, + 1903 + ], + "score": 0.92, + "latex": "g _ { . 1 , \\mathrm { O } } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 350, + 1925, + 412, + 1925, + 412, + 1959, + 350, + 1959 + ], + "score": 0.92, + "latex": "{ \\mathcal { O } } ( n )" + }, + { + "category_id": 14, + "poly": [ + 485, + 1760, + 1213, + 1760, + 1213, + 1818, + 485, + 1818 + ], + "score": 0.92, + "latex": "g _ { i , t } = \\underset { 1 \\leq j \\leq i - 1 } { \\operatorname* { m a x } } \\big ( \\underset { t ^ { \\prime } \\in \\mathcal { L } } { \\operatorname* { m a x } } ( g _ { i - j , t ^ { \\prime } } + s _ { t ^ { \\prime } , t } ^ { d } ) + ( s _ { i - j + 1 , i } ^ { c } + s _ { i - j + 1 , i , t } ^ { l } ) \\big ) ," + }, + { + "category_id": 13, + "poly": [ + 1057, + 1463, + 1115, + 1463, + 1115, + 1496, + 1057, + 1496 + ], + "score": 0.92, + "latex": "f ( \\mathbf { y } )" + }, + { + "category_id": 13, + "poly": [ + 817, + 1926, + 873, + 1926, + 873, + 1959, + 817, + 1959 + ], + "score": 0.92, + "latex": "f ( \\hat { \\mathbf { y } } )" + }, + { + "category_id": 13, + "poly": [ + 1070, + 526, + 1191, + 526, + 1191, + 566, + 1070, + 566 + ], + "score": 0.92, + "latex": "s _ { 1 , 1 } ^ { c } + s _ { 1 , 1 } ^ { L }" + }, + { + "category_id": 13, + "poly": [ + 369, + 1599, + 586, + 1599, + 586, + 1641, + 369, + 1641 + ], + "score": 0.91, + "latex": "s _ { t _ { k - q + 1 } , t _ { k - q + 2 } , \\cdots , t _ { k } } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 585, + 698, + 643, + 698, + 643, + 731, + 585, + 731 + ], + "score": 0.91, + "latex": "f ( \\hat { \\mathbf { y } } )" + }, + { + "category_id": 13, + "poly": [ + 504, + 1667, + 683, + 1667, + 683, + 1699, + 504, + 1699 + ], + "score": 0.91, + "latex": "\\mathbf { W } ^ { d } \\in \\mathbb { R } ^ { | \\nu | \\times | \\nu | }" + }, + { + "category_id": 13, + "poly": [ + 847, + 775, + 910, + 775, + 910, + 808, + 847, + 808 + ], + "score": 0.91, + "latex": "{ \\mathcal { O } } ( n )" + }, + { + "category_id": 13, + "poly": [ + 1028, + 262, + 1199, + 262, + 1199, + 295, + 1028, + 295 + ], + "score": 0.91, + "latex": "( i - j + 1 , i , t )" + }, + { + "category_id": 13, + "poly": [ + 1114, + 1895, + 1373, + 1895, + 1373, + 1929, + 1114, + 1929 + ], + "score": 0.91, + "latex": "g _ { i , t } , 1 \\leq i \\leq n , t \\in \\mathcal { L }" + }, + { + "category_id": 13, + "poly": [ + 467, + 262, + 710, + 262, + 710, + 296, + 467, + 296 + ], + "score": 0.9, + "latex": "x _ { 1 , i - j } , 1 \\leq j \\leq i - 1" + }, + { + "category_id": 14, + "poly": [ + 553, + 305, + 1145, + 305, + 1145, + 364, + 553, + 364 + ], + "score": 0.9, + "latex": "g _ { i } = \\operatorname* { m a x } _ { 1 \\leq j \\leq i - 1 } \\big ( g _ { i - j } + \\big ( s _ { i - j + 1 , i } ^ { c } + \\operatorname* { m a x } _ { t \\in \\mathcal { L } } s _ { i - j + 1 , i , t } ^ { l } \\big ) \\big ) ." + }, + { + "category_id": 13, + "poly": [ + 662, + 669, + 789, + 669, + 789, + 701, + 662, + 701 + ], + "score": 0.9, + "latex": "\\mathbf { x } _ { 1 , i } , i > 1" + }, + { + "category_id": 13, + "poly": [ + 1128, + 232, + 1247, + 232, + 1247, + 263, + 1128, + 263 + ], + "score": 0.9, + "latex": "\\mathbf { x } _ { 1 , i } , i > 1" + }, + { + "category_id": 13, + "poly": [ + 1285, + 1609, + 1393, + 1609, + 1393, + 1637, + 1285, + 1637 + ], + "score": 0.89, + "latex": "_ { \\mathbf { y } _ { k - q + 1 , k } }" + }, + { + "category_id": 13, + "poly": [ + 1138, + 1835, + 1186, + 1835, + 1186, + 1864, + 1138, + 1864 + ], + "score": 0.88, + "latex": "\\mathbf { x } _ { 1 , i }" + }, + { + "category_id": 13, + "poly": [ + 683, + 994, + 715, + 994, + 715, + 1024, + 683, + 1024 + ], + "score": 0.88, + "latex": "\\mathbf { y } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 373, + 1835, + 414, + 1835, + 414, + 1865, + 373, + 1865 + ], + "score": 0.87, + "latex": "g _ { i , t }" + }, + { + "category_id": 13, + "poly": [ + 521, + 1640, + 589, + 1640, + 589, + 1668, + 521, + 1668 + ], + "score": 0.86, + "latex": "q = 2" + }, + { + "category_id": 13, + "poly": [ + 912, + 1867, + 964, + 1867, + 964, + 1894, + 912, + 1894 + ], + "score": 0.85, + "latex": "- \\infty" + }, + { + "category_id": 13, + "poly": [ + 414, + 699, + 436, + 699, + 436, + 730, + 414, + 730 + ], + "score": 0.84, + "latex": "\\hat { \\mathbf { y } }" + }, + { + "category_id": 13, + "poly": [ + 1191, + 641, + 1221, + 641, + 1221, + 669, + 1191, + 669 + ], + "score": 0.84, + "latex": "g _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1041, + 1930, + 1183, + 1930, + 1183, + 1959, + 1041, + 1959 + ], + "score": 0.84, + "latex": "\\operatorname* { m a x } _ { t \\in \\mathcal { L } } g _ { n , t }" + }, + { + "category_id": 13, + "poly": [ + 329, + 404, + 733, + 404, + 733, + 444, + 329, + 444 + ], + "score": 0.84, + "latex": "\\begin{array} { r } { \\dot { s } _ { i , j } ^ { L } = \\operatorname* { m a x } _ { t \\in \\mathcal { L } } s _ { i , j , t } ^ { l } , 1 \\leq i \\leq j \\dot { \\leq } n } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1006, + 533, + 1035, + 533, + 1035, + 561, + 1006, + 561 + ], + "score": 0.83, + "latex": "g _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1023, + 1609, + 1040, + 1609, + 1040, + 1635, + 1023, + 1635 + ], + "score": 0.8, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 1380, + 962, + 1402, + 962, + 1402, + 994, + 1380, + 994 + ], + "score": 0.7, + "latex": "\\hat { \\mathbf { y } }" + }, + { + "category_id": 13, + "poly": [ + 1248, + 1834, + 1261, + 1834, + 1261, + 1858, + 1248, + 1858 + ], + "score": 0.7, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 466, + 264, + 539, + 264, + 539, + 296, + 466, + 296 + ], + "score": 0.3, + "latex": "x _ { 1 , i - j }" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1112.0, + 664.0, + 1112.0, + 664.0, + 1156.0, + 292.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 903.0, + 631.0, + 903.0, + 631.0, + 939.0, + 295.0, + 939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 855.0, + 72.0, + 855.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 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, + 575.0, + 1405.0, + 575.0, + 1405.0, + 609.0, + 297.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 606.0, + 1404.0, + 606.0, + 1404.0, + 640.0, + 296.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 637.0, + 1190.0, + 637.0, + 1190.0, + 671.0, + 294.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 637.0, + 1402.0, + 637.0, + 1402.0, + 671.0, + 1222.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 661.0, + 661.0, + 661.0, + 661.0, + 708.0, + 292.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 790.0, + 661.0, + 1404.0, + 661.0, + 1404.0, + 708.0, + 790.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 698.0, + 413.0, + 698.0, + 413.0, + 731.0, + 296.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 437.0, + 698.0, + 584.0, + 698.0, + 584.0, + 731.0, + 437.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 698.0, + 889.0, + 698.0, + 889.0, + 731.0, + 644.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 743.0, + 751.0, + 743.0, + 751.0, + 780.0, + 294.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 743.0, + 1406.0, + 743.0, + 1406.0, + 780.0, + 827.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 774.0, + 846.0, + 774.0, + 846.0, + 810.0, + 293.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 911.0, + 774.0, + 1405.0, + 774.0, + 1405.0, + 810.0, + 911.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 804.0, + 1404.0, + 804.0, + 1404.0, + 840.0, + 293.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 835.0, + 1083.0, + 835.0, + 1083.0, + 871.0, + 294.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1830.0, + 372.0, + 1830.0, + 372.0, + 1863.0, + 294.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 1830.0, + 1137.0, + 1830.0, + 1137.0, + 1863.0, + 415.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 1830.0, + 1247.0, + 1830.0, + 1247.0, + 1863.0, + 1187.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1262.0, + 1830.0, + 1404.0, + 1830.0, + 1404.0, + 1863.0, + 1262.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1862.0, + 606.0, + 1862.0, + 606.0, + 1903.0, + 292.0, + 1903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 658.0, + 1862.0, + 911.0, + 1862.0, + 911.0, + 1903.0, + 658.0, + 1903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 1862.0, + 1408.0, + 1862.0, + 1408.0, + 1903.0, + 965.0, + 1903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1893.0, + 1113.0, + 1893.0, + 1113.0, + 1931.0, + 292.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1374.0, + 1893.0, + 1406.0, + 1893.0, + 1406.0, + 1931.0, + 1374.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1920.0, + 349.0, + 1920.0, + 349.0, + 1967.0, + 292.0, + 1967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 1920.0, + 816.0, + 1920.0, + 816.0, + 1967.0, + 413.0, + 1967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 1920.0, + 1040.0, + 1920.0, + 1040.0, + 1967.0, + 874.0, + 1967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1184.0, + 1920.0, + 1197.0, + 1920.0, + 1197.0, + 1967.0, + 1184.0, + 1967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 278.0, + 1578.0, + 368.0, + 1578.0, + 368.0, + 1673.0, + 278.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 590.0, + 1578.0, + 1022.0, + 1578.0, + 1022.0, + 1673.0, + 590.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1041.0, + 1578.0, + 1284.0, + 1578.0, + 1284.0, + 1673.0, + 1041.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1578.0, + 1419.0, + 1578.0, + 1419.0, + 1673.0, + 1394.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1664.0, + 503.0, + 1664.0, + 503.0, + 1706.0, + 292.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 1664.0, + 871.0, + 1664.0, + 871.0, + 1706.0, + 684.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 957.0, + 1379.0, + 957.0, + 1379.0, + 998.0, + 295.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 992.0, + 682.0, + 992.0, + 682.0, + 1028.0, + 296.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 992.0, + 825.0, + 992.0, + 825.0, + 1028.0, + 716.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1246.0, + 1404.0, + 1246.0, + 1404.0, + 1285.0, + 295.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1277.0, + 1205.0, + 1277.0, + 1205.0, + 1315.0, + 294.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1428.0, + 1403.0, + 1428.0, + 1403.0, + 1467.0, + 295.0, + 1467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1462.0, + 1056.0, + 1462.0, + 1056.0, + 1498.0, + 295.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1116.0, + 1462.0, + 1150.0, + 1462.0, + 1150.0, + 1498.0, + 1116.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 225.0, + 1127.0, + 225.0, + 1127.0, + 268.0, + 294.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1248.0, + 225.0, + 1404.0, + 225.0, + 1404.0, + 268.0, + 1248.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 259.0, + 465.0, + 259.0, + 465.0, + 299.0, + 294.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 259.0, + 1027.0, + 259.0, + 1027.0, + 299.0, + 711.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1200.0, + 259.0, + 1213.0, + 259.0, + 1213.0, + 299.0, + 1200.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 374.0, + 1405.0, + 374.0, + 1405.0, + 410.0, + 294.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 400.0, + 328.0, + 400.0, + 328.0, + 449.0, + 289.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 400.0, + 1167.0, + 400.0, + 1167.0, + 449.0, + 734.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1971.0, + 1404.0, + 1971.0, + 1404.0, + 2007.0, + 296.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2001.0, + 1023.0, + 2001.0, + 1023.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 515.0, + 642.0, + 515.0, + 642.0, + 574.0, + 292.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 812.0, + 515.0, + 1005.0, + 515.0, + 1005.0, + 574.0, + 812.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 515.0, + 1069.0, + 515.0, + 1069.0, + 574.0, + 1036.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 515.0, + 1205.0, + 515.0, + 1205.0, + 574.0, + 1192.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1182.0, + 1151.0, + 1182.0, + 1151.0, + 1222.0, + 297.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1713.0, + 1032.0, + 1713.0, + 1032.0, + 1758.0, + 293.0, + 1758.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1464, + 1403, + 1464, + 1403, + 1679, + 298, + 1679 + ], + "score": 0.983 + }, + { + "category_id": 5, + "poly": [ + 396, + 507, + 1303, + 507, + 1303, + 769, + 396, + 769 + ], + "score": 0.981, + "html": "
ModelCTB5CTB6CTB9UD1
Bi-RNN+ CRF (Single) (Shao et al., 2017) Bi-RNN + CRF (Ensemble) (Shao et al.,2017)94.0790.8191.8989.41
Lattice-LSTM(Meng et al.,2019)94.38-92.3489.75
Glyce + Lattice-LSTM (Meng et al., 2019)95.1491.4392.1390.09
BERT (Meng et al.,2019)95.6191.9292.3890.87
Glyce +BERT (Meng et al., 2019)96.0694.7792.2994.79
96.6195.4193.1596.14
This WorkLUA96.7995.3993.2296.01
LUA w/Label Correlations97.9696.6393.9597.08
" + }, + { + "category_id": 5, + "poly": [ + 342, + 223, + 1357, + 223, + 1357, + 428, + 342, + 428 + ], + "score": 0.981, + "html": "
ModelASMSRCITYUPKUCTB6
Rich Pretraining(Yang et al.,2017)95.797.596.996.396.2
Bi-LSTM(Ma et al.,2018)96.298.197.296.196.7
Multi-Criteria_Learning +_BERT_(Huang etal., 2019)96.697.997.696.697.6
BERT (Meng et al.,2019)96.598.197.696.5=
Glyce + BERT (Meng et al.,2019)96.798.397.996.7-
Unlabeled LUA96.9498.2798.2196.8898.13
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1186, + 1403, + 1186, + 1403, + 1371, + 298, + 1371 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 938, + 1404, + 938, + 1404, + 1093, + 297, + 1093 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1694, + 1404, + 1694, + 1404, + 1877, + 298, + 1877 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1972, + 1402, + 1972, + 1402, + 2034, + 299, + 2034 + ], + "score": 0.945 + }, + { + "category_id": 0, + "poly": [ + 300, + 872, + 559, + 872, + 559, + 907, + 300, + 907 + ], + "score": 0.908 + }, + { + "category_id": 0, + "poly": [ + 299, + 1914, + 653, + 1914, + 653, + 1946, + 299, + 1946 + ], + "score": 0.907 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.903 + }, + { + "category_id": 0, + "poly": [ + 301, + 1408, + 753, + 1408, + 753, + 1439, + 301, + 1439 + ], + "score": 0.902 + }, + { + "category_id": 0, + "poly": [ + 299, + 1129, + 486, + 1129, + 486, + 1160, + 299, + 1160 + ], + "score": 0.879 + }, + { + "category_id": 6, + "poly": [ + 440, + 791, + 1255, + 791, + 1255, + 823, + 440, + 823 + ], + "score": 0.839 + }, + { + "category_id": 6, + "poly": [ + 507, + 450, + 1180, + 450, + 1180, + 483, + 507, + 483 + ], + "score": 0.817 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.706 + }, + { + "category_id": 13, + "poly": [ + 435, + 1786, + 512, + 1786, + 512, + 1817, + 435, + 1817 + ], + "score": 0.93, + "latex": "0 . 1 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 433, + 1216, + 540, + 1216, + 540, + 1247, + 433, + 1247 + ], + "score": 0.92, + "latex": "1 \\times 1 0 ^ { - 6 }" + }, + { + "category_id": 13, + "poly": [ + 813, + 1341, + 917, + 1341, + 917, + 1371, + 813, + 1371 + ], + "score": 0.9, + "latex": "p < 0 . 0 5" + }, + { + "category_id": 13, + "poly": [ + 675, + 1786, + 751, + 1786, + 751, + 1816, + 675, + 1816 + ], + "score": 0.89, + "latex": "0 . 5 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 802, + 1556, + 856, + 1556, + 856, + 1586, + 802, + 1586 + ], + "score": 0.88, + "latex": "1 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 1164, + 1755, + 1240, + 1755, + 1240, + 1786, + 1164, + 1786 + ], + "score": 0.87, + "latex": "0 . 2 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1325, + 1755, + 1402, + 1755, + 1402, + 1786, + 1325, + 1786 + ], + "score": 0.86, + "latex": "0 . 3 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 809, + 1849, + 833, + 1849, + 833, + 1875, + 809, + 1875 + ], + "score": 0.76, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 596, + 313, + 616, + 313, + 616, + 335, + 596, + 335 + ], + "score": 0.57, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 499, + 625, + 520, + 625, + 520, + 647, + 499, + 647 + ], + "score": 0.38, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 521, + 543, + 541, + 543, + 541, + 562, + 521, + 562 + ], + "score": 0.26, + "latex": "^ +" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 867.0, + 562.0, + 867.0, + 562.0, + 913.0, + 291.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1914.0, + 656.0, + 1914.0, + 656.0, + 1950.0, + 295.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1405.0, + 759.0, + 1405.0, + 759.0, + 1442.0, + 293.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1126.0, + 489.0, + 1126.0, + 489.0, + 1165.0, + 293.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 437.0, + 783.0, + 1260.0, + 783.0, + 1260.0, + 832.0, + 437.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 445.0, + 1185.0, + 445.0, + 1185.0, + 489.0, + 513.0, + 489.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, + 1464.0, + 1404.0, + 1464.0, + 1404.0, + 1503.0, + 294.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1491.0, + 1405.0, + 1491.0, + 1405.0, + 1532.0, + 293.0, + 1532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1525.0, + 1405.0, + 1525.0, + 1405.0, + 1559.0, + 294.0, + 1559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1557.0, + 801.0, + 1557.0, + 801.0, + 1591.0, + 293.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 1557.0, + 1405.0, + 1557.0, + 1405.0, + 1591.0, + 857.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1586.0, + 1405.0, + 1586.0, + 1405.0, + 1621.0, + 294.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1619.0, + 1404.0, + 1619.0, + 1404.0, + 1650.0, + 296.0, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1648.0, + 1094.0, + 1648.0, + 1094.0, + 1682.0, + 294.0, + 1682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1184.0, + 1405.0, + 1184.0, + 1405.0, + 1223.0, + 294.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1212.0, + 432.0, + 1212.0, + 432.0, + 1254.0, + 292.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 1212.0, + 1407.0, + 1212.0, + 1407.0, + 1254.0, + 541.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1247.0, + 1407.0, + 1247.0, + 1407.0, + 1286.0, + 293.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1275.0, + 1407.0, + 1275.0, + 1407.0, + 1315.0, + 292.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1309.0, + 1405.0, + 1309.0, + 1405.0, + 1343.0, + 293.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1341.0, + 812.0, + 1341.0, + 812.0, + 1373.0, + 296.0, + 1373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 1341.0, + 1058.0, + 1341.0, + 1058.0, + 1373.0, + 918.0, + 1373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 936.0, + 1405.0, + 936.0, + 1405.0, + 976.0, + 295.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 969.0, + 1404.0, + 969.0, + 1404.0, + 1006.0, + 294.0, + 1006.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": [ + 294.0, + 1029.0, + 1406.0, + 1029.0, + 1406.0, + 1067.0, + 294.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1059.0, + 995.0, + 1059.0, + 995.0, + 1098.0, + 295.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1692.0, + 1405.0, + 1692.0, + 1405.0, + 1730.0, + 293.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1724.0, + 1406.0, + 1724.0, + 1406.0, + 1760.0, + 293.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1755.0, + 1163.0, + 1755.0, + 1163.0, + 1789.0, + 292.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.0, + 1755.0, + 1324.0, + 1755.0, + 1324.0, + 1789.0, + 1241.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1784.0, + 434.0, + 1784.0, + 434.0, + 1822.0, + 292.0, + 1822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 1784.0, + 674.0, + 1784.0, + 674.0, + 1822.0, + 513.0, + 1822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 752.0, + 1784.0, + 1406.0, + 1784.0, + 1406.0, + 1822.0, + 752.0, + 1822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1818.0, + 1402.0, + 1818.0, + 1402.0, + 1850.0, + 294.0, + 1850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1847.0, + 808.0, + 1847.0, + 808.0, + 1879.0, + 296.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 834.0, + 1847.0, + 1014.0, + 1847.0, + 1014.0, + 1879.0, + 834.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1970.0, + 1404.0, + 1970.0, + 1404.0, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1999.0, + 1404.0, + 1999.0, + 1404.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1042, + 1404, + 1042, + 1404, + 1437, + 298, + 1437 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1453, + 1404, + 1453, + 1404, + 1760, + 297, + 1760 + ], + "score": 0.982 + }, + { + "category_id": 5, + "poly": [ + 366, + 223, + 1334, + 223, + 1334, + 512, + 366, + 512 + ], + "score": 0.981, + "html": "
ModelChunkingNER
CoNLL-2000CoNLL-2003OntoNotes5.0
Bi-LSTM + CRF (Huang et al., 2015)94.4690.101
Flair Embeddings (Akbik et al., 2018)96.7293.0989.3
GCDT w/BERT (Liu et al., 2019b)96.8193.231
BERT-MRC (Li et al., 2019)-93.0491.11
HCR w/BERT (Luo et al., 2020)=93.3790.30
BERT-Biaffine Model (Yu et al., 2020) LUA-93.591.3
This Work96.9593.4692.09
LUA w/Label Correlations97.23--
" + }, + { + "category_id": 1, + "poly": [ + 297, + 761, + 1404, + 761, + 1404, + 945, + 297, + 945 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 622, + 1402, + 622, + 1402, + 745, + 298, + 745 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 303, + 1856, + 1404, + 1856, + 1404, + 1948, + 303, + 1948 + ], + "score": 0.958 + }, + { + "category_id": 2, + "poly": [ + 330, + 1975, + 1014, + 1975, + 1014, + 2033, + 330, + 2033 + ], + "score": 0.95 + }, + { + "category_id": 0, + "poly": [ + 299, + 1798, + 535, + 1798, + 535, + 1830, + 299, + 1830 + ], + "score": 0.882 + }, + { + "category_id": 0, + "poly": [ + 302, + 983, + 767, + 983, + 767, + 1015, + 302, + 1015 + ], + "score": 0.881 + }, + { + "category_id": 6, + "poly": [ + 514, + 533, + 1180, + 533, + 1180, + 566, + 514, + 566 + ], + "score": 0.88 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 859, + 2089, + 859, + 2112, + 840, + 2112 + ], + "score": 0.792 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.581 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.335 + }, + { + "category_id": 13, + "poly": [ + 972, + 822, + 1049, + 822, + 1049, + 852, + 972, + 852 + ], + "score": 0.89, + "latex": "1 . 2 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 779, + 883, + 855, + 883, + 855, + 914, + 779, + 914 + ], + "score": 0.89, + "latex": "0 . 1 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 297, + 852, + 374, + 852, + 374, + 884, + 297, + 884 + ], + "score": 0.88, + "latex": "0 . 9 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 1171, + 822, + 1234, + 822, + 1234, + 853, + 1171, + 853 + ], + "score": 0.88, + "latex": "0 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 644, + 1667, + 720, + 1667, + 720, + 1698, + 644, + 1698 + ], + "score": 0.88, + "latex": "0 . 7 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 428, + 1728, + 503, + 1728, + 503, + 1759, + 428, + 1759 + ], + "score": 0.88, + "latex": "0 . 4 \\hat { 2 } \\%" + }, + { + "category_id": 13, + "poly": [ + 772, + 822, + 849, + 822, + 849, + 853, + 772, + 853 + ], + "score": 0.87, + "latex": "1 . 3 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1024, + 883, + 1101, + 883, + 1101, + 914, + 1024, + 914 + ], + "score": 0.87, + "latex": "0 . 0 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 630, + 886, + 656, + 886, + 656, + 912, + 630, + 912 + ], + "score": 0.76, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 504, + 285, + 525, + 285, + 525, + 306, + 504, + 306 + ], + "score": 0.37, + "latex": "^ +" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1971.0, + 1016.0, + 1971.0, + 1016.0, + 2008.0, + 332.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 2003.0, + 690.0, + 2003.0, + 690.0, + 2038.0, + 332.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1795.0, + 541.0, + 1795.0, + 541.0, + 1835.0, + 293.0, + 1835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 983.0, + 771.0, + 983.0, + 771.0, + 1019.0, + 295.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 509.0, + 531.0, + 1183.0, + 531.0, + 1183.0, + 570.0, + 509.0, + 570.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, + 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": [ + 294.0, + 1041.0, + 1404.0, + 1041.0, + 1404.0, + 1076.0, + 294.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1072.0, + 1402.0, + 1072.0, + 1402.0, + 1104.0, + 296.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1103.0, + 1405.0, + 1103.0, + 1405.0, + 1138.0, + 292.0, + 1138.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1131.0, + 1404.0, + 1131.0, + 1404.0, + 1169.0, + 292.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1162.0, + 1404.0, + 1162.0, + 1404.0, + 1200.0, + 293.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1192.0, + 1405.0, + 1192.0, + 1405.0, + 1229.0, + 292.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1223.0, + 1406.0, + 1223.0, + 1406.0, + 1260.0, + 292.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1254.0, + 1406.0, + 1254.0, + 1406.0, + 1291.0, + 293.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1283.0, + 1404.0, + 1283.0, + 1404.0, + 1322.0, + 293.0, + 1322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1314.0, + 1404.0, + 1314.0, + 1404.0, + 1352.0, + 293.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1346.0, + 1404.0, + 1346.0, + 1404.0, + 1379.0, + 296.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1377.0, + 1406.0, + 1377.0, + 1406.0, + 1414.0, + 293.0, + 1414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1406.0, + 1014.0, + 1406.0, + 1014.0, + 1443.0, + 293.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1455.0, + 1402.0, + 1455.0, + 1402.0, + 1487.0, + 296.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1484.0, + 1405.0, + 1484.0, + 1405.0, + 1519.0, + 295.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1512.0, + 1405.0, + 1512.0, + 1405.0, + 1551.0, + 294.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1543.0, + 1405.0, + 1543.0, + 1405.0, + 1581.0, + 291.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1573.0, + 1404.0, + 1573.0, + 1404.0, + 1612.0, + 292.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1604.0, + 1406.0, + 1604.0, + 1406.0, + 1642.0, + 294.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1636.0, + 1406.0, + 1636.0, + 1406.0, + 1673.0, + 292.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1662.0, + 643.0, + 1662.0, + 643.0, + 1706.0, + 291.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 721.0, + 1662.0, + 1405.0, + 1662.0, + 1405.0, + 1706.0, + 721.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1698.0, + 1405.0, + 1698.0, + 1405.0, + 1734.0, + 294.0, + 1734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1729.0, + 427.0, + 1729.0, + 427.0, + 1764.0, + 295.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 1729.0, + 935.0, + 1729.0, + 935.0, + 1764.0, + 504.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 757.0, + 1405.0, + 757.0, + 1405.0, + 800.0, + 292.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 793.0, + 1404.0, + 793.0, + 1404.0, + 825.0, + 295.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 820.0, + 771.0, + 820.0, + 771.0, + 856.0, + 294.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 820.0, + 971.0, + 820.0, + 971.0, + 856.0, + 850.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 820.0, + 1170.0, + 820.0, + 1170.0, + 856.0, + 1050.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1235.0, + 820.0, + 1405.0, + 820.0, + 1405.0, + 856.0, + 1235.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 850.0, + 296.0, + 850.0, + 296.0, + 889.0, + 292.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 850.0, + 1404.0, + 850.0, + 1404.0, + 889.0, + 375.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 882.0, + 629.0, + 882.0, + 629.0, + 918.0, + 294.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 882.0, + 778.0, + 882.0, + 778.0, + 918.0, + 657.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 882.0, + 1023.0, + 882.0, + 1023.0, + 918.0, + 856.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1102.0, + 882.0, + 1405.0, + 882.0, + 1405.0, + 918.0, + 1102.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 914.0, + 934.0, + 914.0, + 934.0, + 948.0, + 294.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 624.0, + 1403.0, + 624.0, + 1403.0, + 657.0, + 293.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 652.0, + 1406.0, + 652.0, + 1406.0, + 687.0, + 293.0, + 687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 683.0, + 1406.0, + 683.0, + 1406.0, + 717.0, + 293.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 715.0, + 1041.0, + 715.0, + 1041.0, + 749.0, + 293.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1858.0, + 1403.0, + 1858.0, + 1403.0, + 1891.0, + 297.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1888.0, + 1404.0, + 1888.0, + 1404.0, + 1921.0, + 297.0, + 1921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1918.0, + 1405.0, + 1918.0, + 1405.0, + 1951.0, + 296.0, + 1951.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 975, + 1404, + 975, + 1404, + 1250, + 298, + 1250 + ], + "score": 0.982 + }, + { + "category_id": 5, + "poly": [ + 467, + 223, + 1233, + 223, + 1233, + 429, + 467, + 429 + ], + "score": 0.981, + "html": "
ModelATISSNIPSMTOD
Slot-Gated SLU (Goo et al.,2018) Bi-LSTM + EMLo (Siddhant et al., 2019)95.2088.3095.12
95.4293.90-
Joint BERT (Chen et al., 2019b) CM-Net (Liu et al.,2019c)96.10 96.2097.0096.48
96.1597.15-
This WorkLUA LUA w/ Intent Detection96.2797.1097.53
97.2097.55
" + }, + { + "category_id": 1, + "poly": [ + 299, + 1346, + 1402, + 1346, + 1402, + 1531, + 299, + 1531 + ], + "score": 0.979 + }, + { + "category_id": 5, + "poly": [ + 371, + 508, + 1328, + 508, + 1328, + 633, + 371, + 633 + ], + "score": 0.977, + "html": "
Model1-3(8695)4-7(2380)8-11(151)12-24(31)Overall
HCRw/BERT91.1585.2250.4320.6790.27
BERT-Biaffine Model91.6787.2370.2440.5591.26
LUA92.3188.5277.3457.2792.09
" + }, + { + "category_id": 1, + "poly": [ + 298, + 776, + 1403, + 776, + 1403, + 961, + 298, + 961 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1546, + 1404, + 1546, + 1404, + 1700, + 298, + 1700 + ], + "score": 0.974 + }, + { + "category_id": 2, + "poly": [ + 330, + 1912, + 782, + 1912, + 782, + 2035, + 330, + 2035 + ], + "score": 0.961 + }, + { + "category_id": 6, + "poly": [ + 505, + 451, + 1200, + 451, + 1200, + 482, + 505, + 482 + ], + "score": 0.89 + }, + { + "category_id": 1, + "poly": [ + 301, + 1795, + 1400, + 1795, + 1400, + 1888, + 301, + 1888 + ], + "score": 0.88 + }, + { + "category_id": 0, + "poly": [ + 299, + 1739, + 679, + 1739, + 679, + 1770, + 299, + 1770 + ], + "score": 0.854 + }, + { + "category_id": 1, + "poly": [ + 295, + 656, + 1403, + 656, + 1403, + 719, + 295, + 719 + ], + "score": 0.829 + }, + { + "category_id": 0, + "poly": [ + 299, + 1290, + 871, + 1290, + 871, + 1321, + 299, + 1321 + ], + "score": 0.803 + }, + { + "category_id": 2, + "poly": [ + 297, + 75, + 854, + 75, + 854, + 105, + 297, + 105 + ], + "score": 0.739 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 858, + 2087, + 858, + 2111, + 841, + 2111 + ], + "score": 0.659 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 859, + 2087, + 859, + 2111, + 841, + 2111 + ], + "score": 0.344 + }, + { + "category_id": 0, + "poly": [ + 300, + 1739, + 680, + 1739, + 680, + 1770, + 300, + 1770 + ], + "score": 0.238 + }, + { + "category_id": 2, + "poly": [ + 297, + 75, + 854, + 75, + 854, + 105, + 297, + 105 + ], + "score": 0.195 + }, + { + "category_id": 6, + "poly": [ + 295, + 656, + 1403, + 656, + 1403, + 719, + 295, + 719 + ], + "score": 0.114 + }, + { + "category_id": 13, + "poly": [ + 1074, + 656, + 1198, + 656, + 1198, + 690, + 1074, + 690 + ], + "score": 0.93, + "latex": "A - B ( N )" + }, + { + "category_id": 13, + "poly": [ + 495, + 1668, + 585, + 1668, + 585, + 1699, + 495, + 1699 + ], + "score": 0.89, + "latex": "4 1 . 2 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 1277, + 1637, + 1367, + 1637, + 1367, + 1668, + 1277, + 1668 + ], + "score": 0.89, + "latex": "1 0 . 1 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 1279, + 1189, + 1355, + 1189, + 1355, + 1220, + 1279, + 1220 + ], + "score": 0.89, + "latex": "0 . 1 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 382, + 1159, + 459, + 1159, + 459, + 1189, + 382, + 1189 + ], + "score": 0.88, + "latex": "0 . 0 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1078, + 1159, + 1155, + 1159, + 1155, + 1189, + 1078, + 1189 + ], + "score": 0.88, + "latex": "1 . 1 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 297, + 1219, + 373, + 1219, + 373, + 1250, + 297, + 1250 + ], + "score": 0.87, + "latex": "0 . 2 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 338, + 689, + 367, + 689, + 367, + 715, + 338, + 715 + ], + "score": 0.77, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 894, + 689, + 918, + 689, + 918, + 715, + 894, + 715 + ], + "score": 0.73, + "latex": "B" + }, + { + "category_id": 13, + "poly": [ + 819, + 689, + 844, + 689, + 844, + 715, + 819, + 715 + ], + "score": 0.7, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 602, + 1036, + 668, + 1036, + 668, + 1067, + 602, + 1067 + ], + "score": 0.66, + "latex": "\\mathrm { S L U } ^ { 3 }" + }, + { + "category_id": 13, + "poly": [ + 691, + 1669, + 783, + 1669, + 783, + 1698, + 691, + 1698 + ], + "score": 0.57, + "latex": "1 2 - 2 4" + }, + { + "category_id": 13, + "poly": [ + 694, + 1608, + 790, + 1608, + 790, + 1638, + 694, + 1638 + ], + "score": 0.53, + "latex": "1 2 - 2 4" + }, + { + "category_id": 13, + "poly": [ + 588, + 284, + 609, + 284, + 609, + 306, + 588, + 306 + ], + "score": 0.52, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 365, + 1669, + 444, + 1669, + 444, + 1698, + 365, + 1698 + ], + "score": 0.39, + "latex": "8 - 1 1" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1911.0, + 785.0, + 1911.0, + 785.0, + 1945.0, + 332.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1940.0, + 759.0, + 1940.0, + 759.0, + 1979.0, + 330.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1969.0, + 739.0, + 1969.0, + 739.0, + 2008.0, + 328.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 2000.0, + 724.0, + 2000.0, + 724.0, + 2038.0, + 330.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 499.0, + 445.0, + 1202.0, + 445.0, + 1202.0, + 489.0, + 499.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1734.0, + 684.0, + 1734.0, + 684.0, + 1775.0, + 293.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1288.0, + 874.0, + 1288.0, + 874.0, + 1325.0, + 294.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2118.0, + 839.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1734.0, + 684.0, + 1734.0, + 684.0, + 1775.0, + 293.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 656.0, + 1073.0, + 656.0, + 1073.0, + 691.0, + 295.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1199.0, + 656.0, + 1404.0, + 656.0, + 1404.0, + 691.0, + 1199.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 686.0, + 337.0, + 686.0, + 337.0, + 721.0, + 294.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 686.0, + 818.0, + 686.0, + 818.0, + 721.0, + 368.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 686.0, + 893.0, + 686.0, + 893.0, + 721.0, + 845.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 686.0, + 929.0, + 686.0, + 929.0, + 721.0, + 919.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 976.0, + 1405.0, + 976.0, + 1405.0, + 1012.0, + 296.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1003.0, + 1406.0, + 1003.0, + 1406.0, + 1044.0, + 293.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1033.0, + 601.0, + 1033.0, + 601.0, + 1075.0, + 291.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 669.0, + 1033.0, + 1408.0, + 1033.0, + 1408.0, + 1075.0, + 669.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1068.0, + 1402.0, + 1068.0, + 1402.0, + 1101.0, + 296.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1097.0, + 1406.0, + 1097.0, + 1406.0, + 1133.0, + 294.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1126.0, + 1403.0, + 1126.0, + 1403.0, + 1163.0, + 295.0, + 1163.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1158.0, + 381.0, + 1158.0, + 381.0, + 1193.0, + 292.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 460.0, + 1158.0, + 1077.0, + 1158.0, + 1077.0, + 1193.0, + 460.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 1158.0, + 1405.0, + 1158.0, + 1405.0, + 1193.0, + 1156.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1188.0, + 1278.0, + 1188.0, + 1278.0, + 1224.0, + 293.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1356.0, + 1188.0, + 1405.0, + 1188.0, + 1405.0, + 1224.0, + 1356.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1217.0, + 296.0, + 1217.0, + 296.0, + 1256.0, + 293.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 374.0, + 1217.0, + 993.0, + 1217.0, + 993.0, + 1256.0, + 374.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1342.0, + 1406.0, + 1342.0, + 1406.0, + 1386.0, + 293.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1376.0, + 1406.0, + 1376.0, + 1406.0, + 1413.0, + 294.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1404.0, + 1407.0, + 1404.0, + 1407.0, + 1449.0, + 292.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1441.0, + 1404.0, + 1441.0, + 1404.0, + 1473.0, + 295.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1466.0, + 1404.0, + 1466.0, + 1404.0, + 1506.0, + 294.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1501.0, + 1017.0, + 1501.0, + 1017.0, + 1531.0, + 294.0, + 1531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 777.0, + 1405.0, + 777.0, + 1405.0, + 811.0, + 293.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 805.0, + 1405.0, + 805.0, + 1405.0, + 843.0, + 293.0, + 843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 837.0, + 1407.0, + 837.0, + 1407.0, + 874.0, + 293.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 865.0, + 1407.0, + 865.0, + 1407.0, + 907.0, + 292.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 896.0, + 1404.0, + 896.0, + 1404.0, + 932.0, + 294.0, + 932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 930.0, + 1108.0, + 930.0, + 1108.0, + 963.0, + 293.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1546.0, + 1402.0, + 1546.0, + 1402.0, + 1579.0, + 297.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1574.0, + 1405.0, + 1574.0, + 1405.0, + 1612.0, + 293.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1606.0, + 693.0, + 1606.0, + 693.0, + 1643.0, + 294.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 1606.0, + 1405.0, + 1606.0, + 1405.0, + 1643.0, + 791.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1638.0, + 1276.0, + 1638.0, + 1276.0, + 1675.0, + 294.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1368.0, + 1638.0, + 1405.0, + 1638.0, + 1405.0, + 1675.0, + 1368.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1665.0, + 364.0, + 1665.0, + 364.0, + 1702.0, + 294.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 1665.0, + 494.0, + 1665.0, + 494.0, + 1702.0, + 445.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 1665.0, + 690.0, + 1665.0, + 690.0, + 1702.0, + 586.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 1665.0, + 794.0, + 1665.0, + 794.0, + 1702.0, + 784.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1793.0, + 1405.0, + 1793.0, + 1405.0, + 1832.0, + 293.0, + 1832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1829.0, + 1404.0, + 1829.0, + 1404.0, + 1860.0, + 297.0, + 1860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1858.0, + 1405.0, + 1858.0, + 1405.0, + 1892.0, + 296.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 656.0, + 1073.0, + 656.0, + 1073.0, + 691.0, + 295.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1199.0, + 656.0, + 1404.0, + 656.0, + 1404.0, + 691.0, + 1199.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 686.0, + 337.0, + 686.0, + 337.0, + 721.0, + 294.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 686.0, + 818.0, + 686.0, + 818.0, + 721.0, + 368.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 686.0, + 893.0, + 686.0, + 893.0, + 721.0, + 845.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 686.0, + 929.0, + 686.0, + 929.0, + 721.0, + 919.0, + 721.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 747, + 1404, + 747, + 1404, + 1388, + 297, + 1388 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1404, + 1404, + 1404, + 1404, + 1709, + 297, + 1709 + ], + "score": 0.982 + }, + { + "category_id": 5, + "poly": [ + 318, + 223, + 1382, + 223, + 1382, + 390, + 318, + 390 + ], + "score": 0.981, + "html": "
ModelTheoretical ComplexityPractical ComplexityRunning Time
BERT BERT+CRFO(n) O(n|C|2)0(1)5m11s 7m33s
LUAO(n²)O(n) O(n)6m25s
LUA w/Label CorrelationsO(n²|C1²)0(n)7m09s
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1850, + 1402, + 1850, + 1402, + 2034, + 298, + 2034 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 300, + 515, + 1403, + 515, + 1403, + 608, + 300, + 608 + ], + "score": 0.973 + }, + { + "category_id": 0, + "poly": [ + 301, + 668, + 586, + 668, + 586, + 704, + 301, + 704 + ], + "score": 0.9 + }, + { + "category_id": 0, + "poly": [ + 299, + 1771, + 543, + 1771, + 543, + 1806, + 299, + 1806 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.823 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2111, + 841, + 2111 + ], + "score": 0.791 + }, + { + "category_id": 6, + "poly": [ + 462, + 413, + 1234, + 413, + 1234, + 445, + 462, + 445 + ], + "score": 0.262 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.118 + }, + { + "category_id": 13, + "poly": [ + 762, + 260, + 824, + 260, + 824, + 289, + 762, + 289 + ], + "score": 0.9, + "latex": "{ \\mathcal { O } } ( n )" + }, + { + "category_id": 13, + "poly": [ + 738, + 291, + 847, + 291, + 847, + 322, + 738, + 322 + ], + "score": 0.89, + "latex": "\\mathcal { O } ( n \\vert \\mathcal { L } \\vert ^ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1034, + 293, + 1096, + 293, + 1096, + 322, + 1034, + 322 + ], + "score": 0.88, + "latex": "{ \\mathcal { O } } ( n )" + }, + { + "category_id": 13, + "poly": [ + 332, + 576, + 422, + 576, + 422, + 607, + 332, + 607 + ], + "score": 0.88, + "latex": "1 5 . 0 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 817, + 576, + 892, + 576, + 892, + 607, + 817, + 607 + ], + "score": 0.88, + "latex": "5 . \\dot { 3 } 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 1036, + 261, + 1094, + 261, + 1094, + 290, + 1036, + 290 + ], + "score": 0.87, + "latex": "\\mathcal { O } ( 1 )" + }, + { + "category_id": 13, + "poly": [ + 1034, + 326, + 1095, + 326, + 1095, + 355, + 1034, + 355 + ], + "score": 0.87, + "latex": "{ \\mathcal { O } } ( n )" + }, + { + "category_id": 13, + "poly": [ + 1033, + 356, + 1096, + 356, + 1096, + 386, + 1033, + 386 + ], + "score": 0.85, + "latex": "{ \\mathcal { O } } ( n )" + }, + { + "category_id": 13, + "poly": [ + 730, + 354, + 854, + 354, + 854, + 386, + 730, + 386 + ], + "score": 0.81, + "latex": "\\mathcal { O } ( n ^ { 2 } \\vert \\mathcal { L } \\vert ^ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 755, + 324, + 830, + 324, + 830, + 353, + 755, + 353 + ], + "score": 0.79, + "latex": "\\scriptstyle { \\mathcal { O } } ( n ^ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 943, + 549, + 966, + 549, + 966, + 574, + 943, + 574 + ], + "score": 0.58, + "latex": "^ +" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 666.0, + 592.0, + 666.0, + 592.0, + 709.0, + 292.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1767.0, + 548.0, + 1767.0, + 548.0, + 1815.0, + 292.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2116.0, + 839.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 460.0, + 407.0, + 1239.0, + 407.0, + 1239.0, + 451.0, + 460.0, + 451.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": [ + 296.0, + 748.0, + 1404.0, + 748.0, + 1404.0, + 784.0, + 296.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 778.0, + 1406.0, + 778.0, + 1406.0, + 815.0, + 293.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 805.0, + 1409.0, + 805.0, + 1409.0, + 850.0, + 287.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 838.0, + 1406.0, + 838.0, + 1406.0, + 876.0, + 292.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 871.0, + 1406.0, + 871.0, + 1406.0, + 907.0, + 294.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 902.0, + 1406.0, + 902.0, + 1406.0, + 936.0, + 294.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 931.0, + 1407.0, + 931.0, + 1407.0, + 967.0, + 294.0, + 967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 961.0, + 1406.0, + 961.0, + 1406.0, + 995.0, + 294.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 994.0, + 1405.0, + 994.0, + 1405.0, + 1026.0, + 295.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1016.0, + 1404.0, + 1016.0, + 1404.0, + 1062.0, + 291.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1053.0, + 1404.0, + 1053.0, + 1404.0, + 1089.0, + 294.0, + 1089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1082.0, + 1406.0, + 1082.0, + 1406.0, + 1120.0, + 292.0, + 1120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1113.0, + 1406.0, + 1113.0, + 1406.0, + 1151.0, + 291.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1141.0, + 1409.0, + 1141.0, + 1409.0, + 1182.0, + 291.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1176.0, + 1405.0, + 1176.0, + 1405.0, + 1212.0, + 294.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1205.0, + 1406.0, + 1205.0, + 1406.0, + 1241.0, + 294.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1236.0, + 1405.0, + 1236.0, + 1405.0, + 1272.0, + 295.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1266.0, + 1406.0, + 1266.0, + 1406.0, + 1300.0, + 292.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1296.0, + 1405.0, + 1296.0, + 1405.0, + 1333.0, + 295.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1323.0, + 1406.0, + 1323.0, + 1406.0, + 1366.0, + 292.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1360.0, + 778.0, + 1360.0, + 778.0, + 1392.0, + 296.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1406.0, + 1405.0, + 1406.0, + 1405.0, + 1438.0, + 295.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1436.0, + 1405.0, + 1436.0, + 1405.0, + 1468.0, + 295.0, + 1468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1465.0, + 1406.0, + 1465.0, + 1406.0, + 1501.0, + 294.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1497.0, + 1406.0, + 1497.0, + 1406.0, + 1532.0, + 294.0, + 1532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1526.0, + 1406.0, + 1526.0, + 1406.0, + 1562.0, + 294.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1554.0, + 1405.0, + 1554.0, + 1405.0, + 1592.0, + 292.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1586.0, + 1406.0, + 1586.0, + 1406.0, + 1624.0, + 291.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1617.0, + 1405.0, + 1617.0, + 1405.0, + 1651.0, + 294.0, + 1651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1646.0, + 1406.0, + 1646.0, + 1406.0, + 1683.0, + 292.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1678.0, + 828.0, + 1678.0, + 828.0, + 1712.0, + 292.0, + 1712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1848.0, + 1407.0, + 1848.0, + 1407.0, + 1887.0, + 294.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1880.0, + 1406.0, + 1880.0, + 1406.0, + 1918.0, + 293.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1909.0, + 1407.0, + 1909.0, + 1407.0, + 1947.0, + 292.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1943.0, + 1404.0, + 1943.0, + 1404.0, + 1975.0, + 296.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1971.0, + 1404.0, + 1971.0, + 1404.0, + 2005.0, + 293.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2003.0, + 1053.0, + 2003.0, + 1053.0, + 2037.0, + 293.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 513.0, + 1404.0, + 513.0, + 1404.0, + 549.0, + 294.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 546.0, + 942.0, + 546.0, + 942.0, + 583.0, + 294.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 967.0, + 546.0, + 1404.0, + 546.0, + 1404.0, + 583.0, + 967.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 576.0, + 331.0, + 576.0, + 331.0, + 610.0, + 295.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 576.0, + 816.0, + 576.0, + 816.0, + 610.0, + 423.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 576.0, + 902.0, + 576.0, + 902.0, + 610.0, + 893.0, + 610.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 300, + 281, + 1402, + 281, + 1402, + 373, + 300, + 373 + ], + "score": 0.869 + }, + { + "category_id": 1, + "poly": [ + 297, + 1623, + 1401, + 1623, + 1401, + 1687, + 297, + 1687 + ], + "score": 0.853 + }, + { + "category_id": 1, + "poly": [ + 295, + 1535, + 1400, + 1535, + 1400, + 1600, + 295, + 1600 + ], + "score": 0.852 + }, + { + "category_id": 1, + "poly": [ + 292, + 1710, + 1400, + 1710, + 1400, + 1775, + 292, + 1775 + ], + "score": 0.851 + }, + { + "category_id": 1, + "poly": [ + 289, + 1332, + 1401, + 1332, + 1401, + 1395, + 289, + 1395 + ], + "score": 0.828 + }, + { + "category_id": 1, + "poly": [ + 296, + 980, + 1403, + 980, + 1403, + 1044, + 296, + 1044 + ], + "score": 0.823 + }, + { + "category_id": 1, + "poly": [ + 296, + 396, + 1150, + 396, + 1150, + 431, + 296, + 431 + ], + "score": 0.821 + }, + { + "category_id": 1, + "poly": [ + 299, + 1213, + 1400, + 1213, + 1400, + 1308, + 299, + 1308 + ], + "score": 0.807 + }, + { + "category_id": 1, + "poly": [ + 297, + 1065, + 1406, + 1065, + 1406, + 1192, + 297, + 1192 + ], + "score": 0.806 + }, + { + "category_id": 1, + "poly": [ + 298, + 1418, + 1404, + 1418, + 1404, + 1513, + 298, + 1513 + ], + "score": 0.801 + }, + { + "category_id": 1, + "poly": [ + 290, + 892, + 1399, + 892, + 1399, + 956, + 290, + 956 + ], + "score": 0.781 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.775 + }, + { + "category_id": 1, + "poly": [ + 287, + 806, + 1401, + 806, + 1401, + 871, + 287, + 871 + ], + "score": 0.772 + }, + { + "category_id": 1, + "poly": [ + 298, + 1797, + 1400, + 1797, + 1400, + 1862, + 298, + 1862 + ], + "score": 0.77 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2111, + 840, + 2111 + ], + "score": 0.764 + }, + { + "category_id": 1, + "poly": [ + 294, + 570, + 1400, + 570, + 1400, + 634, + 294, + 634 + ], + "score": 0.763 + }, + { + "category_id": 1, + "poly": [ + 297, + 657, + 1405, + 657, + 1405, + 782, + 297, + 782 + ], + "score": 0.739 + }, + { + "category_id": 1, + "poly": [ + 300, + 453, + 1403, + 453, + 1403, + 548, + 300, + 548 + ], + "score": 0.731 + }, + { + "category_id": 1, + "poly": [ + 297, + 1971, + 1399, + 1971, + 1399, + 2035, + 297, + 2035 + ], + "score": 0.73 + }, + { + "category_id": 1, + "poly": [ + 294, + 1884, + 1399, + 1884, + 1399, + 1948, + 294, + 1948 + ], + "score": 0.724 + }, + { + "category_id": 0, + "poly": [ + 300, + 227, + 489, + 227, + 489, + 261, + 300, + 261 + ], + "score": 0.626 + }, + { + "category_id": 1, + "poly": [ + 300, + 227, + 489, + 227, + 489, + 261, + 300, + 261 + ], + "score": 0.242 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.113 + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2117.0, + 839.0, + 2117.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": [ + 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, + 277.0, + 1406.0, + 277.0, + 1406.0, + 317.0, + 294.0, + 317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 307.0, + 1404.0, + 307.0, + 1404.0, + 350.0, + 321.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 341.0, + 533.0, + 341.0, + 533.0, + 373.0, + 326.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1619.0, + 1406.0, + 1619.0, + 1406.0, + 1661.0, + 292.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1655.0, + 597.0, + 1655.0, + 597.0, + 1686.0, + 322.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1534.0, + 1404.0, + 1534.0, + 1404.0, + 1573.0, + 294.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1569.0, + 707.0, + 1569.0, + 707.0, + 1602.0, + 320.0, + 1602.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": [ + 323.0, + 1741.0, + 1051.0, + 1741.0, + 1051.0, + 1777.0, + 323.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1329.0, + 1404.0, + 1329.0, + 1404.0, + 1370.0, + 293.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1362.0, + 534.0, + 1362.0, + 534.0, + 1395.0, + 324.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 976.0, + 1408.0, + 976.0, + 1408.0, + 1018.0, + 294.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1008.0, + 1106.0, + 1008.0, + 1106.0, + 1047.0, + 321.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 396.0, + 1150.0, + 396.0, + 1150.0, + 436.0, + 295.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1212.0, + 1405.0, + 1212.0, + 1405.0, + 1252.0, + 294.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1245.0, + 1404.0, + 1245.0, + 1404.0, + 1284.0, + 322.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1276.0, + 759.0, + 1276.0, + 759.0, + 1310.0, + 324.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1069.0, + 1404.0, + 1069.0, + 1404.0, + 1102.0, + 297.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1098.0, + 1406.0, + 1098.0, + 1406.0, + 1134.0, + 324.0, + 1134.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1129.0, + 1407.0, + 1129.0, + 1407.0, + 1163.0, + 321.0, + 1163.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1159.0, + 1334.0, + 1159.0, + 1334.0, + 1196.0, + 321.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1418.0, + 1406.0, + 1418.0, + 1406.0, + 1456.0, + 296.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1451.0, + 1404.0, + 1451.0, + 1404.0, + 1485.0, + 323.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1480.0, + 611.0, + 1480.0, + 611.0, + 1514.0, + 322.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 888.0, + 1404.0, + 888.0, + 1404.0, + 933.0, + 294.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 924.0, + 778.0, + 924.0, + 778.0, + 957.0, + 322.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 804.0, + 1404.0, + 804.0, + 1404.0, + 844.0, + 293.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 836.0, + 1389.0, + 836.0, + 1389.0, + 871.0, + 322.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1796.0, + 1404.0, + 1796.0, + 1404.0, + 1835.0, + 294.0, + 1835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1828.0, + 1337.0, + 1828.0, + 1337.0, + 1864.0, + 323.0, + 1864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 569.0, + 1405.0, + 569.0, + 1405.0, + 608.0, + 296.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 603.0, + 721.0, + 603.0, + 721.0, + 635.0, + 319.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 660.0, + 1405.0, + 660.0, + 1405.0, + 693.0, + 295.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 690.0, + 1403.0, + 690.0, + 1403.0, + 723.0, + 324.0, + 723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 721.0, + 1405.0, + 721.0, + 1405.0, + 757.0, + 323.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 751.0, + 775.0, + 751.0, + 775.0, + 783.0, + 322.0, + 783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 452.0, + 1407.0, + 452.0, + 1407.0, + 493.0, + 293.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 485.0, + 1404.0, + 485.0, + 1404.0, + 520.0, + 323.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 513.0, + 1405.0, + 513.0, + 1405.0, + 552.0, + 321.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1970.0, + 1403.0, + 1970.0, + 1403.0, + 2006.0, + 296.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 2000.0, + 1235.0, + 2000.0, + 1235.0, + 2036.0, + 323.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1883.0, + 1401.0, + 1883.0, + 1401.0, + 1919.0, + 295.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1917.0, + 973.0, + 1917.0, + 973.0, + 1947.0, + 323.0, + 1947.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": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.866 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.828 + }, + { + "category_id": 1, + "poly": [ + 289, + 665, + 1402, + 665, + 1402, + 729, + 289, + 729 + ], + "score": 0.827 + }, + { + "category_id": 1, + "poly": [ + 295, + 579, + 1402, + 579, + 1402, + 643, + 295, + 643 + ], + "score": 0.81 + }, + { + "category_id": 1, + "poly": [ + 290, + 751, + 1401, + 751, + 1401, + 815, + 290, + 815 + ], + "score": 0.799 + }, + { + "category_id": 1, + "poly": [ + 301, + 229, + 1400, + 229, + 1400, + 323, + 301, + 323 + ], + "score": 0.792 + }, + { + "category_id": 1, + "poly": [ + 293, + 1681, + 1400, + 1681, + 1400, + 1748, + 293, + 1748 + ], + "score": 0.79 + }, + { + "category_id": 1, + "poly": [ + 296, + 1099, + 1404, + 1099, + 1404, + 1226, + 296, + 1226 + ], + "score": 0.773 + }, + { + "category_id": 1, + "poly": [ + 298, + 1332, + 1405, + 1332, + 1405, + 1457, + 298, + 1457 + ], + "score": 0.77 + }, + { + "category_id": 1, + "poly": [ + 301, + 836, + 1402, + 836, + 1402, + 932, + 301, + 932 + ], + "score": 0.764 + }, + { + "category_id": 1, + "poly": [ + 295, + 1596, + 1401, + 1596, + 1401, + 1660, + 295, + 1660 + ], + "score": 0.763 + }, + { + "category_id": 1, + "poly": [ + 300, + 346, + 1401, + 346, + 1401, + 439, + 300, + 439 + ], + "score": 0.758 + }, + { + "category_id": 1, + "poly": [ + 297, + 952, + 1404, + 952, + 1404, + 1077, + 297, + 1077 + ], + "score": 0.725 + }, + { + "category_id": 1, + "poly": [ + 292, + 1246, + 1400, + 1246, + 1400, + 1312, + 292, + 1312 + ], + "score": 0.713 + }, + { + "category_id": 1, + "poly": [ + 295, + 1767, + 1401, + 1767, + 1401, + 1834, + 295, + 1834 + ], + "score": 0.712 + }, + { + "category_id": 1, + "poly": [ + 297, + 1480, + 1405, + 1480, + 1405, + 1575, + 297, + 1575 + ], + "score": 0.698 + }, + { + "category_id": 1, + "poly": [ + 293, + 1854, + 1401, + 1854, + 1401, + 1919, + 293, + 1919 + ], + "score": 0.683 + }, + { + "category_id": 1, + "poly": [ + 298, + 461, + 1406, + 461, + 1406, + 556, + 298, + 556 + ], + "score": 0.667 + }, + { + "category_id": 1, + "poly": [ + 301, + 1942, + 1402, + 1942, + 1402, + 2033, + 301, + 2033 + ], + "score": 0.643 + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 665.0, + 1404.0, + 665.0, + 1404.0, + 701.0, + 293.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 696.0, + 851.0, + 696.0, + 851.0, + 732.0, + 322.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 579.0, + 1404.0, + 579.0, + 1404.0, + 615.0, + 298.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 611.0, + 890.0, + 611.0, + 890.0, + 643.0, + 322.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 750.0, + 1403.0, + 750.0, + 1403.0, + 786.0, + 296.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 783.0, + 708.0, + 783.0, + 708.0, + 816.0, + 321.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 226.0, + 1404.0, + 226.0, + 1404.0, + 266.0, + 295.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 260.0, + 1405.0, + 260.0, + 1405.0, + 298.0, + 322.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 292.0, + 721.0, + 292.0, + 721.0, + 326.0, + 323.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1677.0, + 1404.0, + 1677.0, + 1404.0, + 1722.0, + 292.0, + 1722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1713.0, + 1137.0, + 1713.0, + 1137.0, + 1748.0, + 322.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1099.0, + 1406.0, + 1099.0, + 1406.0, + 1137.0, + 291.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1131.0, + 1405.0, + 1131.0, + 1405.0, + 1166.0, + 320.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1165.0, + 1405.0, + 1165.0, + 1405.0, + 1196.0, + 321.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1192.0, + 1293.0, + 1192.0, + 1293.0, + 1229.0, + 324.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1331.0, + 1405.0, + 1331.0, + 1405.0, + 1370.0, + 292.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1365.0, + 1403.0, + 1365.0, + 1403.0, + 1398.0, + 322.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1392.0, + 1405.0, + 1392.0, + 1405.0, + 1434.0, + 320.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1425.0, + 503.0, + 1425.0, + 503.0, + 1455.0, + 322.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 836.0, + 1404.0, + 836.0, + 1404.0, + 874.0, + 296.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 868.0, + 1406.0, + 868.0, + 1406.0, + 902.0, + 324.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 896.0, + 1028.0, + 896.0, + 1028.0, + 933.0, + 320.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1592.0, + 1405.0, + 1592.0, + 1405.0, + 1633.0, + 294.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1629.0, + 632.0, + 1629.0, + 632.0, + 1660.0, + 320.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 345.0, + 1406.0, + 345.0, + 1406.0, + 383.0, + 296.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 377.0, + 1406.0, + 377.0, + 1406.0, + 412.0, + 320.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 408.0, + 623.0, + 408.0, + 623.0, + 437.0, + 322.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 954.0, + 1402.0, + 954.0, + 1402.0, + 990.0, + 296.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 986.0, + 1405.0, + 986.0, + 1405.0, + 1019.0, + 324.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1016.0, + 1406.0, + 1016.0, + 1406.0, + 1052.0, + 322.0, + 1052.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1046.0, + 784.0, + 1046.0, + 784.0, + 1079.0, + 321.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1248.0, + 1403.0, + 1248.0, + 1403.0, + 1284.0, + 294.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1276.0, + 981.0, + 1276.0, + 981.0, + 1313.0, + 324.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1767.0, + 1405.0, + 1767.0, + 1405.0, + 1804.0, + 294.0, + 1804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1799.0, + 1314.0, + 1799.0, + 1314.0, + 1834.0, + 322.0, + 1834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1480.0, + 1406.0, + 1480.0, + 1406.0, + 1518.0, + 295.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1509.0, + 1407.0, + 1509.0, + 1407.0, + 1551.0, + 321.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1540.0, + 1168.0, + 1540.0, + 1168.0, + 1580.0, + 323.0, + 1580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1854.0, + 1404.0, + 1854.0, + 1404.0, + 1890.0, + 297.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1885.0, + 1153.0, + 1885.0, + 1153.0, + 1920.0, + 324.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 461.0, + 1404.0, + 461.0, + 1404.0, + 499.0, + 297.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 493.0, + 1404.0, + 493.0, + 1404.0, + 529.0, + 321.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 523.0, + 623.0, + 523.0, + 623.0, + 556.0, + 321.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1937.0, + 1403.0, + 1937.0, + 1403.0, + 1979.0, + 295.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1971.0, + 1407.0, + 1971.0, + 1407.0, + 2007.0, + 320.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1999.0, + 399.0, + 1999.0, + 399.0, + 2035.0, + 319.0, + 2035.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.879 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2113, + 836, + 2113 + ], + "score": 0.833 + }, + { + "category_id": 1, + "poly": [ + 296, + 1015, + 1400, + 1015, + 1400, + 1078, + 296, + 1078 + ], + "score": 0.755 + }, + { + "category_id": 1, + "poly": [ + 294, + 931, + 1401, + 931, + 1401, + 996, + 294, + 996 + ], + "score": 0.714 + }, + { + "category_id": 1, + "poly": [ + 295, + 1097, + 1402, + 1097, + 1402, + 1162, + 295, + 1162 + ], + "score": 0.71 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1400, + 229, + 1400, + 324, + 298, + 324 + ], + "score": 0.618 + }, + { + "category_id": 1, + "poly": [ + 298, + 1181, + 1404, + 1181, + 1404, + 1276, + 298, + 1276 + ], + "score": 0.549 + }, + { + "category_id": 1, + "poly": [ + 293, + 342, + 1399, + 342, + 1399, + 406, + 293, + 406 + ], + "score": 0.547 + }, + { + "category_id": 1, + "poly": [ + 299, + 736, + 1401, + 736, + 1401, + 830, + 299, + 830 + ], + "score": 0.544 + }, + { + "category_id": 1, + "poly": [ + 299, + 425, + 1400, + 425, + 1400, + 520, + 299, + 520 + ], + "score": 0.52 + }, + { + "category_id": 1, + "poly": [ + 293, + 651, + 1400, + 651, + 1400, + 718, + 293, + 718 + ], + "score": 0.517 + }, + { + "category_id": 1, + "poly": [ + 296, + 848, + 1402, + 848, + 1402, + 912, + 296, + 912 + ], + "score": 0.483 + }, + { + "category_id": 1, + "poly": [ + 299, + 539, + 1400, + 539, + 1400, + 634, + 299, + 634 + ], + "score": 0.471 + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1008.0, + 1405.0, + 1008.0, + 1405.0, + 1058.0, + 291.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1045.0, + 775.0, + 1045.0, + 775.0, + 1080.0, + 322.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 927.0, + 1403.0, + 927.0, + 1403.0, + 970.0, + 293.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 964.0, + 709.0, + 964.0, + 709.0, + 997.0, + 319.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1099.0, + 1404.0, + 1099.0, + 1404.0, + 1135.0, + 294.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1127.0, + 1014.0, + 1127.0, + 1014.0, + 1163.0, + 325.0, + 1163.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 1405.0, + 228.0, + 1405.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 262.0, + 1405.0, + 262.0, + 1405.0, + 296.0, + 323.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 290.0, + 850.0, + 290.0, + 850.0, + 328.0, + 323.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1179.0, + 1405.0, + 1179.0, + 1405.0, + 1219.0, + 293.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1211.0, + 1404.0, + 1211.0, + 1404.0, + 1248.0, + 322.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1242.0, + 739.0, + 1242.0, + 739.0, + 1279.0, + 322.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 339.0, + 1403.0, + 339.0, + 1403.0, + 380.0, + 293.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 373.0, + 776.0, + 373.0, + 776.0, + 407.0, + 322.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 734.0, + 1405.0, + 734.0, + 1405.0, + 773.0, + 293.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 767.0, + 1406.0, + 767.0, + 1406.0, + 802.0, + 319.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 798.0, + 1289.0, + 798.0, + 1289.0, + 832.0, + 323.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 425.0, + 1404.0, + 425.0, + 1404.0, + 463.0, + 295.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 458.0, + 1405.0, + 458.0, + 1405.0, + 492.0, + 323.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 486.0, + 920.0, + 486.0, + 920.0, + 524.0, + 322.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 651.0, + 1405.0, + 651.0, + 1405.0, + 688.0, + 293.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 683.0, + 1293.0, + 683.0, + 1293.0, + 718.0, + 322.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 845.0, + 1404.0, + 845.0, + 1404.0, + 888.0, + 293.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 880.0, + 611.0, + 880.0, + 611.0, + 911.0, + 323.0, + 911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 539.0, + 1406.0, + 539.0, + 1406.0, + 577.0, + 295.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 568.0, + 1404.0, + 568.0, + 1404.0, + 607.0, + 320.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 600.0, + 768.0, + 600.0, + 768.0, + 638.0, + 323.0, + 638.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/SkmiegW0b/SkmiegW0b.md b/parse/train/SkmiegW0b/SkmiegW0b.md new file mode 100644 index 0000000000000000000000000000000000000000..b8680fe089b9ad62aaacbadc0a348a7290c24ad5 --- /dev/null +++ b/parse/train/SkmiegW0b/SkmiegW0b.md @@ -0,0 +1,250 @@ +# CHALLENGES IN DISENTANGLING INDEPENDENT FAC-TORS OF VARIATION + +Anonymous authors Paper under double-blind review + +# ABSTRACT + +We study the problem of building models that disentangle independent factors of variation. Such models encode features that can efficiently be used for classification and to transfer attributes between different images in image synthesis. As data we use a weakly labeled training set, where labels indicate what single factor has changed between two data samples, although the relative value of the change is unknown. This labeling is of particular interest as it may be readily available without annotation costs. We introduce an autoencoder model and train it through constraints on image pairs and triplets. We show the role of feature dimensionality and adversarial training theoretically and experimentally. We formally prove the existence of the reference ambiguity, which is inherently present in the disentangling task when weakly labeled data is used. The numerical value of a factor has different meaning in different reference frames. When the reference depends on other factors, transferring that factor becomes ambiguous. We demonstrate experimentally that the proposed model can successfully transfer attributes on several datasets, but show also cases when the reference ambiguity occurs. + +# 1 INTRODUCTION + +One way to simplify the problem of classifying or regressing attributes of interest from data is to build an intermediate representation, a feature, where the information about the attributes is better separated than in the input data. Better separation means that some entries of the feature vary only with respect to one and only one attribute. In this way, classifiers and regressors would not need to build invariance to many nuisance attributes. Instead, they could devote more capacity to discriminating the attributes of interest, and possibly achieve better performance. We call this task disentangling factors of variation, and we identify attributes with the factors. In addition to facilitating classification and regression, this task is beneficial to image synthesis. One could build a model to render images, where each input varies only one attribute of the output, and to transfer attributes between images. + +When labeling is possible and available, supervised learning can be used to solve this task. In general, however, some attributes may not be easily quantifiable (e.g., style). Therefore, we consider using weak labeling, where we only know what attribute has changed between two images, although we do not know by how much. This type of labeling may be readily available in many cases without manual annotation. For example, image pairs from a stereo system are automatically labeled with a viewpoint change, albeit unknown. A practical model that can learn from these labels is an encoder-decoder pair subject to a reconstruction constraint. In this model the weak labels can be used to define similarities between subsets of the feature obtained from two input images. + +We introduce a novel adversarial training of autoencoders to solve the disentangling task when only weak labels are available. Compared to previous methods, our discriminator is not conditioned on class labels, but takes image pairs as inputs. This way the number of parameters can be kept constant. + +We describe the shortcut problem, where all the the information is encoded only in one part of the feature, while other part is completely ignored, as fig. 1 illustrates. We prove our method solves this problem and demonstrate it experimentally. + +We formally prove existence of the reference ambiguity, that is inherently present in the disentangling task when weak labels are used. Thus no algorithm can provably learn disentangling. As fig. 1 shows, the reference ambiguity means that a factor (for example viewpoint) can have different meaning when using a different reference frame that depends on another factor (for example car type). We show experimentally that this ambiguity rarely arise, we can observe it only when the data is complex. + +![](images/fded6d23f694cb78ea35bd328451d6c6df4a13df4ab823b7f12b98e6e7a12b42.jpg) +Figure 1: Challenges of disentangling. We disentangle the feature into two parts, one representing the viewpoint, the other the car type. We use the features for attribute transfer. For all subfigures the viewpoint feature is taken from the leftmost column and the car type feature is taken from the topmost row. (a) ideal solution: the viewpoint and the car type are transferred correctly. (b) shortcut problem: the car type is not transferred. (c) reference ambiguity: compared to the others the viewpoint orientation is flipped for the blue car. + +# 2 RELATED WORK + +Autoencoders. Autoencoders in Bourlard & Kamp (1988), Hinton & Salakhutdinov (2006), Bengio et al. (2013) learn to reconstruct the input data as $\mathbf { x } = \mathrm { D e c } ( \mathrm { E n c } ( \mathbf { x } ) )$ , where $\operatorname { E n c } ( \mathbf { x } )$ is the internal image representation (the encoder) and Dec (the decoder) reconstructs the input of the encoder. Variational autoencoders in Kingma & Welling (2014) use a generative model; $p ( \bar { \mathbf { x } } , \mathbf { z } ) = p ( \mathbf { x } | \mathbf { z } ) p ( \mathbf { z } )$ , where $\mathbf { x }$ is the observed data (images), and $\mathbf { z }$ are latent variables. The encoder estimates the parameters of the posterior, $\operatorname { E n c } ( \mathbf { x } ) = p ( \mathbf { z } | \mathbf { x } )$ , and the decoder estimates the conditional likelihood, $\mathrm { D e c } ( \mathbf { z } ) = p ( \mathbf { x } | \mathbf { z } )$ . In Hinton et al. (2011) autoencoders are trained with transformed image input pairs. The relative transformation parameters are also fed to the network. Because the internal representation explicitly represents the objects presence and location, the network can learn their absolute position. One important aspect of the autoencoders is that they encourage latent representations to keep as much information about the input as possible. + +GAN. Generative Adversarial Nets Goodfellow et al. (2014) learn to sample realistic images with two competing neural networks. The generator Dec creates images $\mathbf { x } = \mathrm { D e c } ( \mathbf { z } )$ from a random noise sample $\mathbf { z }$ and tries to fool a discriminator Dsc, which has to decide whether the image is sampled from the generator $p _ { g }$ or from real images $p _ { r e a l }$ . After a successful training the discriminator cannot distinguish the real from the generated samples. Adversarial training is often used to enforce constraints on random variables. BIGAN, Donahue et al. (2016) learns a feature representation with adversarial nets by training an encoder Enc, such that $\operatorname { E n c } ( \mathbf { x } )$ is Gaussian, when $\mathbf { x } \sim p _ { r e a l }$ . CoGAN, Liu & Tuzel (2016) learns the joint distribution of multi-domain images by having generators and discriminators in each domain, and sharing their weights. They can transform images between domains without being given correspondences. InfoGan, Chen et al. (2016) learns a subset of factors of variation by reproducing parts of the input vector with the discriminator. + +Disentangling and independence. Many recent methods use neural networks for disentangling features, with various degrees of supervision. In Xi Peng (2017) multi-task learning is used with full supervision for pose invariant face recognition. Using both identity and pose labels Tran et al. (2017) can learn pose invariant features and synthesize frontalized faces from any pose. In Yang et al. (2015) autoencoders are used to generate novel viewpoints of objects. They disentangle the object category factor from the viewpoint factor by using as explicit supervision signals: the relative viewpoint transformations between image pairs. In Cheung et al. (2014) the output of the encoder is split in two parts: one represents the class label and the other represents the nuisance factors. Their objective function has a penalty term for misclassification and a cross-covariance cost to disentangle class from nuisance factors. Hierarchical Boltzmann Machines are used in Reed et al. (2014) for disentangling. A subset of hidden units are trained to be sensitive to a specific factor of variation, while being invariant to others. Variational Fair Autoencoders Louizos et al. (2016) learn a representation that is invariant to specific nuisance factors, while retaining as much information as possible. Autoencoders can also be used for visual analogy Reed et al. (2015). GAN is used for disentangling intrinsic image factors (albedo and normal map) in Shu et al. (2017) without using ground truth labeling. They achieve this by explicitly modeling the physics of the image formation in their network. + +The work most related to ours is Mathieu et al. (2016), where an autoencoder restores an image from another by swapping parts of the internal image representation. Their main improvement over Reed et al. (2015) is the use of adversarial training, which allows for learning with image pairs instead of image triplets. Therefore, expensive labels like viewpoint alignment between different car types are no longer needed. One of the differences between this method and ours is that it trains a discriminator for each of the given labels. A benefit of this approach is the higher selectivity of the discriminator, but a drawback is that the number of model parameters grows linearly with the number of labels. In contrast, we work with image pairs and use a single discriminator so that our method is uninfluenced by the number of labels. Moreover, we show formally and experimentally the difficulties of disentangling factors of variation. + +# 3 DISENTANGLING FACTORS OF VARIATION + +We are interested in the design and training of two models. One should map a data sample (e.g., an image) to a feature that is explicitly partitioned into subvectors, each associated to a specific factor of variation. The other model should map this feature back to an image. We call the first model the encoder and the second model the decoder. For example, given the image of a car we would like the encoder to yield a feature with two subvectors: one related to the car viewpoint, and the other related to the car type. The subvectors of the feature obtained from the encoder should be useful for classification or regression of the corresponding factor that they depend on (the car viewpoint and type in the example). This separation would also be very useful to the decoder. It would enable advanced editing of images, for example, the transfer of the viewpoint or car types from an image to another, by swapping the corresponding subvectors. Next, we introduce our model of the data and formal definitions of our encoder and decoder. + +Data model. We assume that our observed data $\mathbf { x }$ is generated through some unknown deterministic invertible and smooth process $f$ that depends on the factors $\mathbf { v }$ and $\mathbf { c }$ , so that $\mathbf { x } = f ( \mathbf { v } , \mathbf { c } )$ . In our earlier example, $\mathbf { x }$ is an image, $\mathbf { v }$ is a viewpoint, c is a car type, and $f$ is the rendering engine. It is reasonable to assume that $f$ is invertible, as for most cases the factors are readily apparent form the image. We assume $f$ is smooth, because a small change in the factors should only result in a small change in the image and vice versa. We denote the inverse of the rendering engine as $f ^ { - 1 } = [ f _ { \mathbf { v } } ^ { - 1 } , f _ { \mathbf { c } } ^ { - 1 } ]$ , where the subscript refers to the recovered factor. + +Weak labeling. In the training we are given pairs of images $\mathbf { x } _ { 1 }$ and $\mathbf { x } _ { 2 }$ , where they differ in $\mathbf { v }$ (varying factor), but they have the same c (common factor). We also assume that the two varying factors and the common factor are sampled independently, $\mathbf { v } _ { 1 } \sim p _ { \mathbf { v } }$ , $\mathbf { v } _ { 2 } \sim p _ { \mathbf { v } }$ and $\mathbf { c } \sim p _ { \mathbf { c } }$ . The images are generated as $\mathbf { x } _ { 1 } = f ( \mathbf { v } _ { 1 } , \mathbf { c } )$ and $\mathbf { x } _ { 1 } = f ( \mathbf { v } _ { 2 } , \mathbf { c } )$ . We call this labeling weak, because we do not know the absolute values of either the $\mathbf { v }$ or c factors or even relative changes between $\mathbf { v } _ { 1 }$ and $\mathbf { v } _ { 2 }$ . All we know is that the image pairs share the same common factor. + +The encoder. Let Enc be the encoder mapping images to features. For simplicity, we consider features split into only two column subvectors, $N _ { \mathbf { v } }$ and $N _ { \mathbf { c } }$ , one associated to the varying factor $\mathbf { v }$ and the other associated to the common factor c. Then, we have that $\mathrm { E n c } ( \mathbf { x } ) = [ N _ { \mathbf { v } } ( \mathbf { x } ) , \bar { N _ { \mathbf { c } } } ( \mathbf { x } ) ]$ . Ideally, we would like to find the inverse of the image formation function, $[ N _ { \bf v } , N _ { \bf c } ] = f ^ { - 1 }$ , which separates and recovers the factors $\mathbf { v }$ and $\mathbf { c }$ from data samples $\mathbf { x }$ , i.e., + +$$ +N _ { \mathbf { v } } ( f ( \mathbf { v } , \mathbf { c } ) ) = \mathbf { v } \qquad N _ { \mathbf { c } } ( f ( \mathbf { v } , \mathbf { c } ) ) = \mathbf { c } . +$$ + +In practice, this is not possible because any bijective transformation of $\mathbf { v }$ and c could be undone by $f$ and produce the same output $\mathbf { x }$ . Therefore, we aim for $N _ { \mathbf { v } }$ and $N _ { \mathbf { c } }$ that satisfy the following feature disentangling properties + +$$ +R _ { \mathbf { v } } ( N _ { \mathbf { v } } ( f ( \mathbf { v } , \mathbf { c } ) ) ) = \mathbf { v } \qquad R _ { \mathbf { c } } ( N _ { \mathbf { c } } ( f ( \mathbf { v } , \mathbf { c } ) ) ) = \mathbf { c } +$$ + +for all $\mathbf { v } , \mathbf { c }$ , and for some bijective functions $R _ { \mathbf { v } }$ and $R _ { \mathbf { c } }$ , so that $N _ { \mathbf { v } }$ is invariant to $\mathbf { c }$ and $N _ { \mathbf { c } }$ is invariant to $\mathbf { v }$ . + +The decoder. Let Dec be the decoder mapping features to images. The sequence encoder-decoder is constrained to form an autoencoder, so + +$$ +\mathrm { D e c } ( N _ { \mathbf { v } } ( { \mathbf { x } } ) , N _ { \mathbf { c } } ( { \mathbf { x } } ) ) = { \mathbf { x } } , \qquad \forall { \mathbf { x } } . +$$ + +To use the decoder for image synthesis, so that each input subvector affects only one factor in the rendered image, the ideal decoder should satisfy the data disentangling property + +$$ +\mathrm { D e c } ( N _ { \mathbf { v } } ( f ( \mathbf { v } _ { 1 } , \mathbf { c } _ { 1 } ) ) , N _ { \mathbf { c } } ( f ( \mathbf { v } _ { 2 } , \mathbf { c } _ { 2 } ) ) ) = f ( \mathbf { v } _ { 1 } , \mathbf { c } _ { 2 } ) +$$ + +for any $\mathbf { v } _ { 1 } , \mathbf { v } _ { 2 } , \mathbf { c } _ { 1 }$ , and $\mathbf { c } _ { 2 }$ . The equation above describes the transfer of the varying factor $\mathbf { v } _ { 1 }$ of $\mathbf { x } _ { 1 }$ and the common factor $\mathbf { c } _ { 2 }$ of $\mathbf { x } _ { 2 }$ to a new image ${ \bf x } _ { 1 \oplus 2 } = f ( { \bf v } _ { 1 } , { \bf c } _ { 2 } )$ . + +In the next section we describe our training method for disentangling. We introduce a novel adversarial term, that does not need to be conditioned on the common factor, rather it uses only image pairs, that keeps the model parameters constant. Then we address the two main challenges of disentangling, the shortcut problem and the reference ambiguity. We discuss which disentanglement properties can be (provably) achieved by our (or any) method. + +# 3.1 MODEL TRAINING + +In our training procedure we use two terms in the objective function: an autoencoder loss and an adversarial loss. We describe these losses in functional form, however the components are implemented using neural networks. In all our terms we use the following sampling of independent factors + +$$ +\mathbf { c } _ { 1 } , \mathbf { c } _ { 3 } \sim p _ { \mathbf { c } } , \quad \mathbf { v } _ { 1 } , \mathbf { v } _ { 2 } , \mathbf { v } _ { 3 } \sim p _ { \mathbf { v } } . +$$ + +The images are formed as $\mathbf { x } _ { 1 } = f ( \mathbf { v } _ { 1 } , \mathbf { c } _ { 1 } )$ , $\mathbf { x } _ { 2 } = f ( \mathbf { v } _ { 2 } , \mathbf { c } _ { 1 } )$ and $\mathbf { x } _ { 3 } = f ( \mathbf { v } _ { 3 } , \mathbf { c } _ { 3 } )$ . The images $\mathbf { x } _ { 1 }$ and $\mathbf { x } _ { 2 }$ share the same common factor, and $\mathbf { x } _ { 1 }$ and $\mathbf { x } _ { 3 }$ are independent. In our objective functions, we use either pairs or triplets of the above images. + +Autoencoder loss. In this term, we use images $\mathbf { x } _ { 1 }$ and $\mathbf { x } _ { 2 }$ with the same common factor $\mathbf { c } _ { 1 }$ . We feed both images to the encoder. Since both images share the same $\mathbf { c } _ { 1 }$ , we impose that the decoder should reconstruct $\mathbf { x } _ { 1 }$ from the encoder subvector $N _ { \mathbf { v } } ( \mathbf { x } _ { 1 } )$ and the encoder subvector $N _ { \mathbf { c } } ( \mathbf { x } _ { 2 } )$ , and similarly for the reconstruction of $\mathbf { x } _ { 2 }$ . The autoencoder objective is thus defined as + +$$ +\mathcal { L } _ { A E } \doteq E _ { \mathbf { x } _ { 1 } , \mathbf { x } _ { 2 } } \left[ \left| \mathbf { x } _ { 1 } - \mathrm { D e c } ( N _ { \mathbf { v } } ( \mathbf { x } _ { 1 } ) , N _ { \mathbf { c } } ( \mathbf { x } _ { 2 } ) ) \right| ^ { 2 } + \left| \mathbf { x } _ { 2 } - \mathrm { D e c } ( N _ { \mathbf { v } } ( \mathbf { x } _ { 2 } ) , N _ { \mathbf { c } } ( \mathbf { x } _ { 1 } ) ) \right| ^ { 2 } \right] . +$$ + +Adversarial loss. We introduce an adversarial training where the generator is our encoder-decoder pair and the discriminator Dsc is a neural network, which takes image pairs as input. The discriminator learns to distinguish between real image pairs $[ \mathbf { x } _ { 1 } , \mathbf { x } _ { 2 } ]$ and fake ones $[ \mathbf { x } _ { 1 } , \mathbf { x } _ { 3 \oplus 1 } ]$ , where $\mathbf { x } _ { 3 \oplus 1 } \doteq$ $\mathrm { D e c } ( N _ { \mathbf { v } } ( \mathbf { x } _ { 3 } ) , N _ { \mathbf { c } } ( \mathbf { x } _ { 1 } ) )$ . If the encoder were ideal, the image $\mathbf { x } _ { \mathrm { 3 \oplus 1 } }$ would be the result of taking the common factor from $\mathbf { x } _ { 1 }$ and the varying factor from $\mathbf { x } _ { 3 }$ . The generator learns to fool the discriminator, so that $\mathbf { x } _ { 3 \oplus 1 }$ looks like the random variable $\mathbf { x } _ { 2 }$ (the common factor is $\mathbf { c } _ { 1 }$ and the varying factor is independent of $\mathbf { v } _ { 1 }$ ). To this purpose, the decoder must make use of $N _ { \mathbf { c } } ( \mathbf { x } _ { 1 } )$ , since $\mathbf { x } _ { 3 }$ does not carry any information about $\mathbf { c } _ { 1 }$ . The objective function is thus defined as + +$$ +\mathcal { L } _ { G A N } \doteq E _ { \mathbf { x } _ { 1 } , \mathbf { x } _ { 2 } } \Big [ \log ( \mathrm { D s c } ( \mathbf { x } _ { 1 } , \mathbf { x } _ { 2 } ) ) \Big ] + E _ { \mathbf { x } _ { 1 } , \mathbf { x } _ { 3 } } \Big [ \log ( 1 - \mathrm { D s c } ( \mathbf { x } _ { 1 } , \mathbf { x } _ { 3 \oplus 1 } ) ) \Big ] . +$$ + +Composite loss. Finally, we optimize the weighted sum of the two losses $\mathcal { L } = \mathcal { L } _ { A E } + \lambda \mathcal { L } _ { G A N }$ + +$$ +\operatorname* { m i n } _ { \mathrm { D e c , E n c } } \operatorname* { m a x } _ { \mathrm { D s c } } \mathcal { L } _ { A E } ( \mathrm { D e c , E n c } ) + \lambda \mathcal { L } _ { G A N } ( \mathrm { D e c , E n c , D s c } ) +$$ + +where $\lambda$ regulates the relative importance of the two losses. + +# 3.2 SHORTCUT PROBLEM. + +Ideally, at the global minimum of $\mathcal { L } _ { A E }$ , $N _ { \mathbf { v } }$ relates only to the factor $\mathbf { v }$ and $N _ { \mathbf { c } }$ only to c. However, the encoder may map a complete description of its input into $N _ { \mathbf { v } }$ and the decoder may completely ignore $N _ { \mathbf { c } }$ . We call this challenge the shortcut problem. When the shortcut problem occurs, the decoder is invariant to its second input, so it does not transfer the $\mathbf { c }$ factor correctly, + +$$ +\mathrm { D e c } ( N _ { \mathbf { v } } ( { \mathbf { x } } _ { 3 } ) , N _ { \mathbf { c } } ( { \mathbf { x } } _ { 1 } ) ) = { \mathbf { x } } _ { 3 } . +$$ + +The shortcut problem can be addressed by reducing the dimensionality of $N _ { \mathbf { v } }$ , so it cannot build a complete representation of all input images. This also forces the encoder and decoder to make use of $N _ { \mathbf { c } }$ for the common factor. However, this strategy may not be convenient as it leads to a time consuming trial-and-error procedure to find the correct dimensionality. A better way to address the shortcut problem is to use adversarial training (7) (8). + +Proposition 1. Let $\mathbf { x } _ { 1 }$ , $\mathbf { x } _ { 2 }$ and $\mathbf { x } _ { 3 }$ data samples generated according to (5), where the factors $\mathbf { c } _ { 1 } , \mathbf { c } _ { 3 } , \mathbf { v } _ { 1 } , \mathbf { v } _ { 2 } , \mathbf { v } _ { 3 }$ are jointly independent, and $\mathbf { x } _ { 3 \oplus 1 } \doteq D e c ( N _ { \mathbf { v } } ( \mathbf { x } _ { 3 } ) , N _ { \mathbf { c } } ( \mathbf { x } _ { 1 } ) )$ . When the global optimum of the composite loss (8) is reached, the c factor is transferred to $\mathbf { x } _ { \mathrm { 3 \oplus 1 } }$ , i.e. $f _ { \mathbf { c } } ^ { - 1 } ( \mathbf { x } _ { 3 \oplus 1 } ) = \mathbf { c } _ { 1 }$ + +Proof. When the global optimum of (8) is reached, the distribution of real $\left[ \mathbf { x } _ { 1 } , \mathbf { x } _ { 2 } \right]$ and fake $[ \mathbf { x } _ { 1 } , \mathbf { x } _ { 3 \oplus 1 } ]$ image pairs are identical. We compute statistics of the inverse of the rendering engine of the common factor $\bar { f } _ { \mathbf { c } } ^ { - 1 }$ on the data. For the images $\mathbf { x } _ { 1 }$ and $\mathbf { x } _ { 2 }$ we obtain + +$$ +\begin{array} { r } { { E } _ { \mathbf { x } _ { 1 } , \mathbf { x } _ { 2 } } \Big [ | f _ { \mathbf { c } } ^ { - 1 } ( \mathbf { x } _ { 1 } ) - f _ { \mathbf { c } } ^ { - 1 } ( \mathbf { x } _ { 2 } ) | ^ { 2 } \Big ] = { E } _ { \mathbf { c } _ { 1 } } \Big [ | \mathbf { c } _ { 1 } - \mathbf { c } _ { 1 } | ^ { 2 } \Big ] = 0 } \end{array} +$$ + +by construction (of $\mathbf { x } _ { 1 }$ and $\mathbf { x } _ { 2 }$ ). For the images $\mathbf { x } _ { 1 }$ and $\mathbf { x } _ { \mathrm { 3 \oplus 1 } }$ we obtain + +$$ +\begin{array} { r } { E _ { \mathbf { x } _ { 1 } , \mathbf { x } _ { 3 } } \Big [ | f _ { \mathbf { c } } ^ { - 1 } ( \mathbf { x } _ { 1 } ) - f _ { \mathbf { c } } ^ { - 1 } ( \mathbf { x } _ { 3 \oplus 1 } ) | ^ { 2 } \Big ] = E _ { \mathbf { v } _ { 1 } , \mathbf { c } _ { 1 } , \mathbf { v } _ { 3 } , \mathbf { c } _ { 3 } } \Big [ | \mathbf { c } _ { 1 } - \mathbf { c } _ { 3 \oplus 1 } | ^ { 2 } \Big ] \geq 0 , } \end{array} +$$ + +where ${ \bf c } _ { 3 \oplus 1 } = f _ { \bf c } ^ { - 1 } ( { \bf x } _ { 3 \oplus 1 } )$ . We achieve equality if and only if $\mathbf { c } _ { 1 } = \mathbf { c } _ { 3 \oplus 1 }$ everywhere. + +# 3.3 REFERENCE AMBIGUITY + +Let us consider the ideal case where we observe the space of all images. When weak labels are made available to us, we also know what images $\mathbf { x } _ { 1 }$ and $\mathbf { x } _ { 2 }$ share the same c factor (for example, which images have the same car). This labeling is equivalent to defining the probability density function $p _ { \mathbf { c } }$ and the joint conditional $\displaystyle p _ { { \mathbf { x } } _ { 1 } , { \mathbf { x } } _ { 2 } | { \mathbf { c } } }$ , where + +$$ +p _ { \mathbf { x } _ { 1 } , \mathbf { x } _ { 2 } | \mathbf { c } } ( \mathbf { x } _ { 1 } , \mathbf { x } _ { 2 } | \mathbf { c } ) = \int \delta ( \mathbf { x } _ { 1 } - f ( \mathbf { v } _ { 1 } , \mathbf { c } ) ) \delta ( \mathbf { x } _ { 2 } - f ( \mathbf { v } _ { 2 } , \mathbf { c } ) ) p ( \mathbf { v } _ { 1 } ) p ( \mathbf { v } _ { 2 } ) d \mathbf { v } _ { 1 } d \mathbf { v } _ { 2 } . +$$ + +Firstly, we show that the labeling allows us to satisfy the feature disentangling property for $\mathbf { c }$ (2). For any $[ \mathbf { \dot { x } } _ { 1 } , \mathbf { x } _ { 2 } ] \sim p _ { \mathbf { x } _ { 1 } , \mathbf { x } _ { 2 } | \mathbf { c } }$ we impose $N _ { \mathbf { c } } ( \mathbf { x } _ { 1 } ) = N _ { \mathbf { c } } ( \mathbf { x } _ { 2 } )$ . In particular, this equation is true for pairs when one of the two images is held fixed. Thus, a function $C ( \mathbf { c } ) = N _ { \mathbf { c } } ( \mathbf { x } _ { 1 } )$ can be defined, where the $C$ only depends on c, because $N _ { \mathbf { c } }$ is invariant to $\mathbf { v }$ . Lastly, images with the same $\mathbf { v }$ , but different c must also result in different features, $C ( \mathbf { c } _ { 1 } ) = N _ { \mathbf { v } } ( f ( \mathbf { v } , \mathbf { c } _ { 1 } ) ) \neq N _ { \mathbf { v } } ( \mathbf { v } , \mathbf { c } _ { 2 } ) = C ( \mathbf { c } _ { 2 } )$ , otherwise the autoencoder constraint (3) cannot be satisfied. Then, there exists a bijective function $\dot { R } _ { \bf c } = { C } ^ { - 1 }$ such that property (2) is satisfied for c. Unfortunately the other disentangling properties can not provably be satisfied. + +Definition 1. A function $g$ reproduces the data distribution, when it generates samples $\mathbf { y } _ { 1 } = g ( \mathbf { v } _ { 1 } , \mathbf { c } )$ and $\mathbf { y } _ { 2 } = g ( \mathbf { v } _ { 2 } , \mathbf { c } )$ that have the same distribution as the data. Formally, $[ \mathbf { y } _ { 1 } , \mathbf { y } _ { 2 } ] \sim p _ { \mathbf { x } _ { 1 } , \mathbf { x } _ { 2 } }$ , where the latent factors are independent, $\mathbf { v } _ { 1 } \sim p _ { \mathbf { v } }$ , $\mathbf { v } _ { 2 } \sim p _ { \mathbf { v } }$ and $\mathbf { c } \sim p _ { \mathbf { c } }$ . + +The reference ambiguity occurs, when a decoder reproduces the data without satisfying the disentangling properties. + +Proposition 2. Let $p _ { \mathbf { v } }$ assign the same probability value to at least two different instances of v. Then, we can find encoders that reproduce the data distribution, but do not satisfy the disentangling properties for v in (2) and (4). + +Proof. We already saw that $N _ { \mathbf { c } }$ satisfies (2), so we can choose $N _ { \mathbf { c } } = f _ { \mathbf { c } } ^ { - 1 }$ , the inverse of the rendering engine. Now we look at defining $N _ { \mathbf { v } }$ and the decoder. The iso-probability property of $p _ { \mathbf { v } }$ implies that there exists a mapping $T ( \mathbf { v } , \mathbf { c } )$ , such that $T ( \mathbf { v } , \mathbf { c } ) \sim p _ { \mathbf { v } }$ and $T ( \mathbf { v } , \bar { \mathbf { c } _ { 1 } } ) \bar { \neq } T ( \bar { \mathbf { v } } , \bar { \mathbf { c } _ { 2 } } )$ for some $\mathbf { v }$ and $\mathbf { c } _ { 1 } \neq \mathbf { c } _ { 2 }$ . For example, let us denote with $\mathbf { v } _ { 1 } \neq \mathbf { v } _ { 2 }$ two varying components such that $p _ { \mathbf { v } } ( \mathbf { v } _ { 1 } ) = p _ { \mathbf { v } } ( \mathbf { v } _ { 2 } )$ . Then, let + +$$ +T ( \mathbf { v } , \mathbf { c } ) \dot { = } \left\{ \begin{array} { l l } { \mathbf { v } } & { \mathrm { i f } \ \mathbf { v } \neq \mathbf { v } _ { 1 } , \mathbf { v } _ { 2 } } \\ { \mathbf { v } _ { 1 } } & { \mathrm { i f } \ \mathbf { v } = \mathbf { v } _ { 1 } \lor \mathbf { v } _ { 2 } \mathrm { a n d } \mathbf { c } \in \mathcal { C } } \\ { \mathbf { v } _ { 2 } } & { \mathrm { i f } \ \mathbf { v } = \mathbf { v } _ { 1 } \lor \mathbf { v } _ { 2 } \mathrm { a n d } \mathbf { c } \not \in \mathcal { C } } \end{array} \right. +$$ + +and $\mathcal { C }$ is a subset of the domain of $\mathbf { c }$ , where $\begin{array} { r } { \int _ { \mathcal { C } } p _ { \mathbf { c } } ( \mathbf { c } ) d \mathbf { c } = 1 / 2 } \end{array}$ . Now, let us define the encoder as $N _ { \mathbf { v } } ( f ( \mathbf { v } , \mathbf { c } ) ) = T ( \mathbf { v } , \mathbf { c } )$ . By using the autoencoder constraint, the decoder satisfies + +$$ +\operatorname { D e c } ( N _ { \mathbf { v } } ( f ( \mathbf { v } , \mathbf { c } ) ) , N _ { \mathbf { c } } ( f ( \mathbf { v } , \mathbf { c } ) ) ) = \operatorname { D e c } ( T ( \mathbf { v } , \mathbf { c } ) , \mathbf { c } ) = f ( \mathbf { v } , \mathbf { c } ) . +$$ + +Even though $T ( \mathbf { v } , \mathbf { c } )$ depends on $\mathbf { c }$ functionally, they are statistically independent. Because $T ( \mathbf { v } , \mathbf { c } ) \sim$ $p _ { \mathbf { v } }$ and $\mathbf { c } \sim p _ { \mathbf { c } }$ by construction, our encoder-decoder pair defines a data distribution identical to that given as training set + +$$ +\left[ \operatorname { D e c } ( T ( \mathbf { v } _ { 1 } , \mathbf { c } ) , \mathbf { c } ) , \operatorname { D e c } ( T ( \mathbf { v } _ { 2 } , \mathbf { c } ) , \mathbf { c } ) \right] \sim p _ { \mathbf { x } _ { 1 } , \mathbf { x } _ { 2 } } . +$$ + +The feature disentanglement property is not satisfied because $N _ { \mathbf { v } } ( f ( \mathbf { v } _ { 1 } , \mathbf { c } _ { 1 } ) ) ~ = ~ T ( \mathbf { v } _ { 1 } , \mathbf { c } _ { 1 } ) ~ \neq$ $T ( \mathbf { v } _ { 1 } , \mathbf { c } _ { 2 } ) \ = \ N _ { \mathbf { v } } ( f ( { \bar { \mathbf { v } } } _ { 1 } , \mathbf { c } _ { 2 } ) )$ , when $\mathbf { c } _ { 1 } ~ \in ~ { \mathcal { C } }$ and $\mathbf { c } _ { 2 } \notin \mathcal { C }$ . Similarly, the data disentanglement property does not hold, because $\mathrm { D e c } ( T ( \mathbf { v } _ { 1 } , \mathbf { c } _ { 1 } ) , \mathbf { c } _ { 1 } ) \neq \mathrm { D e c } ( T ( \mathbf { v } _ { 1 } , \mathbf { c } _ { 2 } ) , \mathbf { c } _ { 2 } )$ . □ + +The above proposition implies that we cannot provably disentangle all the factors of variation from weakly labeled data, even if we had access to all the data and knew the distributions $p _ { \mathbf { v } }$ and $p _ { \mathbf { c } }$ . + +To better understand it, let us consider a practical example. Let $\mathbf { v } \sim \mathcal { U } [ - \pi , \pi ]$ be the (continuous) viewpoint (the azimuth angle) and $\mathbf { c } \sim B ( 0 . 5 )$ the car type, where $\mathcal { U }$ denotes the uniform distribution and $B ( 0 . 5 )$ the Bernoulli distribution with probability $p _ { \mathbf { c } } ( \mathbf { c } = 0 ) = p _ { \mathbf { c } } ( \mathbf { c } = 1 ) = 0 . 5$ (i.e., there are only 2 car types). In this case, every instance of $\mathbf { v }$ is iso-probable in $p _ { \mathbf { v } }$ so we have the worst scenario for the reference ambiguity. We can define the function $T ( \mathbf { v } , \mathbf { c } ) = \mathbf { v } ( 2 \mathbf { c } - 1 )$ so that the mapping of $\mathbf { v }$ is mirrored as we change the car type. By construction $T ( \mathbf { v } , \mathbf { c } ) \sim \mathcal { U } [ - \pi , \pi ]$ for any $\mathbf { c }$ and $T ( \mathbf { v } , \mathbf { c } _ { 1 } ) \neq T ( \mathbf { v } , \mathbf { c } _ { 2 } )$ for $\mathbf { v } \neq 0$ and $\mathbf { c } _ { 1 } \neq \mathbf { c } _ { 2 }$ . So we cannot tell the difference between $T$ and the ideal correct mapping to the viewpoint factor. This is equivalent to an encoder $N _ { \mathbf { v } } ( f ( \mathbf { v } , \mathbf { c } ) ) = T ( \mathbf { v } , \mathbf { c } )$ that reverses the ordering of the azimuth of car 1 with respect to car 0. Each car has its own reference system, and thus it is not possible to transfer the viewpoint from one system to the other, as it is illustrated in fig. 1. + +# 3.4 IMPLEMENTATION + +In our implementation we use convolutional neural networks for all the models. We denote with $\theta$ the parameters associated to each network. Then, the optimization of the composite loss can be written as + +$$ +\hat { \theta } _ { \mathrm { { D e c } } } , \hat { \theta } _ { \mathrm { { E n c } } } , \hat { \theta } _ { \mathrm { { D s c } } } = \arg \operatorname* { m i n } _ { \theta _ { \mathrm { { D e c } } } , \theta _ { \mathrm { { E n c } } } } \operatorname* { m a x } _ { \theta _ { \mathrm { { D s c } } } } \mathcal { L } ( \theta _ { \mathrm { { D e c } } } , \theta _ { \mathrm { { E n c } } } , \theta _ { \mathrm { { D s c } } } ) . +$$ + +We choose $\lambda = 1$ and also add regularization to the adversarial loss so that each logarithm has a minimum value. We define $\log _ { \epsilon } \bar { \mathrm { D s c } } ( \mathbf { x } _ { 1 } , \mathbf { x } _ { 2 } ) = \log ( \epsilon + \mathrm { D s c } ( \mathbf { x } _ { 1 } , \mathbf { x } _ { 2 } ) )$ (and similarly for the other logarithmic term) and use $\epsilon = 1 0 ^ { - 1 2 }$ . The main components of our neural network are shown in Fig. 2. The architecture of the encoder and the decoder were taken from DCGAN Radford et al. (2015), with slight modifications. We added fully connected layers at the output of the encoder and to the input of the decoder. For the discriminator we used a simplified version of the VGG Simonyan & Zisserman (2014) network. As the input to the discriminator is an image pair, we concatenate them along the color channels. + +Normalization. In our architecture both the encoder and the decoder networks use blocks with a convolutional layer, a nonlinear activation function (ReLU/leaky ReLU) and a normalization layer, typically, batch normalization (BN). As an alternative to BN we consider the recently introduced instance normalization (IN) Ulyanov et al. (2017). The main difference between BN and IN is that the latter just computes the mean and standard deviation across the spatial domain of the input and not along the batch dimension. Thus, the shift and scaling for the output of each layer is the same at every iteration for the same input image. In practice, we find that IN improves the performance. + +# 4 EXPERIMENTS + +We tested our method on the MNIST, Sprites and ShapeNet datasets. We performed ablation studies on the shortcut problem using ShapeNet cars. We focused on the effect of the feature dimensionality and having the adversarial term $( \mathcal { L } _ { A E } + \mathcal { L } _ { G A N } )$ or not $( \mathcal { L } _ { A E } )$ . We also show that in most cases the reference ambiguity does not arise in practice (MNIST, Sprites, ShapeNet cars), we can only observe it when the data is more complex (ShapeNet chairs). + +![](images/90a0f2e4ff16668ce677bfd81f19be4a9e730377fbd5bbdf49085baa9daeb981.jpg) +Figure 2: Learning to disentangle factors of variation. The scheme above shows how the encoder (Enc), the decoder (Dec) and the discriminator (Dsc) are trained with input triplets. The components with the same name share weights. + +# 4.1 SHORTCUT PROBLEM + +ShapeNet cars. The ShapeNet dataset Chang et al. (2015) contains 3D objects than we can render from different viewpoints. We consider only one category (cars) for a set of fixed viewpoints. Cars have high intraclass variability and they do not have rotational symmetries. We used approximately 3K car types for training and 300 for testing. We rendered 24 possible viewpoints around each object in a full circle, resulting in 80K images in total. The elevation was fixed to 15 degrees and azimuth angles were spaced 15 degrees apart. We normalized the size of the objects to fit in a $1 0 0 \times 1 0 0$ pixel bounding box, and placed it in the middle of a $1 2 8 \times 1 2 8$ pixel image. + +Fig. 3 shows the attribute transfer on the Shapenet cars. We compare the methods $\mathcal { L } _ { A E }$ and $\mathcal { L } _ { A E } +$ $\mathcal { L } _ { G A N }$ with different feature dimension of $N _ { \mathbf { v } }$ . The size of the common feature $N _ { \mathbf { c } }$ was fixed to 1024 dimensions. We can observe that the transferring performance degrades for $\mathcal { L } _ { A E }$ , when we increase the feature size of $N _ { \mathbf { v } }$ . As expected, the autoencoder takes the shortcut and tries to store all information into $N _ { \mathbf { v } }$ . The model $\mathcal { L } _ { A E } + \mathcal { L } _ { G A N }$ instead renders images without loss of quality, independently of the feature dimension. + +![](images/5c12b702322a9c6bbc47ab8de3e5581a0bb893cfe305a9a1e478823279c0c10d.jpg) +Figure 3: Feature transfer on Shapenet. (a) synthesized images with $\mathcal { L } _ { A E }$ , where the top row shows images from which the car type is taken. The second, third and fourth row show the decoder renderings using 2, 16 and 128 dimensions for the feature $N _ { \mathbf { v } }$ . (b) images synthesized with $\mathcal { L } _ { A E } + \mathcal { L } _ { G A N }$ . The setting for the inputs and feature dimensions are the same as in (a). + +In Fig. 4 we visualize the t-SNE embeddings of the $N _ { \mathbf { v } }$ features for several models using different feature sizes. For the $2 D$ case, we do not modify the data. We can see that both $\mathcal { L } _ { A E }$ with 2 dimensions and $\mathcal { L } _ { A E } + \mathcal { L } _ { G A N }$ with 128 separate the viewpoints well, but $\mathcal { L } _ { A E }$ with 128 dimensions does not due to the shortcut problem. We investigate the effect of dimensionality of the $N _ { \mathbf { v } }$ features on the nearest neighbor classification task. The performance is measured by the mean average precision. For $N _ { \mathbf { v } }$ we use the viewpoint as ground truth. Fig. 4 also shows the results on $\mathcal { L } _ { A E }$ and $\mathcal { L } _ { A E } + \mathcal { L } _ { G A N }$ models with different $N _ { \mathbf { v } }$ feature dimensions. The dimension of $N _ { \mathbf { c } }$ was fixed to 1024 for this experiment. One can now see quantitatively that $\mathcal { L } _ { A E }$ is sensitive to the size of $N _ { \mathbf { v } }$ , while $\mathcal { L } _ { A E } + \mathcal { L } _ { G A N }$ is not. $\mathcal { L } _ { A E } + \mathcal { L } _ { G A N }$ also achieves a better performance. + +![](images/682c15c0ae852d517b1ac69b302654a800de4fd0f02c77d85fbeaeb17fe5a1ca.jpg) +Figure 4: The effect of dimensions and objective function on $N _ { v }$ features. (a), (b), (c) t-SNE embeddings on $N _ { \mathbf { v } }$ features. Colors correspond to the ground truth viewpoint. The objective functions and the $N _ { \mathbf { v } }$ dimensions are: (a) $\mathcal { L } _ { A E }$ 2 dim, (b) $\mathcal { L } _ { A E }$ 128 dim, (c) $\mathcal { L } _ { A E } + \mathcal { L } _ { G A N } \mathrm { ~ 1 ~ }$ 128 dim. (d) Mean average precision curves for the viewpoint prediction from the viewpoint feature using different models and dimensions for $N _ { \mathbf { v } }$ . + +Table 1: Nearest neighbor classification on $N _ { \mathbf { v } }$ and $N _ { \mathbf { c } }$ features using different normalization techniques on ShapeNet cars. + +
NormalizationNv mAPNc mAP
None0.470.13
Batch0.500.08
Instance0.500.20
+ +We compare the different normalization choices in Table 1. We evaluate the case when batch, instance and no normalization are used and compute the performance on the nearest neighbor classification task. We fixed the feature dimensions at 1024 for both $N _ { \mathbf { v } }$ and $N _ { \mathbf { c } }$ features in all normalization cases. We can see that both batch and instance normalization perform equally well on viewpoint classification and no normalization is slightly worse. For the car type classification instance normalization is clearly better. + +# 4.2 REFERENCE AMBIGUITY + +MNIST. The MNIST dataset LeCun et al. (1998) contains handwritten grayscale digits of size $2 8 \times 2 8$ pixel. There are 60K images of 10 classes for training and 10K for testing. The common factor is the digit class and the varying factor is the intraclass variation. We take image pairs that have the same digit for training, and use our full model $\mathcal { L } _ { A E } + \mathcal { L } _ { G A N }$ with dimensions 64 for $N _ { \mathbf { v } }$ and 64 for $N _ { \mathbf { c } }$ . In Fig. 5 (a) and (b) we show the transfer of varying factors. Qualitatively, both our method and Mathieu et al. (2016) perform well. We observe neither the reference ambiguity nor the shortcut problem in this case. + +![](images/19dbb062afd2ee7e2e211be55c604266d4e81e0c4b40072158decf54298db406.jpg) +Figure 5: Renderings of transferred features. In all figures the variable factor is transferred from the left column and the common factor from the top row. (a) MNIST Mathieu et al. (2016); (b) MNIST (ours); (c) Sprites Mathieu et al. (2016); (d) Sprites (ours). + +![](images/55049684dd4908d747a5bd58b28114a25a2f6b44c1aa8542f673f3beeb04f571.jpg) +Figure 6: Attribute transfer on ShapeNet. For both subfigures the viewpoint is taken from the leftmost column and the car/chair type is taken from the first row. (a) Cars: the factors are transferred correctly. (b) Chairs: in the bottom three rows the viewpoint is not transferred correctly due to the reference ambiguity. + +Sprites. The Sprites dataset Reed et al. (2015) contains 60 pixel color images of animated characters (sprites). There are 672 sprites, 500 for training, 100 for testing and 72 for validation. Each sprite has 20 animations and 178 images, so the full dataset has 120K images in total. There are many changes in the appearance of the sprites, they differ in their body shape, gender, hair, armour, arm type, greaves, and weapon. We consider character identity as the common factor and the pose as the varying factor. We train our system using image pairs of the same sprite and do not exploit labels on their pose. We train the $\mathcal { L } _ { A E } + \mathcal { L } _ { G A N }$ model with dimensions 64 for $N _ { \mathbf { v } }$ and 448 for $N _ { \mathbf { c } }$ . Fig. 5 (c) and (d) show results on the attribute transfer task. Both our method and Mathieu et al. (2016)’s transfer the identity of the sprites correctly, the reference ambiguity does not arise. + +ShapeNet chairs. We render the ShapeNet chairs with the same settings (viewpoints, image size) as the cars. There are 3500 chair types for training and 3200 for testing, so the dataset contains 160K images. We trained $\mathcal { L } _ { A E } + \mathcal { L } _ { G A N }$ , and set the feature dimensions to 1024 for both $N _ { \mathbf { v } }$ and $N _ { \mathbf { c } }$ . In Fig. 6 we show results on attribute transfer and compare it with ShapeNet cars. We found that the reference ambiguity does not emerge for cars, but it does for chairs, possibly due to the higher complexity, as cars have much less variability than chairs. + +# 5 CONCLUSIONS + +In this paper we studied the challenges of disentangling factors of variation, mainly the shortcut problem and the reference ambiguity. The shortcut problem occurs when all information is stored in only one feature chunk, while the other is ignored. The reference ambiguity means that the reference in which a factor is interpreted, may depend on other factors. This makes the attribute transfer ambiguous. We introduced a novel training of autoencoders to solve disentangling using image triplets. We showed theoretically and experimentally how to keep the shortcut problem under control through adversarial training, and enable to use large feature dimensions. We proved that the reference ambiguity is inherently present in the disentangling task when weak labels are used. Most importantly this can be stated independently of the learning algorithm. We demonstrated that training and transfer of factors of variation may not be guaranteed. However, in practice we observe that our trained model works well on many datasets and exhibits good generalization capabilities. + +# REFERENCES + +Yoshua Bengio, Aaron Courville, and Pascal Vincent. Representation learning: A review and new perspectives. IEEE transactions on pattern analysis and machine intelligence, 35(8):1798–1828, 2013. + +Hervé Bourlard and Yves Kamp. Auto-association by multilayer perceptrons and singular value decomposition. Biological cybernetics, 59(4):291–294, 1988. +Angel X. Chang, Thomas Funkhouser, Leonidas Guibas, Pat Hanrahan, Qixing Huang, Zimo Li, Silvio Savarese, Manolis Savva, Shuran Song, Hao Su, Jianxiong Xiao, Li Yi, and Fisher Yu. ShapeNet: An Information-Rich 3D Model Repository. Technical Report arXiv:1512.03012 [cs.GR], 2015. +Xi Chen, Yan Duan, Rein Houthooft, John Schulman, Ilya Sutskever, and Pieter Abbeel. Infogan: Interpretable representation learning by information maximizing generative adversarial nets. In NIPS, 2016. +Brian Cheung, Jesse A Livezey, Arjun K Bansal, and Bruno A Olshausen. Discovering hidden factors of variation in deep networks. arXiv:1412.6583, 2014. +Jeff Donahue, Philipp Krähenbühl, and Trevor Darrell. Adversarial feature learning. arXiv:1605.09782, 2016. +Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In NIPS, 2014. +Geoffrey E Hinton and Ruslan R Salakhutdinov. Reducing the dimensionality of data with neural networks. Science, 313(5786):504–507, 2006. +Geoffrey E Hinton, Alex Krizhevsky, and Sida D Wang. Transforming auto-encoders. In International Conference on Artificial Neural Networks, pp. 44–51. Springer, 2011. +Diederik P Kingma and Max Welling. Auto-encoding variational bayes. In ICLR, 2014. +Yann LeCun, Léon Bottou, Yoshua Bengio, and Patrick Haffner. Gradient-based learning applied to document recognition. Proceedings of the IEEE, 86(11):2278–2324, 1998. +Ming-Yu Liu and Oncel Tuzel. Coupled generative adversarial networks. In Advances in Neural Information Processing Systems, pp. 469–477, 2016. +Christos Louizos, Kevin Swersky, Yujia Li, Max Welling, and Richard Zemel. The variational fair autoencoder. In ICLR, 2016. +Michael F Mathieu, Junbo Jake Zhao, Junbo Zhao, Aditya Ramesh, Pablo Sprechmann, and Yann LeCun. Disentangling factors of variation in deep representation using adversarial training. In Advances in Neural Information Processing Systems, pp. 5041–5049, 2016. +Alec Radford, Luke Metz, and Soumith Chintala. Unsupervised representation learning with deep convolutional generative adversarial networks. arXiv:1511.06434, 2015. +Scott Reed, Kihyuk Sohn, Yuting Zhang, and Honglak Lee. Learning to disentangle factors of variation with manifold interaction. In Proceedings of the 31st International Conference on Machine Learning (ICML-14), pp. 1431–1439, 2014. +Scott E Reed, Yi Zhang, Yuting Zhang, and Honglak Lee. Deep visual analogy-making. In Advances in Neural Information Processing Systems, pp. 1252–1260, 2015. +Zhixin Shu, Ersin Yumer, Sunil Hadap, Kalyan Sunkavalli, Eli Shechtman, and Dimitris Samaras. Neural face editing with intrinsic image disentangling. In The IEEE Conference on Computer Vision and Pattern Recognition (CVPR), July 2017. +Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale image recognition. arXiv preprint arXiv:1409.1556, 2014. +Luan Tran, Xi Yin, and Xiaoming Liu. Disentangled representation learning gan for pose-invariant face recognition. In The IEEE Conference on Computer Vision and Pattern Recognition (CVPR), July 2017. +Dmitry Ulyanov, Andrea Vedaldi, and Victor S. Lempitsky. Improved texture networks: Maximizing quality and diversity in feed-forward stylization and texture synthesis. In CVPR, 2017. +Kihyuk Sohn Dimitris Metaxas Manmohan Chandraker Xi Peng, Xiang Yu. Reconstruction for feature disentanglement in pose-invariant face recognition. arXiv:1702.03041, 2017. +Jimei Yang, Scott E Reed, Ming-Hsuan Yang, and Honglak Lee. Weakly-supervised disentangling with recurrent transformations for 3d view synthesis. In NIPS, 2015. \ No newline at end of file diff --git a/parse/train/SkmiegW0b/SkmiegW0b_content_list.json b/parse/train/SkmiegW0b/SkmiegW0b_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..1f4759ffc2946d0881b20f83032ec28820a1d5f1 --- /dev/null +++ b/parse/train/SkmiegW0b/SkmiegW0b_content_list.json @@ -0,0 +1,1155 @@ +[ + { + "type": "text", + "text": "CHALLENGES IN DISENTANGLING INDEPENDENT FAC-TORS OF VARIATION", + "text_level": 1, + "bbox": [ + 176, + 98, + 826, + 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": "We study the problem of building models that disentangle independent factors of variation. Such models encode features that can efficiently be used for classification and to transfer attributes between different images in image synthesis. As data we use a weakly labeled training set, where labels indicate what single factor has changed between two data samples, although the relative value of the change is unknown. This labeling is of particular interest as it may be readily available without annotation costs. We introduce an autoencoder model and train it through constraints on image pairs and triplets. We show the role of feature dimensionality and adversarial training theoretically and experimentally. We formally prove the existence of the reference ambiguity, which is inherently present in the disentangling task when weakly labeled data is used. The numerical value of a factor has different meaning in different reference frames. When the reference depends on other factors, transferring that factor becomes ambiguous. We demonstrate experimentally that the proposed model can successfully transfer attributes on several datasets, but show also cases when the reference ambiguity occurs. ", + "bbox": [ + 233, + 266, + 766, + 474 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 502, + 336, + 517 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "One way to simplify the problem of classifying or regressing attributes of interest from data is to build an intermediate representation, a feature, where the information about the attributes is better separated than in the input data. Better separation means that some entries of the feature vary only with respect to one and only one attribute. In this way, classifiers and regressors would not need to build invariance to many nuisance attributes. Instead, they could devote more capacity to discriminating the attributes of interest, and possibly achieve better performance. We call this task disentangling factors of variation, and we identify attributes with the factors. In addition to facilitating classification and regression, this task is beneficial to image synthesis. One could build a model to render images, where each input varies only one attribute of the output, and to transfer attributes between images. ", + "bbox": [ + 174, + 532, + 825, + 659 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "When labeling is possible and available, supervised learning can be used to solve this task. In general, however, some attributes may not be easily quantifiable (e.g., style). Therefore, we consider using weak labeling, where we only know what attribute has changed between two images, although we do not know by how much. This type of labeling may be readily available in many cases without manual annotation. For example, image pairs from a stereo system are automatically labeled with a viewpoint change, albeit unknown. A practical model that can learn from these labels is an encoder-decoder pair subject to a reconstruction constraint. In this model the weak labels can be used to define similarities between subsets of the feature obtained from two input images. ", + "bbox": [ + 174, + 665, + 825, + 776 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "We introduce a novel adversarial training of autoencoders to solve the disentangling task when only weak labels are available. Compared to previous methods, our discriminator is not conditioned on class labels, but takes image pairs as inputs. This way the number of parameters can be kept constant. ", + "bbox": [ + 176, + 784, + 825, + 825 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "We describe the shortcut problem, where all the the information is encoded only in one part of the feature, while other part is completely ignored, as fig. 1 illustrates. We prove our method solves this problem and demonstrate it experimentally. ", + "bbox": [ + 176, + 833, + 825, + 875 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "We formally prove existence of the reference ambiguity, that is inherently present in the disentangling task when weak labels are used. Thus no algorithm can provably learn disentangling. As fig. 1 shows, the reference ambiguity means that a factor (for example viewpoint) can have different meaning when using a different reference frame that depends on another factor (for example car type). We show experimentally that this ambiguity rarely arise, we can observe it only when the data is complex. ", + "bbox": [ + 176, + 882, + 825, + 924 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 103, + 825, + 132 + ], + "page_idx": 1 + }, + { + "type": "image", + "img_path": "images/fded6d23f694cb78ea35bd328451d6c6df4a13df4ab823b7f12b98e6e7a12b42.jpg", + "image_caption": [ + "Figure 1: Challenges of disentangling. We disentangle the feature into two parts, one representing the viewpoint, the other the car type. We use the features for attribute transfer. For all subfigures the viewpoint feature is taken from the leftmost column and the car type feature is taken from the topmost row. (a) ideal solution: the viewpoint and the car type are transferred correctly. (b) shortcut problem: the car type is not transferred. (c) reference ambiguity: compared to the others the viewpoint orientation is flipped for the blue car. " + ], + "image_footnote": [], + "bbox": [ + 223, + 148, + 774, + 292 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 RELATED WORK ", + "text_level": 1, + "bbox": [ + 176, + 419, + 341, + 435 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Autoencoders. Autoencoders in Bourlard & Kamp (1988), Hinton & Salakhutdinov (2006), Bengio et al. (2013) learn to reconstruct the input data as $\\mathbf { x } = \\mathrm { D e c } ( \\mathrm { E n c } ( \\mathbf { x } ) )$ , where $\\operatorname { E n c } ( \\mathbf { x } )$ is the internal image representation (the encoder) and Dec (the decoder) reconstructs the input of the encoder. Variational autoencoders in Kingma & Welling (2014) use a generative model; $p ( \\bar { \\mathbf { x } } , \\mathbf { z } ) = p ( \\mathbf { x } | \\mathbf { z } ) p ( \\mathbf { z } )$ , where $\\mathbf { x }$ is the observed data (images), and $\\mathbf { z }$ are latent variables. The encoder estimates the parameters of the posterior, $\\operatorname { E n c } ( \\mathbf { x } ) = p ( \\mathbf { z } | \\mathbf { x } )$ , and the decoder estimates the conditional likelihood, $\\mathrm { D e c } ( \\mathbf { z } ) = p ( \\mathbf { x } | \\mathbf { z } )$ . In Hinton et al. (2011) autoencoders are trained with transformed image input pairs. The relative transformation parameters are also fed to the network. Because the internal representation explicitly represents the objects presence and location, the network can learn their absolute position. One important aspect of the autoencoders is that they encourage latent representations to keep as much information about the input as possible. ", + "bbox": [ + 173, + 450, + 826, + 604 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "GAN. Generative Adversarial Nets Goodfellow et al. (2014) learn to sample realistic images with two competing neural networks. The generator Dec creates images $\\mathbf { x } = \\mathrm { D e c } ( \\mathbf { z } )$ from a random noise sample $\\mathbf { z }$ and tries to fool a discriminator Dsc, which has to decide whether the image is sampled from the generator $p _ { g }$ or from real images $p _ { r e a l }$ . After a successful training the discriminator cannot distinguish the real from the generated samples. Adversarial training is often used to enforce constraints on random variables. BIGAN, Donahue et al. (2016) learns a feature representation with adversarial nets by training an encoder Enc, such that $\\operatorname { E n c } ( \\mathbf { x } )$ is Gaussian, when $\\mathbf { x } \\sim p _ { r e a l }$ . CoGAN, Liu & Tuzel (2016) learns the joint distribution of multi-domain images by having generators and discriminators in each domain, and sharing their weights. They can transform images between domains without being given correspondences. InfoGan, Chen et al. (2016) learns a subset of factors of variation by reproducing parts of the input vector with the discriminator. ", + "bbox": [ + 173, + 611, + 825, + 763 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Disentangling and independence. Many recent methods use neural networks for disentangling features, with various degrees of supervision. In Xi Peng (2017) multi-task learning is used with full supervision for pose invariant face recognition. Using both identity and pose labels Tran et al. (2017) can learn pose invariant features and synthesize frontalized faces from any pose. In Yang et al. (2015) autoencoders are used to generate novel viewpoints of objects. They disentangle the object category factor from the viewpoint factor by using as explicit supervision signals: the relative viewpoint transformations between image pairs. In Cheung et al. (2014) the output of the encoder is split in two parts: one represents the class label and the other represents the nuisance factors. Their objective function has a penalty term for misclassification and a cross-covariance cost to disentangle class from nuisance factors. Hierarchical Boltzmann Machines are used in Reed et al. (2014) for disentangling. A subset of hidden units are trained to be sensitive to a specific factor of variation, while being invariant to others. Variational Fair Autoencoders Louizos et al. (2016) learn a representation that is invariant to specific nuisance factors, while retaining as much information as possible. Autoencoders can also be used for visual analogy Reed et al. (2015). GAN is used for disentangling intrinsic image factors (albedo and normal map) in Shu et al. (2017) without using ground truth labeling. They achieve this by explicitly modeling the physics of the image formation in their network. ", + "bbox": [ + 174, + 771, + 825, + 924 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 823, + 174 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The work most related to ours is Mathieu et al. (2016), where an autoencoder restores an image from another by swapping parts of the internal image representation. Their main improvement over Reed et al. (2015) is the use of adversarial training, which allows for learning with image pairs instead of image triplets. Therefore, expensive labels like viewpoint alignment between different car types are no longer needed. One of the differences between this method and ours is that it trains a discriminator for each of the given labels. A benefit of this approach is the higher selectivity of the discriminator, but a drawback is that the number of model parameters grows linearly with the number of labels. In contrast, we work with image pairs and use a single discriminator so that our method is uninfluenced by the number of labels. Moreover, we show formally and experimentally the difficulties of disentangling factors of variation. ", + "bbox": [ + 174, + 180, + 825, + 319 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 DISENTANGLING FACTORS OF VARIATION ", + "text_level": 1, + "bbox": [ + 174, + 340, + 549, + 356 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We are interested in the design and training of two models. One should map a data sample (e.g., an image) to a feature that is explicitly partitioned into subvectors, each associated to a specific factor of variation. The other model should map this feature back to an image. We call the first model the encoder and the second model the decoder. For example, given the image of a car we would like the encoder to yield a feature with two subvectors: one related to the car viewpoint, and the other related to the car type. The subvectors of the feature obtained from the encoder should be useful for classification or regression of the corresponding factor that they depend on (the car viewpoint and type in the example). This separation would also be very useful to the decoder. It would enable advanced editing of images, for example, the transfer of the viewpoint or car types from an image to another, by swapping the corresponding subvectors. Next, we introduce our model of the data and formal definitions of our encoder and decoder. ", + "bbox": [ + 174, + 369, + 825, + 523 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Data model. We assume that our observed data $\\mathbf { x }$ is generated through some unknown deterministic invertible and smooth process $f$ that depends on the factors $\\mathbf { v }$ and $\\mathbf { c }$ , so that $\\mathbf { x } = f ( \\mathbf { v } , \\mathbf { c } )$ . In our earlier example, $\\mathbf { x }$ is an image, $\\mathbf { v }$ is a viewpoint, c is a car type, and $f$ is the rendering engine. It is reasonable to assume that $f$ is invertible, as for most cases the factors are readily apparent form the image. We assume $f$ is smooth, because a small change in the factors should only result in a small change in the image and vice versa. We denote the inverse of the rendering engine as $f ^ { - 1 } = [ f _ { \\mathbf { v } } ^ { - 1 } , f _ { \\mathbf { c } } ^ { - 1 } ]$ , where the subscript refers to the recovered factor. ", + "bbox": [ + 173, + 531, + 825, + 628 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Weak labeling. In the training we are given pairs of images $\\mathbf { x } _ { 1 }$ and $\\mathbf { x } _ { 2 }$ , where they differ in $\\mathbf { v }$ (varying factor), but they have the same c (common factor). We also assume that the two varying factors and the common factor are sampled independently, $\\mathbf { v } _ { 1 } \\sim p _ { \\mathbf { v } }$ , $\\mathbf { v } _ { 2 } \\sim p _ { \\mathbf { v } }$ and $\\mathbf { c } \\sim p _ { \\mathbf { c } }$ . The images are generated as $\\mathbf { x } _ { 1 } = f ( \\mathbf { v } _ { 1 } , \\mathbf { c } )$ and $\\mathbf { x } _ { 1 } = f ( \\mathbf { v } _ { 2 } , \\mathbf { c } )$ . We call this labeling weak, because we do not know the absolute values of either the $\\mathbf { v }$ or c factors or even relative changes between $\\mathbf { v } _ { 1 }$ and $\\mathbf { v } _ { 2 }$ . All we know is that the image pairs share the same common factor. ", + "bbox": [ + 173, + 635, + 825, + 719 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The encoder. Let Enc be the encoder mapping images to features. For simplicity, we consider features split into only two column subvectors, $N _ { \\mathbf { v } }$ and $N _ { \\mathbf { c } }$ , one associated to the varying factor $\\mathbf { v }$ and the other associated to the common factor c. Then, we have that $\\mathrm { E n c } ( \\mathbf { x } ) = [ N _ { \\mathbf { v } } ( \\mathbf { x } ) , \\bar { N _ { \\mathbf { c } } } ( \\mathbf { x } ) ]$ . Ideally, we would like to find the inverse of the image formation function, $[ N _ { \\bf v } , N _ { \\bf c } ] = f ^ { - 1 }$ , which separates and recovers the factors $\\mathbf { v }$ and $\\mathbf { c }$ from data samples $\\mathbf { x }$ , i.e., ", + "bbox": [ + 173, + 724, + 825, + 795 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/f05d5a8c8d2a1d069976f7a15f58c01103a8388f9b9b200d56c1872194d14df2.jpg", + "text": "$$\nN _ { \\mathbf { v } } ( f ( \\mathbf { v } , \\mathbf { c } ) ) = \\mathbf { v } \\qquad N _ { \\mathbf { c } } ( f ( \\mathbf { v } , \\mathbf { c } ) ) = \\mathbf { c } .\n$$", + "text_format": "latex", + "bbox": [ + 366, + 801, + 632, + 819 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In practice, this is not possible because any bijective transformation of $\\mathbf { v }$ and c could be undone by $f$ and produce the same output $\\mathbf { x }$ . Therefore, we aim for $N _ { \\mathbf { v } }$ and $N _ { \\mathbf { c } }$ that satisfy the following feature disentangling properties ", + "bbox": [ + 174, + 824, + 825, + 867 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/229e09169a1617310ada564c46542252b122f24e4909b120d447fffe62bf8b90.jpg", + "text": "$$\nR _ { \\mathbf { v } } ( N _ { \\mathbf { v } } ( f ( \\mathbf { v } , \\mathbf { c } ) ) ) = \\mathbf { v } \\qquad R _ { \\mathbf { c } } ( N _ { \\mathbf { c } } ( f ( \\mathbf { v } , \\mathbf { c } ) ) ) = \\mathbf { c }\n$$", + "text_format": "latex", + "bbox": [ + 334, + 872, + 663, + 890 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "for all $\\mathbf { v } , \\mathbf { c }$ , and for some bijective functions $R _ { \\mathbf { v } }$ and $R _ { \\mathbf { c } }$ , so that $N _ { \\mathbf { v } }$ is invariant to $\\mathbf { c }$ and $N _ { \\mathbf { c } }$ is invariant to $\\mathbf { v }$ . ", + "bbox": [ + 173, + 895, + 825, + 924 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The decoder. Let Dec be the decoder mapping features to images. The sequence encoder-decoder is constrained to form an autoencoder, so ", + "bbox": [ + 173, + 103, + 823, + 132 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/bf06ce5db3f7455eea29b0e5dcee4161bdc1360ef3b9becbb352a1a666eb8a8d.jpg", + "text": "$$\n\\mathrm { D e c } ( N _ { \\mathbf { v } } ( { \\mathbf { x } } ) , N _ { \\mathbf { c } } ( { \\mathbf { x } } ) ) = { \\mathbf { x } } , \\qquad \\forall { \\mathbf { x } } .\n$$", + "text_format": "latex", + "bbox": [ + 382, + 136, + 616, + 154 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "To use the decoder for image synthesis, so that each input subvector affects only one factor in the rendered image, the ideal decoder should satisfy the data disentangling property ", + "bbox": [ + 171, + 159, + 823, + 186 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/917cc8fd290a28a204e30435cdee2a4200eedc267530b0945e3be26d05c615eb.jpg", + "text": "$$\n\\mathrm { D e c } ( N _ { \\mathbf { v } } ( f ( \\mathbf { v } _ { 1 } , \\mathbf { c } _ { 1 } ) ) , N _ { \\mathbf { c } } ( f ( \\mathbf { v } _ { 2 } , \\mathbf { c } _ { 2 } ) ) ) = f ( \\mathbf { v } _ { 1 } , \\mathbf { c } _ { 2 } )\n$$", + "text_format": "latex", + "bbox": [ + 334, + 190, + 663, + 208 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "for any $\\mathbf { v } _ { 1 } , \\mathbf { v } _ { 2 } , \\mathbf { c } _ { 1 }$ , and $\\mathbf { c } _ { 2 }$ . The equation above describes the transfer of the varying factor $\\mathbf { v } _ { 1 }$ of $\\mathbf { x } _ { 1 }$ and the common factor $\\mathbf { c } _ { 2 }$ of $\\mathbf { x } _ { 2 }$ to a new image ${ \\bf x } _ { 1 \\oplus 2 } = f ( { \\bf v } _ { 1 } , { \\bf c } _ { 2 } )$ . ", + "bbox": [ + 176, + 212, + 821, + 242 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In the next section we describe our training method for disentangling. We introduce a novel adversarial term, that does not need to be conditioned on the common factor, rather it uses only image pairs, that keeps the model parameters constant. Then we address the two main challenges of disentangling, the shortcut problem and the reference ambiguity. We discuss which disentanglement properties can be (provably) achieved by our (or any) method. ", + "bbox": [ + 173, + 247, + 825, + 318 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.1 MODEL TRAINING ", + "text_level": 1, + "bbox": [ + 174, + 334, + 341, + 348 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In our training procedure we use two terms in the objective function: an autoencoder loss and an adversarial loss. We describe these losses in functional form, however the components are implemented using neural networks. In all our terms we use the following sampling of independent factors ", + "bbox": [ + 173, + 359, + 825, + 415 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/8cf7d20c2f999ca2f57e5412d13d36f48a19c78074f065d60b49938e9aa5cb05.jpg", + "text": "$$\n\\mathbf { c } _ { 1 } , \\mathbf { c } _ { 3 } \\sim p _ { \\mathbf { c } } , \\quad \\mathbf { v } _ { 1 } , \\mathbf { v } _ { 2 } , \\mathbf { v } _ { 3 } \\sim p _ { \\mathbf { v } } .\n$$", + "text_format": "latex", + "bbox": [ + 392, + 424, + 606, + 438 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The images are formed as $\\mathbf { x } _ { 1 } = f ( \\mathbf { v } _ { 1 } , \\mathbf { c } _ { 1 } )$ , $\\mathbf { x } _ { 2 } = f ( \\mathbf { v } _ { 2 } , \\mathbf { c } _ { 1 } )$ and $\\mathbf { x } _ { 3 } = f ( \\mathbf { v } _ { 3 } , \\mathbf { c } _ { 3 } )$ . The images $\\mathbf { x } _ { 1 }$ and $\\mathbf { x } _ { 2 }$ share the same common factor, and $\\mathbf { x } _ { 1 }$ and $\\mathbf { x } _ { 3 }$ are independent. In our objective functions, we use either pairs or triplets of the above images. ", + "bbox": [ + 176, + 441, + 826, + 484 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Autoencoder loss. In this term, we use images $\\mathbf { x } _ { 1 }$ and $\\mathbf { x } _ { 2 }$ with the same common factor $\\mathbf { c } _ { 1 }$ . We feed both images to the encoder. Since both images share the same $\\mathbf { c } _ { 1 }$ , we impose that the decoder should reconstruct $\\mathbf { x } _ { 1 }$ from the encoder subvector $N _ { \\mathbf { v } } ( \\mathbf { x } _ { 1 } )$ and the encoder subvector $N _ { \\mathbf { c } } ( \\mathbf { x } _ { 2 } )$ , and similarly for the reconstruction of $\\mathbf { x } _ { 2 }$ . The autoencoder objective is thus defined as ", + "bbox": [ + 173, + 491, + 825, + 546 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/d198eac559418e416a222cd5c4ae34b398fd38aa7b97356827fd1a0c9091aea2.jpg", + "text": "$$\n\\mathcal { L } _ { A E } \\doteq E _ { \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } } \\left[ \\left| \\mathbf { x } _ { 1 } - \\mathrm { D e c } ( N _ { \\mathbf { v } } ( \\mathbf { x } _ { 1 } ) , N _ { \\mathbf { c } } ( \\mathbf { x } _ { 2 } ) ) \\right| ^ { 2 } + \\left| \\mathbf { x } _ { 2 } - \\mathrm { D e c } ( N _ { \\mathbf { v } } ( \\mathbf { x } _ { 2 } ) , N _ { \\mathbf { c } } ( \\mathbf { x } _ { 1 } ) ) \\right| ^ { 2 } \\right] .\n$$", + "text_format": "latex", + "bbox": [ + 223, + 551, + 774, + 578 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Adversarial loss. We introduce an adversarial training where the generator is our encoder-decoder pair and the discriminator Dsc is a neural network, which takes image pairs as input. The discriminator learns to distinguish between real image pairs $[ \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } ]$ and fake ones $[ \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 3 \\oplus 1 } ]$ , where $\\mathbf { x } _ { 3 \\oplus 1 } \\doteq$ $\\mathrm { D e c } ( N _ { \\mathbf { v } } ( \\mathbf { x } _ { 3 } ) , N _ { \\mathbf { c } } ( \\mathbf { x } _ { 1 } ) )$ . If the encoder were ideal, the image $\\mathbf { x } _ { \\mathrm { 3 \\oplus 1 } }$ would be the result of taking the common factor from $\\mathbf { x } _ { 1 }$ and the varying factor from $\\mathbf { x } _ { 3 }$ . The generator learns to fool the discriminator, so that $\\mathbf { x } _ { 3 \\oplus 1 }$ looks like the random variable $\\mathbf { x } _ { 2 }$ (the common factor is $\\mathbf { c } _ { 1 }$ and the varying factor is independent of $\\mathbf { v } _ { 1 }$ ). To this purpose, the decoder must make use of $N _ { \\mathbf { c } } ( \\mathbf { x } _ { 1 } )$ , since $\\mathbf { x } _ { 3 }$ does not carry any information about $\\mathbf { c } _ { 1 }$ . The objective function is thus defined as ", + "bbox": [ + 173, + 588, + 825, + 700 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/0254827e2494ad8529a8f04663895c6a092faf37fe1509920e8ab46b652ebb25.jpg", + "text": "$$\n\\mathcal { L } _ { G A N } \\doteq E _ { \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } } \\Big [ \\log ( \\mathrm { D s c } ( \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } ) ) \\Big ] + E _ { \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 3 } } \\Big [ \\log ( 1 - \\mathrm { D s c } ( \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 3 \\oplus 1 } ) ) \\Big ] .\n$$", + "text_format": "latex", + "bbox": [ + 253, + 704, + 745, + 732 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Composite loss. Finally, we optimize the weighted sum of the two losses $\\mathcal { L } = \\mathcal { L } _ { A E } + \\lambda \\mathcal { L } _ { G A N }$ ", + "bbox": [ + 176, + 742, + 803, + 758 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/522327b33c38fe4c3ca69b99c16c2158b35bd3c55f4562d00489d3bde72d2042.jpg", + "text": "$$\n\\operatorname* { m i n } _ { \\mathrm { D e c , E n c } } \\operatorname* { m a x } _ { \\mathrm { D s c } } \\mathcal { L } _ { A E } ( \\mathrm { D e c , E n c } ) + \\lambda \\mathcal { L } _ { G A N } ( \\mathrm { D e c , E n c , D s c } )\n$$", + "text_format": "latex", + "bbox": [ + 318, + 762, + 679, + 785 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $\\lambda$ regulates the relative importance of the two losses. ", + "bbox": [ + 171, + 790, + 562, + 805 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.2 SHORTCUT PROBLEM. ", + "text_level": 1, + "bbox": [ + 176, + 821, + 366, + 837 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Ideally, at the global minimum of $\\mathcal { L } _ { A E }$ , $N _ { \\mathbf { v } }$ relates only to the factor $\\mathbf { v }$ and $N _ { \\mathbf { c } }$ only to c. However, the encoder may map a complete description of its input into $N _ { \\mathbf { v } }$ and the decoder may completely ignore $N _ { \\mathbf { c } }$ . We call this challenge the shortcut problem. When the shortcut problem occurs, the decoder is invariant to its second input, so it does not transfer the $\\mathbf { c }$ factor correctly, ", + "bbox": [ + 173, + 847, + 825, + 904 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/7d0078287b4a15239b3b5a8df7d67055394d89138ef884e274c71c9292c0de05.jpg", + "text": "$$\n\\mathrm { D e c } ( N _ { \\mathbf { v } } ( { \\mathbf { x } } _ { 3 } ) , N _ { \\mathbf { c } } ( { \\mathbf { x } } _ { 1 } ) ) = { \\mathbf { x } } _ { 3 } .\n$$", + "text_format": "latex", + "bbox": [ + 383, + 907, + 580, + 925 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The shortcut problem can be addressed by reducing the dimensionality of $N _ { \\mathbf { v } }$ , so it cannot build a complete representation of all input images. This also forces the encoder and decoder to make use of $N _ { \\mathbf { c } }$ for the common factor. However, this strategy may not be convenient as it leads to a time consuming trial-and-error procedure to find the correct dimensionality. A better way to address the shortcut problem is to use adversarial training (7) (8). ", + "bbox": [ + 173, + 103, + 825, + 174 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Proposition 1. Let $\\mathbf { x } _ { 1 }$ , $\\mathbf { x } _ { 2 }$ and $\\mathbf { x } _ { 3 }$ data samples generated according to (5), where the factors $\\mathbf { c } _ { 1 } , \\mathbf { c } _ { 3 } , \\mathbf { v } _ { 1 } , \\mathbf { v } _ { 2 } , \\mathbf { v } _ { 3 }$ are jointly independent, and $\\mathbf { x } _ { 3 \\oplus 1 } \\doteq D e c ( N _ { \\mathbf { v } } ( \\mathbf { x } _ { 3 } ) , N _ { \\mathbf { c } } ( \\mathbf { x } _ { 1 } ) )$ . When the global optimum of the composite loss (8) is reached, the c factor is transferred to $\\mathbf { x } _ { \\mathrm { 3 \\oplus 1 } }$ , i.e. $f _ { \\mathbf { c } } ^ { - 1 } ( \\mathbf { x } _ { 3 \\oplus 1 } ) = \\mathbf { c } _ { 1 }$ ", + "bbox": [ + 173, + 178, + 823, + 220 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Proof. When the global optimum of (8) is reached, the distribution of real $\\left[ \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } \\right]$ and fake $[ \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 3 \\oplus 1 } ]$ image pairs are identical. We compute statistics of the inverse of the rendering engine of the common factor $\\bar { f } _ { \\mathbf { c } } ^ { - 1 }$ on the data. For the images $\\mathbf { x } _ { 1 }$ and $\\mathbf { x } _ { 2 }$ we obtain ", + "bbox": [ + 173, + 234, + 825, + 279 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/d63503b72bdcbc84bb8b5313db9996fceb9c0fa3e4cf33136f2453fd2527a5bc.jpg", + "text": "$$\n\\begin{array} { r } { { E } _ { \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } } \\Big [ | f _ { \\mathbf { c } } ^ { - 1 } ( \\mathbf { x } _ { 1 } ) - f _ { \\mathbf { c } } ^ { - 1 } ( \\mathbf { x } _ { 2 } ) | ^ { 2 } \\Big ] = { E } _ { \\mathbf { c } _ { 1 } } \\Big [ | \\mathbf { c } _ { 1 } - \\mathbf { c } _ { 1 } | ^ { 2 } \\Big ] = 0 } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 310, + 284, + 687, + 311 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "by construction (of $\\mathbf { x } _ { 1 }$ and $\\mathbf { x } _ { 2 }$ ). For the images $\\mathbf { x } _ { 1 }$ and $\\mathbf { x } _ { \\mathrm { 3 \\oplus 1 } }$ we obtain ", + "bbox": [ + 171, + 315, + 637, + 332 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/8ef50f6da86620ea7ff42242fee4dd9d0a38fbc043dc1de97b3292a81bcda76b.jpg", + "text": "$$\n\\begin{array} { r } { E _ { \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 3 } } \\Big [ | f _ { \\mathbf { c } } ^ { - 1 } ( \\mathbf { x } _ { 1 } ) - f _ { \\mathbf { c } } ^ { - 1 } ( \\mathbf { x } _ { 3 \\oplus 1 } ) | ^ { 2 } \\Big ] = E _ { \\mathbf { v } _ { 1 } , \\mathbf { c } _ { 1 } , \\mathbf { v } _ { 3 } , \\mathbf { c } _ { 3 } } \\Big [ | \\mathbf { c } _ { 1 } - \\mathbf { c } _ { 3 \\oplus 1 } | ^ { 2 } \\Big ] \\geq 0 , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 266, + 337, + 730, + 364 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where ${ \\bf c } _ { 3 \\oplus 1 } = f _ { \\bf c } ^ { - 1 } ( { \\bf x } _ { 3 \\oplus 1 } )$ . We achieve equality if and only if $\\mathbf { c } _ { 1 } = \\mathbf { c } _ { 3 \\oplus 1 }$ everywhere. ", + "bbox": [ + 174, + 371, + 732, + 387 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.3 REFERENCE AMBIGUITY ", + "text_level": 1, + "bbox": [ + 174, + 402, + 383, + 416 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Let us consider the ideal case where we observe the space of all images. When weak labels are made available to us, we also know what images $\\mathbf { x } _ { 1 }$ and $\\mathbf { x } _ { 2 }$ share the same c factor (for example, which images have the same car). This labeling is equivalent to defining the probability density function $p _ { \\mathbf { c } }$ and the joint conditional $\\displaystyle p _ { { \\mathbf { x } } _ { 1 } , { \\mathbf { x } } _ { 2 } | { \\mathbf { c } } }$ , where ", + "bbox": [ + 174, + 428, + 823, + 486 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/c5c10d21f164dc958f0ae014970750e9436e47bd027d67fbf3d27aa4f8cc5a22.jpg", + "text": "$$\np _ { \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } | \\mathbf { c } } ( \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } | \\mathbf { c } ) = \\int \\delta ( \\mathbf { x } _ { 1 } - f ( \\mathbf { v } _ { 1 } , \\mathbf { c } ) ) \\delta ( \\mathbf { x } _ { 2 } - f ( \\mathbf { v } _ { 2 } , \\mathbf { c } ) ) p ( \\mathbf { v } _ { 1 } ) p ( \\mathbf { v } _ { 2 } ) d \\mathbf { v } _ { 1 } d \\mathbf { v } _ { 2 } .\n$$", + "text_format": "latex", + "bbox": [ + 238, + 492, + 759, + 525 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Firstly, we show that the labeling allows us to satisfy the feature disentangling property for $\\mathbf { c }$ (2). For any $[ \\mathbf { \\dot { x } } _ { 1 } , \\mathbf { x } _ { 2 } ] \\sim p _ { \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } | \\mathbf { c } }$ we impose $N _ { \\mathbf { c } } ( \\mathbf { x } _ { 1 } ) = N _ { \\mathbf { c } } ( \\mathbf { x } _ { 2 } )$ . In particular, this equation is true for pairs when one of the two images is held fixed. Thus, a function $C ( \\mathbf { c } ) = N _ { \\mathbf { c } } ( \\mathbf { x } _ { 1 } )$ can be defined, where the $C$ only depends on c, because $N _ { \\mathbf { c } }$ is invariant to $\\mathbf { v }$ . Lastly, images with the same $\\mathbf { v }$ , but different c must also result in different features, $C ( \\mathbf { c } _ { 1 } ) = N _ { \\mathbf { v } } ( f ( \\mathbf { v } , \\mathbf { c } _ { 1 } ) ) \\neq N _ { \\mathbf { v } } ( \\mathbf { v } , \\mathbf { c } _ { 2 } ) = C ( \\mathbf { c } _ { 2 } )$ , otherwise the autoencoder constraint (3) cannot be satisfied. Then, there exists a bijective function $\\dot { R } _ { \\bf c } = { C } ^ { - 1 }$ such that property (2) is satisfied for c. Unfortunately the other disentangling properties can not provably be satisfied. ", + "bbox": [ + 173, + 530, + 825, + 643 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Definition 1. A function $g$ reproduces the data distribution, when it generates samples $\\mathbf { y } _ { 1 } = g ( \\mathbf { v } _ { 1 } , \\mathbf { c } )$ and $\\mathbf { y } _ { 2 } = g ( \\mathbf { v } _ { 2 } , \\mathbf { c } )$ that have the same distribution as the data. Formally, $[ \\mathbf { y } _ { 1 } , \\mathbf { y } _ { 2 } ] \\sim p _ { \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } }$ , where the latent factors are independent, $\\mathbf { v } _ { 1 } \\sim p _ { \\mathbf { v } }$ , $\\mathbf { v } _ { 2 } \\sim p _ { \\mathbf { v } }$ and $\\mathbf { c } \\sim p _ { \\mathbf { c } }$ . ", + "bbox": [ + 174, + 647, + 825, + 690 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The reference ambiguity occurs, when a decoder reproduces the data without satisfying the disentangling properties. ", + "bbox": [ + 174, + 700, + 823, + 729 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Proposition 2. Let $p _ { \\mathbf { v } }$ assign the same probability value to at least two different instances of v. Then, we can find encoders that reproduce the data distribution, but do not satisfy the disentangling properties for v in (2) and (4). ", + "bbox": [ + 173, + 733, + 825, + 776 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Proof. We already saw that $N _ { \\mathbf { c } }$ satisfies (2), so we can choose $N _ { \\mathbf { c } } = f _ { \\mathbf { c } } ^ { - 1 }$ , the inverse of the rendering engine. Now we look at defining $N _ { \\mathbf { v } }$ and the decoder. The iso-probability property of $p _ { \\mathbf { v } }$ implies that there exists a mapping $T ( \\mathbf { v } , \\mathbf { c } )$ , such that $T ( \\mathbf { v } , \\mathbf { c } ) \\sim p _ { \\mathbf { v } }$ and $T ( \\mathbf { v } , \\bar { \\mathbf { c } _ { 1 } } ) \\bar { \\neq } T ( \\bar { \\mathbf { v } } , \\bar { \\mathbf { c } _ { 2 } } )$ for some $\\mathbf { v }$ and $\\mathbf { c } _ { 1 } \\neq \\mathbf { c } _ { 2 }$ . For example, let us denote with $\\mathbf { v } _ { 1 } \\neq \\mathbf { v } _ { 2 }$ two varying components such that $p _ { \\mathbf { v } } ( \\mathbf { v } _ { 1 } ) = p _ { \\mathbf { v } } ( \\mathbf { v } _ { 2 } )$ . Then, let ", + "bbox": [ + 173, + 790, + 825, + 862 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/bb4ae1e763a78a1dae1156e86bc9cd8f148c155f09fc90d3857031b049127b49.jpg", + "text": "$$\nT ( \\mathbf { v } , \\mathbf { c } ) \\dot { = } \\left\\{ \\begin{array} { l l } { \\mathbf { v } } & { \\mathrm { i f } \\ \\mathbf { v } \\neq \\mathbf { v } _ { 1 } , \\mathbf { v } _ { 2 } } \\\\ { \\mathbf { v } _ { 1 } } & { \\mathrm { i f } \\ \\mathbf { v } = \\mathbf { v } _ { 1 } \\lor \\mathbf { v } _ { 2 } \\mathrm { a n d } \\mathbf { c } \\in \\mathcal { C } } \\\\ { \\mathbf { v } _ { 2 } } & { \\mathrm { i f } \\ \\mathbf { v } = \\mathbf { v } _ { 1 } \\lor \\mathbf { v } _ { 2 } \\mathrm { a n d } \\mathbf { c } \\not \\in \\mathcal { C } } \\end{array} \\right.\n$$", + "text_format": "latex", + "bbox": [ + 351, + 869, + 647, + 921 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "and $\\mathcal { C }$ is a subset of the domain of $\\mathbf { c }$ , where $\\begin{array} { r } { \\int _ { \\mathcal { C } } p _ { \\mathbf { c } } ( \\mathbf { c } ) d \\mathbf { c } = 1 / 2 } \\end{array}$ . Now, let us define the encoder as $N _ { \\mathbf { v } } ( f ( \\mathbf { v } , \\mathbf { c } ) ) = T ( \\mathbf { v } , \\mathbf { c } )$ . By using the autoencoder constraint, the decoder satisfies ", + "bbox": [ + 169, + 102, + 823, + 133 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/54a73ddb2a2bc6d4404212dd98ca2cbb4232243f51a7f880456ef26805957772.jpg", + "text": "$$\n\\operatorname { D e c } ( N _ { \\mathbf { v } } ( f ( \\mathbf { v } , \\mathbf { c } ) ) , N _ { \\mathbf { c } } ( f ( \\mathbf { v } , \\mathbf { c } ) ) ) = \\operatorname { D e c } ( T ( \\mathbf { v } , \\mathbf { c } ) , \\mathbf { c } ) = f ( \\mathbf { v } , \\mathbf { c } ) .\n$$", + "text_format": "latex", + "bbox": [ + 290, + 138, + 705, + 156 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Even though $T ( \\mathbf { v } , \\mathbf { c } )$ depends on $\\mathbf { c }$ functionally, they are statistically independent. Because $T ( \\mathbf { v } , \\mathbf { c } ) \\sim$ $p _ { \\mathbf { v } }$ and $\\mathbf { c } \\sim p _ { \\mathbf { c } }$ by construction, our encoder-decoder pair defines a data distribution identical to that given as training set ", + "bbox": [ + 173, + 161, + 825, + 204 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/f6bcda88538e042aaccb0e9ecdcfead5aed1204c01d813be25799d45cf17aefe.jpg", + "text": "$$\n\\left[ \\operatorname { D e c } ( T ( \\mathbf { v } _ { 1 } , \\mathbf { c } ) , \\mathbf { c } ) , \\operatorname { D e c } ( T ( \\mathbf { v } _ { 2 } , \\mathbf { c } ) , \\mathbf { c } ) \\right] \\sim p _ { \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } } .\n$$", + "text_format": "latex", + "bbox": [ + 343, + 209, + 653, + 227 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "The feature disentanglement property is not satisfied because $N _ { \\mathbf { v } } ( f ( \\mathbf { v } _ { 1 } , \\mathbf { c } _ { 1 } ) ) ~ = ~ T ( \\mathbf { v } _ { 1 } , \\mathbf { c } _ { 1 } ) ~ \\neq$ $T ( \\mathbf { v } _ { 1 } , \\mathbf { c } _ { 2 } ) \\ = \\ N _ { \\mathbf { v } } ( f ( { \\bar { \\mathbf { v } } } _ { 1 } , \\mathbf { c } _ { 2 } ) )$ , when $\\mathbf { c } _ { 1 } ~ \\in ~ { \\mathcal { C } }$ and $\\mathbf { c } _ { 2 } \\notin \\mathcal { C }$ . Similarly, the data disentanglement property does not hold, because $\\mathrm { D e c } ( T ( \\mathbf { v } _ { 1 } , \\mathbf { c } _ { 1 } ) , \\mathbf { c } _ { 1 } ) \\neq \\mathrm { D e c } ( T ( \\mathbf { v } _ { 1 } , \\mathbf { c } _ { 2 } ) , \\mathbf { c } _ { 2 } )$ . □ ", + "bbox": [ + 174, + 231, + 825, + 275 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "The above proposition implies that we cannot provably disentangle all the factors of variation from weakly labeled data, even if we had access to all the data and knew the distributions $p _ { \\mathbf { v } }$ and $p _ { \\mathbf { c } }$ . ", + "bbox": [ + 173, + 289, + 823, + 318 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "To better understand it, let us consider a practical example. Let $\\mathbf { v } \\sim \\mathcal { U } [ - \\pi , \\pi ]$ be the (continuous) viewpoint (the azimuth angle) and $\\mathbf { c } \\sim B ( 0 . 5 )$ the car type, where $\\mathcal { U }$ denotes the uniform distribution and $B ( 0 . 5 )$ the Bernoulli distribution with probability $p _ { \\mathbf { c } } ( \\mathbf { c } = 0 ) = p _ { \\mathbf { c } } ( \\mathbf { c } = 1 ) = 0 . 5$ (i.e., there are only 2 car types). In this case, every instance of $\\mathbf { v }$ is iso-probable in $p _ { \\mathbf { v } }$ so we have the worst scenario for the reference ambiguity. We can define the function $T ( \\mathbf { v } , \\mathbf { c } ) = \\mathbf { v } ( 2 \\mathbf { c } - 1 )$ so that the mapping of $\\mathbf { v }$ is mirrored as we change the car type. By construction $T ( \\mathbf { v } , \\mathbf { c } ) \\sim \\mathcal { U } [ - \\pi , \\pi ]$ for any $\\mathbf { c }$ and $T ( \\mathbf { v } , \\mathbf { c } _ { 1 } ) \\neq T ( \\mathbf { v } , \\mathbf { c } _ { 2 } )$ for $\\mathbf { v } \\neq 0$ and $\\mathbf { c } _ { 1 } \\neq \\mathbf { c } _ { 2 }$ . So we cannot tell the difference between $T$ and the ideal correct mapping to the viewpoint factor. This is equivalent to an encoder $N _ { \\mathbf { v } } ( f ( \\mathbf { v } , \\mathbf { c } ) ) = T ( \\mathbf { v } , \\mathbf { c } )$ that reverses the ordering of the azimuth of car 1 with respect to car 0. Each car has its own reference system, and thus it is not possible to transfer the viewpoint from one system to the other, as it is illustrated in fig. 1. ", + "bbox": [ + 173, + 324, + 825, + 478 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "3.4 IMPLEMENTATION ", + "text_level": 1, + "bbox": [ + 174, + 494, + 341, + 508 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "In our implementation we use convolutional neural networks for all the models. We denote with $\\theta$ the parameters associated to each network. Then, the optimization of the composite loss can be written as ", + "bbox": [ + 174, + 520, + 823, + 549 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/ad8a7a239b6e53b3ca59924edbecb1c1d2d6c239f4721fbd445add5e1ca1471a.jpg", + "text": "$$\n\\hat { \\theta } _ { \\mathrm { { D e c } } } , \\hat { \\theta } _ { \\mathrm { { E n c } } } , \\hat { \\theta } _ { \\mathrm { { D s c } } } = \\arg \\operatorname* { m i n } _ { \\theta _ { \\mathrm { { D e c } } } , \\theta _ { \\mathrm { { E n c } } } } \\operatorname* { m a x } _ { \\theta _ { \\mathrm { { D s c } } } } \\mathcal { L } ( \\theta _ { \\mathrm { { D e c } } } , \\theta _ { \\mathrm { { E n c } } } , \\theta _ { \\mathrm { { D s c } } } ) .\n$$", + "text_format": "latex", + "bbox": [ + 325, + 554, + 673, + 582 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We choose $\\lambda = 1$ and also add regularization to the adversarial loss so that each logarithm has a minimum value. We define $\\log _ { \\epsilon } \\bar { \\mathrm { D s c } } ( \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } ) = \\log ( \\epsilon + \\mathrm { D s c } ( \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } ) )$ (and similarly for the other logarithmic term) and use $\\epsilon = 1 0 ^ { - 1 2 }$ . The main components of our neural network are shown in Fig. 2. The architecture of the encoder and the decoder were taken from DCGAN Radford et al. (2015), with slight modifications. We added fully connected layers at the output of the encoder and to the input of the decoder. For the discriminator we used a simplified version of the VGG Simonyan & Zisserman (2014) network. As the input to the discriminator is an image pair, we concatenate them along the color channels. ", + "bbox": [ + 173, + 585, + 825, + 698 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Normalization. In our architecture both the encoder and the decoder networks use blocks with a convolutional layer, a nonlinear activation function (ReLU/leaky ReLU) and a normalization layer, typically, batch normalization (BN). As an alternative to BN we consider the recently introduced instance normalization (IN) Ulyanov et al. (2017). The main difference between BN and IN is that the latter just computes the mean and standard deviation across the spatial domain of the input and not along the batch dimension. Thus, the shift and scaling for the output of each layer is the same at every iteration for the same input image. In practice, we find that IN improves the performance. ", + "bbox": [ + 173, + 704, + 825, + 803 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 821, + 326, + 838 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We tested our method on the MNIST, Sprites and ShapeNet datasets. We performed ablation studies on the shortcut problem using ShapeNet cars. We focused on the effect of the feature dimensionality and having the adversarial term $( \\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N } )$ or not $( \\mathcal { L } _ { A E } )$ . We also show that in most cases the reference ambiguity does not arise in practice (MNIST, Sprites, ShapeNet cars), we can only observe it when the data is more complex (ShapeNet chairs). ", + "bbox": [ + 174, + 853, + 825, + 924 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/90a0f2e4ff16668ce677bfd81f19be4a9e730377fbd5bbdf49085baa9daeb981.jpg", + "image_caption": [ + "Figure 2: Learning to disentangle factors of variation. The scheme above shows how the encoder (Enc), the decoder (Dec) and the discriminator (Dsc) are trained with input triplets. The components with the same name share weights. " + ], + "image_footnote": [], + "bbox": [ + 354, + 101, + 643, + 285 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.1 SHORTCUT PROBLEM ", + "text_level": 1, + "bbox": [ + 176, + 376, + 361, + 390 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "ShapeNet cars. The ShapeNet dataset Chang et al. (2015) contains 3D objects than we can render from different viewpoints. We consider only one category (cars) for a set of fixed viewpoints. Cars have high intraclass variability and they do not have rotational symmetries. We used approximately 3K car types for training and 300 for testing. We rendered 24 possible viewpoints around each object in a full circle, resulting in 80K images in total. The elevation was fixed to 15 degrees and azimuth angles were spaced 15 degrees apart. We normalized the size of the objects to fit in a $1 0 0 \\times 1 0 0$ pixel bounding box, and placed it in the middle of a $1 2 8 \\times 1 2 8$ pixel image. ", + "bbox": [ + 173, + 404, + 825, + 502 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Fig. 3 shows the attribute transfer on the Shapenet cars. We compare the methods $\\mathcal { L } _ { A E }$ and $\\mathcal { L } _ { A E } +$ $\\mathcal { L } _ { G A N }$ with different feature dimension of $N _ { \\mathbf { v } }$ . The size of the common feature $N _ { \\mathbf { c } }$ was fixed to 1024 dimensions. We can observe that the transferring performance degrades for $\\mathcal { L } _ { A E }$ , when we increase the feature size of $N _ { \\mathbf { v } }$ . As expected, the autoencoder takes the shortcut and tries to store all information into $N _ { \\mathbf { v } }$ . The model $\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N }$ instead renders images without loss of quality, independently of the feature dimension. ", + "bbox": [ + 173, + 508, + 826, + 593 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/5c12b702322a9c6bbc47ab8de3e5581a0bb893cfe305a9a1e478823279c0c10d.jpg", + "image_caption": [ + "Figure 3: Feature transfer on Shapenet. (a) synthesized images with $\\mathcal { L } _ { A E }$ , where the top row shows images from which the car type is taken. The second, third and fourth row show the decoder renderings using 2, 16 and 128 dimensions for the feature $N _ { \\mathbf { v } }$ . (b) images synthesized with $\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N }$ . The setting for the inputs and feature dimensions are the same as in (a). " + ], + "image_footnote": [], + "bbox": [ + 186, + 609, + 812, + 738 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "In Fig. 4 we visualize the t-SNE embeddings of the $N _ { \\mathbf { v } }$ features for several models using different feature sizes. For the $2 D$ case, we do not modify the data. We can see that both $\\mathcal { L } _ { A E }$ with 2 dimensions and $\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N }$ with 128 separate the viewpoints well, but $\\mathcal { L } _ { A E }$ with 128 dimensions does not due to the shortcut problem. We investigate the effect of dimensionality of the $N _ { \\mathbf { v } }$ features on the nearest neighbor classification task. The performance is measured by the mean average precision. For $N _ { \\mathbf { v } }$ we use the viewpoint as ground truth. Fig. 4 also shows the results on $\\mathcal { L } _ { A E }$ and $\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N }$ models with different $N _ { \\mathbf { v } }$ feature dimensions. The dimension of $N _ { \\mathbf { c } }$ was fixed to 1024 for this experiment. One can now see quantitatively that $\\mathcal { L } _ { A E }$ is sensitive to the size of $N _ { \\mathbf { v } }$ , while $\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N }$ is not. $\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N }$ also achieves a better performance. ", + "bbox": [ + 173, + 825, + 825, + 924 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/682c15c0ae852d517b1ac69b302654a800de4fd0f02c77d85fbeaeb17fe5a1ca.jpg", + "image_caption": [ + "Figure 4: The effect of dimensions and objective function on $N _ { v }$ features. (a), (b), (c) t-SNE embeddings on $N _ { \\mathbf { v } }$ features. Colors correspond to the ground truth viewpoint. The objective functions and the $N _ { \\mathbf { v } }$ dimensions are: (a) $\\mathcal { L } _ { A E }$ 2 dim, (b) $\\mathcal { L } _ { A E }$ 128 dim, (c) $\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N } \\mathrm { ~ 1 ~ }$ 128 dim. (d) Mean average precision curves for the viewpoint prediction from the viewpoint feature using different models and dimensions for $N _ { \\mathbf { v } }$ . " + ], + "image_footnote": [], + "bbox": [ + 240, + 99, + 758, + 214 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/b952c7556c42a601464b737e324c1e90893cbadb4fec0f246e68d9f3dde1e3eb.jpg", + "table_caption": [ + "Table 1: Nearest neighbor classification on $N _ { \\mathbf { v } }$ and $N _ { \\mathbf { c } }$ features using different normalization techniques on ShapeNet cars. " + ], + "table_footnote": [], + "table_body": "
NormalizationNv mAPNc mAP
None0.470.13
Batch0.500.08
Instance0.500.20
", + "bbox": [ + 361, + 353, + 635, + 425 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 452, + 823, + 481 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We compare the different normalization choices in Table 1. We evaluate the case when batch, instance and no normalization are used and compute the performance on the nearest neighbor classification task. We fixed the feature dimensions at 1024 for both $N _ { \\mathbf { v } }$ and $N _ { \\mathbf { c } }$ features in all normalization cases. We can see that both batch and instance normalization perform equally well on viewpoint classification and no normalization is slightly worse. For the car type classification instance normalization is clearly better. ", + "bbox": [ + 173, + 487, + 826, + 571 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "4.2 REFERENCE AMBIGUITY ", + "text_level": 1, + "bbox": [ + 174, + 590, + 383, + 604 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "MNIST. The MNIST dataset LeCun et al. (1998) contains handwritten grayscale digits of size $2 8 \\times 2 8$ pixel. There are 60K images of 10 classes for training and 10K for testing. The common factor is the digit class and the varying factor is the intraclass variation. We take image pairs that have the same digit for training, and use our full model $\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N }$ with dimensions 64 for $N _ { \\mathbf { v } }$ and 64 for $N _ { \\mathbf { c } }$ . In Fig. 5 (a) and (b) we show the transfer of varying factors. Qualitatively, both our method and Mathieu et al. (2016) perform well. We observe neither the reference ambiguity nor the shortcut problem in this case. ", + "bbox": [ + 173, + 617, + 825, + 715 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/19dbb062afd2ee7e2e211be55c604266d4e81e0c4b40072158decf54298db406.jpg", + "image_caption": [ + "Figure 5: Renderings of transferred features. In all figures the variable factor is transferred from the left column and the common factor from the top row. (a) MNIST Mathieu et al. (2016); (b) MNIST (ours); (c) Sprites Mathieu et al. (2016); (d) Sprites (ours). " + ], + "image_footnote": [], + "bbox": [ + 181, + 728, + 816, + 866 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/55049684dd4908d747a5bd58b28114a25a2f6b44c1aa8542f673f3beeb04f571.jpg", + "image_caption": [ + "Figure 6: Attribute transfer on ShapeNet. For both subfigures the viewpoint is taken from the leftmost column and the car/chair type is taken from the first row. (a) Cars: the factors are transferred correctly. (b) Chairs: in the bottom three rows the viewpoint is not transferred correctly due to the reference ambiguity. " + ], + "image_footnote": [], + "bbox": [ + 192, + 98, + 803, + 321 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Sprites. The Sprites dataset Reed et al. (2015) contains 60 pixel color images of animated characters (sprites). There are 672 sprites, 500 for training, 100 for testing and 72 for validation. Each sprite has 20 animations and 178 images, so the full dataset has 120K images in total. There are many changes in the appearance of the sprites, they differ in their body shape, gender, hair, armour, arm type, greaves, and weapon. We consider character identity as the common factor and the pose as the varying factor. We train our system using image pairs of the same sprite and do not exploit labels on their pose. We train the $\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N }$ model with dimensions 64 for $N _ { \\mathbf { v } }$ and 448 for $N _ { \\mathbf { c } }$ . Fig. 5 (c) and (d) show results on the attribute transfer task. Both our method and Mathieu et al. (2016)’s transfer the identity of the sprites correctly, the reference ambiguity does not arise. ", + "bbox": [ + 173, + 420, + 825, + 546 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "ShapeNet chairs. We render the ShapeNet chairs with the same settings (viewpoints, image size) as the cars. There are 3500 chair types for training and 3200 for testing, so the dataset contains 160K images. We trained $\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N }$ , and set the feature dimensions to 1024 for both $N _ { \\mathbf { v } }$ and $N _ { \\mathbf { c } }$ . In Fig. 6 we show results on attribute transfer and compare it with ShapeNet cars. We found that the reference ambiguity does not emerge for cars, but it does for chairs, possibly due to the higher complexity, as cars have much less variability than chairs. ", + "bbox": [ + 174, + 553, + 825, + 637 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "5 CONCLUSIONS ", + "text_level": 1, + "bbox": [ + 176, + 661, + 328, + 678 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "In this paper we studied the challenges of disentangling factors of variation, mainly the shortcut problem and the reference ambiguity. The shortcut problem occurs when all information is stored in only one feature chunk, while the other is ignored. The reference ambiguity means that the reference in which a factor is interpreted, may depend on other factors. This makes the attribute transfer ambiguous. We introduced a novel training of autoencoders to solve disentangling using image triplets. We showed theoretically and experimentally how to keep the shortcut problem under control through adversarial training, and enable to use large feature dimensions. We proved that the reference ambiguity is inherently present in the disentangling task when weak labels are used. Most importantly this can be stated independently of the learning algorithm. We demonstrated that training and transfer of factors of variation may not be guaranteed. However, in practice we observe that our trained model works well on many datasets and exhibits good generalization capabilities. ", + "bbox": [ + 174, + 695, + 825, + 849 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 176, + 873, + 285, + 888 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Yoshua Bengio, Aaron Courville, and Pascal Vincent. Representation learning: A review and new perspectives. IEEE transactions on pattern analysis and machine intelligence, 35(8):1798–1828, 2013. ", + "bbox": [ + 176, + 897, + 823, + 922 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Hervé Bourlard and Yves Kamp. Auto-association by multilayer perceptrons and singular value decomposition. Biological cybernetics, 59(4):291–294, 1988. \nAngel X. Chang, Thomas Funkhouser, Leonidas Guibas, Pat Hanrahan, Qixing Huang, Zimo Li, Silvio Savarese, Manolis Savva, Shuran Song, Hao Su, Jianxiong Xiao, Li Yi, and Fisher Yu. ShapeNet: An Information-Rich 3D Model Repository. Technical Report arXiv:1512.03012 [cs.GR], 2015. \nXi Chen, Yan Duan, Rein Houthooft, John Schulman, Ilya Sutskever, and Pieter Abbeel. Infogan: Interpretable representation learning by information maximizing generative adversarial nets. In NIPS, 2016. \nBrian Cheung, Jesse A Livezey, Arjun K Bansal, and Bruno A Olshausen. Discovering hidden factors of variation in deep networks. arXiv:1412.6583, 2014. \nJeff Donahue, Philipp Krähenbühl, and Trevor Darrell. Adversarial feature learning. arXiv:1605.09782, 2016. \nIan Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In NIPS, 2014. \nGeoffrey E Hinton and Ruslan R Salakhutdinov. Reducing the dimensionality of data with neural networks. Science, 313(5786):504–507, 2006. \nGeoffrey E Hinton, Alex Krizhevsky, and Sida D Wang. Transforming auto-encoders. In International Conference on Artificial Neural Networks, pp. 44–51. Springer, 2011. \nDiederik P Kingma and Max Welling. Auto-encoding variational bayes. In ICLR, 2014. \nYann LeCun, Léon Bottou, Yoshua Bengio, and Patrick Haffner. Gradient-based learning applied to document recognition. Proceedings of the IEEE, 86(11):2278–2324, 1998. \nMing-Yu Liu and Oncel Tuzel. Coupled generative adversarial networks. In Advances in Neural Information Processing Systems, pp. 469–477, 2016. \nChristos Louizos, Kevin Swersky, Yujia Li, Max Welling, and Richard Zemel. The variational fair autoencoder. In ICLR, 2016. \nMichael F Mathieu, Junbo Jake Zhao, Junbo Zhao, Aditya Ramesh, Pablo Sprechmann, and Yann LeCun. Disentangling factors of variation in deep representation using adversarial training. In Advances in Neural Information Processing Systems, pp. 5041–5049, 2016. \nAlec Radford, Luke Metz, and Soumith Chintala. Unsupervised representation learning with deep convolutional generative adversarial networks. arXiv:1511.06434, 2015. \nScott Reed, Kihyuk Sohn, Yuting Zhang, and Honglak Lee. Learning to disentangle factors of variation with manifold interaction. In Proceedings of the 31st International Conference on Machine Learning (ICML-14), pp. 1431–1439, 2014. \nScott E Reed, Yi Zhang, Yuting Zhang, and Honglak Lee. Deep visual analogy-making. In Advances in Neural Information Processing Systems, pp. 1252–1260, 2015. \nZhixin Shu, Ersin Yumer, Sunil Hadap, Kalyan Sunkavalli, Eli Shechtman, and Dimitris Samaras. Neural face editing with intrinsic image disentangling. In The IEEE Conference on Computer Vision and Pattern Recognition (CVPR), July 2017. \nKaren Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale image recognition. arXiv preprint arXiv:1409.1556, 2014. \nLuan Tran, Xi Yin, and Xiaoming Liu. Disentangled representation learning gan for pose-invariant face recognition. In The IEEE Conference on Computer Vision and Pattern Recognition (CVPR), July 2017. \nDmitry Ulyanov, Andrea Vedaldi, and Victor S. Lempitsky. Improved texture networks: Maximizing quality and diversity in feed-forward stylization and texture synthesis. In CVPR, 2017. \nKihyuk Sohn Dimitris Metaxas Manmohan Chandraker Xi Peng, Xiang Yu. Reconstruction for feature disentanglement in pose-invariant face recognition. arXiv:1702.03041, 2017. \nJimei Yang, Scott E Reed, Ming-Hsuan Yang, and Honglak Lee. Weakly-supervised disentangling with recurrent transformations for 3d view synthesis. In NIPS, 2015. ", + "bbox": [ + 169, + 32, + 828, + 897 + ], + "page_idx": 9 + } +] \ No newline at end of file diff --git a/parse/train/SkmiegW0b/SkmiegW0b_middle.json b/parse/train/SkmiegW0b/SkmiegW0b_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..468137e4333bc971585d998494032f4a31c4e8f7 --- /dev/null +++ b/parse/train/SkmiegW0b/SkmiegW0b_middle.json @@ -0,0 +1,33307 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 506, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 77, + 508, + 98 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 508, + 98 + ], + "score": 1.0, + "content": "CHALLENGES IN DISENTANGLING INDEPENDENT FAC-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 99, + 258, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 258, + 118 + ], + "score": 1.0, + "content": "TORS OF VARIATION", + "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, + 211, + 469, + 376 + ], + "lines": [ + { + "bbox": [ + 142, + 212, + 469, + 223 + ], + "spans": [ + { + "bbox": [ + 142, + 212, + 469, + 223 + ], + "score": 1.0, + "content": "We study the problem of building models that disentangle independent factors of", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 222, + 469, + 235 + ], + "spans": [ + { + "bbox": [ + 141, + 222, + 469, + 235 + ], + "score": 1.0, + "content": "variation. Such models encode features that can efficiently be used for classification", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 233, + 469, + 246 + ], + "spans": [ + { + "bbox": [ + 141, + 233, + 469, + 246 + ], + "score": 1.0, + "content": "and to transfer attributes between different images in image synthesis. As data", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 245, + 469, + 256 + ], + "spans": [ + { + "bbox": [ + 141, + 245, + 469, + 256 + ], + "score": 1.0, + "content": "we use a weakly labeled training set, where labels indicate what single factor has", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 142, + 256, + 469, + 267 + ], + "spans": [ + { + "bbox": [ + 142, + 256, + 469, + 267 + ], + "score": 1.0, + "content": "changed between two data samples, although the relative value of the change is", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 142, + 267, + 469, + 279 + ], + "spans": [ + { + "bbox": [ + 142, + 267, + 469, + 279 + ], + "score": 1.0, + "content": "unknown. This labeling is of particular interest as it may be readily available", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 142, + 277, + 469, + 289 + ], + "spans": [ + { + "bbox": [ + 142, + 277, + 469, + 289 + ], + "score": 1.0, + "content": "without annotation costs. We introduce an autoencoder model and train it through", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 289, + 469, + 300 + ], + "spans": [ + { + "bbox": [ + 141, + 289, + 469, + 300 + ], + "score": 1.0, + "content": "constraints on image pairs and triplets. We show the role of feature dimensionality", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 142, + 300, + 469, + 311 + ], + "spans": [ + { + "bbox": [ + 142, + 300, + 469, + 311 + ], + "score": 1.0, + "content": "and adversarial training theoretically and experimentally. We formally prove the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 310, + 470, + 322 + ], + "spans": [ + { + "bbox": [ + 141, + 310, + 470, + 322 + ], + "score": 1.0, + "content": "existence of the reference ambiguity, which is inherently present in the disentan-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 142, + 321, + 470, + 333 + ], + "spans": [ + { + "bbox": [ + 142, + 321, + 470, + 333 + ], + "score": 1.0, + "content": "gling task when weakly labeled data is used. The numerical value of a factor", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 333, + 469, + 344 + ], + "spans": [ + { + "bbox": [ + 141, + 333, + 469, + 344 + ], + "score": 1.0, + "content": "has different meaning in different reference frames. When the reference depends", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 343, + 469, + 356 + ], + "spans": [ + { + "bbox": [ + 141, + 343, + 469, + 356 + ], + "score": 1.0, + "content": "on other factors, transferring that factor becomes ambiguous. We demonstrate", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 354, + 469, + 366 + ], + "spans": [ + { + "bbox": [ + 141, + 354, + 469, + 366 + ], + "score": 1.0, + "content": "experimentally that the proposed model can successfully transfer attributes on", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 364, + 442, + 378 + ], + "spans": [ + { + "bbox": [ + 141, + 364, + 442, + 378 + ], + "score": 1.0, + "content": "several datasets, but show also cases when the reference ambiguity occurs.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 12 + }, + { + "type": "title", + "bbox": [ + 108, + 398, + 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, + 422, + 505, + 522 + ], + "lines": [ + { + "bbox": [ + 106, + 423, + 506, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 506, + 435 + ], + "score": 1.0, + "content": "One way to simplify the problem of classifying or regressing attributes of interest from data is to build", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 434, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 106, + 434, + 505, + 446 + ], + "score": 1.0, + "content": "an intermediate representation, a feature, where the information about the attributes is better separated", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 445, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 445, + 505, + 457 + ], + "score": 1.0, + "content": "than in the input data. Better separation means that some entries of the feature vary only with", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 455, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 506, + 468 + ], + "score": 1.0, + "content": "respect to one and only one attribute. In this way, classifiers and regressors would not need to build", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 467, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 506, + 480 + ], + "score": 1.0, + "content": "invariance to many nuisance attributes. Instead, they could devote more capacity to discriminating the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 477, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 506, + 491 + ], + "score": 1.0, + "content": "attributes of interest, and possibly achieve better performance. We call this task disentangling factors", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 488, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 506, + 501 + ], + "score": 1.0, + "content": "of variation, and we identify attributes with the factors. In addition to facilitating classification and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 498, + 507, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 507, + 514 + ], + "score": 1.0, + "content": "regression, this task is beneficial to image synthesis. One could build a model to render images,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 510, + 499, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 499, + 524 + ], + "score": 1.0, + "content": "where each input varies only one attribute of the output, and to transfer attributes between images.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 527, + 505, + 615 + ], + "lines": [ + { + "bbox": [ + 105, + 527, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 506, + 540 + ], + "score": 1.0, + "content": "When labeling is possible and available, supervised learning can be used to solve this task. In general,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 538, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 505, + 551 + ], + "score": 1.0, + "content": "however, some attributes may not be easily quantifiable (e.g., style). Therefore, we consider using", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 549, + 505, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 505, + 561 + ], + "score": 1.0, + "content": "weak labeling, where we only know what attribute has changed between two images, although we do", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 561, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 573 + ], + "score": 1.0, + "content": "not know by how much. This type of labeling may be readily available in many cases without manual", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 571, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 505, + 583 + ], + "score": 1.0, + "content": "annotation. For example, image pairs from a stereo system are automatically labeled with a viewpoint", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "score": 1.0, + "content": "change, albeit unknown. A practical model that can learn from these labels is an encoder-decoder pair", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 594, + 506, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 506, + 605 + ], + "score": 1.0, + "content": "subject to a reconstruction constraint. In this model the weak labels can be used to define similarities", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 603, + 361, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 361, + 617 + ], + "score": 1.0, + "content": "between subsets of the feature obtained from two input images.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 108, + 621, + 505, + 654 + ], + "lines": [ + { + "bbox": [ + 105, + 620, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 506, + 635 + ], + "score": 1.0, + "content": "We introduce a novel adversarial training of autoencoders to solve the disentangling task when only", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 632, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 505, + 644 + ], + "score": 1.0, + "content": "weak labels are available. Compared to previous methods, our discriminator is not conditioned on", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 642, + 507, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 507, + 656 + ], + "score": 1.0, + "content": "class labels, but takes image pairs as inputs. This way the number of parameters can be kept constant.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 108, + 660, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 106, + 659, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 505, + 672 + ], + "score": 1.0, + "content": "We describe the shortcut problem, where all the the information is encoded only in one part of the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 670, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 505, + 684 + ], + "score": 1.0, + "content": "feature, while other part is completely ignored, as fig. 1 illustrates. We prove our method solves this", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 682, + 282, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 682, + 282, + 694 + ], + "score": 1.0, + "content": "problem and demonstrate it experimentally.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "We formally prove existence of the reference ambiguity, that is inherently present in the disentangling", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "task when weak labels are used. Thus no algorithm can provably learn disentangling. As fig. 1 shows,", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "the reference ambiguity means that a factor (for example viewpoint) can have different meaning when", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 309, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 309, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 506, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 77, + 508, + 98 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 508, + 98 + ], + "score": 1.0, + "content": "CHALLENGES IN DISENTANGLING INDEPENDENT FAC-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 99, + 258, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 258, + 118 + ], + "score": 1.0, + "content": "TORS OF VARIATION", + "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, + 211, + 469, + 376 + ], + "lines": [ + { + "bbox": [ + 142, + 212, + 469, + 223 + ], + "spans": [ + { + "bbox": [ + 142, + 212, + 469, + 223 + ], + "score": 1.0, + "content": "We study the problem of building models that disentangle independent factors of", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 222, + 469, + 235 + ], + "spans": [ + { + "bbox": [ + 141, + 222, + 469, + 235 + ], + "score": 1.0, + "content": "variation. Such models encode features that can efficiently be used for classification", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 233, + 469, + 246 + ], + "spans": [ + { + "bbox": [ + 141, + 233, + 469, + 246 + ], + "score": 1.0, + "content": "and to transfer attributes between different images in image synthesis. As data", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 245, + 469, + 256 + ], + "spans": [ + { + "bbox": [ + 141, + 245, + 469, + 256 + ], + "score": 1.0, + "content": "we use a weakly labeled training set, where labels indicate what single factor has", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 142, + 256, + 469, + 267 + ], + "spans": [ + { + "bbox": [ + 142, + 256, + 469, + 267 + ], + "score": 1.0, + "content": "changed between two data samples, although the relative value of the change is", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 142, + 267, + 469, + 279 + ], + "spans": [ + { + "bbox": [ + 142, + 267, + 469, + 279 + ], + "score": 1.0, + "content": "unknown. This labeling is of particular interest as it may be readily available", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 142, + 277, + 469, + 289 + ], + "spans": [ + { + "bbox": [ + 142, + 277, + 469, + 289 + ], + "score": 1.0, + "content": "without annotation costs. We introduce an autoencoder model and train it through", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 289, + 469, + 300 + ], + "spans": [ + { + "bbox": [ + 141, + 289, + 469, + 300 + ], + "score": 1.0, + "content": "constraints on image pairs and triplets. We show the role of feature dimensionality", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 142, + 300, + 469, + 311 + ], + "spans": [ + { + "bbox": [ + 142, + 300, + 469, + 311 + ], + "score": 1.0, + "content": "and adversarial training theoretically and experimentally. We formally prove the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 310, + 470, + 322 + ], + "spans": [ + { + "bbox": [ + 141, + 310, + 470, + 322 + ], + "score": 1.0, + "content": "existence of the reference ambiguity, which is inherently present in the disentan-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 142, + 321, + 470, + 333 + ], + "spans": [ + { + "bbox": [ + 142, + 321, + 470, + 333 + ], + "score": 1.0, + "content": "gling task when weakly labeled data is used. The numerical value of a factor", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 333, + 469, + 344 + ], + "spans": [ + { + "bbox": [ + 141, + 333, + 469, + 344 + ], + "score": 1.0, + "content": "has different meaning in different reference frames. When the reference depends", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 343, + 469, + 356 + ], + "spans": [ + { + "bbox": [ + 141, + 343, + 469, + 356 + ], + "score": 1.0, + "content": "on other factors, transferring that factor becomes ambiguous. We demonstrate", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 354, + 469, + 366 + ], + "spans": [ + { + "bbox": [ + 141, + 354, + 469, + 366 + ], + "score": 1.0, + "content": "experimentally that the proposed model can successfully transfer attributes on", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 364, + 442, + 378 + ], + "spans": [ + { + "bbox": [ + 141, + 364, + 442, + 378 + ], + "score": 1.0, + "content": "several datasets, but show also cases when the reference ambiguity occurs.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 12, + "bbox_fs": [ + 141, + 212, + 470, + 378 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 398, + 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, + 422, + 505, + 522 + ], + "lines": [ + { + "bbox": [ + 106, + 423, + 506, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 506, + 435 + ], + "score": 1.0, + "content": "One way to simplify the problem of classifying or regressing attributes of interest from data is to build", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 434, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 106, + 434, + 505, + 446 + ], + "score": 1.0, + "content": "an intermediate representation, a feature, where the information about the attributes is better separated", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 445, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 445, + 505, + 457 + ], + "score": 1.0, + "content": "than in the input data. Better separation means that some entries of the feature vary only with", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 455, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 506, + 468 + ], + "score": 1.0, + "content": "respect to one and only one attribute. In this way, classifiers and regressors would not need to build", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 467, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 506, + 480 + ], + "score": 1.0, + "content": "invariance to many nuisance attributes. Instead, they could devote more capacity to discriminating the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 477, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 506, + 491 + ], + "score": 1.0, + "content": "attributes of interest, and possibly achieve better performance. We call this task disentangling factors", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 488, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 506, + 501 + ], + "score": 1.0, + "content": "of variation, and we identify attributes with the factors. In addition to facilitating classification and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 498, + 507, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 507, + 514 + ], + "score": 1.0, + "content": "regression, this task is beneficial to image synthesis. One could build a model to render images,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 510, + 499, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 499, + 524 + ], + "score": 1.0, + "content": "where each input varies only one attribute of the output, and to transfer attributes between images.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 423, + 507, + 524 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 527, + 505, + 615 + ], + "lines": [ + { + "bbox": [ + 105, + 527, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 506, + 540 + ], + "score": 1.0, + "content": "When labeling is possible and available, supervised learning can be used to solve this task. In general,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 538, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 505, + 551 + ], + "score": 1.0, + "content": "however, some attributes may not be easily quantifiable (e.g., style). Therefore, we consider using", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 549, + 505, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 505, + 561 + ], + "score": 1.0, + "content": "weak labeling, where we only know what attribute has changed between two images, although we do", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 561, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 573 + ], + "score": 1.0, + "content": "not know by how much. This type of labeling may be readily available in many cases without manual", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 571, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 505, + 583 + ], + "score": 1.0, + "content": "annotation. For example, image pairs from a stereo system are automatically labeled with a viewpoint", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "score": 1.0, + "content": "change, albeit unknown. A practical model that can learn from these labels is an encoder-decoder pair", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 594, + 506, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 506, + 605 + ], + "score": 1.0, + "content": "subject to a reconstruction constraint. In this model the weak labels can be used to define similarities", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 603, + 361, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 361, + 617 + ], + "score": 1.0, + "content": "between subsets of the feature obtained from two input images.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 527, + 506, + 617 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 621, + 505, + 654 + ], + "lines": [ + { + "bbox": [ + 105, + 620, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 506, + 635 + ], + "score": 1.0, + "content": "We introduce a novel adversarial training of autoencoders to solve the disentangling task when only", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 632, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 505, + 644 + ], + "score": 1.0, + "content": "weak labels are available. Compared to previous methods, our discriminator is not conditioned on", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 642, + 507, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 507, + 656 + ], + "score": 1.0, + "content": "class labels, but takes image pairs as inputs. This way the number of parameters can be kept constant.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 620, + 507, + 656 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 660, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 106, + 659, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 505, + 672 + ], + "score": 1.0, + "content": "We describe the shortcut problem, where all the the information is encoded only in one part of the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 670, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 505, + 684 + ], + "score": 1.0, + "content": "feature, while other part is completely ignored, as fig. 1 illustrates. We prove our method solves this", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 682, + 282, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 682, + 282, + 694 + ], + "score": 1.0, + "content": "problem and demonstrate it experimentally.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42, + "bbox_fs": [ + 105, + 659, + 505, + 694 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "We formally prove existence of the reference ambiguity, that is inherently present in the disentangling", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "task when weak labels are used. Thus no algorithm can provably learn disentangling. As fig. 1 shows,", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "the reference ambiguity means that a factor (for example viewpoint) can have different meaning when", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "using a different reference frame that depends on another factor (for example car type). We show", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 493, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 493, + 107 + ], + "score": 1.0, + "content": "experimentally that this ambiguity rarely arise, we can observe it only when the data is complex.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 698, + 506, + 734 + ] + } + ] + }, + { + "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": "using a different reference frame that depends on another factor (for example car type). We show", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 493, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 493, + 107 + ], + "score": 1.0, + "content": "experimentally that this ambiguity rarely arise, we can observe it only when the data is complex.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "image", + "bbox": [ + 137, + 118, + 474, + 232 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 137, + 118, + 474, + 232 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 137, + 118, + 474, + 232 + ], + "spans": [ + { + "bbox": [ + 137, + 118, + 474, + 232 + ], + "score": 0.973, + "type": "image", + "image_path": "fded6d23f694cb78ea35bd328451d6c6df4a13df4ab823b7f12b98e6e7a12b42.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 137, + 118, + 474, + 156.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 137, + 156.0, + 474, + 194.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 137, + 194.0, + 474, + 232.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 240, + 505, + 308 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 240, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 505, + 254 + ], + "score": 1.0, + "content": "Figure 1: Challenges of disentangling. We disentangle the feature into two parts, one representing", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 252, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 265 + ], + "score": 1.0, + "content": "the viewpoint, the other the car type. We use the features for attribute transfer. For all subfigures", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 263, + 505, + 275 + ], + "spans": [ + { + "bbox": [ + 106, + 263, + 505, + 275 + ], + "score": 1.0, + "content": "the viewpoint feature is taken from the leftmost column and the car type feature is taken from the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 274, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 505, + 286 + ], + "score": 1.0, + "content": "topmost row. (a) ideal solution: the viewpoint and the car type are transferred correctly. (b) shortcut", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 285, + 506, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 506, + 297 + ], + "score": 1.0, + "content": "problem: the car type is not transferred. (c) reference ambiguity: compared to the others the viewpoint", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 297, + 256, + 308 + ], + "spans": [ + { + "bbox": [ + 106, + 297, + 256, + 308 + ], + "score": 1.0, + "content": "orientation is flipped for the blue car.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7.5 + } + ], + "index": 5.25 + }, + { + "type": "title", + "bbox": [ + 108, + 332, + 209, + 345 + ], + "lines": [ + { + "bbox": [ + 104, + 331, + 210, + 347 + ], + "spans": [ + { + "bbox": [ + 104, + 331, + 210, + 347 + ], + "score": 1.0, + "content": "2 RELATED WORK", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 357, + 506, + 479 + ], + "lines": [ + { + "bbox": [ + 105, + 358, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 505, + 370 + ], + "score": 1.0, + "content": "Autoencoders. Autoencoders in Bourlard & Kamp (1988), Hinton & Salakhutdinov (2006), Bengio", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 369, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 309, + 381 + ], + "score": 1.0, + "content": "et al. (2013) learn to reconstruct the input data as", + "type": "text" + }, + { + "bbox": [ + 309, + 369, + 383, + 381 + ], + "score": 0.9, + "content": "\\mathbf { x } = \\mathrm { D e c } ( \\mathrm { E n c } ( \\mathbf { x } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 369, + 415, + 381 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 415, + 369, + 446, + 381 + ], + "score": 0.87, + "content": "\\operatorname { E n c } ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 369, + 505, + 381 + ], + "score": 1.0, + "content": "is the internal", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 380, + 506, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 506, + 392 + ], + "score": 1.0, + "content": "image representation (the encoder) and Dec (the decoder) reconstructs the input of the encoder.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 390, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 415, + 403 + ], + "score": 1.0, + "content": "Variational autoencoders in Kingma & Welling (2014) use a generative model;", + "type": "text" + }, + { + "bbox": [ + 415, + 390, + 502, + 403 + ], + "score": 0.93, + "content": "p ( \\bar { \\mathbf { x } } , \\mathbf { z } ) = p ( \\mathbf { x } | \\mathbf { z } ) p ( \\mathbf { z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 390, + 506, + 403 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 402, + 506, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 134, + 414 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 403, + 143, + 412 + ], + "score": 0.53, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 402, + 294, + 414 + ], + "score": 1.0, + "content": "is the observed data (images), and", + "type": "text" + }, + { + "bbox": [ + 294, + 404, + 301, + 412 + ], + "score": 0.61, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 402, + 506, + 414 + ], + "score": 1.0, + "content": "are latent variables. The encoder estimates the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 412, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 218, + 425 + ], + "score": 1.0, + "content": "parameters of the posterior,", + "type": "text" + }, + { + "bbox": [ + 219, + 413, + 289, + 424 + ], + "score": 0.93, + "content": "\\operatorname { E n c } ( \\mathbf { x } ) = p ( \\mathbf { z } | \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 412, + 506, + 425 + ], + "score": 1.0, + "content": ", and the decoder estimates the conditional likelihood,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 423, + 507, + 437 + ], + "spans": [ + { + "bbox": [ + 106, + 424, + 177, + 436 + ], + "score": 0.92, + "content": "\\mathrm { D e c } ( \\mathbf { z } ) = p ( \\mathbf { x } | \\mathbf { z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 423, + 507, + 437 + ], + "score": 1.0, + "content": ". In Hinton et al. (2011) autoencoders are trained with transformed image input pairs.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 434, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 505, + 447 + ], + "score": 1.0, + "content": "The relative transformation parameters are also fed to the network. Because the internal representation", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 447, + 505, + 458 + ], + "spans": [ + { + "bbox": [ + 106, + 447, + 505, + 458 + ], + "score": 1.0, + "content": "explicitly represents the objects presence and location, the network can learn their absolute position.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 456, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 506, + 469 + ], + "score": 1.0, + "content": "One important aspect of the autoencoders is that they encourage latent representations to keep as", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 468, + 291, + 479 + ], + "spans": [ + { + "bbox": [ + 106, + 468, + 291, + 479 + ], + "score": 1.0, + "content": "much information about the input as possible.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 106, + 484, + 505, + 605 + ], + "lines": [ + { + "bbox": [ + 106, + 484, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 505, + 497 + ], + "score": 1.0, + "content": "GAN. Generative Adversarial Nets Goodfellow et al. (2014) learn to sample realistic images with", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 496, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 387, + 507 + ], + "score": 1.0, + "content": "two competing neural networks. The generator Dec creates images", + "type": "text" + }, + { + "bbox": [ + 387, + 496, + 439, + 507 + ], + "score": 0.91, + "content": "\\mathbf { x } = \\mathrm { D e c } ( \\mathbf { z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 496, + 505, + 507 + ], + "score": 1.0, + "content": "from a random", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 506, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 163, + 519 + ], + "score": 1.0, + "content": "noise sample", + "type": "text" + }, + { + "bbox": [ + 163, + 508, + 170, + 516 + ], + "score": 0.52, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 506, + 506, + 519 + ], + "score": 1.0, + "content": "and tries to fool a discriminator Dsc, which has to decide whether the image is", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 518, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 216, + 531 + ], + "score": 1.0, + "content": "sampled from the generator", + "type": "text" + }, + { + "bbox": [ + 216, + 519, + 227, + 529 + ], + "score": 0.87, + "content": "p _ { g }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 518, + 306, + 531 + ], + "score": 1.0, + "content": "or from real images", + "type": "text" + }, + { + "bbox": [ + 306, + 519, + 327, + 529 + ], + "score": 0.87, + "content": "p _ { r e a l }", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 518, + 505, + 531 + ], + "score": 1.0, + "content": ". After a successful training the discriminator", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 528, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 506, + 541 + ], + "score": 1.0, + "content": "cannot distinguish the real from the generated samples. Adversarial training is often used to enforce", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 540, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 506, + 552 + ], + "score": 1.0, + "content": "constraints on random variables. BIGAN, Donahue et al. (2016) learns a feature representation with", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 318, + 563 + ], + "score": 1.0, + "content": "adversarial nets by training an encoder Enc, such that", + "type": "text" + }, + { + "bbox": [ + 318, + 550, + 349, + 562 + ], + "score": 0.55, + "content": "\\operatorname { E n c } ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 550, + 423, + 563 + ], + "score": 1.0, + "content": "is Gaussian, when", + "type": "text" + }, + { + "bbox": [ + 424, + 551, + 464, + 562 + ], + "score": 0.87, + "content": "\\mathbf { x } \\sim p _ { r e a l }", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 550, + 506, + 563 + ], + "score": 1.0, + "content": ". CoGAN,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 560, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 506, + 574 + ], + "score": 1.0, + "content": "Liu & Tuzel (2016) learns the joint distribution of multi-domain images by having generators and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "discriminators in each domain, and sharing their weights. They can transform images between", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 583, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 506, + 595 + ], + "score": 1.0, + "content": "domains without being given correspondences. InfoGan, Chen et al. (2016) learns a subset of factors", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 594, + 408, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 408, + 607 + ], + "score": 1.0, + "content": "of variation by reproducing parts of the input vector with the discriminator.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 611, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 611, + 504, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 504, + 623 + ], + "score": 1.0, + "content": "Disentangling and independence. Many recent methods use neural networks for disentangling", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 621, + 506, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 506, + 634 + ], + "score": 1.0, + "content": "features, with various degrees of supervision. In Xi Peng (2017) multi-task learning is used with full", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 633, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 506, + 645 + ], + "score": 1.0, + "content": "supervision for pose invariant face recognition. Using both identity and pose labels Tran et al. (2017)", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 644, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 506, + 657 + ], + "score": 1.0, + "content": "can learn pose invariant features and synthesize frontalized faces from any pose. In Yang et al. (2015)", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 653, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 104, + 653, + 506, + 669 + ], + "score": 1.0, + "content": "autoencoders are used to generate novel viewpoints of objects. They disentangle the object category", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 666, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 679 + ], + "score": 1.0, + "content": "factor from the viewpoint factor by using as explicit supervision signals: the relative viewpoint", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "transformations between image pairs. In Cheung et al. (2014) the output of the encoder is split in two", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 687, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 104, + 687, + 506, + 701 + ], + "score": 1.0, + "content": "parts: one represents the class label and the other represents the nuisance factors. Their objective", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "function has a penalty term for misclassification and a cross-covariance cost to disentangle class from", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 104, + 708, + 507, + 723 + ], + "spans": [ + { + "bbox": [ + 104, + 708, + 507, + 723 + ], + "score": 1.0, + "content": "nuisance factors. Hierarchical Boltzmann Machines are used in Reed et al. (2014) for disentangling.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 719, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 506, + 734 + ], + "score": 1.0, + "content": "A subset of hidden units are trained to be sensitive to a specific factor of variation, while being", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 39 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 309, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 309, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 505, + 105 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 105, + 82, + 505, + 107 + ], + "lines_deleted": true + }, + { + "type": "image", + "bbox": [ + 137, + 118, + 474, + 232 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 137, + 118, + 474, + 232 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 137, + 118, + 474, + 232 + ], + "spans": [ + { + "bbox": [ + 137, + 118, + 474, + 232 + ], + "score": 0.973, + "type": "image", + "image_path": "fded6d23f694cb78ea35bd328451d6c6df4a13df4ab823b7f12b98e6e7a12b42.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 137, + 118, + 474, + 156.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 137, + 156.0, + 474, + 194.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 137, + 194.0, + 474, + 232.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 240, + 505, + 308 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 240, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 505, + 254 + ], + "score": 1.0, + "content": "Figure 1: Challenges of disentangling. We disentangle the feature into two parts, one representing", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 252, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 265 + ], + "score": 1.0, + "content": "the viewpoint, the other the car type. We use the features for attribute transfer. For all subfigures", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 263, + 505, + 275 + ], + "spans": [ + { + "bbox": [ + 106, + 263, + 505, + 275 + ], + "score": 1.0, + "content": "the viewpoint feature is taken from the leftmost column and the car type feature is taken from the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 274, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 505, + 286 + ], + "score": 1.0, + "content": "topmost row. (a) ideal solution: the viewpoint and the car type are transferred correctly. (b) shortcut", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 285, + 506, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 506, + 297 + ], + "score": 1.0, + "content": "problem: the car type is not transferred. (c) reference ambiguity: compared to the others the viewpoint", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 297, + 256, + 308 + ], + "spans": [ + { + "bbox": [ + 106, + 297, + 256, + 308 + ], + "score": 1.0, + "content": "orientation is flipped for the blue car.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7.5 + } + ], + "index": 5.25 + }, + { + "type": "title", + "bbox": [ + 108, + 332, + 209, + 345 + ], + "lines": [ + { + "bbox": [ + 104, + 331, + 210, + 347 + ], + "spans": [ + { + "bbox": [ + 104, + 331, + 210, + 347 + ], + "score": 1.0, + "content": "2 RELATED WORK", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 357, + 506, + 479 + ], + "lines": [ + { + "bbox": [ + 105, + 358, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 505, + 370 + ], + "score": 1.0, + "content": "Autoencoders. Autoencoders in Bourlard & Kamp (1988), Hinton & Salakhutdinov (2006), Bengio", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 369, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 309, + 381 + ], + "score": 1.0, + "content": "et al. (2013) learn to reconstruct the input data as", + "type": "text" + }, + { + "bbox": [ + 309, + 369, + 383, + 381 + ], + "score": 0.9, + "content": "\\mathbf { x } = \\mathrm { D e c } ( \\mathrm { E n c } ( \\mathbf { x } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 369, + 415, + 381 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 415, + 369, + 446, + 381 + ], + "score": 0.87, + "content": "\\operatorname { E n c } ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 369, + 505, + 381 + ], + "score": 1.0, + "content": "is the internal", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 380, + 506, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 506, + 392 + ], + "score": 1.0, + "content": "image representation (the encoder) and Dec (the decoder) reconstructs the input of the encoder.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 390, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 415, + 403 + ], + "score": 1.0, + "content": "Variational autoencoders in Kingma & Welling (2014) use a generative model;", + "type": "text" + }, + { + "bbox": [ + 415, + 390, + 502, + 403 + ], + "score": 0.93, + "content": "p ( \\bar { \\mathbf { x } } , \\mathbf { z } ) = p ( \\mathbf { x } | \\mathbf { z } ) p ( \\mathbf { z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 390, + 506, + 403 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 402, + 506, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 134, + 414 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 403, + 143, + 412 + ], + "score": 0.53, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 402, + 294, + 414 + ], + "score": 1.0, + "content": "is the observed data (images), and", + "type": "text" + }, + { + "bbox": [ + 294, + 404, + 301, + 412 + ], + "score": 0.61, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 402, + 506, + 414 + ], + "score": 1.0, + "content": "are latent variables. The encoder estimates the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 412, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 218, + 425 + ], + "score": 1.0, + "content": "parameters of the posterior,", + "type": "text" + }, + { + "bbox": [ + 219, + 413, + 289, + 424 + ], + "score": 0.93, + "content": "\\operatorname { E n c } ( \\mathbf { x } ) = p ( \\mathbf { z } | \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 412, + 506, + 425 + ], + "score": 1.0, + "content": ", and the decoder estimates the conditional likelihood,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 423, + 507, + 437 + ], + "spans": [ + { + "bbox": [ + 106, + 424, + 177, + 436 + ], + "score": 0.92, + "content": "\\mathrm { D e c } ( \\mathbf { z } ) = p ( \\mathbf { x } | \\mathbf { z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 423, + 507, + 437 + ], + "score": 1.0, + "content": ". In Hinton et al. (2011) autoencoders are trained with transformed image input pairs.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 434, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 505, + 447 + ], + "score": 1.0, + "content": "The relative transformation parameters are also fed to the network. Because the internal representation", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 447, + 505, + 458 + ], + "spans": [ + { + "bbox": [ + 106, + 447, + 505, + 458 + ], + "score": 1.0, + "content": "explicitly represents the objects presence and location, the network can learn their absolute position.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 456, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 506, + 469 + ], + "score": 1.0, + "content": "One important aspect of the autoencoders is that they encourage latent representations to keep as", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 468, + 291, + 479 + ], + "spans": [ + { + "bbox": [ + 106, + 468, + 291, + 479 + ], + "score": 1.0, + "content": "much information about the input as possible.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 358, + 507, + 479 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 484, + 505, + 605 + ], + "lines": [ + { + "bbox": [ + 106, + 484, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 505, + 497 + ], + "score": 1.0, + "content": "GAN. Generative Adversarial Nets Goodfellow et al. (2014) learn to sample realistic images with", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 496, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 387, + 507 + ], + "score": 1.0, + "content": "two competing neural networks. The generator Dec creates images", + "type": "text" + }, + { + "bbox": [ + 387, + 496, + 439, + 507 + ], + "score": 0.91, + "content": "\\mathbf { x } = \\mathrm { D e c } ( \\mathbf { z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 496, + 505, + 507 + ], + "score": 1.0, + "content": "from a random", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 506, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 163, + 519 + ], + "score": 1.0, + "content": "noise sample", + "type": "text" + }, + { + "bbox": [ + 163, + 508, + 170, + 516 + ], + "score": 0.52, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 506, + 506, + 519 + ], + "score": 1.0, + "content": "and tries to fool a discriminator Dsc, which has to decide whether the image is", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 518, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 216, + 531 + ], + "score": 1.0, + "content": "sampled from the generator", + "type": "text" + }, + { + "bbox": [ + 216, + 519, + 227, + 529 + ], + "score": 0.87, + "content": "p _ { g }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 518, + 306, + 531 + ], + "score": 1.0, + "content": "or from real images", + "type": "text" + }, + { + "bbox": [ + 306, + 519, + 327, + 529 + ], + "score": 0.87, + "content": "p _ { r e a l }", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 518, + 505, + 531 + ], + "score": 1.0, + "content": ". After a successful training the discriminator", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 528, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 506, + 541 + ], + "score": 1.0, + "content": "cannot distinguish the real from the generated samples. Adversarial training is often used to enforce", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 540, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 506, + 552 + ], + "score": 1.0, + "content": "constraints on random variables. BIGAN, Donahue et al. (2016) learns a feature representation with", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 318, + 563 + ], + "score": 1.0, + "content": "adversarial nets by training an encoder Enc, such that", + "type": "text" + }, + { + "bbox": [ + 318, + 550, + 349, + 562 + ], + "score": 0.55, + "content": "\\operatorname { E n c } ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 550, + 423, + 563 + ], + "score": 1.0, + "content": "is Gaussian, when", + "type": "text" + }, + { + "bbox": [ + 424, + 551, + 464, + 562 + ], + "score": 0.87, + "content": "\\mathbf { x } \\sim p _ { r e a l }", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 550, + 506, + 563 + ], + "score": 1.0, + "content": ". CoGAN,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 560, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 506, + 574 + ], + "score": 1.0, + "content": "Liu & Tuzel (2016) learns the joint distribution of multi-domain images by having generators and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "discriminators in each domain, and sharing their weights. They can transform images between", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 583, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 506, + 595 + ], + "score": 1.0, + "content": "domains without being given correspondences. InfoGan, Chen et al. (2016) learns a subset of factors", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 594, + 408, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 408, + 607 + ], + "score": 1.0, + "content": "of variation by reproducing parts of the input vector with the discriminator.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 484, + 506, + 607 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 611, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 611, + 504, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 504, + 623 + ], + "score": 1.0, + "content": "Disentangling and independence. Many recent methods use neural networks for disentangling", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 621, + 506, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 506, + 634 + ], + "score": 1.0, + "content": "features, with various degrees of supervision. In Xi Peng (2017) multi-task learning is used with full", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 633, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 506, + 645 + ], + "score": 1.0, + "content": "supervision for pose invariant face recognition. Using both identity and pose labels Tran et al. (2017)", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 644, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 506, + 657 + ], + "score": 1.0, + "content": "can learn pose invariant features and synthesize frontalized faces from any pose. In Yang et al. (2015)", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 653, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 104, + 653, + 506, + 669 + ], + "score": 1.0, + "content": "autoencoders are used to generate novel viewpoints of objects. They disentangle the object category", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 666, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 679 + ], + "score": 1.0, + "content": "factor from the viewpoint factor by using as explicit supervision signals: the relative viewpoint", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "transformations between image pairs. In Cheung et al. (2014) the output of the encoder is split in two", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 687, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 104, + 687, + 506, + 701 + ], + "score": 1.0, + "content": "parts: one represents the class label and the other represents the nuisance factors. Their objective", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "function has a penalty term for misclassification and a cross-covariance cost to disentangle class from", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 104, + 708, + 507, + 723 + ], + "spans": [ + { + "bbox": [ + 104, + 708, + 507, + 723 + ], + "score": 1.0, + "content": "nuisance factors. Hierarchical Boltzmann Machines are used in Reed et al. (2014) for disentangling.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 719, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 506, + 734 + ], + "score": 1.0, + "content": "A subset of hidden units are trained to be sensitive to a specific factor of variation, while being", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "invariant to others. Variational Fair Autoencoders Louizos et al. (2016) learn a representation that is", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "invariant to specific nuisance factors, while retaining as much information as possible. Autoencoders", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 103, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 506, + 118 + ], + "score": 1.0, + "content": "can also be used for visual analogy Reed et al. (2015). GAN is used for disentangling intrinsic image", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 113, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 104, + 113, + 506, + 129 + ], + "score": 1.0, + "content": "factors (albedo and normal map) in Shu et al. (2017) without using ground truth labeling. They", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 458, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 458, + 140 + ], + "score": 1.0, + "content": "achieve this by explicitly modeling the physics of the image formation in their network.", + "type": "text", + "cross_page": true + } + ], + "index": 4 + } + ], + "index": 39, + "bbox_fs": [ + 104, + 611, + 507, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 138 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "invariant to others. Variational Fair Autoencoders Louizos et al. (2016) learn a representation that is", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "invariant to specific nuisance factors, while retaining as much information as possible. Autoencoders", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 103, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 506, + 118 + ], + "score": 1.0, + "content": "can also be used for visual analogy Reed et al. (2015). GAN is used for disentangling intrinsic image", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 113, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 104, + 113, + 506, + 129 + ], + "score": 1.0, + "content": "factors (albedo and normal map) in Shu et al. (2017) without using ground truth labeling. They", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 458, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 458, + 140 + ], + "score": 1.0, + "content": "achieve this by explicitly modeling the physics of the image formation in their network.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 143, + 505, + 253 + ], + "lines": [ + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "score": 1.0, + "content": "The work most related to ours is Mathieu et al. (2016), where an autoencoder restores an image", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 506, + 167 + ], + "score": 1.0, + "content": "from another by swapping parts of the internal image representation. Their main improvement over", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 164, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 506, + 178 + ], + "score": 1.0, + "content": "Reed et al. (2015) is the use of adversarial training, which allows for learning with image pairs", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 506, + 188 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 506, + 188 + ], + "score": 1.0, + "content": "instead of image triplets. Therefore, expensive labels like viewpoint alignment between different", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 187, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 506, + 200 + ], + "score": 1.0, + "content": "car types are no longer needed. One of the differences between this method and ours is that it trains", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 199, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 505, + 210 + ], + "score": 1.0, + "content": "a discriminator for each of the given labels. A benefit of this approach is the higher selectivity of", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 209, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 506, + 222 + ], + "score": 1.0, + "content": "the discriminator, but a drawback is that the number of model parameters grows linearly with the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 219, + 506, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 506, + 232 + ], + "score": 1.0, + "content": "number of labels. In contrast, we work with image pairs and use a single discriminator so that our", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 231, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 505, + 243 + ], + "score": 1.0, + "content": "method is uninfluenced by the number of labels. Moreover, we show formally and experimentally the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 241, + 299, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 299, + 254 + ], + "score": 1.0, + "content": "difficulties of disentangling factors of variation.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 9.5 + }, + { + "type": "title", + "bbox": [ + 107, + 270, + 336, + 282 + ], + "lines": [ + { + "bbox": [ + 104, + 268, + 338, + 284 + ], + "spans": [ + { + "bbox": [ + 104, + 268, + 338, + 284 + ], + "score": 1.0, + "content": "3 DISENTANGLING FACTORS OF VARIATION", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 293, + 505, + 415 + ], + "lines": [ + { + "bbox": [ + 105, + 293, + 506, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 506, + 308 + ], + "score": 1.0, + "content": "We are interested in the design and training of two models. One should map a data sample (e.g., an", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 305, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 506, + 318 + ], + "score": 1.0, + "content": "image) to a feature that is explicitly partitioned into subvectors, each associated to a specific factor", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 316, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 505, + 328 + ], + "score": 1.0, + "content": "of variation. The other model should map this feature back to an image. We call the first model the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 326, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 505, + 339 + ], + "score": 1.0, + "content": "encoder and the second model the decoder. For example, given the image of a car we would like", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 338, + 505, + 350 + ], + "spans": [ + { + "bbox": [ + 106, + 338, + 505, + 350 + ], + "score": 1.0, + "content": "the encoder to yield a feature with two subvectors: one related to the car viewpoint, and the other", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 349, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 505, + 361 + ], + "score": 1.0, + "content": "related to the car type. The subvectors of the feature obtained from the encoder should be useful", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 360, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 505, + 372 + ], + "score": 1.0, + "content": "for classification or regression of the corresponding factor that they depend on (the car viewpoint", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 371, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 505, + 383 + ], + "score": 1.0, + "content": "and type in the example). This separation would also be very useful to the decoder. It would enable", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 383, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 505, + 394 + ], + "score": 1.0, + "content": "advanced editing of images, for example, the transfer of the viewpoint or car types from an image to", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 393, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 506, + 406 + ], + "score": 1.0, + "content": "another, by swapping the corresponding subvectors. Next, we introduce our model of the data and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 404, + 293, + 415 + ], + "spans": [ + { + "bbox": [ + 106, + 404, + 293, + 415 + ], + "score": 1.0, + "content": "formal definitions of our encoder and decoder.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 421, + 505, + 498 + ], + "lines": [ + { + "bbox": [ + 105, + 420, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 299, + 433 + ], + "score": 1.0, + "content": "Data model. We assume that our observed data", + "type": "text" + }, + { + "bbox": [ + 299, + 423, + 307, + 431 + ], + "score": 0.59, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 420, + 505, + 433 + ], + "score": 1.0, + "content": "is generated through some unknown deterministic", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 432, + 506, + 444 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 231, + 444 + ], + "score": 1.0, + "content": "invertible and smooth process", + "type": "text" + }, + { + "bbox": [ + 231, + 432, + 239, + 443 + ], + "score": 0.86, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 432, + 353, + 444 + ], + "score": 1.0, + "content": "that depends on the factors", + "type": "text" + }, + { + "bbox": [ + 353, + 434, + 361, + 442 + ], + "score": 0.51, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 432, + 380, + 444 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 380, + 434, + 387, + 442 + ], + "score": 0.29, + "content": "\\mathbf { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 432, + 421, + 444 + ], + "score": 1.0, + "content": ", so that", + "type": "text" + }, + { + "bbox": [ + 421, + 432, + 472, + 444 + ], + "score": 0.93, + "content": "\\mathbf { x } = f ( \\mathbf { v } , \\mathbf { c } )", + "type": "inline_equation" + }, + { + "bbox": [ + 472, + 432, + 506, + 444 + ], + "score": 1.0, + "content": ". In our", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 442, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 176, + 455 + ], + "score": 1.0, + "content": "earlier example,", + "type": "text" + }, + { + "bbox": [ + 176, + 444, + 184, + 453 + ], + "score": 0.63, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 442, + 239, + 455 + ], + "score": 1.0, + "content": "is an image,", + "type": "text" + }, + { + "bbox": [ + 240, + 444, + 247, + 452 + ], + "score": 0.55, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 442, + 397, + 455 + ], + "score": 1.0, + "content": "is a viewpoint, c is a car type, and", + "type": "text" + }, + { + "bbox": [ + 397, + 443, + 405, + 454 + ], + "score": 0.86, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 442, + 506, + 455 + ], + "score": 1.0, + "content": "is the rendering engine.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 453, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 235, + 466 + ], + "score": 1.0, + "content": "It is reasonable to assume that", + "type": "text" + }, + { + "bbox": [ + 236, + 454, + 243, + 465 + ], + "score": 0.86, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 453, + 505, + 466 + ], + "score": 1.0, + "content": "is invertible, as for most cases the factors are readily apparent", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 464, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 223, + 477 + ], + "score": 1.0, + "content": "form the image. We assume", + "type": "text" + }, + { + "bbox": [ + 223, + 465, + 231, + 476 + ], + "score": 0.87, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 464, + 506, + 477 + ], + "score": 1.0, + "content": "is smooth, because a small change in the factors should only result", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 475, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 505, + 488 + ], + "score": 1.0, + "content": "in a small change in the image and vice versa. We denote the inverse of the rendering engine as", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 107, + 485, + 385, + 501 + ], + "spans": [ + { + "bbox": [ + 107, + 486, + 181, + 499 + ], + "score": 0.93, + "content": "f ^ { - 1 } = [ f _ { \\mathbf { v } } ^ { - 1 } , f _ { \\mathbf { c } } ^ { - 1 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 485, + 385, + 501 + ], + "score": 1.0, + "content": ", where the subscript refers to the recovered factor.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 106, + 503, + 505, + 570 + ], + "lines": [ + { + "bbox": [ + 105, + 502, + 504, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 363, + 516 + ], + "score": 1.0, + "content": "Weak labeling. In the training we are given pairs of images", + "type": "text" + }, + { + "bbox": [ + 363, + 505, + 375, + 514 + ], + "score": 0.85, + "content": "\\mathbf { x } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 502, + 395, + 516 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 395, + 505, + 407, + 514 + ], + "score": 0.85, + "content": "\\mathbf { x } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 502, + 496, + 516 + ], + "score": 1.0, + "content": ", where they differ in", + "type": "text" + }, + { + "bbox": [ + 496, + 505, + 504, + 514 + ], + "score": 0.32, + "content": "\\mathbf { v }", + "type": "inline_equation" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 513, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 104, + 513, + 506, + 528 + ], + "score": 1.0, + "content": "(varying factor), but they have the same c (common factor). We also assume that the two varying", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 524, + 506, + 539 + ], + "spans": [ + { + "bbox": [ + 104, + 524, + 350, + 539 + ], + "score": 1.0, + "content": "factors and the common factor are sampled independently,", + "type": "text" + }, + { + "bbox": [ + 350, + 527, + 388, + 537 + ], + "score": 0.73, + "content": "\\mathbf { v } _ { 1 } \\sim p _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 524, + 392, + 539 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 392, + 527, + 430, + 537 + ], + "score": 0.75, + "content": "\\mathbf { v } _ { 2 } \\sim p _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 524, + 449, + 539 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 450, + 527, + 480, + 537 + ], + "score": 0.89, + "content": "\\mathbf { c } \\sim p _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 524, + 506, + 539 + ], + "score": 1.0, + "content": ". The", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 536, + 506, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 205, + 550 + ], + "score": 1.0, + "content": "images are generated as", + "type": "text" + }, + { + "bbox": [ + 205, + 536, + 263, + 548 + ], + "score": 0.93, + "content": "\\mathbf { x } _ { 1 } = f ( \\mathbf { v } _ { 1 } , \\mathbf { c } )", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 536, + 282, + 550 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 282, + 536, + 340, + 549 + ], + "score": 0.93, + "content": "\\mathbf { x } _ { 1 } = f ( \\mathbf { v } _ { 2 } , \\mathbf { c } )", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 536, + 506, + 550 + ], + "score": 1.0, + "content": ". We call this labeling weak, because we", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 547, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 286, + 559 + ], + "score": 1.0, + "content": "do not know the absolute values of either the", + "type": "text" + }, + { + "bbox": [ + 286, + 550, + 294, + 558 + ], + "score": 0.51, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 547, + 475, + 559 + ], + "score": 1.0, + "content": "or c factors or even relative changes between", + "type": "text" + }, + { + "bbox": [ + 475, + 549, + 487, + 558 + ], + "score": 0.86, + "content": "\\mathbf { v } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 547, + 505, + 559 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 558, + 392, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 118, + 569 + ], + "score": 0.82, + "content": "\\mathbf { v } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 558, + 392, + 570 + ], + "score": 1.0, + "content": ". All we know is that the image pairs share the same common factor.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 106, + 574, + 505, + 630 + ], + "lines": [ + { + "bbox": [ + 106, + 575, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 505, + 587 + ], + "score": 1.0, + "content": "The encoder. Let Enc be the encoder mapping images to features. For simplicity, we consider", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 586, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 290, + 599 + ], + "score": 1.0, + "content": "features split into only two column subvectors,", + "type": "text" + }, + { + "bbox": [ + 291, + 587, + 305, + 597 + ], + "score": 0.89, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 586, + 322, + 599 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 323, + 586, + 336, + 597 + ], + "score": 0.89, + "content": "N _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 586, + 480, + 599 + ], + "score": 1.0, + "content": ", one associated to the varying factor", + "type": "text" + }, + { + "bbox": [ + 480, + 588, + 487, + 596 + ], + "score": 0.48, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 586, + 506, + 599 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 596, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 363, + 610 + ], + "score": 1.0, + "content": "the other associated to the common factor c. Then, we have that", + "type": "text" + }, + { + "bbox": [ + 363, + 597, + 470, + 609 + ], + "score": 0.9, + "content": "\\mathrm { E n c } ( \\mathbf { x } ) = [ N _ { \\mathbf { v } } ( \\mathbf { x } ) , \\bar { N _ { \\mathbf { c } } } ( \\mathbf { x } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 596, + 506, + 610 + ], + "score": 1.0, + "content": ". Ideally,", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 104, + 606, + 506, + 622 + ], + "spans": [ + { + "bbox": [ + 104, + 606, + 369, + 622 + ], + "score": 1.0, + "content": "we would like to find the inverse of the image formation function,", + "type": "text" + }, + { + "bbox": [ + 370, + 609, + 435, + 620 + ], + "score": 0.92, + "content": "[ N _ { \\bf v } , N _ { \\bf c } ] = f ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 606, + 506, + 622 + ], + "score": 1.0, + "content": ", which separates", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 617, + 340, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 203, + 632 + ], + "score": 1.0, + "content": "and recovers the factors", + "type": "text" + }, + { + "bbox": [ + 204, + 621, + 211, + 629 + ], + "score": 0.7, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 617, + 229, + 632 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 229, + 621, + 236, + 629 + ], + "score": 0.4, + "content": "\\mathbf { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 617, + 312, + 632 + ], + "score": 1.0, + "content": "from data samples", + "type": "text" + }, + { + "bbox": [ + 312, + 621, + 319, + 629 + ], + "score": 0.66, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 617, + 340, + 632 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42 + }, + { + "type": "interline_equation", + "bbox": [ + 224, + 635, + 387, + 649 + ], + "lines": [ + { + "bbox": [ + 224, + 635, + 387, + 649 + ], + "spans": [ + { + "bbox": [ + 224, + 635, + 387, + 649 + ], + "score": 0.91, + "content": "N _ { \\mathbf { v } } ( f ( \\mathbf { v } , \\mathbf { c } ) ) = \\mathbf { v } \\qquad N _ { \\mathbf { c } } ( f ( \\mathbf { v } , \\mathbf { c } ) ) = \\mathbf { c } .", + "type": "interline_equation", + "image_path": "f05d5a8c8d2a1d069976f7a15f58c01103a8388f9b9b200d56c1872194d14df2.jpg" + } + ] + } + ], + "index": 45, + "virtual_lines": [ + { + "bbox": [ + 224, + 635, + 387, + 649 + ], + "spans": [], + "index": 45 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 653, + 505, + 687 + ], + "lines": [ + { + "bbox": [ + 105, + 652, + 504, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 652, + 384, + 667 + ], + "score": 1.0, + "content": "In practice, this is not possible because any bijective transformation of", + "type": "text" + }, + { + "bbox": [ + 384, + 655, + 392, + 663 + ], + "score": 0.71, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 652, + 497, + 667 + ], + "score": 1.0, + "content": "and c could be undone by", + "type": "text" + }, + { + "bbox": [ + 497, + 654, + 504, + 665 + ], + "score": 0.82, + "content": "f", + "type": "inline_equation" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 663, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 223, + 677 + ], + "score": 1.0, + "content": "and produce the same output", + "type": "text" + }, + { + "bbox": [ + 224, + 666, + 231, + 674 + ], + "score": 0.68, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 663, + 325, + 677 + ], + "score": 1.0, + "content": ". Therefore, we aim for", + "type": "text" + }, + { + "bbox": [ + 325, + 665, + 340, + 675 + ], + "score": 0.9, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 663, + 358, + 677 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 358, + 665, + 372, + 675 + ], + "score": 0.89, + "content": "N _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 663, + 505, + 677 + ], + "score": 1.0, + "content": "that satisfy the following feature", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 674, + 206, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 674, + 206, + 689 + ], + "score": 1.0, + "content": "disentangling properties", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 47 + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 691, + 406, + 705 + ], + "lines": [ + { + "bbox": [ + 205, + 691, + 406, + 705 + ], + "spans": [ + { + "bbox": [ + 205, + 691, + 406, + 705 + ], + "score": 0.89, + "content": "R _ { \\mathbf { v } } ( N _ { \\mathbf { v } } ( f ( \\mathbf { v } , \\mathbf { c } ) ) ) = \\mathbf { v } \\qquad R _ { \\mathbf { c } } ( N _ { \\mathbf { c } } ( f ( \\mathbf { v } , \\mathbf { c } ) ) ) = \\mathbf { c }", + "type": "interline_equation", + "image_path": "229e09169a1617310ada564c46542252b122f24e4909b120d447fffe62bf8b90.jpg" + } + ] + } + ], + "index": 49, + "virtual_lines": [ + { + "bbox": [ + 205, + 691, + 406, + 705 + ], + "spans": [], + "index": 49 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 135, + 722 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 135, + 711, + 154, + 720 + ], + "score": 0.33, + "content": "\\mathbf { v } , \\mathbf { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 709, + 294, + 722 + ], + "score": 1.0, + "content": ", and for some bijective functions", + "type": "text" + }, + { + "bbox": [ + 295, + 710, + 309, + 721 + ], + "score": 0.89, + "content": "R _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 709, + 329, + 722 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 329, + 710, + 342, + 721 + ], + "score": 0.89, + "content": "R _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 709, + 378, + 722 + ], + "score": 1.0, + "content": ", so that", + "type": "text" + }, + { + "bbox": [ + 378, + 710, + 392, + 721 + ], + "score": 0.9, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 709, + 453, + 722 + ], + "score": 1.0, + "content": "is invariant to", + "type": "text" + }, + { + "bbox": [ + 454, + 712, + 460, + 720 + ], + "score": 0.6, + "content": "\\mathbf { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 709, + 480, + 722 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 480, + 710, + 494, + 721 + ], + "score": 0.88, + "content": "N _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 720, + 165, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 154, + 732 + ], + "score": 1.0, + "content": "invariant to", + "type": "text" + }, + { + "bbox": [ + 154, + 722, + 161, + 730 + ], + "score": 0.69, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 720, + 165, + 732 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 50.5 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 309, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 309, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2018", + "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, + 138 + ], + "lines": [], + "index": 2, + "bbox_fs": [ + 104, + 83, + 506, + 140 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 143, + 505, + 253 + ], + "lines": [ + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "score": 1.0, + "content": "The work most related to ours is Mathieu et al. (2016), where an autoencoder restores an image", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 506, + 167 + ], + "score": 1.0, + "content": "from another by swapping parts of the internal image representation. Their main improvement over", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 164, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 506, + 178 + ], + "score": 1.0, + "content": "Reed et al. (2015) is the use of adversarial training, which allows for learning with image pairs", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 506, + 188 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 506, + 188 + ], + "score": 1.0, + "content": "instead of image triplets. Therefore, expensive labels like viewpoint alignment between different", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 187, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 506, + 200 + ], + "score": 1.0, + "content": "car types are no longer needed. One of the differences between this method and ours is that it trains", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 199, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 505, + 210 + ], + "score": 1.0, + "content": "a discriminator for each of the given labels. A benefit of this approach is the higher selectivity of", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 209, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 506, + 222 + ], + "score": 1.0, + "content": "the discriminator, but a drawback is that the number of model parameters grows linearly with the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 219, + 506, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 506, + 232 + ], + "score": 1.0, + "content": "number of labels. In contrast, we work with image pairs and use a single discriminator so that our", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 231, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 505, + 243 + ], + "score": 1.0, + "content": "method is uninfluenced by the number of labels. Moreover, we show formally and experimentally the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 241, + 299, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 299, + 254 + ], + "score": 1.0, + "content": "difficulties of disentangling factors of variation.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 142, + 506, + 254 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 270, + 336, + 282 + ], + "lines": [ + { + "bbox": [ + 104, + 268, + 338, + 284 + ], + "spans": [ + { + "bbox": [ + 104, + 268, + 338, + 284 + ], + "score": 1.0, + "content": "3 DISENTANGLING FACTORS OF VARIATION", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 293, + 505, + 415 + ], + "lines": [ + { + "bbox": [ + 105, + 293, + 506, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 506, + 308 + ], + "score": 1.0, + "content": "We are interested in the design and training of two models. One should map a data sample (e.g., an", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 305, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 506, + 318 + ], + "score": 1.0, + "content": "image) to a feature that is explicitly partitioned into subvectors, each associated to a specific factor", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 316, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 505, + 328 + ], + "score": 1.0, + "content": "of variation. The other model should map this feature back to an image. We call the first model the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 326, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 505, + 339 + ], + "score": 1.0, + "content": "encoder and the second model the decoder. For example, given the image of a car we would like", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 338, + 505, + 350 + ], + "spans": [ + { + "bbox": [ + 106, + 338, + 505, + 350 + ], + "score": 1.0, + "content": "the encoder to yield a feature with two subvectors: one related to the car viewpoint, and the other", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 349, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 505, + 361 + ], + "score": 1.0, + "content": "related to the car type. The subvectors of the feature obtained from the encoder should be useful", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 360, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 505, + 372 + ], + "score": 1.0, + "content": "for classification or regression of the corresponding factor that they depend on (the car viewpoint", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 371, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 505, + 383 + ], + "score": 1.0, + "content": "and type in the example). This separation would also be very useful to the decoder. It would enable", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 383, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 505, + 394 + ], + "score": 1.0, + "content": "advanced editing of images, for example, the transfer of the viewpoint or car types from an image to", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 393, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 506, + 406 + ], + "score": 1.0, + "content": "another, by swapping the corresponding subvectors. Next, we introduce our model of the data and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 404, + 293, + 415 + ], + "spans": [ + { + "bbox": [ + 106, + 404, + 293, + 415 + ], + "score": 1.0, + "content": "formal definitions of our encoder and decoder.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 293, + 506, + 415 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 421, + 505, + 498 + ], + "lines": [ + { + "bbox": [ + 105, + 420, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 299, + 433 + ], + "score": 1.0, + "content": "Data model. We assume that our observed data", + "type": "text" + }, + { + "bbox": [ + 299, + 423, + 307, + 431 + ], + "score": 0.59, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 420, + 505, + 433 + ], + "score": 1.0, + "content": "is generated through some unknown deterministic", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 432, + 506, + 444 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 231, + 444 + ], + "score": 1.0, + "content": "invertible and smooth process", + "type": "text" + }, + { + "bbox": [ + 231, + 432, + 239, + 443 + ], + "score": 0.86, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 432, + 353, + 444 + ], + "score": 1.0, + "content": "that depends on the factors", + "type": "text" + }, + { + "bbox": [ + 353, + 434, + 361, + 442 + ], + "score": 0.51, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 432, + 380, + 444 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 380, + 434, + 387, + 442 + ], + "score": 0.29, + "content": "\\mathbf { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 432, + 421, + 444 + ], + "score": 1.0, + "content": ", so that", + "type": "text" + }, + { + "bbox": [ + 421, + 432, + 472, + 444 + ], + "score": 0.93, + "content": "\\mathbf { x } = f ( \\mathbf { v } , \\mathbf { c } )", + "type": "inline_equation" + }, + { + "bbox": [ + 472, + 432, + 506, + 444 + ], + "score": 1.0, + "content": ". In our", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 442, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 176, + 455 + ], + "score": 1.0, + "content": "earlier example,", + "type": "text" + }, + { + "bbox": [ + 176, + 444, + 184, + 453 + ], + "score": 0.63, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 442, + 239, + 455 + ], + "score": 1.0, + "content": "is an image,", + "type": "text" + }, + { + "bbox": [ + 240, + 444, + 247, + 452 + ], + "score": 0.55, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 442, + 397, + 455 + ], + "score": 1.0, + "content": "is a viewpoint, c is a car type, and", + "type": "text" + }, + { + "bbox": [ + 397, + 443, + 405, + 454 + ], + "score": 0.86, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 442, + 506, + 455 + ], + "score": 1.0, + "content": "is the rendering engine.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 453, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 235, + 466 + ], + "score": 1.0, + "content": "It is reasonable to assume that", + "type": "text" + }, + { + "bbox": [ + 236, + 454, + 243, + 465 + ], + "score": 0.86, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 453, + 505, + 466 + ], + "score": 1.0, + "content": "is invertible, as for most cases the factors are readily apparent", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 464, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 223, + 477 + ], + "score": 1.0, + "content": "form the image. We assume", + "type": "text" + }, + { + "bbox": [ + 223, + 465, + 231, + 476 + ], + "score": 0.87, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 464, + 506, + 477 + ], + "score": 1.0, + "content": "is smooth, because a small change in the factors should only result", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 475, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 505, + 488 + ], + "score": 1.0, + "content": "in a small change in the image and vice versa. We denote the inverse of the rendering engine as", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 107, + 485, + 385, + 501 + ], + "spans": [ + { + "bbox": [ + 107, + 486, + 181, + 499 + ], + "score": 0.93, + "content": "f ^ { - 1 } = [ f _ { \\mathbf { v } } ^ { - 1 } , f _ { \\mathbf { c } } ^ { - 1 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 485, + 385, + 501 + ], + "score": 1.0, + "content": ", where the subscript refers to the recovered factor.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 420, + 506, + 501 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 503, + 505, + 570 + ], + "lines": [ + { + "bbox": [ + 105, + 502, + 504, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 363, + 516 + ], + "score": 1.0, + "content": "Weak labeling. In the training we are given pairs of images", + "type": "text" + }, + { + "bbox": [ + 363, + 505, + 375, + 514 + ], + "score": 0.85, + "content": "\\mathbf { x } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 502, + 395, + 516 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 395, + 505, + 407, + 514 + ], + "score": 0.85, + "content": "\\mathbf { x } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 502, + 496, + 516 + ], + "score": 1.0, + "content": ", where they differ in", + "type": "text" + }, + { + "bbox": [ + 496, + 505, + 504, + 514 + ], + "score": 0.32, + "content": "\\mathbf { v }", + "type": "inline_equation" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 513, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 104, + 513, + 506, + 528 + ], + "score": 1.0, + "content": "(varying factor), but they have the same c (common factor). We also assume that the two varying", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 524, + 506, + 539 + ], + "spans": [ + { + "bbox": [ + 104, + 524, + 350, + 539 + ], + "score": 1.0, + "content": "factors and the common factor are sampled independently,", + "type": "text" + }, + { + "bbox": [ + 350, + 527, + 388, + 537 + ], + "score": 0.73, + "content": "\\mathbf { v } _ { 1 } \\sim p _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 524, + 392, + 539 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 392, + 527, + 430, + 537 + ], + "score": 0.75, + "content": "\\mathbf { v } _ { 2 } \\sim p _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 524, + 449, + 539 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 450, + 527, + 480, + 537 + ], + "score": 0.89, + "content": "\\mathbf { c } \\sim p _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 524, + 506, + 539 + ], + "score": 1.0, + "content": ". The", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 536, + 506, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 205, + 550 + ], + "score": 1.0, + "content": "images are generated as", + "type": "text" + }, + { + "bbox": [ + 205, + 536, + 263, + 548 + ], + "score": 0.93, + "content": "\\mathbf { x } _ { 1 } = f ( \\mathbf { v } _ { 1 } , \\mathbf { c } )", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 536, + 282, + 550 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 282, + 536, + 340, + 549 + ], + "score": 0.93, + "content": "\\mathbf { x } _ { 1 } = f ( \\mathbf { v } _ { 2 } , \\mathbf { c } )", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 536, + 506, + 550 + ], + "score": 1.0, + "content": ". We call this labeling weak, because we", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 547, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 286, + 559 + ], + "score": 1.0, + "content": "do not know the absolute values of either the", + "type": "text" + }, + { + "bbox": [ + 286, + 550, + 294, + 558 + ], + "score": 0.51, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 547, + 475, + 559 + ], + "score": 1.0, + "content": "or c factors or even relative changes between", + "type": "text" + }, + { + "bbox": [ + 475, + 549, + 487, + 558 + ], + "score": 0.86, + "content": "\\mathbf { v } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 547, + 505, + 559 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 558, + 392, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 118, + 569 + ], + "score": 0.82, + "content": "\\mathbf { v } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 558, + 392, + 570 + ], + "score": 1.0, + "content": ". All we know is that the image pairs share the same common factor.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36.5, + "bbox_fs": [ + 104, + 502, + 506, + 570 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 574, + 505, + 630 + ], + "lines": [ + { + "bbox": [ + 106, + 575, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 505, + 587 + ], + "score": 1.0, + "content": "The encoder. Let Enc be the encoder mapping images to features. For simplicity, we consider", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 586, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 290, + 599 + ], + "score": 1.0, + "content": "features split into only two column subvectors,", + "type": "text" + }, + { + "bbox": [ + 291, + 587, + 305, + 597 + ], + "score": 0.89, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 586, + 322, + 599 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 323, + 586, + 336, + 597 + ], + "score": 0.89, + "content": "N _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 586, + 480, + 599 + ], + "score": 1.0, + "content": ", one associated to the varying factor", + "type": "text" + }, + { + "bbox": [ + 480, + 588, + 487, + 596 + ], + "score": 0.48, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 586, + 506, + 599 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 596, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 363, + 610 + ], + "score": 1.0, + "content": "the other associated to the common factor c. Then, we have that", + "type": "text" + }, + { + "bbox": [ + 363, + 597, + 470, + 609 + ], + "score": 0.9, + "content": "\\mathrm { E n c } ( \\mathbf { x } ) = [ N _ { \\mathbf { v } } ( \\mathbf { x } ) , \\bar { N _ { \\mathbf { c } } } ( \\mathbf { x } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 596, + 506, + 610 + ], + "score": 1.0, + "content": ". Ideally,", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 104, + 606, + 506, + 622 + ], + "spans": [ + { + "bbox": [ + 104, + 606, + 369, + 622 + ], + "score": 1.0, + "content": "we would like to find the inverse of the image formation function,", + "type": "text" + }, + { + "bbox": [ + 370, + 609, + 435, + 620 + ], + "score": 0.92, + "content": "[ N _ { \\bf v } , N _ { \\bf c } ] = f ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 606, + 506, + 622 + ], + "score": 1.0, + "content": ", which separates", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 617, + 340, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 203, + 632 + ], + "score": 1.0, + "content": "and recovers the factors", + "type": "text" + }, + { + "bbox": [ + 204, + 621, + 211, + 629 + ], + "score": 0.7, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 617, + 229, + 632 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 229, + 621, + 236, + 629 + ], + "score": 0.4, + "content": "\\mathbf { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 617, + 312, + 632 + ], + "score": 1.0, + "content": "from data samples", + "type": "text" + }, + { + "bbox": [ + 312, + 621, + 319, + 629 + ], + "score": 0.66, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 617, + 340, + 632 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42, + "bbox_fs": [ + 104, + 575, + 506, + 632 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 224, + 635, + 387, + 649 + ], + "lines": [ + { + "bbox": [ + 224, + 635, + 387, + 649 + ], + "spans": [ + { + "bbox": [ + 224, + 635, + 387, + 649 + ], + "score": 0.91, + "content": "N _ { \\mathbf { v } } ( f ( \\mathbf { v } , \\mathbf { c } ) ) = \\mathbf { v } \\qquad N _ { \\mathbf { c } } ( f ( \\mathbf { v } , \\mathbf { c } ) ) = \\mathbf { c } .", + "type": "interline_equation", + "image_path": "f05d5a8c8d2a1d069976f7a15f58c01103a8388f9b9b200d56c1872194d14df2.jpg" + } + ] + } + ], + "index": 45, + "virtual_lines": [ + { + "bbox": [ + 224, + 635, + 387, + 649 + ], + "spans": [], + "index": 45 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 653, + 505, + 687 + ], + "lines": [ + { + "bbox": [ + 105, + 652, + 504, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 652, + 384, + 667 + ], + "score": 1.0, + "content": "In practice, this is not possible because any bijective transformation of", + "type": "text" + }, + { + "bbox": [ + 384, + 655, + 392, + 663 + ], + "score": 0.71, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 652, + 497, + 667 + ], + "score": 1.0, + "content": "and c could be undone by", + "type": "text" + }, + { + "bbox": [ + 497, + 654, + 504, + 665 + ], + "score": 0.82, + "content": "f", + "type": "inline_equation" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 663, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 223, + 677 + ], + "score": 1.0, + "content": "and produce the same output", + "type": "text" + }, + { + "bbox": [ + 224, + 666, + 231, + 674 + ], + "score": 0.68, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 663, + 325, + 677 + ], + "score": 1.0, + "content": ". Therefore, we aim for", + "type": "text" + }, + { + "bbox": [ + 325, + 665, + 340, + 675 + ], + "score": 0.9, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 663, + 358, + 677 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 358, + 665, + 372, + 675 + ], + "score": 0.89, + "content": "N _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 663, + 505, + 677 + ], + "score": 1.0, + "content": "that satisfy the following feature", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 674, + 206, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 674, + 206, + 689 + ], + "score": 1.0, + "content": "disentangling properties", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 47, + "bbox_fs": [ + 105, + 652, + 505, + 689 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 691, + 406, + 705 + ], + "lines": [ + { + "bbox": [ + 205, + 691, + 406, + 705 + ], + "spans": [ + { + "bbox": [ + 205, + 691, + 406, + 705 + ], + "score": 0.89, + "content": "R _ { \\mathbf { v } } ( N _ { \\mathbf { v } } ( f ( \\mathbf { v } , \\mathbf { c } ) ) ) = \\mathbf { v } \\qquad R _ { \\mathbf { c } } ( N _ { \\mathbf { c } } ( f ( \\mathbf { v } , \\mathbf { c } ) ) ) = \\mathbf { c }", + "type": "interline_equation", + "image_path": "229e09169a1617310ada564c46542252b122f24e4909b120d447fffe62bf8b90.jpg" + } + ] + } + ], + "index": 49, + "virtual_lines": [ + { + "bbox": [ + 205, + 691, + 406, + 705 + ], + "spans": [], + "index": 49 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 135, + 722 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 135, + 711, + 154, + 720 + ], + "score": 0.33, + "content": "\\mathbf { v } , \\mathbf { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 709, + 294, + 722 + ], + "score": 1.0, + "content": ", and for some bijective functions", + "type": "text" + }, + { + "bbox": [ + 295, + 710, + 309, + 721 + ], + "score": 0.89, + "content": "R _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 709, + 329, + 722 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 329, + 710, + 342, + 721 + ], + "score": 0.89, + "content": "R _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 709, + 378, + 722 + ], + "score": 1.0, + "content": ", so that", + "type": "text" + }, + { + "bbox": [ + 378, + 710, + 392, + 721 + ], + "score": 0.9, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 709, + 453, + 722 + ], + "score": 1.0, + "content": "is invariant to", + "type": "text" + }, + { + "bbox": [ + 454, + 712, + 460, + 720 + ], + "score": 0.6, + "content": "\\mathbf { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 709, + 480, + 722 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 480, + 710, + 494, + 721 + ], + "score": 0.88, + "content": "N _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 720, + 165, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 154, + 732 + ], + "score": 1.0, + "content": "invariant to", + "type": "text" + }, + { + "bbox": [ + 154, + 722, + 161, + 730 + ], + "score": 0.69, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 720, + 165, + 732 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 50.5, + "bbox_fs": [ + 105, + 709, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "The decoder. Let Dec be the decoder mapping features to images. The sequence encoder-decoder is", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 265, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 265, + 106 + ], + "score": 1.0, + "content": "constrained to form an autoencoder, so", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 234, + 108, + 377, + 122 + ], + "lines": [ + { + "bbox": [ + 234, + 108, + 377, + 122 + ], + "spans": [ + { + "bbox": [ + 234, + 108, + 377, + 122 + ], + "score": 0.92, + "content": "\\mathrm { D e c } ( N _ { \\mathbf { v } } ( { \\mathbf { x } } ) , N _ { \\mathbf { c } } ( { \\mathbf { x } } ) ) = { \\mathbf { x } } , \\qquad \\forall { \\mathbf { x } } .", + "type": "interline_equation", + "image_path": "bf06ce5db3f7455eea29b0e5dcee4161bdc1360ef3b9becbb352a1a666eb8a8d.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 234, + 108, + 377, + 122 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 126, + 504, + 148 + ], + "lines": [ + { + "bbox": [ + 105, + 125, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 505, + 138 + ], + "score": 1.0, + "content": "To use the decoder for image synthesis, so that each input subvector affects only one factor in the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 135, + 429, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 135, + 429, + 150 + ], + "score": 1.0, + "content": "rendered image, the ideal decoder should satisfy the data disentangling property", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 151, + 406, + 165 + ], + "lines": [ + { + "bbox": [ + 205, + 151, + 406, + 165 + ], + "spans": [ + { + "bbox": [ + 205, + 151, + 406, + 165 + ], + "score": 0.89, + "content": "\\mathrm { D e c } ( N _ { \\mathbf { v } } ( f ( \\mathbf { v } _ { 1 } , \\mathbf { c } _ { 1 } ) ) , N _ { \\mathbf { c } } ( f ( \\mathbf { v } _ { 2 } , \\mathbf { c } _ { 2 } ) ) ) = f ( \\mathbf { v } _ { 1 } , \\mathbf { c } _ { 2 } )", + "type": "interline_equation", + "image_path": "917cc8fd290a28a204e30435cdee2a4200eedc267530b0945e3be26d05c615eb.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 205, + 151, + 406, + 165 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 168, + 503, + 192 + ], + "lines": [ + { + "bbox": [ + 105, + 167, + 504, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 137, + 182 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 138, + 171, + 179, + 180 + ], + "score": 0.28, + "content": "\\mathbf { v } _ { 1 } , \\mathbf { v } _ { 2 } , \\mathbf { c } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 167, + 200, + 182 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 200, + 170, + 211, + 180 + ], + "score": 0.84, + "content": "\\mathbf { c } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 167, + 469, + 182 + ], + "score": 1.0, + "content": ". The equation above describes the transfer of the varying factor", + "type": "text" + }, + { + "bbox": [ + 469, + 171, + 480, + 180 + ], + "score": 0.85, + "content": "\\mathbf { v } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 167, + 492, + 182 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 493, + 171, + 504, + 180 + ], + "score": 0.83, + "content": "\\mathbf { x } _ { 1 }", + "type": "inline_equation" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 179, + 378, + 193 + ], + "spans": [ + { + "bbox": [ + 105, + 179, + 201, + 193 + ], + "score": 1.0, + "content": "and the common factor", + "type": "text" + }, + { + "bbox": [ + 201, + 181, + 212, + 191 + ], + "score": 0.86, + "content": "\\mathbf { c } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 179, + 223, + 193 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 224, + 181, + 236, + 191 + ], + "score": 0.87, + "content": "\\mathbf { x } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 179, + 299, + 193 + ], + "score": 1.0, + "content": "to a new image", + "type": "text" + }, + { + "bbox": [ + 300, + 179, + 373, + 192 + ], + "score": 0.92, + "content": "{ \\bf x } _ { 1 \\oplus 2 } = f ( { \\bf v } _ { 1 } , { \\bf c } _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 179, + 378, + 193 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 106, + 196, + 505, + 252 + ], + "lines": [ + { + "bbox": [ + 106, + 196, + 505, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 505, + 208 + ], + "score": 1.0, + "content": "In the next section we describe our training method for disentangling. We introduce a novel adversarial", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 206, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 206, + 505, + 221 + ], + "score": 1.0, + "content": "term, that does not need to be conditioned on the common factor, rather it uses only image pairs, that", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 218, + 505, + 231 + ], + "spans": [ + { + "bbox": [ + 105, + 218, + 505, + 231 + ], + "score": 1.0, + "content": "keeps the model parameters constant. Then we address the two main challenges of disentangling, the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 228, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 228, + 505, + 243 + ], + "score": 1.0, + "content": "shortcut problem and the reference ambiguity. We discuss which disentanglement properties can be", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 240, + 285, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 285, + 253 + ], + "score": 1.0, + "content": "(provably) achieved by our (or any) method.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10 + }, + { + "type": "title", + "bbox": [ + 107, + 265, + 209, + 276 + ], + "lines": [ + { + "bbox": [ + 105, + 264, + 210, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 210, + 278 + ], + "score": 1.0, + "content": "3.1 MODEL TRAINING", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 285, + 505, + 329 + ], + "lines": [ + { + "bbox": [ + 106, + 286, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 106, + 286, + 505, + 298 + ], + "score": 1.0, + "content": "In our training procedure we use two terms in the objective function: an autoencoder loss and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 296, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 505, + 308 + ], + "score": 1.0, + "content": "an adversarial loss. We describe these losses in functional form, however the components are", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 308, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 505, + 320 + ], + "score": 1.0, + "content": "implemented using neural networks. In all our terms we use the following sampling of independent", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 318, + 137, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 137, + 330 + ], + "score": 1.0, + "content": "factors", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5 + }, + { + "type": "interline_equation", + "bbox": [ + 240, + 336, + 371, + 347 + ], + "lines": [ + { + "bbox": [ + 240, + 336, + 371, + 347 + ], + "spans": [ + { + "bbox": [ + 240, + 336, + 371, + 347 + ], + "score": 0.88, + "content": "\\mathbf { c } _ { 1 } , \\mathbf { c } _ { 3 } \\sim p _ { \\mathbf { c } } , \\quad \\mathbf { v } _ { 1 } , \\mathbf { v } _ { 2 } , \\mathbf { v } _ { 3 } \\sim p _ { \\mathbf { v } } .", + "type": "interline_equation", + "image_path": "8cf7d20c2f999ca2f57e5412d13d36f48a19c78074f065d60b49938e9aa5cb05.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 240, + 336, + 371, + 347 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 350, + 506, + 384 + ], + "lines": [ + { + "bbox": [ + 105, + 349, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 211, + 363 + ], + "score": 1.0, + "content": "The images are formed as", + "type": "text" + }, + { + "bbox": [ + 211, + 350, + 274, + 362 + ], + "score": 0.87, + "content": "\\mathbf { x } _ { 1 } = f ( \\mathbf { v } _ { 1 } , \\mathbf { c } _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 349, + 278, + 363 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 278, + 350, + 341, + 362 + ], + "score": 0.91, + "content": "\\mathbf { x } _ { 2 } = f ( \\mathbf { v } _ { 2 } , \\mathbf { c } _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 349, + 359, + 363 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 360, + 350, + 422, + 362 + ], + "score": 0.93, + "content": "\\mathbf { x } _ { 3 } = f ( \\mathbf { v } _ { 3 } , \\mathbf { c } _ { 3 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 349, + 475, + 363 + ], + "score": 1.0, + "content": ". The images", + "type": "text" + }, + { + "bbox": [ + 475, + 352, + 487, + 361 + ], + "score": 0.84, + "content": "\\mathbf { x } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 349, + 506, + 363 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 361, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 118, + 372 + ], + "score": 0.82, + "content": "\\mathbf { x } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 361, + 259, + 374 + ], + "score": 1.0, + "content": "share the same common factor, and", + "type": "text" + }, + { + "bbox": [ + 260, + 363, + 272, + 372 + ], + "score": 0.86, + "content": "\\mathbf { x } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 361, + 289, + 374 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 289, + 363, + 301, + 372 + ], + "score": 0.87, + "content": "\\mathbf { x } _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 361, + 505, + 374 + ], + "score": 1.0, + "content": "are independent. In our objective functions, we use", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 371, + 280, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 280, + 386 + ], + "score": 1.0, + "content": "either pairs or triplets of the above images.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 389, + 505, + 433 + ], + "lines": [ + { + "bbox": [ + 105, + 389, + 506, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 304, + 402 + ], + "score": 1.0, + "content": "Autoencoder loss. In this term, we use images", + "type": "text" + }, + { + "bbox": [ + 304, + 391, + 316, + 400 + ], + "score": 0.85, + "content": "\\mathbf { x } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 389, + 335, + 402 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 335, + 391, + 347, + 400 + ], + "score": 0.87, + "content": "\\mathbf { x } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 389, + 473, + 402 + ], + "score": 1.0, + "content": "with the same common factor", + "type": "text" + }, + { + "bbox": [ + 473, + 391, + 483, + 400 + ], + "score": 0.84, + "content": "\\mathbf { c } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 389, + 506, + 402 + ], + "score": 1.0, + "content": ". We", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 399, + 506, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 378, + 412 + ], + "score": 1.0, + "content": "feed both images to the encoder. Since both images share the same", + "type": "text" + }, + { + "bbox": [ + 378, + 402, + 388, + 411 + ], + "score": 0.86, + "content": "\\mathbf { c } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 399, + 506, + 412 + ], + "score": 1.0, + "content": ", we impose that the decoder", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 411, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 183, + 423 + ], + "score": 1.0, + "content": "should reconstruct", + "type": "text" + }, + { + "bbox": [ + 183, + 412, + 195, + 422 + ], + "score": 0.86, + "content": "\\mathbf { x } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 411, + 309, + 423 + ], + "score": 1.0, + "content": "from the encoder subvector", + "type": "text" + }, + { + "bbox": [ + 310, + 411, + 342, + 423 + ], + "score": 0.93, + "content": "N _ { \\mathbf { v } } ( \\mathbf { x } _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 411, + 452, + 423 + ], + "score": 1.0, + "content": "and the encoder subvector", + "type": "text" + }, + { + "bbox": [ + 452, + 411, + 484, + 423 + ], + "score": 0.92, + "content": "N _ { \\mathbf { c } } ( \\mathbf { x } _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 411, + 505, + 423 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 423, + 438, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 243, + 434 + ], + "score": 1.0, + "content": "similarly for the reconstruction of", + "type": "text" + }, + { + "bbox": [ + 244, + 423, + 255, + 433 + ], + "score": 0.85, + "content": "\\mathbf { x } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 423, + 438, + 434 + ], + "score": 1.0, + "content": ". The autoencoder objective is thus defined as", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5 + }, + { + "type": "interline_equation", + "bbox": [ + 137, + 437, + 474, + 458 + ], + "lines": [ + { + "bbox": [ + 137, + 437, + 474, + 458 + ], + "spans": [ + { + "bbox": [ + 137, + 437, + 474, + 458 + ], + "score": 0.91, + "content": "\\mathcal { L } _ { A E } \\doteq E _ { \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } } \\left[ \\left| \\mathbf { x } _ { 1 } - \\mathrm { D e c } ( N _ { \\mathbf { v } } ( \\mathbf { x } _ { 1 } ) , N _ { \\mathbf { c } } ( \\mathbf { x } _ { 2 } ) ) \\right| ^ { 2 } + \\left| \\mathbf { x } _ { 2 } - \\mathrm { D e c } ( N _ { \\mathbf { v } } ( \\mathbf { x } _ { 2 } ) , N _ { \\mathbf { c } } ( \\mathbf { x } _ { 1 } ) ) \\right| ^ { 2 } \\right] .", + "type": "interline_equation", + "image_path": "d198eac559418e416a222cd5c4ae34b398fd38aa7b97356827fd1a0c9091aea2.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 137, + 437, + 474, + 458 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 466, + 505, + 555 + ], + "lines": [ + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "score": 1.0, + "content": "Adversarial loss. We introduce an adversarial training where the generator is our encoder-decoder", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 478, + 506, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 506, + 490 + ], + "score": 1.0, + "content": "pair and the discriminator Dsc is a neural network, which takes image pairs as input. The discriminator", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 488, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 300, + 502 + ], + "score": 1.0, + "content": "learns to distinguish between real image pairs", + "type": "text" + }, + { + "bbox": [ + 300, + 489, + 332, + 501 + ], + "score": 0.93, + "content": "[ \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 488, + 395, + 502 + ], + "score": 1.0, + "content": "and fake ones", + "type": "text" + }, + { + "bbox": [ + 395, + 489, + 437, + 501 + ], + "score": 0.93, + "content": "[ \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 3 \\oplus 1 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 488, + 469, + 502 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 469, + 489, + 505, + 501 + ], + "score": 0.88, + "content": "\\mathbf { x } _ { 3 \\oplus 1 } \\doteq", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 198, + 512 + ], + "score": 0.9, + "content": "\\mathrm { D e c } ( N _ { \\mathbf { v } } ( \\mathbf { x } _ { 3 } ) , N _ { \\mathbf { c } } ( \\mathbf { x } _ { 1 } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 500, + 349, + 513 + ], + "score": 1.0, + "content": ". If the encoder were ideal, the image", + "type": "text" + }, + { + "bbox": [ + 349, + 502, + 371, + 512 + ], + "score": 0.88, + "content": "\\mathbf { x } _ { \\mathrm { 3 \\oplus 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "would be the result of taking the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 511, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 189, + 523 + ], + "score": 1.0, + "content": "common factor from", + "type": "text" + }, + { + "bbox": [ + 189, + 513, + 200, + 522 + ], + "score": 0.84, + "content": "\\mathbf { x } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 511, + 309, + 523 + ], + "score": 1.0, + "content": "and the varying factor from", + "type": "text" + }, + { + "bbox": [ + 310, + 512, + 321, + 522 + ], + "score": 0.88, + "content": "\\mathbf { x } _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 511, + 506, + 523 + ], + "score": 1.0, + "content": ". The generator learns to fool the discriminator,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 522, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 136, + 534 + ], + "score": 1.0, + "content": "so that", + "type": "text" + }, + { + "bbox": [ + 136, + 523, + 158, + 534 + ], + "score": 0.89, + "content": "\\mathbf { x } _ { 3 \\oplus 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 522, + 285, + 534 + ], + "score": 1.0, + "content": "looks like the random variable", + "type": "text" + }, + { + "bbox": [ + 285, + 523, + 298, + 533 + ], + "score": 0.85, + "content": "\\mathbf { x } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 522, + 391, + 534 + ], + "score": 1.0, + "content": "(the common factor is", + "type": "text" + }, + { + "bbox": [ + 391, + 523, + 402, + 533 + ], + "score": 0.85, + "content": "\\mathbf { c } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 522, + 506, + 534 + ], + "score": 1.0, + "content": "and the varying factor is", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 532, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 168, + 546 + ], + "score": 1.0, + "content": "independent of", + "type": "text" + }, + { + "bbox": [ + 168, + 534, + 180, + 544 + ], + "score": 0.85, + "content": "\\mathbf { v } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 532, + 375, + 546 + ], + "score": 1.0, + "content": "). To this purpose, the decoder must make use of", + "type": "text" + }, + { + "bbox": [ + 375, + 533, + 406, + 545 + ], + "score": 0.92, + "content": "N _ { \\mathbf { c } } ( \\mathbf { x } _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 532, + 433, + 546 + ], + "score": 1.0, + "content": ", since", + "type": "text" + }, + { + "bbox": [ + 433, + 534, + 445, + 544 + ], + "score": 0.85, + "content": "\\mathbf { x } _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 532, + 505, + 546 + ], + "score": 1.0, + "content": "does not carry", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 544, + 376, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 544, + 197, + 555 + ], + "score": 1.0, + "content": "any information about", + "type": "text" + }, + { + "bbox": [ + 197, + 545, + 208, + 555 + ], + "score": 0.86, + "content": "\\mathbf { c } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 544, + 376, + 555 + ], + "score": 1.0, + "content": ". The objective function is thus defined as", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30.5 + }, + { + "type": "interline_equation", + "bbox": [ + 155, + 558, + 456, + 580 + ], + "lines": [ + { + "bbox": [ + 155, + 558, + 456, + 580 + ], + "spans": [ + { + "bbox": [ + 155, + 558, + 456, + 580 + ], + "score": 0.92, + "content": "\\mathcal { L } _ { G A N } \\doteq E _ { \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } } \\Big [ \\log ( \\mathrm { D s c } ( \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } ) ) \\Big ] + E _ { \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 3 } } \\Big [ \\log ( 1 - \\mathrm { D s c } ( \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 3 \\oplus 1 } ) ) \\Big ] .", + "type": "interline_equation", + "image_path": "0254827e2494ad8529a8f04663895c6a092faf37fe1509920e8ab46b652ebb25.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 155, + 558, + 456, + 580 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 588, + 492, + 601 + ], + "lines": [ + { + "bbox": [ + 106, + 586, + 489, + 604 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 404, + 604 + ], + "score": 1.0, + "content": "Composite loss. Finally, we optimize the weighted sum of the two losses", + "type": "text" + }, + { + "bbox": [ + 405, + 589, + 489, + 600 + ], + "score": 0.89, + "content": "\\mathcal { L } = \\mathcal { L } _ { A E } + \\lambda \\mathcal { L } _ { G A N }", + "type": "inline_equation" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "interline_equation", + "bbox": [ + 195, + 604, + 416, + 622 + ], + "lines": [ + { + "bbox": [ + 195, + 604, + 416, + 622 + ], + "spans": [ + { + "bbox": [ + 195, + 604, + 416, + 622 + ], + "score": 0.87, + "content": "\\operatorname* { m i n } _ { \\mathrm { D e c , E n c } } \\operatorname* { m a x } _ { \\mathrm { D s c } } \\mathcal { L } _ { A E } ( \\mathrm { D e c , E n c } ) + \\lambda \\mathcal { L } _ { G A N } ( \\mathrm { D e c , E n c , D s c } )", + "type": "interline_equation", + "image_path": "522327b33c38fe4c3ca69b99c16c2158b35bd3c55f4562d00489d3bde72d2042.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 195, + 604, + 416, + 622 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 626, + 344, + 638 + ], + "lines": [ + { + "bbox": [ + 106, + 626, + 345, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 133, + 639 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 627, + 140, + 636 + ], + "score": 0.77, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 626, + 345, + 639 + ], + "score": 1.0, + "content": "regulates the relative importance of the two losses.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "title", + "bbox": [ + 108, + 651, + 224, + 663 + ], + "lines": [ + { + "bbox": [ + 105, + 651, + 226, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 226, + 664 + ], + "score": 1.0, + "content": "3.2 SHORTCUT PROBLEM.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 106, + 671, + 505, + 716 + ], + "lines": [ + { + "bbox": [ + 105, + 671, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 243, + 685 + ], + "score": 1.0, + "content": "Ideally, at the global minimum of", + "type": "text" + }, + { + "bbox": [ + 243, + 672, + 264, + 683 + ], + "score": 0.87, + "content": "\\mathcal { L } _ { A E }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 671, + 267, + 685 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 268, + 672, + 282, + 683 + ], + "score": 0.84, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 671, + 383, + 685 + ], + "score": 1.0, + "content": "relates only to the factor", + "type": "text" + }, + { + "bbox": [ + 384, + 674, + 391, + 682 + ], + "score": 0.62, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 671, + 409, + 685 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 409, + 672, + 423, + 683 + ], + "score": 0.88, + "content": "N _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 671, + 506, + 685 + ], + "score": 1.0, + "content": "only to c. However,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 682, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 355, + 695 + ], + "score": 1.0, + "content": "the encoder may map a complete description of its input into", + "type": "text" + }, + { + "bbox": [ + 355, + 683, + 370, + 694 + ], + "score": 0.89, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 682, + 505, + 695 + ], + "score": 1.0, + "content": "and the decoder may completely", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 694, + 506, + 707 + ], + "spans": [ + { + "bbox": [ + 105, + 694, + 135, + 707 + ], + "score": 1.0, + "content": "ignore", + "type": "text" + }, + { + "bbox": [ + 136, + 694, + 149, + 705 + ], + "score": 0.88, + "content": "N _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 694, + 506, + 707 + ], + "score": 1.0, + "content": ". We call this challenge the shortcut problem. When the shortcut problem occurs, the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 704, + 441, + 717 + ], + "spans": [ + { + "bbox": [ + 105, + 704, + 367, + 717 + ], + "score": 1.0, + "content": "decoder is invariant to its second input, so it does not transfer the", + "type": "text" + }, + { + "bbox": [ + 368, + 707, + 374, + 714 + ], + "score": 0.41, + "content": "\\mathbf { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 704, + 441, + 717 + ], + "score": 1.0, + "content": "factor correctly,", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41.5 + }, + { + "type": "interline_equation", + "bbox": [ + 235, + 719, + 355, + 733 + ], + "lines": [ + { + "bbox": [ + 235, + 719, + 355, + 733 + ], + "spans": [ + { + "bbox": [ + 235, + 719, + 355, + 733 + ], + "score": 0.92, + "content": "\\mathrm { D e c } ( N _ { \\mathbf { v } } ( { \\mathbf { x } } _ { 3 } ) , N _ { \\mathbf { c } } ( { \\mathbf { x } } _ { 1 } ) ) = { \\mathbf { x } } _ { 3 } .", + "type": "interline_equation", + "image_path": "7d0078287b4a15239b3b5a8df7d67055394d89138ef884e274c71c9292c0de05.jpg" + } + ] + } + ], + "index": 44, + "virtual_lines": [ + { + "bbox": [ + 235, + 719, + 355, + 733 + ], + "spans": [], + "index": 44 + } + ] + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 308, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 309, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 309, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2018", + "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, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "The decoder. Let Dec be the decoder mapping features to images. The sequence encoder-decoder is", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 265, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 265, + 106 + ], + "score": 1.0, + "content": "constrained to form an autoencoder, so", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 505, + 106 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 234, + 108, + 377, + 122 + ], + "lines": [ + { + "bbox": [ + 234, + 108, + 377, + 122 + ], + "spans": [ + { + "bbox": [ + 234, + 108, + 377, + 122 + ], + "score": 0.92, + "content": "\\mathrm { D e c } ( N _ { \\mathbf { v } } ( { \\mathbf { x } } ) , N _ { \\mathbf { c } } ( { \\mathbf { x } } ) ) = { \\mathbf { x } } , \\qquad \\forall { \\mathbf { x } } .", + "type": "interline_equation", + "image_path": "bf06ce5db3f7455eea29b0e5dcee4161bdc1360ef3b9becbb352a1a666eb8a8d.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 234, + 108, + 377, + 122 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 126, + 504, + 148 + ], + "lines": [ + { + "bbox": [ + 105, + 125, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 505, + 138 + ], + "score": 1.0, + "content": "To use the decoder for image synthesis, so that each input subvector affects only one factor in the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 135, + 429, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 135, + 429, + 150 + ], + "score": 1.0, + "content": "rendered image, the ideal decoder should satisfy the data disentangling property", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 125, + 505, + 150 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 151, + 406, + 165 + ], + "lines": [ + { + "bbox": [ + 205, + 151, + 406, + 165 + ], + "spans": [ + { + "bbox": [ + 205, + 151, + 406, + 165 + ], + "score": 0.89, + "content": "\\mathrm { D e c } ( N _ { \\mathbf { v } } ( f ( \\mathbf { v } _ { 1 } , \\mathbf { c } _ { 1 } ) ) , N _ { \\mathbf { c } } ( f ( \\mathbf { v } _ { 2 } , \\mathbf { c } _ { 2 } ) ) ) = f ( \\mathbf { v } _ { 1 } , \\mathbf { c } _ { 2 } )", + "type": "interline_equation", + "image_path": "917cc8fd290a28a204e30435cdee2a4200eedc267530b0945e3be26d05c615eb.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 205, + 151, + 406, + 165 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 168, + 503, + 192 + ], + "lines": [ + { + "bbox": [ + 105, + 167, + 504, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 137, + 182 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 138, + 171, + 179, + 180 + ], + "score": 0.28, + "content": "\\mathbf { v } _ { 1 } , \\mathbf { v } _ { 2 } , \\mathbf { c } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 167, + 200, + 182 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 200, + 170, + 211, + 180 + ], + "score": 0.84, + "content": "\\mathbf { c } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 167, + 469, + 182 + ], + "score": 1.0, + "content": ". The equation above describes the transfer of the varying factor", + "type": "text" + }, + { + "bbox": [ + 469, + 171, + 480, + 180 + ], + "score": 0.85, + "content": "\\mathbf { v } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 167, + 492, + 182 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 493, + 171, + 504, + 180 + ], + "score": 0.83, + "content": "\\mathbf { x } _ { 1 }", + "type": "inline_equation" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 179, + 378, + 193 + ], + "spans": [ + { + "bbox": [ + 105, + 179, + 201, + 193 + ], + "score": 1.0, + "content": "and the common factor", + "type": "text" + }, + { + "bbox": [ + 201, + 181, + 212, + 191 + ], + "score": 0.86, + "content": "\\mathbf { c } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 179, + 223, + 193 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 224, + 181, + 236, + 191 + ], + "score": 0.87, + "content": "\\mathbf { x } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 179, + 299, + 193 + ], + "score": 1.0, + "content": "to a new image", + "type": "text" + }, + { + "bbox": [ + 300, + 179, + 373, + 192 + ], + "score": 0.92, + "content": "{ \\bf x } _ { 1 \\oplus 2 } = f ( { \\bf v } _ { 1 } , { \\bf c } _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 179, + 378, + 193 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 167, + 504, + 193 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 196, + 505, + 252 + ], + "lines": [ + { + "bbox": [ + 106, + 196, + 505, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 505, + 208 + ], + "score": 1.0, + "content": "In the next section we describe our training method for disentangling. We introduce a novel adversarial", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 206, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 206, + 505, + 221 + ], + "score": 1.0, + "content": "term, that does not need to be conditioned on the common factor, rather it uses only image pairs, that", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 218, + 505, + 231 + ], + "spans": [ + { + "bbox": [ + 105, + 218, + 505, + 231 + ], + "score": 1.0, + "content": "keeps the model parameters constant. Then we address the two main challenges of disentangling, the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 228, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 228, + 505, + 243 + ], + "score": 1.0, + "content": "shortcut problem and the reference ambiguity. We discuss which disentanglement properties can be", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 240, + 285, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 285, + 253 + ], + "score": 1.0, + "content": "(provably) achieved by our (or any) method.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 196, + 505, + 253 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 265, + 209, + 276 + ], + "lines": [ + { + "bbox": [ + 105, + 264, + 210, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 210, + 278 + ], + "score": 1.0, + "content": "3.1 MODEL TRAINING", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 285, + 505, + 329 + ], + "lines": [ + { + "bbox": [ + 106, + 286, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 106, + 286, + 505, + 298 + ], + "score": 1.0, + "content": "In our training procedure we use two terms in the objective function: an autoencoder loss and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 296, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 505, + 308 + ], + "score": 1.0, + "content": "an adversarial loss. We describe these losses in functional form, however the components are", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 308, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 505, + 320 + ], + "score": 1.0, + "content": "implemented using neural networks. In all our terms we use the following sampling of independent", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 318, + 137, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 137, + 330 + ], + "score": 1.0, + "content": "factors", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 286, + 505, + 330 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 240, + 336, + 371, + 347 + ], + "lines": [ + { + "bbox": [ + 240, + 336, + 371, + 347 + ], + "spans": [ + { + "bbox": [ + 240, + 336, + 371, + 347 + ], + "score": 0.88, + "content": "\\mathbf { c } _ { 1 } , \\mathbf { c } _ { 3 } \\sim p _ { \\mathbf { c } } , \\quad \\mathbf { v } _ { 1 } , \\mathbf { v } _ { 2 } , \\mathbf { v } _ { 3 } \\sim p _ { \\mathbf { v } } .", + "type": "interline_equation", + "image_path": "8cf7d20c2f999ca2f57e5412d13d36f48a19c78074f065d60b49938e9aa5cb05.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 240, + 336, + 371, + 347 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 350, + 506, + 384 + ], + "lines": [ + { + "bbox": [ + 105, + 349, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 211, + 363 + ], + "score": 1.0, + "content": "The images are formed as", + "type": "text" + }, + { + "bbox": [ + 211, + 350, + 274, + 362 + ], + "score": 0.87, + "content": "\\mathbf { x } _ { 1 } = f ( \\mathbf { v } _ { 1 } , \\mathbf { c } _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 349, + 278, + 363 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 278, + 350, + 341, + 362 + ], + "score": 0.91, + "content": "\\mathbf { x } _ { 2 } = f ( \\mathbf { v } _ { 2 } , \\mathbf { c } _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 349, + 359, + 363 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 360, + 350, + 422, + 362 + ], + "score": 0.93, + "content": "\\mathbf { x } _ { 3 } = f ( \\mathbf { v } _ { 3 } , \\mathbf { c } _ { 3 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 349, + 475, + 363 + ], + "score": 1.0, + "content": ". The images", + "type": "text" + }, + { + "bbox": [ + 475, + 352, + 487, + 361 + ], + "score": 0.84, + "content": "\\mathbf { x } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 349, + 506, + 363 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 361, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 118, + 372 + ], + "score": 0.82, + "content": "\\mathbf { x } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 361, + 259, + 374 + ], + "score": 1.0, + "content": "share the same common factor, and", + "type": "text" + }, + { + "bbox": [ + 260, + 363, + 272, + 372 + ], + "score": 0.86, + "content": "\\mathbf { x } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 361, + 289, + 374 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 289, + 363, + 301, + 372 + ], + "score": 0.87, + "content": "\\mathbf { x } _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 361, + 505, + 374 + ], + "score": 1.0, + "content": "are independent. In our objective functions, we use", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 371, + 280, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 280, + 386 + ], + "score": 1.0, + "content": "either pairs or triplets of the above images.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 349, + 506, + 386 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 389, + 505, + 433 + ], + "lines": [ + { + "bbox": [ + 105, + 389, + 506, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 304, + 402 + ], + "score": 1.0, + "content": "Autoencoder loss. In this term, we use images", + "type": "text" + }, + { + "bbox": [ + 304, + 391, + 316, + 400 + ], + "score": 0.85, + "content": "\\mathbf { x } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 389, + 335, + 402 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 335, + 391, + 347, + 400 + ], + "score": 0.87, + "content": "\\mathbf { x } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 389, + 473, + 402 + ], + "score": 1.0, + "content": "with the same common factor", + "type": "text" + }, + { + "bbox": [ + 473, + 391, + 483, + 400 + ], + "score": 0.84, + "content": "\\mathbf { c } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 389, + 506, + 402 + ], + "score": 1.0, + "content": ". We", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 399, + 506, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 378, + 412 + ], + "score": 1.0, + "content": "feed both images to the encoder. Since both images share the same", + "type": "text" + }, + { + "bbox": [ + 378, + 402, + 388, + 411 + ], + "score": 0.86, + "content": "\\mathbf { c } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 399, + 506, + 412 + ], + "score": 1.0, + "content": ", we impose that the decoder", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 411, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 183, + 423 + ], + "score": 1.0, + "content": "should reconstruct", + "type": "text" + }, + { + "bbox": [ + 183, + 412, + 195, + 422 + ], + "score": 0.86, + "content": "\\mathbf { x } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 411, + 309, + 423 + ], + "score": 1.0, + "content": "from the encoder subvector", + "type": "text" + }, + { + "bbox": [ + 310, + 411, + 342, + 423 + ], + "score": 0.93, + "content": "N _ { \\mathbf { v } } ( \\mathbf { x } _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 411, + 452, + 423 + ], + "score": 1.0, + "content": "and the encoder subvector", + "type": "text" + }, + { + "bbox": [ + 452, + 411, + 484, + 423 + ], + "score": 0.92, + "content": "N _ { \\mathbf { c } } ( \\mathbf { x } _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 411, + 505, + 423 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 423, + 438, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 243, + 434 + ], + "score": 1.0, + "content": "similarly for the reconstruction of", + "type": "text" + }, + { + "bbox": [ + 244, + 423, + 255, + 433 + ], + "score": 0.85, + "content": "\\mathbf { x } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 423, + 438, + 434 + ], + "score": 1.0, + "content": ". The autoencoder objective is thus defined as", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 389, + 506, + 434 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 137, + 437, + 474, + 458 + ], + "lines": [ + { + "bbox": [ + 137, + 437, + 474, + 458 + ], + "spans": [ + { + "bbox": [ + 137, + 437, + 474, + 458 + ], + "score": 0.91, + "content": "\\mathcal { L } _ { A E } \\doteq E _ { \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } } \\left[ \\left| \\mathbf { x } _ { 1 } - \\mathrm { D e c } ( N _ { \\mathbf { v } } ( \\mathbf { x } _ { 1 } ) , N _ { \\mathbf { c } } ( \\mathbf { x } _ { 2 } ) ) \\right| ^ { 2 } + \\left| \\mathbf { x } _ { 2 } - \\mathrm { D e c } ( N _ { \\mathbf { v } } ( \\mathbf { x } _ { 2 } ) , N _ { \\mathbf { c } } ( \\mathbf { x } _ { 1 } ) ) \\right| ^ { 2 } \\right] .", + "type": "interline_equation", + "image_path": "d198eac559418e416a222cd5c4ae34b398fd38aa7b97356827fd1a0c9091aea2.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 137, + 437, + 474, + 458 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 466, + 505, + 555 + ], + "lines": [ + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "score": 1.0, + "content": "Adversarial loss. We introduce an adversarial training where the generator is our encoder-decoder", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 478, + 506, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 506, + 490 + ], + "score": 1.0, + "content": "pair and the discriminator Dsc is a neural network, which takes image pairs as input. The discriminator", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 488, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 300, + 502 + ], + "score": 1.0, + "content": "learns to distinguish between real image pairs", + "type": "text" + }, + { + "bbox": [ + 300, + 489, + 332, + 501 + ], + "score": 0.93, + "content": "[ \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 488, + 395, + 502 + ], + "score": 1.0, + "content": "and fake ones", + "type": "text" + }, + { + "bbox": [ + 395, + 489, + 437, + 501 + ], + "score": 0.93, + "content": "[ \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 3 \\oplus 1 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 488, + 469, + 502 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 469, + 489, + 505, + 501 + ], + "score": 0.88, + "content": "\\mathbf { x } _ { 3 \\oplus 1 } \\doteq", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 198, + 512 + ], + "score": 0.9, + "content": "\\mathrm { D e c } ( N _ { \\mathbf { v } } ( \\mathbf { x } _ { 3 } ) , N _ { \\mathbf { c } } ( \\mathbf { x } _ { 1 } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 500, + 349, + 513 + ], + "score": 1.0, + "content": ". If the encoder were ideal, the image", + "type": "text" + }, + { + "bbox": [ + 349, + 502, + 371, + 512 + ], + "score": 0.88, + "content": "\\mathbf { x } _ { \\mathrm { 3 \\oplus 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "would be the result of taking the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 511, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 189, + 523 + ], + "score": 1.0, + "content": "common factor from", + "type": "text" + }, + { + "bbox": [ + 189, + 513, + 200, + 522 + ], + "score": 0.84, + "content": "\\mathbf { x } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 511, + 309, + 523 + ], + "score": 1.0, + "content": "and the varying factor from", + "type": "text" + }, + { + "bbox": [ + 310, + 512, + 321, + 522 + ], + "score": 0.88, + "content": "\\mathbf { x } _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 511, + 506, + 523 + ], + "score": 1.0, + "content": ". The generator learns to fool the discriminator,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 522, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 136, + 534 + ], + "score": 1.0, + "content": "so that", + "type": "text" + }, + { + "bbox": [ + 136, + 523, + 158, + 534 + ], + "score": 0.89, + "content": "\\mathbf { x } _ { 3 \\oplus 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 522, + 285, + 534 + ], + "score": 1.0, + "content": "looks like the random variable", + "type": "text" + }, + { + "bbox": [ + 285, + 523, + 298, + 533 + ], + "score": 0.85, + "content": "\\mathbf { x } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 522, + 391, + 534 + ], + "score": 1.0, + "content": "(the common factor is", + "type": "text" + }, + { + "bbox": [ + 391, + 523, + 402, + 533 + ], + "score": 0.85, + "content": "\\mathbf { c } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 522, + 506, + 534 + ], + "score": 1.0, + "content": "and the varying factor is", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 532, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 168, + 546 + ], + "score": 1.0, + "content": "independent of", + "type": "text" + }, + { + "bbox": [ + 168, + 534, + 180, + 544 + ], + "score": 0.85, + "content": "\\mathbf { v } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 532, + 375, + 546 + ], + "score": 1.0, + "content": "). To this purpose, the decoder must make use of", + "type": "text" + }, + { + "bbox": [ + 375, + 533, + 406, + 545 + ], + "score": 0.92, + "content": "N _ { \\mathbf { c } } ( \\mathbf { x } _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 532, + 433, + 546 + ], + "score": 1.0, + "content": ", since", + "type": "text" + }, + { + "bbox": [ + 433, + 534, + 445, + 544 + ], + "score": 0.85, + "content": "\\mathbf { x } _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 532, + 505, + 546 + ], + "score": 1.0, + "content": "does not carry", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 544, + 376, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 544, + 197, + 555 + ], + "score": 1.0, + "content": "any information about", + "type": "text" + }, + { + "bbox": [ + 197, + 545, + 208, + 555 + ], + "score": 0.86, + "content": "\\mathbf { c } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 544, + 376, + 555 + ], + "score": 1.0, + "content": ". The objective function is thus defined as", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 466, + 506, + 555 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 155, + 558, + 456, + 580 + ], + "lines": [ + { + "bbox": [ + 155, + 558, + 456, + 580 + ], + "spans": [ + { + "bbox": [ + 155, + 558, + 456, + 580 + ], + "score": 0.92, + "content": "\\mathcal { L } _ { G A N } \\doteq E _ { \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } } \\Big [ \\log ( \\mathrm { D s c } ( \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } ) ) \\Big ] + E _ { \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 3 } } \\Big [ \\log ( 1 - \\mathrm { D s c } ( \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 3 \\oplus 1 } ) ) \\Big ] .", + "type": "interline_equation", + "image_path": "0254827e2494ad8529a8f04663895c6a092faf37fe1509920e8ab46b652ebb25.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 155, + 558, + 456, + 580 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 588, + 492, + 601 + ], + "lines": [ + { + "bbox": [ + 106, + 586, + 489, + 604 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 404, + 604 + ], + "score": 1.0, + "content": "Composite loss. Finally, we optimize the weighted sum of the two losses", + "type": "text" + }, + { + "bbox": [ + 405, + 589, + 489, + 600 + ], + "score": 0.89, + "content": "\\mathcal { L } = \\mathcal { L } _ { A E } + \\lambda \\mathcal { L } _ { G A N }", + "type": "inline_equation" + } + ], + "index": 36 + } + ], + "index": 36, + "bbox_fs": [ + 106, + 586, + 489, + 604 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 195, + 604, + 416, + 622 + ], + "lines": [ + { + "bbox": [ + 195, + 604, + 416, + 622 + ], + "spans": [ + { + "bbox": [ + 195, + 604, + 416, + 622 + ], + "score": 0.87, + "content": "\\operatorname* { m i n } _ { \\mathrm { D e c , E n c } } \\operatorname* { m a x } _ { \\mathrm { D s c } } \\mathcal { L } _ { A E } ( \\mathrm { D e c , E n c } ) + \\lambda \\mathcal { L } _ { G A N } ( \\mathrm { D e c , E n c , D s c } )", + "type": "interline_equation", + "image_path": "522327b33c38fe4c3ca69b99c16c2158b35bd3c55f4562d00489d3bde72d2042.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 195, + 604, + 416, + 622 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 626, + 344, + 638 + ], + "lines": [ + { + "bbox": [ + 106, + 626, + 345, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 133, + 639 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 627, + 140, + 636 + ], + "score": 0.77, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 626, + 345, + 639 + ], + "score": 1.0, + "content": "regulates the relative importance of the two losses.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38, + "bbox_fs": [ + 106, + 626, + 345, + 639 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 651, + 224, + 663 + ], + "lines": [ + { + "bbox": [ + 105, + 651, + 226, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 226, + 664 + ], + "score": 1.0, + "content": "3.2 SHORTCUT PROBLEM.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 106, + 671, + 505, + 716 + ], + "lines": [ + { + "bbox": [ + 105, + 671, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 243, + 685 + ], + "score": 1.0, + "content": "Ideally, at the global minimum of", + "type": "text" + }, + { + "bbox": [ + 243, + 672, + 264, + 683 + ], + "score": 0.87, + "content": "\\mathcal { L } _ { A E }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 671, + 267, + 685 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 268, + 672, + 282, + 683 + ], + "score": 0.84, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 671, + 383, + 685 + ], + "score": 1.0, + "content": "relates only to the factor", + "type": "text" + }, + { + "bbox": [ + 384, + 674, + 391, + 682 + ], + "score": 0.62, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 671, + 409, + 685 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 409, + 672, + 423, + 683 + ], + "score": 0.88, + "content": "N _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 671, + 506, + 685 + ], + "score": 1.0, + "content": "only to c. However,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 682, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 355, + 695 + ], + "score": 1.0, + "content": "the encoder may map a complete description of its input into", + "type": "text" + }, + { + "bbox": [ + 355, + 683, + 370, + 694 + ], + "score": 0.89, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 682, + 505, + 695 + ], + "score": 1.0, + "content": "and the decoder may completely", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 694, + 506, + 707 + ], + "spans": [ + { + "bbox": [ + 105, + 694, + 135, + 707 + ], + "score": 1.0, + "content": "ignore", + "type": "text" + }, + { + "bbox": [ + 136, + 694, + 149, + 705 + ], + "score": 0.88, + "content": "N _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 694, + 506, + 707 + ], + "score": 1.0, + "content": ". We call this challenge the shortcut problem. When the shortcut problem occurs, the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 704, + 441, + 717 + ], + "spans": [ + { + "bbox": [ + 105, + 704, + 367, + 717 + ], + "score": 1.0, + "content": "decoder is invariant to its second input, so it does not transfer the", + "type": "text" + }, + { + "bbox": [ + 368, + 707, + 374, + 714 + ], + "score": 0.41, + "content": "\\mathbf { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 704, + 441, + 717 + ], + "score": 1.0, + "content": "factor correctly,", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 671, + 506, + 717 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 235, + 719, + 355, + 733 + ], + "lines": [ + { + "bbox": [ + 235, + 719, + 355, + 733 + ], + "spans": [ + { + "bbox": [ + 235, + 719, + 355, + 733 + ], + "score": 0.92, + "content": "\\mathrm { D e c } ( N _ { \\mathbf { v } } ( { \\mathbf { x } } _ { 3 } ) , N _ { \\mathbf { c } } ( { \\mathbf { x } } _ { 1 } ) ) = { \\mathbf { x } } _ { 3 } .", + "type": "interline_equation", + "image_path": "7d0078287b4a15239b3b5a8df7d67055394d89138ef884e274c71c9292c0de05.jpg" + } + ] + } + ], + "index": 44, + "virtual_lines": [ + { + "bbox": [ + 235, + 719, + 355, + 733 + ], + "spans": [], + "index": 44 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 138 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 407, + 95 + ], + "score": 1.0, + "content": "The shortcut problem can be addressed by reducing the dimensionality of", + "type": "text" + }, + { + "bbox": [ + 407, + 83, + 421, + 93 + ], + "score": 0.89, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 82, + 506, + 95 + ], + "score": 1.0, + "content": ", so it cannot build a", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 107 + ], + "score": 1.0, + "content": "complete representation of all input images. This also forces the encoder and decoder to make use", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 103, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 118, + 118 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 105, + 132, + 115 + ], + "score": 0.89, + "content": "N _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 103, + 505, + 118 + ], + "score": 1.0, + "content": "for the common factor. However, this strategy may not be convenient as it leads to a time", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 504, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 504, + 127 + ], + "score": 1.0, + "content": "consuming trial-and-error procedure to find the correct dimensionality. A better way to address the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 322, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 322, + 140 + ], + "score": 1.0, + "content": "shortcut problem is to use adversarial training (7) (8).", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 106, + 141, + 504, + 175 + ], + "lines": [ + { + "bbox": [ + 106, + 141, + 506, + 154 + ], + "spans": [ + { + "bbox": [ + 106, + 141, + 189, + 154 + ], + "score": 1.0, + "content": "Proposition 1. Let", + "type": "text" + }, + { + "bbox": [ + 189, + 143, + 200, + 152 + ], + "score": 0.8, + "content": "\\mathbf { x } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 141, + 205, + 154 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 206, + 143, + 218, + 152 + ], + "score": 0.7, + "content": "\\mathbf { x } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 141, + 239, + 154 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 239, + 142, + 251, + 152 + ], + "score": 0.74, + "content": "\\mathbf { x } _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 141, + 506, + 154 + ], + "score": 1.0, + "content": "data samples generated according to (5), where the factors", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 107, + 152, + 506, + 165 + ], + "spans": [ + { + "bbox": [ + 107, + 154, + 176, + 164 + ], + "score": 0.88, + "content": "\\mathbf { c } _ { 1 } , \\mathbf { c } _ { 3 } , \\mathbf { v } _ { 1 } , \\mathbf { v } _ { 2 } , \\mathbf { v } _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 152, + 298, + 165 + ], + "score": 1.0, + "content": "are jointly independent, and", + "type": "text" + }, + { + "bbox": [ + 299, + 152, + 426, + 164 + ], + "score": 0.91, + "content": "\\mathbf { x } _ { 3 \\oplus 1 } \\doteq D e c ( N _ { \\mathbf { v } } ( \\mathbf { x } _ { 3 } ) , N _ { \\mathbf { c } } ( \\mathbf { x } _ { 1 } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 152, + 506, + 165 + ], + "score": 1.0, + "content": ". When the global", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 163, + 502, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 163, + 393, + 177 + ], + "score": 1.0, + "content": "optimum of the composite loss (8) is reached, the c factor is transferred to", + "type": "text" + }, + { + "bbox": [ + 394, + 165, + 416, + 175 + ], + "score": 0.87, + "content": "\\mathbf { x } _ { \\mathrm { 3 \\oplus 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 163, + 434, + 177 + ], + "score": 1.0, + "content": ", i.e.", + "type": "text" + }, + { + "bbox": [ + 434, + 163, + 502, + 175 + ], + "score": 0.92, + "content": "f _ { \\mathbf { c } } ^ { - 1 } ( \\mathbf { x } _ { 3 \\oplus 1 } ) = \\mathbf { c } _ { 1 }", + "type": "inline_equation" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 186, + 505, + 221 + ], + "lines": [ + { + "bbox": [ + 105, + 184, + 504, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 394, + 201 + ], + "score": 1.0, + "content": "Proof. When the global optimum of (8) is reached, the distribution of real", + "type": "text" + }, + { + "bbox": [ + 394, + 187, + 426, + 199 + ], + "score": 0.93, + "content": "\\left[ \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 184, + 461, + 201 + ], + "score": 1.0, + "content": "and fake", + "type": "text" + }, + { + "bbox": [ + 462, + 187, + 504, + 199 + ], + "score": 0.92, + "content": "[ \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 3 \\oplus 1 } ]", + "type": "inline_equation" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 198, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 505, + 210 + ], + "score": 1.0, + "content": "image pairs are identical. We compute statistics of the inverse of the rendering engine of the common", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 208, + 347, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 132, + 222 + ], + "score": 1.0, + "content": "factor", + "type": "text" + }, + { + "bbox": [ + 133, + 209, + 150, + 221 + ], + "score": 0.91, + "content": "\\bar { f } _ { \\mathbf { c } } ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 208, + 262, + 222 + ], + "score": 1.0, + "content": "on the data. For the images", + "type": "text" + }, + { + "bbox": [ + 262, + 210, + 273, + 220 + ], + "score": 0.85, + "content": "\\mathbf { x } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 208, + 291, + 222 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 292, + 210, + 304, + 220 + ], + "score": 0.86, + "content": "\\mathbf { x } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 208, + 347, + 222 + ], + "score": 1.0, + "content": "we obtain", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "interline_equation", + "bbox": [ + 190, + 225, + 421, + 247 + ], + "lines": [ + { + "bbox": [ + 190, + 225, + 421, + 247 + ], + "spans": [ + { + "bbox": [ + 190, + 225, + 421, + 247 + ], + "score": 0.92, + "content": "\\begin{array} { r } { { E } _ { \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } } \\Big [ | f _ { \\mathbf { c } } ^ { - 1 } ( \\mathbf { x } _ { 1 } ) - f _ { \\mathbf { c } } ^ { - 1 } ( \\mathbf { x } _ { 2 } ) | ^ { 2 } \\Big ] = { E } _ { \\mathbf { c } _ { 1 } } \\Big [ | \\mathbf { c } _ { 1 } - \\mathbf { c } _ { 1 } | ^ { 2 } \\Big ] = 0 } \\end{array}", + "type": "interline_equation", + "image_path": "d63503b72bdcbc84bb8b5313db9996fceb9c0fa3e4cf33136f2453fd2527a5bc.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 190, + 225, + 421, + 247 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 250, + 390, + 263 + ], + "lines": [ + { + "bbox": [ + 105, + 249, + 390, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 185, + 265 + ], + "score": 1.0, + "content": "by construction (of", + "type": "text" + }, + { + "bbox": [ + 185, + 253, + 196, + 262 + ], + "score": 0.88, + "content": "\\mathbf { x } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 249, + 214, + 265 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 215, + 253, + 226, + 262 + ], + "score": 0.84, + "content": "\\mathbf { x } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 249, + 295, + 265 + ], + "score": 1.0, + "content": "). For the images", + "type": "text" + }, + { + "bbox": [ + 295, + 253, + 307, + 262 + ], + "score": 0.88, + "content": "\\mathbf { x } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 249, + 325, + 265 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 326, + 253, + 347, + 263 + ], + "score": 0.9, + "content": "\\mathbf { x } _ { \\mathrm { 3 \\oplus 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 249, + 390, + 265 + ], + "score": 1.0, + "content": "we obtain", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "interline_equation", + "bbox": [ + 163, + 267, + 447, + 289 + ], + "lines": [ + { + "bbox": [ + 163, + 267, + 447, + 289 + ], + "spans": [ + { + "bbox": [ + 163, + 267, + 447, + 289 + ], + "score": 0.92, + "content": "\\begin{array} { r } { E _ { \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 3 } } \\Big [ | f _ { \\mathbf { c } } ^ { - 1 } ( \\mathbf { x } _ { 1 } ) - f _ { \\mathbf { c } } ^ { - 1 } ( \\mathbf { x } _ { 3 \\oplus 1 } ) | ^ { 2 } \\Big ] = E _ { \\mathbf { v } _ { 1 } , \\mathbf { c } _ { 1 } , \\mathbf { v } _ { 3 } , \\mathbf { c } _ { 3 } } \\Big [ | \\mathbf { c } _ { 1 } - \\mathbf { c } _ { 3 \\oplus 1 } | ^ { 2 } \\Big ] \\geq 0 , } \\end{array}", + "type": "interline_equation", + "image_path": "8ef50f6da86620ea7ff42242fee4dd9d0a38fbc043dc1de97b3292a81bcda76b.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 163, + 267, + 447, + 289 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 294, + 448, + 307 + ], + "lines": [ + { + "bbox": [ + 105, + 293, + 451, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 133, + 309 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 294, + 212, + 307 + ], + "score": 0.93, + "content": "{ \\bf c } _ { 3 \\oplus 1 } = f _ { \\bf c } ^ { - 1 } ( { \\bf x } _ { 3 \\oplus 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 293, + 353, + 309 + ], + "score": 1.0, + "content": ". We achieve equality if and only if", + "type": "text" + }, + { + "bbox": [ + 354, + 296, + 397, + 306 + ], + "score": 0.89, + "content": "\\mathbf { c } _ { 1 } = \\mathbf { c } _ { 3 \\oplus 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 293, + 451, + 309 + ], + "score": 1.0, + "content": "everywhere.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "title", + "bbox": [ + 107, + 319, + 235, + 330 + ], + "lines": [ + { + "bbox": [ + 106, + 319, + 236, + 331 + ], + "spans": [ + { + "bbox": [ + 106, + 319, + 236, + 331 + ], + "score": 1.0, + "content": "3.3 REFERENCE AMBIGUITY", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 339, + 504, + 385 + ], + "lines": [ + { + "bbox": [ + 105, + 340, + 506, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 506, + 352 + ], + "score": 1.0, + "content": "Let us consider the ideal case where we observe the space of all images. When weak labels are made", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 351, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 281, + 363 + ], + "score": 1.0, + "content": "available to us, we also know what images", + "type": "text" + }, + { + "bbox": [ + 281, + 353, + 293, + 362 + ], + "score": 0.85, + "content": "\\mathbf { x } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 351, + 311, + 363 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 312, + 352, + 323, + 362 + ], + "score": 0.85, + "content": "\\mathbf { x } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 351, + 505, + 363 + ], + "score": 1.0, + "content": "share the same c factor (for example, which", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 361, + 504, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 493, + 376 + ], + "score": 1.0, + "content": "images have the same car). This labeling is equivalent to defining the probability density function", + "type": "text" + }, + { + "bbox": [ + 493, + 364, + 504, + 374 + ], + "score": 0.79, + "content": "p _ { \\mathbf { c } }", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 373, + 270, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 206, + 387 + ], + "score": 1.0, + "content": "and the joint conditional", + "type": "text" + }, + { + "bbox": [ + 206, + 374, + 239, + 386 + ], + "score": 0.91, + "content": "\\displaystyle p _ { { \\mathbf { x } } _ { 1 } , { \\mathbf { x } } _ { 2 } | { \\mathbf { c } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 373, + 270, + 387 + ], + "score": 1.0, + "content": ", where", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17.5 + }, + { + "type": "interline_equation", + "bbox": [ + 146, + 390, + 465, + 416 + ], + "lines": [ + { + "bbox": [ + 146, + 390, + 465, + 416 + ], + "spans": [ + { + "bbox": [ + 146, + 390, + 465, + 416 + ], + "score": 0.91, + "content": "p _ { \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } | \\mathbf { c } } ( \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } | \\mathbf { c } ) = \\int \\delta ( \\mathbf { x } _ { 1 } - f ( \\mathbf { v } _ { 1 } , \\mathbf { c } ) ) \\delta ( \\mathbf { x } _ { 2 } - f ( \\mathbf { v } _ { 2 } , \\mathbf { c } ) ) p ( \\mathbf { v } _ { 1 } ) p ( \\mathbf { v } _ { 2 } ) d \\mathbf { v } _ { 1 } d \\mathbf { v } _ { 2 } .", + "type": "interline_equation", + "image_path": "c5c10d21f164dc958f0ae014970750e9436e47bd027d67fbf3d27aa4f8cc5a22.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 146, + 390, + 465, + 416 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 420, + 505, + 510 + ], + "lines": [ + { + "bbox": [ + 105, + 419, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 464, + 434 + ], + "score": 1.0, + "content": "Firstly, we show that the labeling allows us to satisfy the feature disentangling property for", + "type": "text" + }, + { + "bbox": [ + 465, + 423, + 471, + 431 + ], + "score": 0.39, + "content": "\\mathbf { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 419, + 506, + 434 + ], + "score": 1.0, + "content": "(2). For", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 431, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 124, + 446 + ], + "score": 1.0, + "content": "any", + "type": "text" + }, + { + "bbox": [ + 124, + 431, + 201, + 444 + ], + "score": 0.92, + "content": "[ \\mathbf { \\dot { x } } _ { 1 } , \\mathbf { x } _ { 2 } ] \\sim p _ { \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } | \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 431, + 249, + 446 + ], + "score": 1.0, + "content": "we impose", + "type": "text" + }, + { + "bbox": [ + 249, + 431, + 326, + 443 + ], + "score": 0.93, + "content": "N _ { \\mathbf { c } } ( \\mathbf { x } _ { 1 } ) = N _ { \\mathbf { c } } ( \\mathbf { x } _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 431, + 506, + 446 + ], + "score": 1.0, + "content": ". In particular, this equation is true for pairs", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 443, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 347, + 456 + ], + "score": 1.0, + "content": "when one of the two images is held fixed. Thus, a function", + "type": "text" + }, + { + "bbox": [ + 347, + 443, + 412, + 456 + ], + "score": 0.92, + "content": "C ( \\mathbf { c } ) = N _ { \\mathbf { c } } ( \\mathbf { x } _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 444, + 505, + 456 + ], + "score": 1.0, + "content": "can be defined, where", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 454, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 454, + 121, + 466 + ], + "score": 1.0, + "content": "the", + "type": "text" + }, + { + "bbox": [ + 121, + 455, + 130, + 464 + ], + "score": 0.83, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 454, + 242, + 466 + ], + "score": 1.0, + "content": "only depends on c, because", + "type": "text" + }, + { + "bbox": [ + 243, + 455, + 256, + 465 + ], + "score": 0.89, + "content": "N _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 454, + 313, + 466 + ], + "score": 1.0, + "content": "is invariant to", + "type": "text" + }, + { + "bbox": [ + 314, + 456, + 321, + 464 + ], + "score": 0.45, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 454, + 442, + 466 + ], + "score": 1.0, + "content": ". Lastly, images with the same", + "type": "text" + }, + { + "bbox": [ + 443, + 456, + 450, + 464 + ], + "score": 0.4, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 454, + 505, + 466 + ], + "score": 1.0, + "content": ", but different", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 465, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 258, + 478 + ], + "score": 1.0, + "content": "c must also result in different features,", + "type": "text" + }, + { + "bbox": [ + 258, + 465, + 446, + 478 + ], + "score": 0.91, + "content": "C ( \\mathbf { c } _ { 1 } ) = N _ { \\mathbf { v } } ( f ( \\mathbf { v } , \\mathbf { c } _ { 1 } ) ) \\neq N _ { \\mathbf { v } } ( \\mathbf { v } , \\mathbf { c } _ { 2 } ) = C ( \\mathbf { c } _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 465, + 505, + 478 + ], + "score": 1.0, + "content": ", otherwise the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 475, + 506, + 488 + ], + "spans": [ + { + "bbox": [ + 104, + 475, + 438, + 488 + ], + "score": 1.0, + "content": "autoencoder constraint (3) cannot be satisfied. Then, there exists a bijective function", + "type": "text" + }, + { + "bbox": [ + 439, + 476, + 483, + 487 + ], + "score": 0.92, + "content": "\\dot { R } _ { \\bf c } = { C } ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 475, + 506, + 488 + ], + "score": 1.0, + "content": "such", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 487, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 505, + 500 + ], + "score": 1.0, + "content": "that property (2) is satisfied for c. Unfortunately the other disentangling properties can not provably", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 499, + 156, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 499, + 156, + 509 + ], + "score": 1.0, + "content": "be satisfied.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 107, + 513, + 505, + 547 + ], + "lines": [ + { + "bbox": [ + 105, + 511, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 205, + 526 + ], + "score": 1.0, + "content": "Definition 1. A function", + "type": "text" + }, + { + "bbox": [ + 206, + 515, + 212, + 525 + ], + "score": 0.43, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 511, + 447, + 526 + ], + "score": 1.0, + "content": "reproduces the data distribution, when it generates samples", + "type": "text" + }, + { + "bbox": [ + 447, + 513, + 505, + 525 + ], + "score": 0.93, + "content": "\\mathbf { y } _ { 1 } = g ( \\mathbf { v } _ { 1 } , \\mathbf { c } )", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 523, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 124, + 538 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 524, + 182, + 536 + ], + "score": 0.93, + "content": "\\mathbf { y } _ { 2 } = g ( \\mathbf { v } _ { 2 } , \\mathbf { c } )", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 523, + 403, + 538 + ], + "score": 1.0, + "content": "that have the same distribution as the data. Formally,", + "type": "text" + }, + { + "bbox": [ + 404, + 524, + 474, + 536 + ], + "score": 0.91, + "content": "[ \\mathbf { y } _ { 1 } , \\mathbf { y } _ { 2 } ] \\sim p _ { \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 523, + 506, + 538 + ], + "score": 1.0, + "content": ", where", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 534, + 372, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 245, + 549 + ], + "score": 1.0, + "content": "the latent factors are independent,", + "type": "text" + }, + { + "bbox": [ + 245, + 537, + 281, + 547 + ], + "score": 0.78, + "content": "\\mathbf { v } _ { 1 } \\sim p _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 534, + 284, + 549 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 285, + 537, + 320, + 547 + ], + "score": 0.85, + "content": "\\mathbf { v } _ { 2 } \\sim p _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 534, + 339, + 549 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 339, + 536, + 367, + 547 + ], + "score": 0.88, + "content": "\\mathbf { c } \\sim p _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 534, + 372, + 549 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 555, + 504, + 578 + ], + "lines": [ + { + "bbox": [ + 105, + 554, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 569 + ], + "score": 1.0, + "content": "The reference ambiguity occurs, when a decoder reproduces the data without satisfying the disentan-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 567, + 174, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 174, + 579 + ], + "score": 1.0, + "content": "gling properties.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 106, + 581, + 505, + 615 + ], + "lines": [ + { + "bbox": [ + 106, + 581, + 506, + 594 + ], + "spans": [ + { + "bbox": [ + 106, + 581, + 187, + 594 + ], + "score": 1.0, + "content": "Proposition 2. Let", + "type": "text" + }, + { + "bbox": [ + 187, + 583, + 200, + 593 + ], + "score": 0.82, + "content": "p _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 581, + 506, + 594 + ], + "score": 1.0, + "content": "assign the same probability value to at least two different instances of v.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 591, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 505, + 606 + ], + "score": 1.0, + "content": "Then, we can find encoders that reproduce the data distribution, but do not satisfy the disentangling", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 604, + 230, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 230, + 615 + ], + "score": 1.0, + "content": "properties for v in (2) and (4).", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 106, + 626, + 505, + 683 + ], + "lines": [ + { + "bbox": [ + 104, + 624, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 104, + 624, + 216, + 641 + ], + "score": 1.0, + "content": "Proof. We already saw that", + "type": "text" + }, + { + "bbox": [ + 216, + 628, + 230, + 638 + ], + "score": 0.9, + "content": "N _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 624, + 349, + 641 + ], + "score": 1.0, + "content": "satisfies (2), so we can choose", + "type": "text" + }, + { + "bbox": [ + 350, + 627, + 393, + 639 + ], + "score": 0.93, + "content": "N _ { \\mathbf { c } } = f _ { \\mathbf { c } } ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 624, + 506, + 641 + ], + "score": 1.0, + "content": ", the inverse of the rendering", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 637, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 243, + 651 + ], + "score": 1.0, + "content": "engine. Now we look at defining", + "type": "text" + }, + { + "bbox": [ + 244, + 639, + 258, + 649 + ], + "score": 0.88, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 637, + 459, + 651 + ], + "score": 1.0, + "content": "and the decoder. The iso-probability property of", + "type": "text" + }, + { + "bbox": [ + 460, + 640, + 471, + 650 + ], + "score": 0.84, + "content": "p _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 637, + 505, + 651 + ], + "score": 1.0, + "content": "implies", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 649, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 221, + 662 + ], + "score": 1.0, + "content": "that there exists a mapping", + "type": "text" + }, + { + "bbox": [ + 221, + 649, + 253, + 661 + ], + "score": 0.92, + "content": "T ( \\mathbf { v } , \\mathbf { c } )", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 649, + 298, + 662 + ], + "score": 1.0, + "content": ", such that", + "type": "text" + }, + { + "bbox": [ + 299, + 649, + 356, + 661 + ], + "score": 0.9, + "content": "T ( \\mathbf { v } , \\mathbf { c } ) \\sim p _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 649, + 376, + 662 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 377, + 649, + 464, + 661 + ], + "score": 0.92, + "content": "T ( \\mathbf { v } , \\bar { \\mathbf { c } _ { 1 } } ) \\bar { \\neq } T ( \\bar { \\mathbf { v } } , \\bar { \\mathbf { c } _ { 2 } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 649, + 506, + 662 + ], + "score": 1.0, + "content": "for some", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 659, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 114, + 670 + ], + "score": 0.54, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 659, + 134, + 673 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 134, + 660, + 172, + 671 + ], + "score": 0.9, + "content": "\\mathbf { c } _ { 1 } \\neq \\mathbf { c } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 659, + 316, + 673 + ], + "score": 1.0, + "content": ". For example, let us denote with", + "type": "text" + }, + { + "bbox": [ + 317, + 661, + 357, + 672 + ], + "score": 0.89, + "content": "\\mathbf { v } _ { 1 } \\neq \\mathbf { v } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 659, + 506, + 673 + ], + "score": 1.0, + "content": "two varying components such that", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 671, + 222, + 684 + ], + "spans": [ + { + "bbox": [ + 106, + 672, + 178, + 683 + ], + "score": 0.92, + "content": "p _ { \\mathbf { v } } ( \\mathbf { v } _ { 1 } ) = p _ { \\mathbf { v } } ( \\mathbf { v } _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 671, + 222, + 684 + ], + "score": 1.0, + "content": ". Then, let", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39 + }, + { + "type": "interline_equation", + "bbox": [ + 215, + 689, + 396, + 730 + ], + "lines": [ + { + "bbox": [ + 215, + 689, + 396, + 730 + ], + "spans": [ + { + "bbox": [ + 215, + 689, + 396, + 730 + ], + "score": 0.92, + "content": "T ( \\mathbf { v } , \\mathbf { c } ) \\dot { = } \\left\\{ \\begin{array} { l l } { \\mathbf { v } } & { \\mathrm { i f } \\ \\mathbf { v } \\neq \\mathbf { v } _ { 1 } , \\mathbf { v } _ { 2 } } \\\\ { \\mathbf { v } _ { 1 } } & { \\mathrm { i f } \\ \\mathbf { v } = \\mathbf { v } _ { 1 } \\lor \\mathbf { v } _ { 2 } \\mathrm { a n d } \\mathbf { c } \\in \\mathcal { C } } \\\\ { \\mathbf { v } _ { 2 } } & { \\mathrm { i f } \\ \\mathbf { v } = \\mathbf { v } _ { 1 } \\lor \\mathbf { v } _ { 2 } \\mathrm { a n d } \\mathbf { c } \\not \\in \\mathcal { C } } \\end{array} \\right.", + "type": "interline_equation", + "image_path": "bb4ae1e763a78a1dae1156e86bc9cd8f148c155f09fc90d3857031b049127b49.jpg" + } + ] + } + ], + "index": 42.5, + "virtual_lines": [ + { + "bbox": [ + 215, + 689, + 396, + 709.5 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 215, + 709.5, + 396, + 730.0 + ], + "spans": [], + "index": 43 + } + ] + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 309, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 309, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 495, + 295, + 504, + 305 + ], + "lines": [ + { + "bbox": [ + 496, + 297, + 504, + 304 + ], + "spans": [ + { + "bbox": [ + 496, + 297, + 504, + 304 + ], + "score": 0.997, + "content": "□", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 138 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 407, + 95 + ], + "score": 1.0, + "content": "The shortcut problem can be addressed by reducing the dimensionality of", + "type": "text" + }, + { + "bbox": [ + 407, + 83, + 421, + 93 + ], + "score": 0.89, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 82, + 506, + 95 + ], + "score": 1.0, + "content": ", so it cannot build a", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 107 + ], + "score": 1.0, + "content": "complete representation of all input images. This also forces the encoder and decoder to make use", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 103, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 118, + 118 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 105, + 132, + 115 + ], + "score": 0.89, + "content": "N _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 103, + 505, + 118 + ], + "score": 1.0, + "content": "for the common factor. However, this strategy may not be convenient as it leads to a time", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 504, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 504, + 127 + ], + "score": 1.0, + "content": "consuming trial-and-error procedure to find the correct dimensionality. A better way to address the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 322, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 322, + 140 + ], + "score": 1.0, + "content": "shortcut problem is to use adversarial training (7) (8).", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 82, + 506, + 140 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 141, + 504, + 175 + ], + "lines": [ + { + "bbox": [ + 106, + 141, + 506, + 154 + ], + "spans": [ + { + "bbox": [ + 106, + 141, + 189, + 154 + ], + "score": 1.0, + "content": "Proposition 1. Let", + "type": "text" + }, + { + "bbox": [ + 189, + 143, + 200, + 152 + ], + "score": 0.8, + "content": "\\mathbf { x } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 141, + 205, + 154 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 206, + 143, + 218, + 152 + ], + "score": 0.7, + "content": "\\mathbf { x } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 141, + 239, + 154 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 239, + 142, + 251, + 152 + ], + "score": 0.74, + "content": "\\mathbf { x } _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 141, + 506, + 154 + ], + "score": 1.0, + "content": "data samples generated according to (5), where the factors", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 107, + 152, + 506, + 165 + ], + "spans": [ + { + "bbox": [ + 107, + 154, + 176, + 164 + ], + "score": 0.88, + "content": "\\mathbf { c } _ { 1 } , \\mathbf { c } _ { 3 } , \\mathbf { v } _ { 1 } , \\mathbf { v } _ { 2 } , \\mathbf { v } _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 152, + 298, + 165 + ], + "score": 1.0, + "content": "are jointly independent, and", + "type": "text" + }, + { + "bbox": [ + 299, + 152, + 426, + 164 + ], + "score": 0.91, + "content": "\\mathbf { x } _ { 3 \\oplus 1 } \\doteq D e c ( N _ { \\mathbf { v } } ( \\mathbf { x } _ { 3 } ) , N _ { \\mathbf { c } } ( \\mathbf { x } _ { 1 } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 152, + 506, + 165 + ], + "score": 1.0, + "content": ". When the global", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 163, + 502, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 163, + 393, + 177 + ], + "score": 1.0, + "content": "optimum of the composite loss (8) is reached, the c factor is transferred to", + "type": "text" + }, + { + "bbox": [ + 394, + 165, + 416, + 175 + ], + "score": 0.87, + "content": "\\mathbf { x } _ { \\mathrm { 3 \\oplus 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 163, + 434, + 177 + ], + "score": 1.0, + "content": ", i.e.", + "type": "text" + }, + { + "bbox": [ + 434, + 163, + 502, + 175 + ], + "score": 0.92, + "content": "f _ { \\mathbf { c } } ^ { - 1 } ( \\mathbf { x } _ { 3 \\oplus 1 } ) = \\mathbf { c } _ { 1 }", + "type": "inline_equation" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 141, + 506, + 177 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 186, + 505, + 221 + ], + "lines": [ + { + "bbox": [ + 105, + 184, + 504, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 394, + 201 + ], + "score": 1.0, + "content": "Proof. When the global optimum of (8) is reached, the distribution of real", + "type": "text" + }, + { + "bbox": [ + 394, + 187, + 426, + 199 + ], + "score": 0.93, + "content": "\\left[ \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 184, + 461, + 201 + ], + "score": 1.0, + "content": "and fake", + "type": "text" + }, + { + "bbox": [ + 462, + 187, + 504, + 199 + ], + "score": 0.92, + "content": "[ \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 3 \\oplus 1 } ]", + "type": "inline_equation" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 198, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 505, + 210 + ], + "score": 1.0, + "content": "image pairs are identical. We compute statistics of the inverse of the rendering engine of the common", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 208, + 347, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 132, + 222 + ], + "score": 1.0, + "content": "factor", + "type": "text" + }, + { + "bbox": [ + 133, + 209, + 150, + 221 + ], + "score": 0.91, + "content": "\\bar { f } _ { \\mathbf { c } } ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 208, + 262, + 222 + ], + "score": 1.0, + "content": "on the data. For the images", + "type": "text" + }, + { + "bbox": [ + 262, + 210, + 273, + 220 + ], + "score": 0.85, + "content": "\\mathbf { x } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 208, + 291, + 222 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 292, + 210, + 304, + 220 + ], + "score": 0.86, + "content": "\\mathbf { x } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 208, + 347, + 222 + ], + "score": 1.0, + "content": "we obtain", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 184, + 505, + 222 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 190, + 225, + 421, + 247 + ], + "lines": [ + { + "bbox": [ + 190, + 225, + 421, + 247 + ], + "spans": [ + { + "bbox": [ + 190, + 225, + 421, + 247 + ], + "score": 0.92, + "content": "\\begin{array} { r } { { E } _ { \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } } \\Big [ | f _ { \\mathbf { c } } ^ { - 1 } ( \\mathbf { x } _ { 1 } ) - f _ { \\mathbf { c } } ^ { - 1 } ( \\mathbf { x } _ { 2 } ) | ^ { 2 } \\Big ] = { E } _ { \\mathbf { c } _ { 1 } } \\Big [ | \\mathbf { c } _ { 1 } - \\mathbf { c } _ { 1 } | ^ { 2 } \\Big ] = 0 } \\end{array}", + "type": "interline_equation", + "image_path": "d63503b72bdcbc84bb8b5313db9996fceb9c0fa3e4cf33136f2453fd2527a5bc.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 190, + 225, + 421, + 247 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 250, + 390, + 263 + ], + "lines": [ + { + "bbox": [ + 105, + 249, + 390, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 185, + 265 + ], + "score": 1.0, + "content": "by construction (of", + "type": "text" + }, + { + "bbox": [ + 185, + 253, + 196, + 262 + ], + "score": 0.88, + "content": "\\mathbf { x } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 249, + 214, + 265 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 215, + 253, + 226, + 262 + ], + "score": 0.84, + "content": "\\mathbf { x } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 249, + 295, + 265 + ], + "score": 1.0, + "content": "). For the images", + "type": "text" + }, + { + "bbox": [ + 295, + 253, + 307, + 262 + ], + "score": 0.88, + "content": "\\mathbf { x } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 249, + 325, + 265 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 326, + 253, + 347, + 263 + ], + "score": 0.9, + "content": "\\mathbf { x } _ { \\mathrm { 3 \\oplus 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 249, + 390, + 265 + ], + "score": 1.0, + "content": "we obtain", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 249, + 390, + 265 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 163, + 267, + 447, + 289 + ], + "lines": [ + { + "bbox": [ + 163, + 267, + 447, + 289 + ], + "spans": [ + { + "bbox": [ + 163, + 267, + 447, + 289 + ], + "score": 0.92, + "content": "\\begin{array} { r } { E _ { \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 3 } } \\Big [ | f _ { \\mathbf { c } } ^ { - 1 } ( \\mathbf { x } _ { 1 } ) - f _ { \\mathbf { c } } ^ { - 1 } ( \\mathbf { x } _ { 3 \\oplus 1 } ) | ^ { 2 } \\Big ] = E _ { \\mathbf { v } _ { 1 } , \\mathbf { c } _ { 1 } , \\mathbf { v } _ { 3 } , \\mathbf { c } _ { 3 } } \\Big [ | \\mathbf { c } _ { 1 } - \\mathbf { c } _ { 3 \\oplus 1 } | ^ { 2 } \\Big ] \\geq 0 , } \\end{array}", + "type": "interline_equation", + "image_path": "8ef50f6da86620ea7ff42242fee4dd9d0a38fbc043dc1de97b3292a81bcda76b.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 163, + 267, + 447, + 289 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 294, + 448, + 307 + ], + "lines": [ + { + "bbox": [ + 105, + 293, + 451, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 133, + 309 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 294, + 212, + 307 + ], + "score": 0.93, + "content": "{ \\bf c } _ { 3 \\oplus 1 } = f _ { \\bf c } ^ { - 1 } ( { \\bf x } _ { 3 \\oplus 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 293, + 353, + 309 + ], + "score": 1.0, + "content": ". We achieve equality if and only if", + "type": "text" + }, + { + "bbox": [ + 354, + 296, + 397, + 306 + ], + "score": 0.89, + "content": "\\mathbf { c } _ { 1 } = \\mathbf { c } _ { 3 \\oplus 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 293, + 451, + 309 + ], + "score": 1.0, + "content": "everywhere.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 293, + 451, + 309 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 319, + 235, + 330 + ], + "lines": [ + { + "bbox": [ + 106, + 319, + 236, + 331 + ], + "spans": [ + { + "bbox": [ + 106, + 319, + 236, + 331 + ], + "score": 1.0, + "content": "3.3 REFERENCE AMBIGUITY", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 339, + 504, + 385 + ], + "lines": [ + { + "bbox": [ + 105, + 340, + 506, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 506, + 352 + ], + "score": 1.0, + "content": "Let us consider the ideal case where we observe the space of all images. When weak labels are made", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 351, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 281, + 363 + ], + "score": 1.0, + "content": "available to us, we also know what images", + "type": "text" + }, + { + "bbox": [ + 281, + 353, + 293, + 362 + ], + "score": 0.85, + "content": "\\mathbf { x } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 351, + 311, + 363 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 312, + 352, + 323, + 362 + ], + "score": 0.85, + "content": "\\mathbf { x } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 351, + 505, + 363 + ], + "score": 1.0, + "content": "share the same c factor (for example, which", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 361, + 504, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 493, + 376 + ], + "score": 1.0, + "content": "images have the same car). This labeling is equivalent to defining the probability density function", + "type": "text" + }, + { + "bbox": [ + 493, + 364, + 504, + 374 + ], + "score": 0.79, + "content": "p _ { \\mathbf { c } }", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 373, + 270, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 206, + 387 + ], + "score": 1.0, + "content": "and the joint conditional", + "type": "text" + }, + { + "bbox": [ + 206, + 374, + 239, + 386 + ], + "score": 0.91, + "content": "\\displaystyle p _ { { \\mathbf { x } } _ { 1 } , { \\mathbf { x } } _ { 2 } | { \\mathbf { c } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 373, + 270, + 387 + ], + "score": 1.0, + "content": ", where", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 340, + 506, + 387 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 146, + 390, + 465, + 416 + ], + "lines": [ + { + "bbox": [ + 146, + 390, + 465, + 416 + ], + "spans": [ + { + "bbox": [ + 146, + 390, + 465, + 416 + ], + "score": 0.91, + "content": "p _ { \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } | \\mathbf { c } } ( \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } | \\mathbf { c } ) = \\int \\delta ( \\mathbf { x } _ { 1 } - f ( \\mathbf { v } _ { 1 } , \\mathbf { c } ) ) \\delta ( \\mathbf { x } _ { 2 } - f ( \\mathbf { v } _ { 2 } , \\mathbf { c } ) ) p ( \\mathbf { v } _ { 1 } ) p ( \\mathbf { v } _ { 2 } ) d \\mathbf { v } _ { 1 } d \\mathbf { v } _ { 2 } .", + "type": "interline_equation", + "image_path": "c5c10d21f164dc958f0ae014970750e9436e47bd027d67fbf3d27aa4f8cc5a22.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 146, + 390, + 465, + 416 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 420, + 505, + 510 + ], + "lines": [ + { + "bbox": [ + 105, + 419, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 464, + 434 + ], + "score": 1.0, + "content": "Firstly, we show that the labeling allows us to satisfy the feature disentangling property for", + "type": "text" + }, + { + "bbox": [ + 465, + 423, + 471, + 431 + ], + "score": 0.39, + "content": "\\mathbf { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 419, + 506, + 434 + ], + "score": 1.0, + "content": "(2). For", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 431, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 124, + 446 + ], + "score": 1.0, + "content": "any", + "type": "text" + }, + { + "bbox": [ + 124, + 431, + 201, + 444 + ], + "score": 0.92, + "content": "[ \\mathbf { \\dot { x } } _ { 1 } , \\mathbf { x } _ { 2 } ] \\sim p _ { \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } | \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 431, + 249, + 446 + ], + "score": 1.0, + "content": "we impose", + "type": "text" + }, + { + "bbox": [ + 249, + 431, + 326, + 443 + ], + "score": 0.93, + "content": "N _ { \\mathbf { c } } ( \\mathbf { x } _ { 1 } ) = N _ { \\mathbf { c } } ( \\mathbf { x } _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 431, + 506, + 446 + ], + "score": 1.0, + "content": ". In particular, this equation is true for pairs", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 443, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 347, + 456 + ], + "score": 1.0, + "content": "when one of the two images is held fixed. Thus, a function", + "type": "text" + }, + { + "bbox": [ + 347, + 443, + 412, + 456 + ], + "score": 0.92, + "content": "C ( \\mathbf { c } ) = N _ { \\mathbf { c } } ( \\mathbf { x } _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 444, + 505, + 456 + ], + "score": 1.0, + "content": "can be defined, where", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 454, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 454, + 121, + 466 + ], + "score": 1.0, + "content": "the", + "type": "text" + }, + { + "bbox": [ + 121, + 455, + 130, + 464 + ], + "score": 0.83, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 454, + 242, + 466 + ], + "score": 1.0, + "content": "only depends on c, because", + "type": "text" + }, + { + "bbox": [ + 243, + 455, + 256, + 465 + ], + "score": 0.89, + "content": "N _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 454, + 313, + 466 + ], + "score": 1.0, + "content": "is invariant to", + "type": "text" + }, + { + "bbox": [ + 314, + 456, + 321, + 464 + ], + "score": 0.45, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 454, + 442, + 466 + ], + "score": 1.0, + "content": ". Lastly, images with the same", + "type": "text" + }, + { + "bbox": [ + 443, + 456, + 450, + 464 + ], + "score": 0.4, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 454, + 505, + 466 + ], + "score": 1.0, + "content": ", but different", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 465, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 258, + 478 + ], + "score": 1.0, + "content": "c must also result in different features,", + "type": "text" + }, + { + "bbox": [ + 258, + 465, + 446, + 478 + ], + "score": 0.91, + "content": "C ( \\mathbf { c } _ { 1 } ) = N _ { \\mathbf { v } } ( f ( \\mathbf { v } , \\mathbf { c } _ { 1 } ) ) \\neq N _ { \\mathbf { v } } ( \\mathbf { v } , \\mathbf { c } _ { 2 } ) = C ( \\mathbf { c } _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 465, + 505, + 478 + ], + "score": 1.0, + "content": ", otherwise the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 475, + 506, + 488 + ], + "spans": [ + { + "bbox": [ + 104, + 475, + 438, + 488 + ], + "score": 1.0, + "content": "autoencoder constraint (3) cannot be satisfied. Then, there exists a bijective function", + "type": "text" + }, + { + "bbox": [ + 439, + 476, + 483, + 487 + ], + "score": 0.92, + "content": "\\dot { R } _ { \\bf c } = { C } ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 475, + 506, + 488 + ], + "score": 1.0, + "content": "such", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 487, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 505, + 500 + ], + "score": 1.0, + "content": "that property (2) is satisfied for c. Unfortunately the other disentangling properties can not provably", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 499, + 156, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 499, + 156, + 509 + ], + "score": 1.0, + "content": "be satisfied.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 24.5, + "bbox_fs": [ + 104, + 419, + 506, + 509 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 513, + 505, + 547 + ], + "lines": [ + { + "bbox": [ + 105, + 511, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 205, + 526 + ], + "score": 1.0, + "content": "Definition 1. A function", + "type": "text" + }, + { + "bbox": [ + 206, + 515, + 212, + 525 + ], + "score": 0.43, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 511, + 447, + 526 + ], + "score": 1.0, + "content": "reproduces the data distribution, when it generates samples", + "type": "text" + }, + { + "bbox": [ + 447, + 513, + 505, + 525 + ], + "score": 0.93, + "content": "\\mathbf { y } _ { 1 } = g ( \\mathbf { v } _ { 1 } , \\mathbf { c } )", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 523, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 124, + 538 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 524, + 182, + 536 + ], + "score": 0.93, + "content": "\\mathbf { y } _ { 2 } = g ( \\mathbf { v } _ { 2 } , \\mathbf { c } )", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 523, + 403, + 538 + ], + "score": 1.0, + "content": "that have the same distribution as the data. Formally,", + "type": "text" + }, + { + "bbox": [ + 404, + 524, + 474, + 536 + ], + "score": 0.91, + "content": "[ \\mathbf { y } _ { 1 } , \\mathbf { y } _ { 2 } ] \\sim p _ { \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 523, + 506, + 538 + ], + "score": 1.0, + "content": ", where", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 534, + 372, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 245, + 549 + ], + "score": 1.0, + "content": "the latent factors are independent,", + "type": "text" + }, + { + "bbox": [ + 245, + 537, + 281, + 547 + ], + "score": 0.78, + "content": "\\mathbf { v } _ { 1 } \\sim p _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 534, + 284, + 549 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 285, + 537, + 320, + 547 + ], + "score": 0.85, + "content": "\\mathbf { v } _ { 2 } \\sim p _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 534, + 339, + 549 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 339, + 536, + 367, + 547 + ], + "score": 0.88, + "content": "\\mathbf { c } \\sim p _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 534, + 372, + 549 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 511, + 506, + 549 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 555, + 504, + 578 + ], + "lines": [ + { + "bbox": [ + 105, + 554, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 569 + ], + "score": 1.0, + "content": "The reference ambiguity occurs, when a decoder reproduces the data without satisfying the disentan-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 567, + 174, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 174, + 579 + ], + "score": 1.0, + "content": "gling properties.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 554, + 505, + 579 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 581, + 505, + 615 + ], + "lines": [ + { + "bbox": [ + 106, + 581, + 506, + 594 + ], + "spans": [ + { + "bbox": [ + 106, + 581, + 187, + 594 + ], + "score": 1.0, + "content": "Proposition 2. Let", + "type": "text" + }, + { + "bbox": [ + 187, + 583, + 200, + 593 + ], + "score": 0.82, + "content": "p _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 581, + 506, + 594 + ], + "score": 1.0, + "content": "assign the same probability value to at least two different instances of v.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 591, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 505, + 606 + ], + "score": 1.0, + "content": "Then, we can find encoders that reproduce the data distribution, but do not satisfy the disentangling", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 604, + 230, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 230, + 615 + ], + "score": 1.0, + "content": "properties for v in (2) and (4).", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 581, + 506, + 615 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 626, + 505, + 683 + ], + "lines": [ + { + "bbox": [ + 104, + 624, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 104, + 624, + 216, + 641 + ], + "score": 1.0, + "content": "Proof. We already saw that", + "type": "text" + }, + { + "bbox": [ + 216, + 628, + 230, + 638 + ], + "score": 0.9, + "content": "N _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 624, + 349, + 641 + ], + "score": 1.0, + "content": "satisfies (2), so we can choose", + "type": "text" + }, + { + "bbox": [ + 350, + 627, + 393, + 639 + ], + "score": 0.93, + "content": "N _ { \\mathbf { c } } = f _ { \\mathbf { c } } ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 624, + 506, + 641 + ], + "score": 1.0, + "content": ", the inverse of the rendering", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 637, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 243, + 651 + ], + "score": 1.0, + "content": "engine. Now we look at defining", + "type": "text" + }, + { + "bbox": [ + 244, + 639, + 258, + 649 + ], + "score": 0.88, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 637, + 459, + 651 + ], + "score": 1.0, + "content": "and the decoder. The iso-probability property of", + "type": "text" + }, + { + "bbox": [ + 460, + 640, + 471, + 650 + ], + "score": 0.84, + "content": "p _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 637, + 505, + 651 + ], + "score": 1.0, + "content": "implies", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 649, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 221, + 662 + ], + "score": 1.0, + "content": "that there exists a mapping", + "type": "text" + }, + { + "bbox": [ + 221, + 649, + 253, + 661 + ], + "score": 0.92, + "content": "T ( \\mathbf { v } , \\mathbf { c } )", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 649, + 298, + 662 + ], + "score": 1.0, + "content": ", such that", + "type": "text" + }, + { + "bbox": [ + 299, + 649, + 356, + 661 + ], + "score": 0.9, + "content": "T ( \\mathbf { v } , \\mathbf { c } ) \\sim p _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 649, + 376, + 662 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 377, + 649, + 464, + 661 + ], + "score": 0.92, + "content": "T ( \\mathbf { v } , \\bar { \\mathbf { c } _ { 1 } } ) \\bar { \\neq } T ( \\bar { \\mathbf { v } } , \\bar { \\mathbf { c } _ { 2 } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 649, + 506, + 662 + ], + "score": 1.0, + "content": "for some", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 659, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 114, + 670 + ], + "score": 0.54, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 659, + 134, + 673 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 134, + 660, + 172, + 671 + ], + "score": 0.9, + "content": "\\mathbf { c } _ { 1 } \\neq \\mathbf { c } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 659, + 316, + 673 + ], + "score": 1.0, + "content": ". For example, let us denote with", + "type": "text" + }, + { + "bbox": [ + 317, + 661, + 357, + 672 + ], + "score": 0.89, + "content": "\\mathbf { v } _ { 1 } \\neq \\mathbf { v } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 659, + 506, + 673 + ], + "score": 1.0, + "content": "two varying components such that", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 671, + 222, + 684 + ], + "spans": [ + { + "bbox": [ + 106, + 672, + 178, + 683 + ], + "score": 0.92, + "content": "p _ { \\mathbf { v } } ( \\mathbf { v } _ { 1 } ) = p _ { \\mathbf { v } } ( \\mathbf { v } _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 671, + 222, + 684 + ], + "score": 1.0, + "content": ". Then, let", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39, + "bbox_fs": [ + 104, + 624, + 506, + 684 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 215, + 689, + 396, + 730 + ], + "lines": [ + { + "bbox": [ + 215, + 689, + 396, + 730 + ], + "spans": [ + { + "bbox": [ + 215, + 689, + 396, + 730 + ], + "score": 0.92, + "content": "T ( \\mathbf { v } , \\mathbf { c } ) \\dot { = } \\left\\{ \\begin{array} { l l } { \\mathbf { v } } & { \\mathrm { i f } \\ \\mathbf { v } \\neq \\mathbf { v } _ { 1 } , \\mathbf { v } _ { 2 } } \\\\ { \\mathbf { v } _ { 1 } } & { \\mathrm { i f } \\ \\mathbf { v } = \\mathbf { v } _ { 1 } \\lor \\mathbf { v } _ { 2 } \\mathrm { a n d } \\mathbf { c } \\in \\mathcal { C } } \\\\ { \\mathbf { v } _ { 2 } } & { \\mathrm { i f } \\ \\mathbf { v } = \\mathbf { v } _ { 1 } \\lor \\mathbf { v } _ { 2 } \\mathrm { a n d } \\mathbf { c } \\not \\in \\mathcal { C } } \\end{array} \\right.", + "type": "interline_equation", + "image_path": "bb4ae1e763a78a1dae1156e86bc9cd8f148c155f09fc90d3857031b049127b49.jpg" + } + ] + } + ], + "index": 42.5, + "virtual_lines": [ + { + "bbox": [ + 215, + 689, + 396, + 709.5 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 215, + 709.5, + 396, + 730.0 + ], + "spans": [], + "index": 43 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 81, + 504, + 106 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 124, + 96 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 83, + 131, + 92 + ], + "score": 0.8, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 81, + 248, + 96 + ], + "score": 1.0, + "content": "is a subset of the domain of", + "type": "text" + }, + { + "bbox": [ + 249, + 85, + 255, + 92 + ], + "score": 0.43, + "content": "\\mathbf { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 81, + 287, + 96 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 287, + 82, + 362, + 96 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\int _ { \\mathcal { C } } p _ { \\mathbf { c } } ( \\mathbf { c } ) d \\mathbf { c } = 1 / 2 } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 81, + 506, + 96 + ], + "score": 1.0, + "content": ". Now, let us define the encoder as", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 438, + 107 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 202, + 106 + ], + "score": 0.92, + "content": "N _ { \\mathbf { v } } ( f ( \\mathbf { v } , \\mathbf { c } ) ) = T ( \\mathbf { v } , \\mathbf { c } )", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 94, + 438, + 107 + ], + "score": 1.0, + "content": ". By using the autoencoder constraint, the decoder satisfies", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 178, + 110, + 432, + 124 + ], + "lines": [ + { + "bbox": [ + 178, + 110, + 432, + 124 + ], + "spans": [ + { + "bbox": [ + 178, + 110, + 432, + 124 + ], + "score": 0.89, + "content": "\\operatorname { D e c } ( N _ { \\mathbf { v } } ( f ( \\mathbf { v } , \\mathbf { c } ) ) , N _ { \\mathbf { c } } ( f ( \\mathbf { v } , \\mathbf { c } ) ) ) = \\operatorname { D e c } ( T ( \\mathbf { v } , \\mathbf { c } ) , \\mathbf { c } ) = f ( \\mathbf { v } , \\mathbf { c } ) .", + "type": "interline_equation", + "image_path": "54a73ddb2a2bc6d4404212dd98ca2cbb4232243f51a7f880456ef26805957772.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 178, + 110, + 432, + 124 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 128, + 505, + 162 + ], + "lines": [ + { + "bbox": [ + 106, + 128, + 505, + 141 + ], + "spans": [ + { + "bbox": [ + 106, + 128, + 158, + 141 + ], + "score": 1.0, + "content": "Even though", + "type": "text" + }, + { + "bbox": [ + 158, + 128, + 189, + 140 + ], + "score": 0.93, + "content": "T ( \\mathbf { v } , \\mathbf { c } )", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 128, + 236, + 141 + ], + "score": 1.0, + "content": "depends on", + "type": "text" + }, + { + "bbox": [ + 236, + 131, + 243, + 138 + ], + "score": 0.31, + "content": "\\mathbf { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 128, + 461, + 141 + ], + "score": 1.0, + "content": "functionally, they are statistically independent. Because", + "type": "text" + }, + { + "bbox": [ + 461, + 128, + 505, + 141 + ], + "score": 0.91, + "content": "T ( \\mathbf { v } , \\mathbf { c } ) \\sim", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 140, + 506, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 141, + 118, + 151 + ], + "score": 0.84, + "content": "p _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 140, + 136, + 151 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 136, + 141, + 165, + 151 + ], + "score": 0.89, + "content": "\\mathbf { c } \\sim p _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 140, + 506, + 151 + ], + "score": 1.0, + "content": "by construction, our encoder-decoder pair defines a data distribution identical to that", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 151, + 189, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 189, + 163 + ], + "score": 1.0, + "content": "given as training set", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 166, + 400, + 180 + ], + "lines": [ + { + "bbox": [ + 210, + 166, + 400, + 180 + ], + "spans": [ + { + "bbox": [ + 210, + 166, + 400, + 180 + ], + "score": 0.89, + "content": "\\left[ \\operatorname { D e c } ( T ( \\mathbf { v } _ { 1 } , \\mathbf { c } ) , \\mathbf { c } ) , \\operatorname { D e c } ( T ( \\mathbf { v } _ { 2 } , \\mathbf { c } ) , \\mathbf { c } ) \\right] \\sim p _ { \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } } .", + "type": "interline_equation", + "image_path": "f6bcda88538e042aaccb0e9ecdcfead5aed1204c01d813be25799d45cf17aefe.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 210, + 166, + 400, + 180 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 183, + 505, + 218 + ], + "lines": [ + { + "bbox": [ + 105, + 182, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 370, + 198 + ], + "score": 1.0, + "content": "The feature disentanglement property is not satisfied because", + "type": "text" + }, + { + "bbox": [ + 371, + 183, + 505, + 196 + ], + "score": 0.92, + "content": "N _ { \\mathbf { v } } ( f ( \\mathbf { v } _ { 1 } , \\mathbf { c } _ { 1 } ) ) ~ = ~ T ( \\mathbf { v } _ { 1 } , \\mathbf { c } _ { 1 } ) ~ \\neq", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 194, + 506, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 195, + 225, + 207 + ], + "score": 0.9, + "content": "T ( \\mathbf { v } _ { 1 } , \\mathbf { c } _ { 2 } ) \\ = \\ N _ { \\mathbf { v } } ( f ( { \\bar { \\mathbf { v } } } _ { 1 } , \\mathbf { c } _ { 2 } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 194, + 256, + 208 + ], + "score": 1.0, + "content": ", when", + "type": "text" + }, + { + "bbox": [ + 256, + 195, + 291, + 206 + ], + "score": 0.89, + "content": "\\mathbf { c } _ { 1 } ~ \\in ~ { \\mathcal { C } }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 194, + 311, + 208 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 312, + 195, + 346, + 207 + ], + "score": 0.89, + "content": "\\mathbf { c } _ { 2 } \\notin \\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 194, + 506, + 208 + ], + "score": 1.0, + "content": ". Similarly, the data disentanglement", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 205, + 505, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 235, + 219 + ], + "score": 1.0, + "content": "property does not hold, because", + "type": "text" + }, + { + "bbox": [ + 235, + 207, + 404, + 218 + ], + "score": 0.91, + "content": "\\mathrm { D e c } ( T ( \\mathbf { v } _ { 1 } , \\mathbf { c } _ { 1 } ) , \\mathbf { c } _ { 1 } ) \\neq \\mathrm { D e c } ( T ( \\mathbf { v } _ { 1 } , \\mathbf { c } _ { 2 } ) , \\mathbf { c } _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 205, + 409, + 219 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 494, + 207, + 505, + 217 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 229, + 504, + 252 + ], + "lines": [ + { + "bbox": [ + 106, + 229, + 505, + 242 + ], + "spans": [ + { + "bbox": [ + 106, + 229, + 505, + 242 + ], + "score": 1.0, + "content": "The above proposition implies that we cannot provably disentangle all the factors of variation from", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 240, + 487, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 442, + 254 + ], + "score": 1.0, + "content": "weakly labeled data, even if we had access to all the data and knew the distributions", + "type": "text" + }, + { + "bbox": [ + 443, + 243, + 454, + 253 + ], + "score": 0.86, + "content": "p _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 240, + 472, + 254 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 472, + 243, + 483, + 253 + ], + "score": 0.84, + "content": "p _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 240, + 487, + 254 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 106, + 257, + 505, + 379 + ], + "lines": [ + { + "bbox": [ + 105, + 257, + 506, + 270 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 365, + 270 + ], + "score": 1.0, + "content": "To better understand it, let us consider a practical example. Let", + "type": "text" + }, + { + "bbox": [ + 365, + 258, + 423, + 270 + ], + "score": 0.93, + "content": "\\mathbf { v } \\sim \\mathcal { U } [ - \\pi , \\pi ]", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 257, + 506, + 270 + ], + "score": 1.0, + "content": "be the (continuous)", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 268, + 506, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 242, + 281 + ], + "score": 1.0, + "content": "viewpoint (the azimuth angle) and", + "type": "text" + }, + { + "bbox": [ + 242, + 269, + 289, + 280 + ], + "score": 0.91, + "content": "\\mathbf { c } \\sim B ( 0 . 5 )", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 268, + 367, + 281 + ], + "score": 1.0, + "content": "the car type, where", + "type": "text" + }, + { + "bbox": [ + 367, + 270, + 376, + 279 + ], + "score": 0.74, + "content": "\\mathcal { U }", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 268, + 506, + 281 + ], + "score": 1.0, + "content": "denotes the uniform distribution", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 279, + 506, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 124, + 293 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 280, + 152, + 291 + ], + "score": 0.91, + "content": "B ( 0 . 5 )", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 279, + 330, + 293 + ], + "score": 1.0, + "content": "the Bernoulli distribution with probability", + "type": "text" + }, + { + "bbox": [ + 330, + 280, + 460, + 292 + ], + "score": 0.91, + "content": "p _ { \\mathbf { c } } ( \\mathbf { c } = 0 ) = p _ { \\mathbf { c } } ( \\mathbf { c } = 1 ) = 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 279, + 506, + 293 + ], + "score": 1.0, + "content": "(i.e., there", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 291, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 321, + 303 + ], + "score": 1.0, + "content": "are only 2 car types). In this case, every instance of", + "type": "text" + }, + { + "bbox": [ + 321, + 293, + 329, + 300 + ], + "score": 0.41, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 291, + 403, + 303 + ], + "score": 1.0, + "content": "is iso-probable in", + "type": "text" + }, + { + "bbox": [ + 403, + 293, + 415, + 302 + ], + "score": 0.83, + "content": "p _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 291, + 505, + 303 + ], + "score": 1.0, + "content": "so we have the worst", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 300, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 372, + 315 + ], + "score": 1.0, + "content": "scenario for the reference ambiguity. We can define the function", + "type": "text" + }, + { + "bbox": [ + 372, + 302, + 459, + 313 + ], + "score": 0.9, + "content": "T ( \\mathbf { v } , \\mathbf { c } ) = \\mathbf { v } ( 2 \\mathbf { c } - 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 300, + 505, + 315 + ], + "score": 1.0, + "content": "so that the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 312, + 504, + 326 + ], + "spans": [ + { + "bbox": [ + 104, + 312, + 154, + 326 + ], + "score": 1.0, + "content": "mapping of", + "type": "text" + }, + { + "bbox": [ + 155, + 314, + 162, + 322 + ], + "score": 0.63, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 312, + 383, + 326 + ], + "score": 1.0, + "content": "is mirrored as we change the car type. By construction", + "type": "text" + }, + { + "bbox": [ + 384, + 313, + 465, + 324 + ], + "score": 0.9, + "content": "T ( \\mathbf { v } , \\mathbf { c } ) \\sim \\mathcal { U } [ - \\pi , \\pi ]", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 312, + 497, + 326 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 497, + 315, + 504, + 323 + ], + "score": 0.28, + "content": "\\mathbf { c }", + "type": "inline_equation" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 323, + 506, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 123, + 337 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 324, + 208, + 336 + ], + "score": 0.92, + "content": "T ( \\mathbf { v } , \\mathbf { c } _ { 1 } ) \\neq T ( \\mathbf { v } , \\mathbf { c } _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 323, + 222, + 337 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 223, + 324, + 249, + 335 + ], + "score": 0.92, + "content": "\\mathbf { v } \\neq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 323, + 266, + 337 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 266, + 324, + 299, + 335 + ], + "score": 0.91, + "content": "\\mathbf { c } _ { 1 } \\neq \\mathbf { c } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 323, + 464, + 337 + ], + "score": 1.0, + "content": ". So we cannot tell the difference between", + "type": "text" + }, + { + "bbox": [ + 465, + 324, + 473, + 334 + ], + "score": 0.82, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 323, + 506, + 337 + ], + "score": 1.0, + "content": "and the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 333, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 409, + 348 + ], + "score": 1.0, + "content": "ideal correct mapping to the viewpoint factor. This is equivalent to an encoder", + "type": "text" + }, + { + "bbox": [ + 409, + 334, + 505, + 347 + ], + "score": 0.9, + "content": "N _ { \\mathbf { v } } ( f ( \\mathbf { v } , \\mathbf { c } ) ) = T ( \\mathbf { v } , \\mathbf { c } )", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 345, + 506, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 506, + 358 + ], + "score": 1.0, + "content": "that reverses the ordering of the azimuth of car 1 with respect to car 0. Each car has its own reference", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 356, + 506, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 506, + 370 + ], + "score": 1.0, + "content": "system, and thus it is not possible to transfer the viewpoint from one system to the other, as it is", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 366, + 185, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 185, + 381 + ], + "score": 1.0, + "content": "illustrated in fig. 1.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 17 + }, + { + "type": "title", + "bbox": [ + 107, + 392, + 209, + 403 + ], + "lines": [ + { + "bbox": [ + 105, + 391, + 210, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 210, + 405 + ], + "score": 1.0, + "content": "3.4 IMPLEMENTATION", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 412, + 504, + 435 + ], + "lines": [ + { + "bbox": [ + 105, + 412, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 483, + 425 + ], + "score": 1.0, + "content": "In our implementation we use convolutional neural networks for all the models. We denote with", + "type": "text" + }, + { + "bbox": [ + 483, + 413, + 489, + 423 + ], + "score": 0.8, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 412, + 505, + 425 + ], + "score": 1.0, + "content": "the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 423, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 506, + 437 + ], + "score": 1.0, + "content": "parameters associated to each network. Then, the optimization of the composite loss can be written as", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "interline_equation", + "bbox": [ + 199, + 439, + 412, + 461 + ], + "lines": [ + { + "bbox": [ + 199, + 439, + 412, + 461 + ], + "spans": [ + { + "bbox": [ + 199, + 439, + 412, + 461 + ], + "score": 0.92, + "content": "\\hat { \\theta } _ { \\mathrm { { D e c } } } , \\hat { \\theta } _ { \\mathrm { { E n c } } } , \\hat { \\theta } _ { \\mathrm { { D s c } } } = \\arg \\operatorname* { m i n } _ { \\theta _ { \\mathrm { { D e c } } } , \\theta _ { \\mathrm { { E n c } } } } \\operatorname* { m a x } _ { \\theta _ { \\mathrm { { D s c } } } } \\mathcal { L } ( \\theta _ { \\mathrm { { D e c } } } , \\theta _ { \\mathrm { { E n c } } } , \\theta _ { \\mathrm { { D s c } } } ) .", + "type": "interline_equation", + "image_path": "ad8a7a239b6e53b3ca59924edbecb1c1d2d6c239f4721fbd445add5e1ca1471a.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 199, + 439, + 412, + 461 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 464, + 505, + 553 + ], + "lines": [ + { + "bbox": [ + 104, + 464, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 104, + 464, + 153, + 478 + ], + "score": 1.0, + "content": "We choose", + "type": "text" + }, + { + "bbox": [ + 154, + 466, + 180, + 475 + ], + "score": 0.9, + "content": "\\lambda = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 464, + 506, + 478 + ], + "score": 1.0, + "content": "and also add regularization to the adversarial loss so that each logarithm has a", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 475, + 506, + 488 + ], + "spans": [ + { + "bbox": [ + 104, + 475, + 221, + 488 + ], + "score": 1.0, + "content": "minimum value. We define", + "type": "text" + }, + { + "bbox": [ + 221, + 476, + 389, + 488 + ], + "score": 0.91, + "content": "\\log _ { \\epsilon } \\bar { \\mathrm { D s c } } ( \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } ) = \\log ( \\epsilon + \\mathrm { D s c } ( \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 475, + 506, + 488 + ], + "score": 1.0, + "content": "(and similarly for the other", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 485, + 506, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 214, + 500 + ], + "score": 1.0, + "content": "logarithmic term) and use", + "type": "text" + }, + { + "bbox": [ + 215, + 487, + 259, + 497 + ], + "score": 0.89, + "content": "\\epsilon = 1 0 ^ { - 1 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 485, + 506, + 500 + ], + "score": 1.0, + "content": ". The main components of our neural network are shown in", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 498, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 506, + 510 + ], + "score": 1.0, + "content": "Fig. 2. The architecture of the encoder and the decoder were taken from DCGAN Radford et al.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 508, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 506, + 520 + ], + "score": 1.0, + "content": "(2015), with slight modifications. We added fully connected layers at the output of the encoder and to", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 519, + 506, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 506, + 532 + ], + "score": 1.0, + "content": "the input of the decoder. For the discriminator we used a simplified version of the VGG Simonyan &", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 531, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 505, + 543 + ], + "score": 1.0, + "content": "Zisserman (2014) network. As the input to the discriminator is an image pair, we concatenate them", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 542, + 209, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 209, + 554 + ], + "score": 1.0, + "content": "along the color channels.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 106, + 558, + 505, + 636 + ], + "lines": [ + { + "bbox": [ + 106, + 559, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 505, + 570 + ], + "score": 1.0, + "content": "Normalization. In our architecture both the encoder and the decoder networks use blocks with a", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 569, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 506, + 583 + ], + "score": 1.0, + "content": "convolutional layer, a nonlinear activation function (ReLU/leaky ReLU) and a normalization layer,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 581, + 506, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 506, + 593 + ], + "score": 1.0, + "content": "typically, batch normalization (BN). As an alternative to BN we consider the recently introduced", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 591, + 506, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 506, + 604 + ], + "score": 1.0, + "content": "instance normalization (IN) Ulyanov et al. (2017). The main difference between BN and IN is that", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 603, + 506, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 506, + 615 + ], + "score": 1.0, + "content": "the latter just computes the mean and standard deviation across the spatial domain of the input and", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 614, + 505, + 625 + ], + "spans": [ + { + "bbox": [ + 106, + 614, + 505, + 625 + ], + "score": 1.0, + "content": "not along the batch dimension. Thus, the shift and scaling for the output of each layer is the same at", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 624, + 491, + 638 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 491, + 638 + ], + "score": 1.0, + "content": "every iteration for the same input image. In practice, we find that IN improves the performance.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38 + }, + { + "type": "title", + "bbox": [ + 108, + 651, + 200, + 664 + ], + "lines": [ + { + "bbox": [ + 105, + 651, + 201, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 201, + 666 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "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": "We tested our method on the MNIST, Sprites and ShapeNet datasets. We performed ablation studies", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 687, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 701 + ], + "score": 1.0, + "content": "on the shortcut problem using ShapeNet cars. We focused on the effect of the feature dimensionality", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 235, + 712 + ], + "score": 1.0, + "content": "and having the adversarial term", + "type": "text" + }, + { + "bbox": [ + 235, + 699, + 300, + 710 + ], + "score": 0.89, + "content": "( \\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N } )", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 699, + 328, + 712 + ], + "score": 1.0, + "content": "or not", + "type": "text" + }, + { + "bbox": [ + 329, + 699, + 355, + 710 + ], + "score": 0.88, + "content": "( \\mathcal { L } _ { A E } )", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 699, + 505, + 712 + ], + "score": 1.0, + "content": ". We also show that in most cases the", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "reference ambiguity does not arise in practice (MNIST, Sprites, ShapeNet cars), we can only observe", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 721, + 317, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 317, + 733 + ], + "score": 1.0, + "content": "it when the data is more complex (ShapeNet chairs).", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 45 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 309, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 309, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2018", + "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": [ + 104, + 81, + 504, + 106 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 124, + 96 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 83, + 131, + 92 + ], + "score": 0.8, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 81, + 248, + 96 + ], + "score": 1.0, + "content": "is a subset of the domain of", + "type": "text" + }, + { + "bbox": [ + 249, + 85, + 255, + 92 + ], + "score": 0.43, + "content": "\\mathbf { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 81, + 287, + 96 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 287, + 82, + 362, + 96 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\int _ { \\mathcal { C } } p _ { \\mathbf { c } } ( \\mathbf { c } ) d \\mathbf { c } = 1 / 2 } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 81, + 506, + 96 + ], + "score": 1.0, + "content": ". Now, let us define the encoder as", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 438, + 107 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 202, + 106 + ], + "score": 0.92, + "content": "N _ { \\mathbf { v } } ( f ( \\mathbf { v } , \\mathbf { c } ) ) = T ( \\mathbf { v } , \\mathbf { c } )", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 94, + 438, + 107 + ], + "score": 1.0, + "content": ". By using the autoencoder constraint, the decoder satisfies", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 506, + 107 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 178, + 110, + 432, + 124 + ], + "lines": [ + { + "bbox": [ + 178, + 110, + 432, + 124 + ], + "spans": [ + { + "bbox": [ + 178, + 110, + 432, + 124 + ], + "score": 0.89, + "content": "\\operatorname { D e c } ( N _ { \\mathbf { v } } ( f ( \\mathbf { v } , \\mathbf { c } ) ) , N _ { \\mathbf { c } } ( f ( \\mathbf { v } , \\mathbf { c } ) ) ) = \\operatorname { D e c } ( T ( \\mathbf { v } , \\mathbf { c } ) , \\mathbf { c } ) = f ( \\mathbf { v } , \\mathbf { c } ) .", + "type": "interline_equation", + "image_path": "54a73ddb2a2bc6d4404212dd98ca2cbb4232243f51a7f880456ef26805957772.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 178, + 110, + 432, + 124 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 128, + 505, + 162 + ], + "lines": [ + { + "bbox": [ + 106, + 128, + 505, + 141 + ], + "spans": [ + { + "bbox": [ + 106, + 128, + 158, + 141 + ], + "score": 1.0, + "content": "Even though", + "type": "text" + }, + { + "bbox": [ + 158, + 128, + 189, + 140 + ], + "score": 0.93, + "content": "T ( \\mathbf { v } , \\mathbf { c } )", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 128, + 236, + 141 + ], + "score": 1.0, + "content": "depends on", + "type": "text" + }, + { + "bbox": [ + 236, + 131, + 243, + 138 + ], + "score": 0.31, + "content": "\\mathbf { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 128, + 461, + 141 + ], + "score": 1.0, + "content": "functionally, they are statistically independent. Because", + "type": "text" + }, + { + "bbox": [ + 461, + 128, + 505, + 141 + ], + "score": 0.91, + "content": "T ( \\mathbf { v } , \\mathbf { c } ) \\sim", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 140, + 506, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 141, + 118, + 151 + ], + "score": 0.84, + "content": "p _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 140, + 136, + 151 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 136, + 141, + 165, + 151 + ], + "score": 0.89, + "content": "\\mathbf { c } \\sim p _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 140, + 506, + 151 + ], + "score": 1.0, + "content": "by construction, our encoder-decoder pair defines a data distribution identical to that", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 151, + 189, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 189, + 163 + ], + "score": 1.0, + "content": "given as training set", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 128, + 506, + 163 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 166, + 400, + 180 + ], + "lines": [ + { + "bbox": [ + 210, + 166, + 400, + 180 + ], + "spans": [ + { + "bbox": [ + 210, + 166, + 400, + 180 + ], + "score": 0.89, + "content": "\\left[ \\operatorname { D e c } ( T ( \\mathbf { v } _ { 1 } , \\mathbf { c } ) , \\mathbf { c } ) , \\operatorname { D e c } ( T ( \\mathbf { v } _ { 2 } , \\mathbf { c } ) , \\mathbf { c } ) \\right] \\sim p _ { \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } } .", + "type": "interline_equation", + "image_path": "f6bcda88538e042aaccb0e9ecdcfead5aed1204c01d813be25799d45cf17aefe.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 210, + 166, + 400, + 180 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 183, + 505, + 218 + ], + "lines": [ + { + "bbox": [ + 105, + 182, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 370, + 198 + ], + "score": 1.0, + "content": "The feature disentanglement property is not satisfied because", + "type": "text" + }, + { + "bbox": [ + 371, + 183, + 505, + 196 + ], + "score": 0.92, + "content": "N _ { \\mathbf { v } } ( f ( \\mathbf { v } _ { 1 } , \\mathbf { c } _ { 1 } ) ) ~ = ~ T ( \\mathbf { v } _ { 1 } , \\mathbf { c } _ { 1 } ) ~ \\neq", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 194, + 506, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 195, + 225, + 207 + ], + "score": 0.9, + "content": "T ( \\mathbf { v } _ { 1 } , \\mathbf { c } _ { 2 } ) \\ = \\ N _ { \\mathbf { v } } ( f ( { \\bar { \\mathbf { v } } } _ { 1 } , \\mathbf { c } _ { 2 } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 194, + 256, + 208 + ], + "score": 1.0, + "content": ", when", + "type": "text" + }, + { + "bbox": [ + 256, + 195, + 291, + 206 + ], + "score": 0.89, + "content": "\\mathbf { c } _ { 1 } ~ \\in ~ { \\mathcal { C } }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 194, + 311, + 208 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 312, + 195, + 346, + 207 + ], + "score": 0.89, + "content": "\\mathbf { c } _ { 2 } \\notin \\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 194, + 506, + 208 + ], + "score": 1.0, + "content": ". Similarly, the data disentanglement", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 205, + 505, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 235, + 219 + ], + "score": 1.0, + "content": "property does not hold, because", + "type": "text" + }, + { + "bbox": [ + 235, + 207, + 404, + 218 + ], + "score": 0.91, + "content": "\\mathrm { D e c } ( T ( \\mathbf { v } _ { 1 } , \\mathbf { c } _ { 1 } ) , \\mathbf { c } _ { 1 } ) \\neq \\mathrm { D e c } ( T ( \\mathbf { v } _ { 1 } , \\mathbf { c } _ { 2 } ) , \\mathbf { c } _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 205, + 409, + 219 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 494, + 207, + 505, + 217 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 182, + 506, + 219 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 229, + 504, + 252 + ], + "lines": [ + { + "bbox": [ + 106, + 229, + 505, + 242 + ], + "spans": [ + { + "bbox": [ + 106, + 229, + 505, + 242 + ], + "score": 1.0, + "content": "The above proposition implies that we cannot provably disentangle all the factors of variation from", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 240, + 487, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 442, + 254 + ], + "score": 1.0, + "content": "weakly labeled data, even if we had access to all the data and knew the distributions", + "type": "text" + }, + { + "bbox": [ + 443, + 243, + 454, + 253 + ], + "score": 0.86, + "content": "p _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 240, + 472, + 254 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 472, + 243, + 483, + 253 + ], + "score": 0.84, + "content": "p _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 240, + 487, + 254 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 229, + 505, + 254 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 257, + 505, + 379 + ], + "lines": [ + { + "bbox": [ + 105, + 257, + 506, + 270 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 365, + 270 + ], + "score": 1.0, + "content": "To better understand it, let us consider a practical example. Let", + "type": "text" + }, + { + "bbox": [ + 365, + 258, + 423, + 270 + ], + "score": 0.93, + "content": "\\mathbf { v } \\sim \\mathcal { U } [ - \\pi , \\pi ]", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 257, + 506, + 270 + ], + "score": 1.0, + "content": "be the (continuous)", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 268, + 506, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 242, + 281 + ], + "score": 1.0, + "content": "viewpoint (the azimuth angle) and", + "type": "text" + }, + { + "bbox": [ + 242, + 269, + 289, + 280 + ], + "score": 0.91, + "content": "\\mathbf { c } \\sim B ( 0 . 5 )", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 268, + 367, + 281 + ], + "score": 1.0, + "content": "the car type, where", + "type": "text" + }, + { + "bbox": [ + 367, + 270, + 376, + 279 + ], + "score": 0.74, + "content": "\\mathcal { U }", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 268, + 506, + 281 + ], + "score": 1.0, + "content": "denotes the uniform distribution", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 279, + 506, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 124, + 293 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 280, + 152, + 291 + ], + "score": 0.91, + "content": "B ( 0 . 5 )", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 279, + 330, + 293 + ], + "score": 1.0, + "content": "the Bernoulli distribution with probability", + "type": "text" + }, + { + "bbox": [ + 330, + 280, + 460, + 292 + ], + "score": 0.91, + "content": "p _ { \\mathbf { c } } ( \\mathbf { c } = 0 ) = p _ { \\mathbf { c } } ( \\mathbf { c } = 1 ) = 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 279, + 506, + 293 + ], + "score": 1.0, + "content": "(i.e., there", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 291, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 321, + 303 + ], + "score": 1.0, + "content": "are only 2 car types). In this case, every instance of", + "type": "text" + }, + { + "bbox": [ + 321, + 293, + 329, + 300 + ], + "score": 0.41, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 291, + 403, + 303 + ], + "score": 1.0, + "content": "is iso-probable in", + "type": "text" + }, + { + "bbox": [ + 403, + 293, + 415, + 302 + ], + "score": 0.83, + "content": "p _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 291, + 505, + 303 + ], + "score": 1.0, + "content": "so we have the worst", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 300, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 372, + 315 + ], + "score": 1.0, + "content": "scenario for the reference ambiguity. We can define the function", + "type": "text" + }, + { + "bbox": [ + 372, + 302, + 459, + 313 + ], + "score": 0.9, + "content": "T ( \\mathbf { v } , \\mathbf { c } ) = \\mathbf { v } ( 2 \\mathbf { c } - 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 300, + 505, + 315 + ], + "score": 1.0, + "content": "so that the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 312, + 504, + 326 + ], + "spans": [ + { + "bbox": [ + 104, + 312, + 154, + 326 + ], + "score": 1.0, + "content": "mapping of", + "type": "text" + }, + { + "bbox": [ + 155, + 314, + 162, + 322 + ], + "score": 0.63, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 312, + 383, + 326 + ], + "score": 1.0, + "content": "is mirrored as we change the car type. By construction", + "type": "text" + }, + { + "bbox": [ + 384, + 313, + 465, + 324 + ], + "score": 0.9, + "content": "T ( \\mathbf { v } , \\mathbf { c } ) \\sim \\mathcal { U } [ - \\pi , \\pi ]", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 312, + 497, + 326 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 497, + 315, + 504, + 323 + ], + "score": 0.28, + "content": "\\mathbf { c }", + "type": "inline_equation" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 323, + 506, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 123, + 337 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 324, + 208, + 336 + ], + "score": 0.92, + "content": "T ( \\mathbf { v } , \\mathbf { c } _ { 1 } ) \\neq T ( \\mathbf { v } , \\mathbf { c } _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 323, + 222, + 337 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 223, + 324, + 249, + 335 + ], + "score": 0.92, + "content": "\\mathbf { v } \\neq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 323, + 266, + 337 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 266, + 324, + 299, + 335 + ], + "score": 0.91, + "content": "\\mathbf { c } _ { 1 } \\neq \\mathbf { c } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 323, + 464, + 337 + ], + "score": 1.0, + "content": ". So we cannot tell the difference between", + "type": "text" + }, + { + "bbox": [ + 465, + 324, + 473, + 334 + ], + "score": 0.82, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 323, + 506, + 337 + ], + "score": 1.0, + "content": "and the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 333, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 409, + 348 + ], + "score": 1.0, + "content": "ideal correct mapping to the viewpoint factor. This is equivalent to an encoder", + "type": "text" + }, + { + "bbox": [ + 409, + 334, + 505, + 347 + ], + "score": 0.9, + "content": "N _ { \\mathbf { v } } ( f ( \\mathbf { v } , \\mathbf { c } ) ) = T ( \\mathbf { v } , \\mathbf { c } )", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 345, + 506, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 506, + 358 + ], + "score": 1.0, + "content": "that reverses the ordering of the azimuth of car 1 with respect to car 0. Each car has its own reference", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 356, + 506, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 506, + 370 + ], + "score": 1.0, + "content": "system, and thus it is not possible to transfer the viewpoint from one system to the other, as it is", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 366, + 185, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 185, + 381 + ], + "score": 1.0, + "content": "illustrated in fig. 1.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 17, + "bbox_fs": [ + 104, + 257, + 506, + 381 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 392, + 209, + 403 + ], + "lines": [ + { + "bbox": [ + 105, + 391, + 210, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 210, + 405 + ], + "score": 1.0, + "content": "3.4 IMPLEMENTATION", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 412, + 504, + 435 + ], + "lines": [ + { + "bbox": [ + 105, + 412, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 483, + 425 + ], + "score": 1.0, + "content": "In our implementation we use convolutional neural networks for all the models. We denote with", + "type": "text" + }, + { + "bbox": [ + 483, + 413, + 489, + 423 + ], + "score": 0.8, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 412, + 505, + 425 + ], + "score": 1.0, + "content": "the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 423, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 506, + 437 + ], + "score": 1.0, + "content": "parameters associated to each network. Then, the optimization of the composite loss can be written as", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 412, + 506, + 437 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 199, + 439, + 412, + 461 + ], + "lines": [ + { + "bbox": [ + 199, + 439, + 412, + 461 + ], + "spans": [ + { + "bbox": [ + 199, + 439, + 412, + 461 + ], + "score": 0.92, + "content": "\\hat { \\theta } _ { \\mathrm { { D e c } } } , \\hat { \\theta } _ { \\mathrm { { E n c } } } , \\hat { \\theta } _ { \\mathrm { { D s c } } } = \\arg \\operatorname* { m i n } _ { \\theta _ { \\mathrm { { D e c } } } , \\theta _ { \\mathrm { { E n c } } } } \\operatorname* { m a x } _ { \\theta _ { \\mathrm { { D s c } } } } \\mathcal { L } ( \\theta _ { \\mathrm { { D e c } } } , \\theta _ { \\mathrm { { E n c } } } , \\theta _ { \\mathrm { { D s c } } } ) .", + "type": "interline_equation", + "image_path": "ad8a7a239b6e53b3ca59924edbecb1c1d2d6c239f4721fbd445add5e1ca1471a.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 199, + 439, + 412, + 461 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 464, + 505, + 553 + ], + "lines": [ + { + "bbox": [ + 104, + 464, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 104, + 464, + 153, + 478 + ], + "score": 1.0, + "content": "We choose", + "type": "text" + }, + { + "bbox": [ + 154, + 466, + 180, + 475 + ], + "score": 0.9, + "content": "\\lambda = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 464, + 506, + 478 + ], + "score": 1.0, + "content": "and also add regularization to the adversarial loss so that each logarithm has a", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 475, + 506, + 488 + ], + "spans": [ + { + "bbox": [ + 104, + 475, + 221, + 488 + ], + "score": 1.0, + "content": "minimum value. We define", + "type": "text" + }, + { + "bbox": [ + 221, + 476, + 389, + 488 + ], + "score": 0.91, + "content": "\\log _ { \\epsilon } \\bar { \\mathrm { D s c } } ( \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } ) = \\log ( \\epsilon + \\mathrm { D s c } ( \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 475, + 506, + 488 + ], + "score": 1.0, + "content": "(and similarly for the other", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 485, + 506, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 214, + 500 + ], + "score": 1.0, + "content": "logarithmic term) and use", + "type": "text" + }, + { + "bbox": [ + 215, + 487, + 259, + 497 + ], + "score": 0.89, + "content": "\\epsilon = 1 0 ^ { - 1 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 485, + 506, + 500 + ], + "score": 1.0, + "content": ". The main components of our neural network are shown in", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 498, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 506, + 510 + ], + "score": 1.0, + "content": "Fig. 2. The architecture of the encoder and the decoder were taken from DCGAN Radford et al.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 508, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 506, + 520 + ], + "score": 1.0, + "content": "(2015), with slight modifications. We added fully connected layers at the output of the encoder and to", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 519, + 506, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 506, + 532 + ], + "score": 1.0, + "content": "the input of the decoder. For the discriminator we used a simplified version of the VGG Simonyan &", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 531, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 505, + 543 + ], + "score": 1.0, + "content": "Zisserman (2014) network. As the input to the discriminator is an image pair, we concatenate them", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 542, + 209, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 209, + 554 + ], + "score": 1.0, + "content": "along the color channels.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30.5, + "bbox_fs": [ + 104, + 464, + 506, + 554 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 558, + 505, + 636 + ], + "lines": [ + { + "bbox": [ + 106, + 559, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 505, + 570 + ], + "score": 1.0, + "content": "Normalization. In our architecture both the encoder and the decoder networks use blocks with a", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 569, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 506, + 583 + ], + "score": 1.0, + "content": "convolutional layer, a nonlinear activation function (ReLU/leaky ReLU) and a normalization layer,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 581, + 506, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 506, + 593 + ], + "score": 1.0, + "content": "typically, batch normalization (BN). As an alternative to BN we consider the recently introduced", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 591, + 506, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 506, + 604 + ], + "score": 1.0, + "content": "instance normalization (IN) Ulyanov et al. (2017). The main difference between BN and IN is that", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 603, + 506, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 506, + 615 + ], + "score": 1.0, + "content": "the latter just computes the mean and standard deviation across the spatial domain of the input and", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 614, + 505, + 625 + ], + "spans": [ + { + "bbox": [ + 106, + 614, + 505, + 625 + ], + "score": 1.0, + "content": "not along the batch dimension. Thus, the shift and scaling for the output of each layer is the same at", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 624, + 491, + 638 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 491, + 638 + ], + "score": 1.0, + "content": "every iteration for the same input image. In practice, we find that IN improves the performance.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 559, + 506, + 638 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 651, + 200, + 664 + ], + "lines": [ + { + "bbox": [ + 105, + 651, + 201, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 201, + 666 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "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": "We tested our method on the MNIST, Sprites and ShapeNet datasets. We performed ablation studies", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 687, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 701 + ], + "score": 1.0, + "content": "on the shortcut problem using ShapeNet cars. We focused on the effect of the feature dimensionality", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 235, + 712 + ], + "score": 1.0, + "content": "and having the adversarial term", + "type": "text" + }, + { + "bbox": [ + 235, + 699, + 300, + 710 + ], + "score": 0.89, + "content": "( \\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N } )", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 699, + 328, + 712 + ], + "score": 1.0, + "content": "or not", + "type": "text" + }, + { + "bbox": [ + 329, + 699, + 355, + 710 + ], + "score": 0.88, + "content": "( \\mathcal { L } _ { A E } )", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 699, + 505, + 712 + ], + "score": 1.0, + "content": ". We also show that in most cases the", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "reference ambiguity does not arise in practice (MNIST, Sprites, ShapeNet cars), we can only observe", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 721, + 317, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 317, + 733 + ], + "score": 1.0, + "content": "it when the data is more complex (ShapeNet chairs).", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 677, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 217, + 80, + 394, + 226 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 217, + 80, + 394, + 226 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 217, + 80, + 394, + 226 + ], + "spans": [ + { + "bbox": [ + 217, + 80, + 394, + 226 + ], + "score": 0.968, + "type": "image", + "image_path": "90a0f2e4ff16668ce677bfd81f19be4a9e730377fbd5bbdf49085baa9daeb981.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 217, + 80, + 394, + 93.27272727272728 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 217, + 93.27272727272728, + 394, + 106.54545454545456 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 217, + 106.54545454545456, + 394, + 119.81818181818184 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 217, + 119.81818181818184, + 394, + 133.09090909090912 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 217, + 133.09090909090912, + 394, + 146.3636363636364 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 217, + 146.3636363636364, + 394, + 159.63636363636368 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 217, + 159.63636363636368, + 394, + 172.90909090909096 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 217, + 172.90909090909096, + 394, + 186.18181818181824 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 217, + 186.18181818181824, + 394, + 199.45454545454552 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 217, + 199.45454545454552, + 394, + 212.7272727272728 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 217, + 212.7272727272728, + 394, + 226.00000000000009 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 239, + 506, + 272 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 238, + 506, + 251 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 506, + 251 + ], + "score": 1.0, + "content": "Figure 2: Learning to disentangle factors of variation. The scheme above shows how the encoder", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 250, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 505, + 262 + ], + "score": 1.0, + "content": "(Enc), the decoder (Dec) and the discriminator (Dsc) are trained with input triplets. The components", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 260, + 247, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 247, + 273 + ], + "score": 1.0, + "content": "with the same name share weights.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + } + ], + "index": 8.5 + }, + { + "type": "title", + "bbox": [ + 108, + 298, + 221, + 309 + ], + "lines": [ + { + "bbox": [ + 105, + 298, + 223, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 223, + 310 + ], + "score": 1.0, + "content": "4.1 SHORTCUT PROBLEM", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 320, + 505, + 398 + ], + "lines": [ + { + "bbox": [ + 106, + 321, + 506, + 333 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 506, + 333 + ], + "score": 1.0, + "content": "ShapeNet cars. The ShapeNet dataset Chang et al. (2015) contains 3D objects than we can render", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 332, + 506, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 332, + 506, + 344 + ], + "score": 1.0, + "content": "from different viewpoints. We consider only one category (cars) for a set of fixed viewpoints. Cars", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 342, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 505, + 356 + ], + "score": 1.0, + "content": "have high intraclass variability and they do not have rotational symmetries. We used approximately", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 354, + 506, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 506, + 366 + ], + "score": 1.0, + "content": "3K car types for training and 300 for testing. We rendered 24 possible viewpoints around each object", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 365, + 505, + 377 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 505, + 377 + ], + "score": 1.0, + "content": "in a full circle, resulting in 80K images in total. The elevation was fixed to 15 degrees and azimuth", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 375, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 106, + 375, + 439, + 388 + ], + "score": 1.0, + "content": "angles were spaced 15 degrees apart. We normalized the size of the objects to fit in a", + "type": "text" + }, + { + "bbox": [ + 439, + 376, + 482, + 386 + ], + "score": 0.9, + "content": "1 0 0 \\times 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 375, + 505, + 388 + ], + "score": 1.0, + "content": "pixel", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 385, + 389, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 293, + 401 + ], + "score": 1.0, + "content": "bounding box, and placed it in the middle of a", + "type": "text" + }, + { + "bbox": [ + 293, + 387, + 336, + 397 + ], + "score": 0.9, + "content": "1 2 8 \\times 1 2 8", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 385, + 389, + 401 + ], + "score": 1.0, + "content": "pixel image.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 403, + 506, + 470 + ], + "lines": [ + { + "bbox": [ + 105, + 402, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 435, + 416 + ], + "score": 1.0, + "content": "Fig. 3 shows the attribute transfer on the Shapenet cars. We compare the methods", + "type": "text" + }, + { + "bbox": [ + 436, + 404, + 457, + 415 + ], + "score": 0.9, + "content": "\\mathcal { L } _ { A E }", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 402, + 475, + 416 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 475, + 404, + 506, + 415 + ], + "score": 0.89, + "content": "\\mathcal { L } _ { A E } +", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 107, + 414, + 506, + 427 + ], + "spans": [ + { + "bbox": [ + 107, + 415, + 134, + 426 + ], + "score": 0.9, + "content": "\\mathcal { L } _ { G A N }", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 414, + 282, + 427 + ], + "score": 1.0, + "content": "with different feature dimension of", + "type": "text" + }, + { + "bbox": [ + 283, + 415, + 297, + 426 + ], + "score": 0.89, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 414, + 437, + 427 + ], + "score": 1.0, + "content": ". The size of the common feature", + "type": "text" + }, + { + "bbox": [ + 437, + 415, + 451, + 425 + ], + "score": 0.87, + "content": "N _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 414, + 506, + 427 + ], + "score": 1.0, + "content": "was fixed to", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 424, + 506, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 441, + 438 + ], + "score": 1.0, + "content": "1024 dimensions. We can observe that the transferring performance degrades for", + "type": "text" + }, + { + "bbox": [ + 441, + 426, + 461, + 437 + ], + "score": 0.91, + "content": "\\mathcal { L } _ { A E }", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 424, + 506, + 438 + ], + "score": 1.0, + "content": ", when we", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 437, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 218, + 448 + ], + "score": 1.0, + "content": "increase the feature size of", + "type": "text" + }, + { + "bbox": [ + 218, + 437, + 232, + 447 + ], + "score": 0.89, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 437, + 505, + 448 + ], + "score": 1.0, + "content": ". As expected, the autoencoder takes the shortcut and tries to store", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 446, + 507, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 188, + 461 + ], + "score": 1.0, + "content": "all information into", + "type": "text" + }, + { + "bbox": [ + 189, + 448, + 203, + 459 + ], + "score": 0.9, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 446, + 254, + 461 + ], + "score": 1.0, + "content": ". The model", + "type": "text" + }, + { + "bbox": [ + 254, + 447, + 314, + 459 + ], + "score": 0.92, + "content": "\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N }", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 446, + 507, + 461 + ], + "score": 1.0, + "content": "instead renders images without loss of quality,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 458, + 268, + 471 + ], + "spans": [ + { + "bbox": [ + 106, + 458, + 268, + 471 + ], + "score": 1.0, + "content": "independently of the feature dimension.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24.5 + }, + { + "type": "image", + "bbox": [ + 114, + 483, + 497, + 585 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 114, + 483, + 497, + 585 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 114, + 483, + 497, + 585 + ], + "spans": [ + { + "bbox": [ + 114, + 483, + 497, + 585 + ], + "score": 0.972, + "type": "image", + "image_path": "5c12b702322a9c6bbc47ab8de3e5581a0bb893cfe305a9a1e478823279c0c10d.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 114, + 483, + 497, + 517.0 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 114, + 517.0, + 497, + 551.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 114, + 551.0, + 497, + 585.0 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 593, + 505, + 638 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 593, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 379, + 606 + ], + "score": 1.0, + "content": "Figure 3: Feature transfer on Shapenet. (a) synthesized images with", + "type": "text" + }, + { + "bbox": [ + 379, + 594, + 399, + 604 + ], + "score": 0.9, + "content": "\\mathcal { L } _ { A E }", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 593, + 506, + 606 + ], + "score": 1.0, + "content": ", where the top row shows", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 604, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 617 + ], + "score": 1.0, + "content": "images from which the car type is taken. The second, third and fourth row show the decoder renderings", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 292, + 628 + ], + "score": 1.0, + "content": "using 2, 16 and 128 dimensions for the feature", + "type": "text" + }, + { + "bbox": [ + 292, + 615, + 306, + 626 + ], + "score": 0.87, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 615, + 423, + 628 + ], + "score": 1.0, + "content": ". (b) images synthesized with", + "type": "text" + }, + { + "bbox": [ + 423, + 615, + 483, + 627 + ], + "score": 0.92, + "content": "\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 615, + 505, + 628 + ], + "score": 1.0, + "content": ". The", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 627, + 375, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 375, + 639 + ], + "score": 1.0, + "content": "setting for the inputs and feature dimensions are the same as in (a).", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32.5 + } + ], + "index": 30.75 + }, + { + "type": "text", + "bbox": [ + 106, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 655, + 504, + 666 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 316, + 666 + ], + "score": 1.0, + "content": "In Fig. 4 we visualize the t-SNE embeddings of the", + "type": "text" + }, + { + "bbox": [ + 316, + 655, + 331, + 666 + ], + "score": 0.89, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 655, + 504, + 666 + ], + "score": 1.0, + "content": "features for several models using different", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 665, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 200, + 679 + ], + "score": 1.0, + "content": "feature sizes. For the", + "type": "text" + }, + { + "bbox": [ + 200, + 666, + 215, + 676 + ], + "score": 0.78, + "content": "2 D", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 665, + 453, + 679 + ], + "score": 1.0, + "content": "case, we do not modify the data. We can see that both", + "type": "text" + }, + { + "bbox": [ + 453, + 666, + 474, + 677 + ], + "score": 0.91, + "content": "\\mathcal { L } _ { A E }", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 665, + 506, + 679 + ], + "score": 1.0, + "content": "with 2", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 170, + 690 + ], + "score": 1.0, + "content": "dimensions and", + "type": "text" + }, + { + "bbox": [ + 170, + 677, + 230, + 688 + ], + "score": 0.92, + "content": "\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N }", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 676, + 398, + 690 + ], + "score": 1.0, + "content": "with 128 separate the viewpoints well, but", + "type": "text" + }, + { + "bbox": [ + 399, + 677, + 419, + 688 + ], + "score": 0.91, + "content": "\\mathcal { L } _ { A E }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "with 128 dimensions", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 688, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 455, + 700 + ], + "score": 1.0, + "content": "does not due to the shortcut problem. We investigate the effect of dimensionality of the", + "type": "text" + }, + { + "bbox": [ + 455, + 688, + 470, + 699 + ], + "score": 0.88, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 688, + 506, + 700 + ], + "score": 1.0, + "content": "features", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "on the nearest neighbor classification task. The performance is measured by the mean average", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 165, + 722 + ], + "score": 1.0, + "content": "precision. For", + "type": "text" + }, + { + "bbox": [ + 166, + 710, + 180, + 721 + ], + "score": 0.89, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 709, + 466, + 722 + ], + "score": 1.0, + "content": "we use the viewpoint as ground truth. Fig. 4 also shows the results on", + "type": "text" + }, + { + "bbox": [ + 466, + 710, + 487, + 721 + ], + "score": 0.91, + "content": "\\mathcal { L } _ { A E }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 721, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 165, + 732 + ], + "score": 0.93, + "content": "\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N }", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 721, + 252, + 733 + ], + "score": 1.0, + "content": "models with different", + "type": "text" + }, + { + "bbox": [ + 253, + 721, + 267, + 732 + ], + "score": 0.89, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 721, + 419, + 733 + ], + "score": 1.0, + "content": "feature dimensions. The dimension of", + "type": "text" + }, + { + "bbox": [ + 419, + 721, + 433, + 732 + ], + "score": 0.89, + "content": "N _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 721, + 506, + 733 + ], + "score": 1.0, + "content": "was fixed to 1024", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "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" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 106, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 309, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 309, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 217, + 80, + 394, + 226 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 217, + 80, + 394, + 226 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 217, + 80, + 394, + 226 + ], + "spans": [ + { + "bbox": [ + 217, + 80, + 394, + 226 + ], + "score": 0.968, + "type": "image", + "image_path": "90a0f2e4ff16668ce677bfd81f19be4a9e730377fbd5bbdf49085baa9daeb981.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 217, + 80, + 394, + 93.27272727272728 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 217, + 93.27272727272728, + 394, + 106.54545454545456 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 217, + 106.54545454545456, + 394, + 119.81818181818184 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 217, + 119.81818181818184, + 394, + 133.09090909090912 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 217, + 133.09090909090912, + 394, + 146.3636363636364 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 217, + 146.3636363636364, + 394, + 159.63636363636368 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 217, + 159.63636363636368, + 394, + 172.90909090909096 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 217, + 172.90909090909096, + 394, + 186.18181818181824 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 217, + 186.18181818181824, + 394, + 199.45454545454552 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 217, + 199.45454545454552, + 394, + 212.7272727272728 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 217, + 212.7272727272728, + 394, + 226.00000000000009 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 239, + 506, + 272 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 238, + 506, + 251 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 506, + 251 + ], + "score": 1.0, + "content": "Figure 2: Learning to disentangle factors of variation. The scheme above shows how the encoder", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 250, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 505, + 262 + ], + "score": 1.0, + "content": "(Enc), the decoder (Dec) and the discriminator (Dsc) are trained with input triplets. The components", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 260, + 247, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 247, + 273 + ], + "score": 1.0, + "content": "with the same name share weights.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + } + ], + "index": 8.5 + }, + { + "type": "title", + "bbox": [ + 108, + 298, + 221, + 309 + ], + "lines": [ + { + "bbox": [ + 105, + 298, + 223, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 223, + 310 + ], + "score": 1.0, + "content": "4.1 SHORTCUT PROBLEM", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 320, + 505, + 398 + ], + "lines": [ + { + "bbox": [ + 106, + 321, + 506, + 333 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 506, + 333 + ], + "score": 1.0, + "content": "ShapeNet cars. The ShapeNet dataset Chang et al. (2015) contains 3D objects than we can render", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 332, + 506, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 332, + 506, + 344 + ], + "score": 1.0, + "content": "from different viewpoints. We consider only one category (cars) for a set of fixed viewpoints. Cars", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 342, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 505, + 356 + ], + "score": 1.0, + "content": "have high intraclass variability and they do not have rotational symmetries. We used approximately", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 354, + 506, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 506, + 366 + ], + "score": 1.0, + "content": "3K car types for training and 300 for testing. We rendered 24 possible viewpoints around each object", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 365, + 505, + 377 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 505, + 377 + ], + "score": 1.0, + "content": "in a full circle, resulting in 80K images in total. The elevation was fixed to 15 degrees and azimuth", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 375, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 106, + 375, + 439, + 388 + ], + "score": 1.0, + "content": "angles were spaced 15 degrees apart. We normalized the size of the objects to fit in a", + "type": "text" + }, + { + "bbox": [ + 439, + 376, + 482, + 386 + ], + "score": 0.9, + "content": "1 0 0 \\times 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 375, + 505, + 388 + ], + "score": 1.0, + "content": "pixel", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 385, + 389, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 293, + 401 + ], + "score": 1.0, + "content": "bounding box, and placed it in the middle of a", + "type": "text" + }, + { + "bbox": [ + 293, + 387, + 336, + 397 + ], + "score": 0.9, + "content": "1 2 8 \\times 1 2 8", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 385, + 389, + 401 + ], + "score": 1.0, + "content": "pixel image.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 321, + 506, + 401 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 403, + 506, + 470 + ], + "lines": [ + { + "bbox": [ + 105, + 402, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 435, + 416 + ], + "score": 1.0, + "content": "Fig. 3 shows the attribute transfer on the Shapenet cars. We compare the methods", + "type": "text" + }, + { + "bbox": [ + 436, + 404, + 457, + 415 + ], + "score": 0.9, + "content": "\\mathcal { L } _ { A E }", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 402, + 475, + 416 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 475, + 404, + 506, + 415 + ], + "score": 0.89, + "content": "\\mathcal { L } _ { A E } +", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 107, + 414, + 506, + 427 + ], + "spans": [ + { + "bbox": [ + 107, + 415, + 134, + 426 + ], + "score": 0.9, + "content": "\\mathcal { L } _ { G A N }", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 414, + 282, + 427 + ], + "score": 1.0, + "content": "with different feature dimension of", + "type": "text" + }, + { + "bbox": [ + 283, + 415, + 297, + 426 + ], + "score": 0.89, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 414, + 437, + 427 + ], + "score": 1.0, + "content": ". The size of the common feature", + "type": "text" + }, + { + "bbox": [ + 437, + 415, + 451, + 425 + ], + "score": 0.87, + "content": "N _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 414, + 506, + 427 + ], + "score": 1.0, + "content": "was fixed to", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 424, + 506, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 441, + 438 + ], + "score": 1.0, + "content": "1024 dimensions. We can observe that the transferring performance degrades for", + "type": "text" + }, + { + "bbox": [ + 441, + 426, + 461, + 437 + ], + "score": 0.91, + "content": "\\mathcal { L } _ { A E }", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 424, + 506, + 438 + ], + "score": 1.0, + "content": ", when we", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 437, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 218, + 448 + ], + "score": 1.0, + "content": "increase the feature size of", + "type": "text" + }, + { + "bbox": [ + 218, + 437, + 232, + 447 + ], + "score": 0.89, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 437, + 505, + 448 + ], + "score": 1.0, + "content": ". As expected, the autoencoder takes the shortcut and tries to store", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 446, + 507, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 188, + 461 + ], + "score": 1.0, + "content": "all information into", + "type": "text" + }, + { + "bbox": [ + 189, + 448, + 203, + 459 + ], + "score": 0.9, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 446, + 254, + 461 + ], + "score": 1.0, + "content": ". The model", + "type": "text" + }, + { + "bbox": [ + 254, + 447, + 314, + 459 + ], + "score": 0.92, + "content": "\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N }", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 446, + 507, + 461 + ], + "score": 1.0, + "content": "instead renders images without loss of quality,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 458, + 268, + 471 + ], + "spans": [ + { + "bbox": [ + 106, + 458, + 268, + 471 + ], + "score": 1.0, + "content": "independently of the feature dimension.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 402, + 507, + 471 + ] + }, + { + "type": "image", + "bbox": [ + 114, + 483, + 497, + 585 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 114, + 483, + 497, + 585 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 114, + 483, + 497, + 585 + ], + "spans": [ + { + "bbox": [ + 114, + 483, + 497, + 585 + ], + "score": 0.972, + "type": "image", + "image_path": "5c12b702322a9c6bbc47ab8de3e5581a0bb893cfe305a9a1e478823279c0c10d.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 114, + 483, + 497, + 517.0 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 114, + 517.0, + 497, + 551.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 114, + 551.0, + 497, + 585.0 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 593, + 505, + 638 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 593, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 379, + 606 + ], + "score": 1.0, + "content": "Figure 3: Feature transfer on Shapenet. (a) synthesized images with", + "type": "text" + }, + { + "bbox": [ + 379, + 594, + 399, + 604 + ], + "score": 0.9, + "content": "\\mathcal { L } _ { A E }", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 593, + 506, + 606 + ], + "score": 1.0, + "content": ", where the top row shows", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 604, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 617 + ], + "score": 1.0, + "content": "images from which the car type is taken. The second, third and fourth row show the decoder renderings", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 292, + 628 + ], + "score": 1.0, + "content": "using 2, 16 and 128 dimensions for the feature", + "type": "text" + }, + { + "bbox": [ + 292, + 615, + 306, + 626 + ], + "score": 0.87, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 615, + 423, + 628 + ], + "score": 1.0, + "content": ". (b) images synthesized with", + "type": "text" + }, + { + "bbox": [ + 423, + 615, + 483, + 627 + ], + "score": 0.92, + "content": "\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 615, + 505, + 628 + ], + "score": 1.0, + "content": ". The", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 627, + 375, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 375, + 639 + ], + "score": 1.0, + "content": "setting for the inputs and feature dimensions are the same as in (a).", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32.5 + } + ], + "index": 30.75 + }, + { + "type": "text", + "bbox": [ + 106, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 655, + 504, + 666 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 316, + 666 + ], + "score": 1.0, + "content": "In Fig. 4 we visualize the t-SNE embeddings of the", + "type": "text" + }, + { + "bbox": [ + 316, + 655, + 331, + 666 + ], + "score": 0.89, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 655, + 504, + 666 + ], + "score": 1.0, + "content": "features for several models using different", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 665, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 200, + 679 + ], + "score": 1.0, + "content": "feature sizes. For the", + "type": "text" + }, + { + "bbox": [ + 200, + 666, + 215, + 676 + ], + "score": 0.78, + "content": "2 D", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 665, + 453, + 679 + ], + "score": 1.0, + "content": "case, we do not modify the data. We can see that both", + "type": "text" + }, + { + "bbox": [ + 453, + 666, + 474, + 677 + ], + "score": 0.91, + "content": "\\mathcal { L } _ { A E }", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 665, + 506, + 679 + ], + "score": 1.0, + "content": "with 2", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 170, + 690 + ], + "score": 1.0, + "content": "dimensions and", + "type": "text" + }, + { + "bbox": [ + 170, + 677, + 230, + 688 + ], + "score": 0.92, + "content": "\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N }", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 676, + 398, + 690 + ], + "score": 1.0, + "content": "with 128 separate the viewpoints well, but", + "type": "text" + }, + { + "bbox": [ + 399, + 677, + 419, + 688 + ], + "score": 0.91, + "content": "\\mathcal { L } _ { A E }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "with 128 dimensions", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 688, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 455, + 700 + ], + "score": 1.0, + "content": "does not due to the shortcut problem. We investigate the effect of dimensionality of the", + "type": "text" + }, + { + "bbox": [ + 455, + 688, + 470, + 699 + ], + "score": 0.88, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 688, + 506, + 700 + ], + "score": 1.0, + "content": "features", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "on the nearest neighbor classification task. The performance is measured by the mean average", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 165, + 722 + ], + "score": 1.0, + "content": "precision. For", + "type": "text" + }, + { + "bbox": [ + 166, + 710, + 180, + 721 + ], + "score": 0.89, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 709, + 466, + 722 + ], + "score": 1.0, + "content": "we use the viewpoint as ground truth. Fig. 4 also shows the results on", + "type": "text" + }, + { + "bbox": [ + 466, + 710, + 487, + 721 + ], + "score": 0.91, + "content": "\\mathcal { L } _ { A E }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 721, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 165, + 732 + ], + "score": 0.93, + "content": "\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N }", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 721, + 252, + 733 + ], + "score": 1.0, + "content": "models with different", + "type": "text" + }, + { + "bbox": [ + 253, + 721, + 267, + 732 + ], + "score": 0.89, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 721, + 419, + 733 + ], + "score": 1.0, + "content": "feature dimensions. The dimension of", + "type": "text" + }, + { + "bbox": [ + 419, + 721, + 433, + 732 + ], + "score": 0.89, + "content": "N _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 721, + 506, + 733 + ], + "score": 1.0, + "content": "was fixed to 1024", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 358, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 337, + 371 + ], + "score": 1.0, + "content": "for this experiment. One can now see quantitatively that", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 337, + 359, + 358, + 370 + ], + "score": 0.9, + "content": "\\mathcal { L } _ { A E }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 358, + 358, + 461, + 371 + ], + "score": 1.0, + "content": "is sensitive to the size of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 462, + 359, + 476, + 370 + ], + "score": 0.89, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 476, + 358, + 505, + 371 + ], + "score": 1.0, + "content": ", while", + "type": "text", + "cross_page": true + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 370, + 398, + 383 + ], + "spans": [ + { + "bbox": [ + 106, + 370, + 166, + 381 + ], + "score": 0.91, + "content": "\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 166, + 370, + 194, + 383 + ], + "score": 1.0, + "content": "is not.", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 195, + 370, + 254, + 381 + ], + "score": 0.92, + "content": "\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 255, + 370, + 398, + 383 + ], + "score": 1.0, + "content": "also achieves a better performance.", + "type": "text", + "cross_page": true + } + ], + "index": 15 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 655, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 147, + 79, + 464, + 170 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 147, + 79, + 464, + 170 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 147, + 79, + 464, + 170 + ], + "spans": [ + { + "bbox": [ + 147, + 79, + 464, + 170 + ], + "score": 0.959, + "type": "image", + "image_path": "682c15c0ae852d517b1ac69b302654a800de4fd0f02c77d85fbeaeb17fe5a1ca.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 147, + 79, + 464, + 109.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 147, + 109.33333333333333, + 464, + 139.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 147, + 139.66666666666666, + 464, + 170.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 178, + 506, + 234 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 178, + 506, + 191 + ], + "spans": [ + { + "bbox": [ + 105, + 178, + 368, + 191 + ], + "score": 1.0, + "content": "Figure 4: The effect of dimensions and objective function on", + "type": "text" + }, + { + "bbox": [ + 368, + 180, + 382, + 190 + ], + "score": 0.88, + "content": "N _ { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 178, + 506, + 191 + ], + "score": 1.0, + "content": "features. (a), (b), (c) t-SNE", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 190, + 505, + 202 + ], + "spans": [ + { + "bbox": [ + 106, + 190, + 173, + 202 + ], + "score": 1.0, + "content": "embeddings on", + "type": "text" + }, + { + "bbox": [ + 173, + 190, + 188, + 201 + ], + "score": 0.87, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 190, + 505, + 202 + ], + "score": 1.0, + "content": "features. Colors correspond to the ground truth viewpoint. The objective", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 201, + 507, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 201, + 177, + 214 + ], + "score": 1.0, + "content": "functions and the", + "type": "text" + }, + { + "bbox": [ + 177, + 201, + 191, + 212 + ], + "score": 0.88, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 201, + 271, + 214 + ], + "score": 1.0, + "content": "dimensions are: (a)", + "type": "text" + }, + { + "bbox": [ + 271, + 201, + 292, + 212 + ], + "score": 0.7, + "content": "\\mathcal { L } _ { A E }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 201, + 334, + 214 + ], + "score": 1.0, + "content": "2 dim, (b)", + "type": "text" + }, + { + "bbox": [ + 335, + 201, + 356, + 212 + ], + "score": 0.86, + "content": "\\mathcal { L } _ { A E }", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 201, + 408, + 214 + ], + "score": 1.0, + "content": "128 dim, (c)", + "type": "text" + }, + { + "bbox": [ + 408, + 201, + 473, + 212 + ], + "score": 0.78, + "content": "\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N } \\mathrm { ~ 1 ~ }", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 201, + 507, + 214 + ], + "score": 1.0, + "content": "128 dim.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 210, + 506, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 506, + 226 + ], + "score": 1.0, + "content": "(d) Mean average precision curves for the viewpoint prediction from the viewpoint feature using", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 222, + 271, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 253, + 236 + ], + "score": 1.0, + "content": "different models and dimensions for", + "type": "text" + }, + { + "bbox": [ + 253, + 223, + 267, + 234 + ], + "score": 0.89, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 222, + 271, + 236 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "table", + "bbox": [ + 221, + 280, + 389, + 337 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 246, + 504, + 270 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 245, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 292, + 260 + ], + "score": 1.0, + "content": "Table 1: Nearest neighbor classification on", + "type": "text" + }, + { + "bbox": [ + 293, + 248, + 307, + 258 + ], + "score": 0.89, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 245, + 328, + 260 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 329, + 248, + 343, + 258 + ], + "score": 0.87, + "content": "N _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 245, + 505, + 260 + ], + "score": 1.0, + "content": "features using different normalization", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 258, + 227, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 227, + 271 + ], + "score": 1.0, + "content": "techniques on ShapeNet cars.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "table_body", + "bbox": [ + 221, + 280, + 389, + 337 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 221, + 280, + 389, + 337 + ], + "spans": [ + { + "bbox": [ + 221, + 280, + 389, + 337 + ], + "score": 0.975, + "html": "
NormalizationNv mAPNc mAP
None0.470.13
Batch0.500.08
Instance0.500.20
", + "type": "table", + "image_path": "b952c7556c42a601464b737e324c1e90893cbadb4fec0f246e68d9f3dde1e3eb.jpg" + } + ] + } + ], + "index": 11.5, + "virtual_lines": [ + { + "bbox": [ + 221, + 280, + 389, + 294.25 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 221, + 294.25, + 389, + 308.5 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 221, + 308.5, + 389, + 322.75 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 221, + 322.75, + 389, + 337.0 + ], + "spans": [], + "index": 13 + } + ] + } + ], + "index": 10.0 + }, + { + "type": "text", + "bbox": [ + 105, + 358, + 504, + 381 + ], + "lines": [ + { + "bbox": [ + 106, + 358, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 337, + 371 + ], + "score": 1.0, + "content": "for this experiment. One can now see quantitatively that", + "type": "text" + }, + { + "bbox": [ + 337, + 359, + 358, + 370 + ], + "score": 0.9, + "content": "\\mathcal { L } _ { A E }", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 358, + 461, + 371 + ], + "score": 1.0, + "content": "is sensitive to the size of", + "type": "text" + }, + { + "bbox": [ + 462, + 359, + 476, + 370 + ], + "score": 0.89, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 358, + 505, + 371 + ], + "score": 1.0, + "content": ", while", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 370, + 398, + 383 + ], + "spans": [ + { + "bbox": [ + 106, + 370, + 166, + 381 + ], + "score": 0.91, + "content": "\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N }", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 370, + 194, + 383 + ], + "score": 1.0, + "content": "is not.", + "type": "text" + }, + { + "bbox": [ + 195, + 370, + 254, + 381 + ], + "score": 0.92, + "content": "\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N }", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 370, + 398, + 383 + ], + "score": 1.0, + "content": "also achieves a better performance.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 106, + 386, + 506, + 453 + ], + "lines": [ + { + "bbox": [ + 105, + 385, + 506, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 506, + 399 + ], + "score": 1.0, + "content": "We compare the different normalization choices in Table 1. We evaluate the case when batch, instance", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 398, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 505, + 410 + ], + "score": 1.0, + "content": "and no normalization are used and compute the performance on the nearest neighbor classification", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 407, + 507, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 321, + 421 + ], + "score": 1.0, + "content": "task. We fixed the feature dimensions at 1024 for both", + "type": "text" + }, + { + "bbox": [ + 321, + 409, + 336, + 420 + ], + "score": 0.89, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 407, + 353, + 421 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 354, + 409, + 367, + 420 + ], + "score": 0.89, + "content": "N _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 407, + 507, + 421 + ], + "score": 1.0, + "content": "features in all normalization cases.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 419, + 505, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 505, + 432 + ], + "score": 1.0, + "content": "We can see that both batch and instance normalization perform equally well on viewpoint classification", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 430, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 506, + 443 + ], + "score": 1.0, + "content": "and no normalization is slightly worse. For the car type classification instance normalization is clearly", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 441, + 135, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 135, + 453 + ], + "score": 1.0, + "content": "better.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18.5 + }, + { + "type": "title", + "bbox": [ + 107, + 468, + 235, + 479 + ], + "lines": [ + { + "bbox": [ + 105, + 467, + 237, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 237, + 482 + ], + "score": 1.0, + "content": "4.2 REFERENCE AMBIGUITY", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 489, + 505, + 567 + ], + "lines": [ + { + "bbox": [ + 104, + 488, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 104, + 488, + 506, + 502 + ], + "score": 1.0, + "content": "MNIST. The MNIST dataset LeCun et al. (1998) contains handwritten grayscale digits of size", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 500, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 140, + 511 + ], + "score": 0.89, + "content": "2 8 \\times 2 8", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 500, + 506, + 513 + ], + "score": 1.0, + "content": "pixel. There are 60K images of 10 classes for training and 10K for testing. The common", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "score": 1.0, + "content": "factor is the digit class and the varying factor is the intraclass variation. We take image pairs that", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 523, + 504, + 535 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 332, + 535 + ], + "score": 1.0, + "content": "have the same digit for training, and use our full model", + "type": "text" + }, + { + "bbox": [ + 332, + 523, + 392, + 534 + ], + "score": 0.93, + "content": "\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N }", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 523, + 489, + 535 + ], + "score": 1.0, + "content": "with dimensions 64 for", + "type": "text" + }, + { + "bbox": [ + 489, + 523, + 504, + 533 + ], + "score": 0.87, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 533, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 150, + 546 + ], + "score": 1.0, + "content": "and 64 for", + "type": "text" + }, + { + "bbox": [ + 150, + 533, + 164, + 544 + ], + "score": 0.88, + "content": "N _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 533, + 505, + 546 + ], + "score": 1.0, + "content": ". In Fig. 5 (a) and (b) we show the transfer of varying factors. Qualitatively, both our", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 543, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 505, + 556 + ], + "score": 1.0, + "content": "method and Mathieu et al. (2016) perform well. We observe neither the reference ambiguity nor the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 554, + 227, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 227, + 568 + ], + "score": 1.0, + "content": "shortcut problem in this case.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26 + }, + { + "type": "image", + "bbox": [ + 111, + 577, + 500, + 686 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 111, + 577, + 500, + 686 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 111, + 577, + 500, + 686 + ], + "spans": [ + { + "bbox": [ + 111, + 577, + 500, + 686 + ], + "score": 0.974, + "type": "image", + "image_path": "19dbb062afd2ee7e2e211be55c604266d4e81e0c4b40072158decf54298db406.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 111, + 577, + 500, + 613.3333333333334 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 111, + 613.3333333333334, + 500, + 649.6666666666667 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 111, + 649.6666666666667, + 500, + 686.0000000000001 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 695, + 504, + 729 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 694, + 506, + 708 + ], + "spans": [ + { + "bbox": [ + 105, + 694, + 506, + 708 + ], + "score": 1.0, + "content": "Figure 5: Renderings of transferred features. In all figures the variable factor is transferred from the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 705, + 505, + 719 + ], + "spans": [ + { + "bbox": [ + 105, + 705, + 505, + 719 + ], + "score": 1.0, + "content": "left column and the common factor from the top row. (a) MNIST Mathieu et al. (2016); (b) MNIST", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 717, + 341, + 730 + ], + "spans": [ + { + "bbox": [ + 106, + 717, + 341, + 730 + ], + "score": 1.0, + "content": "(ours); (c) Sprites Mathieu et al. (2016); (d) Sprites (ours).", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34 + } + ], + "index": 32.5 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 309, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 309, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 147, + 79, + 464, + 170 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 147, + 79, + 464, + 170 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 147, + 79, + 464, + 170 + ], + "spans": [ + { + "bbox": [ + 147, + 79, + 464, + 170 + ], + "score": 0.959, + "type": "image", + "image_path": "682c15c0ae852d517b1ac69b302654a800de4fd0f02c77d85fbeaeb17fe5a1ca.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 147, + 79, + 464, + 109.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 147, + 109.33333333333333, + 464, + 139.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 147, + 139.66666666666666, + 464, + 170.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 178, + 506, + 234 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 178, + 506, + 191 + ], + "spans": [ + { + "bbox": [ + 105, + 178, + 368, + 191 + ], + "score": 1.0, + "content": "Figure 4: The effect of dimensions and objective function on", + "type": "text" + }, + { + "bbox": [ + 368, + 180, + 382, + 190 + ], + "score": 0.88, + "content": "N _ { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 178, + 506, + 191 + ], + "score": 1.0, + "content": "features. (a), (b), (c) t-SNE", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 190, + 505, + 202 + ], + "spans": [ + { + "bbox": [ + 106, + 190, + 173, + 202 + ], + "score": 1.0, + "content": "embeddings on", + "type": "text" + }, + { + "bbox": [ + 173, + 190, + 188, + 201 + ], + "score": 0.87, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 190, + 505, + 202 + ], + "score": 1.0, + "content": "features. Colors correspond to the ground truth viewpoint. The objective", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 201, + 507, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 201, + 177, + 214 + ], + "score": 1.0, + "content": "functions and the", + "type": "text" + }, + { + "bbox": [ + 177, + 201, + 191, + 212 + ], + "score": 0.88, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 201, + 271, + 214 + ], + "score": 1.0, + "content": "dimensions are: (a)", + "type": "text" + }, + { + "bbox": [ + 271, + 201, + 292, + 212 + ], + "score": 0.7, + "content": "\\mathcal { L } _ { A E }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 201, + 334, + 214 + ], + "score": 1.0, + "content": "2 dim, (b)", + "type": "text" + }, + { + "bbox": [ + 335, + 201, + 356, + 212 + ], + "score": 0.86, + "content": "\\mathcal { L } _ { A E }", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 201, + 408, + 214 + ], + "score": 1.0, + "content": "128 dim, (c)", + "type": "text" + }, + { + "bbox": [ + 408, + 201, + 473, + 212 + ], + "score": 0.78, + "content": "\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N } \\mathrm { ~ 1 ~ }", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 201, + 507, + 214 + ], + "score": 1.0, + "content": "128 dim.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 210, + 506, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 506, + 226 + ], + "score": 1.0, + "content": "(d) Mean average precision curves for the viewpoint prediction from the viewpoint feature using", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 222, + 271, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 253, + 236 + ], + "score": 1.0, + "content": "different models and dimensions for", + "type": "text" + }, + { + "bbox": [ + 253, + 223, + 267, + 234 + ], + "score": 0.89, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 222, + 271, + 236 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "table", + "bbox": [ + 221, + 280, + 389, + 337 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 246, + 504, + 270 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 245, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 292, + 260 + ], + "score": 1.0, + "content": "Table 1: Nearest neighbor classification on", + "type": "text" + }, + { + "bbox": [ + 293, + 248, + 307, + 258 + ], + "score": 0.89, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 245, + 328, + 260 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 329, + 248, + 343, + 258 + ], + "score": 0.87, + "content": "N _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 245, + 505, + 260 + ], + "score": 1.0, + "content": "features using different normalization", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 258, + 227, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 227, + 271 + ], + "score": 1.0, + "content": "techniques on ShapeNet cars.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "table_body", + "bbox": [ + 221, + 280, + 389, + 337 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 221, + 280, + 389, + 337 + ], + "spans": [ + { + "bbox": [ + 221, + 280, + 389, + 337 + ], + "score": 0.975, + "html": "
NormalizationNv mAPNc mAP
None0.470.13
Batch0.500.08
Instance0.500.20
", + "type": "table", + "image_path": "b952c7556c42a601464b737e324c1e90893cbadb4fec0f246e68d9f3dde1e3eb.jpg" + } + ] + } + ], + "index": 11.5, + "virtual_lines": [ + { + "bbox": [ + 221, + 280, + 389, + 294.25 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 221, + 294.25, + 389, + 308.5 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 221, + 308.5, + 389, + 322.75 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 221, + 322.75, + 389, + 337.0 + ], + "spans": [], + "index": 13 + } + ] + } + ], + "index": 10.0 + }, + { + "type": "text", + "bbox": [ + 105, + 358, + 504, + 381 + ], + "lines": [], + "index": 14.5, + "bbox_fs": [ + 106, + 358, + 505, + 383 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 386, + 506, + 453 + ], + "lines": [ + { + "bbox": [ + 105, + 385, + 506, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 506, + 399 + ], + "score": 1.0, + "content": "We compare the different normalization choices in Table 1. We evaluate the case when batch, instance", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 398, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 505, + 410 + ], + "score": 1.0, + "content": "and no normalization are used and compute the performance on the nearest neighbor classification", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 407, + 507, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 321, + 421 + ], + "score": 1.0, + "content": "task. We fixed the feature dimensions at 1024 for both", + "type": "text" + }, + { + "bbox": [ + 321, + 409, + 336, + 420 + ], + "score": 0.89, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 407, + 353, + 421 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 354, + 409, + 367, + 420 + ], + "score": 0.89, + "content": "N _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 407, + 507, + 421 + ], + "score": 1.0, + "content": "features in all normalization cases.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 419, + 505, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 505, + 432 + ], + "score": 1.0, + "content": "We can see that both batch and instance normalization perform equally well on viewpoint classification", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 430, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 506, + 443 + ], + "score": 1.0, + "content": "and no normalization is slightly worse. For the car type classification instance normalization is clearly", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 441, + 135, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 135, + 453 + ], + "score": 1.0, + "content": "better.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 385, + 507, + 453 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 468, + 235, + 479 + ], + "lines": [ + { + "bbox": [ + 105, + 467, + 237, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 237, + 482 + ], + "score": 1.0, + "content": "4.2 REFERENCE AMBIGUITY", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 489, + 505, + 567 + ], + "lines": [ + { + "bbox": [ + 104, + 488, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 104, + 488, + 506, + 502 + ], + "score": 1.0, + "content": "MNIST. The MNIST dataset LeCun et al. (1998) contains handwritten grayscale digits of size", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 500, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 140, + 511 + ], + "score": 0.89, + "content": "2 8 \\times 2 8", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 500, + 506, + 513 + ], + "score": 1.0, + "content": "pixel. There are 60K images of 10 classes for training and 10K for testing. The common", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "score": 1.0, + "content": "factor is the digit class and the varying factor is the intraclass variation. We take image pairs that", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 523, + 504, + 535 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 332, + 535 + ], + "score": 1.0, + "content": "have the same digit for training, and use our full model", + "type": "text" + }, + { + "bbox": [ + 332, + 523, + 392, + 534 + ], + "score": 0.93, + "content": "\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N }", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 523, + 489, + 535 + ], + "score": 1.0, + "content": "with dimensions 64 for", + "type": "text" + }, + { + "bbox": [ + 489, + 523, + 504, + 533 + ], + "score": 0.87, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 533, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 150, + 546 + ], + "score": 1.0, + "content": "and 64 for", + "type": "text" + }, + { + "bbox": [ + 150, + 533, + 164, + 544 + ], + "score": 0.88, + "content": "N _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 533, + 505, + 546 + ], + "score": 1.0, + "content": ". In Fig. 5 (a) and (b) we show the transfer of varying factors. Qualitatively, both our", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 543, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 505, + 556 + ], + "score": 1.0, + "content": "method and Mathieu et al. (2016) perform well. We observe neither the reference ambiguity nor the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 554, + 227, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 227, + 568 + ], + "score": 1.0, + "content": "shortcut problem in this case.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26, + "bbox_fs": [ + 104, + 488, + 506, + 568 + ] + }, + { + "type": "image", + "bbox": [ + 111, + 577, + 500, + 686 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 111, + 577, + 500, + 686 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 111, + 577, + 500, + 686 + ], + "spans": [ + { + "bbox": [ + 111, + 577, + 500, + 686 + ], + "score": 0.974, + "type": "image", + "image_path": "19dbb062afd2ee7e2e211be55c604266d4e81e0c4b40072158decf54298db406.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 111, + 577, + 500, + 613.3333333333334 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 111, + 613.3333333333334, + 500, + 649.6666666666667 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 111, + 649.6666666666667, + 500, + 686.0000000000001 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 695, + 504, + 729 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 694, + 506, + 708 + ], + "spans": [ + { + "bbox": [ + 105, + 694, + 506, + 708 + ], + "score": 1.0, + "content": "Figure 5: Renderings of transferred features. In all figures the variable factor is transferred from the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 705, + 505, + 719 + ], + "spans": [ + { + "bbox": [ + 105, + 705, + 505, + 719 + ], + "score": 1.0, + "content": "left column and the common factor from the top row. (a) MNIST Mathieu et al. (2016); (b) MNIST", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 717, + 341, + 730 + ], + "spans": [ + { + "bbox": [ + 106, + 717, + 341, + 730 + ], + "score": 1.0, + "content": "(ours); (c) Sprites Mathieu et al. (2016); (d) Sprites (ours).", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34 + } + ], + "index": 32.5 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 118, + 78, + 492, + 255 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 118, + 78, + 492, + 255 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 118, + 78, + 492, + 255 + ], + "spans": [ + { + "bbox": [ + 118, + 78, + 492, + 255 + ], + "score": 0.969, + "type": "image", + "image_path": "55049684dd4908d747a5bd58b28114a25a2f6b44c1aa8542f673f3beeb04f571.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 118, + 78, + 492, + 137.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 118, + 137.0, + 492, + 196.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 118, + 196.0, + 492, + 255.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 264, + 506, + 308 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 265, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 265, + 505, + 276 + ], + "score": 1.0, + "content": "Figure 6: Attribute transfer on ShapeNet. For both subfigures the viewpoint is taken from the leftmost", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 276, + 506, + 287 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 506, + 287 + ], + "score": 1.0, + "content": "column and the car/chair type is taken from the first row. (a) Cars: the factors are transferred correctly.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 286, + 506, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 506, + 299 + ], + "score": 1.0, + "content": "(b) Chairs: in the bottom three rows the viewpoint is not transferred correctly due to the reference", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 296, + 152, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 152, + 311 + ], + "score": 1.0, + "content": "ambiguity.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "text", + "bbox": [ + 106, + 333, + 505, + 433 + ], + "lines": [ + { + "bbox": [ + 105, + 333, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 506, + 347 + ], + "score": 1.0, + "content": "Sprites. The Sprites dataset Reed et al. (2015) contains 60 pixel color images of animated characters", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 345, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 505, + 358 + ], + "score": 1.0, + "content": "(sprites). There are 672 sprites, 500 for training, 100 for testing and 72 for validation. Each sprite", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 355, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 505, + 369 + ], + "score": 1.0, + "content": "has 20 animations and 178 images, so the full dataset has 120K images in total. There are many", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 367, + 506, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 506, + 380 + ], + "score": 1.0, + "content": "changes in the appearance of the sprites, they differ in their body shape, gender, hair, armour, arm", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 378, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 505, + 391 + ], + "score": 1.0, + "content": "type, greaves, and weapon. We consider character identity as the common factor and the pose as the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 388, + 506, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 506, + 402 + ], + "score": 1.0, + "content": "varying factor. We train our system using image pairs of the same sprite and do not exploit labels on", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 399, + 506, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 205, + 413 + ], + "score": 1.0, + "content": "their pose. We train the", + "type": "text" + }, + { + "bbox": [ + 205, + 400, + 264, + 411 + ], + "score": 0.93, + "content": "\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N }", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 399, + 391, + 413 + ], + "score": 1.0, + "content": "model with dimensions 64 for", + "type": "text" + }, + { + "bbox": [ + 391, + 400, + 406, + 411 + ], + "score": 0.89, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 399, + 456, + 413 + ], + "score": 1.0, + "content": "and 448 for", + "type": "text" + }, + { + "bbox": [ + 457, + 400, + 470, + 411 + ], + "score": 0.87, + "content": "N _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 399, + 506, + 413 + ], + "score": 1.0, + "content": ". Fig. 5", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "score": 1.0, + "content": "(c) and (d) show results on the attribute transfer task. Both our method and Mathieu et al. (2016)’s", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 422, + 437, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 437, + 434 + ], + "score": 1.0, + "content": "transfer the identity of the sprites correctly, the reference ambiguity does not arise.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 438, + 505, + 505 + ], + "lines": [ + { + "bbox": [ + 105, + 437, + 506, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 506, + 451 + ], + "score": 1.0, + "content": "ShapeNet chairs. We render the ShapeNet chairs with the same settings (viewpoints, image size)", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 449, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 506, + 462 + ], + "score": 1.0, + "content": "as the cars. There are 3500 chair types for training and 3200 for testing, so the dataset contains", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 460, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 213, + 474 + ], + "score": 1.0, + "content": "160K images. We trained", + "type": "text" + }, + { + "bbox": [ + 213, + 461, + 272, + 472 + ], + "score": 0.92, + "content": "\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N }", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 460, + 471, + 474 + ], + "score": 1.0, + "content": ", and set the feature dimensions to 1024 for both", + "type": "text" + }, + { + "bbox": [ + 472, + 461, + 487, + 471 + ], + "score": 0.89, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 460, + 506, + 474 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 107, + 471, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 107, + 472, + 120, + 482 + ], + "score": 0.85, + "content": "N _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 120, + 471, + 505, + 484 + ], + "score": 1.0, + "content": ". In Fig. 6 we show results on attribute transfer and compare it with ShapeNet cars. We found that", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 481, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 506, + 496 + ], + "score": 1.0, + "content": "the reference ambiguity does not emerge for cars, but it does for chairs, possibly due to the higher", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 493, + 340, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 340, + 506 + ], + "score": 1.0, + "content": "complexity, as cars have much less variability than chairs.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18.5 + }, + { + "type": "title", + "bbox": [ + 108, + 524, + 201, + 537 + ], + "lines": [ + { + "bbox": [ + 104, + 522, + 203, + 540 + ], + "spans": [ + { + "bbox": [ + 104, + 522, + 203, + 540 + ], + "score": 1.0, + "content": "5 CONCLUSIONS", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 551, + 505, + 673 + ], + "lines": [ + { + "bbox": [ + 106, + 551, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 505, + 564 + ], + "score": 1.0, + "content": "In this paper we studied the challenges of disentangling factors of variation, mainly the shortcut", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 563, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 505, + 575 + ], + "score": 1.0, + "content": "problem and the reference ambiguity. The shortcut problem occurs when all information is stored in", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 573, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 505, + 586 + ], + "score": 1.0, + "content": "only one feature chunk, while the other is ignored. The reference ambiguity means that the reference", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 585, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 505, + 597 + ], + "score": 1.0, + "content": "in which a factor is interpreted, may depend on other factors. This makes the attribute transfer", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 595, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 505, + 609 + ], + "score": 1.0, + "content": "ambiguous. We introduced a novel training of autoencoders to solve disentangling using image", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 607, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 607, + 506, + 619 + ], + "score": 1.0, + "content": "triplets. We showed theoretically and experimentally how to keep the shortcut problem under control", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 618, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 505, + 630 + ], + "score": 1.0, + "content": "through adversarial training, and enable to use large feature dimensions. We proved that the reference", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 628, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 628, + 505, + 641 + ], + "score": 1.0, + "content": "ambiguity is inherently present in the disentangling task when weak labels are used. Most importantly", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "score": 1.0, + "content": "this can be stated independently of the learning algorithm. We demonstrated that training and transfer", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 650, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 650, + 505, + 663 + ], + "score": 1.0, + "content": "of factors of variation may not be guaranteed. However, in practice we observe that our trained model", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 662, + 406, + 674 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 406, + 674 + ], + "score": 1.0, + "content": "works well on many datasets and exhibits good generalization capabilities.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 28 + }, + { + "type": "title", + "bbox": [ + 108, + 692, + 175, + 704 + ], + "lines": [ + { + "bbox": [ + 106, + 691, + 176, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 691, + 176, + 705 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 108, + 711, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 711, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 506, + 723 + ], + "score": 1.0, + "content": "Yoshua Bengio, Aaron Courville, and Pascal Vincent. Representation learning: A review and new perspectives.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 722, + 439, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 722, + 439, + 732 + ], + "score": 1.0, + "content": "IEEE transactions on pattern analysis and machine intelligence, 35(8):1798–1828, 2013.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 309, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 309, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2018", + "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": "image", + "bbox": [ + 118, + 78, + 492, + 255 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 118, + 78, + 492, + 255 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 118, + 78, + 492, + 255 + ], + "spans": [ + { + "bbox": [ + 118, + 78, + 492, + 255 + ], + "score": 0.969, + "type": "image", + "image_path": "55049684dd4908d747a5bd58b28114a25a2f6b44c1aa8542f673f3beeb04f571.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 118, + 78, + 492, + 137.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 118, + 137.0, + 492, + 196.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 118, + 196.0, + 492, + 255.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 264, + 506, + 308 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 265, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 265, + 505, + 276 + ], + "score": 1.0, + "content": "Figure 6: Attribute transfer on ShapeNet. For both subfigures the viewpoint is taken from the leftmost", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 276, + 506, + 287 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 506, + 287 + ], + "score": 1.0, + "content": "column and the car/chair type is taken from the first row. (a) Cars: the factors are transferred correctly.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 286, + 506, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 506, + 299 + ], + "score": 1.0, + "content": "(b) Chairs: in the bottom three rows the viewpoint is not transferred correctly due to the reference", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 296, + 152, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 152, + 311 + ], + "score": 1.0, + "content": "ambiguity.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "text", + "bbox": [ + 106, + 333, + 505, + 433 + ], + "lines": [ + { + "bbox": [ + 105, + 333, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 506, + 347 + ], + "score": 1.0, + "content": "Sprites. The Sprites dataset Reed et al. (2015) contains 60 pixel color images of animated characters", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 345, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 505, + 358 + ], + "score": 1.0, + "content": "(sprites). There are 672 sprites, 500 for training, 100 for testing and 72 for validation. Each sprite", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 355, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 505, + 369 + ], + "score": 1.0, + "content": "has 20 animations and 178 images, so the full dataset has 120K images in total. There are many", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 367, + 506, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 506, + 380 + ], + "score": 1.0, + "content": "changes in the appearance of the sprites, they differ in their body shape, gender, hair, armour, arm", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 378, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 505, + 391 + ], + "score": 1.0, + "content": "type, greaves, and weapon. We consider character identity as the common factor and the pose as the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 388, + 506, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 506, + 402 + ], + "score": 1.0, + "content": "varying factor. We train our system using image pairs of the same sprite and do not exploit labels on", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 399, + 506, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 205, + 413 + ], + "score": 1.0, + "content": "their pose. We train the", + "type": "text" + }, + { + "bbox": [ + 205, + 400, + 264, + 411 + ], + "score": 0.93, + "content": "\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N }", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 399, + 391, + 413 + ], + "score": 1.0, + "content": "model with dimensions 64 for", + "type": "text" + }, + { + "bbox": [ + 391, + 400, + 406, + 411 + ], + "score": 0.89, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 399, + 456, + 413 + ], + "score": 1.0, + "content": "and 448 for", + "type": "text" + }, + { + "bbox": [ + 457, + 400, + 470, + 411 + ], + "score": 0.87, + "content": "N _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 399, + 506, + 413 + ], + "score": 1.0, + "content": ". Fig. 5", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "score": 1.0, + "content": "(c) and (d) show results on the attribute transfer task. Both our method and Mathieu et al. (2016)’s", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 422, + 437, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 437, + 434 + ], + "score": 1.0, + "content": "transfer the identity of the sprites correctly, the reference ambiguity does not arise.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 333, + 506, + 434 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 438, + 505, + 505 + ], + "lines": [ + { + "bbox": [ + 105, + 437, + 506, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 506, + 451 + ], + "score": 1.0, + "content": "ShapeNet chairs. We render the ShapeNet chairs with the same settings (viewpoints, image size)", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 449, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 506, + 462 + ], + "score": 1.0, + "content": "as the cars. There are 3500 chair types for training and 3200 for testing, so the dataset contains", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 460, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 213, + 474 + ], + "score": 1.0, + "content": "160K images. We trained", + "type": "text" + }, + { + "bbox": [ + 213, + 461, + 272, + 472 + ], + "score": 0.92, + "content": "\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N }", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 460, + 471, + 474 + ], + "score": 1.0, + "content": ", and set the feature dimensions to 1024 for both", + "type": "text" + }, + { + "bbox": [ + 472, + 461, + 487, + 471 + ], + "score": 0.89, + "content": "N _ { \\mathbf { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 460, + 506, + 474 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 107, + 471, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 107, + 472, + 120, + 482 + ], + "score": 0.85, + "content": "N _ { \\mathbf { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 120, + 471, + 505, + 484 + ], + "score": 1.0, + "content": ". In Fig. 6 we show results on attribute transfer and compare it with ShapeNet cars. We found that", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 481, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 506, + 496 + ], + "score": 1.0, + "content": "the reference ambiguity does not emerge for cars, but it does for chairs, possibly due to the higher", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 493, + 340, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 340, + 506 + ], + "score": 1.0, + "content": "complexity, as cars have much less variability than chairs.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 437, + 506, + 506 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 524, + 201, + 537 + ], + "lines": [ + { + "bbox": [ + 104, + 522, + 203, + 540 + ], + "spans": [ + { + "bbox": [ + 104, + 522, + 203, + 540 + ], + "score": 1.0, + "content": "5 CONCLUSIONS", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 551, + 505, + 673 + ], + "lines": [ + { + "bbox": [ + 106, + 551, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 505, + 564 + ], + "score": 1.0, + "content": "In this paper we studied the challenges of disentangling factors of variation, mainly the shortcut", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 563, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 505, + 575 + ], + "score": 1.0, + "content": "problem and the reference ambiguity. The shortcut problem occurs when all information is stored in", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 573, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 505, + 586 + ], + "score": 1.0, + "content": "only one feature chunk, while the other is ignored. The reference ambiguity means that the reference", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 585, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 505, + 597 + ], + "score": 1.0, + "content": "in which a factor is interpreted, may depend on other factors. This makes the attribute transfer", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 595, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 505, + 609 + ], + "score": 1.0, + "content": "ambiguous. We introduced a novel training of autoencoders to solve disentangling using image", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 607, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 607, + 506, + 619 + ], + "score": 1.0, + "content": "triplets. We showed theoretically and experimentally how to keep the shortcut problem under control", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 618, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 505, + 630 + ], + "score": 1.0, + "content": "through adversarial training, and enable to use large feature dimensions. We proved that the reference", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 628, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 628, + 505, + 641 + ], + "score": 1.0, + "content": "ambiguity is inherently present in the disentangling task when weak labels are used. Most importantly", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "score": 1.0, + "content": "this can be stated independently of the learning algorithm. We demonstrated that training and transfer", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 650, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 650, + 505, + 663 + ], + "score": 1.0, + "content": "of factors of variation may not be guaranteed. However, in practice we observe that our trained model", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 662, + 406, + 674 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 406, + 674 + ], + "score": 1.0, + "content": "works well on many datasets and exhibits good generalization capabilities.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 551, + 506, + 674 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 692, + 175, + 704 + ], + "lines": [ + { + "bbox": [ + 106, + 691, + 176, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 691, + 176, + 705 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 108, + 711, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 711, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 506, + 723 + ], + "score": 1.0, + "content": "Yoshua Bengio, Aaron Courville, and Pascal Vincent. Representation learning: A review and new perspectives.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 722, + 439, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 722, + 439, + 732 + ], + "score": 1.0, + "content": "IEEE transactions on pattern analysis and machine intelligence, 35(8):1798–1828, 2013.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 106, + 711, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 26, + 507, + 711 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 507, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 507, + 95 + ], + "score": 1.0, + "content": "Hervé Bourlard and Yves Kamp. Auto-association by multilayer perceptrons and singular value decomposition.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 94, + 281, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 94, + 281, + 106 + ], + "score": 1.0, + "content": "Biological cybernetics, 59(4):291–294, 1988.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 110, + 507, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 507, + 124 + ], + "score": 1.0, + "content": "Angel X. Chang, Thomas Funkhouser, Leonidas Guibas, Pat Hanrahan, Qixing Huang, Zimo Li, Silvio Savarese,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 114, + 119, + 506, + 135 + ], + "spans": [ + { + "bbox": [ + 114, + 119, + 506, + 135 + ], + "score": 1.0, + "content": "Manolis Savva, Shuran Song, Hao Su, Jianxiong Xiao, Li Yi, and Fisher Yu. ShapeNet: An Information-Rich", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 131, + 387, + 144 + ], + "spans": [ + { + "bbox": [ + 115, + 131, + 387, + 144 + ], + "score": 1.0, + "content": "3D Model Repository. Technical Report arXiv:1512.03012 [cs.GR], 2015.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 148, + 506, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 506, + 162 + ], + "score": 1.0, + "content": "Xi Chen, Yan Duan, Rein Houthooft, John Schulman, Ilya Sutskever, and Pieter Abbeel. Infogan: Interpretable", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 114, + 158, + 459, + 173 + ], + "spans": [ + { + "bbox": [ + 114, + 158, + 459, + 173 + ], + "score": 1.0, + "content": "representation learning by information maximizing generative adversarial nets. In NIPS, 2016.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 175, + 506, + 190 + ], + "spans": [ + { + "bbox": [ + 104, + 175, + 506, + 190 + ], + "score": 1.0, + "content": "Brian Cheung, Jesse A Livezey, Arjun K Bansal, and Bruno A Olshausen. Discovering hidden factors of variation", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 187, + 271, + 199 + ], + "spans": [ + { + "bbox": [ + 115, + 187, + 271, + 199 + ], + "score": 1.0, + "content": "in deep networks. arXiv:1412.6583, 2014.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 205, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 505, + 217 + ], + "score": 1.0, + "content": "Jeff Donahue, Philipp Krähenbühl, and Trevor Darrell. Adversarial feature learning. arXiv:1605.09782, 2016.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 223, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 505, + 235 + ], + "score": 1.0, + "content": "Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 234, + 388, + 244 + ], + "spans": [ + { + "bbox": [ + 115, + 234, + 388, + 244 + ], + "score": 1.0, + "content": "Courville, and Yoshua Bengio. Generative adversarial nets. In NIPS, 2014.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 251, + 507, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 507, + 263 + ], + "score": 1.0, + "content": "Geoffrey E Hinton and Ruslan R Salakhutdinov. Reducing the dimensionality of data with neural networks.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 262, + 246, + 272 + ], + "spans": [ + { + "bbox": [ + 115, + 262, + 246, + 272 + ], + "score": 1.0, + "content": "Science, 313(5786):504–507, 2006.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 276, + 507, + 293 + ], + "spans": [ + { + "bbox": [ + 104, + 276, + 507, + 293 + ], + "score": 1.0, + "content": "Geoffrey E Hinton, Alex Krizhevsky, and Sida D Wang. Transforming auto-encoders. In International", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 114, + 289, + 369, + 301 + ], + "spans": [ + { + "bbox": [ + 114, + 289, + 369, + 301 + ], + "score": 1.0, + "content": "Conference on Artificial Neural Networks, pp. 44–51. Springer, 2011.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 306, + 425, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 425, + 318 + ], + "score": 1.0, + "content": "Diederik P Kingma and Max Welling. Auto-encoding variational bayes. In ICLR, 2014.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 323, + 507, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 507, + 338 + ], + "score": 1.0, + "content": "Yann LeCun, Léon Bottou, Yoshua Bengio, and Patrick Haffner. Gradient-based learning applied to document", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 113, + 333, + 351, + 347 + ], + "spans": [ + { + "bbox": [ + 113, + 333, + 351, + 347 + ], + "score": 1.0, + "content": "recognition. Proceedings of the IEEE, 86(11):2278–2324, 1998.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 352, + 506, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 506, + 364 + ], + "score": 1.0, + "content": "Ming-Yu Liu and Oncel Tuzel. Coupled generative adversarial networks. In Advances in Neural Information", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 114, + 363, + 264, + 375 + ], + "spans": [ + { + "bbox": [ + 114, + 363, + 264, + 375 + ], + "score": 1.0, + "content": "Processing Systems, pp. 469–477, 2016.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 380, + 506, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 506, + 392 + ], + "score": 1.0, + "content": "Christos Louizos, Kevin Swersky, Yujia Li, Max Welling, and Richard Zemel. The variational fair autoencoder.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 391, + 172, + 401 + ], + "spans": [ + { + "bbox": [ + 116, + 391, + 172, + 401 + ], + "score": 1.0, + "content": "In ICLR, 2016.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 407, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 419 + ], + "score": 1.0, + "content": "Michael F Mathieu, Junbo Jake Zhao, Junbo Zhao, Aditya Ramesh, Pablo Sprechmann, and Yann LeCun.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 418, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 115, + 418, + 506, + 430 + ], + "score": 1.0, + "content": "Disentangling factors of variation in deep representation using adversarial training. In Advances in Neural", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 429, + 317, + 441 + ], + "spans": [ + { + "bbox": [ + 115, + 429, + 317, + 441 + ], + "score": 1.0, + "content": "Information Processing Systems, pp. 5041–5049, 2016.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 446, + 505, + 458 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 505, + 458 + ], + "score": 1.0, + "content": "Alec Radford, Luke Metz, and Soumith Chintala. Unsupervised representation learning with deep convolutional", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 114, + 456, + 330, + 469 + ], + "spans": [ + { + "bbox": [ + 114, + 456, + 330, + 469 + ], + "score": 1.0, + "content": "generative adversarial networks. arXiv:1511.06434, 2015.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 474, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 505, + 486 + ], + "score": 1.0, + "content": "Scott Reed, Kihyuk Sohn, Yuting Zhang, and Honglak Lee. Learning to disentangle factors of variation with", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 484, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 115, + 484, + 506, + 496 + ], + "score": 1.0, + "content": "manifold interaction. In Proceedings of the 31st International Conference on Machine Learning (ICML-14),", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 113, + 493, + 200, + 505 + ], + "spans": [ + { + "bbox": [ + 113, + 493, + 200, + 505 + ], + "score": 1.0, + "content": "pp. 1431–1439, 2014.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 510, + 507, + 525 + ], + "spans": [ + { + "bbox": [ + 104, + 510, + 507, + 525 + ], + "score": 1.0, + "content": "Scott E Reed, Yi Zhang, Yuting Zhang, and Honglak Lee. Deep visual analogy-making. In Advances in Neural", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 114, + 521, + 318, + 536 + ], + "spans": [ + { + "bbox": [ + 114, + 521, + 318, + 536 + ], + "score": 1.0, + "content": "Information Processing Systems, pp. 1252–1260, 2015.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 538, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 506, + 552 + ], + "score": 1.0, + "content": "Zhixin Shu, Ersin Yumer, Sunil Hadap, Kalyan Sunkavalli, Eli Shechtman, and Dimitris Samaras. Neural", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 550, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 115, + 550, + 505, + 562 + ], + "score": 1.0, + "content": "face editing with intrinsic image disentangling. In The IEEE Conference on Computer Vision and Pattern", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 114, + 559, + 235, + 572 + ], + "spans": [ + { + "bbox": [ + 114, + 559, + 235, + 572 + ], + "score": 1.0, + "content": "Recognition (CVPR), July 2017.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 578, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 506, + 590 + ], + "score": 1.0, + "content": "Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale image recognition.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 113, + 587, + 260, + 600 + ], + "spans": [ + { + "bbox": [ + 113, + 587, + 260, + 600 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1409.1556, 2014.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 605, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 506, + 619 + ], + "score": 1.0, + "content": "Luan Tran, Xi Yin, and Xiaoming Liu. Disentangled representation learning gan for pose-invariant face", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 616, + 488, + 628 + ], + "spans": [ + { + "bbox": [ + 115, + 616, + 488, + 628 + ], + "score": 1.0, + "content": "recognition. In The IEEE Conference on Computer Vision and Pattern Recognition (CVPR), July 2017.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 632, + 507, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 507, + 646 + ], + "score": 1.0, + "content": "Dmitry Ulyanov, Andrea Vedaldi, and Victor S. Lempitsky. Improved texture networks: Maximizing quality and", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 644, + 387, + 654 + ], + "spans": [ + { + "bbox": [ + 116, + 644, + 387, + 654 + ], + "score": 1.0, + "content": "diversity in feed-forward stylization and texture synthesis. In CVPR, 2017.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 661, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 106, + 661, + 506, + 673 + ], + "score": 1.0, + "content": "Kihyuk Sohn Dimitris Metaxas Manmohan Chandraker Xi Peng, Xiang Yu. Reconstruction for feature disentan-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 113, + 671, + 367, + 684 + ], + "spans": [ + { + "bbox": [ + 113, + 671, + 367, + 684 + ], + "score": 1.0, + "content": "glement in pose-invariant face recognition. arXiv:1702.03041, 2017.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 104, + 687, + 507, + 702 + ], + "spans": [ + { + "bbox": [ + 104, + 687, + 507, + 702 + ], + "score": 1.0, + "content": "Jimei Yang, Scott E Reed, Ming-Hsuan Yang, and Honglak Lee. Weakly-supervised disentangling with recurrent", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 699, + 314, + 711 + ], + "spans": [ + { + "bbox": [ + 115, + 699, + 314, + 711 + ], + "score": 1.0, + "content": "transformations for 3d view synthesis. In NIPS, 2015.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 22.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 105, + 25, + 309, + 40 + ], + "spans": [ + { + "bbox": [ + 105, + 25, + 309, + 40 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 104, + 26, + 507, + 711 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 507, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 507, + 95 + ], + "score": 1.0, + "content": "Hervé Bourlard and Yves Kamp. Auto-association by multilayer perceptrons and singular value decomposition.", + "type": "text" + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 94, + 281, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 94, + 281, + 106 + ], + "score": 1.0, + "content": "Biological cybernetics, 59(4):291–294, 1988.", + "type": "text" + } + ], + "index": 1, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 110, + 507, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 507, + 124 + ], + "score": 1.0, + "content": "Angel X. Chang, Thomas Funkhouser, Leonidas Guibas, Pat Hanrahan, Qixing Huang, Zimo Li, Silvio Savarese,", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 119, + 506, + 135 + ], + "spans": [ + { + "bbox": [ + 114, + 119, + 506, + 135 + ], + "score": 1.0, + "content": "Manolis Savva, Shuran Song, Hao Su, Jianxiong Xiao, Li Yi, and Fisher Yu. ShapeNet: An Information-Rich", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 131, + 387, + 144 + ], + "spans": [ + { + "bbox": [ + 115, + 131, + 387, + 144 + ], + "score": 1.0, + "content": "3D Model Repository. Technical Report arXiv:1512.03012 [cs.GR], 2015.", + "type": "text" + } + ], + "index": 4, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 148, + 506, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 506, + 162 + ], + "score": 1.0, + "content": "Xi Chen, Yan Duan, Rein Houthooft, John Schulman, Ilya Sutskever, and Pieter Abbeel. Infogan: Interpretable", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 158, + 459, + 173 + ], + "spans": [ + { + "bbox": [ + 114, + 158, + 459, + 173 + ], + "score": 1.0, + "content": "representation learning by information maximizing generative adversarial nets. In NIPS, 2016.", + "type": "text" + } + ], + "index": 6, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 175, + 506, + 190 + ], + "spans": [ + { + "bbox": [ + 104, + 175, + 506, + 190 + ], + "score": 1.0, + "content": "Brian Cheung, Jesse A Livezey, Arjun K Bansal, and Bruno A Olshausen. Discovering hidden factors of variation", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 187, + 271, + 199 + ], + "spans": [ + { + "bbox": [ + 115, + 187, + 271, + 199 + ], + "score": 1.0, + "content": "in deep networks. arXiv:1412.6583, 2014.", + "type": "text" + } + ], + "index": 8, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 205, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 505, + 217 + ], + "score": 1.0, + "content": "Jeff Donahue, Philipp Krähenbühl, and Trevor Darrell. Adversarial feature learning. arXiv:1605.09782, 2016.", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 223, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 505, + 235 + ], + "score": 1.0, + "content": "Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 234, + 388, + 244 + ], + "spans": [ + { + "bbox": [ + 115, + 234, + 388, + 244 + ], + "score": 1.0, + "content": "Courville, and Yoshua Bengio. Generative adversarial nets. In NIPS, 2014.", + "type": "text" + } + ], + "index": 11, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 251, + 507, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 507, + 263 + ], + "score": 1.0, + "content": "Geoffrey E Hinton and Ruslan R Salakhutdinov. Reducing the dimensionality of data with neural networks.", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 262, + 246, + 272 + ], + "spans": [ + { + "bbox": [ + 115, + 262, + 246, + 272 + ], + "score": 1.0, + "content": "Science, 313(5786):504–507, 2006.", + "type": "text" + } + ], + "index": 13, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 276, + 507, + 293 + ], + "spans": [ + { + "bbox": [ + 104, + 276, + 507, + 293 + ], + "score": 1.0, + "content": "Geoffrey E Hinton, Alex Krizhevsky, and Sida D Wang. Transforming auto-encoders. In International", + "type": "text" + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 289, + 369, + 301 + ], + "spans": [ + { + "bbox": [ + 114, + 289, + 369, + 301 + ], + "score": 1.0, + "content": "Conference on Artificial Neural Networks, pp. 44–51. Springer, 2011.", + "type": "text" + } + ], + "index": 15, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 306, + 425, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 425, + 318 + ], + "score": 1.0, + "content": "Diederik P Kingma and Max Welling. Auto-encoding variational bayes. In ICLR, 2014.", + "type": "text" + } + ], + "index": 16, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 323, + 507, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 507, + 338 + ], + "score": 1.0, + "content": "Yann LeCun, Léon Bottou, Yoshua Bengio, and Patrick Haffner. Gradient-based learning applied to document", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 333, + 351, + 347 + ], + "spans": [ + { + "bbox": [ + 113, + 333, + 351, + 347 + ], + "score": 1.0, + "content": "recognition. Proceedings of the IEEE, 86(11):2278–2324, 1998.", + "type": "text" + } + ], + "index": 18, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 352, + 506, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 506, + 364 + ], + "score": 1.0, + "content": "Ming-Yu Liu and Oncel Tuzel. Coupled generative adversarial networks. In Advances in Neural Information", + "type": "text" + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 363, + 264, + 375 + ], + "spans": [ + { + "bbox": [ + 114, + 363, + 264, + 375 + ], + "score": 1.0, + "content": "Processing Systems, pp. 469–477, 2016.", + "type": "text" + } + ], + "index": 20, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 380, + 506, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 506, + 392 + ], + "score": 1.0, + "content": "Christos Louizos, Kevin Swersky, Yujia Li, Max Welling, and Richard Zemel. The variational fair autoencoder.", + "type": "text" + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 391, + 172, + 401 + ], + "spans": [ + { + "bbox": [ + 116, + 391, + 172, + 401 + ], + "score": 1.0, + "content": "In ICLR, 2016.", + "type": "text" + } + ], + "index": 22, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 407, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 419 + ], + "score": 1.0, + "content": "Michael F Mathieu, Junbo Jake Zhao, Junbo Zhao, Aditya Ramesh, Pablo Sprechmann, and Yann LeCun.", + "type": "text" + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 418, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 115, + 418, + 506, + 430 + ], + "score": 1.0, + "content": "Disentangling factors of variation in deep representation using adversarial training. In Advances in Neural", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 429, + 317, + 441 + ], + "spans": [ + { + "bbox": [ + 115, + 429, + 317, + 441 + ], + "score": 1.0, + "content": "Information Processing Systems, pp. 5041–5049, 2016.", + "type": "text" + } + ], + "index": 25, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 446, + 505, + 458 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 505, + 458 + ], + "score": 1.0, + "content": "Alec Radford, Luke Metz, and Soumith Chintala. Unsupervised representation learning with deep convolutional", + "type": "text" + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 456, + 330, + 469 + ], + "spans": [ + { + "bbox": [ + 114, + 456, + 330, + 469 + ], + "score": 1.0, + "content": "generative adversarial networks. arXiv:1511.06434, 2015.", + "type": "text" + } + ], + "index": 27, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 474, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 505, + 486 + ], + "score": 1.0, + "content": "Scott Reed, Kihyuk Sohn, Yuting Zhang, and Honglak Lee. Learning to disentangle factors of variation with", + "type": "text" + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 484, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 115, + 484, + 506, + 496 + ], + "score": 1.0, + "content": "manifold interaction. In Proceedings of the 31st International Conference on Machine Learning (ICML-14),", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 113, + 493, + 200, + 505 + ], + "spans": [ + { + "bbox": [ + 113, + 493, + 200, + 505 + ], + "score": 1.0, + "content": "pp. 1431–1439, 2014.", + "type": "text" + } + ], + "index": 30, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 510, + 507, + 525 + ], + "spans": [ + { + "bbox": [ + 104, + 510, + 507, + 525 + ], + "score": 1.0, + "content": "Scott E Reed, Yi Zhang, Yuting Zhang, and Honglak Lee. Deep visual analogy-making. In Advances in Neural", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 521, + 318, + 536 + ], + "spans": [ + { + "bbox": [ + 114, + 521, + 318, + 536 + ], + "score": 1.0, + "content": "Information Processing Systems, pp. 1252–1260, 2015.", + "type": "text" + } + ], + "index": 32, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 538, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 506, + 552 + ], + "score": 1.0, + "content": "Zhixin Shu, Ersin Yumer, Sunil Hadap, Kalyan Sunkavalli, Eli Shechtman, and Dimitris Samaras. Neural", + "type": "text" + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 550, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 115, + 550, + 505, + 562 + ], + "score": 1.0, + "content": "face editing with intrinsic image disentangling. In The IEEE Conference on Computer Vision and Pattern", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 114, + 559, + 235, + 572 + ], + "spans": [ + { + "bbox": [ + 114, + 559, + 235, + 572 + ], + "score": 1.0, + "content": "Recognition (CVPR), July 2017.", + "type": "text" + } + ], + "index": 35, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 578, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 506, + 590 + ], + "score": 1.0, + "content": "Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale image recognition.", + "type": "text" + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 587, + 260, + 600 + ], + "spans": [ + { + "bbox": [ + 113, + 587, + 260, + 600 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1409.1556, 2014.", + "type": "text" + } + ], + "index": 37, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 605, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 506, + 619 + ], + "score": 1.0, + "content": "Luan Tran, Xi Yin, and Xiaoming Liu. Disentangled representation learning gan for pose-invariant face", + "type": "text" + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 616, + 488, + 628 + ], + "spans": [ + { + "bbox": [ + 115, + 616, + 488, + 628 + ], + "score": 1.0, + "content": "recognition. In The IEEE Conference on Computer Vision and Pattern Recognition (CVPR), July 2017.", + "type": "text" + } + ], + "index": 39, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 632, + 507, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 507, + 646 + ], + "score": 1.0, + "content": "Dmitry Ulyanov, Andrea Vedaldi, and Victor S. Lempitsky. Improved texture networks: Maximizing quality and", + "type": "text" + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 644, + 387, + 654 + ], + "spans": [ + { + "bbox": [ + 116, + 644, + 387, + 654 + ], + "score": 1.0, + "content": "diversity in feed-forward stylization and texture synthesis. In CVPR, 2017.", + "type": "text" + } + ], + "index": 41, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 661, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 106, + 661, + 506, + 673 + ], + "score": 1.0, + "content": "Kihyuk Sohn Dimitris Metaxas Manmohan Chandraker Xi Peng, Xiang Yu. Reconstruction for feature disentan-", + "type": "text" + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 671, + 367, + 684 + ], + "spans": [ + { + "bbox": [ + 113, + 671, + 367, + 684 + ], + "score": 1.0, + "content": "glement in pose-invariant face recognition. arXiv:1702.03041, 2017.", + "type": "text" + } + ], + "index": 43, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 687, + 507, + 702 + ], + "spans": [ + { + "bbox": [ + 104, + 687, + 507, + 702 + ], + "score": 1.0, + "content": "Jimei Yang, Scott E Reed, Ming-Hsuan Yang, and Honglak Lee. Weakly-supervised disentangling with recurrent", + "type": "text" + } + ], + "index": 44, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 699, + 314, + 711 + ], + "spans": [ + { + "bbox": [ + 115, + 699, + 314, + 711 + ], + "score": 1.0, + "content": "transformations for 3d view synthesis. In NIPS, 2015.", + "type": "text" + } + ], + "index": 45, + "is_list_end_line": true + } + ], + "index": 22.5, + "bbox_fs": [ + 104, + 83, + 507, + 711 + ] + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/SkmiegW0b/SkmiegW0b_model.json b/parse/train/SkmiegW0b/SkmiegW0b_model.json new file mode 100644 index 0000000000000000000000000000000000000000..c28780eca51d2e5d6c569f368b1ad46e866a7a7f --- /dev/null +++ b/parse/train/SkmiegW0b/SkmiegW0b_model.json @@ -0,0 +1,17872 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 588, + 1303, + 588, + 1303, + 1045, + 398, + 1045 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 299, + 1174, + 1404, + 1174, + 1404, + 1450, + 299, + 1450 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1466, + 1404, + 1466, + 1404, + 1711, + 298, + 1711 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 300, + 1727, + 1404, + 1727, + 1404, + 1819, + 300, + 1819 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 300, + 1834, + 1403, + 1834, + 1403, + 1926, + 300, + 1926 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 300, + 1942, + 1403, + 1942, + 1403, + 2034, + 300, + 2034 + ], + "score": 0.969 + }, + { + "category_id": 0, + "poly": [ + 300, + 219, + 1408, + 219, + 1408, + 323, + 300, + 323 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 313, + 377, + 680, + 377, + 680, + 438, + 313, + 438 + ], + "score": 0.93 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 105, + 298, + 105 + ], + "score": 0.9 + }, + { + "category_id": 0, + "poly": [ + 302, + 1106, + 573, + 1106, + 573, + 1140, + 302, + 1140 + ], + "score": 0.897 + }, + { + "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.715 + }, + { + "category_id": 15, + "poly": [ + 294.0, + 216.0, + 1413.0, + 216.0, + 1413.0, + 274.0, + 294.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 276.0, + 719.0, + 276.0, + 719.0, + 328.0, + 294.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 859.0, + 73.0, + 859.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1102.0, + 579.0, + 1102.0, + 579.0, + 1148.0, + 294.0, + 1148.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": [ + 397.0, + 589.0, + 1305.0, + 589.0, + 1305.0, + 621.0, + 397.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 619.0, + 1304.0, + 619.0, + 1304.0, + 653.0, + 394.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 649.0, + 1305.0, + 649.0, + 1305.0, + 684.0, + 393.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 681.0, + 1304.0, + 681.0, + 1304.0, + 713.0, + 393.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 712.0, + 1305.0, + 712.0, + 1305.0, + 744.0, + 395.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 743.0, + 1305.0, + 743.0, + 1305.0, + 775.0, + 395.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 772.0, + 1304.0, + 772.0, + 1304.0, + 804.0, + 395.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 804.0, + 1304.0, + 804.0, + 1304.0, + 836.0, + 394.0, + 836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 834.0, + 1305.0, + 834.0, + 1305.0, + 866.0, + 395.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 863.0, + 1307.0, + 863.0, + 1307.0, + 896.0, + 394.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 894.0, + 1307.0, + 894.0, + 1307.0, + 925.0, + 395.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 925.0, + 1304.0, + 925.0, + 1304.0, + 957.0, + 394.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 955.0, + 1305.0, + 955.0, + 1305.0, + 990.0, + 394.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 984.0, + 1304.0, + 984.0, + 1304.0, + 1019.0, + 393.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1013.0, + 1228.0, + 1013.0, + 1228.0, + 1051.0, + 393.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1175.0, + 1406.0, + 1175.0, + 1406.0, + 1211.0, + 295.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1206.0, + 1405.0, + 1206.0, + 1405.0, + 1239.0, + 295.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1238.0, + 1404.0, + 1238.0, + 1404.0, + 1270.0, + 295.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1266.0, + 1406.0, + 1266.0, + 1406.0, + 1300.0, + 293.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1298.0, + 1406.0, + 1298.0, + 1406.0, + 1334.0, + 294.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1325.0, + 1406.0, + 1325.0, + 1406.0, + 1364.0, + 293.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1358.0, + 1406.0, + 1358.0, + 1406.0, + 1393.0, + 294.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1385.0, + 1411.0, + 1385.0, + 1411.0, + 1430.0, + 292.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1418.0, + 1387.0, + 1418.0, + 1387.0, + 1456.0, + 293.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1464.0, + 1408.0, + 1464.0, + 1408.0, + 1502.0, + 293.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1495.0, + 1405.0, + 1495.0, + 1405.0, + 1532.0, + 293.0, + 1532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1527.0, + 1405.0, + 1527.0, + 1405.0, + 1561.0, + 294.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1559.0, + 1405.0, + 1559.0, + 1405.0, + 1592.0, + 294.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1588.0, + 1405.0, + 1588.0, + 1405.0, + 1622.0, + 294.0, + 1622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1617.0, + 1405.0, + 1617.0, + 1405.0, + 1653.0, + 293.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1650.0, + 1406.0, + 1650.0, + 1406.0, + 1683.0, + 296.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1677.0, + 1004.0, + 1677.0, + 1004.0, + 1716.0, + 293.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1724.0, + 1406.0, + 1724.0, + 1406.0, + 1765.0, + 293.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1757.0, + 1404.0, + 1757.0, + 1404.0, + 1791.0, + 295.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1785.0, + 1409.0, + 1785.0, + 1409.0, + 1823.0, + 293.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1832.0, + 1405.0, + 1832.0, + 1405.0, + 1869.0, + 295.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1863.0, + 1405.0, + 1863.0, + 1405.0, + 1900.0, + 294.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1896.0, + 784.0, + 1896.0, + 784.0, + 1929.0, + 296.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1939.0, + 1405.0, + 1939.0, + 1405.0, + 1980.0, + 294.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1970.0, + 1408.0, + 1970.0, + 1408.0, + 2008.0, + 294.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": [ + 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": [ + 297, + 1346, + 1405, + 1346, + 1405, + 1683, + 297, + 1683 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 993, + 1407, + 993, + 1407, + 1331, + 297, + 1331 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1698, + 1405, + 1698, + 1405, + 2034, + 298, + 2034 + ], + "score": 0.981 + }, + { + "category_id": 3, + "poly": [ + 382, + 330, + 1317, + 330, + 1317, + 646, + 382, + 646 + ], + "score": 0.973 + }, + { + "category_id": 4, + "poly": [ + 296, + 669, + 1405, + 669, + 1405, + 856, + 296, + 856 + ], + "score": 0.962 + }, + { + "category_id": 1, + "poly": [ + 293, + 229, + 1403, + 229, + 1403, + 294, + 293, + 294 + ], + "score": 0.954 + }, + { + "category_id": 2, + "poly": [ + 297, + 75, + 857, + 75, + 857, + 105, + 297, + 105 + ], + "score": 0.913 + }, + { + "category_id": 0, + "poly": [ + 300, + 924, + 581, + 924, + 581, + 959, + 300, + 959 + ], + "score": 0.898 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.716 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.168 + }, + { + "category_id": 13, + "poly": [ + 1155, + 1086, + 1397, + 1086, + 1397, + 1120, + 1155, + 1120 + ], + "score": 0.93, + "latex": "p ( \\bar { \\mathbf { x } } , \\mathbf { z } ) = p ( \\mathbf { x } | \\mathbf { z } ) p ( \\mathbf { z } )" + }, + { + "category_id": 13, + "poly": [ + 609, + 1148, + 803, + 1148, + 803, + 1180, + 609, + 1180 + ], + "score": 0.93, + "latex": "\\operatorname { E n c } ( \\mathbf { x } ) = p ( \\mathbf { z } | \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 297, + 1178, + 492, + 1178, + 492, + 1212, + 297, + 1212 + ], + "score": 0.92, + "latex": "\\mathrm { D e c } ( \\mathbf { z } ) = p ( \\mathbf { x } | \\mathbf { z } )" + }, + { + "category_id": 13, + "poly": [ + 1076, + 1378, + 1221, + 1378, + 1221, + 1410, + 1076, + 1410 + ], + "score": 0.91, + "latex": "\\mathbf { x } = \\mathrm { D e c } ( \\mathbf { z } )" + }, + { + "category_id": 13, + "poly": [ + 861, + 1026, + 1065, + 1026, + 1065, + 1060, + 861, + 1060 + ], + "score": 0.9, + "latex": "\\mathbf { x } = \\mathrm { D e c } ( \\mathrm { E n c } ( \\mathbf { x } ) )" + }, + { + "category_id": 13, + "poly": [ + 1178, + 1533, + 1291, + 1533, + 1291, + 1562, + 1178, + 1562 + ], + "score": 0.87, + "latex": "\\mathbf { x } \\sim p _ { r e a l }" + }, + { + "category_id": 13, + "poly": [ + 852, + 1442, + 911, + 1442, + 911, + 1471, + 852, + 1471 + ], + "score": 0.87, + "latex": "p _ { r e a l }" + }, + { + "category_id": 13, + "poly": [ + 601, + 1443, + 631, + 1443, + 631, + 1472, + 601, + 1472 + ], + "score": 0.87, + "latex": "p _ { g }" + }, + { + "category_id": 13, + "poly": [ + 1154, + 1027, + 1239, + 1027, + 1239, + 1059, + 1154, + 1059 + ], + "score": 0.87, + "latex": "\\operatorname { E n c } ( \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 818, + 1123, + 838, + 1123, + 838, + 1145, + 818, + 1145 + ], + "score": 0.61, + "latex": "\\mathbf { z }" + }, + { + "category_id": 13, + "poly": [ + 886, + 1530, + 970, + 1530, + 970, + 1563, + 886, + 1563 + ], + "score": 0.55, + "latex": "\\operatorname { E n c } ( \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 374, + 1122, + 398, + 1122, + 398, + 1146, + 374, + 1146 + ], + "score": 0.53, + "latex": "\\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 455, + 1413, + 474, + 1413, + 474, + 1436, + 455, + 1436 + ], + "score": 0.52, + "latex": "\\mathbf { z }" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 343.0, + 599.0, + 343.0, + 599.0, + 361.0, + 564.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 346.0, + 922.0, + 346.0, + 922.0, + 358.0, + 898.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 346.0, + 1247.0, + 346.0, + 1247.0, + 357.0, + 1226.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 349.0, + 1304.0, + 349.0, + 1304.0, + 360.0, + 1282.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.0, + 406.0, + 755.0, + 406.0, + 755.0, + 425.0, + 723.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1271.0, + 399.0, + 1306.0, + 399.0, + 1306.0, + 424.0, + 1271.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 459.0, + 466.0, + 459.0, + 466.0, + 466.0, + 454.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 450.0, + 655.0, + 450.0, + 655.0, + 482.0, + 604.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 445.0, + 987.0, + 445.0, + 987.0, + 486.0, + 713.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1116.0, + 453.0, + 1146.0, + 453.0, + 1146.0, + 474.0, + 1116.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1152.0, + 448.0, + 1311.0, + 448.0, + 1311.0, + 484.0, + 1152.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 508.0, + 429.0, + 508.0, + 429.0, + 531.0, + 398.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 510.0, + 482.0, + 510.0, + 482.0, + 529.0, + 454.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 499.0, + 662.0, + 499.0, + 662.0, + 545.0, + 542.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 500.0, + 987.0, + 500.0, + 987.0, + 539.0, + 712.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 494.0, + 1317.0, + 494.0, + 1317.0, + 547.0, + 1045.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 561.0, + 659.0, + 561.0, + 659.0, + 595.0, + 390.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 558.0, + 986.0, + 558.0, + 986.0, + 596.0, + 713.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 561.0, + 1311.0, + 561.0, + 1311.0, + 595.0, + 1042.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 612.0, + 613.0, + 612.0, + 613.0, + 653.0, + 429.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 612.0, + 959.0, + 612.0, + 959.0, + 651.0, + 738.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 610.0, + 1300.0, + 610.0, + 1300.0, + 656.0, + 1053.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 398.5, + 658.0, + 398.5, + 658.0, + 421.5, + 606.0, + 421.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.25, + 452.0, + 599.25, + 452.0, + 599.25, + 479.0, + 555.25, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.25, + 452.5, + 1087.25, + 452.5, + 1087.25, + 476.5, + 1046.25, + 476.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 494.0, + 504.0, + 555.0, + 504.0, + 555.0, + 535.0, + 494.0, + 535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 668.0, + 1405.0, + 668.0, + 1405.0, + 707.0, + 294.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 701.0, + 1405.0, + 701.0, + 1405.0, + 737.0, + 294.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 733.0, + 1403.0, + 733.0, + 1403.0, + 765.0, + 295.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 763.0, + 1405.0, + 763.0, + 1405.0, + 797.0, + 293.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 793.0, + 1406.0, + 793.0, + 1406.0, + 827.0, + 293.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 825.0, + 713.0, + 825.0, + 713.0, + 857.0, + 295.0, + 857.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": [ + 291.0, + 920.0, + 586.0, + 920.0, + 586.0, + 966.0, + 291.0, + 966.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, + 1346.0, + 1403.0, + 1346.0, + 1403.0, + 1383.0, + 295.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1379.0, + 1075.0, + 1379.0, + 1075.0, + 1411.0, + 294.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 1379.0, + 1405.0, + 1379.0, + 1405.0, + 1411.0, + 1222.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1407.0, + 454.0, + 1407.0, + 454.0, + 1444.0, + 292.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 475.0, + 1407.0, + 1406.0, + 1407.0, + 1406.0, + 1444.0, + 475.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1440.0, + 600.0, + 1440.0, + 600.0, + 1475.0, + 295.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 1440.0, + 851.0, + 1440.0, + 851.0, + 1475.0, + 632.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 912.0, + 1440.0, + 1403.0, + 1440.0, + 1403.0, + 1475.0, + 912.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1467.0, + 1406.0, + 1467.0, + 1406.0, + 1505.0, + 292.0, + 1505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1500.0, + 1406.0, + 1500.0, + 1406.0, + 1534.0, + 294.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1528.0, + 885.0, + 1528.0, + 885.0, + 1565.0, + 292.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 1528.0, + 1177.0, + 1528.0, + 1177.0, + 1565.0, + 971.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 1528.0, + 1408.0, + 1528.0, + 1408.0, + 1565.0, + 1292.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1558.0, + 1406.0, + 1558.0, + 1406.0, + 1596.0, + 292.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1589.0, + 1405.0, + 1589.0, + 1405.0, + 1626.0, + 294.0, + 1626.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, + 1652.0, + 1135.0, + 1652.0, + 1135.0, + 1687.0, + 295.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 995.0, + 1404.0, + 995.0, + 1404.0, + 1030.0, + 294.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1025.0, + 860.0, + 1025.0, + 860.0, + 1060.0, + 294.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 1025.0, + 1153.0, + 1025.0, + 1153.0, + 1060.0, + 1066.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1240.0, + 1025.0, + 1404.0, + 1025.0, + 1404.0, + 1060.0, + 1240.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1056.0, + 1408.0, + 1056.0, + 1408.0, + 1091.0, + 294.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1085.0, + 1154.0, + 1085.0, + 1154.0, + 1122.0, + 294.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 1085.0, + 1407.0, + 1085.0, + 1407.0, + 1122.0, + 1398.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1117.0, + 373.0, + 1117.0, + 373.0, + 1152.0, + 295.0, + 1152.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 399.0, + 1117.0, + 817.0, + 1117.0, + 817.0, + 1152.0, + 399.0, + 1152.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 1117.0, + 1407.0, + 1117.0, + 1407.0, + 1152.0, + 839.0, + 1152.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1147.0, + 608.0, + 1147.0, + 608.0, + 1182.0, + 294.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 1147.0, + 1408.0, + 1147.0, + 1408.0, + 1182.0, + 804.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1176.0, + 296.0, + 1176.0, + 296.0, + 1216.0, + 292.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 493.0, + 1176.0, + 1409.0, + 1176.0, + 1409.0, + 1216.0, + 493.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1207.0, + 1405.0, + 1207.0, + 1405.0, + 1243.0, + 294.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1242.0, + 1405.0, + 1242.0, + 1405.0, + 1273.0, + 296.0, + 1273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1269.0, + 1407.0, + 1269.0, + 1407.0, + 1305.0, + 294.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1301.0, + 809.0, + 1301.0, + 809.0, + 1332.0, + 295.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1699.0, + 1402.0, + 1699.0, + 1402.0, + 1733.0, + 296.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1727.0, + 1406.0, + 1727.0, + 1406.0, + 1763.0, + 293.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1761.0, + 1407.0, + 1761.0, + 1407.0, + 1793.0, + 293.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1790.0, + 1407.0, + 1790.0, + 1407.0, + 1825.0, + 295.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1814.0, + 1407.0, + 1814.0, + 1407.0, + 1861.0, + 290.0, + 1861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1850.0, + 1405.0, + 1850.0, + 1405.0, + 1887.0, + 293.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1882.0, + 1405.0, + 1882.0, + 1405.0, + 1917.0, + 295.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1911.0, + 1406.0, + 1911.0, + 1406.0, + 1948.0, + 291.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1944.0, + 1403.0, + 1944.0, + 1403.0, + 1975.0, + 296.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1968.0, + 1409.0, + 1968.0, + 1409.0, + 2011.0, + 291.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1998.0, + 1406.0, + 1998.0, + 1406.0, + 2041.0, + 292.0, + 2041.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": [ + 293.0, + 260.0, + 1372.0, + 260.0, + 1372.0, + 298.0, + 293.0, + 298.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 816, + 1405, + 816, + 1405, + 1154, + 298, + 1154 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 399, + 1404, + 399, + 1404, + 705, + 298, + 705 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1170, + 1404, + 1170, + 1404, + 1385, + 297, + 1385 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 1398, + 1403, + 1398, + 1403, + 1584, + 297, + 1584 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 1597, + 1404, + 1597, + 1404, + 1752, + 297, + 1752 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1402, + 229, + 1402, + 384, + 298, + 384 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 1816, + 1404, + 1816, + 1404, + 1909, + 298, + 1909 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 296, + 1971, + 1404, + 1971, + 1404, + 2034, + 296, + 2034 + ], + "score": 0.948 + }, + { + "category_id": 8, + "poly": [ + 569, + 1921, + 1130, + 1921, + 1130, + 1961, + 569, + 1961 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 626, + 1766, + 1075, + 1766, + 1075, + 1805, + 626, + 1805 + ], + "score": 0.938 + }, + { + "category_id": 0, + "poly": [ + 299, + 751, + 936, + 751, + 936, + 785, + 299, + 785 + ], + "score": 0.911 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1770, + 1399, + 1770, + 1399, + 1800, + 1366, + 1800 + ], + "score": 0.898 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1926, + 1400, + 1926, + 1400, + 1955, + 1366, + 1955 + ], + "score": 0.879 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 856, + 76, + 856, + 104, + 298, + 104 + ], + "score": 0.866 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.681 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.424 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 855, + 76, + 855, + 104, + 300, + 104 + ], + "score": 0.124 + }, + { + "category_id": 13, + "poly": [ + 571, + 1491, + 733, + 1491, + 733, + 1524, + 571, + 1524 + ], + "score": 0.93, + "latex": "\\mathbf { x } _ { 1 } = f ( \\mathbf { v } _ { 1 } , \\mathbf { c } )" + }, + { + "category_id": 13, + "poly": [ + 1171, + 1200, + 1312, + 1200, + 1312, + 1234, + 1171, + 1234 + ], + "score": 0.93, + "latex": "\\mathbf { x } = f ( \\mathbf { v } , \\mathbf { c } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1350, + 504, + 1350, + 504, + 1387, + 298, + 1387 + ], + "score": 0.93, + "latex": "f ^ { - 1 } = [ f _ { \\mathbf { v } } ^ { - 1 } , f _ { \\mathbf { c } } ^ { - 1 } ]" + }, + { + "category_id": 13, + "poly": [ + 785, + 1491, + 947, + 1491, + 947, + 1525, + 785, + 1525 + ], + "score": 0.93, + "latex": "\\mathbf { x } _ { 1 } = f ( \\mathbf { v } _ { 2 } , \\mathbf { c } )" + }, + { + "category_id": 13, + "poly": [ + 1028, + 1692, + 1211, + 1692, + 1211, + 1724, + 1028, + 1724 + ], + "score": 0.92, + "latex": "[ N _ { \\bf v } , N _ { \\bf c } ] = f ^ { - 1 }" + }, + { + "category_id": 14, + "poly": [ + 623, + 1765, + 1076, + 1765, + 1076, + 1804, + 623, + 1804 + ], + "score": 0.91, + "latex": "N _ { \\mathbf { v } } ( f ( \\mathbf { v } , \\mathbf { c } ) ) = \\mathbf { v } \\qquad N _ { \\mathbf { c } } ( f ( \\mathbf { v } , \\mathbf { c } ) ) = \\mathbf { c } ." + }, + { + "category_id": 13, + "poly": [ + 1051, + 1974, + 1090, + 1974, + 1090, + 2003, + 1051, + 2003 + ], + "score": 0.9, + "latex": "N _ { \\mathbf { v } }" + }, + { + "category_id": 13, + "poly": [ + 1010, + 1659, + 1306, + 1659, + 1306, + 1692, + 1010, + 1692 + ], + "score": 0.9, + "latex": "\\mathrm { E n c } ( \\mathbf { x } ) = [ N _ { \\mathbf { v } } ( \\mathbf { x } ) , \\bar { N _ { \\mathbf { c } } } ( \\mathbf { x } ) ]" + }, + { + "category_id": 13, + "poly": [ + 905, + 1848, + 945, + 1848, + 945, + 1877, + 905, + 1877 + ], + "score": 0.9, + "latex": "N _ { \\mathbf { v } }" + }, + { + "category_id": 13, + "poly": [ + 820, + 1974, + 859, + 1974, + 859, + 2003, + 820, + 2003 + ], + "score": 0.89, + "latex": "R _ { \\mathbf { v } }" + }, + { + "category_id": 13, + "poly": [ + 1250, + 1464, + 1336, + 1464, + 1336, + 1493, + 1250, + 1493 + ], + "score": 0.89, + "latex": "\\mathbf { c } \\sim p _ { \\mathbf { c } }" + }, + { + "category_id": 13, + "poly": [ + 915, + 1973, + 951, + 1973, + 951, + 2003, + 915, + 2003 + ], + "score": 0.89, + "latex": "R _ { \\mathbf { c } }" + }, + { + "category_id": 14, + "poly": [ + 570, + 1921, + 1130, + 1921, + 1130, + 1960, + 570, + 1960 + ], + "score": 0.89, + "latex": "R _ { \\mathbf { v } } ( N _ { \\mathbf { v } } ( f ( \\mathbf { v } , \\mathbf { c } ) ) ) = \\mathbf { v } \\qquad R _ { \\mathbf { c } } ( N _ { \\mathbf { c } } ( f ( \\mathbf { v } , \\mathbf { c } ) ) ) = \\mathbf { c }" + }, + { + "category_id": 13, + "poly": [ + 898, + 1630, + 936, + 1630, + 936, + 1660, + 898, + 1660 + ], + "score": 0.89, + "latex": "N _ { \\mathbf { c } }" + }, + { + "category_id": 13, + "poly": [ + 809, + 1631, + 849, + 1631, + 849, + 1660, + 809, + 1660 + ], + "score": 0.89, + "latex": "N _ { \\mathbf { v } }" + }, + { + "category_id": 13, + "poly": [ + 996, + 1848, + 1034, + 1848, + 1034, + 1877, + 996, + 1877 + ], + "score": 0.89, + "latex": "N _ { \\mathbf { c } }" + }, + { + "category_id": 13, + "poly": [ + 1335, + 1974, + 1373, + 1974, + 1373, + 2003, + 1335, + 2003 + ], + "score": 0.88, + "latex": "N _ { \\mathbf { c } }" + }, + { + "category_id": 13, + "poly": [ + 621, + 1293, + 642, + 1293, + 642, + 1324, + 621, + 1324 + ], + "score": 0.87, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 1321, + 1526, + 1354, + 1526, + 1354, + 1552, + 1321, + 1552 + ], + "score": 0.86, + "latex": "\\mathbf { v } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1105, + 1232, + 1125, + 1232, + 1125, + 1262, + 1105, + 1262 + ], + "score": 0.86, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 656, + 1263, + 676, + 1263, + 676, + 1293, + 656, + 1293 + ], + "score": 0.86, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 644, + 1202, + 665, + 1202, + 665, + 1233, + 644, + 1233 + ], + "score": 0.86, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 1011, + 1405, + 1044, + 1405, + 1044, + 1430, + 1011, + 1430 + ], + "score": 0.85, + "latex": "\\mathbf { x } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1099, + 1405, + 1131, + 1405, + 1131, + 1430, + 1099, + 1430 + ], + "score": 0.85, + "latex": "\\mathbf { x } _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1555, + 328, + 1555, + 328, + 1583, + 296, + 1583 + ], + "score": 0.82, + "latex": "\\mathbf { v } _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1382, + 1818, + 1401, + 1818, + 1401, + 1849, + 1382, + 1849 + ], + "score": 0.82, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 1091, + 1465, + 1195, + 1465, + 1195, + 1493, + 1091, + 1493 + ], + "score": 0.75, + "latex": "\\mathbf { v } _ { 2 } \\sim p _ { \\mathbf { v } }" + }, + { + "category_id": 13, + "poly": [ + 974, + 1465, + 1078, + 1465, + 1078, + 1492, + 974, + 1492 + ], + "score": 0.73, + "latex": "\\mathbf { v } _ { 1 } \\sim p _ { \\mathbf { v } }" + }, + { + "category_id": 13, + "poly": [ + 1069, + 1822, + 1090, + 1822, + 1090, + 1844, + 1069, + 1844 + ], + "score": 0.71, + "latex": "\\mathbf { v }" + }, + { + "category_id": 13, + "poly": [ + 567, + 1726, + 588, + 1726, + 588, + 1748, + 567, + 1748 + ], + "score": 0.7, + "latex": "\\mathbf { v }" + }, + { + "category_id": 13, + "poly": [ + 429, + 2008, + 449, + 2008, + 449, + 2030, + 429, + 2030 + ], + "score": 0.69, + "latex": "\\mathbf { v }" + }, + { + "category_id": 13, + "poly": [ + 623, + 1852, + 642, + 1852, + 642, + 1874, + 623, + 1874 + ], + "score": 0.68, + "latex": "\\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 868, + 1726, + 888, + 1726, + 888, + 1748, + 868, + 1748 + ], + "score": 0.66, + "latex": "\\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 490, + 1235, + 512, + 1235, + 512, + 1259, + 490, + 1259 + ], + "score": 0.63, + "latex": "\\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 1262, + 1979, + 1280, + 1979, + 1280, + 2000, + 1262, + 2000 + ], + "score": 0.6, + "latex": "\\mathbf { c }" + }, + { + "category_id": 13, + "poly": [ + 832, + 1176, + 854, + 1176, + 854, + 1198, + 832, + 1198 + ], + "score": 0.59, + "latex": "\\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 667, + 1236, + 688, + 1236, + 688, + 1258, + 667, + 1258 + ], + "score": 0.55, + "latex": "\\mathbf { v }" + }, + { + "category_id": 13, + "poly": [ + 796, + 1528, + 817, + 1528, + 817, + 1550, + 796, + 1550 + ], + "score": 0.51, + "latex": "\\mathbf { v }" + }, + { + "category_id": 13, + "poly": [ + 983, + 1206, + 1005, + 1206, + 1005, + 1228, + 983, + 1228 + ], + "score": 0.51, + "latex": "\\mathbf { v }" + }, + { + "category_id": 13, + "poly": [ + 1335, + 1635, + 1355, + 1635, + 1355, + 1657, + 1335, + 1657 + ], + "score": 0.48, + "latex": "\\mathbf { v }" + }, + { + "category_id": 13, + "poly": [ + 638, + 1726, + 656, + 1726, + 656, + 1748, + 638, + 1748 + ], + "score": 0.4, + "latex": "\\mathbf { c }" + }, + { + "category_id": 13, + "poly": [ + 376, + 1977, + 428, + 1977, + 428, + 2002, + 376, + 2002 + ], + "score": 0.33, + "latex": "\\mathbf { v } , \\mathbf { c }" + }, + { + "category_id": 13, + "poly": [ + 1380, + 1405, + 1402, + 1405, + 1402, + 1428, + 1380, + 1428 + ], + "score": 0.32, + "latex": "\\mathbf { v }" + }, + { + "category_id": 13, + "poly": [ + 1057, + 1206, + 1075, + 1206, + 1075, + 1228, + 1057, + 1228 + ], + "score": 0.29, + "latex": "\\mathbf { c }" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 746.0, + 941.0, + 746.0, + 941.0, + 791.0, + 291.0, + 791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 859.0, + 73.0, + 859.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 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": [ + 297.0, + 73.0, + 859.0, + 73.0, + 859.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 814.0, + 1406.0, + 814.0, + 1406.0, + 856.0, + 292.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 849.0, + 1406.0, + 849.0, + 1406.0, + 884.0, + 295.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 880.0, + 1403.0, + 880.0, + 1403.0, + 912.0, + 296.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 908.0, + 1405.0, + 908.0, + 1405.0, + 944.0, + 293.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 941.0, + 1405.0, + 941.0, + 1405.0, + 973.0, + 296.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 970.0, + 1405.0, + 970.0, + 1405.0, + 1005.0, + 293.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1001.0, + 1405.0, + 1001.0, + 1405.0, + 1036.0, + 295.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1031.0, + 1405.0, + 1031.0, + 1405.0, + 1065.0, + 293.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1065.0, + 1403.0, + 1065.0, + 1403.0, + 1096.0, + 296.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1093.0, + 1406.0, + 1093.0, + 1406.0, + 1128.0, + 295.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1123.0, + 816.0, + 1123.0, + 816.0, + 1154.0, + 296.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 396.0, + 1404.0, + 396.0, + 1404.0, + 435.0, + 293.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 428.0, + 1408.0, + 428.0, + 1408.0, + 466.0, + 293.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 458.0, + 1406.0, + 458.0, + 1406.0, + 496.0, + 292.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 490.0, + 1406.0, + 490.0, + 1406.0, + 524.0, + 293.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 522.0, + 1406.0, + 522.0, + 1406.0, + 556.0, + 292.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 553.0, + 1405.0, + 553.0, + 1405.0, + 585.0, + 293.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 582.0, + 1406.0, + 582.0, + 1406.0, + 618.0, + 294.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 610.0, + 1406.0, + 610.0, + 1406.0, + 647.0, + 293.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 642.0, + 1403.0, + 642.0, + 1403.0, + 676.0, + 295.0, + 676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 671.0, + 831.0, + 671.0, + 831.0, + 708.0, + 293.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1168.0, + 831.0, + 1168.0, + 831.0, + 1205.0, + 294.0, + 1205.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 1168.0, + 1405.0, + 1168.0, + 1405.0, + 1205.0, + 855.0, + 1205.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1201.0, + 643.0, + 1201.0, + 643.0, + 1236.0, + 295.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 1201.0, + 982.0, + 1201.0, + 982.0, + 1236.0, + 666.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 1201.0, + 1056.0, + 1201.0, + 1056.0, + 1236.0, + 1006.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1076.0, + 1201.0, + 1170.0, + 1201.0, + 1170.0, + 1236.0, + 1076.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1313.0, + 1201.0, + 1406.0, + 1201.0, + 1406.0, + 1236.0, + 1313.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1229.0, + 489.0, + 1229.0, + 489.0, + 1266.0, + 294.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 1229.0, + 666.0, + 1229.0, + 666.0, + 1266.0, + 513.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 1229.0, + 1104.0, + 1229.0, + 1104.0, + 1266.0, + 689.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1126.0, + 1229.0, + 1407.0, + 1229.0, + 1407.0, + 1266.0, + 1126.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1261.0, + 655.0, + 1261.0, + 655.0, + 1295.0, + 294.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 677.0, + 1261.0, + 1405.0, + 1261.0, + 1405.0, + 1295.0, + 677.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1290.0, + 620.0, + 1290.0, + 620.0, + 1326.0, + 294.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 1290.0, + 1406.0, + 1290.0, + 1406.0, + 1326.0, + 643.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1322.0, + 1405.0, + 1322.0, + 1405.0, + 1357.0, + 292.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1348.0, + 297.0, + 1348.0, + 297.0, + 1392.0, + 292.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 1348.0, + 1071.0, + 1348.0, + 1071.0, + 1392.0, + 505.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1395.0, + 1010.0, + 1395.0, + 1010.0, + 1436.0, + 292.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 1395.0, + 1098.0, + 1395.0, + 1098.0, + 1436.0, + 1045.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 1395.0, + 1379.0, + 1395.0, + 1379.0, + 1436.0, + 1132.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1395.0, + 1408.0, + 1395.0, + 1408.0, + 1436.0, + 1403.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1427.0, + 1407.0, + 1427.0, + 1407.0, + 1469.0, + 291.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1457.0, + 973.0, + 1457.0, + 973.0, + 1499.0, + 291.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 1457.0, + 1090.0, + 1457.0, + 1090.0, + 1499.0, + 1079.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1196.0, + 1457.0, + 1249.0, + 1457.0, + 1249.0, + 1499.0, + 1196.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1337.0, + 1457.0, + 1407.0, + 1457.0, + 1407.0, + 1499.0, + 1337.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1490.0, + 570.0, + 1490.0, + 570.0, + 1528.0, + 292.0, + 1528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 1490.0, + 784.0, + 1490.0, + 784.0, + 1528.0, + 734.0, + 1528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 1490.0, + 1406.0, + 1490.0, + 1406.0, + 1528.0, + 948.0, + 1528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1520.0, + 795.0, + 1520.0, + 795.0, + 1555.0, + 295.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 1520.0, + 1320.0, + 1520.0, + 1320.0, + 1555.0, + 818.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1355.0, + 1520.0, + 1404.0, + 1520.0, + 1404.0, + 1555.0, + 1355.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1552.0, + 1089.0, + 1552.0, + 1089.0, + 1584.0, + 329.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1599.0, + 1405.0, + 1599.0, + 1405.0, + 1632.0, + 296.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1628.0, + 808.0, + 1628.0, + 808.0, + 1665.0, + 295.0, + 1665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 1628.0, + 897.0, + 1628.0, + 897.0, + 1665.0, + 850.0, + 1665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 937.0, + 1628.0, + 1334.0, + 1628.0, + 1334.0, + 1665.0, + 937.0, + 1665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1356.0, + 1628.0, + 1406.0, + 1628.0, + 1406.0, + 1665.0, + 1356.0, + 1665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1656.0, + 1009.0, + 1656.0, + 1009.0, + 1696.0, + 294.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1307.0, + 1656.0, + 1406.0, + 1656.0, + 1406.0, + 1696.0, + 1307.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1684.0, + 1027.0, + 1684.0, + 1027.0, + 1730.0, + 291.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1212.0, + 1684.0, + 1406.0, + 1684.0, + 1406.0, + 1730.0, + 1212.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1716.0, + 566.0, + 1716.0, + 566.0, + 1758.0, + 294.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 1716.0, + 637.0, + 1716.0, + 637.0, + 1758.0, + 589.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 1716.0, + 867.0, + 1716.0, + 867.0, + 1758.0, + 657.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 1716.0, + 947.0, + 1716.0, + 947.0, + 1758.0, + 889.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 231.0, + 1404.0, + 231.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": [ + 293.0, + 287.0, + 1406.0, + 287.0, + 1406.0, + 329.0, + 293.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 316.0, + 1406.0, + 316.0, + 1406.0, + 361.0, + 291.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 352.0, + 1274.0, + 352.0, + 1274.0, + 389.0, + 294.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1812.0, + 1068.0, + 1812.0, + 1068.0, + 1854.0, + 292.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1091.0, + 1812.0, + 1381.0, + 1812.0, + 1381.0, + 1854.0, + 1091.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1812.0, + 1408.0, + 1812.0, + 1408.0, + 1854.0, + 1402.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1844.0, + 622.0, + 1844.0, + 622.0, + 1883.0, + 292.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 1844.0, + 904.0, + 1844.0, + 904.0, + 1883.0, + 643.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 1844.0, + 995.0, + 1844.0, + 995.0, + 1883.0, + 946.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 1844.0, + 1405.0, + 1844.0, + 1405.0, + 1883.0, + 1035.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1874.0, + 574.0, + 1874.0, + 574.0, + 1916.0, + 293.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1971.0, + 375.0, + 1971.0, + 375.0, + 2006.0, + 295.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 1971.0, + 819.0, + 1971.0, + 819.0, + 2006.0, + 429.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 1971.0, + 914.0, + 1971.0, + 914.0, + 2006.0, + 860.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 1971.0, + 1050.0, + 1971.0, + 1050.0, + 2006.0, + 952.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1091.0, + 1971.0, + 1261.0, + 1971.0, + 1261.0, + 2006.0, + 1091.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1281.0, + 1971.0, + 1334.0, + 1971.0, + 1334.0, + 2006.0, + 1281.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1374.0, + 1971.0, + 1405.0, + 1971.0, + 1405.0, + 2006.0, + 1374.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2000.0, + 428.0, + 2000.0, + 428.0, + 2036.0, + 294.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 2000.0, + 461.0, + 2000.0, + 461.0, + 2036.0, + 450.0, + 2036.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1296, + 1405, + 1296, + 1405, + 1544, + 296, + 1544 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 545, + 1405, + 545, + 1405, + 701, + 297, + 701 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 793, + 1404, + 793, + 1404, + 916, + 297, + 916 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 296, + 1081, + 1405, + 1081, + 1405, + 1205, + 296, + 1205 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 1866, + 1405, + 1866, + 1405, + 1990, + 297, + 1990 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 300, + 973, + 1408, + 973, + 1408, + 1068, + 300, + 1068 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 294, + 350, + 1402, + 350, + 1402, + 412, + 294, + 412 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 295, + 228, + 1402, + 228, + 1402, + 292, + 295, + 292 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 300, + 469, + 1399, + 469, + 1399, + 534, + 300, + 534 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 654, + 303, + 1045, + 303, + 1045, + 341, + 654, + 341 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 658, + 2000, + 986, + 2000, + 986, + 2039, + 658, + 2039 + ], + "score": 0.938 + }, + { + "category_id": 8, + "poly": [ + 668, + 934, + 1029, + 934, + 1029, + 965, + 668, + 965 + ], + "score": 0.937 + }, + { + "category_id": 8, + "poly": [ + 380, + 1216, + 1314, + 1216, + 1314, + 1272, + 380, + 1272 + ], + "score": 0.934 + }, + { + "category_id": 8, + "poly": [ + 431, + 1553, + 1266, + 1553, + 1266, + 1613, + 431, + 1613 + ], + "score": 0.927 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 857, + 74, + 857, + 106, + 297, + 106 + ], + "score": 0.924 + }, + { + "category_id": 0, + "poly": [ + 300, + 1809, + 623, + 1809, + 623, + 1842, + 300, + 1842 + ], + "score": 0.918 + }, + { + "category_id": 0, + "poly": [ + 299, + 737, + 583, + 737, + 583, + 768, + 299, + 768 + ], + "score": 0.916 + }, + { + "category_id": 1, + "poly": [ + 293, + 1741, + 957, + 1741, + 957, + 1774, + 293, + 1774 + ], + "score": 0.915 + }, + { + "category_id": 8, + "poly": [ + 546, + 1679, + 1156, + 1679, + 1156, + 1729, + 546, + 1729 + ], + "score": 0.91 + }, + { + "category_id": 9, + "poly": [ + 1366, + 932, + 1400, + 932, + 1400, + 961, + 1366, + 961 + ], + "score": 0.899 + }, + { + "category_id": 1, + "poly": [ + 302, + 1636, + 1368, + 1636, + 1368, + 1670, + 302, + 1670 + ], + "score": 0.897 + }, + { + "category_id": 9, + "poly": [ + 1366, + 426, + 1399, + 426, + 1399, + 455, + 1366, + 455 + ], + "score": 0.889 + }, + { + "category_id": 9, + "poly": [ + 1366, + 2004, + 1400, + 2004, + 1400, + 2033, + 1366, + 2033 + ], + "score": 0.884 + }, + { + "category_id": 9, + "poly": [ + 1366, + 307, + 1400, + 307, + 1400, + 336, + 1366, + 336 + ], + "score": 0.869 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1683, + 1400, + 1683, + 1400, + 1712, + 1365, + 1712 + ], + "score": 0.865 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1567, + 1400, + 1567, + 1400, + 1598, + 1366, + 1598 + ], + "score": 0.858 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1230, + 1400, + 1230, + 1400, + 1260, + 1366, + 1260 + ], + "score": 0.844 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 857, + 2088, + 857, + 2111, + 840, + 2111 + ], + "score": 0.805 + }, + { + "category_id": 8, + "poly": [ + 572, + 421, + 1126, + 421, + 1126, + 461, + 572, + 461 + ], + "score": 0.669 + }, + { + "category_id": 13, + "poly": [ + 1099, + 1360, + 1215, + 1360, + 1215, + 1393, + 1099, + 1393 + ], + "score": 0.93, + "latex": "[ \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 3 \\oplus 1 } ]" + }, + { + "category_id": 13, + "poly": [ + 862, + 1143, + 952, + 1143, + 952, + 1177, + 862, + 1177 + ], + "score": 0.93, + "latex": "N _ { \\mathbf { v } } ( \\mathbf { x } _ { 1 } )" + }, + { + "category_id": 13, + "poly": [ + 835, + 1360, + 924, + 1360, + 924, + 1393, + 835, + 1393 + ], + "score": 0.93, + "latex": "[ \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } ]" + }, + { + "category_id": 13, + "poly": [ + 1000, + 974, + 1174, + 974, + 1174, + 1008, + 1000, + 1008 + ], + "score": 0.93, + "latex": "\\mathbf { x } _ { 3 } = f ( \\mathbf { v } _ { 3 } , \\mathbf { c } _ { 3 } )" + }, + { + "category_id": 13, + "poly": [ + 1043, + 1482, + 1130, + 1482, + 1130, + 1515, + 1043, + 1515 + ], + "score": 0.92, + "latex": "N _ { \\mathbf { c } } ( \\mathbf { x } _ { 1 } )" + }, + { + "category_id": 13, + "poly": [ + 1258, + 1143, + 1345, + 1143, + 1345, + 1177, + 1258, + 1177 + ], + "score": 0.92, + "latex": "N _ { \\mathbf { c } } ( \\mathbf { x } _ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 834, + 499, + 1038, + 499, + 1038, + 534, + 834, + 534 + ], + "score": 0.92, + "latex": "{ \\bf x } _ { 1 \\oplus 2 } = f ( { \\bf v } _ { 1 } , { \\bf c } _ { 2 } )" + }, + { + "category_id": 14, + "poly": [ + 432, + 1551, + 1268, + 1551, + 1268, + 1612, + 432, + 1612 + ], + "score": 0.92, + "latex": "\\mathcal { L } _ { G A N } \\doteq E _ { \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } } \\Big [ \\log ( \\mathrm { D s c } ( \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } ) ) \\Big ] + E _ { \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 3 } } \\Big [ \\log ( 1 - \\mathrm { D s c } ( \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 3 \\oplus 1 } ) ) \\Big ] ." + }, + { + "category_id": 14, + "poly": [ + 650, + 302, + 1048, + 302, + 1048, + 340, + 650, + 340 + ], + "score": 0.92, + "latex": "\\mathrm { D e c } ( N _ { \\mathbf { v } } ( { \\mathbf { x } } ) , N _ { \\mathbf { c } } ( { \\mathbf { x } } ) ) = { \\mathbf { x } } , \\qquad \\forall { \\mathbf { x } } ." + }, + { + "category_id": 14, + "poly": [ + 655, + 1999, + 988, + 1999, + 988, + 2038, + 655, + 2038 + ], + "score": 0.92, + "latex": "\\mathrm { D e c } ( N _ { \\mathbf { v } } ( { \\mathbf { x } } _ { 3 } ) , N _ { \\mathbf { c } } ( { \\mathbf { x } } _ { 1 } ) ) = { \\mathbf { x } } _ { 3 } ." + }, + { + "category_id": 13, + "poly": [ + 774, + 973, + 949, + 973, + 949, + 1008, + 774, + 1008 + ], + "score": 0.91, + "latex": "\\mathbf { x } _ { 2 } = f ( \\mathbf { v } _ { 2 } , \\mathbf { c } _ { 1 } )" + }, + { + "category_id": 14, + "poly": [ + 381, + 1215, + 1317, + 1215, + 1317, + 1274, + 381, + 1274 + ], + "score": 0.91, + "latex": "\\mathcal { L } _ { A E } \\doteq E _ { \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } } \\left[ \\left| \\mathbf { x } _ { 1 } - \\mathrm { D e c } ( N _ { \\mathbf { v } } ( \\mathbf { x } _ { 1 } ) , N _ { \\mathbf { c } } ( \\mathbf { x } _ { 2 } ) ) \\right| ^ { 2 } + \\left| \\mathbf { x } _ { 2 } - \\mathrm { D e c } ( N _ { \\mathbf { v } } ( \\mathbf { x } _ { 2 } ) , N _ { \\mathbf { c } } ( \\mathbf { x } _ { 1 } ) ) \\right| ^ { 2 } \\right] ." + }, + { + "category_id": 13, + "poly": [ + 297, + 1390, + 552, + 1390, + 552, + 1424, + 297, + 1424 + ], + "score": 0.9, + "latex": "\\mathrm { D e c } ( N _ { \\mathbf { v } } ( \\mathbf { x } _ { 3 } ) , N _ { \\mathbf { c } } ( \\mathbf { x } _ { 1 } ) )" + }, + { + "category_id": 13, + "poly": [ + 1125, + 1637, + 1361, + 1637, + 1361, + 1669, + 1125, + 1669 + ], + "score": 0.89, + "latex": "\\mathcal { L } = \\mathcal { L } _ { A E } + \\lambda \\mathcal { L } _ { G A N }" + }, + { + "category_id": 14, + "poly": [ + 571, + 420, + 1128, + 420, + 1128, + 460, + 571, + 460 + ], + "score": 0.89, + "latex": "\\mathrm { D e c } ( N _ { \\mathbf { v } } ( f ( \\mathbf { v } _ { 1 } , \\mathbf { c } _ { 1 } ) ) , N _ { \\mathbf { c } } ( f ( \\mathbf { v } _ { 2 } , \\mathbf { c } _ { 2 } ) ) ) = f ( \\mathbf { v } _ { 1 } , \\mathbf { c } _ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 988, + 1899, + 1028, + 1899, + 1028, + 1928, + 988, + 1928 + ], + "score": 0.89, + "latex": "N _ { \\mathbf { v } }" + }, + { + "category_id": 13, + "poly": [ + 379, + 1454, + 440, + 1454, + 440, + 1484, + 379, + 1484 + ], + "score": 0.89, + "latex": "\\mathbf { x } _ { 3 \\oplus 1 }" + }, + { + "category_id": 13, + "poly": [ + 1138, + 1869, + 1176, + 1869, + 1176, + 1898, + 1138, + 1898 + ], + "score": 0.88, + "latex": "N _ { \\mathbf { c } }" + }, + { + "category_id": 13, + "poly": [ + 972, + 1396, + 1032, + 1396, + 1032, + 1423, + 972, + 1423 + ], + "score": 0.88, + "latex": "\\mathbf { x } _ { \\mathrm { 3 \\oplus 1 } }" + }, + { + "category_id": 14, + "poly": [ + 668, + 935, + 1031, + 935, + 1031, + 964, + 668, + 964 + ], + "score": 0.88, + "latex": "\\mathbf { c } _ { 1 } , \\mathbf { c } _ { 3 } \\sim p _ { \\mathbf { c } } , \\quad \\mathbf { v } _ { 1 } , \\mathbf { v } _ { 2 } , \\mathbf { v } _ { 3 } \\sim p _ { \\mathbf { v } } ." + }, + { + "category_id": 13, + "poly": [ + 1305, + 1361, + 1403, + 1361, + 1403, + 1392, + 1305, + 1392 + ], + "score": 0.88, + "latex": "\\mathbf { x } _ { 3 \\oplus 1 } \\doteq" + }, + { + "category_id": 13, + "poly": [ + 378, + 1928, + 415, + 1928, + 415, + 1959, + 378, + 1959 + ], + "score": 0.88, + "latex": "N _ { \\mathbf { c } }" + }, + { + "category_id": 13, + "poly": [ + 862, + 1424, + 894, + 1424, + 894, + 1452, + 862, + 1452 + ], + "score": 0.88, + "latex": "\\mathbf { x } _ { 3 }" + }, + { + "category_id": 13, + "poly": [ + 677, + 1869, + 734, + 1869, + 734, + 1898, + 677, + 1898 + ], + "score": 0.87, + "latex": "\\mathcal { L } _ { A E }" + }, + { + "category_id": 14, + "poly": [ + 543, + 1678, + 1157, + 1678, + 1157, + 1729, + 543, + 1729 + ], + "score": 0.87, + "latex": "\\operatorname* { m i n } _ { \\mathrm { D e c , E n c } } \\operatorname* { m a x } _ { \\mathrm { D s c } } \\mathcal { L } _ { A E } ( \\mathrm { D e c , E n c } ) + \\lambda \\mathcal { L } _ { G A N } ( \\mathrm { D e c , E n c , D s c } )" + }, + { + "category_id": 13, + "poly": [ + 623, + 504, + 656, + 504, + 656, + 531, + 623, + 531 + ], + "score": 0.87, + "latex": "\\mathbf { x } _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 588, + 974, + 762, + 974, + 762, + 1008, + 588, + 1008 + ], + "score": 0.87, + "latex": "\\mathbf { x } _ { 1 } = f ( \\mathbf { v } _ { 1 } , \\mathbf { c } _ { 1 } )" + }, + { + "category_id": 13, + "poly": [ + 805, + 1011, + 838, + 1011, + 838, + 1036, + 805, + 1036 + ], + "score": 0.87, + "latex": "\\mathbf { x } _ { 3 }" + }, + { + "category_id": 13, + "poly": [ + 932, + 1087, + 965, + 1087, + 965, + 1113, + 932, + 1113 + ], + "score": 0.87, + "latex": "\\mathbf { x } _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 549, + 1516, + 579, + 1516, + 579, + 1543, + 549, + 1543 + ], + "score": 0.86, + "latex": "\\mathbf { c } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 560, + 505, + 590, + 505, + 590, + 531, + 560, + 531 + ], + "score": 0.86, + "latex": "\\mathbf { c } _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1051, + 1117, + 1080, + 1117, + 1080, + 1144, + 1051, + 1144 + ], + "score": 0.86, + "latex": "\\mathbf { c } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 723, + 1010, + 756, + 1010, + 756, + 1036, + 723, + 1036 + ], + "score": 0.86, + "latex": "\\mathbf { x } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 511, + 1147, + 543, + 1147, + 543, + 1174, + 511, + 1174 + ], + "score": 0.86, + "latex": "\\mathbf { x } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 847, + 1088, + 879, + 1088, + 879, + 1113, + 847, + 1113 + ], + "score": 0.85, + "latex": "\\mathbf { x } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1305, + 475, + 1336, + 475, + 1336, + 500, + 1305, + 500 + ], + "score": 0.85, + "latex": "\\mathbf { v } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 794, + 1455, + 828, + 1455, + 828, + 1482, + 794, + 1482 + ], + "score": 0.85, + "latex": "\\mathbf { x } _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1088, + 1455, + 1118, + 1455, + 1118, + 1481, + 1088, + 1481 + ], + "score": 0.85, + "latex": "\\mathbf { c } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1205, + 1485, + 1238, + 1485, + 1238, + 1513, + 1205, + 1513 + ], + "score": 0.85, + "latex": "\\mathbf { x } _ { 3 }" + }, + { + "category_id": 13, + "poly": [ + 678, + 1177, + 710, + 1177, + 710, + 1204, + 678, + 1204 + ], + "score": 0.85, + "latex": "\\mathbf { x } _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 469, + 1486, + 502, + 1486, + 502, + 1513, + 469, + 1513 + ], + "score": 0.85, + "latex": "\\mathbf { v } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 557, + 474, + 587, + 474, + 587, + 500, + 557, + 500 + ], + "score": 0.84, + "latex": "\\mathbf { c } _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1315, + 1087, + 1344, + 1087, + 1344, + 1113, + 1315, + 1113 + ], + "score": 0.84, + "latex": "\\mathbf { c } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1321, + 980, + 1354, + 980, + 1354, + 1005, + 1321, + 1005 + ], + "score": 0.84, + "latex": "\\mathbf { x } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 745, + 1869, + 786, + 1869, + 786, + 1898, + 745, + 1898 + ], + "score": 0.84, + "latex": "N _ { \\mathbf { v } }" + }, + { + "category_id": 13, + "poly": [ + 526, + 1426, + 558, + 1426, + 558, + 1451, + 526, + 1451 + ], + "score": 0.84, + "latex": "\\mathbf { x } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1370, + 475, + 1402, + 475, + 1402, + 500, + 1370, + 500 + ], + "score": 0.83, + "latex": "\\mathbf { x } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1009, + 329, + 1009, + 329, + 1036, + 296, + 1036 + ], + "score": 0.82, + "latex": "\\mathbf { x } _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 371, + 1743, + 390, + 1743, + 390, + 1769, + 371, + 1769 + ], + "score": 0.77, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 1067, + 1873, + 1088, + 1873, + 1088, + 1896, + 1067, + 1896 + ], + "score": 0.62, + "latex": "\\mathbf { v }" + }, + { + "category_id": 13, + "poly": [ + 383, + 476, + 415, + 476, + 415, + 500, + 383, + 500 + ], + "score": 0.5, + "latex": "\\mathbf { v } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 469, + 476, + 499, + 476, + 499, + 500, + 469, + 500 + ], + "score": 0.46, + "latex": "\\mathbf { c } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1023, + 1964, + 1041, + 1964, + 1041, + 1986, + 1023, + 1986 + ], + "score": 0.41, + "latex": "\\mathbf { c }" + }, + { + "category_id": 13, + "poly": [ + 384, + 475, + 499, + 475, + 499, + 501, + 384, + 501 + ], + "score": 0.28, + "latex": "\\mathbf { v } _ { 1 } , \\mathbf { v } _ { 2 } , \\mathbf { c } _ { 1 }" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 859.0, + 72.0, + 859.0, + 109.0, + 297.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1809.0, + 629.0, + 1809.0, + 629.0, + 1845.0, + 294.0, + 1845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 734.0, + 585.0, + 734.0, + 585.0, + 773.0, + 294.0, + 773.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, + 1297.0, + 1405.0, + 1297.0, + 1405.0, + 1332.0, + 294.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1329.0, + 1407.0, + 1329.0, + 1407.0, + 1363.0, + 294.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1357.0, + 834.0, + 1357.0, + 834.0, + 1396.0, + 293.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 1357.0, + 1098.0, + 1357.0, + 1098.0, + 1396.0, + 925.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 1357.0, + 1304.0, + 1357.0, + 1304.0, + 1396.0, + 1216.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 553.0, + 1389.0, + 971.0, + 1389.0, + 971.0, + 1425.0, + 553.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1033.0, + 1389.0, + 1405.0, + 1389.0, + 1405.0, + 1425.0, + 1033.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1420.0, + 525.0, + 1420.0, + 525.0, + 1455.0, + 294.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 1420.0, + 861.0, + 1420.0, + 861.0, + 1455.0, + 559.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 895.0, + 1420.0, + 1407.0, + 1420.0, + 1407.0, + 1455.0, + 895.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1451.0, + 378.0, + 1451.0, + 378.0, + 1485.0, + 294.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 1451.0, + 793.0, + 1451.0, + 793.0, + 1485.0, + 441.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 1451.0, + 1087.0, + 1451.0, + 1087.0, + 1485.0, + 829.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 1451.0, + 1406.0, + 1451.0, + 1406.0, + 1485.0, + 1119.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1479.0, + 468.0, + 1479.0, + 468.0, + 1518.0, + 294.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 503.0, + 1479.0, + 1042.0, + 1479.0, + 1042.0, + 1518.0, + 503.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 1479.0, + 1204.0, + 1479.0, + 1204.0, + 1518.0, + 1131.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1239.0, + 1479.0, + 1405.0, + 1479.0, + 1405.0, + 1518.0, + 1239.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1513.0, + 548.0, + 1513.0, + 548.0, + 1543.0, + 295.0, + 1543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 580.0, + 1513.0, + 1047.0, + 1513.0, + 1047.0, + 1543.0, + 580.0, + 1543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 547.0, + 1403.0, + 547.0, + 1403.0, + 580.0, + 295.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 574.0, + 1405.0, + 574.0, + 1405.0, + 614.0, + 292.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 606.0, + 1405.0, + 606.0, + 1405.0, + 644.0, + 292.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 636.0, + 1405.0, + 636.0, + 1405.0, + 675.0, + 292.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 668.0, + 793.0, + 668.0, + 793.0, + 703.0, + 293.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 795.0, + 1405.0, + 795.0, + 1405.0, + 828.0, + 295.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 824.0, + 1404.0, + 824.0, + 1404.0, + 858.0, + 294.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 857.0, + 1404.0, + 857.0, + 1404.0, + 889.0, + 295.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 884.0, + 381.0, + 884.0, + 381.0, + 919.0, + 293.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1081.0, + 846.0, + 1081.0, + 846.0, + 1117.0, + 294.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 1081.0, + 931.0, + 1081.0, + 931.0, + 1117.0, + 880.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 1081.0, + 1314.0, + 1081.0, + 1314.0, + 1117.0, + 966.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1345.0, + 1081.0, + 1406.0, + 1081.0, + 1406.0, + 1117.0, + 1345.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1110.0, + 1050.0, + 1110.0, + 1050.0, + 1147.0, + 293.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1081.0, + 1110.0, + 1406.0, + 1110.0, + 1406.0, + 1147.0, + 1081.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1144.0, + 510.0, + 1144.0, + 510.0, + 1177.0, + 295.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 544.0, + 1144.0, + 861.0, + 1144.0, + 861.0, + 1177.0, + 544.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 953.0, + 1144.0, + 1257.0, + 1144.0, + 1257.0, + 1177.0, + 953.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1346.0, + 1144.0, + 1405.0, + 1144.0, + 1405.0, + 1177.0, + 1346.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1175.0, + 677.0, + 1175.0, + 677.0, + 1207.0, + 295.0, + 1207.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 1175.0, + 1219.0, + 1175.0, + 1219.0, + 1207.0, + 711.0, + 1207.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1865.0, + 676.0, + 1865.0, + 676.0, + 1904.0, + 292.0, + 1904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 735.0, + 1865.0, + 744.0, + 1865.0, + 744.0, + 1904.0, + 735.0, + 1904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 1865.0, + 1066.0, + 1865.0, + 1066.0, + 1904.0, + 787.0, + 1904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 1865.0, + 1137.0, + 1865.0, + 1137.0, + 1904.0, + 1089.0, + 1904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 1865.0, + 1408.0, + 1865.0, + 1408.0, + 1904.0, + 1177.0, + 1904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1895.0, + 987.0, + 1895.0, + 987.0, + 1933.0, + 292.0, + 1933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1029.0, + 1895.0, + 1405.0, + 1895.0, + 1405.0, + 1933.0, + 1029.0, + 1933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1928.0, + 377.0, + 1928.0, + 377.0, + 1964.0, + 294.0, + 1964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 1928.0, + 1406.0, + 1928.0, + 1406.0, + 1964.0, + 416.0, + 1964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1957.0, + 1022.0, + 1957.0, + 1022.0, + 1993.0, + 294.0, + 1993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 1957.0, + 1225.0, + 1957.0, + 1225.0, + 1993.0, + 1042.0, + 1993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 972.0, + 587.0, + 972.0, + 587.0, + 1010.0, + 294.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 763.0, + 972.0, + 773.0, + 972.0, + 773.0, + 1010.0, + 763.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 950.0, + 972.0, + 999.0, + 972.0, + 999.0, + 1010.0, + 950.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 972.0, + 1320.0, + 972.0, + 1320.0, + 1010.0, + 1175.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1355.0, + 972.0, + 1406.0, + 972.0, + 1406.0, + 1010.0, + 1355.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1005.0, + 722.0, + 1005.0, + 722.0, + 1039.0, + 330.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 757.0, + 1005.0, + 804.0, + 1005.0, + 804.0, + 1039.0, + 757.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 1005.0, + 1405.0, + 1005.0, + 1405.0, + 1039.0, + 839.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1033.0, + 779.0, + 1033.0, + 779.0, + 1073.0, + 294.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 349.0, + 1404.0, + 349.0, + 1404.0, + 385.0, + 294.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 376.0, + 1193.0, + 376.0, + 1193.0, + 419.0, + 292.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 227.0, + 1405.0, + 227.0, + 1405.0, + 265.0, + 294.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 261.0, + 738.0, + 261.0, + 738.0, + 296.0, + 295.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 465.0, + 382.0, + 465.0, + 382.0, + 507.0, + 294.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 500.0, + 465.0, + 556.0, + 465.0, + 556.0, + 507.0, + 500.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 465.0, + 1304.0, + 465.0, + 1304.0, + 507.0, + 588.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1337.0, + 465.0, + 1369.0, + 465.0, + 1369.0, + 507.0, + 1337.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 498.0, + 559.0, + 498.0, + 559.0, + 538.0, + 294.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 591.0, + 498.0, + 622.0, + 498.0, + 622.0, + 538.0, + 591.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 498.0, + 833.0, + 498.0, + 833.0, + 538.0, + 657.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 498.0, + 1051.0, + 498.0, + 1051.0, + 538.0, + 1039.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1740.0, + 370.0, + 1740.0, + 370.0, + 1776.0, + 297.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 1740.0, + 959.0, + 1740.0, + 959.0, + 1776.0, + 391.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1628.0, + 1124.0, + 1628.0, + 1124.0, + 1680.0, + 295.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1362.0, + 1628.0, + 1376.0, + 1628.0, + 1376.0, + 1680.0, + 1362.0, + 1680.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1167, + 1405, + 1167, + 1405, + 1417, + 296, + 1417 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 943, + 1402, + 943, + 1402, + 1072, + 298, + 1072 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 296, + 1740, + 1404, + 1740, + 1404, + 1899, + 296, + 1899 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 296, + 228, + 1404, + 228, + 1404, + 386, + 296, + 386 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 518, + 1404, + 518, + 1404, + 614, + 297, + 614 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 298, + 1425, + 1405, + 1425, + 1405, + 1521, + 298, + 1521 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 297, + 1616, + 1404, + 1616, + 1404, + 1710, + 297, + 1710 + ], + "score": 0.97 + }, + { + "category_id": 8, + "poly": [ + 598, + 1916, + 1098, + 1916, + 1098, + 2027, + 598, + 2027 + ], + "score": 0.962 + }, + { + "category_id": 1, + "poly": [ + 297, + 393, + 1402, + 393, + 1402, + 488, + 297, + 488 + ], + "score": 0.961 + }, + { + "category_id": 8, + "poly": [ + 530, + 627, + 1172, + 627, + 1172, + 688, + 530, + 688 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 299, + 1543, + 1400, + 1543, + 1400, + 1607, + 299, + 1607 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 450, + 744, + 1248, + 744, + 1248, + 805, + 450, + 805 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 404, + 1088, + 1289, + 1088, + 1289, + 1155, + 404, + 1155 + ], + "score": 0.937 + }, + { + "category_id": 1, + "poly": [ + 298, + 818, + 1247, + 818, + 1247, + 853, + 298, + 853 + ], + "score": 0.928 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 105, + 298, + 105 + ], + "score": 0.919 + }, + { + "category_id": 0, + "poly": [ + 299, + 888, + 655, + 888, + 655, + 919, + 299, + 919 + ], + "score": 0.917 + }, + { + "category_id": 1, + "poly": [ + 292, + 697, + 1086, + 697, + 1086, + 732, + 292, + 732 + ], + "score": 0.91 + }, + { + "category_id": 9, + "poly": [ + 1351, + 642, + 1400, + 642, + 1400, + 672, + 1351, + 672 + ], + "score": 0.893 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1955, + 1400, + 1955, + 1400, + 1987, + 1351, + 1987 + ], + "score": 0.891 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1105, + 1400, + 1105, + 1400, + 1136, + 1352, + 1136 + ], + "score": 0.887 + }, + { + "category_id": 9, + "poly": [ + 1352, + 758, + 1400, + 758, + 1400, + 791, + 1352, + 791 + ], + "score": 0.877 + }, + { + "category_id": 2, + "poly": [ + 1375, + 821, + 1402, + 821, + 1402, + 848, + 1375, + 848 + ], + "score": 0.801 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.765 + }, + { + "category_id": 13, + "poly": [ + 973, + 1742, + 1093, + 1742, + 1093, + 1776, + 973, + 1776 + ], + "score": 0.93, + "latex": "N _ { \\mathbf { c } } = f _ { \\mathbf { c } } ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 1243, + 1426, + 1403, + 1426, + 1403, + 1459, + 1243, + 1459 + ], + "score": 0.93, + "latex": "\\mathbf { y } _ { 1 } = g ( \\mathbf { v } _ { 1 } , \\mathbf { c } )" + }, + { + "category_id": 13, + "poly": [ + 372, + 817, + 590, + 817, + 590, + 853, + 372, + 853 + ], + "score": 0.93, + "latex": "{ \\bf c } _ { 3 \\oplus 1 } = f _ { \\bf c } ^ { - 1 } ( { \\bf x } _ { 3 \\oplus 1 } )" + }, + { + "category_id": 13, + "poly": [ + 694, + 1199, + 906, + 1199, + 906, + 1233, + 694, + 1233 + ], + "score": 0.93, + "latex": "N _ { \\mathbf { c } } ( \\mathbf { x } _ { 1 } ) = N _ { \\mathbf { c } } ( \\mathbf { x } _ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 347, + 1457, + 507, + 1457, + 507, + 1490, + 347, + 1490 + ], + "score": 0.93, + "latex": "\\mathbf { y } _ { 2 } = g ( \\mathbf { v } _ { 2 } , \\mathbf { c } )" + }, + { + "category_id": 13, + "poly": [ + 1096, + 521, + 1184, + 521, + 1184, + 554, + 1096, + 554 + ], + "score": 0.93, + "latex": "\\left[ \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } \\right]" + }, + { + "category_id": 13, + "poly": [ + 1048, + 1804, + 1289, + 1804, + 1289, + 1838, + 1048, + 1838 + ], + "score": 0.92, + "latex": "T ( \\mathbf { v } , \\bar { \\mathbf { c } _ { 1 } } ) \\bar { \\neq } T ( \\bar { \\mathbf { v } } , \\bar { \\mathbf { c } _ { 2 } } )" + }, + { + "category_id": 13, + "poly": [ + 616, + 1805, + 703, + 1805, + 703, + 1837, + 616, + 1837 + ], + "score": 0.92, + "latex": "T ( \\mathbf { v } , \\mathbf { c } )" + }, + { + "category_id": 14, + "poly": [ + 529, + 627, + 1170, + 627, + 1170, + 687, + 529, + 687 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { { E } _ { \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } } \\Big [ | f _ { \\mathbf { c } } ^ { - 1 } ( \\mathbf { x } _ { 1 } ) - f _ { \\mathbf { c } } ^ { - 1 } ( \\mathbf { x } _ { 2 } ) | ^ { 2 } \\Big ] = { E } _ { \\mathbf { c } _ { 1 } } \\Big [ | \\mathbf { c } _ { 1 } - \\mathbf { c } _ { 1 } | ^ { 2 } \\Big ] = 0 } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 599, + 1914, + 1102, + 1914, + 1102, + 2028, + 599, + 2028 + ], + "score": 0.92, + "latex": "T ( \\mathbf { v } , \\mathbf { c } ) \\dot { = } \\left\\{ \\begin{array} { l l } { \\mathbf { v } } & { \\mathrm { i f } \\ \\mathbf { v } \\neq \\mathbf { v } _ { 1 } , \\mathbf { v } _ { 2 } } \\\\ { \\mathbf { v } _ { 1 } } & { \\mathrm { i f } \\ \\mathbf { v } = \\mathbf { v } _ { 1 } \\lor \\mathbf { v } _ { 2 } \\mathrm { a n d } \\mathbf { c } \\in \\mathcal { C } } \\\\ { \\mathbf { v } _ { 2 } } & { \\mathrm { i f } \\ \\mathbf { v } = \\mathbf { v } _ { 1 } \\lor \\mathbf { v } _ { 2 } \\mathrm { a n d } \\mathbf { c } \\not \\in \\mathcal { C } } \\end{array} \\right." + }, + { + "category_id": 13, + "poly": [ + 965, + 1232, + 1147, + 1232, + 1147, + 1267, + 965, + 1267 + ], + "score": 0.92, + "latex": "C ( \\mathbf { c } ) = N _ { \\mathbf { c } } ( \\mathbf { x } _ { 1 } )" + }, + { + "category_id": 13, + "poly": [ + 1208, + 453, + 1397, + 453, + 1397, + 488, + 1208, + 488 + ], + "score": 0.92, + "latex": "f _ { \\mathbf { c } } ^ { - 1 } ( \\mathbf { x } _ { 3 \\oplus 1 } ) = \\mathbf { c } _ { 1 }" + }, + { + "category_id": 14, + "poly": [ + 453, + 744, + 1244, + 744, + 1244, + 804, + 453, + 804 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { E _ { \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 3 } } \\Big [ | f _ { \\mathbf { c } } ^ { - 1 } ( \\mathbf { x } _ { 1 } ) - f _ { \\mathbf { c } } ^ { - 1 } ( \\mathbf { x } _ { 3 \\oplus 1 } ) | ^ { 2 } \\Big ] = E _ { \\mathbf { v } _ { 1 } , \\mathbf { c } _ { 1 } , \\mathbf { v } _ { 3 } , \\mathbf { c } _ { 3 } } \\Big [ | \\mathbf { c } _ { 1 } - \\mathbf { c } _ { 3 \\oplus 1 } | ^ { 2 } \\Big ] \\geq 0 , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 347, + 1199, + 560, + 1199, + 560, + 1236, + 347, + 1236 + ], + "score": 0.92, + "latex": "[ \\mathbf { \\dot { x } } _ { 1 } , \\mathbf { x } _ { 2 } ] \\sim p _ { \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } | \\mathbf { c } }" + }, + { + "category_id": 13, + "poly": [ + 1220, + 1324, + 1344, + 1324, + 1344, + 1355, + 1220, + 1355 + ], + "score": 0.92, + "latex": "\\dot { R } _ { \\bf c } = { C } ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 1284, + 520, + 1401, + 520, + 1401, + 554, + 1284, + 554 + ], + "score": 0.92, + "latex": "[ \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 3 \\oplus 1 } ]" + }, + { + "category_id": 13, + "poly": [ + 297, + 1867, + 497, + 1867, + 497, + 1899, + 297, + 1899 + ], + "score": 0.92, + "latex": "p _ { \\mathbf { v } } ( \\mathbf { v } _ { 1 } ) = p _ { \\mathbf { v } } ( \\mathbf { v } _ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 370, + 581, + 417, + 581, + 417, + 615, + 370, + 615 + ], + "score": 0.91, + "latex": "\\bar { f } _ { \\mathbf { c } } ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 831, + 424, + 1186, + 424, + 1186, + 457, + 831, + 457 + ], + "score": 0.91, + "latex": "\\mathbf { x } _ { 3 \\oplus 1 } \\doteq D e c ( N _ { \\mathbf { v } } ( \\mathbf { x } _ { 3 } ) , N _ { \\mathbf { c } } ( \\mathbf { x } _ { 1 } ) )" + }, + { + "category_id": 13, + "poly": [ + 719, + 1294, + 1241, + 1294, + 1241, + 1328, + 719, + 1328 + ], + "score": 0.91, + "latex": "C ( \\mathbf { c } _ { 1 } ) = N _ { \\mathbf { v } } ( f ( \\mathbf { v } , \\mathbf { c } _ { 1 } ) ) \\neq N _ { \\mathbf { v } } ( \\mathbf { v } , \\mathbf { c } _ { 2 } ) = C ( \\mathbf { c } _ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1123, + 1458, + 1318, + 1458, + 1318, + 1490, + 1123, + 1490 + ], + "score": 0.91, + "latex": "[ \\mathbf { y } _ { 1 } , \\mathbf { y } _ { 2 } ] \\sim p _ { \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 574, + 1041, + 665, + 1041, + 665, + 1074, + 574, + 1074 + ], + "score": 0.91, + "latex": "\\displaystyle p _ { { \\mathbf { x } } _ { 1 } , { \\mathbf { x } } _ { 2 } | { \\mathbf { c } } }" + }, + { + "category_id": 14, + "poly": [ + 406, + 1086, + 1294, + 1086, + 1294, + 1158, + 406, + 1158 + ], + "score": 0.91, + "latex": "p _ { \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } | \\mathbf { c } } ( \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } | \\mathbf { c } ) = \\int \\delta ( \\mathbf { x } _ { 1 } - f ( \\mathbf { v } _ { 1 } , \\mathbf { c } ) ) \\delta ( \\mathbf { x } _ { 2 } - f ( \\mathbf { v } _ { 2 } , \\mathbf { c } ) ) p ( \\mathbf { v } _ { 1 } ) p ( \\mathbf { v } _ { 2 } ) d \\mathbf { v } _ { 1 } d \\mathbf { v } _ { 2 } ." + }, + { + "category_id": 13, + "poly": [ + 831, + 1805, + 991, + 1805, + 991, + 1837, + 831, + 1837 + ], + "score": 0.9, + "latex": "T ( \\mathbf { v } , \\mathbf { c } ) \\sim p _ { \\mathbf { v } }" + }, + { + "category_id": 13, + "poly": [ + 374, + 1835, + 479, + 1835, + 479, + 1866, + 374, + 1866 + ], + "score": 0.9, + "latex": "\\mathbf { c } _ { 1 } \\neq \\mathbf { c } _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 906, + 704, + 966, + 704, + 966, + 732, + 906, + 732 + ], + "score": 0.9, + "latex": "\\mathbf { x } _ { \\mathrm { 3 \\oplus 1 } }" + }, + { + "category_id": 13, + "poly": [ + 602, + 1745, + 639, + 1745, + 639, + 1774, + 602, + 1774 + ], + "score": 0.9, + "latex": "N _ { \\mathbf { c } }" + }, + { + "category_id": 13, + "poly": [ + 984, + 823, + 1105, + 823, + 1105, + 852, + 984, + 852 + ], + "score": 0.89, + "latex": "\\mathbf { c } _ { 1 } = \\mathbf { c } _ { 3 \\oplus 1 }" + }, + { + "category_id": 13, + "poly": [ + 675, + 1264, + 713, + 1264, + 713, + 1294, + 675, + 1294 + ], + "score": 0.89, + "latex": "N _ { \\mathbf { c } }" + }, + { + "category_id": 13, + "poly": [ + 329, + 293, + 367, + 293, + 367, + 322, + 329, + 322 + ], + "score": 0.89, + "latex": "N _ { \\mathbf { c } }" + }, + { + "category_id": 13, + "poly": [ + 881, + 1838, + 992, + 1838, + 992, + 1867, + 881, + 1867 + ], + "score": 0.89, + "latex": "\\mathbf { v } _ { 1 } \\neq \\mathbf { v } _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1132, + 232, + 1172, + 232, + 1172, + 261, + 1132, + 261 + ], + "score": 0.89, + "latex": "N _ { \\mathbf { v } }" + }, + { + "category_id": 13, + "poly": [ + 298, + 428, + 490, + 428, + 490, + 456, + 298, + 456 + ], + "score": 0.88, + "latex": "\\mathbf { c } _ { 1 } , \\mathbf { c } _ { 3 } , \\mathbf { v } _ { 1 } , \\mathbf { v } _ { 2 } , \\mathbf { v } _ { 3 }" + }, + { + "category_id": 13, + "poly": [ + 678, + 1776, + 718, + 1776, + 718, + 1805, + 678, + 1805 + ], + "score": 0.88, + "latex": "N _ { \\mathbf { v } }" + }, + { + "category_id": 13, + "poly": [ + 515, + 703, + 546, + 703, + 546, + 730, + 515, + 730 + ], + "score": 0.88, + "latex": "\\mathbf { x } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 822, + 704, + 855, + 704, + 855, + 730, + 822, + 730 + ], + "score": 0.88, + "latex": "\\mathbf { x } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 943, + 1490, + 1022, + 1490, + 1022, + 1520, + 943, + 1520 + ], + "score": 0.88, + "latex": "\\mathbf { c } \\sim p _ { \\mathbf { c } }" + }, + { + "category_id": 13, + "poly": [ + 1095, + 460, + 1156, + 460, + 1156, + 487, + 1095, + 487 + ], + "score": 0.87, + "latex": "\\mathbf { x } _ { \\mathrm { 3 \\oplus 1 } }" + }, + { + "category_id": 13, + "poly": [ + 812, + 586, + 845, + 586, + 845, + 612, + 812, + 612 + ], + "score": 0.86, + "latex": "\\mathbf { x } _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 782, + 981, + 815, + 981, + 815, + 1007, + 782, + 1007 + ], + "score": 0.85, + "latex": "\\mathbf { x } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 729, + 586, + 761, + 586, + 761, + 612, + 729, + 612 + ], + "score": 0.85, + "latex": "\\mathbf { x } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 867, + 980, + 899, + 980, + 899, + 1007, + 867, + 1007 + ], + "score": 0.85, + "latex": "\\mathbf { x } _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 792, + 1492, + 890, + 1492, + 890, + 1520, + 792, + 1520 + ], + "score": 0.85, + "latex": "\\mathbf { v } _ { 2 } \\sim p _ { \\mathbf { v } }" + }, + { + "category_id": 13, + "poly": [ + 598, + 703, + 629, + 703, + 629, + 730, + 598, + 730 + ], + "score": 0.84, + "latex": "\\mathbf { x } _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1278, + 1778, + 1310, + 1778, + 1310, + 1806, + 1278, + 1806 + ], + "score": 0.84, + "latex": "p _ { \\mathbf { v } }" + }, + { + "category_id": 13, + "poly": [ + 338, + 1265, + 363, + 1265, + 363, + 1291, + 338, + 1291 + ], + "score": 0.83, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 522, + 1621, + 556, + 1621, + 556, + 1649, + 522, + 1649 + ], + "score": 0.82, + "latex": "p _ { \\mathbf { v } }" + }, + { + "category_id": 13, + "poly": [ + 526, + 398, + 558, + 398, + 558, + 424, + 526, + 424 + ], + "score": 0.8, + "latex": "\\mathbf { x } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1371, + 1012, + 1401, + 1012, + 1401, + 1039, + 1371, + 1039 + ], + "score": 0.79, + "latex": "p _ { \\mathbf { c } }" + }, + { + "category_id": 13, + "poly": [ + 683, + 1492, + 781, + 1492, + 781, + 1520, + 683, + 1520 + ], + "score": 0.78, + "latex": "\\mathbf { v } _ { 1 } \\sim p _ { \\mathbf { v } }" + }, + { + "category_id": 13, + "poly": [ + 666, + 397, + 699, + 397, + 699, + 424, + 666, + 424 + ], + "score": 0.74, + "latex": "\\mathbf { x } _ { 3 }" + }, + { + "category_id": 13, + "poly": [ + 573, + 399, + 607, + 399, + 607, + 424, + 573, + 424 + ], + "score": 0.7, + "latex": "\\mathbf { x } _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1840, + 318, + 1840, + 318, + 1862, + 296, + 1862 + ], + "score": 0.54, + "latex": "\\mathbf { v }" + }, + { + "category_id": 13, + "poly": [ + 873, + 1269, + 894, + 1269, + 894, + 1291, + 873, + 1291 + ], + "score": 0.45, + "latex": "\\mathbf { v }" + }, + { + "category_id": 13, + "poly": [ + 573, + 1433, + 591, + 1433, + 591, + 1459, + 573, + 1459 + ], + "score": 0.43, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 1231, + 1269, + 1251, + 1269, + 1251, + 1291, + 1231, + 1291 + ], + "score": 0.4, + "latex": "\\mathbf { v }" + }, + { + "category_id": 13, + "poly": [ + 1292, + 1176, + 1310, + 1176, + 1310, + 1198, + 1292, + 1198 + ], + "score": 0.39, + "latex": "\\mathbf { c }" + }, + { + "category_id": 13, + "poly": [ + 297, + 429, + 327, + 429, + 327, + 455, + 297, + 455 + ], + "score": 0.25, + "latex": "\\mathbf { c } _ { 1 }" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 859.0, + 73.0, + 859.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 888.0, + 658.0, + 888.0, + 658.0, + 921.0, + 295.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 826.0, + 1401.0, + 826.0, + 1401.0, + 846.0, + 1380.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2119.0, + 838.0, + 2119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1166.0, + 1291.0, + 1166.0, + 1291.0, + 1206.0, + 293.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1311.0, + 1166.0, + 1407.0, + 1166.0, + 1407.0, + 1206.0, + 1311.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1198.0, + 346.0, + 1198.0, + 346.0, + 1240.0, + 293.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 1198.0, + 693.0, + 1198.0, + 693.0, + 1240.0, + 561.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 1198.0, + 1407.0, + 1198.0, + 1407.0, + 1240.0, + 907.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1234.0, + 964.0, + 1234.0, + 964.0, + 1268.0, + 294.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 1234.0, + 1405.0, + 1234.0, + 1405.0, + 1268.0, + 1148.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1263.0, + 337.0, + 1263.0, + 337.0, + 1297.0, + 295.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 1263.0, + 674.0, + 1263.0, + 674.0, + 1297.0, + 364.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.0, + 1263.0, + 872.0, + 1263.0, + 872.0, + 1297.0, + 714.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 895.0, + 1263.0, + 1230.0, + 1263.0, + 1230.0, + 1297.0, + 895.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1252.0, + 1263.0, + 1403.0, + 1263.0, + 1403.0, + 1297.0, + 1252.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1294.0, + 718.0, + 1294.0, + 718.0, + 1328.0, + 294.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 1294.0, + 1405.0, + 1294.0, + 1405.0, + 1328.0, + 1242.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1322.0, + 1219.0, + 1322.0, + 1219.0, + 1358.0, + 291.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1345.0, + 1322.0, + 1406.0, + 1322.0, + 1406.0, + 1358.0, + 1345.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1355.0, + 1403.0, + 1355.0, + 1403.0, + 1389.0, + 294.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1387.0, + 434.0, + 1387.0, + 434.0, + 1415.0, + 295.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 945.0, + 1406.0, + 945.0, + 1406.0, + 979.0, + 294.0, + 979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 976.0, + 781.0, + 976.0, + 781.0, + 1009.0, + 293.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.0, + 976.0, + 866.0, + 976.0, + 866.0, + 1009.0, + 816.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 976.0, + 1404.0, + 976.0, + 1404.0, + 1009.0, + 900.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1004.0, + 1370.0, + 1004.0, + 1370.0, + 1045.0, + 293.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1004.0, + 1406.0, + 1004.0, + 1406.0, + 1045.0, + 1402.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1037.0, + 573.0, + 1037.0, + 573.0, + 1075.0, + 294.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 1037.0, + 751.0, + 1037.0, + 751.0, + 1075.0, + 666.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1736.0, + 601.0, + 1736.0, + 601.0, + 1782.0, + 291.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 640.0, + 1736.0, + 972.0, + 1736.0, + 972.0, + 1782.0, + 640.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1094.0, + 1736.0, + 1406.0, + 1736.0, + 1406.0, + 1782.0, + 1094.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1772.0, + 677.0, + 1772.0, + 677.0, + 1810.0, + 294.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 719.0, + 1772.0, + 1277.0, + 1772.0, + 1277.0, + 1810.0, + 719.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1311.0, + 1772.0, + 1405.0, + 1772.0, + 1405.0, + 1810.0, + 1311.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1803.0, + 615.0, + 1803.0, + 615.0, + 1841.0, + 295.0, + 1841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 1803.0, + 830.0, + 1803.0, + 830.0, + 1841.0, + 704.0, + 1841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.0, + 1803.0, + 1047.0, + 1803.0, + 1047.0, + 1841.0, + 992.0, + 1841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1290.0, + 1803.0, + 1406.0, + 1803.0, + 1406.0, + 1841.0, + 1290.0, + 1841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1832.0, + 373.0, + 1832.0, + 373.0, + 1871.0, + 319.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 480.0, + 1832.0, + 880.0, + 1832.0, + 880.0, + 1871.0, + 480.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 1832.0, + 1406.0, + 1832.0, + 1406.0, + 1871.0, + 993.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1865.0, + 296.0, + 1865.0, + 296.0, + 1900.0, + 292.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 1865.0, + 617.0, + 1865.0, + 617.0, + 1900.0, + 498.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 230.0, + 1131.0, + 230.0, + 1131.0, + 264.0, + 296.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 230.0, + 1406.0, + 230.0, + 1406.0, + 264.0, + 1173.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 260.0, + 1406.0, + 260.0, + 1406.0, + 298.0, + 294.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 288.0, + 328.0, + 288.0, + 328.0, + 329.0, + 293.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 288.0, + 1405.0, + 288.0, + 1405.0, + 329.0, + 368.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 322.0, + 1402.0, + 322.0, + 1402.0, + 355.0, + 295.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 350.0, + 897.0, + 350.0, + 897.0, + 389.0, + 293.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 513.0, + 1095.0, + 513.0, + 1095.0, + 559.0, + 292.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1185.0, + 513.0, + 1283.0, + 513.0, + 1283.0, + 559.0, + 1185.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 513.0, + 1405.0, + 513.0, + 1405.0, + 559.0, + 1402.0, + 559.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": [ + 294.0, + 579.0, + 369.0, + 579.0, + 369.0, + 617.0, + 294.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 418.0, + 579.0, + 728.0, + 579.0, + 728.0, + 617.0, + 418.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 579.0, + 811.0, + 579.0, + 811.0, + 617.0, + 762.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 579.0, + 966.0, + 579.0, + 966.0, + 617.0, + 846.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1422.0, + 572.0, + 1422.0, + 572.0, + 1463.0, + 293.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 592.0, + 1422.0, + 1242.0, + 1422.0, + 1242.0, + 1463.0, + 592.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 1422.0, + 1407.0, + 1422.0, + 1407.0, + 1463.0, + 1404.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1453.0, + 346.0, + 1453.0, + 346.0, + 1495.0, + 292.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 1453.0, + 1122.0, + 1453.0, + 1122.0, + 1495.0, + 508.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1319.0, + 1453.0, + 1406.0, + 1453.0, + 1406.0, + 1495.0, + 1319.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1484.0, + 682.0, + 1484.0, + 682.0, + 1527.0, + 293.0, + 1527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 782.0, + 1484.0, + 791.0, + 1484.0, + 791.0, + 1527.0, + 782.0, + 1527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 1484.0, + 942.0, + 1484.0, + 942.0, + 1527.0, + 891.0, + 1527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 1484.0, + 1035.0, + 1484.0, + 1035.0, + 1527.0, + 1023.0, + 1527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1614.0, + 521.0, + 1614.0, + 521.0, + 1652.0, + 295.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 557.0, + 1614.0, + 1407.0, + 1614.0, + 1407.0, + 1652.0, + 557.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1642.0, + 1404.0, + 1642.0, + 1404.0, + 1685.0, + 292.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1679.0, + 640.0, + 1679.0, + 640.0, + 1711.0, + 292.0, + 1711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 392.0, + 525.0, + 392.0, + 525.0, + 430.0, + 295.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 392.0, + 572.0, + 392.0, + 572.0, + 430.0, + 559.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 392.0, + 665.0, + 392.0, + 665.0, + 430.0, + 608.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 392.0, + 1407.0, + 392.0, + 1407.0, + 430.0, + 700.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 423.0, + 296.0, + 423.0, + 296.0, + 459.0, + 293.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 491.0, + 423.0, + 830.0, + 423.0, + 830.0, + 459.0, + 491.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 423.0, + 1406.0, + 423.0, + 1406.0, + 459.0, + 1187.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 453.0, + 1094.0, + 453.0, + 1094.0, + 494.0, + 293.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 453.0, + 1207.0, + 453.0, + 1207.0, + 494.0, + 1157.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 453.0, + 1411.0, + 453.0, + 1411.0, + 494.0, + 1398.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1539.0, + 1405.0, + 1539.0, + 1405.0, + 1581.0, + 293.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1575.0, + 485.0, + 1575.0, + 485.0, + 1609.0, + 294.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 815.0, + 371.0, + 815.0, + 371.0, + 859.0, + 294.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 591.0, + 815.0, + 983.0, + 815.0, + 983.0, + 859.0, + 591.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 815.0, + 1253.0, + 815.0, + 1253.0, + 859.0, + 1106.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 694.0, + 514.0, + 694.0, + 514.0, + 738.0, + 294.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 547.0, + 694.0, + 597.0, + 694.0, + 597.0, + 738.0, + 547.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 630.0, + 694.0, + 821.0, + 694.0, + 821.0, + 738.0, + 630.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 694.0, + 905.0, + 694.0, + 905.0, + 738.0, + 856.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 967.0, + 694.0, + 1085.0, + 694.0, + 1085.0, + 738.0, + 967.0, + 738.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 715, + 1405, + 715, + 1405, + 1054, + 297, + 1054 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 1552, + 1405, + 1552, + 1405, + 1769, + 297, + 1769 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 296, + 1291, + 1405, + 1291, + 1405, + 1538, + 296, + 1538 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1879, + 1403, + 1879, + 1403, + 2035, + 298, + 2035 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 511, + 1404, + 511, + 1404, + 608, + 298, + 608 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 297, + 358, + 1404, + 358, + 1404, + 450, + 297, + 450 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 297, + 638, + 1400, + 638, + 1400, + 702, + 297, + 702 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 290, + 227, + 1402, + 227, + 1402, + 295, + 290, + 295 + ], + "score": 0.954 + }, + { + "category_id": 8, + "poly": [ + 495, + 307, + 1201, + 307, + 1201, + 346, + 495, + 346 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 298, + 1146, + 1402, + 1146, + 1402, + 1210, + 298, + 1210 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 553, + 1225, + 1143, + 1225, + 1143, + 1281, + 553, + 1281 + ], + "score": 0.939 + }, + { + "category_id": 8, + "poly": [ + 591, + 463, + 1110, + 463, + 1110, + 501, + 591, + 501 + ], + "score": 0.937 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 857, + 74, + 857, + 105, + 297, + 105 + ], + "score": 0.921 + }, + { + "category_id": 0, + "poly": [ + 299, + 1090, + 582, + 1090, + 582, + 1121, + 299, + 1121 + ], + "score": 0.913 + }, + { + "category_id": 0, + "poly": [ + 300, + 1811, + 557, + 1811, + 557, + 1847, + 300, + 1847 + ], + "score": 0.909 + }, + { + "category_id": 9, + "poly": [ + 1352, + 466, + 1399, + 466, + 1399, + 496, + 1352, + 496 + ], + "score": 0.896 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1231, + 1399, + 1231, + 1399, + 1261, + 1352, + 1261 + ], + "score": 0.889 + }, + { + "category_id": 9, + "poly": [ + 1352, + 311, + 1399, + 311, + 1399, + 341, + 1352, + 341 + ], + "score": 0.888 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 859, + 2089, + 859, + 2112, + 840, + 2112 + ], + "score": 0.783 + }, + { + "category_id": 13, + "poly": [ + 1015, + 717, + 1177, + 717, + 1177, + 750, + 1015, + 750 + ], + "score": 0.93, + "latex": "\\mathbf { v } \\sim \\mathcal { U } [ - \\pi , \\pi ]" + }, + { + "category_id": 13, + "poly": [ + 440, + 358, + 527, + 358, + 527, + 391, + 440, + 391 + ], + "score": 0.93, + "latex": "T ( \\mathbf { v } , \\mathbf { c } )" + }, + { + "category_id": 13, + "poly": [ + 344, + 900, + 578, + 900, + 578, + 934, + 344, + 934 + ], + "score": 0.92, + "latex": "T ( \\mathbf { v } , \\mathbf { c } _ { 1 } ) \\neq T ( \\mathbf { v } , \\mathbf { c } _ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1031, + 511, + 1403, + 511, + 1403, + 546, + 1031, + 546 + ], + "score": 0.92, + "latex": "N _ { \\mathbf { v } } ( f ( \\mathbf { v } _ { 1 } , \\mathbf { c } _ { 1 } ) ) ~ = ~ T ( \\mathbf { v } _ { 1 } , \\mathbf { c } _ { 1 } ) ~ \\neq" + }, + { + "category_id": 13, + "poly": [ + 799, + 229, + 1007, + 229, + 1007, + 267, + 799, + 267 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\int _ { \\mathcal { C } } p _ { \\mathbf { c } } ( \\mathbf { c } ) d \\mathbf { c } = 1 / 2 } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 620, + 901, + 692, + 901, + 692, + 932, + 620, + 932 + ], + "score": 0.92, + "latex": "\\mathbf { v } \\neq 0" + }, + { + "category_id": 13, + "poly": [ + 297, + 262, + 563, + 262, + 563, + 297, + 297, + 297 + ], + "score": 0.92, + "latex": "N _ { \\mathbf { v } } ( f ( \\mathbf { v } , \\mathbf { c } ) ) = T ( \\mathbf { v } , \\mathbf { c } )" + }, + { + "category_id": 14, + "poly": [ + 553, + 1221, + 1145, + 1221, + 1145, + 1281, + 553, + 1281 + ], + "score": 0.92, + "latex": "\\hat { \\theta } _ { \\mathrm { { D e c } } } , \\hat { \\theta } _ { \\mathrm { { E n c } } } , \\hat { \\theta } _ { \\mathrm { { D s c } } } = \\arg \\operatorname* { m i n } _ { \\theta _ { \\mathrm { { D e c } } } , \\theta _ { \\mathrm { { E n c } } } } \\operatorname* { m a x } _ { \\theta _ { \\mathrm { { D s c } } } } \\mathcal { L } ( \\theta _ { \\mathrm { { D e c } } } , \\theta _ { \\mathrm { { E n c } } } , \\theta _ { \\mathrm { { D s c } } } ) ." + }, + { + "category_id": 13, + "poly": [ + 918, + 778, + 1278, + 778, + 1278, + 812, + 918, + 812 + ], + "score": 0.91, + "latex": "p _ { \\mathbf { c } } ( \\mathbf { c } = 0 ) = p _ { \\mathbf { c } } ( \\mathbf { c } = 1 ) = 0 . 5" + }, + { + "category_id": 13, + "poly": [ + 674, + 748, + 804, + 748, + 804, + 780, + 674, + 780 + ], + "score": 0.91, + "latex": "\\mathbf { c } \\sim B ( 0 . 5 )" + }, + { + "category_id": 13, + "poly": [ + 1283, + 358, + 1403, + 358, + 1403, + 392, + 1283, + 392 + ], + "score": 0.91, + "latex": "T ( \\mathbf { v } , \\mathbf { c } ) \\sim" + }, + { + "category_id": 13, + "poly": [ + 655, + 575, + 1123, + 575, + 1123, + 607, + 655, + 607 + ], + "score": 0.91, + "latex": "\\mathrm { D e c } ( T ( \\mathbf { v } _ { 1 } , \\mathbf { c } _ { 1 } ) , \\mathbf { c } _ { 1 } ) \\neq \\mathrm { D e c } ( T ( \\mathbf { v } _ { 1 } , \\mathbf { c } _ { 2 } ) , \\mathbf { c } _ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 616, + 1323, + 1083, + 1323, + 1083, + 1357, + 616, + 1357 + ], + "score": 0.91, + "latex": "\\log _ { \\epsilon } \\bar { \\mathrm { D s c } } ( \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } ) = \\log ( \\epsilon + \\mathrm { D s c } ( \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } ) )" + }, + { + "category_id": 13, + "poly": [ + 346, + 779, + 424, + 779, + 424, + 811, + 346, + 811 + ], + "score": 0.91, + "latex": "B ( 0 . 5 )" + }, + { + "category_id": 13, + "poly": [ + 740, + 901, + 833, + 901, + 833, + 932, + 740, + 932 + ], + "score": 0.91, + "latex": "\\mathbf { c } _ { 1 } \\neq \\mathbf { c } _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1138, + 930, + 1403, + 930, + 1403, + 964, + 1138, + 964 + ], + "score": 0.9, + "latex": "N _ { \\mathbf { v } } ( f ( \\mathbf { v } , \\mathbf { c } ) ) = T ( \\mathbf { v } , \\mathbf { c } )" + }, + { + "category_id": 13, + "poly": [ + 297, + 542, + 625, + 542, + 625, + 577, + 297, + 577 + ], + "score": 0.9, + "latex": "T ( \\mathbf { v } _ { 1 } , \\mathbf { c } _ { 2 } ) \\ = \\ N _ { \\mathbf { v } } ( f ( { \\bar { \\mathbf { v } } } _ { 1 } , \\mathbf { c } _ { 2 } ) )" + }, + { + "category_id": 13, + "poly": [ + 428, + 1295, + 502, + 1295, + 502, + 1322, + 428, + 1322 + ], + "score": 0.9, + "latex": "\\lambda = 1" + }, + { + "category_id": 13, + "poly": [ + 1035, + 840, + 1276, + 840, + 1276, + 871, + 1035, + 871 + ], + "score": 0.9, + "latex": "T ( \\mathbf { v } , \\mathbf { c } ) = \\mathbf { v } ( 2 \\mathbf { c } - 1 )" + }, + { + "category_id": 13, + "poly": [ + 1067, + 871, + 1294, + 871, + 1294, + 902, + 1067, + 902 + ], + "score": 0.9, + "latex": "T ( \\mathbf { v } , \\mathbf { c } ) \\sim \\mathcal { U } [ - \\pi , \\pi ]" + }, + { + "category_id": 13, + "poly": [ + 598, + 1355, + 720, + 1355, + 720, + 1383, + 598, + 1383 + ], + "score": 0.89, + "latex": "\\epsilon = 1 0 ^ { - 1 2 }" + }, + { + "category_id": 13, + "poly": [ + 713, + 544, + 809, + 544, + 809, + 573, + 713, + 573 + ], + "score": 0.89, + "latex": "\\mathbf { c } _ { 1 } ~ \\in ~ { \\mathcal { C } }" + }, + { + "category_id": 13, + "poly": [ + 380, + 393, + 461, + 393, + 461, + 421, + 380, + 421 + ], + "score": 0.89, + "latex": "\\mathbf { c } \\sim p _ { \\mathbf { c } }" + }, + { + "category_id": 13, + "poly": [ + 867, + 544, + 962, + 544, + 962, + 575, + 867, + 575 + ], + "score": 0.89, + "latex": "\\mathbf { c } _ { 2 } \\notin \\mathcal { C }" + }, + { + "category_id": 14, + "poly": [ + 496, + 306, + 1202, + 306, + 1202, + 346, + 496, + 346 + ], + "score": 0.89, + "latex": "\\operatorname { D e c } ( N _ { \\mathbf { v } } ( f ( \\mathbf { v } , \\mathbf { c } ) ) , N _ { \\mathbf { c } } ( f ( \\mathbf { v } , \\mathbf { c } ) ) ) = \\operatorname { D e c } ( T ( \\mathbf { v } , \\mathbf { c } ) , \\mathbf { c } ) = f ( \\mathbf { v } , \\mathbf { c } ) ." + }, + { + "category_id": 13, + "poly": [ + 655, + 1943, + 835, + 1943, + 835, + 1974, + 655, + 1974 + ], + "score": 0.89, + "latex": "( \\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N } )" + }, + { + "category_id": 14, + "poly": [ + 584, + 462, + 1113, + 462, + 1113, + 501, + 584, + 501 + ], + "score": 0.89, + "latex": "\\left[ \\operatorname { D e c } ( T ( \\mathbf { v } _ { 1 } , \\mathbf { c } ) , \\mathbf { c } ) , \\operatorname { D e c } ( T ( \\mathbf { v } _ { 2 } , \\mathbf { c } ) , \\mathbf { c } ) \\right] \\sim p _ { \\mathbf { x } _ { 1 } , \\mathbf { x } _ { 2 } } ." + }, + { + "category_id": 13, + "poly": [ + 914, + 1943, + 988, + 1943, + 988, + 1974, + 914, + 1974 + ], + "score": 0.88, + "latex": "( \\mathcal { L } _ { A E } )" + }, + { + "category_id": 13, + "poly": [ + 1231, + 675, + 1263, + 675, + 1263, + 703, + 1231, + 703 + ], + "score": 0.86, + "latex": "p _ { \\mathbf { v } }" + }, + { + "category_id": 13, + "poly": [ + 1313, + 675, + 1342, + 675, + 1342, + 703, + 1313, + 703 + ], + "score": 0.84, + "latex": "p _ { \\mathbf { c } }" + }, + { + "category_id": 13, + "poly": [ + 297, + 394, + 329, + 394, + 329, + 421, + 297, + 421 + ], + "score": 0.84, + "latex": "p _ { \\mathbf { v } }" + }, + { + "category_id": 13, + "poly": [ + 1122, + 815, + 1155, + 815, + 1155, + 840, + 1122, + 840 + ], + "score": 0.83, + "latex": "p _ { \\mathbf { v } }" + }, + { + "category_id": 13, + "poly": [ + 1292, + 902, + 1316, + 902, + 1316, + 928, + 1292, + 928 + ], + "score": 0.82, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 346, + 232, + 365, + 232, + 365, + 258, + 346, + 258 + ], + "score": 0.8, + "latex": "\\mathcal { C }" + }, + { + "category_id": 13, + "poly": [ + 1344, + 1149, + 1361, + 1149, + 1361, + 1175, + 1344, + 1175 + ], + "score": 0.8, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 1021, + 750, + 1046, + 750, + 1046, + 775, + 1021, + 775 + ], + "score": 0.74, + "latex": "\\mathcal { U }" + }, + { + "category_id": 13, + "poly": [ + 431, + 874, + 452, + 874, + 452, + 897, + 431, + 897 + ], + "score": 0.63, + "latex": "\\mathbf { v }" + }, + { + "category_id": 13, + "poly": [ + 692, + 237, + 710, + 237, + 710, + 258, + 692, + 258 + ], + "score": 0.43, + "latex": "\\mathbf { c }" + }, + { + "category_id": 13, + "poly": [ + 893, + 814, + 914, + 814, + 914, + 836, + 893, + 836 + ], + "score": 0.41, + "latex": "\\mathbf { v }" + }, + { + "category_id": 13, + "poly": [ + 658, + 365, + 675, + 365, + 675, + 386, + 658, + 386 + ], + "score": 0.31, + "latex": "\\mathbf { c }" + }, + { + "category_id": 13, + "poly": [ + 1383, + 875, + 1401, + 875, + 1401, + 898, + 1383, + 898 + ], + "score": 0.28, + "latex": "\\mathbf { c }" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 859.0, + 72.0, + 859.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1087.0, + 585.0, + 1087.0, + 585.0, + 1125.0, + 294.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1809.0, + 561.0, + 1809.0, + 561.0, + 1852.0, + 292.0, + 1852.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": [ + 294.0, + 716.0, + 1014.0, + 716.0, + 1014.0, + 751.0, + 294.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1178.0, + 716.0, + 1406.0, + 716.0, + 1406.0, + 751.0, + 1178.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 747.0, + 673.0, + 747.0, + 673.0, + 781.0, + 294.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 747.0, + 1020.0, + 747.0, + 1020.0, + 781.0, + 805.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1047.0, + 747.0, + 1406.0, + 747.0, + 1406.0, + 781.0, + 1047.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 776.0, + 345.0, + 776.0, + 345.0, + 815.0, + 294.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 776.0, + 917.0, + 776.0, + 917.0, + 815.0, + 425.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1279.0, + 776.0, + 1406.0, + 776.0, + 1406.0, + 815.0, + 1279.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 811.0, + 892.0, + 811.0, + 892.0, + 842.0, + 296.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 811.0, + 1121.0, + 811.0, + 1121.0, + 842.0, + 915.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 811.0, + 1405.0, + 811.0, + 1405.0, + 842.0, + 1156.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 836.0, + 1034.0, + 836.0, + 1034.0, + 875.0, + 292.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.0, + 836.0, + 1405.0, + 836.0, + 1405.0, + 875.0, + 1277.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 868.0, + 430.0, + 868.0, + 430.0, + 906.0, + 291.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 868.0, + 1066.0, + 868.0, + 1066.0, + 906.0, + 453.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1295.0, + 868.0, + 1382.0, + 868.0, + 1382.0, + 906.0, + 1295.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 868.0, + 1407.0, + 868.0, + 1407.0, + 906.0, + 1402.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 898.0, + 343.0, + 898.0, + 343.0, + 937.0, + 294.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 898.0, + 619.0, + 898.0, + 619.0, + 937.0, + 579.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 898.0, + 739.0, + 898.0, + 739.0, + 937.0, + 693.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 834.0, + 898.0, + 1291.0, + 898.0, + 1291.0, + 937.0, + 834.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1317.0, + 898.0, + 1406.0, + 898.0, + 1406.0, + 937.0, + 1317.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 927.0, + 1137.0, + 927.0, + 1137.0, + 968.0, + 292.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 927.0, + 1407.0, + 927.0, + 1407.0, + 968.0, + 1404.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 959.0, + 1406.0, + 959.0, + 1406.0, + 997.0, + 294.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 989.0, + 1406.0, + 989.0, + 1406.0, + 1028.0, + 294.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1019.0, + 515.0, + 1019.0, + 515.0, + 1059.0, + 294.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1555.0, + 1405.0, + 1555.0, + 1405.0, + 1586.0, + 296.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1581.0, + 1408.0, + 1581.0, + 1408.0, + 1621.0, + 294.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1615.0, + 1406.0, + 1615.0, + 1406.0, + 1648.0, + 294.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1644.0, + 1406.0, + 1644.0, + 1406.0, + 1678.0, + 292.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1675.0, + 1406.0, + 1675.0, + 1406.0, + 1709.0, + 294.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1706.0, + 1403.0, + 1706.0, + 1403.0, + 1737.0, + 296.0, + 1737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1736.0, + 1364.0, + 1736.0, + 1364.0, + 1774.0, + 294.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1289.0, + 427.0, + 1289.0, + 427.0, + 1329.0, + 291.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 503.0, + 1289.0, + 1408.0, + 1289.0, + 1408.0, + 1329.0, + 503.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1322.0, + 615.0, + 1322.0, + 615.0, + 1358.0, + 291.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1084.0, + 1322.0, + 1408.0, + 1322.0, + 1408.0, + 1358.0, + 1084.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1349.0, + 597.0, + 1349.0, + 597.0, + 1389.0, + 293.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 721.0, + 1349.0, + 1407.0, + 1349.0, + 1407.0, + 1389.0, + 721.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1384.0, + 1408.0, + 1384.0, + 1408.0, + 1418.0, + 294.0, + 1418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1413.0, + 1406.0, + 1413.0, + 1406.0, + 1447.0, + 294.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1443.0, + 1407.0, + 1443.0, + 1407.0, + 1480.0, + 293.0, + 1480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1475.0, + 1405.0, + 1475.0, + 1405.0, + 1511.0, + 293.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1507.0, + 582.0, + 1507.0, + 582.0, + 1541.0, + 295.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1881.0, + 1404.0, + 1881.0, + 1404.0, + 1914.0, + 297.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1910.0, + 1405.0, + 1910.0, + 1405.0, + 1948.0, + 294.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1942.0, + 654.0, + 1942.0, + 654.0, + 1980.0, + 294.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 1942.0, + 913.0, + 1942.0, + 913.0, + 1980.0, + 836.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 1942.0, + 1405.0, + 1942.0, + 1405.0, + 1980.0, + 989.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1970.0, + 1405.0, + 1970.0, + 1405.0, + 2009.0, + 293.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2004.0, + 883.0, + 2004.0, + 883.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 508.0, + 1030.0, + 508.0, + 1030.0, + 550.0, + 292.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 508.0, + 1408.0, + 508.0, + 1408.0, + 550.0, + 1404.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 541.0, + 296.0, + 541.0, + 296.0, + 579.0, + 293.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 541.0, + 712.0, + 541.0, + 712.0, + 579.0, + 626.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 810.0, + 541.0, + 866.0, + 541.0, + 866.0, + 579.0, + 810.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 541.0, + 1408.0, + 541.0, + 1408.0, + 579.0, + 963.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 572.0, + 654.0, + 572.0, + 654.0, + 610.0, + 293.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1124.0, + 572.0, + 1137.0, + 572.0, + 1137.0, + 610.0, + 1124.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1374.0, + 576.0, + 1405.0, + 576.0, + 1405.0, + 605.0, + 1374.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 356.0, + 439.0, + 356.0, + 439.0, + 393.0, + 295.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 528.0, + 356.0, + 657.0, + 356.0, + 657.0, + 393.0, + 528.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 356.0, + 1282.0, + 356.0, + 1282.0, + 393.0, + 676.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 390.0, + 296.0, + 390.0, + 296.0, + 422.0, + 291.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 390.0, + 379.0, + 390.0, + 379.0, + 422.0, + 330.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 462.0, + 390.0, + 1406.0, + 390.0, + 1406.0, + 422.0, + 462.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 421.0, + 527.0, + 421.0, + 527.0, + 454.0, + 293.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 638.0, + 1404.0, + 638.0, + 1404.0, + 674.0, + 295.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 667.0, + 1230.0, + 667.0, + 1230.0, + 708.0, + 292.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1264.0, + 667.0, + 1312.0, + 667.0, + 1312.0, + 708.0, + 1264.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 667.0, + 1354.0, + 667.0, + 1354.0, + 708.0, + 1343.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 227.0, + 345.0, + 227.0, + 345.0, + 268.0, + 294.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 227.0, + 691.0, + 227.0, + 691.0, + 268.0, + 366.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 227.0, + 798.0, + 227.0, + 798.0, + 268.0, + 711.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 227.0, + 1407.0, + 227.0, + 1407.0, + 268.0, + 1008.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 262.0, + 1218.0, + 262.0, + 1218.0, + 299.0, + 564.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1145.0, + 1343.0, + 1145.0, + 1343.0, + 1182.0, + 293.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1362.0, + 1145.0, + 1404.0, + 1145.0, + 1404.0, + 1182.0, + 1362.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1177.0, + 1407.0, + 1177.0, + 1407.0, + 1215.0, + 292.0, + 1215.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 890, + 1405, + 890, + 1405, + 1108, + 297, + 1108 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 1818, + 1404, + 1818, + 1404, + 2035, + 297, + 2035 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 1122, + 1406, + 1122, + 1406, + 1306, + 297, + 1306 + ], + "score": 0.979 + }, + { + "category_id": 3, + "poly": [ + 317, + 1343, + 1382, + 1343, + 1382, + 1625, + 317, + 1625 + ], + "score": 0.972 + }, + { + "category_id": 3, + "poly": [ + 603, + 224, + 1095, + 224, + 1095, + 628, + 603, + 628 + ], + "score": 0.968 + }, + { + "category_id": 4, + "poly": [ + 296, + 1648, + 1405, + 1648, + 1405, + 1774, + 296, + 1774 + ], + "score": 0.964 + }, + { + "category_id": 4, + "poly": [ + 296, + 664, + 1407, + 664, + 1407, + 757, + 296, + 757 + ], + "score": 0.955 + }, + { + "category_id": 0, + "poly": [ + 300, + 829, + 616, + 829, + 616, + 859, + 300, + 859 + ], + "score": 0.899 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 858, + 2087, + 858, + 2111, + 841, + 2111 + ], + "score": 0.761 + }, + { + "category_id": 2, + "poly": [ + 297, + 75, + 857, + 75, + 857, + 105, + 297, + 105 + ], + "score": 0.581 + }, + { + "category_id": 2, + "poly": [ + 297, + 75, + 857, + 75, + 857, + 104, + 297, + 104 + ], + "score": 0.323 + }, + { + "category_id": 13, + "poly": [ + 297, + 2003, + 460, + 2003, + 460, + 2035, + 297, + 2035 + ], + "score": 0.93, + "latex": "\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N }" + }, + { + "category_id": 13, + "poly": [ + 707, + 1244, + 873, + 1244, + 873, + 1276, + 707, + 1276 + ], + "score": 0.92, + "latex": "\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N }" + }, + { + "category_id": 13, + "poly": [ + 1177, + 1711, + 1342, + 1711, + 1342, + 1742, + 1177, + 1742 + ], + "score": 0.92, + "latex": "\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N }" + }, + { + "category_id": 13, + "poly": [ + 474, + 1882, + 639, + 1882, + 639, + 1913, + 474, + 1913 + ], + "score": 0.92, + "latex": "\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N }" + }, + { + "category_id": 13, + "poly": [ + 1226, + 1185, + 1283, + 1185, + 1283, + 1214, + 1226, + 1214 + ], + "score": 0.91, + "latex": "\\mathcal { L } _ { A E }" + }, + { + "category_id": 13, + "poly": [ + 1296, + 1974, + 1353, + 1974, + 1353, + 2003, + 1296, + 2003 + ], + "score": 0.91, + "latex": "\\mathcal { L } _ { A E }" + }, + { + "category_id": 13, + "poly": [ + 1109, + 1882, + 1166, + 1882, + 1166, + 1912, + 1109, + 1912 + ], + "score": 0.91, + "latex": "\\mathcal { L } _ { A E }" + }, + { + "category_id": 13, + "poly": [ + 1260, + 1852, + 1318, + 1852, + 1318, + 1881, + 1260, + 1881 + ], + "score": 0.91, + "latex": "\\mathcal { L } _ { A E }" + }, + { + "category_id": 13, + "poly": [ + 1054, + 1650, + 1111, + 1650, + 1111, + 1680, + 1054, + 1680 + ], + "score": 0.9, + "latex": "\\mathcal { L } _ { A E }" + }, + { + "category_id": 13, + "poly": [ + 525, + 1245, + 564, + 1245, + 564, + 1275, + 525, + 1275 + ], + "score": 0.9, + "latex": "N _ { \\mathbf { v } }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1154, + 374, + 1154, + 374, + 1184, + 298, + 1184 + ], + "score": 0.9, + "latex": "\\mathcal { L } _ { G A N }" + }, + { + "category_id": 13, + "poly": [ + 1212, + 1124, + 1270, + 1124, + 1270, + 1153, + 1212, + 1153 + ], + "score": 0.9, + "latex": "\\mathcal { L } _ { A E }" + }, + { + "category_id": 13, + "poly": [ + 1222, + 1045, + 1341, + 1045, + 1341, + 1074, + 1222, + 1074 + ], + "score": 0.9, + "latex": "1 0 0 \\times 1 0 0" + }, + { + "category_id": 13, + "poly": [ + 815, + 1076, + 935, + 1076, + 935, + 1105, + 815, + 1105 + ], + "score": 0.9, + "latex": "1 2 8 \\times 1 2 8" + }, + { + "category_id": 13, + "poly": [ + 880, + 1822, + 920, + 1822, + 920, + 1851, + 880, + 1851 + ], + "score": 0.89, + "latex": "N _ { \\mathbf { v } }" + }, + { + "category_id": 13, + "poly": [ + 1321, + 1123, + 1407, + 1123, + 1407, + 1154, + 1321, + 1154 + ], + "score": 0.89, + "latex": "\\mathcal { L } _ { A E } +" + }, + { + "category_id": 13, + "poly": [ + 703, + 2004, + 743, + 2004, + 743, + 2034, + 703, + 2034 + ], + "score": 0.89, + "latex": "N _ { \\mathbf { v } }" + }, + { + "category_id": 13, + "poly": [ + 787, + 1153, + 827, + 1153, + 827, + 1184, + 787, + 1184 + ], + "score": 0.89, + "latex": "N _ { \\mathbf { v } }" + }, + { + "category_id": 13, + "poly": [ + 462, + 1974, + 502, + 1974, + 502, + 2003, + 462, + 2003 + ], + "score": 0.89, + "latex": "N _ { \\mathbf { v } }" + }, + { + "category_id": 13, + "poly": [ + 608, + 1214, + 647, + 1214, + 647, + 1244, + 608, + 1244 + ], + "score": 0.89, + "latex": "N _ { \\mathbf { v } }" + }, + { + "category_id": 13, + "poly": [ + 1165, + 2003, + 1203, + 2003, + 1203, + 2034, + 1165, + 2034 + ], + "score": 0.89, + "latex": "N _ { \\mathbf { c } }" + }, + { + "category_id": 13, + "poly": [ + 1266, + 1912, + 1306, + 1912, + 1306, + 1942, + 1266, + 1942 + ], + "score": 0.88, + "latex": "N _ { \\mathbf { v } }" + }, + { + "category_id": 13, + "poly": [ + 1216, + 1155, + 1254, + 1155, + 1254, + 1183, + 1216, + 1183 + ], + "score": 0.87, + "latex": "N _ { \\mathbf { c } }" + }, + { + "category_id": 13, + "poly": [ + 813, + 1711, + 852, + 1711, + 852, + 1741, + 813, + 1741 + ], + "score": 0.87, + "latex": "N _ { \\mathbf { v } }" + }, + { + "category_id": 13, + "poly": [ + 557, + 1852, + 599, + 1852, + 599, + 1878, + 557, + 1878 + ], + "score": 0.78, + "latex": "2 D" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 1362.0, + 535.0, + 1362.0, + 535.0, + 1399.0, + 457.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 1362.0, + 677.0, + 1362.0, + 677.0, + 1389.0, + 643.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 1357.0, + 1152.0, + 1357.0, + 1152.0, + 1402.0, + 974.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 1363.0, + 1232.0, + 1363.0, + 1232.0, + 1380.0, + 1204.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 1372.0, + 581.0, + 1372.0, + 581.0, + 1389.0, + 541.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 1375.0, + 1203.0, + 1375.0, + 1203.0, + 1387.0, + 1171.0, + 1387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1311.0, + 1378.0, + 1329.0, + 1378.0, + 1329.0, + 1391.0, + 1311.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 1415.0, + 786.0, + 1415.0, + 786.0, + 1456.0, + 334.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1412.0, + 1346.0, + 1412.0, + 1346.0, + 1461.0, + 877.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1471.0, + 820.0, + 1471.0, + 820.0, + 1514.0, + 326.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 1470.0, + 1377.0, + 1470.0, + 1377.0, + 1519.0, + 879.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1527.0, + 825.0, + 1527.0, + 825.0, + 1573.0, + 325.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 1526.0, + 1377.0, + 1526.0, + 1377.0, + 1577.0, + 875.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 549.0, + 1590.0, + 593.0, + 1590.0, + 593.0, + 1630.0, + 549.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1103.0, + 1589.0, + 1153.0, + 1589.0, + 1153.0, + 1631.0, + 1103.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 1371.5, + 654.0, + 1371.5, + 654.0, + 1388.5, + 619.0, + 1388.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1340.0, + 1370.5, + 1368.0, + 1370.5, + 1368.0, + 1392.0, + 1340.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 252.0, + 672.0, + 252.0, + 672.0, + 284.0, + 635.0, + 284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 252.0, + 827.0, + 252.0, + 827.0, + 284.0, + 791.0, + 284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 252.0, + 968.0, + 252.0, + 968.0, + 281.0, + 922.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 248.0, + 1083.0, + 248.0, + 1083.0, + 284.0, + 1035.0, + 284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.0, + 288.0, + 688.0, + 288.0, + 688.0, + 326.0, + 616.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 291.0, + 840.0, + 291.0, + 840.0, + 321.0, + 776.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 292.0, + 941.0, + 292.0, + 941.0, + 321.0, + 918.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 294.0, + 971.0, + 294.0, + 971.0, + 310.0, + 955.0, + 310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 292.0, + 1086.0, + 292.0, + 1086.0, + 322.0, + 1032.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 310.0, + 710.0, + 310.0, + 710.0, + 350.0, + 613.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 761.0, + 302.0, + 872.0, + 302.0, + 872.0, + 371.0, + 761.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 914.0, + 316.0, + 947.0, + 316.0, + 947.0, + 343.0, + 914.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 314.0, + 1021.0, + 314.0, + 1021.0, + 346.0, + 965.0, + 346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1025.0, + 313.0, + 1092.0, + 313.0, + 1092.0, + 342.0, + 1025.0, + 342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 335.0, + 680.0, + 335.0, + 680.0, + 355.0, + 664.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 335.0, + 1001.0, + 335.0, + 1001.0, + 352.0, + 985.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 376.0, + 694.0, + 376.0, + 694.0, + 407.0, + 644.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 807.0, + 376.0, + 856.0, + 376.0, + 856.0, + 407.0, + 807.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 376.0, + 1018.0, + 376.0, + 1018.0, + 407.0, + 968.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 651.0, + 423.0, + 663.0, + 423.0, + 663.0, + 435.0, + 651.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 810.0, + 424.0, + 820.0, + 424.0, + 820.0, + 433.0, + 810.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 473.0, + 712.0, + 473.0, + 712.0, + 509.0, + 617.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 471.0, + 826.0, + 471.0, + 826.0, + 510.0, + 777.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 834.0, + 475.0, + 878.0, + 475.0, + 878.0, + 507.0, + 834.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.0, + 472.0, + 1039.0, + 472.0, + 1039.0, + 510.0, + 942.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 503.0, + 855.0, + 503.0, + 855.0, + 510.0, + 847.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 540.0, + 695.0, + 540.0, + 695.0, + 572.0, + 644.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 807.0, + 540.0, + 856.0, + 540.0, + 856.0, + 572.0, + 807.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 970.0, + 541.0, + 1017.0, + 541.0, + 1017.0, + 571.0, + 970.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 583.0, + 683.0, + 583.0, + 683.0, + 615.0, + 655.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 819.0, + 583.0, + 847.0, + 583.0, + 847.0, + 614.0, + 819.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 982.0, + 583.0, + 1008.0, + 583.0, + 1008.0, + 615.0, + 982.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 651.0, + 604.0, + 688.0, + 604.0, + 688.0, + 635.0, + 651.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 815.0, + 603.0, + 851.0, + 603.0, + 851.0, + 634.0, + 815.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 605.0, + 1012.0, + 605.0, + 1012.0, + 633.0, + 977.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1649.0, + 1053.0, + 1649.0, + 1053.0, + 1685.0, + 294.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1112.0, + 1649.0, + 1406.0, + 1649.0, + 1406.0, + 1685.0, + 1112.0, + 1685.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": [ + 294.0, + 1710.0, + 812.0, + 1710.0, + 812.0, + 1745.0, + 294.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 853.0, + 1710.0, + 1176.0, + 1710.0, + 1176.0, + 1745.0, + 853.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 1710.0, + 1405.0, + 1710.0, + 1405.0, + 1745.0, + 1343.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1742.0, + 1044.0, + 1742.0, + 1044.0, + 1776.0, + 293.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 662.0, + 1407.0, + 662.0, + 1407.0, + 698.0, + 293.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 695.0, + 1405.0, + 695.0, + 1405.0, + 729.0, + 295.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 724.0, + 688.0, + 724.0, + 688.0, + 760.0, + 294.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 828.0, + 621.0, + 828.0, + 621.0, + 863.0, + 294.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2118.0, + 839.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 859.0, + 73.0, + 859.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 859.0, + 72.0, + 859.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 892.0, + 1406.0, + 892.0, + 1406.0, + 927.0, + 296.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 923.0, + 1406.0, + 923.0, + 1406.0, + 958.0, + 295.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 952.0, + 1405.0, + 952.0, + 1405.0, + 989.0, + 294.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 984.0, + 1406.0, + 984.0, + 1406.0, + 1019.0, + 294.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1014.0, + 1405.0, + 1014.0, + 1405.0, + 1049.0, + 294.0, + 1049.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1044.0, + 1221.0, + 1044.0, + 1221.0, + 1078.0, + 295.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1342.0, + 1044.0, + 1403.0, + 1044.0, + 1403.0, + 1078.0, + 1342.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1072.0, + 814.0, + 1072.0, + 814.0, + 1115.0, + 294.0, + 1115.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 936.0, + 1072.0, + 1081.0, + 1072.0, + 1081.0, + 1115.0, + 936.0, + 1115.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1821.0, + 879.0, + 1821.0, + 879.0, + 1852.0, + 295.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 1821.0, + 1402.0, + 1821.0, + 1402.0, + 1852.0, + 921.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1848.0, + 556.0, + 1848.0, + 556.0, + 1887.0, + 292.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 1848.0, + 1259.0, + 1848.0, + 1259.0, + 1887.0, + 600.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1319.0, + 1848.0, + 1407.0, + 1848.0, + 1407.0, + 1887.0, + 1319.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1878.0, + 473.0, + 1878.0, + 473.0, + 1918.0, + 292.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 640.0, + 1878.0, + 1108.0, + 1878.0, + 1108.0, + 1918.0, + 640.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1167.0, + 1878.0, + 1405.0, + 1878.0, + 1405.0, + 1918.0, + 1167.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1912.0, + 1265.0, + 1912.0, + 1265.0, + 1946.0, + 295.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1307.0, + 1912.0, + 1406.0, + 1912.0, + 1406.0, + 1946.0, + 1307.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1940.0, + 1404.0, + 1940.0, + 1404.0, + 1979.0, + 294.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1972.0, + 461.0, + 1972.0, + 461.0, + 2007.0, + 295.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 503.0, + 1972.0, + 1295.0, + 1972.0, + 1295.0, + 2007.0, + 503.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 1972.0, + 1405.0, + 1972.0, + 1405.0, + 2007.0, + 1354.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 461.0, + 2003.0, + 702.0, + 2003.0, + 702.0, + 2038.0, + 461.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 744.0, + 2003.0, + 1164.0, + 2003.0, + 1164.0, + 2038.0, + 744.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 2003.0, + 1406.0, + 2003.0, + 1406.0, + 2038.0, + 1204.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1119.0, + 1211.0, + 1119.0, + 1211.0, + 1158.0, + 294.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1271.0, + 1119.0, + 1320.0, + 1119.0, + 1320.0, + 1158.0, + 1271.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 1152.0, + 786.0, + 1152.0, + 786.0, + 1187.0, + 375.0, + 1187.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 828.0, + 1152.0, + 1215.0, + 1152.0, + 1215.0, + 1187.0, + 828.0, + 1187.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1255.0, + 1152.0, + 1406.0, + 1152.0, + 1406.0, + 1187.0, + 1255.0, + 1187.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1180.0, + 1225.0, + 1180.0, + 1225.0, + 1219.0, + 292.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1284.0, + 1180.0, + 1406.0, + 1180.0, + 1406.0, + 1219.0, + 1284.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1214.0, + 607.0, + 1214.0, + 607.0, + 1246.0, + 295.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 1214.0, + 1403.0, + 1214.0, + 1403.0, + 1246.0, + 648.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1239.0, + 524.0, + 1239.0, + 524.0, + 1281.0, + 292.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 1239.0, + 706.0, + 1239.0, + 706.0, + 1281.0, + 565.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 1239.0, + 1409.0, + 1239.0, + 1409.0, + 1281.0, + 874.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1274.0, + 746.0, + 1274.0, + 746.0, + 1309.0, + 295.0, + 1309.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1074, + 1406, + 1074, + 1406, + 1259, + 296, + 1259 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 296, + 1359, + 1405, + 1359, + 1405, + 1575, + 296, + 1575 + ], + "score": 0.979 + }, + { + "category_id": 5, + "poly": [ + 616, + 779, + 1081, + 779, + 1081, + 938, + 616, + 938 + ], + "score": 0.975, + "html": "
NormalizationNv mAPNc mAP
None0.470.13
Batch0.500.08
Instance0.500.20
" + }, + { + "category_id": 3, + "poly": [ + 310, + 1605, + 1389, + 1605, + 1389, + 1908, + 310, + 1908 + ], + "score": 0.974 + }, + { + "category_id": 4, + "poly": [ + 294, + 497, + 1408, + 497, + 1408, + 652, + 294, + 652 + ], + "score": 0.966 + }, + { + "category_id": 3, + "poly": [ + 409, + 221, + 1291, + 221, + 1291, + 473, + 409, + 473 + ], + "score": 0.959 + }, + { + "category_id": 1, + "poly": [ + 293, + 997, + 1401, + 997, + 1401, + 1061, + 293, + 1061 + ], + "score": 0.957 + }, + { + "category_id": 4, + "poly": [ + 295, + 1931, + 1402, + 1931, + 1402, + 2027, + 295, + 2027 + ], + "score": 0.955 + }, + { + "category_id": 0, + "poly": [ + 299, + 1300, + 654, + 1300, + 654, + 1332, + 299, + 1332 + ], + "score": 0.916 + }, + { + "category_id": 6, + "poly": [ + 298, + 686, + 1400, + 686, + 1400, + 751, + 298, + 751 + ], + "score": 0.905 + }, + { + "category_id": 2, + "poly": [ + 297, + 75, + 857, + 75, + 857, + 105, + 297, + 105 + ], + "score": 0.902 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2112, + 840, + 2112 + ], + "score": 0.802 + }, + { + "category_id": 13, + "poly": [ + 924, + 1453, + 1090, + 1453, + 1090, + 1484, + 924, + 1484 + ], + "score": 0.93, + "latex": "\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N }" + }, + { + "category_id": 13, + "poly": [ + 542, + 1029, + 708, + 1029, + 708, + 1060, + 542, + 1060 + ], + "score": 0.92, + "latex": "\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1029, + 462, + 1029, + 462, + 1060, + 297, + 1060 + ], + "score": 0.91, + "latex": "\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N }" + }, + { + "category_id": 13, + "poly": [ + 938, + 999, + 996, + 999, + 996, + 1029, + 938, + 1029 + ], + "score": 0.9, + "latex": "\\mathcal { L } _ { A E }" + }, + { + "category_id": 13, + "poly": [ + 705, + 621, + 744, + 621, + 744, + 651, + 705, + 651 + ], + "score": 0.89, + "latex": "N _ { \\mathbf { v } }" + }, + { + "category_id": 13, + "poly": [ + 984, + 1137, + 1022, + 1137, + 1022, + 1167, + 984, + 1167 + ], + "score": 0.89, + "latex": "N _ { \\mathbf { c } }" + }, + { + "category_id": 13, + "poly": [ + 894, + 1137, + 935, + 1137, + 935, + 1168, + 894, + 1168 + ], + "score": 0.89, + "latex": "N _ { \\mathbf { v } }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1392, + 391, + 1392, + 391, + 1421, + 296, + 1421 + ], + "score": 0.89, + "latex": "2 8 \\times 2 8" + }, + { + "category_id": 13, + "poly": [ + 1284, + 999, + 1323, + 999, + 1323, + 1029, + 1284, + 1029 + ], + "score": 0.89, + "latex": "N _ { \\mathbf { v } }" + }, + { + "category_id": 13, + "poly": [ + 814, + 689, + 855, + 689, + 855, + 719, + 814, + 719 + ], + "score": 0.89, + "latex": "N _ { \\mathbf { v } }" + }, + { + "category_id": 13, + "poly": [ + 1024, + 500, + 1063, + 500, + 1063, + 529, + 1024, + 529 + ], + "score": 0.88, + "latex": "N _ { v }" + }, + { + "category_id": 13, + "poly": [ + 493, + 561, + 533, + 561, + 533, + 590, + 493, + 590 + ], + "score": 0.88, + "latex": "N _ { \\mathbf { v } }" + }, + { + "category_id": 13, + "poly": [ + 418, + 1483, + 456, + 1483, + 456, + 1513, + 418, + 1513 + ], + "score": 0.88, + "latex": "N _ { \\mathbf { c } }" + }, + { + "category_id": 13, + "poly": [ + 914, + 689, + 953, + 689, + 953, + 719, + 914, + 719 + ], + "score": 0.87, + "latex": "N _ { \\mathbf { c } }" + }, + { + "category_id": 13, + "poly": [ + 483, + 529, + 524, + 529, + 524, + 559, + 483, + 559 + ], + "score": 0.87, + "latex": "N _ { \\mathbf { v } }" + }, + { + "category_id": 13, + "poly": [ + 1361, + 1453, + 1401, + 1453, + 1401, + 1483, + 1361, + 1483 + ], + "score": 0.87, + "latex": "N _ { \\mathbf { v } }" + }, + { + "category_id": 13, + "poly": [ + 931, + 560, + 990, + 560, + 990, + 591, + 931, + 591 + ], + "score": 0.86, + "latex": "\\mathcal { L } _ { A E }" + }, + { + "category_id": 13, + "poly": [ + 1135, + 560, + 1314, + 560, + 1314, + 591, + 1135, + 591 + ], + "score": 0.78, + "latex": "\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N } \\mathrm { ~ 1 ~ }" + }, + { + "category_id": 13, + "poly": [ + 755, + 560, + 813, + 560, + 813, + 590, + 755, + 590 + ], + "score": 0.7, + "latex": "\\mathcal { L } _ { A E }" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 1607.0, + 496.0, + 1607.0, + 496.0, + 1643.0, + 345.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 511.0, + 1609.0, + 569.0, + 1609.0, + 569.0, + 1641.0, + 511.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.0, + 1604.0, + 845.0, + 1604.0, + 845.0, + 1644.0, + 616.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 1609.0, + 1002.0, + 1609.0, + 1002.0, + 1643.0, + 891.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 1609.0, + 1115.0, + 1609.0, + 1115.0, + 1643.0, + 1005.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1163.0, + 1607.0, + 1386.0, + 1607.0, + 1386.0, + 1643.0, + 1163.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 1638.0, + 573.0, + 1638.0, + 573.0, + 1869.0, + 312.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 582.0, + 1638.0, + 649.0, + 1638.0, + 649.0, + 1866.0, + 582.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 651.0, + 1638.0, + 842.0, + 1638.0, + 842.0, + 1869.0, + 651.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 1641.0, + 888.0, + 1641.0, + 888.0, + 1866.0, + 857.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 1637.0, + 1114.0, + 1637.0, + 1114.0, + 1870.0, + 892.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 1639.0, + 1192.0, + 1639.0, + 1192.0, + 1869.0, + 1130.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 1639.0, + 1330.0, + 1639.0, + 1330.0, + 1870.0, + 1193.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1331.0, + 1639.0, + 1358.0, + 1639.0, + 1358.0, + 1867.0, + 1331.0, + 1867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1363.0, + 1646.0, + 1380.0, + 1646.0, + 1380.0, + 1676.0, + 1363.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1359.0, + 1665.0, + 1384.0, + 1665.0, + 1384.0, + 1788.0, + 1359.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 1666.0, + 678.0, + 1666.0, + 678.0, + 1866.0, + 647.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1359.0, + 1777.0, + 1382.0, + 1777.0, + 1382.0, + 1867.0, + 1359.0, + 1867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1088.0, + 1836.0, + 1111.0, + 1836.0, + 1111.0, + 1865.0, + 1088.0, + 1865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 1872.0, + 461.0, + 1872.0, + 461.0, + 1913.0, + 420.0, + 1913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 1872.0, + 735.0, + 1872.0, + 735.0, + 1913.0, + 692.0, + 1913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 1875.0, + 1005.0, + 1875.0, + 1005.0, + 1911.0, + 966.0, + 1911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1236.0, + 1872.0, + 1279.0, + 1872.0, + 1279.0, + 1913.0, + 1236.0, + 1913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 482.0, + 1609.5, + 516.0, + 1609.5, + 516.0, + 1637.5, + 482.0, + 1637.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 495.0, + 1023.0, + 495.0, + 1023.0, + 533.0, + 293.0, + 533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 495.0, + 1406.0, + 495.0, + 1406.0, + 533.0, + 1064.0, + 533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 529.0, + 482.0, + 529.0, + 482.0, + 563.0, + 296.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 529.0, + 1405.0, + 529.0, + 1405.0, + 563.0, + 525.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 559.0, + 492.0, + 559.0, + 492.0, + 596.0, + 295.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 559.0, + 754.0, + 559.0, + 754.0, + 596.0, + 534.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 814.0, + 559.0, + 930.0, + 559.0, + 930.0, + 596.0, + 814.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 991.0, + 559.0, + 1134.0, + 559.0, + 1134.0, + 596.0, + 991.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1315.0, + 559.0, + 1409.0, + 559.0, + 1409.0, + 596.0, + 1315.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 584.0, + 1406.0, + 584.0, + 1406.0, + 629.0, + 292.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 617.0, + 704.0, + 617.0, + 704.0, + 657.0, + 293.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 617.0, + 755.0, + 617.0, + 755.0, + 657.0, + 745.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1077.0, + 256.0, + 1099.0, + 256.0, + 1099.0, + 271.0, + 1077.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 914.0, + 274.0, + 937.0, + 274.0, + 937.0, + 295.0, + 914.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 293.0, + 888.0, + 293.0, + 888.0, + 301.0, + 879.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1077.0, + 290.0, + 1098.0, + 290.0, + 1098.0, + 306.0, + 1077.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 302.0, + 1082.0, + 302.0, + 1082.0, + 364.0, + 1062.0, + 364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 308.0, + 901.0, + 308.0, + 901.0, + 316.0, + 893.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1077.0, + 325.0, + 1098.0, + 325.0, + 1098.0, + 341.0, + 1077.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1077.0, + 359.0, + 1099.0, + 359.0, + 1099.0, + 375.0, + 1077.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 369.0, + 1256.0, + 369.0, + 1256.0, + 384.0, + 1237.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1236.0, + 380.0, + 1284.0, + 380.0, + 1284.0, + 396.0, + 1236.0, + 396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1077.0, + 394.0, + 1099.0, + 394.0, + 1099.0, + 410.0, + 1077.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1110.0, + 404.0, + 1122.0, + 404.0, + 1122.0, + 418.0, + 1110.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 403.0, + 1176.0, + 403.0, + 1176.0, + 420.0, + 1157.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1205.0, + 402.0, + 1231.0, + 402.0, + 1231.0, + 420.0, + 1205.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 402.0, + 1283.0, + 402.0, + 1283.0, + 420.0, + 1253.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 416.0, + 1220.0, + 416.0, + 1220.0, + 436.0, + 1156.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 476.0, + 443.0, + 514.0, + 443.0, + 514.0, + 475.0, + 476.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 443.0, + 731.0, + 443.0, + 731.0, + 474.0, + 695.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 443.0, + 949.0, + 443.0, + 949.0, + 474.0, + 913.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 442.0, + 1199.0, + 442.0, + 1199.0, + 476.0, + 1156.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1930.0, + 1407.0, + 1930.0, + 1407.0, + 1968.0, + 294.0, + 1968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1959.0, + 1405.0, + 1959.0, + 1405.0, + 1999.0, + 292.0, + 1999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1994.0, + 948.0, + 1994.0, + 948.0, + 2028.0, + 295.0, + 2028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1298.0, + 659.0, + 1298.0, + 659.0, + 1339.0, + 294.0, + 1339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 682.0, + 813.0, + 682.0, + 813.0, + 724.0, + 292.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 682.0, + 913.0, + 682.0, + 913.0, + 724.0, + 856.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 682.0, + 1405.0, + 682.0, + 1405.0, + 724.0, + 954.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 718.0, + 631.0, + 718.0, + 631.0, + 755.0, + 296.0, + 755.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": [ + 836.0, + 2085.0, + 859.0, + 2085.0, + 859.0, + 2116.0, + 836.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1072.0, + 1406.0, + 1072.0, + 1406.0, + 1111.0, + 294.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1108.0, + 1403.0, + 1108.0, + 1403.0, + 1140.0, + 296.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1133.0, + 893.0, + 1133.0, + 893.0, + 1172.0, + 293.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 936.0, + 1133.0, + 983.0, + 1133.0, + 983.0, + 1172.0, + 936.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 1133.0, + 1409.0, + 1133.0, + 1409.0, + 1172.0, + 1023.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1166.0, + 1404.0, + 1166.0, + 1404.0, + 1201.0, + 294.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1197.0, + 1406.0, + 1197.0, + 1406.0, + 1233.0, + 294.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1225.0, + 375.0, + 1225.0, + 375.0, + 1261.0, + 292.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1356.0, + 1406.0, + 1356.0, + 1406.0, + 1397.0, + 291.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1389.0, + 1406.0, + 1389.0, + 1406.0, + 1426.0, + 392.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1420.0, + 1406.0, + 1420.0, + 1406.0, + 1456.0, + 293.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1453.0, + 923.0, + 1453.0, + 923.0, + 1488.0, + 295.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1091.0, + 1453.0, + 1360.0, + 1453.0, + 1360.0, + 1488.0, + 1091.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1483.0, + 417.0, + 1483.0, + 417.0, + 1518.0, + 295.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 1483.0, + 1405.0, + 1483.0, + 1405.0, + 1518.0, + 457.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, + 1540.0, + 632.0, + 1540.0, + 632.0, + 1579.0, + 294.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 997.0, + 937.0, + 997.0, + 937.0, + 1033.0, + 295.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 997.0, + 1283.0, + 997.0, + 1283.0, + 1033.0, + 997.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1324.0, + 997.0, + 1404.0, + 997.0, + 1404.0, + 1033.0, + 1324.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 1028.0, + 541.0, + 1028.0, + 541.0, + 1065.0, + 463.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 1028.0, + 1107.0, + 1028.0, + 1107.0, + 1065.0, + 709.0, + 1065.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1532, + 1405, + 1532, + 1405, + 1870, + 298, + 1870 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 927, + 1404, + 927, + 1404, + 1204, + 297, + 1204 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1219, + 1403, + 1219, + 1403, + 1403, + 298, + 1403 + ], + "score": 0.978 + }, + { + "category_id": 3, + "poly": [ + 328, + 219, + 1369, + 219, + 1369, + 711, + 328, + 711 + ], + "score": 0.969 + }, + { + "category_id": 4, + "poly": [ + 297, + 736, + 1406, + 736, + 1406, + 858, + 297, + 858 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 300, + 1977, + 1402, + 1977, + 1402, + 2033, + 300, + 2033 + ], + "score": 0.916 + }, + { + "category_id": 0, + "poly": [ + 301, + 1457, + 560, + 1457, + 560, + 1492, + 301, + 1492 + ], + "score": 0.884 + }, + { + "category_id": 0, + "poly": [ + 300, + 1924, + 487, + 1924, + 487, + 1956, + 300, + 1956 + ], + "score": 0.872 + }, + { + "category_id": 2, + "poly": [ + 297, + 76, + 857, + 76, + 857, + 104, + 297, + 104 + ], + "score": 0.87 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2110, + 841, + 2110 + ], + "score": 0.775 + }, + { + "category_id": 13, + "poly": [ + 571, + 1112, + 736, + 1112, + 736, + 1143, + 571, + 1143 + ], + "score": 0.93, + "latex": "\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N }" + }, + { + "category_id": 13, + "poly": [ + 593, + 1281, + 758, + 1281, + 758, + 1312, + 593, + 1312 + ], + "score": 0.92, + "latex": "\\mathcal { L } _ { A E } + \\mathcal { L } _ { G A N }" + }, + { + "category_id": 13, + "poly": [ + 1088, + 1112, + 1128, + 1112, + 1128, + 1142, + 1088, + 1142 + ], + "score": 0.89, + "latex": "N _ { \\mathbf { v } }" + }, + { + "category_id": 13, + "poly": [ + 1312, + 1281, + 1353, + 1281, + 1353, + 1311, + 1312, + 1311 + ], + "score": 0.89, + "latex": "N _ { \\mathbf { v } }" + }, + { + "category_id": 13, + "poly": [ + 1270, + 1112, + 1307, + 1112, + 1307, + 1142, + 1270, + 1142 + ], + "score": 0.87, + "latex": "N _ { \\mathbf { c } }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1312, + 335, + 1312, + 335, + 1341, + 298, + 1341 + ], + "score": 0.85, + "latex": "N _ { \\mathbf { c } }" + }, + { + "category_id": 15, + "poly": [ + 923.0, + 235.0, + 992.0, + 235.0, + 992.0, + 272.0, + 923.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 241.0, + 1030.0, + 241.0, + 1030.0, + 265.0, + 1004.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 226.0, + 1369.0, + 226.0, + 1369.0, + 280.0, + 1031.0, + 280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 464.0, + 707.0, + 464.0, + 707.0, + 488.0, + 664.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 526.0, + 699.0, + 526.0, + 699.0, + 534.0, + 680.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.0, + 521.0, + 755.0, + 521.0, + 755.0, + 537.0, + 723.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 575.0, + 433.0, + 575.0, + 433.0, + 599.0, + 390.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 576.0, + 479.0, + 576.0, + 479.0, + 597.0, + 441.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 500.0, + 577.0, + 531.0, + 577.0, + 531.0, + 592.0, + 500.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 835.0, + 567.0, + 868.0, + 567.0, + 868.0, + 603.0, + 835.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 569.0, + 923.0, + 569.0, + 923.0, + 601.0, + 889.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 566.0, + 986.0, + 566.0, + 986.0, + 606.0, + 939.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1001.0, + 569.0, + 1042.0, + 569.0, + 1042.0, + 600.0, + 1001.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 570.0, + 1090.0, + 570.0, + 1090.0, + 601.0, + 1052.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 828.0, + 613.0, + 1364.0, + 613.0, + 1364.0, + 667.0, + 828.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 675.0, + 644.0, + 675.0, + 644.0, + 716.0, + 451.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 675.0, + 1203.0, + 675.0, + 1203.0, + 716.0, + 990.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 632.5, + 420.0, + 632.5, + 420.0, + 645.5, + 396.0, + 645.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 737.0, + 1404.0, + 737.0, + 1404.0, + 769.0, + 296.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 767.0, + 1406.0, + 767.0, + 1406.0, + 799.0, + 295.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 796.0, + 1406.0, + 796.0, + 1406.0, + 833.0, + 292.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 824.0, + 424.0, + 824.0, + 424.0, + 866.0, + 293.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1450.0, + 566.0, + 1450.0, + 566.0, + 1501.0, + 291.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1921.0, + 491.0, + 1921.0, + 491.0, + 1961.0, + 296.0, + 1961.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": [ + 839.0, + 2087.0, + 860.0, + 2087.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1533.0, + 1405.0, + 1533.0, + 1405.0, + 1568.0, + 295.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1565.0, + 1405.0, + 1565.0, + 1405.0, + 1598.0, + 293.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1594.0, + 1405.0, + 1594.0, + 1405.0, + 1629.0, + 296.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1625.0, + 1405.0, + 1625.0, + 1405.0, + 1660.0, + 295.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1654.0, + 1405.0, + 1654.0, + 1405.0, + 1692.0, + 293.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1687.0, + 1406.0, + 1687.0, + 1406.0, + 1722.0, + 296.0, + 1722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1717.0, + 1405.0, + 1717.0, + 1405.0, + 1752.0, + 296.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1747.0, + 1403.0, + 1747.0, + 1403.0, + 1782.0, + 295.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1776.0, + 1407.0, + 1776.0, + 1407.0, + 1814.0, + 293.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1808.0, + 1405.0, + 1808.0, + 1405.0, + 1843.0, + 295.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1839.0, + 1128.0, + 1839.0, + 1128.0, + 1874.0, + 295.0, + 1874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 925.0, + 1406.0, + 925.0, + 1406.0, + 965.0, + 294.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 959.0, + 1404.0, + 959.0, + 1404.0, + 995.0, + 292.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 987.0, + 1404.0, + 987.0, + 1404.0, + 1026.0, + 292.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1020.0, + 1406.0, + 1020.0, + 1406.0, + 1056.0, + 295.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1050.0, + 1405.0, + 1050.0, + 1405.0, + 1088.0, + 293.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1080.0, + 1406.0, + 1080.0, + 1406.0, + 1117.0, + 294.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1109.0, + 570.0, + 1109.0, + 570.0, + 1149.0, + 292.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 1109.0, + 1087.0, + 1109.0, + 1087.0, + 1149.0, + 737.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 1109.0, + 1269.0, + 1109.0, + 1269.0, + 1149.0, + 1129.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1308.0, + 1109.0, + 1407.0, + 1109.0, + 1407.0, + 1149.0, + 1308.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1141.0, + 1406.0, + 1141.0, + 1406.0, + 1175.0, + 292.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1174.0, + 1215.0, + 1174.0, + 1215.0, + 1207.0, + 296.0, + 1207.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1216.0, + 1407.0, + 1216.0, + 1407.0, + 1255.0, + 294.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1248.0, + 1407.0, + 1248.0, + 1407.0, + 1284.0, + 293.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1278.0, + 592.0, + 1278.0, + 592.0, + 1317.0, + 292.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 759.0, + 1278.0, + 1311.0, + 1278.0, + 1311.0, + 1317.0, + 759.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 1278.0, + 1407.0, + 1278.0, + 1407.0, + 1317.0, + 1354.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1310.0, + 297.0, + 1310.0, + 297.0, + 1345.0, + 294.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 1310.0, + 1405.0, + 1310.0, + 1405.0, + 1345.0, + 336.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1338.0, + 1408.0, + 1338.0, + 1408.0, + 1378.0, + 292.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1372.0, + 945.0, + 1372.0, + 945.0, + 1407.0, + 294.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1975.0, + 1407.0, + 1975.0, + 1407.0, + 2011.0, + 296.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 2006.0, + 1222.0, + 2006.0, + 1222.0, + 2034.0, + 321.0, + 2034.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 105, + 298, + 105 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.836 + }, + { + "category_id": 1, + "poly": [ + 291, + 74, + 1410, + 74, + 1410, + 1977, + 291, + 1977 + ], + "score": 0.598 + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 859.0, + 73.0, + 859.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2123.0, + 830.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 72.0, + 861.0, + 72.0, + 861.0, + 112.0, + 294.0, + 112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 233.0, + 1409.0, + 233.0, + 1409.0, + 266.0, + 296.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 262.0, + 783.0, + 262.0, + 783.0, + 295.0, + 321.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 308.0, + 1409.0, + 308.0, + 1409.0, + 347.0, + 294.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 333.0, + 1407.0, + 333.0, + 1407.0, + 375.0, + 317.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 366.0, + 1077.0, + 366.0, + 1077.0, + 400.0, + 321.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 412.0, + 1407.0, + 412.0, + 1407.0, + 452.0, + 294.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 441.0, + 1276.0, + 441.0, + 1276.0, + 481.0, + 317.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 487.0, + 1407.0, + 487.0, + 1407.0, + 529.0, + 290.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 521.0, + 753.0, + 521.0, + 753.0, + 554.0, + 321.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 571.0, + 1403.0, + 571.0, + 1403.0, + 604.0, + 294.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 621.0, + 1405.0, + 621.0, + 1405.0, + 654.0, + 296.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 652.0, + 1079.0, + 652.0, + 1079.0, + 679.0, + 321.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 698.0, + 1409.0, + 698.0, + 1409.0, + 731.0, + 294.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 729.0, + 685.0, + 729.0, + 685.0, + 756.0, + 321.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 767.0, + 1409.0, + 767.0, + 1409.0, + 815.0, + 290.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 804.0, + 1026.0, + 804.0, + 1026.0, + 838.0, + 319.0, + 838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 850.0, + 1181.0, + 850.0, + 1181.0, + 886.0, + 292.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 898.0, + 1409.0, + 898.0, + 1409.0, + 940.0, + 292.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 927.0, + 975.0, + 927.0, + 975.0, + 965.0, + 315.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 980.0, + 1407.0, + 980.0, + 1407.0, + 1013.0, + 294.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1009.0, + 734.0, + 1009.0, + 734.0, + 1042.0, + 319.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1057.0, + 1407.0, + 1057.0, + 1407.0, + 1090.0, + 294.0, + 1090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1088.0, + 480.0, + 1088.0, + 480.0, + 1115.0, + 324.0, + 1115.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1132.0, + 1405.0, + 1132.0, + 1405.0, + 1165.0, + 294.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1163.0, + 1407.0, + 1163.0, + 1407.0, + 1197.0, + 321.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1192.0, + 882.0, + 1192.0, + 882.0, + 1226.0, + 321.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1240.0, + 1405.0, + 1240.0, + 1405.0, + 1274.0, + 296.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1268.0, + 918.0, + 1268.0, + 918.0, + 1303.0, + 317.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1318.0, + 1405.0, + 1318.0, + 1405.0, + 1351.0, + 294.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1347.0, + 1407.0, + 1347.0, + 1407.0, + 1380.0, + 321.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 1372.0, + 556.0, + 1372.0, + 556.0, + 1405.0, + 315.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1418.0, + 1409.0, + 1418.0, + 1409.0, + 1460.0, + 290.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1449.0, + 884.0, + 1449.0, + 884.0, + 1489.0, + 319.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1497.0, + 1407.0, + 1497.0, + 1407.0, + 1535.0, + 292.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1528.0, + 1405.0, + 1528.0, + 1405.0, + 1562.0, + 321.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1555.0, + 654.0, + 1555.0, + 654.0, + 1589.0, + 319.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1606.0, + 1407.0, + 1606.0, + 1407.0, + 1639.0, + 296.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 1631.0, + 723.0, + 1631.0, + 723.0, + 1668.0, + 315.0, + 1668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1681.0, + 1407.0, + 1681.0, + 1407.0, + 1720.0, + 292.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1712.0, + 1358.0, + 1712.0, + 1358.0, + 1745.0, + 321.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1758.0, + 1409.0, + 1758.0, + 1409.0, + 1797.0, + 292.0, + 1797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1791.0, + 1075.0, + 1791.0, + 1075.0, + 1818.0, + 324.0, + 1818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1837.0, + 1407.0, + 1837.0, + 1407.0, + 1871.0, + 296.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 1864.0, + 1020.0, + 1864.0, + 1020.0, + 1900.0, + 315.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1910.0, + 1409.0, + 1910.0, + 1409.0, + 1952.0, + 290.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1944.0, + 874.0, + 1944.0, + 874.0, + 1977.0, + 321.0, + 1977.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/rklEj2EFvB/rklEj2EFvB_content_list.json b/parse/train/rklEj2EFvB/rklEj2EFvB_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..1d782052bfbb5ad7896479637adb13aa9975dec7 --- /dev/null +++ b/parse/train/rklEj2EFvB/rklEj2EFvB_content_list.json @@ -0,0 +1,3670 @@ +[ + { + "type": "text", + "text": "ESTIMATING GRADIENTS FOR DISCRETE RANDOM VARIABLES BY SAMPLING WITHOUT REPLACEMENT ", + "text_level": 1, + "bbox": [ + 176, + 99, + 823, + 146 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Herke van Hoof University of Amsterdam h.c.vanhoof@uva.nl ", + "bbox": [ + 397, + 170, + 575, + 212 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Wouter Kool \nUniversity of Amsterdam ORTEC \nw.w.m.kool@uva.nl Max Welling \nUniversity of Amsterdam CIFAR \nm.welling@uva.nl ", + "bbox": [ + 183, + 170, + 352, + 226 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 617, + 170, + 787, + 227 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 262, + 544, + 277 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "We derive an unbiased estimator for expectations over discrete random variables based on sampling without replacement, which reduces variance as it avoids duplicate samples. We show that our estimator can be derived as the RaoBlackwellization of three different estimators. Combining our estimator with REINFORCE, we obtain a policy gradient estimator and we reduce its variance using a built-in control variate which is obtained without additional model evaluations. The resulting estimator is closely related to other gradient estimators. Experiments with a toy problem, a categorical Variational Auto-Encoder and a structured prediction problem show that our estimator is the only estimator that is consistently among the best estimators in both high and low entropy settings. ", + "bbox": [ + 233, + 295, + 764, + 434 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 460, + 336, + 477 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Put replacement in your basement! We derive the unordered set estimator1: an unbiased (gradient) estimator for expectations over discrete random variables based on (unordered sets of) samples without replacement. In particular, we consider the problem of estimating (the gradient of) the expectation of $f ( { \\pmb x } )$ where $_ { \\textbf { \\em x } }$ has a discrete distribution $p$ over the domain $D$ , i.e. ", + "bbox": [ + 174, + 491, + 825, + 547 + ], + "page_idx": 0 + }, + { + "type": "equation", + "img_path": "images/a18d756698f674fda23751c9deccb14a866693f84ffad8812a7db5d0aa84f303.jpg", + "text": "$$\n\\mathbb { E } _ { { \\pmb x } \\sim p ( { \\pmb x } ) } [ f ( { \\pmb x } ) ] = \\sum _ { { \\pmb x } \\in D } p ( { \\pmb x } ) f ( { \\pmb x } ) .\n$$", + "text_format": "latex", + "bbox": [ + 375, + 555, + 622, + 582 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "This expectation comes up in reinforcement learning, discrete latent variable modelling (e.g. for compression), structured prediction (e.g. for translation), hard attention and many other tasks that use models with discrete operations in their computational graphs (see e.g. Jang et al. (2016)). In general, $_ { \\textbf { \\em x } }$ has structure (such as a sequence), but we can treat it as a ‘flat’ distribution, omitting the bold notation, so $x$ has a categorical distribution over $D$ given by $p ( x ) , x \\in D$ . Typically, the distribution has parameters $\\pmb { \\theta }$ , which are learnt through gradient descent. This requires estimating the gradient $\\nabla _ { \\pmb { \\theta } } \\bar { \\mathbb { E } } _ { \\boldsymbol { x } \\sim p _ { \\pmb { \\theta } } ( \\boldsymbol { x } ) } [ f ( \\boldsymbol { x } ) ]$ , using a set of samples $S$ . A gradient estimate $e ( S )$ is unbiased if ", + "bbox": [ + 173, + 587, + 825, + 685 + ], + "page_idx": 0 + }, + { + "type": "equation", + "img_path": "images/f611a4818678ca6d6a94189e9ceb1ebc2fee17ab410928ec5188501d7f982d21.jpg", + "text": "$$\n\\mathbb { E } _ { S } [ e ( S ) ] = \\nabla _ { \\pmb { \\theta } } \\mathbb { E } _ { \\pmb { x } \\sim p _ { \\pmb { \\theta } } ( \\pmb { x } ) } [ f ( \\pmb { x } ) ] .\n$$", + "text_format": "latex", + "bbox": [ + 392, + 693, + 606, + 712 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "The samples $S$ can be sampled independently or using alternatives such as stratified sampling which reduce variance to increase the speed of learning. In this paper, we derive an unbiased gradient estimator that reduces variance by avoiding duplicate samples, i.e. by sampling $S$ without replacement. This is challenging as samples without replacement are dependent and have marginal distributions that are different from $p ( x )$ . We further reduce the variance by deriving a built-in control variate, which maintains the unbiasedness and does not require additional samples. ", + "bbox": [ + 173, + 717, + 825, + 801 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Related work. Many algorithms for estimating gradients for discrete distributions have been proposed. A general and widely used estimator is REINFORCE (Williams, 1992). Biased gradients based on a continuous relaxations of the discrete distribution (known as Gumbel-Softmax or Concrete) were jointly introduced by Jang et al. (2016) and Maddison et al. (2016). These can be combined with the straight through estimator (Bengio et al., 2013) if the model requires discrete samples or be used to construct control variates for REINFORCE, as in REBAR (Tucker et al., 2017) or ", + "bbox": [ + 174, + 815, + 825, + 900 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "RELAX (Grathwohl et al., 2018). Many other methods use control variates and other techniques to reduce the variance of REINFORCE (Paisley et al., 2012; Ranganath et al., 2014; Gregor et al., 2014; Mnih & Gregor, 2014; Gu et al., 2016; Mnih & Rezende, 2016). ", + "bbox": [ + 173, + 103, + 823, + 146 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Some works rely on explicit summation of the expectation, either for the marginal distribution (Titsias & Lazaro-Gredilla, 2015) or globally summing some categories while sampling from the re- ´ mainder (Liang et al., 2018; Liu et al., 2019). Other approaches use a finite difference approximation to the gradient (Lorberbom et al., 2018; 2019). Yin et al. (2019) introduced ARSM, which uses multiple model evaluations where the number adapts automatically to the uncertainty. ", + "bbox": [ + 173, + 152, + 825, + 223 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In the structured prediction setting, there are many algorithms for optimizing a quantity under a sequence of discrete decisions, using (weak) supervision, multiple samples (or deterministic model evaluations), or a combination both (Ranzato et al., 2016; Shen et al., 2016; He et al., 2016; Norouzi et al., 2016; Bahdanau et al., 2017; Edunov et al., 2018; Leblond et al., 2018; Negrinho et al., 2018). Most of these algorithms are biased and rely on pretraining using maximum likelihood or gradually transitioning from supervised to reinforcement learning. Using Gumbel-Softmax based approaches in a sequential setting is difficult as the bias accumulates because of mixing errors (Gu et al., 2018). ", + "bbox": [ + 173, + 229, + 825, + 328 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 PRELIMINARIES ", + "text_level": 1, + "bbox": [ + 176, + 349, + 339, + 364 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Throughout this paper, we will denote with $B ^ { k }$ an ordered sample without replacement of size $k$ and with $S ^ { k }$ an unordered sample (of size $k$ ) from the categorical distribution $p$ . ", + "bbox": [ + 174, + 381, + 823, + 411 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Restricted distribution. When sampling without replacement, we remove the set $C \\subset D$ already sampled from the domain and we denote with $p ^ { D \\setminus C }$ the distribution restricted to the domain $D \\backslash C$ : ", + "bbox": [ + 171, + 426, + 823, + 458 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/13de092ebbad144ed1582389f19c0e3ba4185aa7ab5fb3003afb94aebee46b00.jpg", + "text": "$$\np ^ { D \\setminus C } ( x ) = \\frac { p ( x ) } { 1 - \\sum _ { c \\in C } p ( c ) } , \\quad x \\in D \\setminus C .\n$$", + "text_format": "latex", + "bbox": [ + 354, + 465, + 643, + 501 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Ordered sample without replacement $B ^ { k }$ . Let $B ^ { k } = ( b _ { 1 } , . . . , b _ { k } ) , b _ { i } \\in D$ be an ordered sample without replacement, which is generated from the distribution $p$ as follows: first, sample $b _ { 1 } \\sim p$ , then sample $b _ { 2 } \\sim p ^ { D \\setminus \\{ b _ { 1 } \\} }$ , $b _ { 3 } ^ { ^ { - } } \\sim p ^ { D \\setminus \\{ b _ { 1 } , b _ { 2 } \\} }$ , etc. i.e. elements are sampled one by one without replacement. Using this procedure, $B ^ { k }$ can be seen as a (partial) ranking according to the PlackettLuce model (Plackett, 1975; Luce, 1959) and the probability of obtaining the vector $B ^ { k }$ is ", + "bbox": [ + 174, + 517, + 825, + 590 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/86b02d654fa38adab9eb042c932a2ca5c18e66b0e7b09ae5c06e7b3c1f7804c2.jpg", + "text": "$$\np ( B ^ { k } ) = \\prod _ { i = 1 } ^ { k } p ^ { D \\setminus B ^ { i - 1 } } ( b _ { i } ) = \\prod _ { i = 1 } ^ { k } \\frac { p ( b _ { i } ) } { 1 - \\sum _ { j < i } p ( b _ { j } ) } .\n$$", + "text_format": "latex", + "bbox": [ + 341, + 598, + 656, + 647 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We can also restrict $B ^ { k }$ to the domain $D \\backslash C$ , which means that $b _ { i } \\notin C$ for $i = 1 , . . . , k$ : ", + "bbox": [ + 173, + 656, + 746, + 674 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/7d2dbcdc06bd8030e00f817db260a946e3aa85c9999d074ee060a76a475ee636.jpg", + "text": "$$\np ^ { D \\setminus C } ( B ^ { k } ) = \\prod _ { i = 1 } ^ { k } { \\frac { p ^ { D \\setminus C } ( b _ { i } ) } { 1 - \\sum _ { j < i } p ^ { D \\setminus C } ( b _ { j } ) } } = \\prod _ { i = 1 } ^ { k } { \\frac { p ( b _ { i } ) } { 1 - \\sum _ { c \\in C } p ( c ) - \\sum _ { j < i } p ( b _ { j } ) } } .\n$$", + "text_format": "latex", + "bbox": [ + 271, + 681, + 727, + 731 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Unordered sample without replacement. Let $S ^ { k } \\subseteq D$ be an unordered sample without replacement from the distribution $p$ , which can be generated simply by generating an ordered sample and discarding the order. We denote elements in the sample with $s \\in \\breve { S } ^ { k }$ (so without index) and we write $B ( S ^ { k } )$ as the set of all $k !$ ! permutations (orderings) $\\bar { B ^ { k } }$ that correspond to (could have generated) $S ^ { k }$ . It follows that the probability for sampling $S ^ { k }$ is given by: ", + "bbox": [ + 173, + 747, + 825, + 819 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/6d296d81c7b9c0171b827bfda9cc4f8fde6f7b94ec7b11437c2b6839d948c0c7.jpg", + "text": "$$\np ( S ^ { k } ) = \\sum _ { B ^ { k } \\in B ( S ^ { k } ) } p ( B ^ { k } ) = \\sum _ { B ^ { k } \\in B ( S ^ { k } ) } \\prod _ { i = 1 } ^ { k } \\frac { p ( b _ { i } ) } { 1 - \\sum _ { j < i } p ( b _ { j } ) } = \\left( \\prod _ { s \\in S ^ { k } } p ( s ) \\right) \\cdot \\sum _ { B ^ { k } \\in B ( S ^ { k } ) } \\prod _ { i = 1 } ^ { k } \\frac { 1 } { 1 - \\sum _ { j < i } p ( b _ { j } ) } .\n$$", + "text_format": "latex", + "bbox": [ + 184, + 825, + 812, + 880 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "The last step follows since $B ^ { k } \\in B ( S ^ { k } )$ is an ordering of $S ^ { k }$ , such that $\\begin{array} { r } { \\prod _ { i = 1 } ^ { k } p ( b _ { i } ) = \\prod _ { s \\in S } p ( s ) } \\end{array}$ . \nNaive computation of $p ( S ^ { k } )$ is $O ( k ! )$ , but in Appendix $\\mathbf { B }$ we show how to compute it efficiently. ", + "bbox": [ + 174, + 890, + 825, + 925 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "When sampling from the distribution restricted to $D \\backslash C$ , we sample $S ^ { k } \\subseteq D \\setminus C$ with probability: ", + "bbox": [ + 171, + 102, + 823, + 119 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/f1416a090c7000a0924172bf9118f60f0a3e8afda4a60413536211213eafb11e.jpg", + "text": "$$\np ^ { D \\setminus C } ( S ^ { k } ) = \\left( \\prod _ { s \\in S ^ { k } } p ( s ) \\right) \\cdot \\sum _ { B ^ { k } \\in \\mathcal { B } ( S ^ { k } ) } \\prod _ { i = 1 } ^ { k } \\frac { 1 } { 1 - \\sum _ { c \\in C } p ( c ) - \\sum _ { j < i } p ( b _ { j } ) } .\n$$", + "text_format": "latex", + "bbox": [ + 269, + 123, + 725, + 176 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The Gumbel-Top- $k$ trick. As an alternative to sequential sampling, we can also sample $B ^ { k }$ and $S ^ { k }$ by taking the top $k$ of Gumbel variables (Yellott, 1977; Vieira, 2014; Kim et al., 2016). Following notation from Kool et al. $( 2 0 1 9 \\mathrm { c } )$ , we define the perturbed log-probability $g _ { \\phi _ { i } } = \\phi _ { i } + g _ { i }$ , where $\\phi _ { i } = \\log p ( i )$ and $g _ { i } \\sim \\mathrm { G u m b e l } ( 0 )$ . Then let $b _ { 1 } = \\arg \\operatorname* { m a x } _ { i \\in D } g _ { \\phi _ { i } }$ , $b _ { 2 } = \\arg \\operatorname* { m a x } _ { i \\in D \\backslash \\{ b _ { 1 } \\} } g _ { \\phi _ { i } }$ , etc., so $B ^ { k }$ is the top $k$ of the perturbed log-probabilities in decreasing order. The probability of obtaining $B _ { k }$ using this procedure is given by equation 4, so this provides an alternative sampling method which is effectively a (non-differentiable) reparameterization of sampling without replacement. For a differentiable reparameterization, see Grover et al. (2019). ", + "bbox": [ + 173, + 189, + 826, + 306 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "It follows that taking the top $k$ perturbed log-probabilities without order, we obtain the unordered sample set $S ^ { k }$ . This way of sampling underlies the efficient computation of $p ( S ^ { k } )$ in Appendix B. ", + "bbox": [ + 173, + 311, + 825, + 340 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 METHODOLOGY ", + "text_level": 1, + "bbox": [ + 176, + 359, + 341, + 376 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In this section, we derive the unordered set policy gradient estimator: a low-variance, unbiased estimator of $\\nabla _ { \\pmb { \\theta } } \\mathbb { E } _ { p _ { \\pmb { \\theta } } ( \\pmb { x } ) } [ f ( \\pmb { x } ) ]$ based on an unordered sample without replacement $S ^ { k }$ . First, we derive the generic (non-gradient) estimator for $\\mathbb { E } [ f ( x ) ]$ as the Rao-Blackwellized version of a single sample Monte Carlo estimator (and two other estimators!). Then we combine this estimator with REINFORCE (Williams, 1992) and we show how to reduce its variance using a built-in baseline. ", + "bbox": [ + 173, + 391, + 826, + 463 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3.1 RAO-BLACKWELLIZATION OF THE SINGLE SAMPLE ESTIMATOR", + "text_level": 1, + "bbox": [ + 174, + 479, + 653, + 494 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "A very crude but simple estimator for $\\mathbb { E } [ f ( x ) ]$ based on the ordered sample $B ^ { k }$ is to only use the first element $b _ { 1 }$ , which by definition is a sample from the distribution $p$ . We define this estimator as the single sample estimator, which is unbiased, since ", + "bbox": [ + 173, + 503, + 825, + 547 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/02f2b3f7b50f0fc7fea7eafa76908daeb1becae1ddbe2c49d64505835578994c.jpg", + "text": "$$\n\\begin{array} { r } { \\mathbb { E } _ { B ^ { k } \\sim p ( B ^ { k } ) } [ f ( b _ { 1 } ) ] = \\mathbb { E } _ { b _ { 1 } \\sim p ( b _ { 1 } ) } [ f ( b _ { 1 } ) ] = \\mathbb { E } _ { x \\sim p ( x ) } [ f ( x ) ] . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 310, + 553, + 686, + 571 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Discarding all but one sample, the single sample estimator is inefficient, but we can use RaoBlackwellization (Casella $\\&$ Robert, 1996) to signficantly improve it. To this end, we consider the distribution $B ^ { k } | S ^ { k }$ , which is, knowing the unordered sample $S ^ { k }$ , the conditional distribution over ordered samples $B ^ { k } \\in B ( S ^ { k } )$ that could have generated $S ^ { \\hat { k } }$ .2 Using $B ^ { k } | S ^ { k }$ , we rewrite $\\mathbb { E } [ f ( b _ { 1 } ) ]$ as ", + "bbox": [ + 174, + 583, + 825, + 640 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/266311ced4be4415de977a8b098b3fa79a51a05a8a5ba8855a81cddf903a16de.jpg", + "text": "$$\n\\begin{array} { r } { \\mathbb { E } _ { B ^ { k } \\sim p ( B ^ { k } ) } [ f ( b _ { 1 } ) ] = \\mathbb { E } _ { S ^ { k } \\sim p ( S ^ { k } ) } \\left[ \\mathbb { E } _ { B ^ { k } \\sim p ( B ^ { k } \\mid S ^ { k } ) } \\left[ f ( b _ { 1 } ) \\right] \\right] = \\mathbb { E } _ { S ^ { k } \\sim p ( S ^ { k } ) } \\left[ \\mathbb { E } _ { b _ { 1 } \\sim p ( b _ { 1 } \\mid S ^ { k } ) } \\left[ f ( b _ { 1 } ) \\right] \\right] . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 187, + 645, + 808, + 665 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The Rao-Blackwellized version of the single sample estimator computes the inner conditional expectation exactly. Since $B ^ { k }$ is an ordering of $S ^ { k }$ , we have $b _ { 1 } \\in S ^ { k }$ and we can compute this as ", + "bbox": [ + 173, + 676, + 821, + 704 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/596870a40feaefe9b1a493c1183747aa6ee26d2fce368c656b98b1f97b2dccf6.jpg", + "text": "$$\n\\mathbb { E } _ { b _ { 1 } \\sim p ( b _ { 1 } | S ^ { k } ) } \\left[ f ( b _ { 1 } ) \\right] = \\sum _ { s \\in S ^ { k } } P ( b _ { 1 } = s | S ^ { k } ) f ( s )\n$$", + "text_format": "latex", + "bbox": [ + 341, + 709, + 656, + 744 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where, in a slight abuse of notation, $P ( b _ { 1 } = s | S ^ { k } )$ is the probability that the first sampled element $b _ { 1 }$ takes the value $s$ , given that the complete set of $k$ samples is $S ^ { k }$ . Using Bayes’ Theorem we find ", + "bbox": [ + 174, + 751, + 825, + 781 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/1f9be78c95a7fbbee7be9b15c59a94a262dff1f16e5d8e1f33172e666357253e.jpg", + "text": "$$\nP ( b _ { 1 } = s | S ^ { k } ) = \\frac { p ( S ^ { k } | b _ { 1 } = s ) P ( b _ { 1 } = s ) } { p ( S ^ { k } ) } = \\frac { p ^ { D \\setminus \\{ s \\} } ( S ^ { k } \\setminus \\{ s \\} ) p ( s ) } { p ( S ^ { k } ) } .\n$$", + "text_format": "latex", + "bbox": [ + 271, + 785, + 725, + 821 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The step $p ( S ^ { k } | b _ { 1 } = s ) = p ^ { D \\setminus \\{ s \\} } ( S ^ { k } \\setminus \\{ s \\} )$ comes from analyzing sequential sampling without replacement: given that the first element sampled is $s$ , the remaining elements have a distribution restricted to $D \\backslash \\{ s \\}$ , so sampling $S ^ { k }$ (including $s$ ) given the first element $s$ is equivalent to sampling the remainder $S ^ { k } \\setminus \\{ s \\}$ from the restricted distribution, which has probability $p ^ { D \\setminus \\{ s \\} } ( S ^ { k } \\setminus \\{ s \\} )$ (see equation 7). ", + "bbox": [ + 173, + 827, + 825, + 901 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The unordered set estimator. For notational convenience, we introduce the leave-one-out ratio. \nDefinition 1. The leave-one-out ratio of $s$ w.r.t. the set $S$ is given by $\\begin{array} { r } { R ( S ^ { k } , s ) = \\frac { p ^ { D \\setminus \\{ s \\} } ( S ^ { k } \\setminus \\{ s \\} ) } { p ( S ^ { k } ) } } \\end{array}$ . ", + "bbox": [ + 171, + 102, + 820, + 146 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Rewriting equation 10 as $P ( b _ { 1 } = s | S ^ { k } ) = p ( s ) R ( S ^ { k } , s )$ shows that the probability of sampling $s$ first, given $S ^ { k }$ , is simply the unconditional probability multiplied by the leave-one-out ratio. We now define the unordered set estimator as the Rao-Blackwellized version of the single-sample estimator. ", + "bbox": [ + 173, + 156, + 825, + 200 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Theorem 1. The unordered set estimator, given by ", + "bbox": [ + 176, + 204, + 509, + 218 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/03ee959b283d9cfc0e39f81176d5ac72d29d6fce2c91e22ff52fc67c6b0db17c.jpg", + "text": "$$\ne ^ { U S } ( S ^ { k } ) = \\sum _ { s \\in S ^ { k } } p ( s ) R ( S ^ { k } , s ) f ( s )\n$$", + "text_format": "latex", + "bbox": [ + 383, + 224, + 614, + 261 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "is the Rao-Blackwellized version of the (unbiased!) single sample estimator. ", + "bbox": [ + 173, + 266, + 669, + 282 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Proof. Using $P ( b _ { 1 } = s | S ^ { k } ) = p ( s ) R ( S ^ { k } , s )$ in equation 9 we have ", + "bbox": [ + 173, + 295, + 619, + 313 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/51b7f2077f8163e0ce349e2825cb373b1056003fe7e01d54c2ffc9c3c267dffe.jpg", + "text": "$$\n\\mathbb { E } _ { b _ { 1 } \\sim p ( b _ { 1 } | S ^ { k } ) } \\left[ f ( b _ { 1 } ) \\right] = \\sum _ { s \\in S ^ { k } } P ( b _ { 1 } = s | S ^ { k } ) f ( s ) = \\sum _ { s \\in S ^ { k } } p ( s ) R ( S ^ { k } , s ) f ( s ) .\n$$", + "text_format": "latex", + "bbox": [ + 253, + 318, + 743, + 353 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The implication of this theorem is that the unordered set estimator, in explicit form given by equation 11, is an unbiased estimator of $\\mathbb { E } [ f ( x ) ]$ since it is the Rao-Blackwellized version of the unbiased single sample estimator. Also, as expected by taking multiple samples, it has variance equal or lower than the single sample estimator by the Rao-Blackwell Theorem (Lehmann & Scheffe, 1950). ´ ", + "bbox": [ + 173, + 388, + 825, + 446 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.2 RAO-BLACKWELLIZATION OF OTHER ESTIMATORS ", + "text_level": 1, + "bbox": [ + 174, + 463, + 565, + 478 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The unordered set estimator is also the result of Rao-Blackwellizing two other unbiased estimators: the stochastic sum-and-sample estimator and the importance-weighted estimator. ", + "bbox": [ + 169, + 488, + 823, + 518 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The sum-and-sample estimator. We define as sum-and-sample estimator any estimator that relies on the identity that for any $C \\subset D$ ", + "bbox": [ + 173, + 531, + 823, + 561 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/71c31bf9e4547b1b6d796ed465395787980be036d959b15057290c3d36ca596b.jpg", + "text": "$$\n\\mathbb { E } _ { x \\sim p ( x ) } [ f ( x ) ] = \\mathbb { E } _ { x \\sim p ^ { D \\setminus C } ( x ) } \\left[ \\sum _ { c \\in C } p ( c ) f ( c ) + \\left( 1 - \\sum _ { c \\in C } p ( c ) \\right) f ( x ) \\right] .\n$$", + "text_format": "latex", + "bbox": [ + 259, + 568, + 736, + 611 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "For the derivation, see Appendix C.1 or Liang et al. (2018); Liu et al. (2019). In general, a sum-andsample estimator with a budget of $k > 1$ evaluations sums expectation terms for a set of categories $C$ (s.t. $| C | < k )$ explicitly (e.g. selected by their value $f$ (Liang et al., 2018) or probability $p$ (Liu et al., 2019)), and uses $k - | C |$ (down-weighted) samples from $D \\backslash C$ to estimate the remaining terms. As is noted by Liu et al. (2019), selecting $C$ such that $\\frac { 1 - \\sum _ { c \\in C } p ( c ) } { k - | C | }$ is minimized guarantees to reduce variance compared to a standard minibatch of $k$ samples (which is equivalent to setting $C = \\varnothing$ ). See also Fearnhead $\\&$ Clifford (2003) for a discussion on selecting $C$ optimally. The ability to optimize $C$ depends on whether $p ( c )$ can be computed efficiently a-priori (before sampling). This is difficult in high-dimensional settings, e.g. sequence models which compute the probability incrementally while ancestral sampling. An alternative is to select $C$ stochastically (as equation 13 holds for any $C$ ), and we choose $C = B ^ { k - 1 }$ to define the stochastic sum-and-sample estimator: ", + "bbox": [ + 173, + 616, + 825, + 779 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/9ed8f24def9f93383a37e69286f2f5833e1c4dc8a9d8a9cf54ab1cede0ce92e5.jpg", + "text": "$$\ne ^ { { \\mathrm { S S A S } } } ( B ^ { k } ) = \\sum _ { j = 1 } ^ { k - 1 } p ( b _ { j } ) f ( b _ { j } ) + \\left( 1 - \\sum _ { j = 1 } ^ { k - 1 } p ( b _ { j } ) \\right) f ( b _ { k } ) .\n$$", + "text_format": "latex", + "bbox": [ + 310, + 785, + 687, + 835 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "For simplicity, we consider the version that sums $k - 1$ terms here, but the following results also hold for a version that sums $k - m$ terms and uses $m$ samples (without replacement) (see Appendix C.3). Sampling without replacement, it holds that bk|Bk−1 ∼ pD\\Bk−1, so the unbiasedness follows from equation 13 by separating the expectation over $B ^ { k }$ into expectations over $B ^ { k - 1 }$ and $b _ { k } | B ^ { k - 1 }$ : ", + "bbox": [ + 173, + 839, + 826, + 900 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/1619865ccf403398a0293e9ef050ffb2ee63a39836b62b1c47416adfc582475b.jpg", + "text": "$$\n\\begin{array} { r } { \\mathbb { E } _ { B ^ { k - 1 } \\sim p ( B ^ { k - 1 } ) } \\left[ \\mathbb { E } _ { b _ { k } \\sim p ( b _ { k } | B ^ { k - 1 } ) } \\left[ e ^ { S S A S } ( B ^ { k } ) \\right] \\right] = \\mathbb { E } _ { B ^ { k - 1 } \\sim p ( B ^ { k - 1 } ) } \\left[ \\mathbb { E } [ f ( x ) ] \\right] = \\mathbb { E } [ f ( x ) ] . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 209, + 906, + 787, + 926 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In general, a sum-and-sample estimator reduces variance if the probability mass is concentrated on the summed categories. As typically high probability categories are sampled first, the stochastic sum-and-sample estimator sums high probability categories, similar to the estimator by Liu et al. (2019) which we refer to as the deterministic sum-and-sample estimator. As we show in Appendix C.2, Rao-Blackwellizing the stochastic sum-and-sample estimator also results in the unordered set estimator. This even holds for a version that uses $m$ samples and $k - m$ summed terms (see Appendix C.3), which means that the unordered set estimator has equal or lower variance than the optimal (in terms of $m$ ) stochastic sum-and-sample estimator, but conveniently does not need to choose $m$ . ", + "bbox": [ + 173, + 102, + 825, + 215 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The importance-weighted estimator. The importance-weighted estimator (Vieira, 2017) is ", + "bbox": [ + 174, + 229, + 787, + 246 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/8b61001740dc7d42db3c377579f08d9f93cdff9e7e3528a276595849d54f819e.jpg", + "text": "$$\ne ^ { \\mathrm { I W } } ( S ^ { k } , \\kappa ) = \\sum _ { s \\in S ^ { k } } { \\frac { p ( s ) } { q ( s , \\kappa ) } } f ( s ) .\n$$", + "text_format": "latex", + "bbox": [ + 392, + 252, + 606, + 291 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "This estimator is based on the idea of priority sampling (Duffield et al., 2007). It does not use the order of the sample, but assumes sampling using the Gumbel-Top- $k$ trick and requires access to $\\kappa$ , the $( k + 1 )$ -th largest perturbed log-probability, which can be seen as the ‘threshold’ since $g _ { \\phi _ { s } } ~ > ~ \\kappa ~ \\forall s ~ \\in ~ S ^ { k }$ . $\\bar { q ( s , a ) } = P ( g _ { \\phi _ { s } } > a )$ can be interpreted as the inclusion probability of $s \\in S ^ { k }$ (assuming a fixed threshold $a$ instead of a fixed sample size $k$ ). For details and a proof of unbiasedness, see Vieira (2017) or Kool et al. (2019c). As the estimator has high variance, Kool et al. (2019c) resort to normalizing the importance weights, resulting in biased estimates. Instead, we use Rao-Blackwellization to eliminate stochasticity by $\\kappa$ . Again, the result is the unordered set estimator (see Appendix D.1), which thus has equal or lower variance. ", + "bbox": [ + 173, + 297, + 825, + 426 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.3 THE UNORDERED SET POLICY GRADIENT ESTIMATOR ", + "text_level": 1, + "bbox": [ + 174, + 443, + 584, + 457 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Writing $p _ { \\pmb { \\theta } }$ to indicate the dependency on the model parameters $\\pmb { \\theta }$ , we can combine the unordered set estimator with REINFORCE (Williams, 1992) to obtain the unordered set policy gradient estimator. ", + "bbox": [ + 174, + 468, + 823, + 497 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Corollary 1. The unordered set policy gradient estimator, given by ", + "bbox": [ + 173, + 501, + 617, + 516 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/1dbc150d5df5f608b513f6396d6dc46e4c366286427d7ad9da89ab67b5e56ddd.jpg", + "text": "$$\ne ^ { U S P G } ( S ^ { k } ) = \\sum _ { s \\in S ^ { k } } p _ { \\theta } ( s ) R ( S ^ { k } , s ) \\nabla _ { \\theta } \\log p _ { \\theta } ( s ) f ( s ) = \\sum _ { s \\in S ^ { k } } \\nabla _ { \\theta } p _ { \\theta } ( s ) R ( S ^ { k } , s ) f ( s ) ,\n$$", + "text_format": "latex", + "bbox": [ + 212, + 522, + 758, + 558 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "is an unbiased estimate of the policy gradient. ", + "bbox": [ + 174, + 564, + 475, + 579 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Proof. Using REINFORCE (Williams, 1992) combined with the unordered set estimator we find: ", + "bbox": [ + 171, + 594, + 812, + 609 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/aab23b5a4539c051761f39cd7a8e17024373c54bc3fc29e240863c4159a74352.jpg", + "text": "$$\n\\nabla _ { \\theta } \\mathbb { E } _ { p _ { \\theta } ( x ) } [ f ( x ) ] = \\mathbb { E } _ { p _ { \\theta } ( x ) } [ \\nabla _ { \\theta } \\log p _ { \\theta } ( x ) f ( x ) ] = \\mathbb { E } _ { S ^ { k } \\sim p _ { \\theta } ( S ^ { k } ) } \\left[ \\sum _ { s \\in S ^ { k } } p _ { \\theta } ( s ) R ( S ^ { k } , s ) \\nabla _ { \\theta } \\log p _ { \\theta } ( s ) f ( s ) \\right] .\n$$", + "text_format": "latex", + "bbox": [ + 181, + 616, + 826, + 666 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Variance reduction using a built-in control variate. The variance of REINFORCE can be reduced by subtracting a baseline from $f$ . When taking multiple samples (with replacement), a simple and effective baseline is to take the mean of other (independent!) samples (Mnih & Rezende, 2016). Sampling without replacement, we can use the same idea to construct a baseline based on the other samples, but we have to correct for the fact that the samples are not independent. ", + "bbox": [ + 173, + 702, + 825, + 773 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Theorem 2. The unordered set policy gradient estimator with baseline, given by ", + "bbox": [ + 173, + 776, + 702, + 792 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/2bbfebe328fefece3095174414fb002d79ec5114db4b9f927fd8cd5b4c3d72fe.jpg", + "text": "$$\ne ^ { U S P G B L } ( S ^ { k } ) = \\sum _ { s \\in S ^ { k } } \\nabla _ { \\theta } p _ { \\theta } ( s ) R ( S ^ { k } , s ) \\left( f ( s ) - \\sum _ { s ^ { \\prime } \\in S ^ { k } } p _ { \\theta } ( s ^ { \\prime } ) R ^ { D \\setminus \\{ s \\} } ( S ^ { k } , s ^ { \\prime } ) f ( s ^ { \\prime } ) \\right) ,\n$$", + "text_format": "latex", + "bbox": [ + 204, + 797, + 766, + 848 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where ", + "bbox": [ + 173, + 854, + 215, + 868 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/6c8b0893165f90a463454da2a941978b46de124e3b5b3602947a4a6ac32e8a96.jpg", + "text": "$$\nR ^ { D \\setminus \\{ s \\} } ( S ^ { k } , s ^ { \\prime } ) = { \\frac { p _ { \\theta } ^ { D \\setminus \\{ s , s ^ { \\prime } \\} } ( S ^ { k } \\setminus \\{ s , s ^ { \\prime } \\} ) } { p _ { \\theta } ^ { D \\setminus \\{ s \\} } ( S ^ { k } \\setminus \\{ s \\} ) } }\n$$", + "text_format": "latex", + "bbox": [ + 357, + 864, + 640, + 906 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "is the second order leave-one-out ratio, is an unbiased estimate of the policy gradient. ", + "bbox": [ + 171, + 910, + 733, + 924 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Proof. See Appendix E.1. ", + "bbox": [ + 174, + 104, + 344, + 118 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "This theorem shows how to include a built-in baseline based on dependent samples (without replacement), without introducing bias. By having a built-in baseline, the value $f ( s )$ for sample $s$ is compared against an estimate of its expectation $\\mathbb { E } [ f ( s ) ]$ , based on the other samples. The difference is an estimate of the advantage (Sutton & Barto, 2018), which is positive if the sample $s$ is ‘better’ than average, causing $p _ { \\pmb { \\theta } } ( s )$ to be increased (reinforced) through the sign of the gradient, and vice versa. By sampling without replacement, the unordered set estimator forces the estimator to compare different alternatives, and reinforces the best among them. ", + "bbox": [ + 173, + 142, + 825, + 241 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Including the pathwise derivative. So far, we have only considered the scenario where $f$ does not depend on $\\pmb \\theta$ . If $f$ does depend on $\\pmb \\theta$ , for example in a VAE (Kingma & Welling, 2014; Rezende et al., 2014), then we use the notation $f _ { \\theta }$ and we can write the gradient (Schulman et al., 2015) as ", + "bbox": [ + 174, + 257, + 825, + 301 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/6d9200624e6d99ee5fa00ffa9450b95f696e999e1febff3fc26aa6f635fccce8.jpg", + "text": "$$\n\\nabla _ { \\pmb { \\theta } } \\mathbb { E } _ { p _ { \\pmb { \\theta } } ( \\pmb { x } ) } [ f _ { \\pmb { \\theta } } ( \\pmb { x } ) ] = \\mathbb { E } _ { p _ { \\pmb { \\theta } } ( \\pmb { x } ) } [ \\nabla _ { \\pmb { \\theta } } \\log p _ { \\pmb { \\theta } } ( \\pmb { x } ) f _ { \\pmb { \\theta } } ( \\pmb { x } ) + \\nabla _ { \\pmb { \\theta } } f _ { \\pmb { \\theta } } ( \\pmb { x } ) ] .\n$$", + "text_format": "latex", + "bbox": [ + 299, + 309, + 699, + 328 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "The additional second (‘pathwise’) term can be estimated (using the same samples) with the standard unordered set estimator. This results in the full unordered set policy gradient estimator: ", + "bbox": [ + 171, + 337, + 830, + 364 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/4cab27528948a20ca5fd07651bbd08bcb77a11aa80de85ca79d21a7721f0cde6.jpg", + "text": "$$\n\\begin{array} { l } { { \\displaystyle e ^ { \\mathrm { F U S P G } } ( S ^ { k } ) = \\sum _ { s \\in S ^ { k } } \\nabla _ { \\theta } p _ { \\theta } ( s ) R ( S ^ { k } , s ) f _ { \\theta } ( s ) + \\sum _ { s \\in S ^ { k } } p _ { \\theta } ( s ) R ( S ^ { k } , s ) \\nabla _ { \\theta } f _ { \\theta } ( s ) } } \\\\ { { \\displaystyle \\quad = \\sum _ { s \\in S ^ { k } } R ( S ^ { k } , s ) \\nabla _ { \\theta } \\left( p _ { \\theta } ( s ) f _ { \\theta } ( s ) \\right) } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 250, + 372, + 746, + 445 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Equation 20 is straightforward to implement using an automatic differentiation library. We can also include the baseline (as in equation 17) but we must make sure to call STOP GRADIENT (DETACH in PyTorch) on the baseline (but not on $f _ { \\pmb \\theta } ( s ) ! )$ . Importantly, we should never track gradients through the leave-one-out ratio $R ( S ^ { k } , s )$ which means it can be efficiently computed in pure inference mode. ", + "bbox": [ + 174, + 453, + 821, + 511 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Scope & limitations. We can use the unordered set estimator for any discrete distribution from which we can sample without replacement, by treating it as a univariate categorical distribution over its domain. This includes sequence models, from which we can sample using Stochastic Beam Search (Kool et al., 2019c), as well as multivariate categorical distributions which can also be treated as sequence models (see Section 4.2). In the presence of continuous variables or a stochastic function $f$ , we may separate this stochasticity from the stochasticity over the discrete distribution, as in Lorberbom et al. (2019). The computation of the leave-one-out ratios adds some overhead, although they can be computed efficiently, even for large $k$ (see Appendix B). For a moderately sized model, the costs of model evaluation and backpropagation dominate the cost of computing the estimator. ", + "bbox": [ + 173, + 527, + 825, + 654 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "3.4 RELATION TO OTHER MULTI-SAMPLE ESTIMATORS ", + "text_level": 1, + "bbox": [ + 174, + 674, + 563, + 688 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Relation to Murthy’s estimator. We found out that the ‘vanilla’ unordered set estimator (equation 11) is actually a special case of the estimator by Murthy (1957), known in statistics literature for estimation of a population total $\\begin{array} { r } { \\Theta = \\sum _ { i \\in D } y _ { i } } \\end{array}$ . Using $y _ { i } = p ( i ) f ( i )$ , we have $\\Theta = \\mathbb { E } [ f ( i ) ]$ , so Murthy’s estimator can be used to estimate expectations (see equation 11). Murthy derives the estimator by ‘unordering’ a convex combination of Raj (1956) estimators, which, using $y _ { i } = p ( i ) f ( i )$ , are stochastic sum-and-sample estimators in our analogy. ", + "bbox": [ + 173, + 700, + 825, + 785 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Murthy (1957) also provides an unbiased estimator of the variance, which may be interesting for future applications. Since Murthy’s estimator can be used with arbitrary sampling distribution, it is straightforward to derive importance-sampling versions of our estimators. In particular, we can sample $S$ without replacement using $q ( x ) > 0 , x \\in D$ , and use equations 11, 16, 17 and 20, as long as we compute the leave-one-out ratio $R ( S ^ { k } , s )$ using $q$ . ", + "bbox": [ + 174, + 790, + 825, + 862 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "While part of our derivation coincides with Murthy (1957), we are not aware of previous work using this estimator to estimate expectations. Additionally, we discuss practical computation of $p ( S )$ (Appendix B), we show the relation to the importance-weighted estimator, and we provide the extension to estimating policy gradients, especially including a built-in baseline without adding bias. ", + "bbox": [ + 174, + 867, + 825, + 924 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Relation to the empirical risk estimator. The empirical risk loss (Edunov et al., 2018) estimates the expectation in equation 1 by summing only a subset $S$ of the domain, using normalized probabilities $\\begin{array} { r } { \\hat { p } _ { \\pmb { \\theta } } ( s ) = \\frac { \\bar { p } _ { \\pmb { \\theta } } ( s ) } { \\sum _ { s ^ { \\prime } \\in S } p _ { \\pmb { \\theta } } ( s ) } } \\end{array}$ . Using this loss, the (biased) estimate of the gradient is given by ", + "bbox": [ + 173, + 103, + 823, + 155 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/16c4a246849e072f4944d39d2f161557419ea23787c012dd3296694e026e574b.jpg", + "text": "$$\ne ^ { \\mathrm { R I S K } } ( S ^ { k } ) = \\sum _ { s \\in S ^ { k } } \\nabla _ { \\pmb { \\theta } } \\left( \\frac { p _ { \\pmb { \\theta } } ( s ) } { \\sum _ { s ^ { \\prime } \\in S ^ { k } } p _ { \\pmb { \\theta } } ( s ^ { \\prime } ) } \\right) f ( s ) .\n$$", + "text_format": "latex", + "bbox": [ + 343, + 155, + 655, + 196 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "The risk estimator is similar to the unordered set policy gradient estimator, with two important differences: 1) the individual terms are normalized by the total probability mass rather than the leave-one-out ratio and 2) the gradient w.r.t. the normalization factor is taken into account. As a result, samples ‘compete’ for probability mass and only the best can be reinforced. This has the same effect as using a built-in baseline, which we prove in the following theorem. ", + "bbox": [ + 174, + 198, + 825, + 268 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Theorem 3. By taking the gradient w.r.t. the normalization factor into account, the risk estimator has a built-in baseline, which means it can be written as ", + "bbox": [ + 173, + 271, + 823, + 299 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/904b5d4d9996c49ac35bd50c3cc3eaa34cee54f06b1fb5ec574ba84ccd5a5819.jpg", + "text": "$$\ne ^ { R I S K } ( S ^ { k } ) = \\sum _ { s \\in S ^ { k } } \\nabla _ { \\theta } p _ { \\theta } ( s ) \\frac { 1 } { \\sum _ { s ^ { \\prime \\prime } \\in S ^ { k } } p _ { \\theta } ( s ^ { \\prime \\prime } ) } \\left( f ( s ) - \\sum _ { s ^ { \\prime } \\in S ^ { k } } p _ { \\theta } ( s ^ { \\prime } ) \\frac { 1 } { \\sum _ { s ^ { \\prime \\prime } \\in S ^ { k } } p _ { \\theta } ( s ^ { \\prime \\prime } ) } f ( s ^ { \\prime } ) \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 184, + 300, + 787, + 351 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Proof. See Appendix F.1 ", + "bbox": [ + 174, + 363, + 339, + 377 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "This theorem highlights the similarity between the biased risk estimator and our unbiased estimator (equation 17), and suggests that their only difference is the weighting of terms. Unfortunately, the implementation by Edunov et al. (2018) has more sources of bias (e.g. length normalization), which are not compatible with our estimator. However, we believe that our analysis helps analyze the bias of the risk estimator and is a step towards developing unbiased estimators for structured prediction. ", + "bbox": [ + 173, + 392, + 825, + 463 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Relation to VIMCO. VIMCO (Mnih & Rezende, 2016) is an estimator that uses $k$ samples (with replacement) to optimize an objective of the form log $\\textstyle { \\frac { 1 } { k } } \\sum _ { i } f ( x _ { i } )$ , which is a multi-sample stochastic lower bound in the context of variational inference. VIMCO reduces the variance by using a local baseline for each of the $k$ samples, based on the other $k - 1$ samples. While we do not have a log term, as our goal is to optimize general $\\mathbb { E } [ f ( x ) ]$ , we adopt the idea of forming a baseline based on the other samples, and we define REINFORCE with replacement (with built-in baseline) as the estimator that computes the gradient estimate using samples with replacement $X ^ { k } = ( x _ { 1 } , . . . , x _ { k } )$ as ", + "bbox": [ + 173, + 476, + 825, + 575 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/351a340e6952afd897fb774a727f1e14b17f5a4500b3ff32102096cd6837dcf3.jpg", + "text": "$$\ne ^ { \\mathrm { R F W R } } ( X ^ { k } ) = \\frac { 1 } { k } \\sum _ { i = 1 } ^ { k } \\nabla _ { \\theta } \\log p _ { \\theta } ( x _ { i } ) \\left( f ( x _ { i } ) - \\frac { 1 } { k - 1 } \\sum _ { j \\ne i } f ( x _ { j } ) \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 279, + 577, + 720, + 627 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "This estimator is unbiased, as $\\mathbb { E } _ { x _ { i } , x _ { j } } [ \\nabla _ { \\pmb { \\theta } } \\log p _ { \\pmb { \\theta } } ( x _ { i } ) f ( x _ { j } ) ] = 0$ for $i \\neq j$ (see also Kool et al. (2019b)). We think of the unordered set estimator as the without-replacement version of this estimator, which weights terms by $p _ { \\pmb { \\theta } } ( s ) R ( S ^ { k } , s )$ instead of $\\frac { 1 } { k }$ . This puts more weight on higher probability elements to compensate for sampling without replacement. If probabilities are small and (close to) uniform, there are (almost) no duplicate samples and the weights will be close to $\\frac { 1 } { k }$ , so the gradient estimate of the with- and without-replacement versions are similar. ", + "bbox": [ + 173, + 628, + 825, + 713 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Relation to ARSM. ARSM (Yin et al., 2019) also uses multiple evaluations (‘pseudo-samples’) of $p _ { \\theta }$ and $f$ . This can be seen as similar to sampling without replacement, and the estimator also has a built-in control variate. Compared to ARSM, our estimator allows direct control over the computational cost (through the sample size $k$ ) and has wider applicability, for example it also applies to multivariate categorical variables with different numbers of categories per dimension. ", + "bbox": [ + 173, + 727, + 825, + 797 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Relation to stratified/systematic sampling. Our estimator aims to reduce variance by changing the sampling distribution for multiple samples by sampling without replacement. There are alternatives, such as using stratified or systematic sampling (see, e.g. Douc & Cappe (2005)). Both partition ´ the domain $D$ into $k$ strata and take a single sample from each stratum, where systematic sampling uses common random numbers for each stratum. In applications involving high-dimensional or structured domains, it is unclear how to partition the domain and how to sample from each partition. Additionally, as samples are not independent, it is non-trivial to include a built-in baseline, which we find is a key component that makes our estimator perform well. ", + "bbox": [ + 174, + 811, + 825, + 924 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/1827e94fdb564b2088e10a208547d35fffe208d74d3041a8d194d3868ada9f35.jpg", + "image_caption": [ + "Figure 1: Bernoulli gradient variance (on log scale) as a function of the number of model evaluations (including baseline evaluations, so the sum-and-sample estimators with sampled baselines use twice as many evaluations). Note that for some estimators, the variance is 0 (log variance $- \\infty )$ for $k = 8$ . " + ], + "image_footnote": [], + "bbox": [ + 187, + 89, + 807, + 219 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "4 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 174, + 285, + 326, + 301 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "4.1 BERNOULLI TOY EXPERIMENT", + "text_level": 1, + "bbox": [ + 176, + 316, + 424, + 332 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We use the code by Liu et al. (2019) to reproduce their Bernoulli toy experiment. Given a vector $\\mathbf { p } =$ (0.6, 0.51, 0.48) the goal is to minimize the loss $\\begin{array} { r } { \\mathcal { L } ( \\eta ) \\ : = \\ : \\mathbb { E } _ { x _ { 1 } , x _ { 2 } , x _ { 3 } \\sim \\mathrm { B e r n } ( \\sigma ( \\eta ) ) } \\left[ \\sum _ { i = 1 } ^ { 3 } ( x _ { i } - p _ { i } ) ^ { 2 } \\right] } \\end{array}$ . Here $x _ { 1 } , x _ { 2 } , x _ { 3 }$ are i.i.d. from the Bernoulli $( \\sigma ( \\eta ) )$ distribution, parameterized by a scalar $\\eta \\in \\mathbb { R }$ , where $\\sigma ( \\eta ) = ( 1 + \\exp ( - \\eta ) ) ^ { - 1 }$ is the sigmoid function. We compare different estimators, with and without baseline (either ‘built-in’ or using additional samples, referred to as REINFORCE+ in Liu et al. (2019)). We report the (log-)variance of the scalar gradient $\\frac { \\partial \\mathcal { L } } { \\partial \\eta }$ as a function of the number of model evaluations, which is twice as high when using a sampled baseline (for each term). ", + "bbox": [ + 173, + 342, + 825, + 453 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "As can be seen in Figure 1, the unordered set estimator is the only estimator that has consistently the lowest (or comparable) variance in both the high $\\langle \\eta = 0 \\rangle$ ) and low entropy $\\hphantom { - } \\eta = - 4 )$ regimes and for different number of samples/model evaluations. This suggests that it combines the advantages of the other estimators. We also ran the actual optimization experiment, where with as few as $k = 3$ samples the trajectory was indistinguishable from using the exact gradient (see Liu et al. (2019)). ", + "bbox": [ + 174, + 459, + 825, + 529 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "4.2 CATEGORICAL VARIATIONAL AUTO-ENCODER ", + "text_level": 1, + "bbox": [ + 174, + 545, + 537, + 560 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We use the code from Yin et al. (2019) to train a categorical Variational Auto-Encoder (VAE) with 20 dimensional latent space, with 10 categories per dimension (details in Appendix G.1). To use our estimator, we treat this as a single factorized distribution with $1 0 ^ { 2 0 }$ categories from which we can sample without replacement using Stochastic Beam Search (Kool et al., 2019c), sequentially sampling each dimension as if it were a sequence model. We also perform experiments with $1 0 ^ { \\dot { 2 } }$ latent space, which provides a lower entropy setting, to highlight the advantage of our estimator. ", + "bbox": [ + 174, + 571, + 825, + 656 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Measuring the variance. In Table 1, we report the variance of different gradient estimators with $k = 4$ samples, evaluated on a trained model. The unordered set estimator has the lowest variance in both the small and large domain (low and high entropy) setting, being on-par with the best of the (stochastic3) sum-and-sample estimator and REINFORCE with replacement4. This confirms the toy experiment, suggesting that the unordered set estimator provides the best of both estimators. In Appendix G.2 we repeat the same experiment at different stages of training, with similar results. ", + "bbox": [ + 173, + 670, + 825, + 755 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/38fff474333f745080d8627c5fb4566e88f353059b7a66955110f7f26afb9b13.jpg", + "image_caption": [ + "Figure 2: VAE smoothed training curves (-ELBO) of two independent runs when training with different estimators with $k = 1$ , 4 or 8 (thicker lines) samples (ARSM has a variable number). Some lines coincide, so we sort the legend by the lowest -ELBO achieved and report this value. " + ], + "image_footnote": [], + "bbox": [ + 191, + 104, + 808, + 272 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "ELBO optimization. We use different estimators to optimize the ELBO (details in Appendix G.1). Additionally to the baselines by Yin et al. (2019) we compare against REINFORCE with replacement and the stochastic sum-and-sample estimator. In Figure 2 we observe that our estimator performs on par with REINFORCE with replacement (and built-in baseline, equation 23) and outperforms other estimators in at least one of the settings. There are a lot of other factors, e.g. exploration that may explain why we do not get a strictly better result despite the lower variance. We note some overfitting (see validation curves in Appendix G.2), but since our goal is to show improved optimization, and to keep results directly comparable to Yin et al. (2019), we consider regularization a separate issue outside the scope of this paper. These results are using MNIST binarized by a threshold of 0.5. In Appendix G.2 we report results using the standard binarized MNIST dataset from Salakhutdinov & Murray (2008). ", + "bbox": [ + 173, + 354, + 825, + 506 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "4.3 STRUCTURED PREDICTION FOR THE TRAVELLING SALESMAN PROBLEM ", + "text_level": 1, + "bbox": [ + 176, + 523, + 714, + 537 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "To show the wide applicability of our estimator, we consider the structured prediction task of predicting routes (sequences) for the Travelling Salesman Problem (TSP) (Vinyals et al., 2015; Bello et al., 2016; Kool et al., 2019a). We use the code by Kool et al. (2019a)5 to reproduce their TSP experiment with 20 nodes. For details, see Appendix H. ", + "bbox": [ + 174, + 549, + 823, + 606 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We implement REINFORCE with replacement (and built-in baseline) as well as the stochastic sumand-sample estimator and our estimator, using Stochastic Beam Search (Kool et al., 2019c) for sampling. Also, we include results using the biased normalized importance-weighted policy gradient estimator with built-in baseline (derived in Kool et al. (2019b), see Appendix D.2). Additionally, we compare against REINFORCE with greedy rollout baseline (Rennie et al., 2017) used by Kool et al. (2019c) and a batch-average baseline. For reference, we also include the biased risk estimator, either ‘sampling’ using stochastic or deterministic beam search (as in Edunov et al. (2018)). ", + "bbox": [ + 174, + 613, + 823, + 709 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "In Figure 3a, we compare training progress (measured on the validation set) as a function of the number of training steps, where we divide the batch size by $k$ to keep the total number of samples equal. Our estimator outperforms REINFORCE with replacement, the stochastic sum-and-sample estimator and the strong greedy rollout baseline (which uses additional baseline model evaluations) and performs on-par with the biased risk estimator. In Figure 3b, we plot the same results against the number of instances, which shows that, compared to the single sample estimators, we can train with less data and less computational cost (as we only need to run the encoder once for each instance). ", + "bbox": [ + 174, + 718, + 825, + 814 + ], + "page_idx": 8 + }, + { + "type": "image", + "img_path": "images/3cf7aa8c67e64f59fc3b77ff931ff72bff898a29559db5fa6f7eddaa573687f1.jpg", + "image_caption": [ + "Figure 3: TSP validation set optimality gap measured during training. Raw results are light, smoothed results are darker (2 random seeds). We compare our estimator against different unbiased and biased (dotted) multi-sample estimators and against single-sample REINFORCE, with batch-average or greedy rollout baseline. " + ], + "image_footnote": [], + "bbox": [ + 205, + 97, + 794, + 247 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "5 DISCUSSION ", + "text_level": 1, + "bbox": [ + 176, + 327, + 310, + 343 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "We introduced the unordered set estimator, a low-variance, unbiased gradient estimator based on sampling without replacement, which can be used as an alternative to the popular biased GumbelSoftmax estimator (Jang et al., 2016; Maddison et al., 2016). Our estimator is the result of RaoBlackwellizing three existing estimators, which guarantees equal or lower variance, and is closely related to a number of other estimators. It has wide applicability, is parameter free (except for the sample size $k$ ) and has competitive performance to the best of alternatives in both high and low entropy regimes. ", + "bbox": [ + 174, + 359, + 825, + 457 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "In our experiments, we found that REINFORCE with replacement, with multiple samples and a built-in baseline as inspired by VIMCO (Mnih & Rezende, 2016), is a simple yet strong estimator which has performance similar to our estimator in the high entropy setting. We are not aware of any recent work on gradient estimators for discrete distributions that has considered this estimator as baseline, while it may be often preferred given its simplicity. In future work, we want to investigate if we can apply our estimator to estimate gradients ‘locally’ (Titsias & Lazaro-Gredilla, 2015), as ´ locally we have a smaller domain and expect more duplicate samples. ", + "bbox": [ + 174, + 463, + 825, + 561 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "ACKNOWLEDGMENTS ", + "text_level": 1, + "bbox": [ + 176, + 578, + 326, + 592 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "This research was funded by ORTEC. We would like to thank anonymous reviewers for their feedback that helped improve the paper. ", + "bbox": [ + 174, + 602, + 821, + 630 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 174, + 651, + 285, + 666 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Dzmitry Bahdanau, Philemon Brakel, Kelvin Xu, Anirudh Goyal, Ryan Lowe, Joelle Pineau, Aaron Courville, and Yoshua Bengio. An actor-critic algorithm for sequence prediction. In International Conference on Learning Representations, 2017. ", + "bbox": [ + 174, + 674, + 826, + 717 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Irwan Bello, Hieu Pham, Quoc V Le, Mohammad Norouzi, and Samy Bengio. Neural combinatorial optimization with reinforcement learning. arXiv preprint arXiv:1611.09940, 2016. ", + "bbox": [ + 171, + 727, + 823, + 756 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Yoshua Bengio, Nicholas Leonard, and Aaron Courville. Estimating or propagating gradients ´ through stochastic neurons for conditional computation. arXiv preprint arXiv:1308.3432, 2013. ", + "bbox": [ + 173, + 765, + 823, + 795 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "George Casella and Christian P Robert. Rao-Blackwellisation of sampling schemes. Biometrika, 83 (1):81–94, 1996. ", + "bbox": [ + 169, + 804, + 823, + 833 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Randal Douc and Olivier Cappe. Comparison of resampling schemes for particle filtering. In ´ ISPA 2005. Proceedings of the 4th International Symposium on Image and Signal Processing and Analysis, 2005., pp. 64–69. IEEE, 2005. ", + "bbox": [ + 174, + 843, + 823, + 886 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Nick Duffield, Carsten Lund, and Mikkel Thorup. Priority sampling for estimation of arbitrary subset sums. Journal of the ACM (JACM), 54(6):32, 2007. ", + "bbox": [ + 173, + 895, + 820, + 924 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Sergey Edunov, Myle Ott, Michael Auli, David Grangier, et al. Classical structured prediction losses for sequence to sequence learning. In Proceedings of the 2018 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 1 (Long Papers), volume 1, pp. 355–364, 2018. ", + "bbox": [ + 174, + 103, + 825, + 160 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Paul Fearnhead and Peter Clifford. On-line inference for hidden markov models via particle filters. Journal of the Royal Statistical Society: Series B (Statistical Methodology), 65(4):887–899, 2003. ", + "bbox": [ + 173, + 170, + 821, + 199 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Will Grathwohl, Dami Choi, Yuhuai Wu, Geoffrey Roeder, and David Duvenaud. Backpropagation through the void: Optimizing control variates for black-box gradient estimation. In International Conference on Learning Representations, 2018. ", + "bbox": [ + 174, + 208, + 825, + 252 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Karol Gregor, Ivo Danihelka, Andriy Mnih, Charles Blundell, and Daan Wierstra. Deep autoregressive networks. In International Conference on Machine Learning, pp. 1242–1250, 2014. ", + "bbox": [ + 173, + 262, + 823, + 291 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Aditya Grover, Eric Wang, Aaron Zweig, and Stefano Ermon. Stochastic optimization of sorting networks via continuous relaxations. In International Conference on Learning Representations, 2019. ", + "bbox": [ + 174, + 301, + 823, + 344 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jiatao Gu, Daniel Jiwoong Im, and Victor OK Li. Neural machine translation with Gumbel-greedy decoding. In Thirty-Second AAAI Conference on Artificial Intelligence (AAAI), 2018. ", + "bbox": [ + 171, + 354, + 823, + 383 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Shixiang Gu, Sergey Levine, Ilya Sutskever, and Andriy Mnih. Muprop: Unbiased backpropagation for stochastic neural networks. In International Conference on Learning Representations, 2016. ", + "bbox": [ + 174, + 393, + 823, + 422 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Di He, Yingce Xia, Tao Qin, Liwei Wang, Nenghai Yu, Tie-Yan Liu, and Wei-Ying Ma. Dual learning for machine translation. In Advances in Neural Information Processing Systems, pp. 820–828, 2016. ", + "bbox": [ + 173, + 433, + 825, + 476 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Eric Jang, Shixiang Gu, and Ben Poole. Categorical reparameterization with gumbel-softmax. In International Conference on Learning Representations, 2016. ", + "bbox": [ + 176, + 486, + 823, + 515 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Carolyn Kim, Ashish Sabharwal, and Stefano Ermon. Exact sampling with integer linear programs and random perturbations. In Thirtieth AAAI Conference on Artificial Intelligence, 2016. ", + "bbox": [ + 173, + 525, + 823, + 555 + ], + "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": [ + 173, + 565, + 823, + 594 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Diederik P Kingma and Max Welling. Auto-encoding variational Bayes. In International Conference on Learning Representations, 2014. ", + "bbox": [ + 173, + 603, + 823, + 633 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Wouter Kool, Herke van Hoof, and Max Welling. Attention, learn to solve routing problems! In International Conference on Learning Representations, 2019a. ", + "bbox": [ + 171, + 642, + 823, + 672 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Wouter Kool, Herke van Hoof, and Max Welling. Buy 4 reinforce samples, get a baseline for free! In Deep Reinforcement Learning Meets Structured Prediction Workshop at the International Conference on Learning Representations, 2019b. ", + "bbox": [ + 174, + 683, + 825, + 726 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Wouter Kool, Herke Van Hoof, and Max Welling. Stochastic beams and where to find them: The gumbel-top-k trick for sampling sequences without replacement. In International Conference on Machine Learning, pp. 3499–3508, 2019c. ", + "bbox": [ + 174, + 736, + 825, + 779 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Hugo Larochelle and Iain Murray. The neural autoregressive distribution estimator. In Proceedings of the Fourteenth International Conference on Artificial Intelligence and Statistics, pp. 29–37, 2011. ", + "bbox": [ + 173, + 789, + 825, + 832 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Remi Leblond, Jean-Baptiste Alayrac, Anton Osokin, and Simon Lacoste-Julien. Searnn: Training ´ RNNs with global-local losses. In 6th International Conference on Learning Representations, 2018. ", + "bbox": [ + 174, + 842, + 823, + 885 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "EL Lehmann and Henry Scheffe. Completeness, similar regions, and unbiased estimation: Part i. ´ Sankhya: The Indian Journal of Statistics ¯ , pp. 305–340, 1950. ", + "bbox": [ + 176, + 895, + 821, + 924 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Chen Liang, Mohammad Norouzi, Jonathan Berant, Quoc V Le, and Ni Lao. Memory augmented policy optimization for program synthesis and semantic parsing. In Advances in Neural Information Processing Systems, pp. 9994–10006, 2018. ", + "bbox": [ + 176, + 103, + 823, + 146 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Runjing Liu, Jeffrey Regier, Nilesh Tripuraneni, Michael Jordan, and Jon Mcauliffe. RaoBlackwellized stochastic gradients for discrete distributions. In International Conference on Machine Learning, pp. 4023–4031, 2019. ", + "bbox": [ + 174, + 155, + 821, + 198 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Guy Lorberbom, Andreea Gane, Tommi Jaakkola, and Tamir Hazan. Direct optimization through argmax for discrete variational auto-encoder. arXiv preprint arXiv:1806.02867, 2018. ", + "bbox": [ + 173, + 205, + 821, + 236 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Guy Lorberbom, Chris J Maddison, Nicolas Heess, Tamir Hazan, and Daniel Tarlow. Direct policy gradients: Direct optimization of policies in discrete action spaces. arXiv preprint arXiv:1906.06062, 2019. ", + "bbox": [ + 173, + 244, + 825, + 287 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "R Duncan Luce. Individual choice behavior: A theoretical analysis. John Wiley, 1959. ", + "bbox": [ + 174, + 296, + 743, + 311 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Chris J Maddison, Daniel Tarlow, and Tom Minka. A\\* sampling. In Advances in Neural Information Processing Systems, pp. 3086–3094, 2014. ", + "bbox": [ + 176, + 319, + 820, + 349 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Chris J Maddison, Andriy Mnih, and Yee Whye Teh. The concrete distribution: A continuous relaxation of discrete random variables. In International Conference on Learning Representations, 2016. ", + "bbox": [ + 173, + 357, + 825, + 400 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Andriy Mnih and Karol Gregor. Neural variational inference and learning in belief networks. In International Conference on Machine Learning, pp. 1791–1799, 2014. ", + "bbox": [ + 173, + 409, + 823, + 439 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Andriy Mnih and Danilo Rezende. Variational inference for Monte Carlo objectives. In International Conference on Machine Learning, pp. 2188–2196, 2016. ", + "bbox": [ + 173, + 446, + 823, + 477 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "MN Murthy. Ordered and unordered estimators in sampling without replacement. Sankhya: The ¯ Indian Journal of Statistics (1933-1960), 18(3/4):379–390, 1957. ", + "bbox": [ + 173, + 486, + 825, + 515 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Renato Negrinho, Matthew Gormley, and Geoffrey J Gordon. Learning beam search policies via imitation learning. In Advances in Neural Information Processing Systems, pp. 10673–10682, 2018. ", + "bbox": [ + 173, + 522, + 823, + 565 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Mohammad Norouzi, Samy Bengio, Navdeep Jaitly, Mike Schuster, Yonghui Wu, Dale Schuurmans, et al. Reward augmented maximum likelihood for neural structured prediction. In Advances In Neural Information Processing Systems, pp. 1723–1731, 2016. ", + "bbox": [ + 174, + 574, + 823, + 618 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "John Paisley, David M Blei, and Michael I Jordan. Variational Bayesian inference with stochastic search. In International Conference on Machine Learning, pp. 1363–1370, 2012. ", + "bbox": [ + 169, + 626, + 823, + 656 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Robin L Plackett. The analysis of permutations. Journal of the Royal Statistical Society: Series C (Applied Statistics), 24(2):193–202, 1975. ", + "bbox": [ + 171, + 664, + 825, + 694 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Des Raj. Some estimators in sampling with varying probabilities without replacement. Journal of the American Statistical Association, 51(274):269–284, 1956. ", + "bbox": [ + 169, + 702, + 825, + 731 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Rajesh Ranganath, Sean Gerrish, and David Blei. Black box variational inference. In Artificial Intelligence and Statistics, pp. 814–822, 2014. ", + "bbox": [ + 169, + 739, + 825, + 768 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Marc’Aurelio Ranzato, Sumit Chopra, Michael Auli, and Wojciech Zaremba. Sequence level training with recurrent neural networks. In International Conference on Learning Representations, 2016. ", + "bbox": [ + 174, + 777, + 823, + 820 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Steven J Rennie, Etienne Marcheret, Youssef Mroueh, Jerret Ross, and Vaibhava Goel. Self-critical sequence training for image captioning. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 7008–7024, 2017. ", + "bbox": [ + 176, + 829, + 821, + 873 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Danilo Jimenez Rezende, Shakir Mohamed, and Daan Wierstra. Stochastic backpropagation and approximate inference in deep generative models. In International Conference on Machine Learning, pp. 1278–1286, 2014. ", + "bbox": [ + 174, + 881, + 823, + 924 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Geoffrey Roeder, Yuhuai Wu, and David K Duvenaud. Sticking the landing: Simple, lower-variance gradient estimators for variational inference. In Advances in Neural Information Processing Systems, pp. 6925–6934, 2017. ", + "bbox": [ + 173, + 103, + 823, + 146 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Ruslan Salakhutdinov and Iain Murray. On the quantitative analysis of deep belief networks. In International Conference on Machine Learning, pp. 872–879, 2008. ", + "bbox": [ + 171, + 155, + 823, + 184 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "John Schulman, Nicolas Heess, Theophane Weber, and Pieter Abbeel. Gradient estimation using stochastic computation graphs. In Advances in Neural Information Processing Systems, pp. 3528– 3536, 2015. ", + "bbox": [ + 173, + 193, + 825, + 234 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Shiqi Shen, Yong Cheng, Zhongjun He, Wei He, Hua Wu, Maosong Sun, and Yang Liu. Minimum risk training for neural machine translation. In Proceedings of the 54th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), volume 1, pp. 1683–1692, 2016. ", + "bbox": [ + 173, + 243, + 825, + 301 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Richard S Sutton and Andrew G Barto. Reinforcement learning: An introduction. MIT press, 2018. ", + "bbox": [ + 171, + 309, + 823, + 325 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Michalis K Titsias and Miguel Lazaro-Gredilla. Local expectation gradients for black box varia- ´ tional inference. In Advances in Neural Information Processing Systems-Volume 2, pp. 2638– 2646, 2015. ", + "bbox": [ + 174, + 333, + 825, + 376 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "George Tucker, Andriy Mnih, Chris J Maddison, John Lawson, and Jascha Sohl-Dickstein. Rebar: Low-variance, unbiased gradient estimates for discrete latent variable models. In Advances in Neural Information Processing Systems, pp. 2627–2636, 2017. ", + "bbox": [ + 174, + 385, + 825, + 428 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Tim Vieira. Gumbel-max trick and weighted reservoir sampling, 2014. URL https://timvieira.github.io/blog/post/2014/08/01/ gumbel-max-trick-and-weighted-reservoir-sampling/. ", + "bbox": [ + 174, + 436, + 825, + 479 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Tim Vieira. Estimating means in a finite universe, 2017. URL https://timvieira.github. io/blog/post/2017/07/03/estimating-means-in-a-finite-universe/. ", + "bbox": [ + 176, + 488, + 820, + 517 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Oriol Vinyals, Meire Fortunato, and Navdeep Jaitly. Pointer networks. In Advances in Neural Information Processing Systems, pp. 2692–2700, 2015. ", + "bbox": [ + 173, + 526, + 823, + 555 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Ronald J Williams. Simple statistical gradient-following algorithms for connectionist reinforcement learning. Machine learning, 8(3-4):229–256, 1992. ", + "bbox": [ + 171, + 564, + 823, + 593 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "John I Yellott. The relationship between Luce’s choice axiom, Thurstone’s theory of comparative judgment, and the double exponential distribution. Journal of Mathematical Psychology, 15(2): 109–144, 1977. ", + "bbox": [ + 171, + 602, + 823, + 643 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Mingzhang Yin, Yuguang Yue, and Mingyuan Zhou. Arsm: Augment-reinforce-swap-merge estimator for gradient backpropagation through categorical variables. In International Conference on Machine Learning, pp. 7095–7104, 2019. ", + "bbox": [ + 174, + 652, + 823, + 695 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "A NOTATION ", + "text_level": 1, + "bbox": [ + 176, + 102, + 299, + 118 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Throughout this appendix we will use the following notation from Maddison et al. (2014): ", + "bbox": [ + 173, + 132, + 764, + 148 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/821cbe0666f811f0f17fdbd24322d0cfd6934666b30ce92d9f2fdccfc37edb08.jpg", + "text": "$$\n\\begin{array} { l } { { e _ { \\phi } ( g ) = \\exp ( - g + \\phi ) } } \\\\ { { F _ { \\phi } ( g ) = \\exp ( - \\exp ( - g + \\phi ) ) } } \\\\ { { f _ { \\phi } ( g ) = e _ { \\phi } ( g ) F _ { \\phi } ( g ) . } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 395, + 154, + 602, + 209 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "This means that $F _ { \\phi } ( g )$ is the CDF and $f _ { \\phi } ( g )$ the PDF of the Gumbel $\\left( \\phi \\right)$ distribution. Additionally we will use the identities by Maddison et al. (2014): ", + "bbox": [ + 173, + 212, + 823, + 242 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/e3101e89cd302781233ce9a26c02ed7b482a567d9cb9a5e50a37ae7ff37a8a08.jpg", + "text": "$$\n\\begin{array} { c } { { F _ { \\phi } ( g ) F _ { \\gamma } ( g ) = F _ { \\log ( \\exp ( \\phi ) + \\exp ( \\gamma ) ) } ( g ) } } \\\\ { { \\displaystyle \\int _ { g = a } ^ { b } e _ { \\gamma } ( g ) F _ { \\phi } ( g ) \\partial g = ( F _ { \\phi } ( b ) - F _ { \\phi } ( a ) ) \\frac { \\exp ( \\gamma ) } { \\exp ( \\phi ) } . } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 334, + 246, + 661, + 306 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Also, we will use the following notation, definitions and identities (see Kool et al. (2019c)): ", + "bbox": [ + 169, + 318, + 772, + 333 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/74b04d313c6fa9193ba14f401130ebf9ca9cdbf24b7db98e9027266e865313ae.jpg", + "text": "$$\n\\begin{array} { r l } & { \\displaystyle \\phi _ { i } = \\log p ( i ) } \\\\ & { \\displaystyle \\phi _ { S } = \\log \\displaystyle \\sum _ { i \\in S } p ( i ) = \\log \\sum _ { i \\in S } \\exp \\phi _ { i } } \\\\ & { \\displaystyle \\phi _ { D \\setminus S } = \\log \\sum _ { i \\in D \\setminus S } p ( i ) = \\log \\left( 1 - \\sum _ { i \\in S } p ( i ) \\right) = \\log ( 1 - \\exp ( \\phi _ { S } ) ) } \\\\ & { \\displaystyle { G _ { \\phi _ { i } } \\sim \\mathrm { G u m b e l } ( \\phi _ { i } ) } } \\\\ & { \\displaystyle { G _ { \\phi _ { S } } = \\sum _ { i \\in S } G _ { \\phi _ { i } } \\sim \\mathrm { G u m b e l } ( \\phi _ { S } ) } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 274, + 338, + 722, + 481 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "For a proof of equation 30, see Maddison et al. (2014). ", + "bbox": [ + 174, + 486, + 532, + 501 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/ebdb2bbb39718391052a7e6fd23cc99c971cdbc1773a9535484decfa338d1f69.jpg", + "text": "$$\np ( S ^ { k } ) , p ^ { D \\setminus C } ( S \\setminus C ) \\ \\mathrm { A N D } \\ R ( S ^ { k } , s )\n$$", + "text_format": "latex", + "bbox": [ + 364, + 518, + 640, + 540 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We can sample the set $S ^ { k }$ from the Plackett-Luce distribution using the Gumbel-Top- $k$ trick by drawing Gumbel variables $G _ { \\phi _ { i } } \\sim \\mathrm { G u m b e l } ( \\phi _ { i } )$ for each element and returning the indices of the $k$ largest Gumbels. If we ignore the ordering, this means we will obtain the set $S ^ { k }$ if $\\mathrm { m i n } _ { i \\in S ^ { k } } G _ { \\phi _ { i } } >$ $\\operatorname* { m a x } _ { i \\in D \\setminus S ^ { k } } G _ { \\phi _ { i } }$ . Omitting the superscript $k$ for clarity, we can use the Gumbel-Max trick, i.e. that $G _ { \\phi _ { D \\setminus S } } = \\operatorname* { m a x } _ { i \\notin S } G _ { \\phi _ { i } } \\sim \\mathrm { G u m b e l } ( \\phi _ { D \\setminus S } )$ (equation 30) and marginalize over $G _ { \\phi _ { D \\setminus S } }$ : ", + "bbox": [ + 173, + 553, + 825, + 630 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/806f97cd9da1c0ad1baa8ecdc50026ff7932d71042f7f521a043bd018768c996.jpg", + "text": "$$\n\\begin{array} { r l } { \\displaystyle p ( S ) = P ( \\underset { i \\in S } { \\operatorname* { m i n } } G _ { \\phi _ { i } \\setminus } \\ G _ { \\phi _ { D \\setminus S } } ) } \\\\ { \\displaystyle } & { = P ( G _ { \\phi _ { i } } > G _ { \\phi _ { D \\setminus S } } , i \\in S ) } \\\\ { \\displaystyle } & { = \\int _ { g _ { \\phi _ { D \\setminus S } } = - \\infty } ^ { \\infty } f _ { \\phi _ { D \\setminus S } } ( g _ { \\phi _ { D \\setminus S } } ) P ( G _ { \\phi _ { i } } > g _ { \\phi _ { D \\setminus S } } , i \\in S ) \\partial g _ { \\phi _ { D \\setminus S } } } \\\\ { \\displaystyle } & { = \\int _ { g _ { \\phi _ { D \\setminus S } } = - \\infty } ^ { \\infty } f _ { \\phi _ { D \\setminus S } } ( g _ { \\phi _ { D \\setminus S } } ) \\prod _ { i \\in S } \\left( 1 - F _ { \\phi _ { \\star } } ( g _ { \\phi _ { D \\setminus S } } ) \\right) \\partial g _ { \\phi _ { D \\setminus S } } } \\\\ { \\displaystyle } & { = \\int _ { u = 0 } ^ { 1 } \\prod _ { i \\in S } \\left( 1 - F _ { \\phi _ { i } } \\left( F _ { \\phi _ { D \\setminus S } } ^ { - 1 } ( u ) \\right) \\right) \\partial u } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 276, + 636, + 717, + 801 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Here we have used a change of variables $u = F _ { \\phi _ { D \\setminus S } } ( g _ { \\phi _ { D \\setminus S } } )$ . This expression can be efficiently numerically integrated (although another change of variables may be required for numerical stability depending on the values of $\\phi$ ). ", + "bbox": [ + 173, + 808, + 823, + 851 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Exact computation in $O ( 2 ^ { k } )$ . The integral in equation 31 can be computed exactly using the identity ", + "bbox": [ + 173, + 864, + 823, + 892 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/dd04b747902262790d7c58d260268b6984c64f5106491fbb6d615230c69419e4.jpg", + "text": "$$\n\\prod _ { i \\in S } ( a _ { i } - b _ { i } ) = \\sum _ { C \\subseteq S } ( - 1 ) ^ { | C | } \\prod _ { i \\in C } b _ { i } \\prod _ { i \\in S \\setminus C } a _ { i }\n$$", + "text_format": "latex", + "bbox": [ + 352, + 891, + 642, + 928 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "which gives ", + "bbox": [ + 173, + 103, + 254, + 118 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/7ba5abea6b75d40021fc45a9d7e85ccd6775706b57325b46c30787c210537343.jpg", + "text": "$$\n\\begin{array} { r l } { { \\mu ( S ) = \\int _ { s _ { \\phi ( S ) - } - \\infty } ^ { \\infty } \\longrightarrow \\int _ { \\partial \\sigma _ { \\phi ( S ) } } \\bigl ( g _ { \\phi ( S ) , s } \\bigr ) \\prod ( 1 - F _ { \\phi _ { \\phi } } ( g _ { \\phi ( S ) , s } ) ) \\partial g _ { \\phi _ { \\phi ( S ) , s } } } } \\\\ & { = \\sum _ { c \\in S } ^ { \\infty } ( - 1 ) ^ { C } \\big | \\int _ { s _ { \\phi ( S ) - } - \\infty } ^ { \\infty } \\int _ { \\Phi _ { \\phi ( S ) - } ( \\partial g _ { \\phi ( S ) - } ) } \\prod \\int _ { s _ { \\phi } } F _ { \\phi _ { \\phi } } ( g _ { \\phi ( S ) - s } ) \\prod \\big | \\partial g _ { \\phi _ { \\phi ( S ) - } s } } \\\\ & { = \\sum _ { c \\in S } ^ { \\infty } ( - 1 ) ^ { C } \\big | \\int _ { s _ { \\phi ( S ) - } - \\infty } ^ { \\infty } e _ { \\phi _ { \\phi ( S ) - } ( \\partial g _ { \\phi ( S ) - } ) } F _ { \\phi _ { \\phi _ { \\phi ( S ) - } s } } ( g _ { \\phi _ { S } , s } ) F _ { \\phi _ { \\phi ( S ) - } } ( g _ { \\phi _ { S } , s } ) \\big | \\mathcal { P } _ { \\phi _ { \\phi ( S ) - } } \\big | \\mathcal { P } _ { \\phi _ { \\phi ( S ) - } } \\big | \\mathcal { P } _ { \\phi _ { \\phi ( S ) - } } } \\\\ & { = \\sum _ { c \\in S } ^ { \\infty } ( - 1 ) ^ { C } \\big | \\int _ { s _ { \\phi ( S ) - } - \\infty } ^ { \\infty } e _ { \\phi _ { \\phi ( S ) - } ( \\partial g _ { \\phi ( S ) - } ) } F _ { \\phi _ { \\phi ( S ) - } , \\phi _ { \\phi ( S ) - } } ( g _ { \\phi _ { S } , s } ) \\big | \\partial g _ { \\phi _ { \\phi ( S ) - } } } \\\\ & { = \\sum _ { c \\in S } ^ { \\infty } ( - 1 ) ^ { C } ( 1 - 0 ) \\frac { \\exp ( \\phi _ { \\phi ( S ) - } ) } { \\exp ( \\phi _ { \\phi ( S ) - } ) } } \\\\ & { = \\sum _ { c \\in S } ^ { \\infty } ( - 1 ) ^ { C } ( 1 - 0 ) \\exp ( \\phi _ { \\phi ( S ) - } ) } \\\\ & = \\sum _ { c \\in S } ^ { \\infty } ( - 1 ) ^ { C } ( 1 - \\sum \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 225, + 125, + 769, + 373 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Computation of $p ^ { D \\setminus C } ( S \\setminus C )$ . When using the Gumbel-Top- $k$ trick over the restricted domain $D \\backslash C$ , we do not need to renormalize the log-probabilities $\\phi _ { s } , s \\in D \\setminus C$ since the Gumbel-Top- $k$ trick applies to unnormalized log-probabilities. Also, assuming $C \\subseteq S ^ { k }$ , it holds that $\\left( D \\backslash C \\right) \\backslash ( \\mathbf { \\bar { S } } )$ $C ) = D \\backslash S$ . This means that we can compute $p ^ { D \\setminus C } ( S \\setminus C )$ similar to equation 31: ", + "bbox": [ + 173, + 385, + 825, + 445 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/71b1ede5eb7d716390ae712d93a77350d15fd8d99080e5f5d9d65b83e209d14e.jpg", + "text": "$$\n\\begin{array} { r l } { \\displaystyle p ^ { D \\setminus C } ( S \\setminus C ) = P ( \\underset { i \\in S \\backslash C } { \\mathrm { m i n } } G _ { \\phi _ { i } } > G _ { \\phi _ { ( D \\setminus C ) \\setminus ( S \\setminus C ) } } ) } & { } \\\\ { = P ( \\underset { i \\in S \\backslash C } { \\mathrm { m i n } } G _ { \\phi _ { i } } > G _ { \\phi _ { D \\setminus S } } ) } & { } \\\\ { = \\displaystyle \\int _ { g _ { \\phi _ { D \\setminus S } } = - \\infty } ^ { \\infty } f _ { \\phi _ { D \\setminus S } } \\big ( g _ { \\phi _ { D \\setminus S } } \\big ) \\prod _ { i \\in S \\backslash C } \\left( 1 - F _ { \\phi _ { i } } \\big ( g _ { \\phi _ { D \\setminus S } } \\big ) \\right) \\partial g _ { \\phi _ { D \\setminus S } } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 241, + 452, + 756, + 549 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Computation of $R ( S ^ { k } , s )$ . Note that, using equation 10, it holds that ", + "bbox": [ + 173, + 563, + 640, + 580 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/37fa10b9c1fd720eb745b828e611bb6706d79858280070ca02012d93d4503d8a.jpg", + "text": "$$\n\\sum _ { s \\in S ^ { k } } { \\frac { p ^ { D \\setminus \\{ s \\} } ( S ^ { k } \\setminus \\{ s \\} ) p ( s ) } { p ( S ^ { k } ) } } = \\sum _ { s \\in S ^ { k } } P ( b _ { 1 } = s | S ^ { k } ) = 1\n$$", + "text_format": "latex", + "bbox": [ + 316, + 585, + 681, + 627 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "from which it follows that ", + "bbox": [ + 174, + 633, + 346, + 647 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/2a4ec5a0625a14701521c45a48439b3f0ca24500a7cee376c7f650e285dca087.jpg", + "text": "$$\np ( S ^ { k } ) = \\sum _ { s \\in S ^ { k } } p ^ { D \\setminus \\{ s \\} } ( S ^ { k } \\setminus \\{ s \\} ) p ( s )\n$$", + "text_format": "latex", + "bbox": [ + 375, + 642, + 622, + 678 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "such that ", + "bbox": [ + 173, + 681, + 235, + 694 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/410624f2557ad5303a82af31b26e72b713b414348fbc1f7ef00af886da23f8f8.jpg", + "text": "$$\nR ( S ^ { k } , s ) = { \\frac { p ^ { D \\setminus \\{ s \\} } ( S ^ { k } \\setminus \\{ s \\} ) } { p ( S ^ { k } ) } } = { \\frac { p ^ { D \\setminus \\{ s \\} } ( S ^ { k } \\setminus \\{ s \\} ) } { \\sum _ { s ^ { \\prime } \\in S ^ { k } } p ^ { D \\setminus \\{ s ^ { \\prime } \\} } ( S ^ { k } \\setminus \\{ s ^ { \\prime } \\} ) p ( s ^ { \\prime } ) } } .\n$$", + "text_format": "latex", + "bbox": [ + 274, + 689, + 723, + 728 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "This means that, to compute the leave-one-out ratio for all $s ~ \\in ~ S ^ { k }$ , we only need to compute $p ^ { D \\setminus \\{ s \\} } ( S ^ { k } \\setminus \\{ s \\} )$ for $s \\in S ^ { k }$ . When using the numerical integration or summation in $O ( 2 ^ { k } )$ , we can reuse computation, whereas using the naive method, the cost is $O ( k \\cdot ( k - 1 ) ! ) = O ( k ! )$ , making the total computational cost comparable to computing just $p ( S ^ { k } )$ , and the same holds when computing the ‘second-order’ leave one out ratios for the built-in baseline (equation 17). ", + "bbox": [ + 173, + 731, + 825, + 804 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Details of numerical integration. For computation of the leave-one-out ratio (equation 35) for large $k$ we can use the numerical integration, where we need to compute equation 34 with $C = \\{ s \\}$ . For this purpose, we rewrite the integral as ", + "bbox": [ + 171, + 103, + 825, + 146 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/c310d2db9b1fa7110a785947e4cf56a00a645a76a168ecfb1126319fea07ae03.jpg", + "text": "$$\n\\begin{array} { l } { \\displaystyle p ^ { D \\setminus C } ( S \\setminus C ) = \\int _ { \\phi _ { \\partial \\setminus \\mathcal { D } } \\setminus \\phi = - \\phi } ^ { \\phi _ { \\partial \\setminus \\mathcal { D } } } f _ { \\phi _ { D \\setminus \\mathcal { D } } } ( g _ { \\phi \\phi _ { D \\setminus \\mathcal { D } } } , s ) \\prod _ { i \\in S \\setminus \\mathcal { C } } \\left( 1 - F _ { \\phi _ { i } } ( g _ { \\phi _ { D \\setminus i } } , s ) \\right) \\partial g _ { \\phi _ { D \\setminus i } } } \\\\ { \\displaystyle \\qquad = \\int _ { u = 0 } ^ { 1 } \\prod _ { i \\in S \\setminus \\mathcal { C } } \\Big ( 1 - F _ { \\phi _ { i } } \\Big ( F _ { \\phi _ { D \\setminus i } } ^ { - 1 } \\Big ( u \\Big ) \\Big ) \\Big ) \\partial u } \\\\ { \\displaystyle \\qquad = \\int _ { u = 0 } ^ { 1 } \\prod _ { i \\in S \\setminus \\mathcal { C } } \\Big ( 1 - u ^ { \\alpha \\setminus \\phi _ { i } ( \\phi _ { i } - \\phi _ { D \\setminus i } ) s } \\Big ) \\partial u } \\\\ { \\displaystyle \\qquad = \\exp ( b ) \\cdot \\int _ { v = 0 } ^ { 1 } v ^ { \\alpha \\setminus \\phi _ { i } ( b ) - 1 } \\prod _ { i \\in S \\setminus \\mathcal { C } } \\Big ( 1 - v ^ { \\alpha \\setminus \\Phi _ { i } ( \\phi _ { i } - \\phi _ { D \\setminus i } - \\phi _ { i } ) } \\Big ) \\partial v } \\\\ { \\displaystyle \\qquad = \\exp ( a + \\phi _ { D \\setminus S } ) \\cdot \\int _ { v = 0 } ^ { 1 } v ^ { \\alpha \\setminus \\Phi _ { i } ( \\phi _ { i } + \\phi _ { D \\setminus i } - s ) - 1 } \\prod _ { i \\in S \\setminus \\mathcal { C } } \\Big ( 1 - v ^ { \\alpha \\setminus \\Phi _ { i } ( \\phi _ { i } + s ) } \\Big ) \\partial v } \\\\ { \\displaystyle \\qquad = \\exp ( a + \\phi _ { D \\setminus \\mathcal { D } } ) \\cdot \\int _ { v = 0 } ^ { 1 } v ^ { \\alpha \\setminus \\Phi _ { i } ( \\phi _ { i } + \\phi _ { D \\setminus i } - s ) - 1 } v \\in \\mathrm { S } ^ { \\setminus \\Phi _ { i } } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 218, + 155, + 779, + 372 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Here we have used change of variables $v = u ^ { e x p ( - b ) }$ and $a = b - \\phi _ { D \\backslash S }$ . This form allows to compute the integrands efficiently, as ", + "bbox": [ + 174, + 381, + 823, + 411 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/3ab65bbdffb221dc2e3ddf5ae942c5101495262c958abebcbf1015b13a972aee.jpg", + "text": "$$\n\\prod _ { i \\in S \\setminus C } \\left( 1 - v ^ { \\exp ( \\phi _ { i } + a ) } \\right) = \\frac { \\prod _ { i \\in S } \\left( 1 - v ^ { \\exp ( \\phi _ { i } + a ) } \\right) } { \\prod _ { i \\in C } \\left( 1 - v ^ { \\exp ( \\phi _ { i } + a ) } \\right) }\n$$", + "text_format": "latex", + "bbox": [ + 325, + 420, + 669, + 464 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "where the numerator only needs to computed once, and, since $C = \\{ s \\}$ when computing equation 35, the denominator only consists of a single term. ", + "bbox": [ + 173, + 474, + 823, + 503 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "The choice of $a$ may depend on the setting, but we found that $a \\ : = \\ : 5$ is a good default option which leads to an integral that is generally smooth and can be accurately approximated using the trapezoid rule. We compute the integrands in logarithmic space and sum the terms using the stable LOGSUMEXP trick. In our code we provide an implementation which also computes all second-order leave-one-out ratios efficiently. ", + "bbox": [ + 173, + 510, + 825, + 580 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "C THE SUM-AND-SAMPLE ESTIMATOR ", + "text_level": 1, + "bbox": [ + 174, + 603, + 504, + 619 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "C.1 UNBIASEDNESS OF THE SUM-AND-SAMPLE ESTIMATOR ", + "text_level": 1, + "bbox": [ + 174, + 637, + 601, + 651 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "We show that the sum-and-sample estimator is unbiased for any set $C \\subset D$ (see also Liang et al. (2018); Liu et al. (2019)): ", + "bbox": [ + 174, + 662, + 825, + 693 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/b9e074f65ae7cf0608fff4cbda5585c6ae47c099e3db5c45711392f7bb8c436a.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathbb { E } _ { \\mathrm { s e } \\sim p ^ { N } \\times ( \\pi ) } \\left[ \\underset { s \\in \\mathcal { C } } { \\sum } p ( c ) f ( c ) + \\left( 1 - \\underset { s \\in \\mathcal { C } } { \\sum } p ( c ) \\right) f ( s ) \\right] } \\\\ & { = \\underset { s \\in \\mathcal { C } } { \\sum } p ( c ) f ( e ) + \\left( 1 - \\underset { s \\in \\mathcal { C } } { \\sum } p ( c ) \\right) \\mathbb { E } _ { \\alpha \\sim p ^ { N } \\times ( \\pi ) } [ f ( x ) ] } \\\\ & { = \\underset { s \\in \\mathcal { C } } { \\sum } p ( c ) f ( e ) + \\left( 1 - \\underset { s \\in \\mathcal { C } } { \\sum } p ( c ) \\right) \\underset { s \\in \\mathcal { C } } { \\sum } \\frac { p ( x ) } { 1 - \\sum _ { s \\in \\mathcal { C } } p ( c ) } f ( x ) } \\\\ & { = \\underset { s \\in \\mathcal { C } } { \\sum } p ( c ) f ( e ) + \\underset { s \\in \\mathcal { D } } { \\sum } p ( x ) f ( x ) } \\\\ & { = \\underset { s \\in \\mathcal { C } } { \\sum } p ( c ) f ( x ) + \\underset { s \\in \\mathcal { D } \\backslash \\mathcal { C } } { \\sum } } \\\\ & { = \\underset { s \\in \\mathcal { D } } { \\sum } p ( x ) f ( x ) } \\\\ & { = \\underset { c \\in \\mathcal { C } \\sim ( \\mathcal { C } ) } { \\sum } [ f ( x ) ] } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 285, + 700, + 715, + 931 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "In this section we give the proof that Rao-Blackwellizing the stochastic sum-and-sample estimator results in the unordered set estimator. ", + "bbox": [ + 174, + 135, + 823, + 165 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Theorem 4. Rao-Blackwellizing the stochastic sum-and-sample estimator results in the unordered set estimator, i.e. ", + "bbox": [ + 171, + 174, + 825, + 204 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/0b9d7c9d1ed7944469fbeac8c9a5bc6f5f685b09515131a1595aefaf726d7cb7.jpg", + "text": "$$\n\\mathbb { E } _ { B ^ { k } \\sim p ( B ^ { k } | S ^ { k } ) } \\left[ \\sum _ { j = 1 } ^ { k - 1 } p ( b _ { j } ) f ( b _ { j } ) + \\left( 1 - \\sum _ { j = 1 } ^ { k - 1 } p ( b _ { j } ) \\right) f ( b _ { k } ) \\right] = \\sum _ { s \\in S ^ { k } } p ( s ) R ( S ^ { k } , s ) f ( s ) .\n$$", + "text_format": "latex", + "bbox": [ + 196, + 222, + 772, + 273 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Proof. To give the proof, we first prove three Lemmas. ", + "bbox": [ + 173, + 330, + 534, + 347 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Lemma 1. ", + "bbox": [ + 173, + 393, + 246, + 409 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/317c6fc716831ad249f80ed035ca691c5c122a60da3a87b0f11283a54e6d79c1.jpg", + "text": "$$\nP ( b _ { k } = s | S ^ { k } ) = { \\frac { p ( S ^ { k } \\setminus \\{ s \\} ) } { p ( S ^ { k } ) } } { \\frac { p ( s ) } { 1 - \\sum _ { s ^ { \\prime } \\in S ^ { k } \\setminus \\{ s \\} } p ( s ^ { \\prime } ) } }\n$$", + "text_format": "latex", + "bbox": [ + 325, + 424, + 673, + 462 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Proof. Similar to the derivation of $P ( b _ { 1 } = s | S ^ { k } )$ (equation 10 in the main paper), we can write: ", + "bbox": [ + 169, + 520, + 802, + 537 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/6c885fc524dc9e072ef6b44df93fc4809a19f07582e36c8423a970c39b38f389.jpg", + "text": "$$\n\\begin{array} { r l } & { P ( b _ { k } = s | S ^ { k } ) = \\displaystyle \\frac { P ( S ^ { k } \\cap b _ { k } = s ) } { p ( S ^ { k } ) } } \\\\ & { \\qquad = \\displaystyle \\frac { p ( S ^ { k } \\setminus \\{ s \\} ) p ^ { D \\setminus ( S ^ { k } \\setminus \\{ s \\} ) } ( s ) } { p ( S ^ { k } ) } } \\\\ & { \\qquad = \\displaystyle \\frac { p ( S ^ { k } \\setminus \\{ s \\} ) } { p ( S ^ { k } ) } \\displaystyle \\frac { p ( s ) } { 1 - \\sum _ { s ^ { \\prime } \\in S ^ { k } \\setminus \\{ s \\} } p ( s ^ { \\prime } ) } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 320, + 558, + 676, + 671 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "The step from the first to the second row comes from analyzing the event $S ^ { k } \\cap b _ { k } = s$ using sequential sampling: to sample $S ^ { k }$ (including $s$ ) with $s$ being the $k$ -th element means that we should first sample $S ^ { k } \\setminus \\{ s \\bar { \\} }$ (in any order), and then sample $s$ from the distribution restricted to $D \\setminus \\left( S ^ { k } \\setminus \\left\\{ s \\right\\} \\right)$ . □ ", + "bbox": [ + 174, + 690, + 823, + 736 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Lemma 2. ", + "bbox": [ + 173, + 786, + 246, + 801 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/7c0852d8179f1a62f8ea46378e393a74a336a7f30eadf02092aad28ae432b7d6.jpg", + "text": "$$\np ( S ) + p ( S \\setminus \\{ s \\} ) { \\frac { 1 - \\sum _ { s ^ { \\prime } \\in S } p ( s ^ { \\prime } ) } { 1 - \\sum _ { s ^ { \\prime } \\in S \\setminus \\{ s \\} } p ( s ^ { \\prime } ) } } = p ^ { D \\setminus \\{ s \\} } ( S \\setminus \\{ s \\} )\n$$", + "text_format": "latex", + "bbox": [ + 299, + 815, + 697, + 854 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Dividing equation 33 by $\\begin{array} { r } { 1 - \\sum _ { s ^ { \\prime } \\in S } p ( s ^ { \\prime } ) } \\end{array}$ on both sides, we obtain ", + "bbox": [ + 171, + 907, + 611, + 926 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Proof. ", + "bbox": [ + 173, + 103, + 217, + 118 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/debf08f1ef48f69c0813d75fce15229f44e5af54cbf61079be4a12af114655f3.jpg", + "text": "$$\n\\begin{array} { r l } & { \\quad _ { 1 } - \\sum _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } ( \\mathsf { E } ^ { ( k ) } , \\mathsf { \\Lambda } _ { k } ^ { 2 } ) } \\\\ & { = \\sum _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } ( \\mathsf { E } ^ { ( k ) } , \\mathsf { \\Lambda } _ { k } ^ { 2 } ) \\le \\epsilon _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } } \\\\ & { \\quad _ { 1 } - \\sum _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } \\Big ( \\mathsf { E } ^ { ( k ) } \\frac { \\epsilon _ { k \\in \\mathcal { N } _ { k } } } { 1 - \\sum _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } ( \\mathsf { E } ^ { ( k ) } , \\mathsf { \\Lambda } _ { k } ^ { 2 } ) } + \\mathsf { E } \\eta ^ { \\mathsf { C P S } _ { k } } \\Big ) + \\mathsf { E } ^ { ( k ) } \\frac { \\epsilon _ { k \\in \\mathcal { N } _ { k } } } { 1 - \\sum _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } ( \\mathsf { E } ^ { ( k ) } , \\mathsf { \\Lambda } _ { k } ^ { 2 } ) } } \\\\ & = \\sum _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } ( \\mathsf { E } ^ { ( k ) } , \\mathsf { \\Lambda } _ { k } ^ { 2 } ) \\le \\epsilon _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } \\le \\epsilon _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } \\le \\epsilon _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } - \\sum _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } \\frac { \\mathsf { E } ^ { ( k ) } } { 1 - \\sum _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } ( \\mathsf { E } ^ { ( k ) } , \\mathsf { \\Lambda } _ { k } ^ { 2 } ) } \\\\ & \\quad _ { 1 } - \\sum _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } ( \\mathsf { E } ^ { ( k ) } \\frac { \\epsilon _ { k \\in \\mathcal { N } _ { k } } } 1 - \\sum _ k \\ \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 174, + 125, + 816, + 500 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Multiplying by $\\begin{array} { r } { 1 - \\sum _ { s ^ { \\prime } \\in S } p ( s ^ { \\prime } ) } \\end{array}$ and rearranging terms proves Lemma 2. ", + "bbox": [ + 174, + 526, + 651, + 544 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Lemma 3. ", + "bbox": [ + 173, + 570, + 246, + 584 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/f849db37933e0df0ed77d77694a6da529c83d635bb55db7375ebdcf9171da09e.jpg", + "text": "$$\np ( s ) + \\left( 1 - \\sum _ { s ^ { \\prime } \\in S ^ { k } } p ( s ^ { \\prime } ) \\right) P ( b _ { k } = s | S ^ { k } ) = p ( s ) R ( S ^ { k } , s )\n$$", + "text_format": "latex", + "bbox": [ + 305, + 588, + 691, + 638 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Proof. First using Lemma 1 and then Lemma 2 we find ", + "bbox": [ + 173, + 671, + 540, + 688 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/377d01fdf87f7d91e3098db3d580ff2258aaa4b7ed1d2cd4efd8f12a2bc3fc82.jpg", + "text": "$$\n\\begin{array} { r l } & { \\quad p ( s ) + \\left( 1 - \\displaystyle \\sum _ { s ^ { \\prime } \\in S ^ { k } } p ( s ^ { \\prime } ) \\right) P ( b _ { k } = s | S ^ { k } ) } \\\\ & { = p ( s ) + \\left( 1 - \\displaystyle \\sum _ { s ^ { \\prime } \\in S ^ { k } } p ( s ^ { \\prime } ) \\right) \\frac { p ( S ^ { k } \\setminus \\{ S \\} ) } { p ( S ^ { k } ) } \\frac { p ( s ) } { 1 - \\sum _ { s ^ { \\prime } \\in S ^ { k } \\setminus \\{ S \\} } p ( s ^ { \\prime } ) } } \\\\ & { = \\frac { p ( S ) } { p ( S ^ { k } ) } \\left( p ( S ^ { k } ) + \\displaystyle \\frac { 1 - \\sum _ { s ^ { \\prime } \\in S ^ { k } \\setminus \\{ P ( s ^ { \\prime } ) \\} } p ( s ^ { \\prime } ) } { 1 - \\sum _ { s ^ { \\prime } \\in S ^ { k } \\setminus \\{ S \\} } p ( s ^ { \\prime } ) } p ( S ^ { k } \\setminus \\{ s \\} ) \\right) } \\\\ & { = \\frac { p ( s ) } { p ( S ^ { k } ) } p ^ { D \\setminus \\{ S \\} } ( S ^ { k } \\setminus \\{ s \\} ) } \\\\ & { \\quad - p ( s ) R ( S ^ { k } , s ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 282, + 699, + 710, + 898 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Now we can complete the proof of Theorem 4 by adding $p ( b _ { k } ) f ( b _ { k } ) - p ( b _ { k } ) f ( b _ { k } ) = 0$ to the estimator, moving the terms independent of $B ^ { k }$ outside the expectation and using Lemma 3: ", + "bbox": [ + 169, + 102, + 823, + 133 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/30c1840633db154981388efc9babecf7dc93fdfb0811c0fef42d725b51213f11.jpg", + "text": "$$\n\\begin{array} { r l } & \\quad \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\overline { { \\wp } } } \\\\ & \\quad - \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\overline { { \\wp } } } \\\\ & \\quad - \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\overline { { \\wp } } } \\\\ & { \\quad - \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\infty } [ ( 1 - \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } ) f ^ { ( i i i i ) } } ] f ^ { ( i i i i ) } } \\\\ & \\quad - \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\overline { { \\wp } } } \\\\ & { \\quad - \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\overline { { \\wp } } } [ f ^ { ( i i ) } + \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\overline { { \\wp } } } ] f ^ { ( i i i i ) } } \\\\ & { \\quad - \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\overline { { \\wp } } } ( f ^ { ( i i i ) } + \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\overline { { \\wp } } } ) f ^ { ( i i i i ) } } \\\\ & { \\quad - \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\overline { { \\wp } } } ( f ^ { ( i i i ) } + \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\overline { { \\wp } } } ) f ^ { ( i i i ) } } \\\\ & \\quad \\quad - \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\overline { { \\wp } } } ( f ^ { ( i i ) } + \\sum _ \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 285, + 140, + 707, + 428 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "C.3 THE STOCHASTIC SUM-AND-SAMPLE ESTIMATOR WITH MULTIPLE SAMPLES ", + "text_level": 1, + "bbox": [ + 173, + 462, + 740, + 477 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "As was discussed in Liu et al. (2019), one can trade off the number of summed terms and number of sampled terms to maximize the achieved variance reduction. As a generalization of Theorem 4 (the stochastic sum-and-sample estimator with $k - 1$ summed terms), we introduce here the stochastic sum-and-sample estimator that sums $k - m$ terms and samples $m > 1$ terms without replacement. To estimate the sampled term, we use the unordered set estimator on the $m$ samples without replacement, on the domain restricted to $D \\setminus B ^ { k - m }$ . In general, we denote the unordered set estimator restricted to the domain $D \\backslash C$ by ", + "bbox": [ + 173, + 487, + 826, + 587 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/ae6f53cdd3e12b7696af2cbaed29929c0d66349ef59ae9486808cda4504d3d23.jpg", + "text": "$$\ne ^ { { \\bf U S } , D \\setminus C } ( S ^ { k } ) = \\sum _ { s \\in S ^ { k } \\setminus C } p ( s ) R ^ { D \\setminus C } ( S ^ { k } , s ) f ( s )\n$$", + "text_format": "latex", + "bbox": [ + 343, + 592, + 655, + 628 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "where $R ^ { D \\setminus C } ( S ^ { k } , s )$ is the leave-one-out ratio restricted to the domain $D \\backslash C$ , similar to the second order leave-one-out ratio in equation 18: ", + "bbox": [ + 174, + 636, + 823, + 665 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/262dc87328c00006d729bdd5cefd83d20437f1eb35b0ef68dbc8d80f134f5054.jpg", + "text": "$$\nR ^ { D \\setminus C } ( S ^ { k } , s ) = { \\frac { p _ { \\theta } ^ { ( D \\setminus C ) \\setminus \\{ s \\} } ( ( S ^ { k } \\setminus C ) \\setminus \\{ s \\} ) } { p _ { \\theta } ^ { D \\setminus C } ( S ^ { k } \\setminus C ) } } .\n$$", + "text_format": "latex", + "bbox": [ + 344, + 670, + 651, + 713 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "While we can also constrain $S ^ { k } \\subseteq ( D \\backslash C )$ , this definition is consistent with equation 18 and allows simplified notation. ", + "bbox": [ + 176, + 719, + 823, + 750 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Theorem 5. Rao-Blackwellizing the stochastic sum-and-sample estimator with $m \\ > \\ 1$ samples results in the unordered set estimator, i.e. ", + "bbox": [ + 173, + 752, + 823, + 781 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/c9ac6892079fc79013e0e1be3f725409a4351778d410ea7fdeda86d9dc2a5412.jpg", + "text": "$$\n\\ ? \\ ? \\complement _ { B ^ { k } \\sim p ( B ^ { k } \\mid S ^ { k } ) } \\left[ \\sum _ { j = 1 } ^ { k - m } p ( b _ { j } ) f ( b _ { j } ) + \\left( 1 - \\sum _ { j = 1 } ^ { k - m } p ( b _ { j } ) \\right) e ^ { U S , D \\setminus B ^ { k - m } } ( S ^ { k } ) \\right] = \\sum _ { s \\in S ^ { k } } p ( s ) R ( S ^ { k } , s ) f ( s ) .\n$$", + "text_format": "latex", + "bbox": [ + 181, + 785, + 833, + 837 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Proof. Recall that for the unordered set estimator, it holds that ", + "bbox": [ + 173, + 863, + 584, + 878 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/530122c7b7780623682b4f30cd05eb78970872a06f15a7c9c139ea6d2478afee.jpg", + "text": "$$\ne ^ { \\mathrm { U S } } ( S ^ { k } ) = \\mathbb { E } _ { b _ { 1 } \\sim p ( b _ { 1 } | S ^ { k } ) } \\left[ f ( b _ { 1 } ) \\right] = \\mathbb { E } _ { x \\sim p ( x ) } \\left[ f ( x ) \\middle | x \\in S ^ { k } \\right]\n$$", + "text_format": "latex", + "bbox": [ + 303, + 883, + 692, + 905 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "which for the restricted equivalent (with restricted distribution $p ^ { D \\setminus C }$ ) translates into ", + "bbox": [ + 171, + 102, + 723, + 118 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/95f74612504c9115d909cb70e4eade4f448adb087befe3d0cd39383613e5771d.jpg", + "text": "$$\ne ^ { \\mathrm { U S } , D \\setminus C } ( S ^ { k } ) = \\mathbb { E } _ { x \\sim p ^ { D \\setminus C } ( x ) } \\left[ f ( x ) \\big | x \\in S ^ { k } \\right] = \\mathbb { E } _ { x \\sim p ( x ) } \\left[ f ( x ) \\big | x \\in S ^ { k } , x \\not \\in C \\right] .\n$$", + "text_format": "latex", + "bbox": [ + 236, + 123, + 761, + 143 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Now we consider the distribution $b _ { k - m + 1 } | S ^ { k } , B ^ { k - m }$ : the distribution of the first element sampled (without replacement) after sampling $B ^ { k - m }$ , given (conditionally on the event) that the set of $k$ samples is $S ^ { k }$ , so we have $b _ { k - m + 1 } \\stackrel { - } { \\in } S ^ { k }$ and $\\mathsf { \\bar { b } } _ { k - m + 1 } \\notin B ^ { k - m }$ . This means that its conditional expectation of $f ( b _ { k - m + 1 } )$ is the restricted unordered set estimator for $C = B ^ { k - m }$ since ", + "bbox": [ + 173, + 148, + 825, + 207 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/07a2fbd8fe56d665e43e09c3001882623419cefdd4f57e0ab0f3785a4c9020f6.jpg", + "text": "$$\n\\begin{array} { r l } { { e ^ { \\mathrm { U S } , D \\setminus B ^ { k - m } } ( S ^ { k } ) = \\mathbb { E } _ { x \\sim p ( x ) } [ f ( x ) \\vert x \\in S ^ { k } , x \\not \\in B ^ { k - m } ] } \\quad } & { } \\\\ & { = \\mathbb { E } _ { b _ { k - m + 1 } \\sim p ( b _ { k - m + 1 } \\mid S ^ { k } , B ^ { k - m } ) } [ f ( b _ { k - m + 1 } ) ] . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 287, + 210, + 710, + 255 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Observing that the definition (equation 42) of the stochastic sum-and-sample estimator does not depend on the actual order of the $m$ samples, and using equation 45, we can reduce the multisample estimator to the stochastic sum-and-sample estimator with $k ^ { \\prime } = k - m + 1$ , such that the result follows from equation 36. ", + "bbox": [ + 173, + 256, + 825, + 313 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/d8526bc56964422d83f6abb56b1004632519ad61650cc88894ec9d0df48c8e72.jpg", + "text": "$$\n\\begin{array} { c } { { \\displaystyle \\begin{array} { l } { { { \\cal L } _ { \\mathrm { e x c } , \\mathrm { t r i g h } , \\mathrm { \\scriptsize ~ 1 . . } } \\sum _ { j = 0 } ^ { N } \\phi _ { j } \\Big | Z _ { j } ^ { ( k ) } \\phi _ { j } \\Big | + ( \\displaystyle { 1 - \\sum _ { j = 0 } ^ { N } \\phi _ { j } } ) Z _ { j } ^ { ( k ) } z ^ { ( k ) } z ^ { ( k ) } - ( \\beta _ { j } - \\gamma ) \\delta _ { j } ^ { \\prime } \\Big | } } } \\\\ { { \\displaystyle - \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\mathrm { \\cdots ~ 1 } } } \\end{array} \\} } \\\\ \\displaystyle - \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } ( \\displaystyle { 1 - \\sum _ { j = 0 } ^ { N } \\phi _ { j } } ) \\Bigg | \\displaystyle { 1 - \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { k = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { l = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { l = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { l = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { l = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } } \\\\ \\displaystyle - \\sum _ j = \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 171, + 318, + 816, + 655 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "D THE IMPORTANCE-WEIGHTED ESTIMATOR ", + "text_level": 1, + "bbox": [ + 173, + 670, + 560, + 686 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "D.1 RAO-BLACKWELLIZATION OF THE IMPORTANCE-WEIGHTED ESTIMATOR", + "text_level": 1, + "bbox": [ + 174, + 700, + 718, + 715 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "In this section we give the proof that Rao-Blackwellizing the importance-weighted estimator results in the unordered set estimator. ", + "bbox": [ + 171, + 726, + 825, + 755 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Theorem 6. Rao-Blackwellizing the importance-weighted estimator results in the unordered set estimator, i.e.: ", + "bbox": [ + 173, + 758, + 823, + 786 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/01e8ad49e2b31698b00a425d91b8cf16f8e6028f37590b04c330c6d3a3bf6f9c.jpg", + "text": "$$\n\\mathbb { E } _ { \\kappa \\sim p ( \\kappa | S ^ { k } ) } \\left[ \\sum _ { s \\in S ^ { k } } \\frac { p ( s ) } { 1 - F _ { \\phi _ { s } } ( \\kappa ) } f ( s ) \\right] = \\sum _ { s \\in S ^ { k } } p ( s ) R ( S ^ { k } , s ) f ( s ) .\n$$", + "text_format": "latex", + "bbox": [ + 285, + 790, + 710, + 840 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Here we have slightly rewritten the definition of the importance-weighted estimator, using that $q ( s , a ) = P ( g _ { \\phi _ { s } } ^ { \\mathrm { ~ ~ } } > \\stackrel { \\cdot } { a } ) = 1 - F _ { \\phi _ { s } } ( a )$ , where $F _ { \\phi _ { s } }$ is the CDF of the Gumbel distribution (see Appendix A). ", + "bbox": [ + 173, + 852, + 826, + 895 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Proof. We first prove the following Lemma: ", + "bbox": [ + 174, + 909, + 465, + 924 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Lemma 4. ", + "bbox": [ + 173, + 103, + 246, + 118 + ], + "page_idx": 20 + }, + { + "type": "equation", + "img_path": "images/ea6ebad1366a3fc44c7c07e5829e5eaef7cab655a4b439ea9150102a75887e5b.jpg", + "text": "$$\n\\mathbb { E } _ { \\kappa \\sim p ( \\kappa | S ^ { k } ) } \\left[ \\frac { 1 } { 1 - F _ { \\phi _ { s } } ( \\kappa ) } \\right] = R ( S ^ { k } , s )\n$$", + "text_format": "latex", + "bbox": [ + 369, + 113, + 629, + 150 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Proof. Conditioning on $S ^ { k }$ , we know that the elements in $S ^ { k }$ have the $k$ largest perturbed logprobabilities, so $\\kappa$ , the $( k + 1 )$ -th largest perturbed log-probability is the largest perturbed logprobability in $D \\backslash S ^ { k }$ , and satisfies $\\begin{array} { r } { \\kappa = \\operatorname* { m a x } _ { s \\in D \\backslash S ^ { k } } g _ { \\phi _ { s } } = g _ { \\phi _ { D \\backslash S ^ { k } } } \\sim \\mathrm { G u m b e l } ( \\phi _ { D \\backslash S ^ { k } } ) } \\end{array}$ . Computing $p ( \\kappa | S ^ { k } )$ using Bayes’ Theorem, we have ", + "bbox": [ + 173, + 165, + 825, + 227 + ], + "page_idx": 20 + }, + { + "type": "equation", + "img_path": "images/72d64bf455a71d7bfe77493ed53bfb56de65d59129300cc1d8bd30091b9c3013.jpg", + "text": "$$\np ( \\kappa | S ^ { k } ) = \\frac { p ( S ^ { k } | \\kappa ) p ( \\kappa ) } { p ( S ^ { k } ) } = \\frac { \\prod _ { s \\in S ^ { k } } ( 1 - F _ { \\phi _ { s } } ( \\kappa ) ) f _ { \\phi _ { D \\setminus S ^ { k } } } ( \\kappa ) } { p ( S ^ { k } ) }\n$$", + "text_format": "latex", + "bbox": [ + 299, + 233, + 697, + 272 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "which allows us to compute (using equation 34 with $C = \\{ s \\}$ and $g _ { \\phi _ { D \\setminus S } } = \\kappa$ ", + "bbox": [ + 173, + 285, + 687, + 303 + ], + "page_idx": 20 + }, + { + "type": "equation", + "img_path": "images/270db507263957445b50afe3dffcba35712863dac88728966242bbb04b5dec1b.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathbb { E } _ { n \\sim p ( n | S ^ { k } ) } \\left[ \\frac { 1 } { 1 - F _ { \\phi _ { n } } ( \\kappa ) } \\right] } \\\\ & { = \\int _ { n = - \\infty } ^ { \\infty } p ( \\kappa | S ^ { k } ) \\frac { 1 } { 1 - F _ { \\phi _ { n } } ( \\kappa ) } \\partial \\kappa } \\\\ & { = \\int _ { \\kappa = - \\infty } ^ { \\infty } \\frac { \\prod _ { s \\in S ^ { k } } ( 1 - F _ { \\phi _ { s } } ( \\kappa ) ) f _ { \\phi _ { n ; s } } ( \\kappa ) } { p ( S ^ { k } ) } \\frac { 1 } { 1 - F _ { \\phi _ { n } } ( \\kappa ) } \\partial \\kappa } \\\\ & { = \\frac { 1 } { p ( S ^ { k } ) } \\int _ { \\kappa = - \\infty } ^ { \\infty } \\underset { s \\in S ^ { k } \\backslash \\{ s \\} } { \\prod } \\ ( 1 - F _ { \\phi _ { s } } ( \\kappa ) ) f _ { \\phi _ { n ; s } \\mu \\kappa } ( \\kappa ) \\partial \\kappa } \\\\ & { = \\frac { 1 } { p ( S ^ { k } ) } p ^ { D \\cup S } ( S \\setminus \\{ s \\} ) } \\\\ & { = R ( S ^ { k } , s ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 305, + 309, + 689, + 517 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Using Lemma 4 we find ", + "bbox": [ + 174, + 553, + 334, + 568 + ], + "page_idx": 20 + }, + { + "type": "equation", + "img_path": "images/189a05ec559dd1c3ad78a3bb4788e233438705067db6a1ef44e13d2ded16f5f7.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathbb { E } _ { \\kappa \\sim p ( \\kappa | S ^ { k } ) } \\left[ \\displaystyle \\sum _ { s \\in S ^ { k } } \\frac { p ( s ) } { 1 - F _ { \\phi _ { s } } ( \\kappa ) } f ( s ) \\right] } \\\\ & { = \\displaystyle \\sum _ { s \\in S ^ { k } } p ( s ) \\mathbb { E } _ { \\kappa \\sim p ( \\kappa | S ^ { k } ) } \\left[ \\frac { 1 } { 1 - F _ { \\phi _ { s } } ( \\kappa ) } \\right] f ( s ) } \\\\ & { = \\displaystyle \\sum _ { s \\in S ^ { k } } p ( s ) R ( S ^ { k } , s ) f ( s ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 352, + 575, + 642, + 702 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "D.2 THE IMPORTANCE-WEIGHTED POLICY GRADIENT ESTIMATOR WITH BUILT-IN BASELINE", + "text_level": 1, + "bbox": [ + 171, + 739, + 823, + 755 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "For self-containment we include this section, which is adapted from our unpublished workshop paper (Kool et al., 2019b). The importance-weighted policy gradient estimator combines REINFORCE (Williams, 1992) with the importance-weighted estimator (Duffield et al., 2007; Vieira, 2017) in equation 15 which results in an unbiased estimator of the policy gradient $\\nabla _ { \\pmb { \\theta } } \\mathbb { E } _ { p _ { \\pmb { \\theta } } ( \\pmb { x } ) } [ f _ { \\pmb { \\theta } } ( \\pmb { x } ) ]$ : ", + "bbox": [ + 173, + 765, + 825, + 823 + ], + "page_idx": 20 + }, + { + "type": "equation", + "img_path": "images/15056798f35b0a4a5f225aa5c7bdb4f9651cc7e2dc85aed31fd13666948ec7ab.jpg", + "text": "$$\ne ^ { \\mathrm { I W P G } } ( S ^ { k } , \\kappa ) = \\sum _ { s \\in S ^ { k } } \\frac { p _ { \\theta } ( s ) } { q _ { \\theta , \\kappa } ( s ) } \\nabla _ { \\theta } \\log p _ { \\theta } ( s ) f ( s ) = \\sum _ { s \\in S ^ { k } } \\frac { \\nabla _ { \\theta } p _ { \\theta } ( s ) } { q _ { \\theta , \\kappa } ( s ) } f ( s )\n$$", + "text_format": "latex", + "bbox": [ + 267, + 830, + 730, + 871 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Recall that $\\kappa$ is the $( k + 1 )$ -th largest perturbed log-probability (see Section 3.2). We compute a lower variance but biased variant by normalizing the importance weights using the normalization W (Sk) = Ps∈Sk pθ(s)qθ,κ(s) . ", + "bbox": [ + 174, + 877, + 825, + 929 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "As we show in Kool et al. (2019b), we can include a ‘baseline’ B(Sk) = Ps∈Sk pθ(s)qθ,κ(s) f and correct for the bias (since it depends on the complete sample $S ^ { k }$ ) by weighting individual terms of the estimator by $\\begin{array} { r } { 1 - p _ { \\pmb { \\theta } } ( s ) + \\frac { p _ { \\pmb { \\theta } } ( s ) } { q _ { \\pmb { \\theta } , \\kappa } ( s ) } } \\end{array}$ : ", + "bbox": [ + 173, + 101, + 826, + 159 + ], + "page_idx": 21 + }, + { + "type": "equation", + "img_path": "images/ed94fc41ed206e40c574476efbaf81fc4a9410e07b249158520c562ae93e9b64.jpg", + "text": "$$\ne ^ { \\mathrm { I W P G B L } } ( S ^ { k } , \\kappa ) = \\sum _ { s \\in S ^ { k } } { \\frac { \\nabla _ { \\theta } p _ { \\theta } ( s ) } { q _ { \\theta , \\kappa } ( s ) } } \\left( f ( s ) \\left( 1 - p _ { \\theta } ( s ) + { \\frac { p _ { \\theta } ( s ) } { q _ { \\theta , \\kappa } ( s ) } } \\right) - B ( S ^ { k } ) \\right)\n$$", + "text_format": "latex", + "bbox": [ + 245, + 164, + 751, + 204 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "For the normalized version, we use the normalization W (Sk) = Ps∈Sk q for the baseline, and $\\begin{array} { r } { W _ { i } ( S ^ { k } ) = W ( S ^ { k } ) - \\frac { p _ { \\theta } ( s ) } { q _ { \\theta , \\kappa } ( s ) } + p _ { \\theta } ( s ) } \\end{array}$ to normalize the individual terms: ", + "bbox": [ + 173, + 219, + 825, + 261 + ], + "page_idx": 21 + }, + { + "type": "equation", + "img_path": "images/428c5674023653acf72976a9a4a14f8ea48e5542ff29a4b3bc54d6b3079b8a91.jpg", + "text": "$$\n\\nabla _ { \\pmb \\theta } \\mathbb { E } _ { \\pmb \\theta \\sim p _ { \\pmb \\theta } ( \\pmb y ) } \\left[ f ( \\pmb y ) \\right] \\approx \\sum _ { s \\in S ^ { k } } \\frac { 1 } { W _ { i } ( S ^ { k } ) } \\cdot \\frac { \\nabla _ { \\pmb \\theta } p _ { \\pmb \\theta } ( s ) } { q _ { \\pmb \\theta , \\kappa } ( s ) } \\left( f ( s ) - \\frac { B ( S ^ { k } ) } { W ( S ^ { k } ) } \\right)\n$$", + "text_format": "latex", + "bbox": [ + 276, + 267, + 722, + 309 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "It seems odd to normalize the terms in the outer sum by $\\frac { 1 } { W _ { i } ( S ^ { k } ) }$ instead of 1W (Sk) , but equation 52 can be rewritten into a form similar to equation 17, i.e. with a different baseline for each sample, but this form is more convenient for implementation (Kool et al., 2019b). ", + "bbox": [ + 173, + 315, + 826, + 363 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "E THE UNORDERED SET POLICY GRADIENT ESTIMATOR ", + "text_level": 1, + "bbox": [ + 173, + 382, + 651, + 398 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "E.1 PROOF OF UNBIASEDNESS OF THE UNORDERED SET POLICY GRADIENT ESTIMATOR WITH BASELINE ", + "bbox": [ + 176, + 412, + 790, + 441 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "To prove the unbiasedness of result we need to prove that the control variate has expectation 0: Lemma 5. ", + "bbox": [ + 171, + 452, + 795, + 486 + ], + "page_idx": 21 + }, + { + "type": "equation", + "img_path": "images/7dcde4fb0e8b1866026dbef50261833923c9fad3f33392df0058daff30d20272.jpg", + "text": "$$\n\\mathbb { E } _ { S ^ { k } \\sim p _ { \\theta } ( S ^ { k } ) } \\left[ \\sum _ { s \\in S ^ { k } } \\nabla _ { \\theta } p _ { \\theta } ( s ) R ( S ^ { k } , s ) \\sum _ { s ^ { \\prime } \\in S ^ { k } } p _ { \\theta } ( s ^ { \\prime } ) R ^ { D \\setminus \\{ s \\} } ( S ^ { k } , s ^ { \\prime } ) f ( s ^ { \\prime } ) \\right] = 0 .\n$$", + "text_format": "latex", + "bbox": [ + 243, + 489, + 754, + 540 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "Proof. Similar to equation 10, we apply Bayes’ Theorem conditionally on $b _ { 1 } ~ = ~ s$ to derive for $s ^ { \\prime } \\neq s$ ", + "bbox": [ + 169, + 553, + 825, + 583 + ], + "page_idx": 21 + }, + { + "type": "equation", + "img_path": "images/b7826c18422de652fa96e5046dce9e2b17066522210c25cb22c5f01a87170f56.jpg", + "text": "$$\n\\begin{array} { c } { P ( b _ { 2 } = s ^ { \\prime } | S ^ { k } , b _ { 1 } = s ) = \\displaystyle { \\frac { P ( S ^ { k } | b _ { 2 } = s ^ { \\prime } , b _ { 1 } = s ) P ( b _ { 2 } = s ^ { \\prime } | b _ { 1 } = s ^ { \\prime } ) } { P ( S ^ { k } | b _ { 1 } = s ) } } } \\\\ { = \\displaystyle { \\frac { p _ { \\theta } ^ { D \\setminus \\{ s , s ^ { \\prime } \\} } ( S ^ { k } \\setminus \\{ s , s ^ { \\prime } \\} ) p _ { \\theta } ^ { D \\setminus \\{ s \\} } ( s ^ { \\prime } ) } { p _ { \\theta } ^ { D \\setminus \\{ s \\} } ( S ^ { k } \\setminus \\{ s \\} ) } } } \\\\ { { = \\displaystyle { \\frac { p _ { \\theta } ( s ^ { \\prime } ) } { 1 - p _ { \\theta } ( s ) } R ^ { D \\setminus \\{ s \\} } ( S ^ { k } , s ^ { \\prime } ) } . } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 271, + 587, + 725, + 703 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "For $s ^ { \\prime } = s$ we have $R ^ { D \\setminus \\{ s \\} } ( S ^ { k } , s ^ { \\prime } ) = 1$ by definition, so using equation 54 we can show that ", + "bbox": [ + 169, + 707, + 782, + 724 + ], + "page_idx": 21 + }, + { + "type": "equation", + "img_path": "images/941373c9e6ed240fe6a0ad7ccfcb8bc26b621b25ffdc7ff97d9ddb312f31505b.jpg", + "text": "$$\n\\begin{array} { r l } & { \\displaystyle \\sum _ { s ^ { \\prime } \\in S ^ { k } } p _ { \\theta } ( s ^ { \\prime } ) R ^ { D N \\setminus \\{ s \\} } ( S ^ { k } , s ^ { \\prime } ) f ( s ^ { \\prime } ) } \\\\ & { = p _ { \\theta } ( s ) f ( s ) + \\displaystyle \\sum _ { s ^ { \\prime } \\in S ^ { k \\setminus \\{ s \\} } } p _ { \\theta } ( s ^ { \\prime } ) R ^ { D \\setminus \\{ s \\} } ( S ^ { k } , s ^ { \\prime } ) f ( s ^ { \\prime } ) } \\\\ & { = p _ { \\theta } ( s ) f ( s ) + ( 1 - p _ { \\theta } ( s ) ) \\displaystyle \\sum _ { s ^ { \\prime } \\in S ^ { k \\setminus \\{ s \\} } \\setminus \\{ s \\} } \\frac { p _ { \\theta } ( s ^ { \\prime } ) } { 1 - p _ { \\theta } ( s ) } R ^ { D \\setminus \\{ s \\} } ( S ^ { k } , s ^ { \\prime } ) f ( s ^ { \\prime } ) } \\\\ & { = p _ { \\theta } ( s ) f ( s ) + ( 1 - p _ { \\theta } ( s ) ) \\displaystyle \\sum _ { s ^ { \\prime } \\in S ^ { k \\setminus \\{ s \\} } \\setminus \\{ s \\} } P ( b _ { 2 } = s ^ { \\prime } | S ^ { k } , b _ { 1 } = s ) f ( s ^ { \\prime } ) } \\\\ & { = p _ { \\theta } ( s ) f ( s ) + ( 1 - p _ { \\theta } ( s ) ) \\| g _ { s ^ { \\prime } \\in S ^ { k \\setminus \\{ s \\} } \\setminus \\{ s \\} } } \\\\ & { = p _ { \\theta } ( s ) f ( s ) + ( 1 - p _ { \\theta } ( s ) ) \\| g _ { s ^ { \\prime } \\circ p _ { \\theta } ( b _ { 2 } \\mid S ^ { k } , b _ { 1 } = s ) } [ f ( b _ { 2 } ) ] } \\\\ & { = \\mathbb { E } _ { \\delta \\to p _ { \\theta } ( b _ { 2 } \\mid S ^ { k } , b _ { 1 } = s ) } [ p _ { \\theta } ( b _ { 1 } ) f ( b _ { 1 } ) + ( 1 - p _ { \\theta } ( b _ { 1 } ) ) f ( b _ { 2 } ) ] . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 269, + 729, + 730, + 925 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "Now we can show that the control variate is actually the result of Rao-Blackwellization: ", + "bbox": [ + 174, + 102, + 750, + 119 + ], + "page_idx": 22 + }, + { + "type": "equation", + "img_path": "images/5aa17a281b84d6ea5ad10f6f5e8779f8f9604e2a43778445838faba1d23ee89e.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathbb { E } _ { \\theta ^ { \\star } \\sim \\Theta ( \\theta ^ { ( k ) } ) } [ \\displaystyle \\sum _ { \\ell \\in \\mathbb { N } ^ { k } } \\nabla \\theta ^ { ( k ) } ( \\theta ^ { k ) } H ^ { ( S ^ { k } , \\ell ) } \\cdot \\sum _ { \\ell \\in \\mathbb { N } ^ { k } } \\mathcal { P } \\varphi ( \\theta ^ { ( k ) } H ^ { ( S ^ { k } , \\ell ) } ( \\theta ^ { k } , s ^ { \\prime } ) f ( s ^ { \\prime } ) ] } \\\\ & { = \\mathbb { E } _ { \\theta ^ { \\star } \\sim \\Theta ( \\theta ^ { ( k ) } ) } [ \\displaystyle \\sum _ { \\ell \\in \\mathbb { N } ^ { k } } \\mathcal { P } ( \\theta ^ { ( k ) } ) H ( \\theta ^ { ( k ) } , s ^ { \\prime } ) \\nabla \\theta ( \\theta , \\theta ^ { \\prime } ) \\wedge \\sum _ { \\ell \\in \\mathbb { N } ^ { k } } \\mathcal { P } ( \\theta ^ { ( k ) } H ^ { ( S ^ { k } , \\ell ) } ( \\theta ^ { k } ) \\cdot \\xi ^ { \\prime } ) f ( s ^ { \\prime } ) ] } \\\\ & { = \\mathbb { E } _ { \\theta ^ { \\star } \\sim \\Theta ( \\theta ^ { ( k ) } ) } [ \\displaystyle \\sum _ { \\ell \\in \\mathbb { N } ^ { k } } \\mathcal { P } ( \\theta ^ { ( k ) } - s | S ^ { k } | \\nabla \\theta ) \\cdot \\Big ( \\displaystyle \\sum _ { \\ell \\in \\mathbb { N } ^ { k } } \\mathcal { P } ( \\theta ^ { ( k ) } ) H ^ { ( S ^ { k } , \\ell ) } ( \\theta ^ { k } ) \\Big ) ] } \\\\ & { = \\mathbb { E } _ { \\theta ^ { \\star } \\sim \\Theta ( \\theta ^ { ( k ) } ) } [ \\displaystyle \\sum _ { \\ell \\in \\mathbb { N } ^ { k } } \\mathcal { P } ( \\hat { b } _ { 1 } - s | S ^ { k } | \\nabla \\theta ) \\cdot \\Big ( \\displaystyle \\sum _ { \\ell \\in \\mathbb { N } ^ { k } } \\mathcal { P } ( \\theta ^ { ( k ) } ) H ^ { ( S ^ { k } , \\ell ) } ( \\theta ^ { ( k ) } , \\theta ^ { \\prime } ) f ( s ^ { \\prime } ) ] } \\\\ & = \\mathbb { E } _ { \\theta ^ { \\star } \\sim \\Theta ( \\theta ^ { ( k ) } ) } [ \\displaystyle \\operatorname* { m i n } _ { \\theta ^ { \\star } \\sim \\Theta ( \\theta ^ { ( k ) } ) } [ \\nabla \\theta ^ { ( k ) } \\theta ^ { ( k ) } H ^ { ( S ^ { k } , \\ell ) } ] \\xi ^ { \\prime } s ^ \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 181, + 126, + 830, + 388 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "This expression depends only on $b _ { 1 }$ and $b _ { 2 }$ and we recognize the stochastic sum-and-sample estimator for $k = 2$ used as ‘baseline’. As a special case of equation 13 for $C = \\{ b _ { 1 } \\}$ , we have ", + "bbox": [ + 173, + 398, + 825, + 428 + ], + "page_idx": 22 + }, + { + "type": "equation", + "img_path": "images/2cafa0492e5f1eacfe47000c2ad3ffce6075884ea511cb796118f38c1fbd87c7.jpg", + "text": "$$\n\\mathbb { E } _ { b _ { 2 } \\sim p _ { \\theta } ( b _ { 2 } \\mid b _ { 1 } ) } \\left[ \\left( p _ { \\theta } ( b _ { 1 } ) f ( b _ { 1 } ) + ( 1 - p _ { \\theta } ( b _ { 1 } ) ) f ( b _ { 2 } ) \\right) \\right] = \\mathbb { E } _ { i \\sim p _ { \\theta } ( i ) } \\left[ f ( i ) \\right] .\n$$", + "text_format": "latex", + "bbox": [ + 267, + 433, + 728, + 452 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "Using this, and the fact that $\\begin{array} { r } { \\mathbb { E } _ { b _ { 1 } \\sim p _ { \\theta } ( b _ { 1 } ) } \\left[ \\nabla _ { \\theta } \\log p _ { \\theta } ( b _ { 1 } ) \\right] = \\nabla _ { \\theta } \\mathbb { E } _ { b _ { 1 } \\sim p _ { \\theta } ( b _ { 1 } ) } \\left[ 1 \\right] = \\nabla _ { \\theta } 1 = 0 } \\end{array}$ we find ", + "bbox": [ + 173, + 458, + 802, + 477 + ], + "page_idx": 22 + }, + { + "type": "equation", + "img_path": "images/bdf452d0c81a2a447c9b897bf8923e610b1dd3efe14bea58ceb1b7bbda495407.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathbb { E } _ { S ^ { k } \\sim p _ { \\theta } ( S ^ { k } ) } \\left[ \\displaystyle \\sum _ { s \\in S ^ { k } } \\nabla _ { \\theta } p _ { \\theta } ( s ) R ( S ^ { k } , s ) \\displaystyle \\sum _ { s ^ { \\prime } \\in S ^ { k } } p _ { \\theta } ( s ^ { \\prime } ) R ^ { D \\setminus \\{ s \\} } ( S ^ { k } , s ^ { \\prime } ) f ( s ^ { \\prime } ) \\right] } \\\\ & { = \\mathbb { E } _ { B ^ { k } \\sim p _ { \\theta } ( B ^ { k } ) } \\left[ \\nabla _ { \\theta } \\log p _ { \\theta } ( b _ { 1 } ) \\left( p _ { \\theta } ( b _ { 1 } ) f ( b _ { 1 } ) + ( 1 - p _ { \\theta } ( b _ { 1 } ) ) f ( b _ { 2 } ) \\right) \\right] } \\\\ & { = \\mathbb { E } _ { b _ { 1 } \\sim p _ { \\theta } ( b _ { 1 } ) } \\left[ \\nabla _ { \\theta } \\log p _ { \\theta } ( b _ { 1 } ) \\mathbb { E } _ { b _ { 2 } \\sim p _ { \\theta } ( b _ { 2 } | b _ { 1 } ) } \\left[ ( p _ { \\theta } ( b _ { 1 } ) f ( b _ { 1 } ) + ( 1 - p _ { \\theta } ( b _ { 1 } ) ) f ( b _ { 2 } ) ) \\right] \\right] } \\\\ & { = \\mathbb { E } _ { b _ { 1 } \\sim p _ { \\theta } ( b _ { 1 } ) } \\left[ \\nabla _ { \\theta } \\log p _ { \\theta } ( b _ { 1 } ) \\mathbb { E } _ { x \\sim p _ { \\theta } ( x ) } \\left[ f ( x ) \\right] \\right] } \\\\ & { = \\mathbb { E } _ { b _ { 1 } \\sim p _ { \\theta } ( b _ { 1 } ) } \\left[ \\nabla _ { \\theta } \\log p _ { \\theta } ( b _ { 1 } ) \\right] \\mathbb { E } _ { x \\sim p _ { \\theta } ( x ) } \\left[ f ( x ) \\right] } \\\\ & { = 0 \\cdot \\mathbb { E } _ { x \\sim p _ { \\theta } ( x ) } \\left[ f ( x ) \\right] } \\\\ & { = 0 } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 232, + 498, + 764, + 666 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "F THE RISK ESTIMATOR ", + "text_level": 1, + "bbox": [ + 174, + 102, + 397, + 118 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "F.1 PROOF OF BUILT-IN BASELINE", + "text_level": 1, + "bbox": [ + 176, + 133, + 423, + 147 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "We show that the RISK estimator, taking gradients through the normalization factor actually has a built-in baseline. We first use the log-derivative trick to rewrite the gradient of the ratio as the ratio times the logarithm of the gradient, and then swap the summation variables in the double sum that arises: ", + "bbox": [ + 174, + 159, + 825, + 214 + ], + "page_idx": 23 + }, + { + "type": "equation", + "img_path": "images/d4fc2e2e5933c5709e0115282aca9abd4d4a5eeb1046ee13e85dc7bc3a3c9cbf.jpg", + "text": "$$\n\\begin{array} { r l } \\varepsilon ^ { \\mathrm { s c } } > 5 1 - \\sum _ { j \\in \\mathcal { K } } \\frac { \\partial } { \\partial x _ { j } } \\varepsilon ( \\frac \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 256, + 219, + 743, + 553 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "G CATEGORICAL VARIATIONAL AUTO-ENCODER ", + "text_level": 1, + "bbox": [ + 173, + 564, + 598, + 580 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "G.1 EXPERIMENTAL DETAILS ", + "text_level": 1, + "bbox": [ + 174, + 595, + 392, + 609 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "We use the code6 by Yin et al. (2019) to reproduce their categorical VAE experiment, of which we include details here for self-containment. The dataset is MNIST, statically binarized by thresholding at 0.5 (although we include results using the standard binarized dataset by Salakhutdinov & Murray (2008); Larochelle & Murray (2011) in Section G.2). The latent representation $_ { z }$ is $K = 2 0$ dimensional with $C = 1 0$ categories per dimension with a uniform prior $p ( z _ { k } = c ) = 1 / C , k = 1 , . . . , K$ . The encoder is parameterized by $\\phi$ as $\\begin{array} { r } { q _ { \\phi } ( z | \\pmb { x } ) = \\prod _ { k } q _ { \\phi } ( z _ { k } | \\pmb { \\bar { x } } ) } \\end{array}$ and has two fully connected hidden layers with 512 and 256 hidden nodes respectively, with LeakyReLU $\\mathit { \\Phi } _ { \\mathrm { ( \\alpha ) } } = 0 . 1$ ) activations. The decoder, parameterized by $\\pmb \\theta$ , is given by $\\begin{array} { r } { \\bar { p _ { \\pmb \\theta } } ( \\pmb x | z ) \\dot { = } \\prod _ { i } p _ { \\pmb \\theta } ( x _ { i } | \\pmb z ) } \\end{array}$ , where $x _ { i } \\in \\{ 0 , 1 \\}$ are the pixel values, and has fully connected hidden layers with 256 and 512 nodes and LeakyReLU activation. ", + "bbox": [ + 173, + 621, + 825, + 747 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "ELBO optimization. The evidence lower bound (ELBO) that we optimize is given by ", + "bbox": [ + 166, + 761, + 753, + 776 + ], + "page_idx": 23 + }, + { + "type": "equation", + "img_path": "images/11fc4483bac1bab571c6eb2989f4310edc1f93d523bcb801442db4bd3f334b47.jpg", + "text": "$$\n\\begin{array} { r } { \\mathcal { L } ( \\phi , \\pmb { \\theta } ) = \\mathbb { E } _ { z \\sim q _ { \\phi } ( z \\vert x ) } \\left[ \\ln p _ { \\pmb { \\theta } } ( \\pmb { x } \\vert z ) + \\ln p ( z ) - \\ln q _ { \\phi } ( z \\vert x ) \\right] } \\\\ { = \\mathbb { E } _ { z \\sim q _ { \\phi } ( z \\vert x ) } \\left[ \\ln p _ { \\pmb { \\theta } } ( \\pmb { x } \\vert z ) \\right] - K L ( q _ { \\phi } ( z \\vert x ) \\vert \\vert p ( z ) ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 299, + 780, + 697, + 820 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "For the decoder parameters $\\pmb \\theta$ , since $q _ { \\phi } ( z | \\boldsymbol { x } )$ does not depend on $\\pmb \\theta$ , it follows that ", + "bbox": [ + 173, + 821, + 712, + 838 + ], + "page_idx": 23 + }, + { + "type": "equation", + "img_path": "images/141335888e50bf6a027bede7f5a9b8c0923d73d3b68ac93b2a5cde2fa4e49d8e.jpg", + "text": "$$\n\\nabla _ { \\pmb \\theta } \\mathcal L ( \\phi , \\pmb \\theta ) = \\mathbb E _ { z \\sim q _ { \\phi } ( z | x ) } \\left[ \\nabla _ { \\pmb \\theta } \\ln p _ { \\pmb \\theta } ( \\pmb x | z ) \\right] .\n$$", + "text_format": "latex", + "bbox": [ + 354, + 842, + 642, + 861 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "or the encoder parameters $\\phi$ , we can write $\\nabla _ { \\phi } \\mathcal { L } ( \\phi , \\theta )$ using equation 57 and equation 19 as ", + "bbox": [ + 192, + 863, + 787, + 880 + ], + "page_idx": 23 + }, + { + "type": "equation", + "img_path": "images/278208fac71600b9253b8dca8238bbf449eaac59045f527748b682df7a879ecb.jpg", + "text": "$$\n\\nabla _ { \\phi } \\mathcal { L } ( \\phi , \\pmb { \\theta } ) = \\mathbb { E } _ { z \\sim q _ { \\phi } ( z | \\pmb { x } ) } \\left[ \\nabla _ { \\phi } \\ln q _ { \\phi } ( z | \\pmb { x } ) \\ln p _ { \\theta } ( \\pmb { x } | z ) \\right] - \\nabla _ { \\phi } K L ( q _ { \\phi } ( z | \\pmb { x } ) | | p ( z ) ) .\n$$", + "text_format": "latex", + "bbox": [ + 212, + 882, + 758, + 901 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "This assumes we can compute the $\\mathrm { K L }$ divergence analytically. Alternatively, we can use a sample estimate for the KL divergence, and use equation 56 with equation 19 to obtain ", + "bbox": [ + 173, + 103, + 823, + 132 + ], + "page_idx": 24 + }, + { + "type": "equation", + "img_path": "images/9047984934ee20c3367dfc54f7d948b00ec5fc53723581b47394e47e41f9a1e7.jpg", + "text": "$$\n\\begin{array} { l } { \\nabla _ { \\phi } \\mathcal { L } ( \\phi , \\theta ) = \\mathbb { E } _ { z \\sim q _ { \\phi } ( z | x ) } \\left[ \\nabla _ { \\phi } \\ln q _ { \\phi } ( z | x ) ( \\ln p _ { \\theta } ( x | z ) + \\ln p ( z ) - \\ln q _ { \\phi } ( z | x ) ) + \\nabla _ { \\phi } \\ln q _ { \\phi } ( z | x ) \\right] , } \\\\ { \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad } \\\\ { = \\mathbb { E } _ { z \\sim q _ { \\phi } ( z | x ) } \\left[ \\nabla _ { \\phi } \\ln q _ { \\phi } ( z | x ) ( \\ln p _ { \\theta } ( x | z ) - \\ln q _ { \\phi } ( z | x ) ) \\right] . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 176, + 137, + 821, + 193 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "Here we have left out the term $\\begin{array} { r } { \\mathbb { E } _ { z \\sim q _ { \\phi } ( z | \\pmb { x } ) } \\left[ \\nabla _ { \\phi } \\ln q _ { \\phi } ( z | \\pmb { x } ) \\right] = 0 } \\end{array}$ , similar to Roeder et al. (2017), and, assuming a uniform (i.e. constant) prior $\\ln p ( z )$ , the term ${ { \\mathbb E } } _ { z \\sim q _ { \\phi } ( z | x ) } \\left[ \\nabla _ { \\phi } \\ln q _ { \\phi } ( z | x ) \\ln p ( z ) \\right] = 0$ . With a built-in baseline, this second term cancels out automatically, even if it is implemented. Despite the similarity of the equation 56 and equation 57, their gradient estimates (equation 60 and equation 59) are structurally dissimilar and care should be taken to implement the REINFORCE estimator (or related estimators such as ARSM and the unordered set estimator) correctly using automatic differentiation software. Using Gumbel-Softmax and RELAX, we take gradients ‘directly’ through the objective in equation 57. ", + "bbox": [ + 174, + 198, + 825, + 313 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "We optimize the ELBO using the analytic KL for 1000 epochs using the Adam (Kingma & Ba, 2015) optimizer. We use a learning rate of $\\mathrm { i 0 ^ { - 3 } }$ for all estimators except Gumbel-Softmax and RELAX, which use a learning rate of $\\bar { 1 } 0 ^ { - 4 }$ as we found they diverged with a higher learning rate. For ARSM, as an exception we use the sample KL, and a learning rate of $3 \\cdot 1 0 ^ { - \\overline { { 4 } } }$ , as suggested by the authors. All reported ELBO values are computed using the analytic KL. Our code is publicly available7. ", + "bbox": [ + 174, + 319, + 825, + 388 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "G.2 ADDITIONAL RESULTS ", + "text_level": 1, + "bbox": [ + 174, + 406, + 374, + 420 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "Gradient variance during training. We also evaluate gradient variance of different estimators during different stages of training. We measure the variance of different estimators with $k = 4$ samples during training with REINFORCE with replacement, such that all estimators are computed for the same model parameters. The results during training, given in Figure 4, are similar to the results for the trained model in Table 1, except for at the beginning of training, although the rankings of different estimator are mostly the same. ", + "bbox": [ + 174, + 431, + 825, + 515 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "Negative ELBO on validation set. Figure 5 shows the -ELBO evaluated during training on the validation set. For the large latent space, we see validation error quickly increase (after reaching a minimum) which is likely because of overfitting (due to improved optimization), a phenomenon observed before (Tucker et al., 2017; Grathwohl et al., 2018). Note that before the overfitting starts, both REINFORCE without replacement and the unordered set estimator achieve a validation error similar to the other estimators, such that in a practical setting, one can use early stopping. ", + "bbox": [ + 174, + 530, + 825, + 614 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "Results using standard binarized MNIST dataset. Instead of using the MNIST dataset binarized by thresholding values at 0.5 (as in the code and paper by Yin et al. (2019)) we also experiment with the standard (fixed) binarized dataset by Salakhutdinov & Murray (2008); Larochelle & Murray (2011), for which we plot train and validation curves for two runs on the small and large domain in Figure 6. This gives more realistic (higher) -ELBO scores, although we still observe the effect of overfitting. As this is a bit more unstable setting, one of the runs using REINFORCE with replacement diverged, but in general the relative performance of estimators is similar to using the dataset with 0.5 threshold. ", + "bbox": [ + 173, + 630, + 825, + 741 + ], + "page_idx": 24 + }, + { + "type": "image", + "img_path": "images/3cf64085ef97333430dfc6ae343dba9cc3bb81a28a8d5d46e4e908f59c58c425.jpg", + "image_caption": [ + "Training log variance (10 2 latent space), $k = 4$ samples ", + "Figure 4: Gradient log variance of different unbiased estimators with $k = 4$ samples, estimated every 100 (out of 1000) epochs while training using REINFORCE with replacement. Each estimator is computed 1000 times with different latent samples for a fixed minibatch (the first 100 records of training data). We report (the logarithm of) the sum of the variances per parameter (trace of the covariance matrix). Some lines coincide, so we sort the legend by the last measurement and report its value. " + ], + "image_footnote": [], + "bbox": [ + 189, + 193, + 808, + 348 + ], + "page_idx": 25 + }, + { + "type": "image", + "img_path": "images/9db0e1232d97d8b19cc6e8b5122295f21e9ef07cda2dbb6e7624da7dadc43d3b.jpg", + "image_caption": [ + "Figure 5: Smoothed validation -ELBO curves during training of two independent runs when with different estimators with $k = 1$ , 4 or 8 (thicker lines) samples (ARSM has a variable number). Some lines coincide, so we sort the legend by the lowest -ELBO achieved and report this value. " + ], + "image_footnote": [], + "bbox": [ + 191, + 617, + 808, + 785 + ], + "page_idx": 25 + }, + { + "type": "image", + "img_path": "images/d1fca44c1c3c18bdebf0fcdc5ea9a18b01b73cd2389f61f27b68f5e6d89e5bae.jpg", + "image_caption": [ + "Figure 6: Smoothed training and validation -ELBO curves during training on the standard binarized MNIST dataset (Salakhutdinov & Murray, 2008; Larochelle & Murray, 2011) of two independent runs when with different estimators with $k = 1$ , 4 or 8 (thicker lines) samples (ARSM has a variable number). Some lines coincide, so we sort the legend by the lowest -ELBO achieved and report this value. " + ], + "image_footnote": [], + "bbox": [ + 187, + 303, + 808, + 641 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "H TRAVELLING SALESMAN PROBLEM ", + "text_level": 1, + "bbox": [ + 174, + 102, + 504, + 118 + ], + "page_idx": 27 + }, + { + "type": "text", + "text": "The Travelling Salesman Problem (TSP) is a discrete optimization problem that consists of finding the order in which to visit a set of locations, given as $x , y$ coordinates, to minimize the total length of the tour, starting and ending at the same location. As a tour can be considered a sequence of locations, this problem can be set up as a sequence modelling problem, that can be either addressed using supervised (Vinyals et al., 2015) or reinforcement learning (Bello et al., 2016; Kool et al., 2019a). ", + "bbox": [ + 174, + 133, + 825, + 217 + ], + "page_idx": 27 + }, + { + "type": "text", + "text": "Kool et al. (2019a) introduced the Attention Model, which is an encoder-decoder model which considers a TSP instances as a fully connected graph. The encoder computes embeddings for all nodes (locations) and the decoder produces a tour, which is sequence of nodes, selecting one note at the time using an attention mechanism, and uses this autoregressively as input to select the next node. In Kool et al. (2019a), this model is trained using REINFORCE, with a greedy rollout used as baseline to reduce variance. ", + "bbox": [ + 174, + 223, + 825, + 308 + ], + "page_idx": 27 + }, + { + "type": "text", + "text": "We use the code by Kool et al. (2019a) to train the exact same Attention Model (for details we refer to Kool et al. (2019a)), and minimize the expected length of a tour predicted by the model, using different gradient estimators. We did not do any hyperparameter optimization and used the exact same training details, using the Adam optimizer (Kingma & Ba, 2015) with a learning rate of $1 0 ^ { - 4 }$ (no decay) for 100 epochs for all estimators. For the baselines, we used the same batch size of 512, but for estimators that use $k = 4$ samples, we used a batch size of $\\frac { 5 1 2 } { 4 } = 1 2 8$ to compensate for the additional samples (this makes multi-sample methods actually faster since the encoder still needs to be evaluated only once). ", + "bbox": [ + 174, + 314, + 825, + 426 + ], + "page_idx": 27 + } +] \ No newline at end of file diff --git a/parse/train/rklEj2EFvB/rklEj2EFvB_middle.json b/parse/train/rklEj2EFvB/rklEj2EFvB_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..274bfbb0a70c2f7956fc643d58c18d97e95da211 --- /dev/null +++ b/parse/train/rklEj2EFvB/rklEj2EFvB_middle.json @@ -0,0 +1,66071 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 79, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 505, + 97 + ], + "score": 1.0, + "content": "ESTIMATING GRADIENTS FOR DISCRETE RANDOM", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 98, + 493, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 98, + 493, + 118 + ], + "score": 1.0, + "content": "VARIABLES BY SAMPLING WITHOUT REPLACEMENT", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 243, + 135, + 352, + 168 + ], + "lines": [ + { + "bbox": [ + 242, + 135, + 313, + 147 + ], + "spans": [ + { + "bbox": [ + 242, + 135, + 313, + 147 + ], + "score": 1.0, + "content": "Herke van Hoof", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 242, + 146, + 346, + 158 + ], + "spans": [ + { + "bbox": [ + 242, + 146, + 346, + 158 + ], + "score": 1.0, + "content": "University of Amsterdam", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 242, + 157, + 352, + 169 + ], + "spans": [ + { + "bbox": [ + 242, + 157, + 352, + 169 + ], + "score": 1.0, + "content": "h.c.vanhoof@uva.nl", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 112, + 135, + 216, + 179 + ], + "lines": [ + { + "bbox": [ + 112, + 135, + 169, + 146 + ], + "spans": [ + { + "bbox": [ + 112, + 135, + 169, + 146 + ], + "score": 1.0, + "content": "Wouter Kool", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 146, + 216, + 157 + ], + "spans": [ + { + "bbox": [ + 112, + 146, + 216, + 157 + ], + "score": 1.0, + "content": "University of Amsterdam", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 112, + 157, + 147, + 168 + ], + "spans": [ + { + "bbox": [ + 112, + 157, + 147, + 168 + ], + "score": 1.0, + "content": "ORTEC", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 111, + 169, + 216, + 179 + ], + "spans": [ + { + "bbox": [ + 111, + 169, + 216, + 179 + ], + "score": 1.0, + "content": "w.w.m.kool@uva.nl", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 378, + 135, + 482, + 180 + ], + "lines": [ + { + "bbox": [ + 377, + 133, + 436, + 148 + ], + "spans": [ + { + "bbox": [ + 377, + 133, + 436, + 148 + ], + "score": 1.0, + "content": "Max Welling", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 378, + 145, + 482, + 158 + ], + "spans": [ + { + "bbox": [ + 378, + 145, + 482, + 158 + ], + "score": 1.0, + "content": "University of Amsterdam", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 378, + 157, + 410, + 168 + ], + "spans": [ + { + "bbox": [ + 378, + 157, + 410, + 168 + ], + "score": 1.0, + "content": "CIFAR", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 378, + 169, + 475, + 180 + ], + "spans": [ + { + "bbox": [ + 378, + 169, + 475, + 180 + ], + "score": 1.0, + "content": "m.welling@uva.nl", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 8.5 + }, + { + "type": "title", + "bbox": [ + 278, + 208, + 333, + 220 + ], + "lines": [ + { + "bbox": [ + 276, + 207, + 336, + 222 + ], + "spans": [ + { + "bbox": [ + 276, + 207, + 336, + 222 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 143, + 234, + 468, + 344 + ], + "lines": [ + { + "bbox": [ + 142, + 234, + 469, + 246 + ], + "spans": [ + { + "bbox": [ + 142, + 234, + 469, + 246 + ], + "score": 1.0, + "content": "We derive an unbiased estimator for expectations over discrete random variables", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 244, + 469, + 257 + ], + "spans": [ + { + "bbox": [ + 141, + 244, + 469, + 257 + ], + "score": 1.0, + "content": "based on sampling without replacement, which reduces variance as it avoids", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 142, + 256, + 469, + 267 + ], + "spans": [ + { + "bbox": [ + 142, + 256, + 469, + 267 + ], + "score": 1.0, + "content": "duplicate samples. We show that our estimator can be derived as the Rao-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 266, + 469, + 279 + ], + "spans": [ + { + "bbox": [ + 141, + 266, + 469, + 279 + ], + "score": 1.0, + "content": "Blackwellization of three different estimators. Combining our estimator with RE-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 277, + 469, + 290 + ], + "spans": [ + { + "bbox": [ + 141, + 277, + 469, + 290 + ], + "score": 1.0, + "content": "INFORCE, we obtain a policy gradient estimator and we reduce its variance using", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 288, + 470, + 300 + ], + "spans": [ + { + "bbox": [ + 141, + 288, + 470, + 300 + ], + "score": 1.0, + "content": "a built-in control variate which is obtained without additional model evaluations.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 299, + 469, + 312 + ], + "spans": [ + { + "bbox": [ + 141, + 299, + 469, + 312 + ], + "score": 1.0, + "content": "The resulting estimator is closely related to other gradient estimators. Experiments", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 311, + 469, + 323 + ], + "spans": [ + { + "bbox": [ + 142, + 311, + 469, + 323 + ], + "score": 1.0, + "content": "with a toy problem, a categorical Variational Auto-Encoder and a structured pre-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 321, + 469, + 334 + ], + "spans": [ + { + "bbox": [ + 141, + 321, + 469, + 334 + ], + "score": 1.0, + "content": "diction problem show that our estimator is the only estimator that is consistently", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 331, + 402, + 347 + ], + "spans": [ + { + "bbox": [ + 141, + 331, + 402, + 347 + ], + "score": 1.0, + "content": "among the best estimators in both high and low entropy settings.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 18.5 + }, + { + "type": "title", + "bbox": [ + 108, + 365, + 206, + 378 + ], + "lines": [ + { + "bbox": [ + 105, + 364, + 208, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 208, + 381 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 389, + 505, + 434 + ], + "lines": [ + { + "bbox": [ + 105, + 389, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 505, + 401 + ], + "score": 1.0, + "content": "Put replacement in your basement! We derive the unordered set estimator1: an unbiased (gradi-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 401, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 505, + 413 + ], + "score": 1.0, + "content": "ent) estimator for expectations over discrete random variables based on (unordered sets of) samples", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 412, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 505, + 425 + ], + "score": 1.0, + "content": "without replacement. In particular, we consider the problem of estimating (the gradient of) the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 423, + 432, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 165, + 436 + ], + "score": 1.0, + "content": "expectation of", + "type": "text" + }, + { + "bbox": [ + 166, + 423, + 187, + 435 + ], + "score": 0.92, + "content": "f ( { \\pmb x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 423, + 215, + 436 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 215, + 425, + 223, + 433 + ], + "score": 0.79, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 423, + 328, + 436 + ], + "score": 1.0, + "content": "has a discrete distribution", + "type": "text" + }, + { + "bbox": [ + 329, + 425, + 335, + 435 + ], + "score": 0.81, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 423, + 403, + 436 + ], + "score": 1.0, + "content": "over the domain", + "type": "text" + }, + { + "bbox": [ + 403, + 424, + 413, + 433 + ], + "score": 0.81, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 423, + 432, + 436 + ], + "score": 1.0, + "content": ", i.e.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5 + }, + { + "type": "interline_equation", + "bbox": [ + 230, + 440, + 381, + 461 + ], + "lines": [ + { + "bbox": [ + 230, + 440, + 381, + 461 + ], + "spans": [ + { + "bbox": [ + 230, + 440, + 381, + 461 + ], + "score": 0.94, + "content": "\\mathbb { E } _ { { \\pmb x } \\sim p ( { \\pmb x } ) } [ f ( { \\pmb x } ) ] = \\sum _ { { \\pmb x } \\in D } p ( { \\pmb x } ) f ( { \\pmb x } ) .", + "type": "interline_equation", + "image_path": "a18d756698f674fda23751c9deccb14a866693f84ffad8812a7db5d0aa84f303.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 230, + 440, + 381, + 461 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 465, + 505, + 543 + ], + "lines": [ + { + "bbox": [ + 106, + 466, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 505, + 478 + ], + "score": 1.0, + "content": "This expectation comes up in reinforcement learning, discrete latent variable modelling (e.g. for", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 477, + 506, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 506, + 489 + ], + "score": 1.0, + "content": "compression), structured prediction (e.g. for translation), hard attention and many other tasks that", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 488, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 505, + 500 + ], + "score": 1.0, + "content": "use models with discrete operations in their computational graphs (see e.g. Jang et al. (2016)). In", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 497, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 141, + 513 + ], + "score": 1.0, + "content": "general,", + "type": "text" + }, + { + "bbox": [ + 142, + 500, + 150, + 508 + ], + "score": 0.73, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 497, + 506, + 513 + ], + "score": 1.0, + "content": "has structure (such as a sequence), but we can treat it as a ‘flat’ distribution, omitting", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 507, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 192, + 522 + ], + "score": 1.0, + "content": "the bold notation, so", + "type": "text" + }, + { + "bbox": [ + 192, + 511, + 199, + 519 + ], + "score": 0.71, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 507, + 340, + 522 + ], + "score": 1.0, + "content": "has a categorical distribution over", + "type": "text" + }, + { + "bbox": [ + 340, + 510, + 351, + 519 + ], + "score": 0.81, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 507, + 389, + 522 + ], + "score": 1.0, + "content": "given by", + "type": "text" + }, + { + "bbox": [ + 390, + 509, + 442, + 521 + ], + "score": 0.92, + "content": "p ( x ) , x \\in D", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 507, + 505, + 522 + ], + "score": 1.0, + "content": ". Typically, the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 520, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 218, + 533 + ], + "score": 1.0, + "content": "distribution has parameters", + "type": "text" + }, + { + "bbox": [ + 219, + 521, + 225, + 530 + ], + "score": 0.77, + "content": "\\pmb { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 520, + 505, + 533 + ], + "score": 1.0, + "content": ", which are learnt through gradient descent. This requires estimating", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 531, + 499, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 156, + 546 + ], + "score": 1.0, + "content": "the gradient", + "type": "text" + }, + { + "bbox": [ + 157, + 531, + 233, + 544 + ], + "score": 0.93, + "content": "\\nabla _ { \\pmb { \\theta } } \\bar { \\mathbb { E } } _ { \\boldsymbol { x } \\sim p _ { \\pmb { \\theta } } ( \\boldsymbol { x } ) } [ f ( \\boldsymbol { x } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 531, + 327, + 546 + ], + "score": 1.0, + "content": ", using a set of samples", + "type": "text" + }, + { + "bbox": [ + 327, + 532, + 335, + 541 + ], + "score": 0.81, + "content": "S", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 531, + 419, + 546 + ], + "score": 1.0, + "content": ". A gradient estimate", + "type": "text" + }, + { + "bbox": [ + 420, + 531, + 439, + 543 + ], + "score": 0.92, + "content": "e ( S )", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 531, + 499, + 546 + ], + "score": 1.0, + "content": "is unbiased if", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33 + }, + { + "type": "interline_equation", + "bbox": [ + 240, + 549, + 371, + 564 + ], + "lines": [ + { + "bbox": [ + 240, + 549, + 371, + 564 + ], + "spans": [ + { + "bbox": [ + 240, + 549, + 371, + 564 + ], + "score": 0.92, + "content": "\\mathbb { E } _ { S } [ e ( S ) ] = \\nabla _ { \\pmb { \\theta } } \\mathbb { E } _ { \\pmb { x } \\sim p _ { \\pmb { \\theta } } ( \\pmb { x } ) } [ f ( \\pmb { x } ) ] .", + "type": "interline_equation", + "image_path": "f611a4818678ca6d6a94189e9ceb1ebc2fee17ab410928ec5188501d7f982d21.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 240, + 549, + 371, + 564 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 568, + 505, + 635 + ], + "lines": [ + { + "bbox": [ + 106, + 569, + 504, + 580 + ], + "spans": [ + { + "bbox": [ + 106, + 569, + 158, + 580 + ], + "score": 1.0, + "content": "The samples", + "type": "text" + }, + { + "bbox": [ + 159, + 569, + 167, + 578 + ], + "score": 0.81, + "content": "S", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 569, + 504, + 580 + ], + "score": 1.0, + "content": "can be sampled independently or using alternatives such as stratified sampling which", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 580, + 504, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 580, + 504, + 591 + ], + "score": 1.0, + "content": "reduce variance to increase the speed of learning. In this paper, we derive an unbiased gradient esti-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 589, + 504, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 409, + 602 + ], + "score": 1.0, + "content": "mator that reduces variance by avoiding duplicate samples, i.e. by sampling", + "type": "text" + }, + { + "bbox": [ + 410, + 591, + 417, + 600 + ], + "score": 0.81, + "content": "S", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 589, + 504, + 602 + ], + "score": 1.0, + "content": "without replacement.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 600, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 505, + 614 + ], + "score": 1.0, + "content": "This is challenging as samples without replacement are dependent and have marginal distributions", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 611, + 506, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 199, + 625 + ], + "score": 1.0, + "content": "that are different from", + "type": "text" + }, + { + "bbox": [ + 199, + 612, + 219, + 624 + ], + "score": 0.92, + "content": "p ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 611, + 506, + 625 + ], + "score": 1.0, + "content": ". We further reduce the variance by deriving a built-in control variate,", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 622, + 407, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 407, + 636 + ], + "score": 1.0, + "content": "which maintains the unbiasedness and does not require additional samples.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 107, + 646, + 505, + 713 + ], + "lines": [ + { + "bbox": [ + 105, + 647, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 647, + 505, + 659 + ], + "score": 1.0, + "content": "Related work. Many algorithms for estimating gradients for discrete distributions have been pro-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 657, + 506, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 506, + 671 + ], + "score": 1.0, + "content": "posed. A general and widely used estimator is REINFORCE (Williams, 1992). Biased gradients", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 669, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 505, + 681 + ], + "score": 1.0, + "content": "based on a continuous relaxations of the discrete distribution (known as Gumbel-Softmax or Con-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 681, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 106, + 681, + 505, + 692 + ], + "score": 1.0, + "content": "crete) were jointly introduced by Jang et al. (2016) and Maddison et al. (2016). These can be com-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 690, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 505, + 703 + ], + "score": 1.0, + "content": "bined with the straight through estimator (Bengio et al., 2013) if the model requires discrete samples", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 701, + 505, + 714 + ], + "spans": [ + { + "bbox": [ + 105, + 701, + 505, + 714 + ], + "score": 1.0, + "content": "or be used to construct control variates for REINFORCE, as in REBAR (Tucker et al., 2017) or", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 46.5 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 115, + 723, + 484, + 732 + ], + "lines": [ + { + "bbox": [ + 120, + 720, + 486, + 733 + ], + "spans": [ + { + "bbox": [ + 120, + 720, + 486, + 733 + ], + "score": 1.0, + "content": "1Code available at https://github.com/wouterkool/estimating-gradients-without-replacement.", + "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, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 79, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 505, + 97 + ], + "score": 1.0, + "content": "ESTIMATING GRADIENTS FOR DISCRETE RANDOM", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 98, + 493, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 98, + 493, + 118 + ], + "score": 1.0, + "content": "VARIABLES BY SAMPLING WITHOUT REPLACEMENT", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 243, + 135, + 352, + 168 + ], + "lines": [ + { + "bbox": [ + 242, + 135, + 313, + 147 + ], + "spans": [ + { + "bbox": [ + 242, + 135, + 313, + 147 + ], + "score": 1.0, + "content": "Herke van Hoof", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 242, + 146, + 346, + 158 + ], + "spans": [ + { + "bbox": [ + 242, + 146, + 346, + 158 + ], + "score": 1.0, + "content": "University of Amsterdam", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 242, + 157, + 352, + 169 + ], + "spans": [ + { + "bbox": [ + 242, + 157, + 352, + 169 + ], + "score": 1.0, + "content": "h.c.vanhoof@uva.nl", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6, + "bbox_fs": [ + 242, + 135, + 352, + 169 + ] + }, + { + "type": "list", + "bbox": [ + 112, + 135, + 216, + 179 + ], + "lines": [ + { + "bbox": [ + 112, + 135, + 169, + 146 + ], + "spans": [ + { + "bbox": [ + 112, + 135, + 169, + 146 + ], + "score": 1.0, + "content": "Wouter Kool", + "type": "text" + } + ], + "index": 2, + "is_list_end_line": true + }, + { + "bbox": [ + 112, + 146, + 216, + 157 + ], + "spans": [ + { + "bbox": [ + 112, + 146, + 216, + 157 + ], + "score": 1.0, + "content": "University of Amsterdam", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 112, + 157, + 147, + 168 + ], + "spans": [ + { + "bbox": [ + 112, + 157, + 147, + 168 + ], + "score": 1.0, + "content": "ORTEC", + "type": "text" + } + ], + "index": 8, + "is_list_end_line": true + }, + { + "bbox": [ + 111, + 169, + 216, + 179 + ], + "spans": [ + { + "bbox": [ + 111, + 169, + 216, + 179 + ], + "score": 1.0, + "content": "w.w.m.kool@uva.nl", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 377, + 133, + 436, + 148 + ], + "spans": [ + { + "bbox": [ + 377, + 133, + 436, + 148 + ], + "score": 1.0, + "content": "Max Welling", + "type": "text" + } + ], + "index": 4, + "is_list_end_line": true + }, + { + "bbox": [ + 378, + 145, + 482, + 158 + ], + "spans": [ + { + "bbox": [ + 378, + 145, + 482, + 158 + ], + "score": 1.0, + "content": "University of Amsterdam", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 378, + 157, + 410, + 168 + ], + "spans": [ + { + "bbox": [ + 378, + 157, + 410, + 168 + ], + "score": 1.0, + "content": "CIFAR", + "type": "text" + } + ], + "index": 10, + "is_list_end_line": true + }, + { + "bbox": [ + 378, + 169, + 475, + 180 + ], + "spans": [ + { + "bbox": [ + 378, + 169, + 475, + 180 + ], + "score": 1.0, + "content": "m.welling@uva.nl", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + } + ], + "index": 6.5, + "bbox_fs": [ + 111, + 135, + 216, + 179 + ] + }, + { + "type": "list", + "bbox": [ + 378, + 135, + 482, + 180 + ], + "lines": [], + "index": 8.5, + "bbox_fs": [ + 377, + 133, + 482, + 180 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 278, + 208, + 333, + 220 + ], + "lines": [ + { + "bbox": [ + 276, + 207, + 336, + 222 + ], + "spans": [ + { + "bbox": [ + 276, + 207, + 336, + 222 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 143, + 234, + 468, + 344 + ], + "lines": [ + { + "bbox": [ + 142, + 234, + 469, + 246 + ], + "spans": [ + { + "bbox": [ + 142, + 234, + 469, + 246 + ], + "score": 1.0, + "content": "We derive an unbiased estimator for expectations over discrete random variables", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 244, + 469, + 257 + ], + "spans": [ + { + "bbox": [ + 141, + 244, + 469, + 257 + ], + "score": 1.0, + "content": "based on sampling without replacement, which reduces variance as it avoids", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 142, + 256, + 469, + 267 + ], + "spans": [ + { + "bbox": [ + 142, + 256, + 469, + 267 + ], + "score": 1.0, + "content": "duplicate samples. We show that our estimator can be derived as the Rao-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 266, + 469, + 279 + ], + "spans": [ + { + "bbox": [ + 141, + 266, + 469, + 279 + ], + "score": 1.0, + "content": "Blackwellization of three different estimators. Combining our estimator with RE-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 277, + 469, + 290 + ], + "spans": [ + { + "bbox": [ + 141, + 277, + 469, + 290 + ], + "score": 1.0, + "content": "INFORCE, we obtain a policy gradient estimator and we reduce its variance using", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 288, + 470, + 300 + ], + "spans": [ + { + "bbox": [ + 141, + 288, + 470, + 300 + ], + "score": 1.0, + "content": "a built-in control variate which is obtained without additional model evaluations.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 299, + 469, + 312 + ], + "spans": [ + { + "bbox": [ + 141, + 299, + 469, + 312 + ], + "score": 1.0, + "content": "The resulting estimator is closely related to other gradient estimators. Experiments", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 311, + 469, + 323 + ], + "spans": [ + { + "bbox": [ + 142, + 311, + 469, + 323 + ], + "score": 1.0, + "content": "with a toy problem, a categorical Variational Auto-Encoder and a structured pre-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 321, + 469, + 334 + ], + "spans": [ + { + "bbox": [ + 141, + 321, + 469, + 334 + ], + "score": 1.0, + "content": "diction problem show that our estimator is the only estimator that is consistently", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 331, + 402, + 347 + ], + "spans": [ + { + "bbox": [ + 141, + 331, + 402, + 347 + ], + "score": 1.0, + "content": "among the best estimators in both high and low entropy settings.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 18.5, + "bbox_fs": [ + 141, + 234, + 470, + 347 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 365, + 206, + 378 + ], + "lines": [ + { + "bbox": [ + 105, + 364, + 208, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 208, + 381 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 389, + 505, + 434 + ], + "lines": [ + { + "bbox": [ + 105, + 389, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 505, + 401 + ], + "score": 1.0, + "content": "Put replacement in your basement! We derive the unordered set estimator1: an unbiased (gradi-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 401, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 505, + 413 + ], + "score": 1.0, + "content": "ent) estimator for expectations over discrete random variables based on (unordered sets of) samples", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 412, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 505, + 425 + ], + "score": 1.0, + "content": "without replacement. In particular, we consider the problem of estimating (the gradient of) the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 423, + 432, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 165, + 436 + ], + "score": 1.0, + "content": "expectation of", + "type": "text" + }, + { + "bbox": [ + 166, + 423, + 187, + 435 + ], + "score": 0.92, + "content": "f ( { \\pmb x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 423, + 215, + 436 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 215, + 425, + 223, + 433 + ], + "score": 0.79, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 423, + 328, + 436 + ], + "score": 1.0, + "content": "has a discrete distribution", + "type": "text" + }, + { + "bbox": [ + 329, + 425, + 335, + 435 + ], + "score": 0.81, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 423, + 403, + 436 + ], + "score": 1.0, + "content": "over the domain", + "type": "text" + }, + { + "bbox": [ + 403, + 424, + 413, + 433 + ], + "score": 0.81, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 423, + 432, + 436 + ], + "score": 1.0, + "content": ", i.e.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 389, + 505, + 436 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 230, + 440, + 381, + 461 + ], + "lines": [ + { + "bbox": [ + 230, + 440, + 381, + 461 + ], + "spans": [ + { + "bbox": [ + 230, + 440, + 381, + 461 + ], + "score": 0.94, + "content": "\\mathbb { E } _ { { \\pmb x } \\sim p ( { \\pmb x } ) } [ f ( { \\pmb x } ) ] = \\sum _ { { \\pmb x } \\in D } p ( { \\pmb x } ) f ( { \\pmb x } ) .", + "type": "interline_equation", + "image_path": "a18d756698f674fda23751c9deccb14a866693f84ffad8812a7db5d0aa84f303.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 230, + 440, + 381, + 461 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 465, + 505, + 543 + ], + "lines": [ + { + "bbox": [ + 106, + 466, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 505, + 478 + ], + "score": 1.0, + "content": "This expectation comes up in reinforcement learning, discrete latent variable modelling (e.g. for", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 477, + 506, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 506, + 489 + ], + "score": 1.0, + "content": "compression), structured prediction (e.g. for translation), hard attention and many other tasks that", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 488, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 505, + 500 + ], + "score": 1.0, + "content": "use models with discrete operations in their computational graphs (see e.g. Jang et al. (2016)). In", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 497, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 141, + 513 + ], + "score": 1.0, + "content": "general,", + "type": "text" + }, + { + "bbox": [ + 142, + 500, + 150, + 508 + ], + "score": 0.73, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 497, + 506, + 513 + ], + "score": 1.0, + "content": "has structure (such as a sequence), but we can treat it as a ‘flat’ distribution, omitting", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 507, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 192, + 522 + ], + "score": 1.0, + "content": "the bold notation, so", + "type": "text" + }, + { + "bbox": [ + 192, + 511, + 199, + 519 + ], + "score": 0.71, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 507, + 340, + 522 + ], + "score": 1.0, + "content": "has a categorical distribution over", + "type": "text" + }, + { + "bbox": [ + 340, + 510, + 351, + 519 + ], + "score": 0.81, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 507, + 389, + 522 + ], + "score": 1.0, + "content": "given by", + "type": "text" + }, + { + "bbox": [ + 390, + 509, + 442, + 521 + ], + "score": 0.92, + "content": "p ( x ) , x \\in D", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 507, + 505, + 522 + ], + "score": 1.0, + "content": ". Typically, the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 520, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 218, + 533 + ], + "score": 1.0, + "content": "distribution has parameters", + "type": "text" + }, + { + "bbox": [ + 219, + 521, + 225, + 530 + ], + "score": 0.77, + "content": "\\pmb { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 520, + 505, + 533 + ], + "score": 1.0, + "content": ", which are learnt through gradient descent. This requires estimating", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 531, + 499, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 156, + 546 + ], + "score": 1.0, + "content": "the gradient", + "type": "text" + }, + { + "bbox": [ + 157, + 531, + 233, + 544 + ], + "score": 0.93, + "content": "\\nabla _ { \\pmb { \\theta } } \\bar { \\mathbb { E } } _ { \\boldsymbol { x } \\sim p _ { \\pmb { \\theta } } ( \\boldsymbol { x } ) } [ f ( \\boldsymbol { x } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 531, + 327, + 546 + ], + "score": 1.0, + "content": ", using a set of samples", + "type": "text" + }, + { + "bbox": [ + 327, + 532, + 335, + 541 + ], + "score": 0.81, + "content": "S", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 531, + 419, + 546 + ], + "score": 1.0, + "content": ". A gradient estimate", + "type": "text" + }, + { + "bbox": [ + 420, + 531, + 439, + 543 + ], + "score": 0.92, + "content": "e ( S )", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 531, + 499, + 546 + ], + "score": 1.0, + "content": "is unbiased if", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 466, + 506, + 546 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 240, + 549, + 371, + 564 + ], + "lines": [ + { + "bbox": [ + 240, + 549, + 371, + 564 + ], + "spans": [ + { + "bbox": [ + 240, + 549, + 371, + 564 + ], + "score": 0.92, + "content": "\\mathbb { E } _ { S } [ e ( S ) ] = \\nabla _ { \\pmb { \\theta } } \\mathbb { E } _ { \\pmb { x } \\sim p _ { \\pmb { \\theta } } ( \\pmb { x } ) } [ f ( \\pmb { x } ) ] .", + "type": "interline_equation", + "image_path": "f611a4818678ca6d6a94189e9ceb1ebc2fee17ab410928ec5188501d7f982d21.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 240, + 549, + 371, + 564 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 568, + 505, + 635 + ], + "lines": [ + { + "bbox": [ + 106, + 569, + 504, + 580 + ], + "spans": [ + { + "bbox": [ + 106, + 569, + 158, + 580 + ], + "score": 1.0, + "content": "The samples", + "type": "text" + }, + { + "bbox": [ + 159, + 569, + 167, + 578 + ], + "score": 0.81, + "content": "S", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 569, + 504, + 580 + ], + "score": 1.0, + "content": "can be sampled independently or using alternatives such as stratified sampling which", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 580, + 504, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 580, + 504, + 591 + ], + "score": 1.0, + "content": "reduce variance to increase the speed of learning. In this paper, we derive an unbiased gradient esti-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 589, + 504, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 409, + 602 + ], + "score": 1.0, + "content": "mator that reduces variance by avoiding duplicate samples, i.e. by sampling", + "type": "text" + }, + { + "bbox": [ + 410, + 591, + 417, + 600 + ], + "score": 0.81, + "content": "S", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 589, + 504, + 602 + ], + "score": 1.0, + "content": "without replacement.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 600, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 505, + 614 + ], + "score": 1.0, + "content": "This is challenging as samples without replacement are dependent and have marginal distributions", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 611, + 506, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 199, + 625 + ], + "score": 1.0, + "content": "that are different from", + "type": "text" + }, + { + "bbox": [ + 199, + 612, + 219, + 624 + ], + "score": 0.92, + "content": "p ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 611, + 506, + 625 + ], + "score": 1.0, + "content": ". We further reduce the variance by deriving a built-in control variate,", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 622, + 407, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 407, + 636 + ], + "score": 1.0, + "content": "which maintains the unbiasedness and does not require additional samples.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 569, + 506, + 636 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 646, + 505, + 713 + ], + "lines": [ + { + "bbox": [ + 105, + 647, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 647, + 505, + 659 + ], + "score": 1.0, + "content": "Related work. Many algorithms for estimating gradients for discrete distributions have been pro-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 657, + 506, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 506, + 671 + ], + "score": 1.0, + "content": "posed. A general and widely used estimator is REINFORCE (Williams, 1992). Biased gradients", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 669, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 505, + 681 + ], + "score": 1.0, + "content": "based on a continuous relaxations of the discrete distribution (known as Gumbel-Softmax or Con-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 681, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 106, + 681, + 505, + 692 + ], + "score": 1.0, + "content": "crete) were jointly introduced by Jang et al. (2016) and Maddison et al. (2016). These can be com-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 690, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 505, + 703 + ], + "score": 1.0, + "content": "bined with the straight through estimator (Bengio et al., 2013) if the model requires discrete samples", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 701, + 505, + 714 + ], + "spans": [ + { + "bbox": [ + 105, + 701, + 505, + 714 + ], + "score": 1.0, + "content": "or be used to construct control variates for REINFORCE, as in REBAR (Tucker et al., 2017) or", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 46.5, + "bbox_fs": [ + 105, + 647, + 506, + 714 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "score": 1.0, + "content": "RELAX (Grathwohl et al., 2018). Many other methods use control variates and other techniques", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "to reduce the variance of REINFORCE (Paisley et al., 2012; Ranganath et al., 2014; Gregor et al.,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 390, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 390, + 117 + ], + "score": 1.0, + "content": "2014; Mnih & Gregor, 2014; Gu et al., 2016; Mnih & Rezende, 2016).", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 121, + 505, + 177 + ], + "lines": [ + { + "bbox": [ + 106, + 122, + 505, + 133 + ], + "spans": [ + { + "bbox": [ + 106, + 122, + 505, + 133 + ], + "score": 1.0, + "content": "Some works rely on explicit summation of the expectation, either for the marginal distribution (Tit-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 132, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 106, + 132, + 505, + 145 + ], + "score": 1.0, + "content": "sias & Lazaro-Gredilla, 2015) or globally summing some categories while sampling from the re- ´", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "mainder (Liang et al., 2018; Liu et al., 2019). Other approaches use a finite difference approxima-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "tion to the gradient (Lorberbom et al., 2018; 2019). Yin et al. (2019) introduced ARSM, which uses", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 164, + 450, + 179 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 450, + 179 + ], + "score": 1.0, + "content": "multiple model evaluations where the number adapts automatically to the uncertainty.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 106, + 182, + 505, + 260 + ], + "lines": [ + { + "bbox": [ + 105, + 182, + 506, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 506, + 195 + ], + "score": 1.0, + "content": "In the structured prediction setting, there are many algorithms for optimizing a quantity under a", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 193, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 505, + 205 + ], + "score": 1.0, + "content": "sequence of discrete decisions, using (weak) supervision, multiple samples (or deterministic model", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 205, + 504, + 216 + ], + "spans": [ + { + "bbox": [ + 106, + 205, + 504, + 216 + ], + "score": 1.0, + "content": "evaluations), or a combination both (Ranzato et al., 2016; Shen et al., 2016; He et al., 2016; Norouzi", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 214, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 505, + 227 + ], + "score": 1.0, + "content": "et al., 2016; Bahdanau et al., 2017; Edunov et al., 2018; Leblond et al., 2018; Negrinho et al., 2018).", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 226, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 505, + 239 + ], + "score": 1.0, + "content": "Most of these algorithms are biased and rely on pretraining using maximum likelihood or gradually", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 237, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 506, + 250 + ], + "score": 1.0, + "content": "transitioning from supervised to reinforcement learning. Using Gumbel-Softmax based approaches", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 248, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 505, + 261 + ], + "score": 1.0, + "content": "in a sequential setting is difficult as the bias accumulates because of mixing errors (Gu et al., 2018).", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11 + }, + { + "type": "title", + "bbox": [ + 108, + 277, + 208, + 289 + ], + "lines": [ + { + "bbox": [ + 104, + 275, + 209, + 292 + ], + "spans": [ + { + "bbox": [ + 104, + 275, + 209, + 292 + ], + "score": 1.0, + "content": "2 PRELIMINARIES", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 302, + 504, + 326 + ], + "lines": [ + { + "bbox": [ + 106, + 302, + 504, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 286, + 315 + ], + "score": 1.0, + "content": "Throughout this paper, we will denote with", + "type": "text" + }, + { + "bbox": [ + 287, + 302, + 300, + 313 + ], + "score": 0.87, + "content": "B ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 302, + 497, + 315 + ], + "score": 1.0, + "content": "an ordered sample without replacement of size", + "type": "text" + }, + { + "bbox": [ + 497, + 303, + 504, + 313 + ], + "score": 0.79, + "content": "k", + "type": "inline_equation" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 312, + 429, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 144, + 328 + ], + "score": 1.0, + "content": "and with", + "type": "text" + }, + { + "bbox": [ + 144, + 313, + 156, + 324 + ], + "score": 0.88, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 312, + 276, + 328 + ], + "score": 1.0, + "content": "an unordered sample (of size", + "type": "text" + }, + { + "bbox": [ + 276, + 315, + 282, + 324 + ], + "score": 0.75, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 312, + 418, + 328 + ], + "score": 1.0, + "content": ") from the categorical distribution", + "type": "text" + }, + { + "bbox": [ + 418, + 316, + 424, + 326 + ], + "score": 0.75, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 312, + 429, + 328 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 105, + 338, + 504, + 363 + ], + "lines": [ + { + "bbox": [ + 106, + 338, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 106, + 338, + 441, + 352 + ], + "score": 1.0, + "content": "Restricted distribution. When sampling without replacement, we remove the set", + "type": "text" + }, + { + "bbox": [ + 441, + 339, + 472, + 350 + ], + "score": 0.9, + "content": "C \\subset D", + "type": "inline_equation" + }, + { + "bbox": [ + 472, + 338, + 505, + 352 + ], + "score": 1.0, + "content": "already", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 348, + 505, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 290, + 364 + ], + "score": 1.0, + "content": "sampled from the domain and we denote with", + "type": "text" + }, + { + "bbox": [ + 291, + 350, + 314, + 363 + ], + "score": 0.92, + "content": "p ^ { D \\setminus C }", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 348, + 475, + 364 + ], + "score": 1.0, + "content": "the distribution restricted to the domain", + "type": "text" + }, + { + "bbox": [ + 475, + 351, + 501, + 363 + ], + "score": 0.92, + "content": "D \\backslash C", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 348, + 505, + 364 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "interline_equation", + "bbox": [ + 217, + 369, + 394, + 397 + ], + "lines": [ + { + "bbox": [ + 217, + 369, + 394, + 397 + ], + "spans": [ + { + "bbox": [ + 217, + 369, + 394, + 397 + ], + "score": 0.94, + "content": "p ^ { D \\setminus C } ( x ) = \\frac { p ( x ) } { 1 - \\sum _ { c \\in C } p ( c ) } , \\quad x \\in D \\setminus C .", + "type": "interline_equation", + "image_path": "13de092ebbad144ed1582389f19c0e3ba4185aa7ab5fb3003afb94aebee46b00.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 217, + 369, + 394, + 397 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 410, + 505, + 468 + ], + "lines": [ + { + "bbox": [ + 106, + 410, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 268, + 424 + ], + "score": 1.0, + "content": "Ordered sample without replacement", + "type": "text" + }, + { + "bbox": [ + 269, + 411, + 282, + 421 + ], + "score": 0.88, + "content": "B ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 410, + 311, + 424 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 311, + 410, + 415, + 423 + ], + "score": 0.91, + "content": "B ^ { k } = ( b _ { 1 } , . . . , b _ { k } ) , b _ { i } \\in D", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 410, + 505, + 424 + ], + "score": 1.0, + "content": "be an ordered sample", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 420, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 360, + 437 + ], + "score": 1.0, + "content": "without replacement, which is generated from the distribution", + "type": "text" + }, + { + "bbox": [ + 361, + 425, + 367, + 434 + ], + "score": 0.81, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 420, + 470, + 437 + ], + "score": 1.0, + "content": "as follows: first, sample", + "type": "text" + }, + { + "bbox": [ + 470, + 423, + 501, + 434 + ], + "score": 0.9, + "content": "b _ { 1 } \\sim p", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 420, + 506, + 437 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 430, + 507, + 448 + ], + "spans": [ + { + "bbox": [ + 104, + 430, + 159, + 448 + ], + "score": 1.0, + "content": "then sample", + "type": "text" + }, + { + "bbox": [ + 159, + 433, + 218, + 446 + ], + "score": 0.9, + "content": "b _ { 2 } \\sim p ^ { D \\setminus \\{ b _ { 1 } \\} }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 430, + 223, + 448 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 224, + 433, + 292, + 445 + ], + "score": 0.83, + "content": "b _ { 3 } ^ { ^ { - } } \\sim p ^ { D \\setminus \\{ b _ { 1 } , b _ { 2 } \\} }", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 430, + 507, + 448 + ], + "score": 1.0, + "content": ", etc. i.e. elements are sampled one by one without", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 443, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 250, + 459 + ], + "score": 1.0, + "content": "replacement. Using this procedure,", + "type": "text" + }, + { + "bbox": [ + 250, + 445, + 264, + 455 + ], + "score": 0.83, + "content": "B ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 443, + 505, + 459 + ], + "score": 1.0, + "content": "can be seen as a (partial) ranking according to the Plackett-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 455, + 469, + 469 + ], + "spans": [ + { + "bbox": [ + 104, + 455, + 443, + 469 + ], + "score": 1.0, + "content": "Luce model (Plackett, 1975; Luce, 1959) and the probability of obtaining the vector", + "type": "text" + }, + { + "bbox": [ + 443, + 456, + 457, + 466 + ], + "score": 0.9, + "content": "B ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 455, + 469, + 469 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23 + }, + { + "type": "interline_equation", + "bbox": [ + 209, + 474, + 402, + 513 + ], + "lines": [ + { + "bbox": [ + 209, + 474, + 402, + 513 + ], + "spans": [ + { + "bbox": [ + 209, + 474, + 402, + 513 + ], + "score": 0.94, + "content": "p ( B ^ { k } ) = \\prod _ { i = 1 } ^ { k } p ^ { D \\setminus B ^ { i - 1 } } ( b _ { i } ) = \\prod _ { i = 1 } ^ { k } \\frac { p ( b _ { i } ) } { 1 - \\sum _ { j < i } p ( b _ { j } ) } .", + "type": "interline_equation", + "image_path": "86b02d654fa38adab9eb042c932a2ca5c18e66b0e7b09ae5c06e7b3c1f7804c2.jpg" + } + ] + } + ], + "index": 26.5, + "virtual_lines": [ + { + "bbox": [ + 209, + 474, + 402, + 493.5 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 209, + 493.5, + 402, + 513.0 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 520, + 457, + 534 + ], + "lines": [ + { + "bbox": [ + 106, + 519, + 457, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 187, + 534 + ], + "score": 1.0, + "content": "We can also restrict", + "type": "text" + }, + { + "bbox": [ + 187, + 520, + 201, + 531 + ], + "score": 0.89, + "content": "B ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 519, + 260, + 534 + ], + "score": 1.0, + "content": "to the domain", + "type": "text" + }, + { + "bbox": [ + 260, + 521, + 286, + 533 + ], + "score": 0.92, + "content": "D \\backslash C", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 519, + 363, + 534 + ], + "score": 1.0, + "content": ", which means that", + "type": "text" + }, + { + "bbox": [ + 363, + 522, + 392, + 533 + ], + "score": 0.92, + "content": "b _ { i } \\notin C", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 519, + 407, + 534 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 407, + 522, + 452, + 533 + ], + "score": 0.92, + "content": "i = 1 , . . . , k", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 519, + 457, + 534 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "interline_equation", + "bbox": [ + 166, + 540, + 445, + 579 + ], + "lines": [ + { + "bbox": [ + 166, + 540, + 445, + 579 + ], + "spans": [ + { + "bbox": [ + 166, + 540, + 445, + 579 + ], + "score": 0.95, + "content": "p ^ { D \\setminus C } ( B ^ { k } ) = \\prod _ { i = 1 } ^ { k } { \\frac { p ^ { D \\setminus C } ( b _ { i } ) } { 1 - \\sum _ { j < i } p ^ { D \\setminus C } ( b _ { j } ) } } = \\prod _ { i = 1 } ^ { k } { \\frac { p ( b _ { i } ) } { 1 - \\sum _ { c \\in C } p ( c ) - \\sum _ { j < i } p ( b _ { j } ) } } .", + "type": "interline_equation", + "image_path": "7d2dbcdc06bd8030e00f817db260a946e3aa85c9999d074ee060a76a475ee636.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 166, + 540, + 445, + 553.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 166, + 553.0, + 445, + 566.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 166, + 566.0, + 445, + 579.0 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 592, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 106, + 592, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 592, + 303, + 606 + ], + "score": 1.0, + "content": "Unordered sample without replacement. Let", + "type": "text" + }, + { + "bbox": [ + 304, + 593, + 338, + 604 + ], + "score": 0.92, + "content": "S ^ { k } \\subseteq D", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 592, + 505, + 606 + ], + "score": 1.0, + "content": "be an unordered sample without replace-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 604, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 215, + 617 + ], + "score": 1.0, + "content": "ment from the distribution", + "type": "text" + }, + { + "bbox": [ + 215, + 607, + 221, + 616 + ], + "score": 0.76, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 604, + 505, + 617 + ], + "score": 1.0, + "content": ", which can be generated simply by generating an ordered sample and", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 614, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 347, + 628 + ], + "score": 1.0, + "content": "discarding the order. We denote elements in the sample with", + "type": "text" + }, + { + "bbox": [ + 347, + 615, + 376, + 626 + ], + "score": 0.91, + "content": "s \\in \\breve { S } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 614, + 506, + 628 + ], + "score": 1.0, + "content": "(so without index) and we write", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 107, + 624, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 107, + 626, + 133, + 638 + ], + "score": 0.92, + "content": "B ( S ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 624, + 196, + 640 + ], + "score": 1.0, + "content": "as the set of all", + "type": "text" + }, + { + "bbox": [ + 196, + 627, + 204, + 636 + ], + "score": 0.68, + "content": "k !", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 624, + 307, + 640 + ], + "score": 1.0, + "content": "! permutations (orderings)", + "type": "text" + }, + { + "bbox": [ + 307, + 626, + 321, + 637 + ], + "score": 0.88, + "content": "\\bar { B ^ { k } }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 624, + 488, + 640 + ], + "score": 1.0, + "content": "that correspond to (could have generated)", + "type": "text" + }, + { + "bbox": [ + 489, + 626, + 501, + 637 + ], + "score": 0.87, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 624, + 506, + 640 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 636, + 341, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 279, + 651 + ], + "score": 1.0, + "content": "It follows that the probability for sampling", + "type": "text" + }, + { + "bbox": [ + 279, + 637, + 291, + 647 + ], + "score": 0.89, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 636, + 341, + 651 + ], + "score": 1.0, + "content": "is given by:", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34 + }, + { + "type": "interline_equation", + "bbox": [ + 113, + 654, + 497, + 697 + ], + "lines": [ + { + "bbox": [ + 113, + 654, + 497, + 697 + ], + "spans": [ + { + "bbox": [ + 113, + 654, + 497, + 697 + ], + "score": 0.94, + "content": "p ( S ^ { k } ) = \\sum _ { B ^ { k } \\in B ( S ^ { k } ) } p ( B ^ { k } ) = \\sum _ { B ^ { k } \\in B ( S ^ { k } ) } \\prod _ { i = 1 } ^ { k } \\frac { p ( b _ { i } ) } { 1 - \\sum _ { j < i } p ( b _ { j } ) } = \\left( \\prod _ { s \\in S ^ { k } } p ( s ) \\right) \\cdot \\sum _ { B ^ { k } \\in B ( S ^ { k } ) } \\prod _ { i = 1 } ^ { k } \\frac { 1 } { 1 - \\sum _ { j < i } p ( b _ { j } ) } .", + "type": "interline_equation", + "image_path": "6d296d81c7b9c0171b827bfda9cc4f8fde6f7b94ec7b11437c2b6839d948c0c7.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 113, + 654, + 497, + 668.3333333333334 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 113, + 668.3333333333334, + 497, + 682.6666666666667 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 113, + 682.6666666666667, + 497, + 697.0000000000001 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 705, + 505, + 733 + ], + "lines": [ + { + "bbox": [ + 104, + 702, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 104, + 702, + 216, + 723 + ], + "score": 1.0, + "content": "The last step follows since", + "type": "text" + }, + { + "bbox": [ + 216, + 707, + 270, + 720 + ], + "score": 0.94, + "content": "B ^ { k } \\in B ( S ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 702, + 342, + 723 + ], + "score": 1.0, + "content": "is an ordering of", + "type": "text" + }, + { + "bbox": [ + 342, + 707, + 353, + 717 + ], + "score": 0.87, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 702, + 397, + 723 + ], + "score": 1.0, + "content": ", such that", + "type": "text" + }, + { + "bbox": [ + 398, + 705, + 501, + 721 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\prod _ { i = 1 } ^ { k } p ( b _ { i } ) = \\prod _ { s \\in S } p ( s ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 702, + 506, + 723 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 719, + 493, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 719, + 195, + 733 + ], + "score": 1.0, + "content": "Naive computation of", + "type": "text" + }, + { + "bbox": [ + 196, + 720, + 221, + 732 + ], + "score": 0.95, + "content": "p ( S ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 719, + 231, + 733 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 232, + 721, + 256, + 732 + ], + "score": 0.91, + "content": "O ( k ! )", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 719, + 327, + 733 + ], + "score": 1.0, + "content": ", but in Appendix", + "type": "text" + }, + { + "bbox": [ + 327, + 721, + 335, + 730 + ], + "score": 0.26, + "content": "\\mathbf { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 719, + 493, + 733 + ], + "score": 1.0, + "content": "we show how to compute it efficiently.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 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": [ + 106, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "score": 1.0, + "content": "RELAX (Grathwohl et al., 2018). Many other methods use control variates and other techniques", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "to reduce the variance of REINFORCE (Paisley et al., 2012; Ranganath et al., 2014; Gregor et al.,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 390, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 390, + 117 + ], + "score": 1.0, + "content": "2014; Mnih & Gregor, 2014; Gu et al., 2016; Mnih & Rezende, 2016).", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 81, + 506, + 117 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 121, + 505, + 177 + ], + "lines": [ + { + "bbox": [ + 106, + 122, + 505, + 133 + ], + "spans": [ + { + "bbox": [ + 106, + 122, + 505, + 133 + ], + "score": 1.0, + "content": "Some works rely on explicit summation of the expectation, either for the marginal distribution (Tit-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 132, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 106, + 132, + 505, + 145 + ], + "score": 1.0, + "content": "sias & Lazaro-Gredilla, 2015) or globally summing some categories while sampling from the re- ´", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "mainder (Liang et al., 2018; Liu et al., 2019). Other approaches use a finite difference approxima-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "tion to the gradient (Lorberbom et al., 2018; 2019). Yin et al. (2019) introduced ARSM, which uses", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 164, + 450, + 179 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 450, + 179 + ], + "score": 1.0, + "content": "multiple model evaluations where the number adapts automatically to the uncertainty.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 122, + 505, + 179 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 182, + 505, + 260 + ], + "lines": [ + { + "bbox": [ + 105, + 182, + 506, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 506, + 195 + ], + "score": 1.0, + "content": "In the structured prediction setting, there are many algorithms for optimizing a quantity under a", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 193, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 505, + 205 + ], + "score": 1.0, + "content": "sequence of discrete decisions, using (weak) supervision, multiple samples (or deterministic model", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 205, + 504, + 216 + ], + "spans": [ + { + "bbox": [ + 106, + 205, + 504, + 216 + ], + "score": 1.0, + "content": "evaluations), or a combination both (Ranzato et al., 2016; Shen et al., 2016; He et al., 2016; Norouzi", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 214, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 505, + 227 + ], + "score": 1.0, + "content": "et al., 2016; Bahdanau et al., 2017; Edunov et al., 2018; Leblond et al., 2018; Negrinho et al., 2018).", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 226, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 505, + 239 + ], + "score": 1.0, + "content": "Most of these algorithms are biased and rely on pretraining using maximum likelihood or gradually", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 237, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 506, + 250 + ], + "score": 1.0, + "content": "transitioning from supervised to reinforcement learning. Using Gumbel-Softmax based approaches", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 248, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 505, + 261 + ], + "score": 1.0, + "content": "in a sequential setting is difficult as the bias accumulates because of mixing errors (Gu et al., 2018).", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 182, + 506, + 261 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 277, + 208, + 289 + ], + "lines": [ + { + "bbox": [ + 104, + 275, + 209, + 292 + ], + "spans": [ + { + "bbox": [ + 104, + 275, + 209, + 292 + ], + "score": 1.0, + "content": "2 PRELIMINARIES", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 302, + 504, + 326 + ], + "lines": [ + { + "bbox": [ + 106, + 302, + 504, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 286, + 315 + ], + "score": 1.0, + "content": "Throughout this paper, we will denote with", + "type": "text" + }, + { + "bbox": [ + 287, + 302, + 300, + 313 + ], + "score": 0.87, + "content": "B ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 302, + 497, + 315 + ], + "score": 1.0, + "content": "an ordered sample without replacement of size", + "type": "text" + }, + { + "bbox": [ + 497, + 303, + 504, + 313 + ], + "score": 0.79, + "content": "k", + "type": "inline_equation" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 312, + 429, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 144, + 328 + ], + "score": 1.0, + "content": "and with", + "type": "text" + }, + { + "bbox": [ + 144, + 313, + 156, + 324 + ], + "score": 0.88, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 312, + 276, + 328 + ], + "score": 1.0, + "content": "an unordered sample (of size", + "type": "text" + }, + { + "bbox": [ + 276, + 315, + 282, + 324 + ], + "score": 0.75, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 312, + 418, + 328 + ], + "score": 1.0, + "content": ") from the categorical distribution", + "type": "text" + }, + { + "bbox": [ + 418, + 316, + 424, + 326 + ], + "score": 0.75, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 312, + 429, + 328 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 302, + 504, + 328 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 338, + 504, + 363 + ], + "lines": [ + { + "bbox": [ + 106, + 338, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 106, + 338, + 441, + 352 + ], + "score": 1.0, + "content": "Restricted distribution. When sampling without replacement, we remove the set", + "type": "text" + }, + { + "bbox": [ + 441, + 339, + 472, + 350 + ], + "score": 0.9, + "content": "C \\subset D", + "type": "inline_equation" + }, + { + "bbox": [ + 472, + 338, + 505, + 352 + ], + "score": 1.0, + "content": "already", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 348, + 505, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 290, + 364 + ], + "score": 1.0, + "content": "sampled from the domain and we denote with", + "type": "text" + }, + { + "bbox": [ + 291, + 350, + 314, + 363 + ], + "score": 0.92, + "content": "p ^ { D \\setminus C }", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 348, + 475, + 364 + ], + "score": 1.0, + "content": "the distribution restricted to the domain", + "type": "text" + }, + { + "bbox": [ + 475, + 351, + 501, + 363 + ], + "score": 0.92, + "content": "D \\backslash C", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 348, + 505, + 364 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 338, + 505, + 364 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 217, + 369, + 394, + 397 + ], + "lines": [ + { + "bbox": [ + 217, + 369, + 394, + 397 + ], + "spans": [ + { + "bbox": [ + 217, + 369, + 394, + 397 + ], + "score": 0.94, + "content": "p ^ { D \\setminus C } ( x ) = \\frac { p ( x ) } { 1 - \\sum _ { c \\in C } p ( c ) } , \\quad x \\in D \\setminus C .", + "type": "interline_equation", + "image_path": "13de092ebbad144ed1582389f19c0e3ba4185aa7ab5fb3003afb94aebee46b00.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 217, + 369, + 394, + 397 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 410, + 505, + 468 + ], + "lines": [ + { + "bbox": [ + 106, + 410, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 268, + 424 + ], + "score": 1.0, + "content": "Ordered sample without replacement", + "type": "text" + }, + { + "bbox": [ + 269, + 411, + 282, + 421 + ], + "score": 0.88, + "content": "B ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 410, + 311, + 424 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 311, + 410, + 415, + 423 + ], + "score": 0.91, + "content": "B ^ { k } = ( b _ { 1 } , . . . , b _ { k } ) , b _ { i } \\in D", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 410, + 505, + 424 + ], + "score": 1.0, + "content": "be an ordered sample", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 420, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 360, + 437 + ], + "score": 1.0, + "content": "without replacement, which is generated from the distribution", + "type": "text" + }, + { + "bbox": [ + 361, + 425, + 367, + 434 + ], + "score": 0.81, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 420, + 470, + 437 + ], + "score": 1.0, + "content": "as follows: first, sample", + "type": "text" + }, + { + "bbox": [ + 470, + 423, + 501, + 434 + ], + "score": 0.9, + "content": "b _ { 1 } \\sim p", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 420, + 506, + 437 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 430, + 507, + 448 + ], + "spans": [ + { + "bbox": [ + 104, + 430, + 159, + 448 + ], + "score": 1.0, + "content": "then sample", + "type": "text" + }, + { + "bbox": [ + 159, + 433, + 218, + 446 + ], + "score": 0.9, + "content": "b _ { 2 } \\sim p ^ { D \\setminus \\{ b _ { 1 } \\} }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 430, + 223, + 448 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 224, + 433, + 292, + 445 + ], + "score": 0.83, + "content": "b _ { 3 } ^ { ^ { - } } \\sim p ^ { D \\setminus \\{ b _ { 1 } , b _ { 2 } \\} }", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 430, + 507, + 448 + ], + "score": 1.0, + "content": ", etc. i.e. elements are sampled one by one without", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 443, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 250, + 459 + ], + "score": 1.0, + "content": "replacement. Using this procedure,", + "type": "text" + }, + { + "bbox": [ + 250, + 445, + 264, + 455 + ], + "score": 0.83, + "content": "B ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 443, + 505, + 459 + ], + "score": 1.0, + "content": "can be seen as a (partial) ranking according to the Plackett-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 455, + 469, + 469 + ], + "spans": [ + { + "bbox": [ + 104, + 455, + 443, + 469 + ], + "score": 1.0, + "content": "Luce model (Plackett, 1975; Luce, 1959) and the probability of obtaining the vector", + "type": "text" + }, + { + "bbox": [ + 443, + 456, + 457, + 466 + ], + "score": 0.9, + "content": "B ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 455, + 469, + 469 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23, + "bbox_fs": [ + 104, + 410, + 507, + 469 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 209, + 474, + 402, + 513 + ], + "lines": [ + { + "bbox": [ + 209, + 474, + 402, + 513 + ], + "spans": [ + { + "bbox": [ + 209, + 474, + 402, + 513 + ], + "score": 0.94, + "content": "p ( B ^ { k } ) = \\prod _ { i = 1 } ^ { k } p ^ { D \\setminus B ^ { i - 1 } } ( b _ { i } ) = \\prod _ { i = 1 } ^ { k } \\frac { p ( b _ { i } ) } { 1 - \\sum _ { j < i } p ( b _ { j } ) } .", + "type": "interline_equation", + "image_path": "86b02d654fa38adab9eb042c932a2ca5c18e66b0e7b09ae5c06e7b3c1f7804c2.jpg" + } + ] + } + ], + "index": 26.5, + "virtual_lines": [ + { + "bbox": [ + 209, + 474, + 402, + 493.5 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 209, + 493.5, + 402, + 513.0 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 520, + 457, + 534 + ], + "lines": [ + { + "bbox": [ + 106, + 519, + 457, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 187, + 534 + ], + "score": 1.0, + "content": "We can also restrict", + "type": "text" + }, + { + "bbox": [ + 187, + 520, + 201, + 531 + ], + "score": 0.89, + "content": "B ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 519, + 260, + 534 + ], + "score": 1.0, + "content": "to the domain", + "type": "text" + }, + { + "bbox": [ + 260, + 521, + 286, + 533 + ], + "score": 0.92, + "content": "D \\backslash C", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 519, + 363, + 534 + ], + "score": 1.0, + "content": ", which means that", + "type": "text" + }, + { + "bbox": [ + 363, + 522, + 392, + 533 + ], + "score": 0.92, + "content": "b _ { i } \\notin C", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 519, + 407, + 534 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 407, + 522, + 452, + 533 + ], + "score": 0.92, + "content": "i = 1 , . . . , k", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 519, + 457, + 534 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28, + "bbox_fs": [ + 106, + 519, + 457, + 534 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 166, + 540, + 445, + 579 + ], + "lines": [ + { + "bbox": [ + 166, + 540, + 445, + 579 + ], + "spans": [ + { + "bbox": [ + 166, + 540, + 445, + 579 + ], + "score": 0.95, + "content": "p ^ { D \\setminus C } ( B ^ { k } ) = \\prod _ { i = 1 } ^ { k } { \\frac { p ^ { D \\setminus C } ( b _ { i } ) } { 1 - \\sum _ { j < i } p ^ { D \\setminus C } ( b _ { j } ) } } = \\prod _ { i = 1 } ^ { k } { \\frac { p ( b _ { i } ) } { 1 - \\sum _ { c \\in C } p ( c ) - \\sum _ { j < i } p ( b _ { j } ) } } .", + "type": "interline_equation", + "image_path": "7d2dbcdc06bd8030e00f817db260a946e3aa85c9999d074ee060a76a475ee636.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 166, + 540, + 445, + 553.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 166, + 553.0, + 445, + 566.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 166, + 566.0, + 445, + 579.0 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 592, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 106, + 592, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 592, + 303, + 606 + ], + "score": 1.0, + "content": "Unordered sample without replacement. Let", + "type": "text" + }, + { + "bbox": [ + 304, + 593, + 338, + 604 + ], + "score": 0.92, + "content": "S ^ { k } \\subseteq D", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 592, + 505, + 606 + ], + "score": 1.0, + "content": "be an unordered sample without replace-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 604, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 215, + 617 + ], + "score": 1.0, + "content": "ment from the distribution", + "type": "text" + }, + { + "bbox": [ + 215, + 607, + 221, + 616 + ], + "score": 0.76, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 604, + 505, + 617 + ], + "score": 1.0, + "content": ", which can be generated simply by generating an ordered sample and", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 614, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 347, + 628 + ], + "score": 1.0, + "content": "discarding the order. We denote elements in the sample with", + "type": "text" + }, + { + "bbox": [ + 347, + 615, + 376, + 626 + ], + "score": 0.91, + "content": "s \\in \\breve { S } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 614, + 506, + 628 + ], + "score": 1.0, + "content": "(so without index) and we write", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 107, + 624, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 107, + 626, + 133, + 638 + ], + "score": 0.92, + "content": "B ( S ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 624, + 196, + 640 + ], + "score": 1.0, + "content": "as the set of all", + "type": "text" + }, + { + "bbox": [ + 196, + 627, + 204, + 636 + ], + "score": 0.68, + "content": "k !", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 624, + 307, + 640 + ], + "score": 1.0, + "content": "! permutations (orderings)", + "type": "text" + }, + { + "bbox": [ + 307, + 626, + 321, + 637 + ], + "score": 0.88, + "content": "\\bar { B ^ { k } }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 624, + 488, + 640 + ], + "score": 1.0, + "content": "that correspond to (could have generated)", + "type": "text" + }, + { + "bbox": [ + 489, + 626, + 501, + 637 + ], + "score": 0.87, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 624, + 506, + 640 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 636, + 341, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 279, + 651 + ], + "score": 1.0, + "content": "It follows that the probability for sampling", + "type": "text" + }, + { + "bbox": [ + 279, + 637, + 291, + 647 + ], + "score": 0.89, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 636, + 341, + 651 + ], + "score": 1.0, + "content": "is given by:", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 592, + 506, + 651 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 113, + 654, + 497, + 697 + ], + "lines": [ + { + "bbox": [ + 113, + 654, + 497, + 697 + ], + "spans": [ + { + "bbox": [ + 113, + 654, + 497, + 697 + ], + "score": 0.94, + "content": "p ( S ^ { k } ) = \\sum _ { B ^ { k } \\in B ( S ^ { k } ) } p ( B ^ { k } ) = \\sum _ { B ^ { k } \\in B ( S ^ { k } ) } \\prod _ { i = 1 } ^ { k } \\frac { p ( b _ { i } ) } { 1 - \\sum _ { j < i } p ( b _ { j } ) } = \\left( \\prod _ { s \\in S ^ { k } } p ( s ) \\right) \\cdot \\sum _ { B ^ { k } \\in B ( S ^ { k } ) } \\prod _ { i = 1 } ^ { k } \\frac { 1 } { 1 - \\sum _ { j < i } p ( b _ { j } ) } .", + "type": "interline_equation", + "image_path": "6d296d81c7b9c0171b827bfda9cc4f8fde6f7b94ec7b11437c2b6839d948c0c7.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 113, + 654, + 497, + 668.3333333333334 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 113, + 668.3333333333334, + 497, + 682.6666666666667 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 113, + 682.6666666666667, + 497, + 697.0000000000001 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "list", + "bbox": [ + 107, + 705, + 505, + 733 + ], + "lines": [ + { + "bbox": [ + 104, + 702, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 104, + 702, + 216, + 723 + ], + "score": 1.0, + "content": "The last step follows since", + "type": "text" + }, + { + "bbox": [ + 216, + 707, + 270, + 720 + ], + "score": 0.94, + "content": "B ^ { k } \\in B ( S ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 702, + 342, + 723 + ], + "score": 1.0, + "content": "is an ordering of", + "type": "text" + }, + { + "bbox": [ + 342, + 707, + 353, + 717 + ], + "score": 0.87, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 702, + 397, + 723 + ], + "score": 1.0, + "content": ", such that", + "type": "text" + }, + { + "bbox": [ + 398, + 705, + 501, + 721 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\prod _ { i = 1 } ^ { k } p ( b _ { i } ) = \\prod _ { s \\in S } p ( s ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 702, + 506, + 723 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 40, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 719, + 493, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 719, + 195, + 733 + ], + "score": 1.0, + "content": "Naive computation of", + "type": "text" + }, + { + "bbox": [ + 196, + 720, + 221, + 732 + ], + "score": 0.95, + "content": "p ( S ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 719, + 231, + 733 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 232, + 721, + 256, + 732 + ], + "score": 0.91, + "content": "O ( k ! )", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 719, + 327, + 733 + ], + "score": 1.0, + "content": ", but in Appendix", + "type": "text" + }, + { + "bbox": [ + 327, + 721, + 335, + 730 + ], + "score": 0.26, + "content": "\\mathbf { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 719, + 493, + 733 + ], + "score": 1.0, + "content": "we show how to compute it efficiently.", + "type": "text" + } + ], + "index": 41, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 40.5, + "bbox_fs": [ + 104, + 702, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 504, + 95 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 306, + 97 + ], + "score": 1.0, + "content": "When sampling from the distribution restricted to", + "type": "text" + }, + { + "bbox": [ + 307, + 82, + 333, + 95 + ], + "score": 0.92, + "content": "D \\backslash C", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 81, + 382, + 97 + ], + "score": 1.0, + "content": ", we sample", + "type": "text" + }, + { + "bbox": [ + 382, + 82, + 434, + 95 + ], + "score": 0.93, + "content": "S ^ { k } \\subseteq D \\setminus C", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 81, + 505, + 97 + ], + "score": 1.0, + "content": "with probability:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 165, + 98, + 444, + 140 + ], + "lines": [ + { + "bbox": [ + 165, + 98, + 444, + 140 + ], + "spans": [ + { + "bbox": [ + 165, + 98, + 444, + 140 + ], + "score": 0.94, + "content": "p ^ { D \\setminus C } ( S ^ { k } ) = \\left( \\prod _ { s \\in S ^ { k } } p ( s ) \\right) \\cdot \\sum _ { B ^ { k } \\in \\mathcal { B } ( S ^ { k } ) } \\prod _ { i = 1 } ^ { k } \\frac { 1 } { 1 - \\sum _ { c \\in C } p ( c ) - \\sum _ { j < i } p ( b _ { j } ) } .", + "type": "interline_equation", + "image_path": "f1416a090c7000a0924172bf9118f60f0a3e8afda4a60413536211213eafb11e.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 165, + 98, + 444, + 112.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 165, + 112.0, + 444, + 126.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 165, + 126.0, + 444, + 140.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 150, + 506, + 243 + ], + "lines": [ + { + "bbox": [ + 105, + 150, + 506, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 183, + 164 + ], + "score": 1.0, + "content": "The Gumbel-Top-", + "type": "text" + }, + { + "bbox": [ + 183, + 152, + 190, + 162 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 150, + 472, + 164 + ], + "score": 1.0, + "content": "trick. As an alternative to sequential sampling, we can also sample", + "type": "text" + }, + { + "bbox": [ + 473, + 151, + 486, + 162 + ], + "score": 0.89, + "content": "B ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 150, + 506, + 164 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 161, + 506, + 176 + ], + "spans": [ + { + "bbox": [ + 107, + 162, + 119, + 173 + ], + "score": 0.87, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 161, + 187, + 176 + ], + "score": 1.0, + "content": "by taking the top", + "type": "text" + }, + { + "bbox": [ + 188, + 163, + 195, + 173 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 161, + 506, + 176 + ], + "score": 1.0, + "content": "of Gumbel variables (Yellott, 1977; Vieira, 2014; Kim et al., 2016). Following", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 172, + 506, + 187 + ], + "spans": [ + { + "bbox": [ + 104, + 172, + 212, + 187 + ], + "score": 1.0, + "content": "notation from Kool et al.", + "type": "text" + }, + { + "bbox": [ + 212, + 174, + 243, + 185 + ], + "score": 0.27, + "content": "( 2 0 1 9 \\mathrm { c } )", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 172, + 412, + 187 + ], + "score": 1.0, + "content": ", we define the perturbed log-probability", + "type": "text" + }, + { + "bbox": [ + 412, + 174, + 473, + 186 + ], + "score": 0.91, + "content": "g _ { \\phi _ { i } } = \\phi _ { i } + g _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 172, + 506, + 187 + ], + "score": 1.0, + "content": ", where", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 107, + 183, + 506, + 199 + ], + "spans": [ + { + "bbox": [ + 107, + 184, + 161, + 196 + ], + "score": 0.92, + "content": "\\phi _ { i } = \\log p ( i )", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 183, + 178, + 199 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 178, + 185, + 245, + 196 + ], + "score": 0.79, + "content": "g _ { i } \\sim \\mathrm { G u m b e l } ( 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 183, + 284, + 199 + ], + "score": 1.0, + "content": ". Then let", + "type": "text" + }, + { + "bbox": [ + 284, + 185, + 372, + 197 + ], + "score": 0.86, + "content": "b _ { 1 } = \\arg \\operatorname* { m a x } _ { i \\in D } g _ { \\phi _ { i } }", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 183, + 375, + 199 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 375, + 186, + 483, + 198 + ], + "score": 0.83, + "content": "b _ { 2 } = \\arg \\operatorname* { m a x } _ { i \\in D \\backslash \\{ b _ { 1 } \\} } g _ { \\phi _ { i } }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 183, + 506, + 199 + ], + "score": 1.0, + "content": ", etc.,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 196, + 506, + 211 + ], + "spans": [ + { + "bbox": [ + 104, + 196, + 117, + 211 + ], + "score": 1.0, + "content": "so", + "type": "text" + }, + { + "bbox": [ + 118, + 197, + 131, + 208 + ], + "score": 0.88, + "content": "B ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 196, + 169, + 211 + ], + "score": 1.0, + "content": "is the top", + "type": "text" + }, + { + "bbox": [ + 170, + 198, + 176, + 208 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 196, + 506, + 211 + ], + "score": 1.0, + "content": "of the perturbed log-probabilities in decreasing order. The probability of obtaining", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 107, + 208, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 107, + 209, + 120, + 219 + ], + "score": 0.89, + "content": "B _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 120, + 208, + 505, + 221 + ], + "score": 1.0, + "content": "using this procedure is given by equation 4, so this provides an alternative sampling method", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 219, + 506, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 506, + 232 + ], + "score": 1.0, + "content": "which is effectively a (non-differentiable) reparameterization of sampling without replacement. For", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 230, + 348, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 348, + 243 + ], + "score": 1.0, + "content": "a differentiable reparameterization, see Grover et al. (2019).", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 106, + 247, + 505, + 270 + ], + "lines": [ + { + "bbox": [ + 105, + 247, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 225, + 260 + ], + "score": 1.0, + "content": "It follows that taking the top", + "type": "text" + }, + { + "bbox": [ + 225, + 248, + 232, + 257 + ], + "score": 0.78, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 247, + 505, + 260 + ], + "score": 1.0, + "content": "perturbed log-probabilities without order, we obtain the unordered", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 256, + 500, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 151, + 272 + ], + "score": 1.0, + "content": "sample set", + "type": "text" + }, + { + "bbox": [ + 151, + 258, + 163, + 268 + ], + "score": 0.88, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 256, + 408, + 272 + ], + "score": 1.0, + "content": ". This way of sampling underlies the efficient computation of", + "type": "text" + }, + { + "bbox": [ + 409, + 258, + 434, + 270 + ], + "score": 0.93, + "content": "p ( S ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 256, + 500, + 272 + ], + "score": 1.0, + "content": "in Appendix B.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "title", + "bbox": [ + 108, + 285, + 209, + 298 + ], + "lines": [ + { + "bbox": [ + 104, + 284, + 211, + 302 + ], + "spans": [ + { + "bbox": [ + 104, + 284, + 211, + 302 + ], + "score": 1.0, + "content": "3 METHODOLOGY", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 310, + 506, + 367 + ], + "lines": [ + { + "bbox": [ + 106, + 310, + 506, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 310, + 506, + 324 + ], + "score": 1.0, + "content": "In this section, we derive the unordered set policy gradient estimator: a low-variance, unbiased", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 320, + 506, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 160, + 335 + ], + "score": 1.0, + "content": "estimator of", + "type": "text" + }, + { + "bbox": [ + 160, + 321, + 226, + 334 + ], + "score": 0.93, + "content": "\\nabla _ { \\pmb { \\theta } } \\mathbb { E } _ { p _ { \\pmb { \\theta } } ( \\pmb { x } ) } [ f ( \\pmb { x } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 320, + 444, + 335 + ], + "score": 1.0, + "content": "based on an unordered sample without replacement", + "type": "text" + }, + { + "bbox": [ + 445, + 321, + 457, + 332 + ], + "score": 0.88, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 320, + 506, + 335 + ], + "score": 1.0, + "content": ". First, we", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 333, + 505, + 346 + ], + "spans": [ + { + "bbox": [ + 106, + 334, + 292, + 346 + ], + "score": 1.0, + "content": "derive the generic (non-gradient) estimator for", + "type": "text" + }, + { + "bbox": [ + 293, + 333, + 325, + 345 + ], + "score": 0.93, + "content": "\\mathbb { E } [ f ( x ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 334, + 505, + 346 + ], + "score": 1.0, + "content": "as the Rao-Blackwellized version of a single", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 343, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 505, + 357 + ], + "score": 1.0, + "content": "sample Monte Carlo estimator (and two other estimators!). Then we combine this estimator with", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 354, + 496, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 496, + 369 + ], + "score": 1.0, + "content": "REINFORCE (Williams, 1992) and we show how to reduce its variance using a built-in baseline.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17 + }, + { + "type": "title", + "bbox": [ + 107, + 380, + 400, + 392 + ], + "lines": [ + { + "bbox": [ + 106, + 380, + 401, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 401, + 393 + ], + "score": 1.0, + "content": "3.1 RAO-BLACKWELLIZATION OF THE SINGLE SAMPLE ESTIMATOR", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 399, + 505, + 434 + ], + "lines": [ + { + "bbox": [ + 105, + 399, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 263, + 413 + ], + "score": 1.0, + "content": "A very crude but simple estimator for", + "type": "text" + }, + { + "bbox": [ + 263, + 401, + 295, + 413 + ], + "score": 0.93, + "content": "\\mathbb { E } [ f ( x ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 399, + 417, + 413 + ], + "score": 1.0, + "content": "based on the ordered sample", + "type": "text" + }, + { + "bbox": [ + 417, + 400, + 431, + 411 + ], + "score": 0.89, + "content": "B ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 399, + 505, + 413 + ], + "score": 1.0, + "content": "is to only use the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 411, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 158, + 424 + ], + "score": 1.0, + "content": "first element", + "type": "text" + }, + { + "bbox": [ + 159, + 412, + 168, + 423 + ], + "score": 0.87, + "content": "b _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 411, + 384, + 424 + ], + "score": 1.0, + "content": ", which by definition is a sample from the distribution", + "type": "text" + }, + { + "bbox": [ + 384, + 414, + 390, + 423 + ], + "score": 0.76, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 411, + 505, + 424 + ], + "score": 1.0, + "content": ". We define this estimator as", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 423, + 320, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 320, + 434 + ], + "score": 1.0, + "content": "the single sample estimator, which is unbiased, since", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22 + }, + { + "type": "interline_equation", + "bbox": [ + 190, + 438, + 420, + 453 + ], + "lines": [ + { + "bbox": [ + 190, + 438, + 420, + 453 + ], + "spans": [ + { + "bbox": [ + 190, + 438, + 420, + 453 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\mathbb { E } _ { B ^ { k } \\sim p ( B ^ { k } ) } [ f ( b _ { 1 } ) ] = \\mathbb { E } _ { b _ { 1 } \\sim p ( b _ { 1 } ) } [ f ( b _ { 1 } ) ] = \\mathbb { E } _ { x \\sim p ( x ) } [ f ( x ) ] . } \\end{array}", + "type": "interline_equation", + "image_path": "02f2b3f7b50f0fc7fea7eafa76908daeb1becae1ddbe2c49d64505835578994c.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 190, + 438, + 420, + 453 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 462, + 505, + 507 + ], + "lines": [ + { + "bbox": [ + 105, + 461, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 505, + 475 + ], + "score": 1.0, + "content": "Discarding all but one sample, the single sample estimator is inefficient, but we can use Rao-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 473, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 212, + 485 + ], + "score": 1.0, + "content": "Blackwellization (Casella", + "type": "text" + }, + { + "bbox": [ + 213, + 474, + 221, + 483 + ], + "score": 0.4, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 473, + 505, + 485 + ], + "score": 1.0, + "content": "Robert, 1996) to signficantly improve it. To this end, we consider the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 482, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 155, + 498 + ], + "score": 1.0, + "content": "distribution", + "type": "text" + }, + { + "bbox": [ + 156, + 484, + 183, + 496 + ], + "score": 0.91, + "content": "B ^ { k } | S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 482, + 356, + 498 + ], + "score": 1.0, + "content": ", which is, knowing the unordered sample", + "type": "text" + }, + { + "bbox": [ + 356, + 484, + 368, + 494 + ], + "score": 0.89, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 482, + 506, + 498 + ], + "score": 1.0, + "content": ", the conditional distribution over", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 493, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 174, + 509 + ], + "score": 1.0, + "content": "ordered samples", + "type": "text" + }, + { + "bbox": [ + 174, + 495, + 226, + 507 + ], + "score": 0.93, + "content": "B ^ { k } \\in B ( S ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 493, + 332, + 509 + ], + "score": 1.0, + "content": "that could have generated", + "type": "text" + }, + { + "bbox": [ + 332, + 495, + 344, + 505 + ], + "score": 0.85, + "content": "S ^ { \\hat { k } }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 493, + 379, + 509 + ], + "score": 1.0, + "content": ".2 Using", + "type": "text" + }, + { + "bbox": [ + 380, + 495, + 407, + 507 + ], + "score": 0.92, + "content": "B ^ { k } | S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 493, + 456, + 509 + ], + "score": 1.0, + "content": ", we rewrite", + "type": "text" + }, + { + "bbox": [ + 457, + 495, + 492, + 507 + ], + "score": 0.92, + "content": "\\mathbb { E } [ f ( b _ { 1 } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 493, + 505, + 509 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5 + }, + { + "type": "interline_equation", + "bbox": [ + 115, + 511, + 495, + 527 + ], + "lines": [ + { + "bbox": [ + 115, + 511, + 495, + 527 + ], + "spans": [ + { + "bbox": [ + 115, + 511, + 495, + 527 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\mathbb { E } _ { B ^ { k } \\sim p ( B ^ { k } ) } [ f ( b _ { 1 } ) ] = \\mathbb { E } _ { S ^ { k } \\sim p ( S ^ { k } ) } \\left[ \\mathbb { E } _ { B ^ { k } \\sim p ( B ^ { k } \\mid S ^ { k } ) } \\left[ f ( b _ { 1 } ) \\right] \\right] = \\mathbb { E } _ { S ^ { k } \\sim p ( S ^ { k } ) } \\left[ \\mathbb { E } _ { b _ { 1 } \\sim p ( b _ { 1 } \\mid S ^ { k } ) } \\left[ f ( b _ { 1 } ) \\right] \\right] . } \\end{array}", + "type": "interline_equation", + "image_path": "266311ced4be4415de977a8b098b3fa79a51a05a8a5ba8855a81cddf903a16de.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 115, + 511, + 495, + 527 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 536, + 503, + 558 + ], + "lines": [ + { + "bbox": [ + 106, + 536, + 505, + 548 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 505, + 548 + ], + "score": 1.0, + "content": "The Rao-Blackwellized version of the single sample estimator computes the inner conditional ex-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 546, + 487, + 560 + ], + "spans": [ + { + "bbox": [ + 104, + 546, + 204, + 560 + ], + "score": 1.0, + "content": "pectation exactly. Since", + "type": "text" + }, + { + "bbox": [ + 204, + 546, + 218, + 557 + ], + "score": 0.89, + "content": "B ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 546, + 287, + 560 + ], + "score": 1.0, + "content": "is an ordering of", + "type": "text" + }, + { + "bbox": [ + 288, + 546, + 299, + 557 + ], + "score": 0.89, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 546, + 339, + 560 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 339, + 546, + 372, + 558 + ], + "score": 0.93, + "content": "b _ { 1 } \\in S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 546, + 487, + 560 + ], + "score": 1.0, + "content": "and we can compute this as", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "interline_equation", + "bbox": [ + 209, + 562, + 402, + 590 + ], + "lines": [ + { + "bbox": [ + 209, + 562, + 402, + 590 + ], + "spans": [ + { + "bbox": [ + 209, + 562, + 402, + 590 + ], + "score": 0.94, + "content": "\\mathbb { E } _ { b _ { 1 } \\sim p ( b _ { 1 } | S ^ { k } ) } \\left[ f ( b _ { 1 } ) \\right] = \\sum _ { s \\in S ^ { k } } P ( b _ { 1 } = s | S ^ { k } ) f ( s )", + "type": "interline_equation", + "image_path": "596870a40feaefe9b1a493c1183747aa6ee26d2fce368c656b98b1f97b2dccf6.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 209, + 562, + 402, + 590 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 595, + 505, + 619 + ], + "lines": [ + { + "bbox": [ + 106, + 595, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 253, + 609 + ], + "score": 1.0, + "content": "where, in a slight abuse of notation,", + "type": "text" + }, + { + "bbox": [ + 253, + 595, + 312, + 608 + ], + "score": 0.94, + "content": "P ( b _ { 1 } = s | S ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 595, + 505, + 609 + ], + "score": 1.0, + "content": "is the probability that the first sampled element", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 107, + 606, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 107, + 608, + 116, + 618 + ], + "score": 0.87, + "content": "b _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 606, + 179, + 619 + ], + "score": 1.0, + "content": "takes the value", + "type": "text" + }, + { + "bbox": [ + 180, + 610, + 185, + 617 + ], + "score": 0.71, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 606, + 308, + 619 + ], + "score": 1.0, + "content": ", given that the complete set of", + "type": "text" + }, + { + "bbox": [ + 309, + 608, + 315, + 617 + ], + "score": 0.83, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 606, + 360, + 619 + ], + "score": 1.0, + "content": "samples is", + "type": "text" + }, + { + "bbox": [ + 361, + 606, + 373, + 617 + ], + "score": 0.89, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 606, + 505, + 619 + ], + "score": 1.0, + "content": ". Using Bayes’ Theorem we find", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "interline_equation", + "bbox": [ + 166, + 622, + 444, + 651 + ], + "lines": [ + { + "bbox": [ + 166, + 622, + 444, + 651 + ], + "spans": [ + { + "bbox": [ + 166, + 622, + 444, + 651 + ], + "score": 0.94, + "content": "P ( b _ { 1 } = s | S ^ { k } ) = \\frac { p ( S ^ { k } | b _ { 1 } = s ) P ( b _ { 1 } = s ) } { p ( S ^ { k } ) } = \\frac { p ^ { D \\setminus \\{ s \\} } ( S ^ { k } \\setminus \\{ s \\} ) p ( s ) } { p ( S ^ { k } ) } .", + "type": "interline_equation", + "image_path": "1f9be78c95a7fbbee7be9b15c59a94a262dff1f16e5d8e1f33172e666357253e.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 166, + 622, + 444, + 631.6666666666666 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 166, + 631.6666666666666, + 444, + 641.3333333333333 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 166, + 641.3333333333333, + 444, + 650.9999999999999 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 655, + 505, + 714 + ], + "lines": [ + { + "bbox": [ + 104, + 654, + 507, + 670 + ], + "spans": [ + { + "bbox": [ + 104, + 654, + 145, + 670 + ], + "score": 1.0, + "content": "The step", + "type": "text" + }, + { + "bbox": [ + 145, + 655, + 293, + 669 + ], + "score": 0.92, + "content": "p ( S ^ { k } | b _ { 1 } = s ) = p ^ { D \\setminus \\{ s \\} } ( S ^ { k } \\setminus \\{ s \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 654, + 507, + 670 + ], + "score": 1.0, + "content": "comes from analyzing sequential sampling without", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 320, + 680 + ], + "score": 1.0, + "content": "replacement: given that the first element sampled is", + "type": "text" + }, + { + "bbox": [ + 320, + 670, + 326, + 677 + ], + "score": 0.74, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 667, + 505, + 680 + ], + "score": 1.0, + "content": ", the remaining elements have a distribution", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 677, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 104, + 677, + 155, + 692 + ], + "score": 1.0, + "content": "restricted to", + "type": "text" + }, + { + "bbox": [ + 156, + 678, + 187, + 691 + ], + "score": 0.92, + "content": "D \\backslash \\{ s \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 677, + 240, + 692 + ], + "score": 1.0, + "content": ", so sampling", + "type": "text" + }, + { + "bbox": [ + 241, + 678, + 253, + 689 + ], + "score": 0.86, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 677, + 297, + 692 + ], + "score": 1.0, + "content": "(including", + "type": "text" + }, + { + "bbox": [ + 298, + 681, + 303, + 689 + ], + "score": 0.65, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 677, + 397, + 692 + ], + "score": 1.0, + "content": ") given the first element", + "type": "text" + }, + { + "bbox": [ + 397, + 681, + 403, + 689 + ], + "score": 0.74, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 677, + 505, + 692 + ], + "score": 1.0, + "content": "is equivalent to sampling", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 689, + 505, + 704 + ], + "spans": [ + { + "bbox": [ + 104, + 689, + 164, + 704 + ], + "score": 1.0, + "content": "the remainder", + "type": "text" + }, + { + "bbox": [ + 164, + 691, + 199, + 703 + ], + "score": 0.92, + "content": "S ^ { k } \\setminus \\{ s \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 689, + 414, + 704 + ], + "score": 1.0, + "content": "from the restricted distribution, which has probability", + "type": "text" + }, + { + "bbox": [ + 414, + 690, + 485, + 703 + ], + "score": 0.93, + "content": "p ^ { D \\setminus \\{ s \\} } ( S ^ { k } \\setminus \\{ s \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 689, + 505, + 704 + ], + "score": 1.0, + "content": "(see", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 702, + 157, + 714 + ], + "spans": [ + { + "bbox": [ + 105, + 702, + 157, + 714 + ], + "score": 1.0, + "content": "equation 7).", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 118, + 720, + 370, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 719, + 371, + 732 + ], + "spans": [ + { + "bbox": [ + 118, + 719, + 158, + 732 + ], + "score": 1.0, + "content": "2Note that", + "type": "text" + }, + { + "bbox": [ + 158, + 721, + 184, + 732 + ], + "score": 0.93, + "content": "B ^ { k } | S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 719, + 354, + 732 + ], + "score": 1.0, + "content": "is not a Plackett-Luce distribution restricted to", + "type": "text" + }, + { + "bbox": [ + 354, + 721, + 366, + 730 + ], + "score": 0.88, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 719, + 371, + 732 + ], + "score": 1.0, + "content": "!", + "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": [ + 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, + 81, + 504, + 95 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 306, + 97 + ], + "score": 1.0, + "content": "When sampling from the distribution restricted to", + "type": "text" + }, + { + "bbox": [ + 307, + 82, + 333, + 95 + ], + "score": 0.92, + "content": "D \\backslash C", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 81, + 382, + 97 + ], + "score": 1.0, + "content": ", we sample", + "type": "text" + }, + { + "bbox": [ + 382, + 82, + 434, + 95 + ], + "score": 0.93, + "content": "S ^ { k } \\subseteq D \\setminus C", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 81, + 505, + 97 + ], + "score": 1.0, + "content": "with probability:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 106, + 81, + 505, + 97 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 165, + 98, + 444, + 140 + ], + "lines": [ + { + "bbox": [ + 165, + 98, + 444, + 140 + ], + "spans": [ + { + "bbox": [ + 165, + 98, + 444, + 140 + ], + "score": 0.94, + "content": "p ^ { D \\setminus C } ( S ^ { k } ) = \\left( \\prod _ { s \\in S ^ { k } } p ( s ) \\right) \\cdot \\sum _ { B ^ { k } \\in \\mathcal { B } ( S ^ { k } ) } \\prod _ { i = 1 } ^ { k } \\frac { 1 } { 1 - \\sum _ { c \\in C } p ( c ) - \\sum _ { j < i } p ( b _ { j } ) } .", + "type": "interline_equation", + "image_path": "f1416a090c7000a0924172bf9118f60f0a3e8afda4a60413536211213eafb11e.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 165, + 98, + 444, + 112.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 165, + 112.0, + 444, + 126.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 165, + 126.0, + 444, + 140.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 150, + 506, + 243 + ], + "lines": [ + { + "bbox": [ + 105, + 150, + 506, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 183, + 164 + ], + "score": 1.0, + "content": "The Gumbel-Top-", + "type": "text" + }, + { + "bbox": [ + 183, + 152, + 190, + 162 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 150, + 472, + 164 + ], + "score": 1.0, + "content": "trick. As an alternative to sequential sampling, we can also sample", + "type": "text" + }, + { + "bbox": [ + 473, + 151, + 486, + 162 + ], + "score": 0.89, + "content": "B ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 150, + 506, + 164 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 161, + 506, + 176 + ], + "spans": [ + { + "bbox": [ + 107, + 162, + 119, + 173 + ], + "score": 0.87, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 161, + 187, + 176 + ], + "score": 1.0, + "content": "by taking the top", + "type": "text" + }, + { + "bbox": [ + 188, + 163, + 195, + 173 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 161, + 506, + 176 + ], + "score": 1.0, + "content": "of Gumbel variables (Yellott, 1977; Vieira, 2014; Kim et al., 2016). Following", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 172, + 506, + 187 + ], + "spans": [ + { + "bbox": [ + 104, + 172, + 212, + 187 + ], + "score": 1.0, + "content": "notation from Kool et al.", + "type": "text" + }, + { + "bbox": [ + 212, + 174, + 243, + 185 + ], + "score": 0.27, + "content": "( 2 0 1 9 \\mathrm { c } )", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 172, + 412, + 187 + ], + "score": 1.0, + "content": ", we define the perturbed log-probability", + "type": "text" + }, + { + "bbox": [ + 412, + 174, + 473, + 186 + ], + "score": 0.91, + "content": "g _ { \\phi _ { i } } = \\phi _ { i } + g _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 172, + 506, + 187 + ], + "score": 1.0, + "content": ", where", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 107, + 183, + 506, + 199 + ], + "spans": [ + { + "bbox": [ + 107, + 184, + 161, + 196 + ], + "score": 0.92, + "content": "\\phi _ { i } = \\log p ( i )", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 183, + 178, + 199 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 178, + 185, + 245, + 196 + ], + "score": 0.79, + "content": "g _ { i } \\sim \\mathrm { G u m b e l } ( 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 183, + 284, + 199 + ], + "score": 1.0, + "content": ". Then let", + "type": "text" + }, + { + "bbox": [ + 284, + 185, + 372, + 197 + ], + "score": 0.86, + "content": "b _ { 1 } = \\arg \\operatorname* { m a x } _ { i \\in D } g _ { \\phi _ { i } }", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 183, + 375, + 199 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 375, + 186, + 483, + 198 + ], + "score": 0.83, + "content": "b _ { 2 } = \\arg \\operatorname* { m a x } _ { i \\in D \\backslash \\{ b _ { 1 } \\} } g _ { \\phi _ { i } }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 183, + 506, + 199 + ], + "score": 1.0, + "content": ", etc.,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 196, + 506, + 211 + ], + "spans": [ + { + "bbox": [ + 104, + 196, + 117, + 211 + ], + "score": 1.0, + "content": "so", + "type": "text" + }, + { + "bbox": [ + 118, + 197, + 131, + 208 + ], + "score": 0.88, + "content": "B ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 196, + 169, + 211 + ], + "score": 1.0, + "content": "is the top", + "type": "text" + }, + { + "bbox": [ + 170, + 198, + 176, + 208 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 196, + 506, + 211 + ], + "score": 1.0, + "content": "of the perturbed log-probabilities in decreasing order. The probability of obtaining", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 107, + 208, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 107, + 209, + 120, + 219 + ], + "score": 0.89, + "content": "B _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 120, + 208, + 505, + 221 + ], + "score": 1.0, + "content": "using this procedure is given by equation 4, so this provides an alternative sampling method", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 219, + 506, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 506, + 232 + ], + "score": 1.0, + "content": "which is effectively a (non-differentiable) reparameterization of sampling without replacement. For", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 230, + 348, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 348, + 243 + ], + "score": 1.0, + "content": "a differentiable reparameterization, see Grover et al. (2019).", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 7.5, + "bbox_fs": [ + 104, + 150, + 506, + 243 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 247, + 505, + 270 + ], + "lines": [ + { + "bbox": [ + 105, + 247, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 225, + 260 + ], + "score": 1.0, + "content": "It follows that taking the top", + "type": "text" + }, + { + "bbox": [ + 225, + 248, + 232, + 257 + ], + "score": 0.78, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 247, + 505, + 260 + ], + "score": 1.0, + "content": "perturbed log-probabilities without order, we obtain the unordered", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 256, + 500, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 151, + 272 + ], + "score": 1.0, + "content": "sample set", + "type": "text" + }, + { + "bbox": [ + 151, + 258, + 163, + 268 + ], + "score": 0.88, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 256, + 408, + 272 + ], + "score": 1.0, + "content": ". This way of sampling underlies the efficient computation of", + "type": "text" + }, + { + "bbox": [ + 409, + 258, + 434, + 270 + ], + "score": 0.93, + "content": "p ( S ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 256, + 500, + 272 + ], + "score": 1.0, + "content": "in Appendix B.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 247, + 505, + 272 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 285, + 209, + 298 + ], + "lines": [ + { + "bbox": [ + 104, + 284, + 211, + 302 + ], + "spans": [ + { + "bbox": [ + 104, + 284, + 211, + 302 + ], + "score": 1.0, + "content": "3 METHODOLOGY", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 310, + 506, + 367 + ], + "lines": [ + { + "bbox": [ + 106, + 310, + 506, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 310, + 506, + 324 + ], + "score": 1.0, + "content": "In this section, we derive the unordered set policy gradient estimator: a low-variance, unbiased", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 320, + 506, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 160, + 335 + ], + "score": 1.0, + "content": "estimator of", + "type": "text" + }, + { + "bbox": [ + 160, + 321, + 226, + 334 + ], + "score": 0.93, + "content": "\\nabla _ { \\pmb { \\theta } } \\mathbb { E } _ { p _ { \\pmb { \\theta } } ( \\pmb { x } ) } [ f ( \\pmb { x } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 320, + 444, + 335 + ], + "score": 1.0, + "content": "based on an unordered sample without replacement", + "type": "text" + }, + { + "bbox": [ + 445, + 321, + 457, + 332 + ], + "score": 0.88, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 320, + 506, + 335 + ], + "score": 1.0, + "content": ". First, we", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 333, + 505, + 346 + ], + "spans": [ + { + "bbox": [ + 106, + 334, + 292, + 346 + ], + "score": 1.0, + "content": "derive the generic (non-gradient) estimator for", + "type": "text" + }, + { + "bbox": [ + 293, + 333, + 325, + 345 + ], + "score": 0.93, + "content": "\\mathbb { E } [ f ( x ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 334, + 505, + 346 + ], + "score": 1.0, + "content": "as the Rao-Blackwellized version of a single", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 343, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 505, + 357 + ], + "score": 1.0, + "content": "sample Monte Carlo estimator (and two other estimators!). Then we combine this estimator with", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 354, + 496, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 496, + 369 + ], + "score": 1.0, + "content": "REINFORCE (Williams, 1992) and we show how to reduce its variance using a built-in baseline.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 310, + 506, + 369 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 380, + 400, + 392 + ], + "lines": [ + { + "bbox": [ + 106, + 380, + 401, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 401, + 393 + ], + "score": 1.0, + "content": "3.1 RAO-BLACKWELLIZATION OF THE SINGLE SAMPLE ESTIMATOR", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 399, + 505, + 434 + ], + "lines": [ + { + "bbox": [ + 105, + 399, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 263, + 413 + ], + "score": 1.0, + "content": "A very crude but simple estimator for", + "type": "text" + }, + { + "bbox": [ + 263, + 401, + 295, + 413 + ], + "score": 0.93, + "content": "\\mathbb { E } [ f ( x ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 399, + 417, + 413 + ], + "score": 1.0, + "content": "based on the ordered sample", + "type": "text" + }, + { + "bbox": [ + 417, + 400, + 431, + 411 + ], + "score": 0.89, + "content": "B ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 399, + 505, + 413 + ], + "score": 1.0, + "content": "is to only use the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 411, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 158, + 424 + ], + "score": 1.0, + "content": "first element", + "type": "text" + }, + { + "bbox": [ + 159, + 412, + 168, + 423 + ], + "score": 0.87, + "content": "b _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 411, + 384, + 424 + ], + "score": 1.0, + "content": ", which by definition is a sample from the distribution", + "type": "text" + }, + { + "bbox": [ + 384, + 414, + 390, + 423 + ], + "score": 0.76, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 411, + 505, + 424 + ], + "score": 1.0, + "content": ". We define this estimator as", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 423, + 320, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 320, + 434 + ], + "score": 1.0, + "content": "the single sample estimator, which is unbiased, since", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 399, + 505, + 434 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 190, + 438, + 420, + 453 + ], + "lines": [ + { + "bbox": [ + 190, + 438, + 420, + 453 + ], + "spans": [ + { + "bbox": [ + 190, + 438, + 420, + 453 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\mathbb { E } _ { B ^ { k } \\sim p ( B ^ { k } ) } [ f ( b _ { 1 } ) ] = \\mathbb { E } _ { b _ { 1 } \\sim p ( b _ { 1 } ) } [ f ( b _ { 1 } ) ] = \\mathbb { E } _ { x \\sim p ( x ) } [ f ( x ) ] . } \\end{array}", + "type": "interline_equation", + "image_path": "02f2b3f7b50f0fc7fea7eafa76908daeb1becae1ddbe2c49d64505835578994c.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 190, + 438, + 420, + 453 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 462, + 505, + 507 + ], + "lines": [ + { + "bbox": [ + 105, + 461, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 505, + 475 + ], + "score": 1.0, + "content": "Discarding all but one sample, the single sample estimator is inefficient, but we can use Rao-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 473, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 212, + 485 + ], + "score": 1.0, + "content": "Blackwellization (Casella", + "type": "text" + }, + { + "bbox": [ + 213, + 474, + 221, + 483 + ], + "score": 0.4, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 473, + 505, + 485 + ], + "score": 1.0, + "content": "Robert, 1996) to signficantly improve it. To this end, we consider the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 482, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 155, + 498 + ], + "score": 1.0, + "content": "distribution", + "type": "text" + }, + { + "bbox": [ + 156, + 484, + 183, + 496 + ], + "score": 0.91, + "content": "B ^ { k } | S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 482, + 356, + 498 + ], + "score": 1.0, + "content": ", which is, knowing the unordered sample", + "type": "text" + }, + { + "bbox": [ + 356, + 484, + 368, + 494 + ], + "score": 0.89, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 482, + 506, + 498 + ], + "score": 1.0, + "content": ", the conditional distribution over", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 493, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 174, + 509 + ], + "score": 1.0, + "content": "ordered samples", + "type": "text" + }, + { + "bbox": [ + 174, + 495, + 226, + 507 + ], + "score": 0.93, + "content": "B ^ { k } \\in B ( S ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 493, + 332, + 509 + ], + "score": 1.0, + "content": "that could have generated", + "type": "text" + }, + { + "bbox": [ + 332, + 495, + 344, + 505 + ], + "score": 0.85, + "content": "S ^ { \\hat { k } }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 493, + 379, + 509 + ], + "score": 1.0, + "content": ".2 Using", + "type": "text" + }, + { + "bbox": [ + 380, + 495, + 407, + 507 + ], + "score": 0.92, + "content": "B ^ { k } | S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 493, + 456, + 509 + ], + "score": 1.0, + "content": ", we rewrite", + "type": "text" + }, + { + "bbox": [ + 457, + 495, + 492, + 507 + ], + "score": 0.92, + "content": "\\mathbb { E } [ f ( b _ { 1 } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 493, + 505, + 509 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 461, + 506, + 509 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 115, + 511, + 495, + 527 + ], + "lines": [ + { + "bbox": [ + 115, + 511, + 495, + 527 + ], + "spans": [ + { + "bbox": [ + 115, + 511, + 495, + 527 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\mathbb { E } _ { B ^ { k } \\sim p ( B ^ { k } ) } [ f ( b _ { 1 } ) ] = \\mathbb { E } _ { S ^ { k } \\sim p ( S ^ { k } ) } \\left[ \\mathbb { E } _ { B ^ { k } \\sim p ( B ^ { k } \\mid S ^ { k } ) } \\left[ f ( b _ { 1 } ) \\right] \\right] = \\mathbb { E } _ { S ^ { k } \\sim p ( S ^ { k } ) } \\left[ \\mathbb { E } _ { b _ { 1 } \\sim p ( b _ { 1 } \\mid S ^ { k } ) } \\left[ f ( b _ { 1 } ) \\right] \\right] . } \\end{array}", + "type": "interline_equation", + "image_path": "266311ced4be4415de977a8b098b3fa79a51a05a8a5ba8855a81cddf903a16de.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 115, + 511, + 495, + 527 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 536, + 503, + 558 + ], + "lines": [ + { + "bbox": [ + 106, + 536, + 505, + 548 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 505, + 548 + ], + "score": 1.0, + "content": "The Rao-Blackwellized version of the single sample estimator computes the inner conditional ex-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 546, + 487, + 560 + ], + "spans": [ + { + "bbox": [ + 104, + 546, + 204, + 560 + ], + "score": 1.0, + "content": "pectation exactly. Since", + "type": "text" + }, + { + "bbox": [ + 204, + 546, + 218, + 557 + ], + "score": 0.89, + "content": "B ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 546, + 287, + 560 + ], + "score": 1.0, + "content": "is an ordering of", + "type": "text" + }, + { + "bbox": [ + 288, + 546, + 299, + 557 + ], + "score": 0.89, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 546, + 339, + 560 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 339, + 546, + 372, + 558 + ], + "score": 0.93, + "content": "b _ { 1 } \\in S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 546, + 487, + 560 + ], + "score": 1.0, + "content": "and we can compute this as", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 104, + 536, + 505, + 560 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 209, + 562, + 402, + 590 + ], + "lines": [ + { + "bbox": [ + 209, + 562, + 402, + 590 + ], + "spans": [ + { + "bbox": [ + 209, + 562, + 402, + 590 + ], + "score": 0.94, + "content": "\\mathbb { E } _ { b _ { 1 } \\sim p ( b _ { 1 } | S ^ { k } ) } \\left[ f ( b _ { 1 } ) \\right] = \\sum _ { s \\in S ^ { k } } P ( b _ { 1 } = s | S ^ { k } ) f ( s )", + "type": "interline_equation", + "image_path": "596870a40feaefe9b1a493c1183747aa6ee26d2fce368c656b98b1f97b2dccf6.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 209, + 562, + 402, + 590 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 595, + 505, + 619 + ], + "lines": [ + { + "bbox": [ + 106, + 595, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 253, + 609 + ], + "score": 1.0, + "content": "where, in a slight abuse of notation,", + "type": "text" + }, + { + "bbox": [ + 253, + 595, + 312, + 608 + ], + "score": 0.94, + "content": "P ( b _ { 1 } = s | S ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 595, + 505, + 609 + ], + "score": 1.0, + "content": "is the probability that the first sampled element", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 107, + 606, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 107, + 608, + 116, + 618 + ], + "score": 0.87, + "content": "b _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 606, + 179, + 619 + ], + "score": 1.0, + "content": "takes the value", + "type": "text" + }, + { + "bbox": [ + 180, + 610, + 185, + 617 + ], + "score": 0.71, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 606, + 308, + 619 + ], + "score": 1.0, + "content": ", given that the complete set of", + "type": "text" + }, + { + "bbox": [ + 309, + 608, + 315, + 617 + ], + "score": 0.83, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 606, + 360, + 619 + ], + "score": 1.0, + "content": "samples is", + "type": "text" + }, + { + "bbox": [ + 361, + 606, + 373, + 617 + ], + "score": 0.89, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 606, + 505, + 619 + ], + "score": 1.0, + "content": ". Using Bayes’ Theorem we find", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 106, + 595, + 505, + 619 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 166, + 622, + 444, + 651 + ], + "lines": [ + { + "bbox": [ + 166, + 622, + 444, + 651 + ], + "spans": [ + { + "bbox": [ + 166, + 622, + 444, + 651 + ], + "score": 0.94, + "content": "P ( b _ { 1 } = s | S ^ { k } ) = \\frac { p ( S ^ { k } | b _ { 1 } = s ) P ( b _ { 1 } = s ) } { p ( S ^ { k } ) } = \\frac { p ^ { D \\setminus \\{ s \\} } ( S ^ { k } \\setminus \\{ s \\} ) p ( s ) } { p ( S ^ { k } ) } .", + "type": "interline_equation", + "image_path": "1f9be78c95a7fbbee7be9b15c59a94a262dff1f16e5d8e1f33172e666357253e.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 166, + 622, + 444, + 631.6666666666666 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 166, + 631.6666666666666, + 444, + 641.3333333333333 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 166, + 641.3333333333333, + 444, + 650.9999999999999 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 655, + 505, + 714 + ], + "lines": [ + { + "bbox": [ + 104, + 654, + 507, + 670 + ], + "spans": [ + { + "bbox": [ + 104, + 654, + 145, + 670 + ], + "score": 1.0, + "content": "The step", + "type": "text" + }, + { + "bbox": [ + 145, + 655, + 293, + 669 + ], + "score": 0.92, + "content": "p ( S ^ { k } | b _ { 1 } = s ) = p ^ { D \\setminus \\{ s \\} } ( S ^ { k } \\setminus \\{ s \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 654, + 507, + 670 + ], + "score": 1.0, + "content": "comes from analyzing sequential sampling without", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 320, + 680 + ], + "score": 1.0, + "content": "replacement: given that the first element sampled is", + "type": "text" + }, + { + "bbox": [ + 320, + 670, + 326, + 677 + ], + "score": 0.74, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 667, + 505, + 680 + ], + "score": 1.0, + "content": ", the remaining elements have a distribution", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 677, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 104, + 677, + 155, + 692 + ], + "score": 1.0, + "content": "restricted to", + "type": "text" + }, + { + "bbox": [ + 156, + 678, + 187, + 691 + ], + "score": 0.92, + "content": "D \\backslash \\{ s \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 677, + 240, + 692 + ], + "score": 1.0, + "content": ", so sampling", + "type": "text" + }, + { + "bbox": [ + 241, + 678, + 253, + 689 + ], + "score": 0.86, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 677, + 297, + 692 + ], + "score": 1.0, + "content": "(including", + "type": "text" + }, + { + "bbox": [ + 298, + 681, + 303, + 689 + ], + "score": 0.65, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 677, + 397, + 692 + ], + "score": 1.0, + "content": ") given the first element", + "type": "text" + }, + { + "bbox": [ + 397, + 681, + 403, + 689 + ], + "score": 0.74, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 677, + 505, + 692 + ], + "score": 1.0, + "content": "is equivalent to sampling", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 689, + 505, + 704 + ], + "spans": [ + { + "bbox": [ + 104, + 689, + 164, + 704 + ], + "score": 1.0, + "content": "the remainder", + "type": "text" + }, + { + "bbox": [ + 164, + 691, + 199, + 703 + ], + "score": 0.92, + "content": "S ^ { k } \\setminus \\{ s \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 689, + 414, + 704 + ], + "score": 1.0, + "content": "from the restricted distribution, which has probability", + "type": "text" + }, + { + "bbox": [ + 414, + 690, + 485, + 703 + ], + "score": 0.93, + "content": "p ^ { D \\setminus \\{ s \\} } ( S ^ { k } \\setminus \\{ s \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 689, + 505, + 704 + ], + "score": 1.0, + "content": "(see", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 702, + 157, + 714 + ], + "spans": [ + { + "bbox": [ + 105, + 702, + 157, + 714 + ], + "score": 1.0, + "content": "equation 7).", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40, + "bbox_fs": [ + 104, + 654, + 507, + 714 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 502, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 502, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 502, + 95 + ], + "score": 1.0, + "content": "The unordered set estimator. For notational convenience, we introduce the leave-one-out ratio.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 497, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 271, + 117 + ], + "score": 1.0, + "content": "Definition 1. The leave-one-out ratio of", + "type": "text" + }, + { + "bbox": [ + 271, + 103, + 277, + 110 + ], + "score": 0.73, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 93, + 329, + 117 + ], + "score": 1.0, + "content": "w.r.t. the set", + "type": "text" + }, + { + "bbox": [ + 329, + 101, + 337, + 110 + ], + "score": 0.83, + "content": "S", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 93, + 384, + 117 + ], + "score": 1.0, + "content": "is given by", + "type": "text" + }, + { + "bbox": [ + 384, + 96, + 493, + 115 + ], + "score": 0.93, + "content": "\\begin{array} { r } { R ( S ^ { k } , s ) = \\frac { p ^ { D \\setminus \\{ s \\} } ( S ^ { k } \\setminus \\{ s \\} ) } { p ( S ^ { k } ) } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 93, + 497, + 117 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 106, + 124, + 505, + 159 + ], + "lines": [ + { + "bbox": [ + 104, + 122, + 504, + 140 + ], + "spans": [ + { + "bbox": [ + 104, + 122, + 210, + 140 + ], + "score": 1.0, + "content": "Rewriting equation 10 as", + "type": "text" + }, + { + "bbox": [ + 211, + 124, + 338, + 137 + ], + "score": 0.94, + "content": "P ( b _ { 1 } = s | S ^ { k } ) = p ( s ) R ( S ^ { k } , s )", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 122, + 498, + 140 + ], + "score": 1.0, + "content": "shows that the probability of sampling", + "type": "text" + }, + { + "bbox": [ + 498, + 128, + 504, + 135 + ], + "score": 0.53, + "content": "s", + "type": "inline_equation" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 135, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 135, + 150, + 149 + ], + "score": 1.0, + "content": "first, given", + "type": "text" + }, + { + "bbox": [ + 150, + 136, + 163, + 146 + ], + "score": 0.88, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 135, + 505, + 149 + ], + "score": 1.0, + "content": ", is simply the unconditional probability multiplied by the leave-one-out ratio. We now", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 146, + 504, + 160 + ], + "spans": [ + { + "bbox": [ + 105, + 146, + 504, + 160 + ], + "score": 1.0, + "content": "define the unordered set estimator as the Rao-Blackwellized version of the single-sample estimator.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 108, + 162, + 312, + 173 + ], + "lines": [ + { + "bbox": [ + 106, + 159, + 312, + 176 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 312, + 176 + ], + "score": 1.0, + "content": "Theorem 1. The unordered set estimator, given by", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "interline_equation", + "bbox": [ + 235, + 178, + 376, + 207 + ], + "lines": [ + { + "bbox": [ + 235, + 178, + 376, + 207 + ], + "spans": [ + { + "bbox": [ + 235, + 178, + 376, + 207 + ], + "score": 0.95, + "content": "e ^ { U S } ( S ^ { k } ) = \\sum _ { s \\in S ^ { k } } p ( s ) R ( S ^ { k } , s ) f ( s )", + "type": "interline_equation", + "image_path": "03ee959b283d9cfc0e39f81176d5ac72d29d6fce2c91e22ff52fc67c6b0db17c.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 235, + 178, + 376, + 192.5 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 235, + 192.5, + 376, + 207.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 211, + 410, + 224 + ], + "lines": [ + { + "bbox": [ + 105, + 210, + 411, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 411, + 225 + ], + "score": 1.0, + "content": "is the Rao-Blackwellized version of the (unbiased!) single sample estimator.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 234, + 379, + 248 + ], + "lines": [ + { + "bbox": [ + 106, + 234, + 379, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 234, + 162, + 249 + ], + "score": 1.0, + "content": "Proof. Using", + "type": "text" + }, + { + "bbox": [ + 163, + 234, + 287, + 248 + ], + "score": 0.92, + "content": "P ( b _ { 1 } = s | S ^ { k } ) = p ( s ) R ( S ^ { k } , s )", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 234, + 379, + 249 + ], + "score": 1.0, + "content": "in equation 9 we have", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "interline_equation", + "bbox": [ + 155, + 252, + 455, + 280 + ], + "lines": [ + { + "bbox": [ + 155, + 252, + 455, + 280 + ], + "spans": [ + { + "bbox": [ + 155, + 252, + 455, + 280 + ], + "score": 0.92, + "content": "\\mathbb { E } _ { b _ { 1 } \\sim p ( b _ { 1 } | S ^ { k } ) } \\left[ f ( b _ { 1 } ) \\right] = \\sum _ { s \\in S ^ { k } } P ( b _ { 1 } = s | S ^ { k } ) f ( s ) = \\sum _ { s \\in S ^ { k } } p ( s ) R ( S ^ { k } , s ) f ( s ) .", + "type": "interline_equation", + "image_path": "51b7f2077f8163e0ce349e2825cb373b1056003fe7e01d54c2ffc9c3c267dffe.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 155, + 252, + 455, + 280 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 308, + 505, + 354 + ], + "lines": [ + { + "bbox": [ + 106, + 308, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 505, + 321 + ], + "score": 1.0, + "content": "The implication of this theorem is that the unordered set estimator, in explicit form given by equa-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 320, + 506, + 333 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 246, + 333 + ], + "score": 1.0, + "content": "tion 11, is an unbiased estimator of", + "type": "text" + }, + { + "bbox": [ + 246, + 320, + 279, + 332 + ], + "score": 0.93, + "content": "\\mathbb { E } [ f ( x ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 321, + 506, + 333 + ], + "score": 1.0, + "content": "since it is the Rao-Blackwellized version of the unbiased", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 332, + 506, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 332, + 506, + 344 + ], + "score": 1.0, + "content": "single sample estimator. Also, as expected by taking multiple samples, it has variance equal or lower", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 343, + 482, + 355 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 482, + 355 + ], + "score": 1.0, + "content": "than the single sample estimator by the Rao-Blackwell Theorem (Lehmann & Scheffe, 1950). ´", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5 + }, + { + "type": "title", + "bbox": [ + 107, + 367, + 346, + 379 + ], + "lines": [ + { + "bbox": [ + 106, + 367, + 347, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 347, + 380 + ], + "score": 1.0, + "content": "3.2 RAO-BLACKWELLIZATION OF OTHER ESTIMATORS", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 104, + 387, + 504, + 411 + ], + "lines": [ + { + "bbox": [ + 106, + 387, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 106, + 387, + 505, + 400 + ], + "score": 1.0, + "content": "The unordered set estimator is also the result of Rao-Blackwellizing two other unbiased estimators:", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 398, + 433, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 433, + 412 + ], + "score": 1.0, + "content": "the stochastic sum-and-sample estimator and the importance-weighted estimator.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 106, + 421, + 504, + 445 + ], + "lines": [ + { + "bbox": [ + 105, + 421, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 505, + 435 + ], + "score": 1.0, + "content": "The sum-and-sample estimator. We define as sum-and-sample estimator any estimator that relies", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 434, + 245, + 445 + ], + "spans": [ + { + "bbox": [ + 106, + 434, + 215, + 445 + ], + "score": 1.0, + "content": "on the identity that for any", + "type": "text" + }, + { + "bbox": [ + 215, + 434, + 245, + 444 + ], + "score": 0.88, + "content": "C \\subset D", + "type": "inline_equation" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "interline_equation", + "bbox": [ + 159, + 450, + 451, + 484 + ], + "lines": [ + { + "bbox": [ + 159, + 450, + 451, + 484 + ], + "spans": [ + { + "bbox": [ + 159, + 450, + 451, + 484 + ], + "score": 0.94, + "content": "\\mathbb { E } _ { x \\sim p ( x ) } [ f ( x ) ] = \\mathbb { E } _ { x \\sim p ^ { D \\setminus C } ( x ) } \\left[ \\sum _ { c \\in C } p ( c ) f ( c ) + \\left( 1 - \\sum _ { c \\in C } p ( c ) \\right) f ( x ) \\right] .", + "type": "interline_equation", + "image_path": "71c31bf9e4547b1b6d796ed465395787980be036d959b15057290c3d36ca596b.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 159, + 450, + 451, + 461.3333333333333 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 159, + 461.3333333333333, + 451, + 472.66666666666663 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 159, + 472.66666666666663, + 451, + 483.99999999999994 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 488, + 505, + 617 + ], + "lines": [ + { + "bbox": [ + 106, + 489, + 504, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 504, + 501 + ], + "score": 1.0, + "content": "For the derivation, see Appendix C.1 or Liang et al. (2018); Liu et al. (2019). In general, a sum-and-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 500, + 504, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 241, + 513 + ], + "score": 1.0, + "content": "sample estimator with a budget of", + "type": "text" + }, + { + "bbox": [ + 242, + 501, + 266, + 510 + ], + "score": 0.89, + "content": "k > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 500, + 495, + 513 + ], + "score": 1.0, + "content": "evaluations sums expectation terms for a set of categories", + "type": "text" + }, + { + "bbox": [ + 495, + 501, + 504, + 510 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 510, + 505, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 124, + 524 + ], + "score": 1.0, + "content": "(s.t.", + "type": "text" + }, + { + "bbox": [ + 125, + 511, + 161, + 523 + ], + "score": 0.89, + "content": "| C | < k )", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 510, + 312, + 524 + ], + "score": 1.0, + "content": "explicitly (e.g. selected by their value", + "type": "text" + }, + { + "bbox": [ + 312, + 513, + 319, + 523 + ], + "score": 0.84, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 510, + 454, + 524 + ], + "score": 1.0, + "content": "(Liang et al., 2018) or probability", + "type": "text" + }, + { + "bbox": [ + 455, + 513, + 461, + 523 + ], + "score": 0.77, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 510, + 505, + 524 + ], + "score": 1.0, + "content": "(Liu et al.,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 521, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 174, + 535 + ], + "score": 1.0, + "content": "2019)), and uses", + "type": "text" + }, + { + "bbox": [ + 174, + 523, + 205, + 534 + ], + "score": 0.91, + "content": "k - | C |", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 521, + 334, + 535 + ], + "score": 1.0, + "content": "(down-weighted) samples from", + "type": "text" + }, + { + "bbox": [ + 334, + 523, + 359, + 534 + ], + "score": 0.89, + "content": "D \\backslash C", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 521, + 505, + 535 + ], + "score": 1.0, + "content": "to estimate the remaining terms. As", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 531, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 263, + 552 + ], + "score": 1.0, + "content": "is noted by Liu et al. (2019), selecting", + "type": "text" + }, + { + "bbox": [ + 263, + 537, + 272, + 547 + ], + "score": 0.78, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 531, + 313, + 552 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 313, + 534, + 363, + 551 + ], + "score": 0.95, + "content": "\\frac { 1 - \\sum _ { c \\in C } p ( c ) } { k - | C | }", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 531, + 506, + 552 + ], + "score": 1.0, + "content": "is minimized guarantees to reduce", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 290, + 563 + ], + "score": 1.0, + "content": "variance compared to a standard minibatch of", + "type": "text" + }, + { + "bbox": [ + 290, + 552, + 296, + 560 + ], + "score": 0.83, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 550, + 453, + 563 + ], + "score": 1.0, + "content": "samples (which is equivalent to setting", + "type": "text" + }, + { + "bbox": [ + 453, + 550, + 480, + 561 + ], + "score": 0.87, + "content": "C = \\varnothing", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "). See", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 169, + 574 + ], + "score": 1.0, + "content": "also Fearnhead", + "type": "text" + }, + { + "bbox": [ + 169, + 562, + 178, + 572 + ], + "score": 0.36, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 561, + 358, + 574 + ], + "score": 1.0, + "content": "Clifford (2003) for a discussion on selecting", + "type": "text" + }, + { + "bbox": [ + 358, + 563, + 367, + 571 + ], + "score": 0.82, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "optimally. The ability to optimize", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 107, + 571, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 107, + 573, + 115, + 582 + ], + "score": 0.79, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 571, + 199, + 585 + ], + "score": 1.0, + "content": "depends on whether", + "type": "text" + }, + { + "bbox": [ + 200, + 573, + 217, + 584 + ], + "score": 0.92, + "content": "p ( c )", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 571, + 505, + 585 + ], + "score": 1.0, + "content": "can be computed efficiently a-priori (before sampling). This is difficult", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 582, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 104, + 582, + 505, + 597 + ], + "score": 1.0, + "content": "in high-dimensional settings, e.g. sequence models which compute the probability incrementally", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 592, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 317, + 608 + ], + "score": 1.0, + "content": "while ancestral sampling. An alternative is to select", + "type": "text" + }, + { + "bbox": [ + 318, + 595, + 326, + 604 + ], + "score": 0.83, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 592, + 505, + 608 + ], + "score": 1.0, + "content": "stochastically (as equation 13 holds for any", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 107, + 603, + 436, + 619 + ], + "spans": [ + { + "bbox": [ + 107, + 608, + 115, + 615 + ], + "score": 0.74, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 603, + 184, + 619 + ], + "score": 1.0, + "content": "), and we choose", + "type": "text" + }, + { + "bbox": [ + 184, + 605, + 229, + 615 + ], + "score": 0.91, + "content": "C = B ^ { k - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 603, + 436, + 619 + ], + "score": 1.0, + "content": "to define the stochastic sum-and-sample estimator:", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 28 + }, + { + "type": "interline_equation", + "bbox": [ + 190, + 622, + 421, + 662 + ], + "lines": [ + { + "bbox": [ + 190, + 622, + 421, + 662 + ], + "spans": [ + { + "bbox": [ + 190, + 622, + 421, + 662 + ], + "score": 0.95, + "content": "e ^ { { \\mathrm { S S A S } } } ( B ^ { k } ) = \\sum _ { j = 1 } ^ { k - 1 } p ( b _ { j } ) f ( b _ { j } ) + \\left( 1 - \\sum _ { j = 1 } ^ { k - 1 } p ( b _ { j } ) \\right) f ( b _ { k } ) .", + "type": "interline_equation", + "image_path": "9ed8f24def9f93383a37e69286f2f5833e1c4dc8a9d8a9cf54ab1cede0ce92e5.jpg" + } + ] + } + ], + "index": 34.5, + "virtual_lines": [ + { + "bbox": [ + 190, + 622, + 421, + 642.0 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 190, + 642.0, + 421, + 662.0 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 665, + 506, + 713 + ], + "lines": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 309, + 678 + ], + "score": 1.0, + "content": "For simplicity, we consider the version that sums", + "type": "text" + }, + { + "bbox": [ + 310, + 666, + 334, + 677 + ], + "score": 0.88, + "content": "k - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "terms here, but the following results also", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 104, + 676, + 219, + 690 + ], + "score": 1.0, + "content": "hold for a version that sums", + "type": "text" + }, + { + "bbox": [ + 220, + 678, + 246, + 687 + ], + "score": 0.89, + "content": "k - m", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 676, + 309, + 690 + ], + "score": 1.0, + "content": "terms and uses", + "type": "text" + }, + { + "bbox": [ + 309, + 681, + 318, + 686 + ], + "score": 0.78, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "samples (without replacement) (see Appendix", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 103, + 686, + 505, + 705 + ], + "spans": [ + { + "bbox": [ + 103, + 686, + 393, + 705 + ], + "score": 1.0, + "content": "C.3). Sampling without replacement, it holds that bk|Bk−1 ∼ pD\\Bk−1,", + "type": "text" + }, + { + "bbox": [ + 389, + 690, + 505, + 703 + ], + "score": 1.0, + "content": "so the unbiasedness follows", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 103, + 699, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 103, + 699, + 317, + 714 + ], + "score": 1.0, + "content": "from equation 13 by separating the expectation over", + "type": "text" + }, + { + "bbox": [ + 317, + 702, + 330, + 711 + ], + "score": 0.87, + "content": "B ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 699, + 422, + 714 + ], + "score": 1.0, + "content": "into expectations over", + "type": "text" + }, + { + "bbox": [ + 422, + 700, + 446, + 711 + ], + "score": 0.91, + "content": "B ^ { k - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 699, + 464, + 714 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 465, + 700, + 500, + 713 + ], + "score": 0.93, + "content": "b _ { k } | B ^ { k - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 699, + 506, + 714 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37.5 + }, + { + "type": "interline_equation", + "bbox": [ + 128, + 718, + 482, + 734 + ], + "lines": [ + { + "bbox": [ + 128, + 718, + 482, + 734 + ], + "spans": [ + { + "bbox": [ + 128, + 718, + 482, + 734 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\mathbb { E } _ { B ^ { k - 1 } \\sim p ( B ^ { k - 1 } ) } \\left[ \\mathbb { E } _ { b _ { k } \\sim p ( b _ { k } | B ^ { k - 1 } ) } \\left[ e ^ { S S A S } ( B ^ { k } ) \\right] \\right] = \\mathbb { E } _ { B ^ { k - 1 } \\sim p ( B ^ { k - 1 } ) } \\left[ \\mathbb { E } [ f ( x ) ] \\right] = \\mathbb { E } [ f ( x ) ] . } \\end{array}", + "type": "interline_equation", + "image_path": "1619865ccf403398a0293e9ef050ffb2ee63a39836b62b1c47416adfc582475b.jpg" + } + ] + } + ], + "index": 40, + "virtual_lines": [ + { + "bbox": [ + 128, + 718, + 482, + 734 + ], + "spans": [], + "index": 40 + } + ] + } + ], + "page_idx": 3, + "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": [ + 494, + 285, + 505, + 296 + ], + "lines": [ + { + "bbox": [ + 495, + 287, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 495, + 287, + 505, + 297 + ], + "score": 0.999, + "content": "□", + "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": "4", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 105, + 81, + 502, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 502, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 502, + 95 + ], + "score": 1.0, + "content": "The unordered set estimator. For notational convenience, we introduce the leave-one-out ratio.", + "type": "text" + } + ], + "index": 0, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 93, + 497, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 271, + 117 + ], + "score": 1.0, + "content": "Definition 1. The leave-one-out ratio of", + "type": "text" + }, + { + "bbox": [ + 271, + 103, + 277, + 110 + ], + "score": 0.73, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 93, + 329, + 117 + ], + "score": 1.0, + "content": "w.r.t. the set", + "type": "text" + }, + { + "bbox": [ + 329, + 101, + 337, + 110 + ], + "score": 0.83, + "content": "S", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 93, + 384, + 117 + ], + "score": 1.0, + "content": "is given by", + "type": "text" + }, + { + "bbox": [ + 384, + 96, + 493, + 115 + ], + "score": 0.93, + "content": "\\begin{array} { r } { R ( S ^ { k } , s ) = \\frac { p ^ { D \\setminus \\{ s \\} } ( S ^ { k } \\setminus \\{ s \\} ) } { p ( S ^ { k } ) } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 93, + 497, + 117 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 1, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 502, + 117 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 124, + 505, + 159 + ], + "lines": [ + { + "bbox": [ + 104, + 122, + 504, + 140 + ], + "spans": [ + { + "bbox": [ + 104, + 122, + 210, + 140 + ], + "score": 1.0, + "content": "Rewriting equation 10 as", + "type": "text" + }, + { + "bbox": [ + 211, + 124, + 338, + 137 + ], + "score": 0.94, + "content": "P ( b _ { 1 } = s | S ^ { k } ) = p ( s ) R ( S ^ { k } , s )", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 122, + 498, + 140 + ], + "score": 1.0, + "content": "shows that the probability of sampling", + "type": "text" + }, + { + "bbox": [ + 498, + 128, + 504, + 135 + ], + "score": 0.53, + "content": "s", + "type": "inline_equation" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 135, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 135, + 150, + 149 + ], + "score": 1.0, + "content": "first, given", + "type": "text" + }, + { + "bbox": [ + 150, + 136, + 163, + 146 + ], + "score": 0.88, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 135, + 505, + 149 + ], + "score": 1.0, + "content": ", is simply the unconditional probability multiplied by the leave-one-out ratio. We now", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 146, + 504, + 160 + ], + "spans": [ + { + "bbox": [ + 105, + 146, + 504, + 160 + ], + "score": 1.0, + "content": "define the unordered set estimator as the Rao-Blackwellized version of the single-sample estimator.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 104, + 122, + 505, + 160 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 162, + 312, + 173 + ], + "lines": [ + { + "bbox": [ + 106, + 159, + 312, + 176 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 312, + 176 + ], + "score": 1.0, + "content": "Theorem 1. The unordered set estimator, given by", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 106, + 159, + 312, + 176 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 235, + 178, + 376, + 207 + ], + "lines": [ + { + "bbox": [ + 235, + 178, + 376, + 207 + ], + "spans": [ + { + "bbox": [ + 235, + 178, + 376, + 207 + ], + "score": 0.95, + "content": "e ^ { U S } ( S ^ { k } ) = \\sum _ { s \\in S ^ { k } } p ( s ) R ( S ^ { k } , s ) f ( s )", + "type": "interline_equation", + "image_path": "03ee959b283d9cfc0e39f81176d5ac72d29d6fce2c91e22ff52fc67c6b0db17c.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 235, + 178, + 376, + 192.5 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 235, + 192.5, + 376, + 207.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 211, + 410, + 224 + ], + "lines": [ + { + "bbox": [ + 105, + 210, + 411, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 411, + 225 + ], + "score": 1.0, + "content": "is the Rao-Blackwellized version of the (unbiased!) single sample estimator.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 210, + 411, + 225 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 234, + 379, + 248 + ], + "lines": [ + { + "bbox": [ + 106, + 234, + 379, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 234, + 162, + 249 + ], + "score": 1.0, + "content": "Proof. Using", + "type": "text" + }, + { + "bbox": [ + 163, + 234, + 287, + 248 + ], + "score": 0.92, + "content": "P ( b _ { 1 } = s | S ^ { k } ) = p ( s ) R ( S ^ { k } , s )", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 234, + 379, + 249 + ], + "score": 1.0, + "content": "in equation 9 we have", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9, + "bbox_fs": [ + 106, + 234, + 379, + 249 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 155, + 252, + 455, + 280 + ], + "lines": [ + { + "bbox": [ + 155, + 252, + 455, + 280 + ], + "spans": [ + { + "bbox": [ + 155, + 252, + 455, + 280 + ], + "score": 0.92, + "content": "\\mathbb { E } _ { b _ { 1 } \\sim p ( b _ { 1 } | S ^ { k } ) } \\left[ f ( b _ { 1 } ) \\right] = \\sum _ { s \\in S ^ { k } } P ( b _ { 1 } = s | S ^ { k } ) f ( s ) = \\sum _ { s \\in S ^ { k } } p ( s ) R ( S ^ { k } , s ) f ( s ) .", + "type": "interline_equation", + "image_path": "51b7f2077f8163e0ce349e2825cb373b1056003fe7e01d54c2ffc9c3c267dffe.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 155, + 252, + 455, + 280 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 308, + 505, + 354 + ], + "lines": [ + { + "bbox": [ + 106, + 308, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 505, + 321 + ], + "score": 1.0, + "content": "The implication of this theorem is that the unordered set estimator, in explicit form given by equa-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 320, + 506, + 333 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 246, + 333 + ], + "score": 1.0, + "content": "tion 11, is an unbiased estimator of", + "type": "text" + }, + { + "bbox": [ + 246, + 320, + 279, + 332 + ], + "score": 0.93, + "content": "\\mathbb { E } [ f ( x ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 321, + 506, + 333 + ], + "score": 1.0, + "content": "since it is the Rao-Blackwellized version of the unbiased", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 332, + 506, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 332, + 506, + 344 + ], + "score": 1.0, + "content": "single sample estimator. Also, as expected by taking multiple samples, it has variance equal or lower", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 343, + 482, + 355 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 482, + 355 + ], + "score": 1.0, + "content": "than the single sample estimator by the Rao-Blackwell Theorem (Lehmann & Scheffe, 1950). ´", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5, + "bbox_fs": [ + 106, + 308, + 506, + 355 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 367, + 346, + 379 + ], + "lines": [ + { + "bbox": [ + 106, + 367, + 347, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 347, + 380 + ], + "score": 1.0, + "content": "3.2 RAO-BLACKWELLIZATION OF OTHER ESTIMATORS", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 104, + 387, + 504, + 411 + ], + "lines": [ + { + "bbox": [ + 106, + 387, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 106, + 387, + 505, + 400 + ], + "score": 1.0, + "content": "The unordered set estimator is also the result of Rao-Blackwellizing two other unbiased estimators:", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 398, + 433, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 433, + 412 + ], + "score": 1.0, + "content": "the stochastic sum-and-sample estimator and the importance-weighted estimator.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 106, + 387, + 505, + 412 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 421, + 504, + 445 + ], + "lines": [ + { + "bbox": [ + 105, + 421, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 505, + 435 + ], + "score": 1.0, + "content": "The sum-and-sample estimator. We define as sum-and-sample estimator any estimator that relies", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 434, + 245, + 445 + ], + "spans": [ + { + "bbox": [ + 106, + 434, + 215, + 445 + ], + "score": 1.0, + "content": "on the identity that for any", + "type": "text" + }, + { + "bbox": [ + 215, + 434, + 245, + 444 + ], + "score": 0.88, + "content": "C \\subset D", + "type": "inline_equation" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 421, + 505, + 445 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 159, + 450, + 451, + 484 + ], + "lines": [ + { + "bbox": [ + 159, + 450, + 451, + 484 + ], + "spans": [ + { + "bbox": [ + 159, + 450, + 451, + 484 + ], + "score": 0.94, + "content": "\\mathbb { E } _ { x \\sim p ( x ) } [ f ( x ) ] = \\mathbb { E } _ { x \\sim p ^ { D \\setminus C } ( x ) } \\left[ \\sum _ { c \\in C } p ( c ) f ( c ) + \\left( 1 - \\sum _ { c \\in C } p ( c ) \\right) f ( x ) \\right] .", + "type": "interline_equation", + "image_path": "71c31bf9e4547b1b6d796ed465395787980be036d959b15057290c3d36ca596b.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 159, + 450, + 451, + 461.3333333333333 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 159, + 461.3333333333333, + 451, + 472.66666666666663 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 159, + 472.66666666666663, + 451, + 483.99999999999994 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 488, + 505, + 617 + ], + "lines": [ + { + "bbox": [ + 106, + 489, + 504, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 504, + 501 + ], + "score": 1.0, + "content": "For the derivation, see Appendix C.1 or Liang et al. (2018); Liu et al. (2019). In general, a sum-and-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 500, + 504, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 241, + 513 + ], + "score": 1.0, + "content": "sample estimator with a budget of", + "type": "text" + }, + { + "bbox": [ + 242, + 501, + 266, + 510 + ], + "score": 0.89, + "content": "k > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 500, + 495, + 513 + ], + "score": 1.0, + "content": "evaluations sums expectation terms for a set of categories", + "type": "text" + }, + { + "bbox": [ + 495, + 501, + 504, + 510 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 510, + 505, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 124, + 524 + ], + "score": 1.0, + "content": "(s.t.", + "type": "text" + }, + { + "bbox": [ + 125, + 511, + 161, + 523 + ], + "score": 0.89, + "content": "| C | < k )", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 510, + 312, + 524 + ], + "score": 1.0, + "content": "explicitly (e.g. selected by their value", + "type": "text" + }, + { + "bbox": [ + 312, + 513, + 319, + 523 + ], + "score": 0.84, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 510, + 454, + 524 + ], + "score": 1.0, + "content": "(Liang et al., 2018) or probability", + "type": "text" + }, + { + "bbox": [ + 455, + 513, + 461, + 523 + ], + "score": 0.77, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 510, + 505, + 524 + ], + "score": 1.0, + "content": "(Liu et al.,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 521, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 174, + 535 + ], + "score": 1.0, + "content": "2019)), and uses", + "type": "text" + }, + { + "bbox": [ + 174, + 523, + 205, + 534 + ], + "score": 0.91, + "content": "k - | C |", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 521, + 334, + 535 + ], + "score": 1.0, + "content": "(down-weighted) samples from", + "type": "text" + }, + { + "bbox": [ + 334, + 523, + 359, + 534 + ], + "score": 0.89, + "content": "D \\backslash C", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 521, + 505, + 535 + ], + "score": 1.0, + "content": "to estimate the remaining terms. As", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 531, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 263, + 552 + ], + "score": 1.0, + "content": "is noted by Liu et al. (2019), selecting", + "type": "text" + }, + { + "bbox": [ + 263, + 537, + 272, + 547 + ], + "score": 0.78, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 531, + 313, + 552 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 313, + 534, + 363, + 551 + ], + "score": 0.95, + "content": "\\frac { 1 - \\sum _ { c \\in C } p ( c ) } { k - | C | }", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 531, + 506, + 552 + ], + "score": 1.0, + "content": "is minimized guarantees to reduce", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 290, + 563 + ], + "score": 1.0, + "content": "variance compared to a standard minibatch of", + "type": "text" + }, + { + "bbox": [ + 290, + 552, + 296, + 560 + ], + "score": 0.83, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 550, + 453, + 563 + ], + "score": 1.0, + "content": "samples (which is equivalent to setting", + "type": "text" + }, + { + "bbox": [ + 453, + 550, + 480, + 561 + ], + "score": 0.87, + "content": "C = \\varnothing", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "). See", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 169, + 574 + ], + "score": 1.0, + "content": "also Fearnhead", + "type": "text" + }, + { + "bbox": [ + 169, + 562, + 178, + 572 + ], + "score": 0.36, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 561, + 358, + 574 + ], + "score": 1.0, + "content": "Clifford (2003) for a discussion on selecting", + "type": "text" + }, + { + "bbox": [ + 358, + 563, + 367, + 571 + ], + "score": 0.82, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "optimally. The ability to optimize", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 107, + 571, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 107, + 573, + 115, + 582 + ], + "score": 0.79, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 571, + 199, + 585 + ], + "score": 1.0, + "content": "depends on whether", + "type": "text" + }, + { + "bbox": [ + 200, + 573, + 217, + 584 + ], + "score": 0.92, + "content": "p ( c )", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 571, + 505, + 585 + ], + "score": 1.0, + "content": "can be computed efficiently a-priori (before sampling). This is difficult", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 582, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 104, + 582, + 505, + 597 + ], + "score": 1.0, + "content": "in high-dimensional settings, e.g. sequence models which compute the probability incrementally", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 592, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 317, + 608 + ], + "score": 1.0, + "content": "while ancestral sampling. An alternative is to select", + "type": "text" + }, + { + "bbox": [ + 318, + 595, + 326, + 604 + ], + "score": 0.83, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 592, + 505, + 608 + ], + "score": 1.0, + "content": "stochastically (as equation 13 holds for any", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 107, + 603, + 436, + 619 + ], + "spans": [ + { + "bbox": [ + 107, + 608, + 115, + 615 + ], + "score": 0.74, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 603, + 184, + 619 + ], + "score": 1.0, + "content": "), and we choose", + "type": "text" + }, + { + "bbox": [ + 184, + 605, + 229, + 615 + ], + "score": 0.91, + "content": "C = B ^ { k - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 603, + 436, + 619 + ], + "score": 1.0, + "content": "to define the stochastic sum-and-sample estimator:", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 28, + "bbox_fs": [ + 104, + 489, + 506, + 619 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 190, + 622, + 421, + 662 + ], + "lines": [ + { + "bbox": [ + 190, + 622, + 421, + 662 + ], + "spans": [ + { + "bbox": [ + 190, + 622, + 421, + 662 + ], + "score": 0.95, + "content": "e ^ { { \\mathrm { S S A S } } } ( B ^ { k } ) = \\sum _ { j = 1 } ^ { k - 1 } p ( b _ { j } ) f ( b _ { j } ) + \\left( 1 - \\sum _ { j = 1 } ^ { k - 1 } p ( b _ { j } ) \\right) f ( b _ { k } ) .", + "type": "interline_equation", + "image_path": "9ed8f24def9f93383a37e69286f2f5833e1c4dc8a9d8a9cf54ab1cede0ce92e5.jpg" + } + ] + } + ], + "index": 34.5, + "virtual_lines": [ + { + "bbox": [ + 190, + 622, + 421, + 642.0 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 190, + 642.0, + 421, + 662.0 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 665, + 506, + 713 + ], + "lines": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 309, + 678 + ], + "score": 1.0, + "content": "For simplicity, we consider the version that sums", + "type": "text" + }, + { + "bbox": [ + 310, + 666, + 334, + 677 + ], + "score": 0.88, + "content": "k - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "terms here, but the following results also", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 104, + 676, + 219, + 690 + ], + "score": 1.0, + "content": "hold for a version that sums", + "type": "text" + }, + { + "bbox": [ + 220, + 678, + 246, + 687 + ], + "score": 0.89, + "content": "k - m", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 676, + 309, + 690 + ], + "score": 1.0, + "content": "terms and uses", + "type": "text" + }, + { + "bbox": [ + 309, + 681, + 318, + 686 + ], + "score": 0.78, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "samples (without replacement) (see Appendix", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 103, + 686, + 505, + 705 + ], + "spans": [ + { + "bbox": [ + 103, + 686, + 393, + 705 + ], + "score": 1.0, + "content": "C.3). Sampling without replacement, it holds that bk|Bk−1 ∼ pD\\Bk−1,", + "type": "text" + }, + { + "bbox": [ + 389, + 690, + 505, + 703 + ], + "score": 1.0, + "content": "so the unbiasedness follows", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 103, + 699, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 103, + 699, + 317, + 714 + ], + "score": 1.0, + "content": "from equation 13 by separating the expectation over", + "type": "text" + }, + { + "bbox": [ + 317, + 702, + 330, + 711 + ], + "score": 0.87, + "content": "B ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 699, + 422, + 714 + ], + "score": 1.0, + "content": "into expectations over", + "type": "text" + }, + { + "bbox": [ + 422, + 700, + 446, + 711 + ], + "score": 0.91, + "content": "B ^ { k - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 699, + 464, + 714 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 465, + 700, + 500, + 713 + ], + "score": 0.93, + "content": "b _ { k } | B ^ { k - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 699, + 506, + 714 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37.5, + "bbox_fs": [ + 103, + 666, + 506, + 714 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 128, + 718, + 482, + 734 + ], + "lines": [ + { + "bbox": [ + 128, + 718, + 482, + 734 + ], + "spans": [ + { + "bbox": [ + 128, + 718, + 482, + 734 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\mathbb { E } _ { B ^ { k - 1 } \\sim p ( B ^ { k - 1 } ) } \\left[ \\mathbb { E } _ { b _ { k } \\sim p ( b _ { k } | B ^ { k - 1 } ) } \\left[ e ^ { S S A S } ( B ^ { k } ) \\right] \\right] = \\mathbb { E } _ { B ^ { k - 1 } \\sim p ( B ^ { k - 1 } ) } \\left[ \\mathbb { E } [ f ( x ) ] \\right] = \\mathbb { E } [ f ( x ) ] . } \\end{array}", + "type": "interline_equation", + "image_path": "1619865ccf403398a0293e9ef050ffb2ee63a39836b62b1c47416adfc582475b.jpg" + } + ] + } + ], + "index": 40, + "virtual_lines": [ + { + "bbox": [ + 128, + 718, + 482, + 734 + ], + "spans": [], + "index": 40 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 505, + 171 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 94 + ], + "score": 1.0, + "content": "In general, a sum-and-sample estimator reduces variance if the probability mass is concentrated on", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 107 + ], + "score": 1.0, + "content": "the summed categories. As typically high probability categories are sampled first, the stochastic", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "sum-and-sample estimator sums high probability categories, similar to the estimator by Liu et al.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 504, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 504, + 127 + ], + "score": 1.0, + "content": "(2019) which we refer to as the deterministic sum-and-sample estimator. As we show in Appendix", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 126, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 126, + 505, + 138 + ], + "score": 1.0, + "content": "C.2, Rao-Blackwellizing the stochastic sum-and-sample estimator also results in the unordered set", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 137, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 299, + 149 + ], + "score": 1.0, + "content": "estimator. This even holds for a version that uses", + "type": "text" + }, + { + "bbox": [ + 299, + 139, + 309, + 147 + ], + "score": 0.67, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 137, + 360, + 149 + ], + "score": 1.0, + "content": "samples and", + "type": "text" + }, + { + "bbox": [ + 361, + 138, + 385, + 148 + ], + "score": 0.91, + "content": "k - m", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 137, + 505, + 149 + ], + "score": 1.0, + "content": "summed terms (see Appendix", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 148, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 106, + 148, + 505, + 161 + ], + "score": 1.0, + "content": "C.3), which means that the unordered set estimator has equal or lower variance than the optimal (in", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 488, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 142, + 172 + ], + "score": 1.0, + "content": "terms of", + "type": "text" + }, + { + "bbox": [ + 142, + 161, + 152, + 169 + ], + "score": 0.75, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 159, + 474, + 172 + ], + "score": 1.0, + "content": ") stochastic sum-and-sample estimator, but conveniently does not need to choose", + "type": "text" + }, + { + "bbox": [ + 475, + 161, + 484, + 169 + ], + "score": 0.67, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 159, + 488, + 172 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 107, + 182, + 482, + 195 + ], + "lines": [ + { + "bbox": [ + 105, + 181, + 484, + 197 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 484, + 197 + ], + "score": 1.0, + "content": "The importance-weighted estimator. The importance-weighted estimator (Vieira, 2017) is", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 240, + 200, + 371, + 231 + ], + "lines": [ + { + "bbox": [ + 240, + 200, + 371, + 231 + ], + "spans": [ + { + "bbox": [ + 240, + 200, + 371, + 231 + ], + "score": 0.95, + "content": "e ^ { \\mathrm { I W } } ( S ^ { k } , \\kappa ) = \\sum _ { s \\in S ^ { k } } { \\frac { p ( s ) } { q ( s , \\kappa ) } } f ( s ) .", + "type": "interline_equation", + "image_path": "8b61001740dc7d42db3c377579f08d9f93cdff9e7e3528a276595849d54f819e.jpg" + } + ] + } + ], + "index": 9.5, + "virtual_lines": [ + { + "bbox": [ + 240, + 200, + 371, + 215.5 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 240, + 215.5, + 371, + 231.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 236, + 505, + 338 + ], + "lines": [ + { + "bbox": [ + 106, + 236, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 505, + 249 + ], + "score": 1.0, + "content": "This estimator is based on the idea of priority sampling (Duffield et al., 2007). It does not use", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 248, + 506, + 260 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 394, + 260 + ], + "score": 1.0, + "content": "the order of the sample, but assumes sampling using the Gumbel-Top-", + "type": "text" + }, + { + "bbox": [ + 394, + 248, + 401, + 258 + ], + "score": 0.77, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 248, + 506, + 260 + ], + "score": 1.0, + "content": "trick and requires access", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 258, + 506, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 117, + 271 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 118, + 261, + 125, + 268 + ], + "score": 0.74, + "content": "\\kappa", + "type": "inline_equation" + }, + { + "bbox": [ + 125, + 259, + 145, + 271 + ], + "score": 1.0, + "content": ", the", + "type": "text" + }, + { + "bbox": [ + 146, + 258, + 178, + 270 + ], + "score": 0.89, + "content": "( k + 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 259, + 506, + 271 + ], + "score": 1.0, + "content": "-th largest perturbed log-probability, which can be seen as the ‘threshold’ since", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 268, + 507, + 283 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 189, + 281 + ], + "score": 0.75, + "content": "g _ { \\phi _ { s } } ~ > ~ \\kappa ~ \\forall s ~ \\in ~ S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 268, + 198, + 283 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 198, + 269, + 298, + 282 + ], + "score": 0.88, + "content": "\\bar { q ( s , a ) } = P ( g _ { \\phi _ { s } } > a )", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 268, + 507, + 283 + ], + "score": 1.0, + "content": "can be interpreted as the inclusion probability of", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 281, + 507, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 137, + 293 + ], + "score": 0.89, + "content": "s \\in S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 281, + 253, + 294 + ], + "score": 1.0, + "content": "(assuming a fixed threshold", + "type": "text" + }, + { + "bbox": [ + 254, + 284, + 260, + 292 + ], + "score": 0.73, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 281, + 384, + 294 + ], + "score": 1.0, + "content": "instead of a fixed sample size", + "type": "text" + }, + { + "bbox": [ + 384, + 282, + 390, + 292 + ], + "score": 0.7, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 281, + 507, + 294 + ], + "score": 1.0, + "content": "). For details and a proof of", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 293, + 505, + 305 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 505, + 305 + ], + "score": 1.0, + "content": "unbiasedness, see Vieira (2017) or Kool et al. (2019c). As the estimator has high variance, Kool", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 304, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 505, + 316 + ], + "score": 1.0, + "content": "et al. (2019c) resort to normalizing the importance weights, resulting in biased estimates. Instead,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 315, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 106, + 315, + 342, + 327 + ], + "score": 1.0, + "content": "we use Rao-Blackwellization to eliminate stochasticity by", + "type": "text" + }, + { + "bbox": [ + 342, + 317, + 349, + 325 + ], + "score": 0.69, + "content": "\\kappa", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 315, + 506, + 327 + ], + "score": 1.0, + "content": ". Again, the result is the unordered set", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 326, + 389, + 338 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 389, + 338 + ], + "score": 1.0, + "content": "estimator (see Appendix D.1), which thus has equal or lower variance.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15 + }, + { + "type": "title", + "bbox": [ + 107, + 351, + 358, + 362 + ], + "lines": [ + { + "bbox": [ + 105, + 350, + 358, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 350, + 358, + 363 + ], + "score": 1.0, + "content": "3.3 THE UNORDERED SET POLICY GRADIENT ESTIMATOR", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 371, + 504, + 394 + ], + "lines": [ + { + "bbox": [ + 106, + 371, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 139, + 384 + ], + "score": 1.0, + "content": "Writing", + "type": "text" + }, + { + "bbox": [ + 140, + 373, + 151, + 383 + ], + "score": 0.84, + "content": "p _ { \\pmb { \\theta } }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 371, + 358, + 384 + ], + "score": 1.0, + "content": "to indicate the dependency on the model parameters", + "type": "text" + }, + { + "bbox": [ + 358, + 372, + 365, + 381 + ], + "score": 0.77, + "content": "\\pmb { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 371, + 505, + 384 + ], + "score": 1.0, + "content": ", we can combine the unordered set", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 381, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 505, + 396 + ], + "score": 1.0, + "content": "estimator with REINFORCE (Williams, 1992) to obtain the unordered set policy gradient estimator.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 106, + 397, + 378, + 409 + ], + "lines": [ + { + "bbox": [ + 106, + 396, + 378, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 378, + 412 + ], + "score": 1.0, + "content": "Corollary 1. The unordered set policy gradient estimator, given by", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "interline_equation", + "bbox": [ + 130, + 414, + 464, + 442 + ], + "lines": [ + { + "bbox": [ + 130, + 414, + 464, + 442 + ], + "spans": [ + { + "bbox": [ + 130, + 414, + 464, + 442 + ], + "score": 0.92, + "content": "e ^ { U S P G } ( S ^ { k } ) = \\sum _ { s \\in S ^ { k } } p _ { \\theta } ( s ) R ( S ^ { k } , s ) \\nabla _ { \\theta } \\log p _ { \\theta } ( s ) f ( s ) = \\sum _ { s \\in S ^ { k } } \\nabla _ { \\theta } p _ { \\theta } ( s ) R ( S ^ { k } , s ) f ( s ) ,", + "type": "interline_equation", + "image_path": "1dbc150d5df5f608b513f6396d6dc46e4c366286427d7ad9da89ab67b5e56ddd.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 130, + 414, + 464, + 423.3333333333333 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 130, + 423.3333333333333, + 464, + 432.66666666666663 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 130, + 432.66666666666663, + 464, + 441.99999999999994 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 447, + 291, + 459 + ], + "lines": [ + { + "bbox": [ + 105, + 445, + 292, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 292, + 460 + ], + "score": 1.0, + "content": "is an unbiased estimate of the policy gradient.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 105, + 471, + 497, + 483 + ], + "lines": [ + { + "bbox": [ + 106, + 470, + 498, + 485 + ], + "spans": [ + { + "bbox": [ + 106, + 470, + 498, + 485 + ], + "score": 1.0, + "content": "Proof. Using REINFORCE (Williams, 1992) combined with the unordered set estimator we find:", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 488, + 506, + 528 + ], + "lines": [ + { + "bbox": [ + 111, + 488, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 111, + 488, + 506, + 528 + ], + "score": 0.93, + "content": "\\nabla _ { \\theta } \\mathbb { E } _ { p _ { \\theta } ( x ) } [ f ( x ) ] = \\mathbb { E } _ { p _ { \\theta } ( x ) } [ \\nabla _ { \\theta } \\log p _ { \\theta } ( x ) f ( x ) ] = \\mathbb { E } _ { S ^ { k } \\sim p _ { \\theta } ( S ^ { k } ) } \\left[ \\sum _ { s \\in S ^ { k } } p _ { \\theta } ( s ) R ( S ^ { k } , s ) \\nabla _ { \\theta } \\log p _ { \\theta } ( s ) f ( s ) \\right] .", + "type": "interline_equation", + "image_path": "aab23b5a4539c051761f39cd7a8e17024373c54bc3fc29e240863c4159a74352.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 111, + 488, + 506, + 501.3333333333333 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 111, + 501.3333333333333, + 506, + 514.6666666666666 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 111, + 514.6666666666666, + 506, + 528.0 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 556, + 505, + 613 + ], + "lines": [ + { + "bbox": [ + 106, + 557, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 505, + 569 + ], + "score": 1.0, + "content": "Variance reduction using a built-in control variate. The variance of REINFORCE can be re-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 567, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 254, + 581 + ], + "score": 1.0, + "content": "duced by subtracting a baseline from", + "type": "text" + }, + { + "bbox": [ + 255, + 569, + 262, + 580 + ], + "score": 0.82, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 567, + 505, + 581 + ], + "score": 1.0, + "content": ". When taking multiple samples (with replacement), a simple", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 579, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 579, + 505, + 591 + ], + "score": 1.0, + "content": "and effective baseline is to take the mean of other (independent!) samples (Mnih & Rezende, 2016).", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 590, + 506, + 603 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 506, + 603 + ], + "score": 1.0, + "content": "Sampling without replacement, we can use the same idea to construct a baseline based on the other", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 601, + 430, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 430, + 613 + ], + "score": 1.0, + "content": "samples, but we have to correct for the fact that the samples are not independent.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 106, + 615, + 430, + 628 + ], + "lines": [ + { + "bbox": [ + 105, + 614, + 430, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 430, + 630 + ], + "score": 1.0, + "content": "Theorem 2. The unordered set policy gradient estimator with baseline, given by", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "interline_equation", + "bbox": [ + 125, + 632, + 469, + 672 + ], + "lines": [ + { + "bbox": [ + 125, + 632, + 469, + 672 + ], + "spans": [ + { + "bbox": [ + 125, + 632, + 469, + 672 + ], + "score": 0.94, + "content": "e ^ { U S P G B L } ( S ^ { k } ) = \\sum _ { s \\in S ^ { k } } \\nabla _ { \\theta } p _ { \\theta } ( s ) R ( S ^ { k } , s ) \\left( f ( s ) - \\sum _ { s ^ { \\prime } \\in S ^ { k } } p _ { \\theta } ( s ^ { \\prime } ) R ^ { D \\setminus \\{ s \\} } ( S ^ { k } , s ^ { \\prime } ) f ( s ^ { \\prime } ) \\right) ,", + "type": "interline_equation", + "image_path": "2bbfebe328fefece3095174414fb002d79ec5114db4b9f927fd8cd5b4c3d72fe.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 125, + 632, + 469, + 645.3333333333334 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 125, + 645.3333333333334, + 469, + 658.6666666666667 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 125, + 658.6666666666667, + 469, + 672.0000000000001 + ], + "spans": [], + "index": 40 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 677, + 132, + 688 + ], + "lines": [ + { + "bbox": [ + 105, + 675, + 135, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 675, + 135, + 690 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 685, + 392, + 718 + ], + "lines": [ + { + "bbox": [ + 219, + 685, + 392, + 718 + ], + "spans": [ + { + "bbox": [ + 219, + 685, + 392, + 718 + ], + "score": 0.94, + "content": "R ^ { D \\setminus \\{ s \\} } ( S ^ { k } , s ^ { \\prime } ) = { \\frac { p _ { \\theta } ^ { D \\setminus \\{ s , s ^ { \\prime } \\} } ( S ^ { k } \\setminus \\{ s , s ^ { \\prime } \\} ) } { p _ { \\theta } ^ { D \\setminus \\{ s \\} } ( S ^ { k } \\setminus \\{ s \\} ) } }", + "type": "interline_equation", + "image_path": "6c8b0893165f90a463454da2a941978b46de124e3b5b3602947a4a6ac32e8a96.jpg" + } + ] + } + ], + "index": 42.5, + "virtual_lines": [ + { + "bbox": [ + 219, + 685, + 392, + 701.5 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 219, + 701.5, + 392, + 718.0 + ], + "spans": [], + "index": 43 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 721, + 449, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 720, + 450, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 450, + 733 + ], + "score": 1.0, + "content": "is the second order leave-one-out ratio, is an unbiased estimate of the policy gradient.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + } + ], + "page_idx": 4, + "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": "5", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 495, + 533, + 504, + 543 + ], + "lines": [ + { + "bbox": [ + 496, + 534, + 504, + 543 + ], + "spans": [ + { + "bbox": [ + 496, + 534, + 504, + 543 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 505, + 171 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 94 + ], + "score": 1.0, + "content": "In general, a sum-and-sample estimator reduces variance if the probability mass is concentrated on", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 107 + ], + "score": 1.0, + "content": "the summed categories. As typically high probability categories are sampled first, the stochastic", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "sum-and-sample estimator sums high probability categories, similar to the estimator by Liu et al.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 504, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 504, + 127 + ], + "score": 1.0, + "content": "(2019) which we refer to as the deterministic sum-and-sample estimator. As we show in Appendix", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 126, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 126, + 505, + 138 + ], + "score": 1.0, + "content": "C.2, Rao-Blackwellizing the stochastic sum-and-sample estimator also results in the unordered set", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 137, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 299, + 149 + ], + "score": 1.0, + "content": "estimator. This even holds for a version that uses", + "type": "text" + }, + { + "bbox": [ + 299, + 139, + 309, + 147 + ], + "score": 0.67, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 137, + 360, + 149 + ], + "score": 1.0, + "content": "samples and", + "type": "text" + }, + { + "bbox": [ + 361, + 138, + 385, + 148 + ], + "score": 0.91, + "content": "k - m", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 137, + 505, + 149 + ], + "score": 1.0, + "content": "summed terms (see Appendix", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 148, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 106, + 148, + 505, + 161 + ], + "score": 1.0, + "content": "C.3), which means that the unordered set estimator has equal or lower variance than the optimal (in", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 488, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 142, + 172 + ], + "score": 1.0, + "content": "terms of", + "type": "text" + }, + { + "bbox": [ + 142, + 161, + 152, + 169 + ], + "score": 0.75, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 159, + 474, + 172 + ], + "score": 1.0, + "content": ") stochastic sum-and-sample estimator, but conveniently does not need to choose", + "type": "text" + }, + { + "bbox": [ + 475, + 161, + 484, + 169 + ], + "score": 0.67, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 159, + 488, + 172 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 83, + 506, + 172 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 182, + 482, + 195 + ], + "lines": [ + { + "bbox": [ + 105, + 181, + 484, + 197 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 484, + 197 + ], + "score": 1.0, + "content": "The importance-weighted estimator. The importance-weighted estimator (Vieira, 2017) is", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 181, + 484, + 197 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 240, + 200, + 371, + 231 + ], + "lines": [ + { + "bbox": [ + 240, + 200, + 371, + 231 + ], + "spans": [ + { + "bbox": [ + 240, + 200, + 371, + 231 + ], + "score": 0.95, + "content": "e ^ { \\mathrm { I W } } ( S ^ { k } , \\kappa ) = \\sum _ { s \\in S ^ { k } } { \\frac { p ( s ) } { q ( s , \\kappa ) } } f ( s ) .", + "type": "interline_equation", + "image_path": "8b61001740dc7d42db3c377579f08d9f93cdff9e7e3528a276595849d54f819e.jpg" + } + ] + } + ], + "index": 9.5, + "virtual_lines": [ + { + "bbox": [ + 240, + 200, + 371, + 215.5 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 240, + 215.5, + 371, + 231.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 236, + 505, + 338 + ], + "lines": [ + { + "bbox": [ + 106, + 236, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 505, + 249 + ], + "score": 1.0, + "content": "This estimator is based on the idea of priority sampling (Duffield et al., 2007). It does not use", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 248, + 506, + 260 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 394, + 260 + ], + "score": 1.0, + "content": "the order of the sample, but assumes sampling using the Gumbel-Top-", + "type": "text" + }, + { + "bbox": [ + 394, + 248, + 401, + 258 + ], + "score": 0.77, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 248, + 506, + 260 + ], + "score": 1.0, + "content": "trick and requires access", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 258, + 506, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 117, + 271 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 118, + 261, + 125, + 268 + ], + "score": 0.74, + "content": "\\kappa", + "type": "inline_equation" + }, + { + "bbox": [ + 125, + 259, + 145, + 271 + ], + "score": 1.0, + "content": ", the", + "type": "text" + }, + { + "bbox": [ + 146, + 258, + 178, + 270 + ], + "score": 0.89, + "content": "( k + 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 259, + 506, + 271 + ], + "score": 1.0, + "content": "-th largest perturbed log-probability, which can be seen as the ‘threshold’ since", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 268, + 507, + 283 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 189, + 281 + ], + "score": 0.75, + "content": "g _ { \\phi _ { s } } ~ > ~ \\kappa ~ \\forall s ~ \\in ~ S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 268, + 198, + 283 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 198, + 269, + 298, + 282 + ], + "score": 0.88, + "content": "\\bar { q ( s , a ) } = P ( g _ { \\phi _ { s } } > a )", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 268, + 507, + 283 + ], + "score": 1.0, + "content": "can be interpreted as the inclusion probability of", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 281, + 507, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 137, + 293 + ], + "score": 0.89, + "content": "s \\in S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 281, + 253, + 294 + ], + "score": 1.0, + "content": "(assuming a fixed threshold", + "type": "text" + }, + { + "bbox": [ + 254, + 284, + 260, + 292 + ], + "score": 0.73, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 281, + 384, + 294 + ], + "score": 1.0, + "content": "instead of a fixed sample size", + "type": "text" + }, + { + "bbox": [ + 384, + 282, + 390, + 292 + ], + "score": 0.7, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 281, + 507, + 294 + ], + "score": 1.0, + "content": "). For details and a proof of", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 293, + 505, + 305 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 505, + 305 + ], + "score": 1.0, + "content": "unbiasedness, see Vieira (2017) or Kool et al. (2019c). As the estimator has high variance, Kool", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 304, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 505, + 316 + ], + "score": 1.0, + "content": "et al. (2019c) resort to normalizing the importance weights, resulting in biased estimates. Instead,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 315, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 106, + 315, + 342, + 327 + ], + "score": 1.0, + "content": "we use Rao-Blackwellization to eliminate stochasticity by", + "type": "text" + }, + { + "bbox": [ + 342, + 317, + 349, + 325 + ], + "score": 0.69, + "content": "\\kappa", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 315, + 506, + 327 + ], + "score": 1.0, + "content": ". Again, the result is the unordered set", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 326, + 389, + 338 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 389, + 338 + ], + "score": 1.0, + "content": "estimator (see Appendix D.1), which thus has equal or lower variance.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 236, + 507, + 338 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 351, + 358, + 362 + ], + "lines": [ + { + "bbox": [ + 105, + 350, + 358, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 350, + 358, + 363 + ], + "score": 1.0, + "content": "3.3 THE UNORDERED SET POLICY GRADIENT ESTIMATOR", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 371, + 504, + 394 + ], + "lines": [ + { + "bbox": [ + 106, + 371, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 139, + 384 + ], + "score": 1.0, + "content": "Writing", + "type": "text" + }, + { + "bbox": [ + 140, + 373, + 151, + 383 + ], + "score": 0.84, + "content": "p _ { \\pmb { \\theta } }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 371, + 358, + 384 + ], + "score": 1.0, + "content": "to indicate the dependency on the model parameters", + "type": "text" + }, + { + "bbox": [ + 358, + 372, + 365, + 381 + ], + "score": 0.77, + "content": "\\pmb { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 371, + 505, + 384 + ], + "score": 1.0, + "content": ", we can combine the unordered set", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 381, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 505, + 396 + ], + "score": 1.0, + "content": "estimator with REINFORCE (Williams, 1992) to obtain the unordered set policy gradient estimator.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 371, + 505, + 396 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 397, + 378, + 409 + ], + "lines": [ + { + "bbox": [ + 106, + 396, + 378, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 378, + 412 + ], + "score": 1.0, + "content": "Corollary 1. The unordered set policy gradient estimator, given by", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23, + "bbox_fs": [ + 106, + 396, + 378, + 412 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 130, + 414, + 464, + 442 + ], + "lines": [ + { + "bbox": [ + 130, + 414, + 464, + 442 + ], + "spans": [ + { + "bbox": [ + 130, + 414, + 464, + 442 + ], + "score": 0.92, + "content": "e ^ { U S P G } ( S ^ { k } ) = \\sum _ { s \\in S ^ { k } } p _ { \\theta } ( s ) R ( S ^ { k } , s ) \\nabla _ { \\theta } \\log p _ { \\theta } ( s ) f ( s ) = \\sum _ { s \\in S ^ { k } } \\nabla _ { \\theta } p _ { \\theta } ( s ) R ( S ^ { k } , s ) f ( s ) ,", + "type": "interline_equation", + "image_path": "1dbc150d5df5f608b513f6396d6dc46e4c366286427d7ad9da89ab67b5e56ddd.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 130, + 414, + 464, + 423.3333333333333 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 130, + 423.3333333333333, + 464, + 432.66666666666663 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 130, + 432.66666666666663, + 464, + 441.99999999999994 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 447, + 291, + 459 + ], + "lines": [ + { + "bbox": [ + 105, + 445, + 292, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 292, + 460 + ], + "score": 1.0, + "content": "is an unbiased estimate of the policy gradient.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 445, + 292, + 460 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 471, + 497, + 483 + ], + "lines": [ + { + "bbox": [ + 106, + 470, + 498, + 485 + ], + "spans": [ + { + "bbox": [ + 106, + 470, + 498, + 485 + ], + "score": 1.0, + "content": "Proof. Using REINFORCE (Williams, 1992) combined with the unordered set estimator we find:", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28, + "bbox_fs": [ + 106, + 470, + 498, + 485 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 488, + 506, + 528 + ], + "lines": [ + { + "bbox": [ + 111, + 488, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 111, + 488, + 506, + 528 + ], + "score": 0.93, + "content": "\\nabla _ { \\theta } \\mathbb { E } _ { p _ { \\theta } ( x ) } [ f ( x ) ] = \\mathbb { E } _ { p _ { \\theta } ( x ) } [ \\nabla _ { \\theta } \\log p _ { \\theta } ( x ) f ( x ) ] = \\mathbb { E } _ { S ^ { k } \\sim p _ { \\theta } ( S ^ { k } ) } \\left[ \\sum _ { s \\in S ^ { k } } p _ { \\theta } ( s ) R ( S ^ { k } , s ) \\nabla _ { \\theta } \\log p _ { \\theta } ( s ) f ( s ) \\right] .", + "type": "interline_equation", + "image_path": "aab23b5a4539c051761f39cd7a8e17024373c54bc3fc29e240863c4159a74352.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 111, + 488, + 506, + 501.3333333333333 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 111, + 501.3333333333333, + 506, + 514.6666666666666 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 111, + 514.6666666666666, + 506, + 528.0 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 556, + 505, + 613 + ], + "lines": [ + { + "bbox": [ + 106, + 557, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 505, + 569 + ], + "score": 1.0, + "content": "Variance reduction using a built-in control variate. The variance of REINFORCE can be re-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 567, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 254, + 581 + ], + "score": 1.0, + "content": "duced by subtracting a baseline from", + "type": "text" + }, + { + "bbox": [ + 255, + 569, + 262, + 580 + ], + "score": 0.82, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 567, + 505, + 581 + ], + "score": 1.0, + "content": ". When taking multiple samples (with replacement), a simple", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 579, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 579, + 505, + 591 + ], + "score": 1.0, + "content": "and effective baseline is to take the mean of other (independent!) samples (Mnih & Rezende, 2016).", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 590, + 506, + 603 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 506, + 603 + ], + "score": 1.0, + "content": "Sampling without replacement, we can use the same idea to construct a baseline based on the other", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 601, + 430, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 430, + 613 + ], + "score": 1.0, + "content": "samples, but we have to correct for the fact that the samples are not independent.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34, + "bbox_fs": [ + 106, + 557, + 506, + 613 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 615, + 430, + 628 + ], + "lines": [ + { + "bbox": [ + 105, + 614, + 430, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 430, + 630 + ], + "score": 1.0, + "content": "Theorem 2. The unordered set policy gradient estimator with baseline, given by", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 614, + 430, + 630 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 125, + 632, + 469, + 672 + ], + "lines": [ + { + "bbox": [ + 125, + 632, + 469, + 672 + ], + "spans": [ + { + "bbox": [ + 125, + 632, + 469, + 672 + ], + "score": 0.94, + "content": "e ^ { U S P G B L } ( S ^ { k } ) = \\sum _ { s \\in S ^ { k } } \\nabla _ { \\theta } p _ { \\theta } ( s ) R ( S ^ { k } , s ) \\left( f ( s ) - \\sum _ { s ^ { \\prime } \\in S ^ { k } } p _ { \\theta } ( s ^ { \\prime } ) R ^ { D \\setminus \\{ s \\} } ( S ^ { k } , s ^ { \\prime } ) f ( s ^ { \\prime } ) \\right) ,", + "type": "interline_equation", + "image_path": "2bbfebe328fefece3095174414fb002d79ec5114db4b9f927fd8cd5b4c3d72fe.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 125, + 632, + 469, + 645.3333333333334 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 125, + 645.3333333333334, + 469, + 658.6666666666667 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 125, + 658.6666666666667, + 469, + 672.0000000000001 + ], + "spans": [], + "index": 40 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 677, + 132, + 688 + ], + "lines": [ + { + "bbox": [ + 105, + 675, + 135, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 675, + 135, + 690 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41, + "bbox_fs": [ + 105, + 675, + 135, + 690 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 685, + 392, + 718 + ], + "lines": [ + { + "bbox": [ + 219, + 685, + 392, + 718 + ], + "spans": [ + { + "bbox": [ + 219, + 685, + 392, + 718 + ], + "score": 0.94, + "content": "R ^ { D \\setminus \\{ s \\} } ( S ^ { k } , s ^ { \\prime } ) = { \\frac { p _ { \\theta } ^ { D \\setminus \\{ s , s ^ { \\prime } \\} } ( S ^ { k } \\setminus \\{ s , s ^ { \\prime } \\} ) } { p _ { \\theta } ^ { D \\setminus \\{ s \\} } ( S ^ { k } \\setminus \\{ s \\} ) } }", + "type": "interline_equation", + "image_path": "6c8b0893165f90a463454da2a941978b46de124e3b5b3602947a4a6ac32e8a96.jpg" + } + ] + } + ], + "index": 42.5, + "virtual_lines": [ + { + "bbox": [ + 219, + 685, + 392, + 701.5 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 219, + 701.5, + 392, + 718.0 + ], + "spans": [], + "index": 43 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 721, + 449, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 720, + 450, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 450, + 733 + ], + "score": 1.0, + "content": "is the second order leave-one-out ratio, is an unbiased estimate of the policy gradient.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44, + "bbox_fs": [ + 105, + 720, + 450, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 83, + 211, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 213, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 213, + 96 + ], + "score": 1.0, + "content": "Proof. See Appendix E.1.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 113, + 505, + 191 + ], + "lines": [ + { + "bbox": [ + 106, + 113, + 505, + 125 + ], + "spans": [ + { + "bbox": [ + 106, + 113, + 505, + 125 + ], + "score": 1.0, + "content": "This theorem shows how to include a built-in baseline based on dependent samples (without re-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 124, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 124, + 421, + 137 + ], + "score": 1.0, + "content": "placement), without introducing bias. By having a built-in baseline, the value", + "type": "text" + }, + { + "bbox": [ + 422, + 124, + 441, + 136 + ], + "score": 0.91, + "content": "f ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 124, + 488, + 137 + ], + "score": 1.0, + "content": "for sample", + "type": "text" + }, + { + "bbox": [ + 488, + 126, + 495, + 134 + ], + "score": 0.7, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 124, + 505, + 137 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 135, + 506, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 135, + 297, + 149 + ], + "score": 1.0, + "content": "compared against an estimate of its expectation", + "type": "text" + }, + { + "bbox": [ + 297, + 135, + 328, + 147 + ], + "score": 0.92, + "content": "\\mathbb { E } [ f ( s ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 135, + 506, + 149 + ], + "score": 1.0, + "content": ", based on the other samples. The difference", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 146, + 505, + 158 + ], + "spans": [ + { + "bbox": [ + 105, + 146, + 465, + 158 + ], + "score": 1.0, + "content": "is an estimate of the advantage (Sutton & Barto, 2018), which is positive if the sample", + "type": "text" + }, + { + "bbox": [ + 466, + 148, + 472, + 156 + ], + "score": 0.7, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 472, + 146, + 505, + 158 + ], + "score": 1.0, + "content": "is ‘bet-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 156, + 506, + 171 + ], + "spans": [ + { + "bbox": [ + 105, + 156, + 213, + 171 + ], + "score": 1.0, + "content": "ter’ than average, causing", + "type": "text" + }, + { + "bbox": [ + 213, + 157, + 237, + 169 + ], + "score": 0.91, + "content": "p _ { \\pmb { \\theta } } ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 156, + 506, + 171 + ], + "score": 1.0, + "content": "to be increased (reinforced) through the sign of the gradient, and", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 168, + 506, + 180 + ], + "spans": [ + { + "bbox": [ + 105, + 168, + 506, + 180 + ], + "score": 1.0, + "content": "vice versa. By sampling without replacement, the unordered set estimator forces the estimator to", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 179, + 376, + 191 + ], + "spans": [ + { + "bbox": [ + 105, + 179, + 376, + 191 + ], + "score": 1.0, + "content": "compare different alternatives, and reinforces the best among them.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 107, + 204, + 505, + 239 + ], + "lines": [ + { + "bbox": [ + 105, + 205, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 475, + 217 + ], + "score": 1.0, + "content": "Including the pathwise derivative. So far, we have only considered the scenario where", + "type": "text" + }, + { + "bbox": [ + 475, + 205, + 483, + 217 + ], + "score": 0.84, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 205, + 505, + 217 + ], + "score": 1.0, + "content": "does", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 214, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 165, + 228 + ], + "score": 1.0, + "content": "not depend on", + "type": "text" + }, + { + "bbox": [ + 166, + 216, + 172, + 226 + ], + "score": 0.74, + "content": "\\pmb \\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 214, + 186, + 228 + ], + "score": 1.0, + "content": ". If", + "type": "text" + }, + { + "bbox": [ + 186, + 216, + 193, + 227 + ], + "score": 0.87, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 214, + 259, + 228 + ], + "score": 1.0, + "content": "does depend on", + "type": "text" + }, + { + "bbox": [ + 259, + 216, + 266, + 226 + ], + "score": 0.77, + "content": "\\pmb \\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 214, + 505, + 228 + ], + "score": 1.0, + "content": ", for example in a VAE (Kingma & Welling, 2014; Rezende", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 227, + 498, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 258, + 239 + ], + "score": 1.0, + "content": "et al., 2014), then we use the notation", + "type": "text" + }, + { + "bbox": [ + 259, + 227, + 270, + 238 + ], + "score": 0.88, + "content": "f _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 227, + 498, + 239 + ], + "score": 1.0, + "content": "and we can write the gradient (Schulman et al., 2015) as", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "interline_equation", + "bbox": [ + 183, + 245, + 428, + 260 + ], + "lines": [ + { + "bbox": [ + 183, + 245, + 428, + 260 + ], + "spans": [ + { + "bbox": [ + 183, + 245, + 428, + 260 + ], + "score": 0.89, + "content": "\\nabla _ { \\pmb { \\theta } } \\mathbb { E } _ { p _ { \\pmb { \\theta } } ( \\pmb { x } ) } [ f _ { \\pmb { \\theta } } ( \\pmb { x } ) ] = \\mathbb { E } _ { p _ { \\pmb { \\theta } } ( \\pmb { x } ) } [ \\nabla _ { \\pmb { \\theta } } \\log p _ { \\pmb { \\theta } } ( \\pmb { x } ) f _ { \\pmb { \\theta } } ( \\pmb { x } ) + \\nabla _ { \\pmb { \\theta } } f _ { \\pmb { \\theta } } ( \\pmb { x } ) ] .", + "type": "interline_equation", + "image_path": "6d9200624e6d99ee5fa00ffa9450b95f696e999e1febff3fc26aa6f635fccce8.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 183, + 245, + 428, + 260 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 267, + 508, + 289 + ], + "lines": [ + { + "bbox": [ + 106, + 267, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 106, + 267, + 506, + 279 + ], + "score": 1.0, + "content": "The additional second (‘pathwise’) term can be estimated (using the same samples) with the standard", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 277, + 456, + 290 + ], + "spans": [ + { + "bbox": [ + 106, + 277, + 456, + 290 + ], + "score": 1.0, + "content": "unordered set estimator. This results in the full unordered set policy gradient estimator:", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "interline_equation", + "bbox": [ + 153, + 295, + 457, + 353 + ], + "lines": [ + { + "bbox": [ + 153, + 295, + 457, + 353 + ], + "spans": [ + { + "bbox": [ + 153, + 295, + 457, + 353 + ], + "score": 0.94, + "content": "\\begin{array} { l } { { \\displaystyle e ^ { \\mathrm { F U S P G } } ( S ^ { k } ) = \\sum _ { s \\in S ^ { k } } \\nabla _ { \\theta } p _ { \\theta } ( s ) R ( S ^ { k } , s ) f _ { \\theta } ( s ) + \\sum _ { s \\in S ^ { k } } p _ { \\theta } ( s ) R ( S ^ { k } , s ) \\nabla _ { \\theta } f _ { \\theta } ( s ) } } \\\\ { { \\displaystyle \\quad = \\sum _ { s \\in S ^ { k } } R ( S ^ { k } , s ) \\nabla _ { \\theta } \\left( p _ { \\theta } ( s ) f _ { \\theta } ( s ) \\right) } } \\end{array}", + "type": "interline_equation", + "image_path": "4cab27528948a20ca5fd07651bbd08bcb77a11aa80de85ca79d21a7721f0cde6.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 153, + 295, + 457, + 314.3333333333333 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 153, + 314.3333333333333, + 457, + 333.66666666666663 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 153, + 333.66666666666663, + 457, + 352.99999999999994 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 359, + 503, + 405 + ], + "lines": [ + { + "bbox": [ + 105, + 360, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 505, + 372 + ], + "score": 1.0, + "content": "Equation 20 is straightforward to implement using an automatic differentiation library. We can also", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 370, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 505, + 384 + ], + "score": 1.0, + "content": "include the baseline (as in equation 17) but we must make sure to call STOP GRADIENT (DETACH in", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 381, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 255, + 394 + ], + "score": 1.0, + "content": "PyTorch) on the baseline (but not on", + "type": "text" + }, + { + "bbox": [ + 255, + 382, + 285, + 394 + ], + "score": 0.91, + "content": "f _ { \\pmb \\theta } ( s ) ! )", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 381, + 505, + 394 + ], + "score": 1.0, + "content": ". Importantly, we should never track gradients through", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 392, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 198, + 406 + ], + "score": 1.0, + "content": "the leave-one-out ratio", + "type": "text" + }, + { + "bbox": [ + 198, + 392, + 235, + 405 + ], + "score": 0.93, + "content": "R ( S ^ { k } , s )", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 392, + 505, + 406 + ], + "score": 1.0, + "content": "which means it can be efficiently computed in pure inference mode.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 106, + 418, + 505, + 518 + ], + "lines": [ + { + "bbox": [ + 106, + 418, + 504, + 432 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 504, + 432 + ], + "score": 1.0, + "content": "Scope & limitations. We can use the unordered set estimator for any discrete distribution from", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 429, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 506, + 443 + ], + "score": 1.0, + "content": "which we can sample without replacement, by treating it as a univariate categorical distribution", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 441, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 505, + 453 + ], + "score": 1.0, + "content": "over its domain. This includes sequence models, from which we can sample using Stochastic Beam", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 451, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 505, + 464 + ], + "score": 1.0, + "content": "Search (Kool et al., 2019c), as well as multivariate categorical distributions which can also be treated", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 463, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 505, + 475 + ], + "score": 1.0, + "content": "as sequence models (see Section 4.2). In the presence of continuous variables or a stochastic function", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 474, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 114, + 485 + ], + "score": 0.83, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 474, + 505, + 486 + ], + "score": 1.0, + "content": ", we may separate this stochasticity from the stochasticity over the discrete distribution, as in", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 485, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 485, + 505, + 497 + ], + "score": 1.0, + "content": "Lorberbom et al. (2019). The computation of the leave-one-out ratios adds some overhead, although", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 496, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 298, + 507 + ], + "score": 1.0, + "content": "they can be computed efficiently, even for large", + "type": "text" + }, + { + "bbox": [ + 298, + 496, + 305, + 505 + ], + "score": 0.77, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 496, + 505, + 507 + ], + "score": 1.0, + "content": "(see Appendix B). For a moderately sized model,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 506, + 496, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 496, + 520 + ], + "score": 1.0, + "content": "the costs of model evaluation and backpropagation dominate the cost of computing the estimator.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25 + }, + { + "type": "title", + "bbox": [ + 107, + 534, + 345, + 545 + ], + "lines": [ + { + "bbox": [ + 105, + 533, + 347, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 347, + 546 + ], + "score": 1.0, + "content": "3.4 RELATION TO OTHER MULTI-SAMPLE ESTIMATORS", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 106, + 555, + 505, + 622 + ], + "lines": [ + { + "bbox": [ + 105, + 554, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 568 + ], + "score": 1.0, + "content": "Relation to Murthy’s estimator. We found out that the ‘vanilla’ unordered set estimator (equa-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 567, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 505, + 578 + ], + "score": 1.0, + "content": "tion 11) is actually a special case of the estimator by Murthy (1957), known in statistics literature", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 575, + 507, + 593 + ], + "spans": [ + { + "bbox": [ + 104, + 575, + 249, + 593 + ], + "score": 1.0, + "content": "for estimation of a population total", + "type": "text" + }, + { + "bbox": [ + 250, + 577, + 308, + 590 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\Theta = \\sum _ { i \\in D } y _ { i } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 575, + 340, + 593 + ], + "score": 1.0, + "content": ". Using", + "type": "text" + }, + { + "bbox": [ + 340, + 577, + 397, + 589 + ], + "score": 0.93, + "content": "y _ { i } = p ( i ) f ( i )", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 575, + 437, + 593 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 437, + 577, + 489, + 589 + ], + "score": 0.92, + "content": "\\Theta = \\mathbb { E } [ f ( i ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 575, + 507, + 593 + ], + "score": 1.0, + "content": ", so", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 587, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 505, + 601 + ], + "score": 1.0, + "content": "Murthy’s estimator can be used to estimate expectations (see equation 11). Murthy derives the esti-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 598, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 104, + 598, + 444, + 613 + ], + "score": 1.0, + "content": "mator by ‘unordering’ a convex combination of Raj (1956) estimators, which, using", + "type": "text" + }, + { + "bbox": [ + 445, + 599, + 501, + 611 + ], + "score": 0.93, + "content": "y _ { i } = p ( i ) f ( i )", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 598, + 506, + 613 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 609, + 336, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 336, + 623 + ], + "score": 1.0, + "content": "are stochastic sum-and-sample estimators in our analogy.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 107, + 626, + 505, + 683 + ], + "lines": [ + { + "bbox": [ + 106, + 626, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 505, + 639 + ], + "score": 1.0, + "content": "Murthy (1957) also provides an unbiased estimator of the variance, which may be interesting for", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "future applications. Since Murthy’s estimator can be used with arbitrary sampling distribution, it", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 648, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 506, + 662 + ], + "score": 1.0, + "content": "is straightforward to derive importance-sampling versions of our estimators. In particular, we can", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 659, + 505, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 137, + 674 + ], + "score": 1.0, + "content": "sample", + "type": "text" + }, + { + "bbox": [ + 137, + 660, + 145, + 670 + ], + "score": 0.79, + "content": "S", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 659, + 254, + 674 + ], + "score": 1.0, + "content": "without replacement using", + "type": "text" + }, + { + "bbox": [ + 255, + 660, + 323, + 671 + ], + "score": 0.9, + "content": "q ( x ) > 0 , x \\in D", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 659, + 505, + 674 + ], + "score": 1.0, + "content": ", and use equations 11, 16, 17 and 20, as long", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 668, + 334, + 686 + ], + "spans": [ + { + "bbox": [ + 104, + 668, + 261, + 686 + ], + "score": 1.0, + "content": "as we compute the leave-one-out ratio", + "type": "text" + }, + { + "bbox": [ + 261, + 671, + 298, + 683 + ], + "score": 0.92, + "content": "R ( S ^ { k } , s )", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 668, + 323, + 686 + ], + "score": 1.0, + "content": "using", + "type": "text" + }, + { + "bbox": [ + 324, + 673, + 329, + 682 + ], + "score": 0.67, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 668, + 334, + 686 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 686, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 506, + 700 + ], + "score": 1.0, + "content": "While part of our derivation coincides with Murthy (1957), we are not aware of previous work", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "using this estimator to estimate expectations. Additionally, we discuss practical computation of", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 107, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 107, + 710, + 127, + 722 + ], + "score": 0.9, + "content": "p ( S )", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "(Appendix B), we show the relation to the importance-weighted estimator, and we provide the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 721, + 504, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 504, + 732 + ], + "score": 1.0, + "content": "extension to estimating policy gradients, especially including a built-in baseline without adding bias.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 43.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 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 495, + 83, + 504, + 93 + ], + "lines": [ + { + "bbox": [ + 496, + 84, + 504, + 93 + ], + "spans": [ + { + "bbox": [ + 496, + 84, + 504, + 93 + ], + "score": 0.999, + "content": "□", + "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, + 83, + 211, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 213, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 213, + 96 + ], + "score": 1.0, + "content": "Proof. See Appendix E.1.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 106, + 82, + 213, + 96 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 113, + 505, + 191 + ], + "lines": [ + { + "bbox": [ + 106, + 113, + 505, + 125 + ], + "spans": [ + { + "bbox": [ + 106, + 113, + 505, + 125 + ], + "score": 1.0, + "content": "This theorem shows how to include a built-in baseline based on dependent samples (without re-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 124, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 124, + 421, + 137 + ], + "score": 1.0, + "content": "placement), without introducing bias. By having a built-in baseline, the value", + "type": "text" + }, + { + "bbox": [ + 422, + 124, + 441, + 136 + ], + "score": 0.91, + "content": "f ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 124, + 488, + 137 + ], + "score": 1.0, + "content": "for sample", + "type": "text" + }, + { + "bbox": [ + 488, + 126, + 495, + 134 + ], + "score": 0.7, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 124, + 505, + 137 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 135, + 506, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 135, + 297, + 149 + ], + "score": 1.0, + "content": "compared against an estimate of its expectation", + "type": "text" + }, + { + "bbox": [ + 297, + 135, + 328, + 147 + ], + "score": 0.92, + "content": "\\mathbb { E } [ f ( s ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 135, + 506, + 149 + ], + "score": 1.0, + "content": ", based on the other samples. The difference", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 146, + 505, + 158 + ], + "spans": [ + { + "bbox": [ + 105, + 146, + 465, + 158 + ], + "score": 1.0, + "content": "is an estimate of the advantage (Sutton & Barto, 2018), which is positive if the sample", + "type": "text" + }, + { + "bbox": [ + 466, + 148, + 472, + 156 + ], + "score": 0.7, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 472, + 146, + 505, + 158 + ], + "score": 1.0, + "content": "is ‘bet-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 156, + 506, + 171 + ], + "spans": [ + { + "bbox": [ + 105, + 156, + 213, + 171 + ], + "score": 1.0, + "content": "ter’ than average, causing", + "type": "text" + }, + { + "bbox": [ + 213, + 157, + 237, + 169 + ], + "score": 0.91, + "content": "p _ { \\pmb { \\theta } } ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 156, + 506, + 171 + ], + "score": 1.0, + "content": "to be increased (reinforced) through the sign of the gradient, and", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 168, + 506, + 180 + ], + "spans": [ + { + "bbox": [ + 105, + 168, + 506, + 180 + ], + "score": 1.0, + "content": "vice versa. By sampling without replacement, the unordered set estimator forces the estimator to", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 179, + 376, + 191 + ], + "spans": [ + { + "bbox": [ + 105, + 179, + 376, + 191 + ], + "score": 1.0, + "content": "compare different alternatives, and reinforces the best among them.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 113, + 506, + 191 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 204, + 505, + 239 + ], + "lines": [ + { + "bbox": [ + 105, + 205, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 475, + 217 + ], + "score": 1.0, + "content": "Including the pathwise derivative. So far, we have only considered the scenario where", + "type": "text" + }, + { + "bbox": [ + 475, + 205, + 483, + 217 + ], + "score": 0.84, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 205, + 505, + 217 + ], + "score": 1.0, + "content": "does", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 214, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 165, + 228 + ], + "score": 1.0, + "content": "not depend on", + "type": "text" + }, + { + "bbox": [ + 166, + 216, + 172, + 226 + ], + "score": 0.74, + "content": "\\pmb \\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 214, + 186, + 228 + ], + "score": 1.0, + "content": ". If", + "type": "text" + }, + { + "bbox": [ + 186, + 216, + 193, + 227 + ], + "score": 0.87, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 214, + 259, + 228 + ], + "score": 1.0, + "content": "does depend on", + "type": "text" + }, + { + "bbox": [ + 259, + 216, + 266, + 226 + ], + "score": 0.77, + "content": "\\pmb \\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 214, + 505, + 228 + ], + "score": 1.0, + "content": ", for example in a VAE (Kingma & Welling, 2014; Rezende", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 227, + 498, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 258, + 239 + ], + "score": 1.0, + "content": "et al., 2014), then we use the notation", + "type": "text" + }, + { + "bbox": [ + 259, + 227, + 270, + 238 + ], + "score": 0.88, + "content": "f _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 227, + 498, + 239 + ], + "score": 1.0, + "content": "and we can write the gradient (Schulman et al., 2015) as", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 205, + 505, + 239 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 183, + 245, + 428, + 260 + ], + "lines": [ + { + "bbox": [ + 183, + 245, + 428, + 260 + ], + "spans": [ + { + "bbox": [ + 183, + 245, + 428, + 260 + ], + "score": 0.89, + "content": "\\nabla _ { \\pmb { \\theta } } \\mathbb { E } _ { p _ { \\pmb { \\theta } } ( \\pmb { x } ) } [ f _ { \\pmb { \\theta } } ( \\pmb { x } ) ] = \\mathbb { E } _ { p _ { \\pmb { \\theta } } ( \\pmb { x } ) } [ \\nabla _ { \\pmb { \\theta } } \\log p _ { \\pmb { \\theta } } ( \\pmb { x } ) f _ { \\pmb { \\theta } } ( \\pmb { x } ) + \\nabla _ { \\pmb { \\theta } } f _ { \\pmb { \\theta } } ( \\pmb { x } ) ] .", + "type": "interline_equation", + "image_path": "6d9200624e6d99ee5fa00ffa9450b95f696e999e1febff3fc26aa6f635fccce8.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 183, + 245, + 428, + 260 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 267, + 508, + 289 + ], + "lines": [ + { + "bbox": [ + 106, + 267, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 106, + 267, + 506, + 279 + ], + "score": 1.0, + "content": "The additional second (‘pathwise’) term can be estimated (using the same samples) with the standard", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 277, + 456, + 290 + ], + "spans": [ + { + "bbox": [ + 106, + 277, + 456, + 290 + ], + "score": 1.0, + "content": "unordered set estimator. This results in the full unordered set policy gradient estimator:", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 106, + 267, + 506, + 290 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 153, + 295, + 457, + 353 + ], + "lines": [ + { + "bbox": [ + 153, + 295, + 457, + 353 + ], + "spans": [ + { + "bbox": [ + 153, + 295, + 457, + 353 + ], + "score": 0.94, + "content": "\\begin{array} { l } { { \\displaystyle e ^ { \\mathrm { F U S P G } } ( S ^ { k } ) = \\sum _ { s \\in S ^ { k } } \\nabla _ { \\theta } p _ { \\theta } ( s ) R ( S ^ { k } , s ) f _ { \\theta } ( s ) + \\sum _ { s \\in S ^ { k } } p _ { \\theta } ( s ) R ( S ^ { k } , s ) \\nabla _ { \\theta } f _ { \\theta } ( s ) } } \\\\ { { \\displaystyle \\quad = \\sum _ { s \\in S ^ { k } } R ( S ^ { k } , s ) \\nabla _ { \\theta } \\left( p _ { \\theta } ( s ) f _ { \\theta } ( s ) \\right) } } \\end{array}", + "type": "interline_equation", + "image_path": "4cab27528948a20ca5fd07651bbd08bcb77a11aa80de85ca79d21a7721f0cde6.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 153, + 295, + 457, + 314.3333333333333 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 153, + 314.3333333333333, + 457, + 333.66666666666663 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 153, + 333.66666666666663, + 457, + 352.99999999999994 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 359, + 503, + 405 + ], + "lines": [ + { + "bbox": [ + 105, + 360, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 505, + 372 + ], + "score": 1.0, + "content": "Equation 20 is straightforward to implement using an automatic differentiation library. We can also", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 370, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 505, + 384 + ], + "score": 1.0, + "content": "include the baseline (as in equation 17) but we must make sure to call STOP GRADIENT (DETACH in", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 381, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 255, + 394 + ], + "score": 1.0, + "content": "PyTorch) on the baseline (but not on", + "type": "text" + }, + { + "bbox": [ + 255, + 382, + 285, + 394 + ], + "score": 0.91, + "content": "f _ { \\pmb \\theta } ( s ) ! )", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 381, + 505, + 394 + ], + "score": 1.0, + "content": ". Importantly, we should never track gradients through", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 392, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 198, + 406 + ], + "score": 1.0, + "content": "the leave-one-out ratio", + "type": "text" + }, + { + "bbox": [ + 198, + 392, + 235, + 405 + ], + "score": 0.93, + "content": "R ( S ^ { k } , s )", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 392, + 505, + 406 + ], + "score": 1.0, + "content": "which means it can be efficiently computed in pure inference mode.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 360, + 505, + 406 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 418, + 505, + 518 + ], + "lines": [ + { + "bbox": [ + 106, + 418, + 504, + 432 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 504, + 432 + ], + "score": 1.0, + "content": "Scope & limitations. We can use the unordered set estimator for any discrete distribution from", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 429, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 506, + 443 + ], + "score": 1.0, + "content": "which we can sample without replacement, by treating it as a univariate categorical distribution", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 441, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 505, + 453 + ], + "score": 1.0, + "content": "over its domain. This includes sequence models, from which we can sample using Stochastic Beam", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 451, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 505, + 464 + ], + "score": 1.0, + "content": "Search (Kool et al., 2019c), as well as multivariate categorical distributions which can also be treated", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 463, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 505, + 475 + ], + "score": 1.0, + "content": "as sequence models (see Section 4.2). In the presence of continuous variables or a stochastic function", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 474, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 114, + 485 + ], + "score": 0.83, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 474, + 505, + 486 + ], + "score": 1.0, + "content": ", we may separate this stochasticity from the stochasticity over the discrete distribution, as in", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 485, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 485, + 505, + 497 + ], + "score": 1.0, + "content": "Lorberbom et al. (2019). The computation of the leave-one-out ratios adds some overhead, although", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 496, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 298, + 507 + ], + "score": 1.0, + "content": "they can be computed efficiently, even for large", + "type": "text" + }, + { + "bbox": [ + 298, + 496, + 305, + 505 + ], + "score": 0.77, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 496, + 505, + 507 + ], + "score": 1.0, + "content": "(see Appendix B). For a moderately sized model,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 506, + 496, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 496, + 520 + ], + "score": 1.0, + "content": "the costs of model evaluation and backpropagation dominate the cost of computing the estimator.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 418, + 506, + 520 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 534, + 345, + 545 + ], + "lines": [ + { + "bbox": [ + 105, + 533, + 347, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 347, + 546 + ], + "score": 1.0, + "content": "3.4 RELATION TO OTHER MULTI-SAMPLE ESTIMATORS", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 106, + 555, + 505, + 622 + ], + "lines": [ + { + "bbox": [ + 105, + 554, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 568 + ], + "score": 1.0, + "content": "Relation to Murthy’s estimator. We found out that the ‘vanilla’ unordered set estimator (equa-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 567, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 505, + 578 + ], + "score": 1.0, + "content": "tion 11) is actually a special case of the estimator by Murthy (1957), known in statistics literature", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 575, + 507, + 593 + ], + "spans": [ + { + "bbox": [ + 104, + 575, + 249, + 593 + ], + "score": 1.0, + "content": "for estimation of a population total", + "type": "text" + }, + { + "bbox": [ + 250, + 577, + 308, + 590 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\Theta = \\sum _ { i \\in D } y _ { i } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 575, + 340, + 593 + ], + "score": 1.0, + "content": ". Using", + "type": "text" + }, + { + "bbox": [ + 340, + 577, + 397, + 589 + ], + "score": 0.93, + "content": "y _ { i } = p ( i ) f ( i )", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 575, + 437, + 593 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 437, + 577, + 489, + 589 + ], + "score": 0.92, + "content": "\\Theta = \\mathbb { E } [ f ( i ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 575, + 507, + 593 + ], + "score": 1.0, + "content": ", so", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 587, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 505, + 601 + ], + "score": 1.0, + "content": "Murthy’s estimator can be used to estimate expectations (see equation 11). Murthy derives the esti-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 598, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 104, + 598, + 444, + 613 + ], + "score": 1.0, + "content": "mator by ‘unordering’ a convex combination of Raj (1956) estimators, which, using", + "type": "text" + }, + { + "bbox": [ + 445, + 599, + 501, + 611 + ], + "score": 0.93, + "content": "y _ { i } = p ( i ) f ( i )", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 598, + 506, + 613 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 609, + 336, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 336, + 623 + ], + "score": 1.0, + "content": "are stochastic sum-and-sample estimators in our analogy.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33.5, + "bbox_fs": [ + 104, + 554, + 507, + 623 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 626, + 505, + 683 + ], + "lines": [ + { + "bbox": [ + 106, + 626, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 505, + 639 + ], + "score": 1.0, + "content": "Murthy (1957) also provides an unbiased estimator of the variance, which may be interesting for", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "future applications. Since Murthy’s estimator can be used with arbitrary sampling distribution, it", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 648, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 506, + 662 + ], + "score": 1.0, + "content": "is straightforward to derive importance-sampling versions of our estimators. In particular, we can", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 659, + 505, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 137, + 674 + ], + "score": 1.0, + "content": "sample", + "type": "text" + }, + { + "bbox": [ + 137, + 660, + 145, + 670 + ], + "score": 0.79, + "content": "S", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 659, + 254, + 674 + ], + "score": 1.0, + "content": "without replacement using", + "type": "text" + }, + { + "bbox": [ + 255, + 660, + 323, + 671 + ], + "score": 0.9, + "content": "q ( x ) > 0 , x \\in D", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 659, + 505, + 674 + ], + "score": 1.0, + "content": ", and use equations 11, 16, 17 and 20, as long", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 668, + 334, + 686 + ], + "spans": [ + { + "bbox": [ + 104, + 668, + 261, + 686 + ], + "score": 1.0, + "content": "as we compute the leave-one-out ratio", + "type": "text" + }, + { + "bbox": [ + 261, + 671, + 298, + 683 + ], + "score": 0.92, + "content": "R ( S ^ { k } , s )", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 668, + 323, + 686 + ], + "score": 1.0, + "content": "using", + "type": "text" + }, + { + "bbox": [ + 324, + 673, + 329, + 682 + ], + "score": 0.67, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 668, + 334, + 686 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39, + "bbox_fs": [ + 104, + 626, + 506, + 686 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 686, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 506, + 700 + ], + "score": 1.0, + "content": "While part of our derivation coincides with Murthy (1957), we are not aware of previous work", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "using this estimator to estimate expectations. Additionally, we discuss practical computation of", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 107, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 107, + 710, + 127, + 722 + ], + "score": 0.9, + "content": "p ( S )", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "(Appendix B), we show the relation to the importance-weighted estimator, and we provide the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 721, + 504, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 504, + 732 + ], + "score": 1.0, + "content": "extension to estimating policy gradients, especially including a built-in baseline without adding bias.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 686, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 123 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Relation to the empirical risk estimator. The empirical risk loss (Edunov et al., 2018) estimates", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 333, + 106 + ], + "score": 1.0, + "content": "the expectation in equation 1 by summing only a subset", + "type": "text" + }, + { + "bbox": [ + 334, + 94, + 342, + 104 + ], + "score": 0.82, + "content": "S", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "of the domain, using normalized proba-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 478, + 125 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 136, + 125 + ], + "score": 1.0, + "content": "bilities", + "type": "text" + }, + { + "bbox": [ + 136, + 104, + 219, + 122 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\hat { p } _ { \\pmb { \\theta } } ( s ) = \\frac { \\bar { p } _ { \\pmb { \\theta } } ( s ) } { \\sum _ { s ^ { \\prime } \\in S } p _ { \\pmb { \\theta } } ( s ) } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 104, + 478, + 125 + ], + "score": 1.0, + "content": ". Using this loss, the (biased) estimate of the gradient is given by", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 123, + 401, + 156 + ], + "lines": [ + { + "bbox": [ + 210, + 123, + 401, + 156 + ], + "spans": [ + { + "bbox": [ + 210, + 123, + 401, + 156 + ], + "score": 0.95, + "content": "e ^ { \\mathrm { R I S K } } ( S ^ { k } ) = \\sum _ { s \\in S ^ { k } } \\nabla _ { \\pmb { \\theta } } \\left( \\frac { p _ { \\pmb { \\theta } } ( s ) } { \\sum _ { s ^ { \\prime } \\in S ^ { k } } p _ { \\pmb { \\theta } } ( s ^ { \\prime } ) } \\right) f ( s ) .", + "type": "interline_equation", + "image_path": "16c4a246849e072f4944d39d2f161557419ea23787c012dd3296694e026e574b.jpg" + } + ] + } + ], + "index": 3.5, + "virtual_lines": [ + { + "bbox": [ + 210, + 123, + 401, + 139.5 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 210, + 139.5, + 401, + 156.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 157, + 505, + 213 + ], + "lines": [ + { + "bbox": [ + 106, + 156, + 505, + 169 + ], + "spans": [ + { + "bbox": [ + 106, + 156, + 505, + 169 + ], + "score": 1.0, + "content": "The risk estimator is similar to the unordered set policy gradient estimator, with two important", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 168, + 505, + 180 + ], + "spans": [ + { + "bbox": [ + 106, + 168, + 505, + 180 + ], + "score": 1.0, + "content": "differences: 1) the individual terms are normalized by the total probability mass rather than the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 180, + 506, + 192 + ], + "spans": [ + { + "bbox": [ + 106, + 180, + 506, + 192 + ], + "score": 1.0, + "content": "leave-one-out ratio and 2) the gradient w.r.t. the normalization factor is taken into account. As a", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 190, + 506, + 202 + ], + "spans": [ + { + "bbox": [ + 105, + 190, + 506, + 202 + ], + "score": 1.0, + "content": "result, samples ‘compete’ for probability mass and only the best can be reinforced. This has the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 201, + 435, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 435, + 214 + ], + "score": 1.0, + "content": "same effect as using a built-in baseline, which we prove in the following theorem.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 215, + 504, + 237 + ], + "lines": [ + { + "bbox": [ + 106, + 214, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 214, + 505, + 227 + ], + "score": 1.0, + "content": "Theorem 3. By taking the gradient w.r.t. the normalization factor into account, the risk estimator", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 226, + 333, + 237 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 333, + 237 + ], + "score": 1.0, + "content": "has a built-in baseline, which means it can be written as", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "interline_equation", + "bbox": [ + 113, + 238, + 482, + 278 + ], + "lines": [ + { + "bbox": [ + 113, + 238, + 482, + 278 + ], + "spans": [ + { + "bbox": [ + 113, + 238, + 482, + 278 + ], + "score": 0.93, + "content": "e ^ { R I S K } ( S ^ { k } ) = \\sum _ { s \\in S ^ { k } } \\nabla _ { \\theta } p _ { \\theta } ( s ) \\frac { 1 } { \\sum _ { s ^ { \\prime \\prime } \\in S ^ { k } } p _ { \\theta } ( s ^ { \\prime \\prime } ) } \\left( f ( s ) - \\sum _ { s ^ { \\prime } \\in S ^ { k } } p _ { \\theta } ( s ^ { \\prime } ) \\frac { 1 } { \\sum _ { s ^ { \\prime \\prime } \\in S ^ { k } } p _ { \\theta } ( s ^ { \\prime \\prime } ) } f ( s ^ { \\prime } ) \\right) .", + "type": "interline_equation", + "image_path": "904b5d4d9996c49ac35bd50c3cc3eaa34cee54f06b1fb5ec574ba84ccd5a5819.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 113, + 238, + 482, + 251.33333333333334 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 113, + 251.33333333333334, + 482, + 264.6666666666667 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 113, + 264.6666666666667, + 482, + 278.0 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 288, + 208, + 299 + ], + "lines": [ + { + "bbox": [ + 106, + 288, + 209, + 300 + ], + "spans": [ + { + "bbox": [ + 106, + 288, + 209, + 300 + ], + "score": 1.0, + "content": "Proof. See Appendix F.1", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 311, + 505, + 367 + ], + "lines": [ + { + "bbox": [ + 106, + 311, + 505, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 311, + 505, + 324 + ], + "score": 1.0, + "content": "This theorem highlights the similarity between the biased risk estimator and our unbiased estimator", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 323, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 106, + 323, + 505, + 335 + ], + "score": 1.0, + "content": "(equation 17), and suggests that their only difference is the weighting of terms. Unfortunately, the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 333, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 505, + 347 + ], + "score": 1.0, + "content": "implementation by Edunov et al. (2018) has more sources of bias (e.g. length normalization), which", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 345, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 505, + 357 + ], + "score": 1.0, + "content": "are not compatible with our estimator. However, we believe that our analysis helps analyze the bias", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 356, + 504, + 368 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 504, + 368 + ], + "score": 1.0, + "content": "of the risk estimator and is a step towards developing unbiased estimators for structured prediction.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 377, + 505, + 456 + ], + "lines": [ + { + "bbox": [ + 106, + 379, + 505, + 390 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 438, + 390 + ], + "score": 1.0, + "content": "Relation to VIMCO. VIMCO (Mnih & Rezende, 2016) is an estimator that uses", + "type": "text" + }, + { + "bbox": [ + 439, + 379, + 446, + 388 + ], + "score": 0.78, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 379, + 505, + 390 + ], + "score": 1.0, + "content": "samples (with", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 388, + 506, + 404 + ], + "spans": [ + { + "bbox": [ + 104, + 388, + 316, + 404 + ], + "score": 1.0, + "content": "replacement) to optimize an objective of the form log", + "type": "text" + }, + { + "bbox": [ + 316, + 389, + 364, + 402 + ], + "score": 0.88, + "content": "\\textstyle { \\frac { 1 } { k } } \\sum _ { i } f ( x _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 388, + 506, + 404 + ], + "score": 1.0, + "content": ", which is a multi-sample stochastic", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 400, + 506, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 506, + 412 + ], + "score": 1.0, + "content": "lower bound in the context of variational inference. VIMCO reduces the variance by using a local", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 411, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 207, + 423 + ], + "score": 1.0, + "content": "baseline for each of the", + "type": "text" + }, + { + "bbox": [ + 207, + 412, + 214, + 421 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 411, + 334, + 423 + ], + "score": 1.0, + "content": "samples, based on the other", + "type": "text" + }, + { + "bbox": [ + 334, + 411, + 360, + 422 + ], + "score": 0.88, + "content": "k - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 411, + 506, + 423 + ], + "score": 1.0, + "content": "samples. While we do not have a", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 421, + 506, + 435 + ], + "spans": [ + { + "bbox": [ + 104, + 421, + 281, + 435 + ], + "score": 1.0, + "content": "log term, as our goal is to optimize general", + "type": "text" + }, + { + "bbox": [ + 282, + 422, + 314, + 434 + ], + "score": 0.92, + "content": "\\mathbb { E } [ f ( x ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 421, + 506, + 435 + ], + "score": 1.0, + "content": ", we adopt the idea of forming a baseline based", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 433, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 505, + 445 + ], + "score": 1.0, + "content": "on the other samples, and we define REINFORCE with replacement (with built-in baseline) as the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 443, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 419, + 457 + ], + "score": 1.0, + "content": "estimator that computes the gradient estimate using samples with replacement", + "type": "text" + }, + { + "bbox": [ + 419, + 444, + 493, + 456 + ], + "score": 0.93, + "content": "X ^ { k } = ( x _ { 1 } , . . . , x _ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 443, + 506, + 457 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24 + }, + { + "type": "interline_equation", + "bbox": [ + 171, + 457, + 441, + 497 + ], + "lines": [ + { + "bbox": [ + 171, + 457, + 441, + 497 + ], + "spans": [ + { + "bbox": [ + 171, + 457, + 441, + 497 + ], + "score": 0.94, + "content": "e ^ { \\mathrm { R F W R } } ( X ^ { k } ) = \\frac { 1 } { k } \\sum _ { i = 1 } ^ { k } \\nabla _ { \\theta } \\log p _ { \\theta } ( x _ { i } ) \\left( f ( x _ { i } ) - \\frac { 1 } { k - 1 } \\sum _ { j \\ne i } f ( x _ { j } ) \\right) .", + "type": "interline_equation", + "image_path": "351a340e6952afd897fb774a727f1e14b17f5a4500b3ff32102096cd6837dcf3.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 171, + 457, + 441, + 470.3333333333333 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 171, + 470.3333333333333, + 441, + 483.66666666666663 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 171, + 483.66666666666663, + 441, + 496.99999999999994 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 498, + 505, + 565 + ], + "lines": [ + { + "bbox": [ + 105, + 498, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 234, + 512 + ], + "score": 1.0, + "content": "This estimator is unbiased, as", + "type": "text" + }, + { + "bbox": [ + 234, + 498, + 369, + 512 + ], + "score": 0.92, + "content": "\\mathbb { E } _ { x _ { i } , x _ { j } } [ \\nabla _ { \\pmb { \\theta } } \\log p _ { \\pmb { \\theta } } ( x _ { i } ) f ( x _ { j } ) ] = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 498, + 388, + 512 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 388, + 499, + 416, + 511 + ], + "score": 0.91, + "content": "i \\neq j", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 498, + 505, + 512 + ], + "score": 1.0, + "content": "(see also Kool et al.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 509, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 506, + 523 + ], + "score": 1.0, + "content": "(2019b)). We think of the unordered set estimator as the without-replacement version of this es-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 518, + 507, + 536 + ], + "spans": [ + { + "bbox": [ + 104, + 518, + 244, + 536 + ], + "score": 1.0, + "content": "timator, which weights terms by", + "type": "text" + }, + { + "bbox": [ + 244, + 520, + 304, + 533 + ], + "score": 0.93, + "content": "p _ { \\pmb { \\theta } } ( s ) R ( S ^ { k } , s )", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 518, + 350, + 536 + ], + "score": 1.0, + "content": "instead of", + "type": "text" + }, + { + "bbox": [ + 351, + 520, + 358, + 534 + ], + "score": 0.86, + "content": "\\frac { 1 } { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 518, + 507, + 536 + ], + "score": 1.0, + "content": ". This puts more weight on higher", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 532, + 506, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 506, + 544 + ], + "score": 1.0, + "content": "probability elements to compensate for sampling without replacement. If probabilities are small and", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 103, + 539, + 508, + 559 + ], + "spans": [ + { + "bbox": [ + 103, + 539, + 468, + 559 + ], + "score": 1.0, + "content": "(close to) uniform, there are (almost) no duplicate samples and the weights will be close to", + "type": "text" + }, + { + "bbox": [ + 468, + 542, + 475, + 556 + ], + "score": 0.85, + "content": "\\frac { 1 } { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 539, + 508, + 559 + ], + "score": 1.0, + "content": ", so the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 554, + 411, + 566 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 411, + 566 + ], + "score": 1.0, + "content": "gradient estimate of the with- and without-replacement versions are similar.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 106, + 576, + 505, + 632 + ], + "lines": [ + { + "bbox": [ + 105, + 576, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 505, + 590 + ], + "score": 1.0, + "content": "Relation to ARSM. ARSM (Yin et al., 2019) also uses multiple evaluations (‘pseudo-samples’)", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 587, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 117, + 600 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 590, + 129, + 599 + ], + "score": 0.83, + "content": "p _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 587, + 148, + 600 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 149, + 588, + 156, + 600 + ], + "score": 0.81, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 587, + 505, + 600 + ], + "score": 1.0, + "content": ". This can be seen as similar to sampling without replacement, and the estimator also", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 599, + 504, + 610 + ], + "spans": [ + { + "bbox": [ + 106, + 599, + 504, + 610 + ], + "score": 1.0, + "content": "has a built-in control variate. Compared to ARSM, our estimator allows direct control over the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 610, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 610, + 293, + 623 + ], + "score": 1.0, + "content": "computational cost (through the sample size", + "type": "text" + }, + { + "bbox": [ + 293, + 610, + 300, + 620 + ], + "score": 0.66, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 610, + 505, + 623 + ], + "score": 1.0, + "content": ") and has wider applicability, for example it also", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 621, + 490, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 621, + 490, + 634 + ], + "score": 1.0, + "content": "applies to multivariate categorical variables with different numbers of categories per dimension.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 643, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 642, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 505, + 658 + ], + "score": 1.0, + "content": "Relation to stratified/systematic sampling. Our estimator aims to reduce variance by changing", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 656, + 504, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 504, + 667 + ], + "score": 1.0, + "content": "the sampling distribution for multiple samples by sampling without replacement. There are alterna-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "tives, such as using stratified or systematic sampling (see, e.g. Douc & Cappe (2005)). Both partition ´", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 675, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 675, + 154, + 691 + ], + "score": 1.0, + "content": "the domain", + "type": "text" + }, + { + "bbox": [ + 154, + 677, + 164, + 687 + ], + "score": 0.79, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 675, + 183, + 691 + ], + "score": 1.0, + "content": "into", + "type": "text" + }, + { + "bbox": [ + 183, + 677, + 190, + 687 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 675, + 505, + 691 + ], + "score": 1.0, + "content": "strata and take a single sample from each stratum, where systematic sampling", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "uses common random numbers for each stratum. In applications involving high-dimensional or", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 699, + 504, + 710 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 504, + 710 + ], + "score": 1.0, + "content": "structured domains, it is unclear how to partition the domain and how to sample from each partition.", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 710, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 721 + ], + "score": 1.0, + "content": "Additionally, as samples are not independent, it is non-trivial to include a built-in baseline, which", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 721, + 375, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 375, + 732 + ], + "score": 1.0, + "content": "we find is a key component that makes our estimator perform well.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 45.5 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 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": [ + 495, + 288, + 504, + 298 + ], + "lines": [ + { + "bbox": [ + 496, + 290, + 504, + 299 + ], + "spans": [ + { + "bbox": [ + 496, + 290, + 504, + 299 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 123 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Relation to the empirical risk estimator. The empirical risk loss (Edunov et al., 2018) estimates", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 333, + 106 + ], + "score": 1.0, + "content": "the expectation in equation 1 by summing only a subset", + "type": "text" + }, + { + "bbox": [ + 334, + 94, + 342, + 104 + ], + "score": 0.82, + "content": "S", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "of the domain, using normalized proba-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 478, + 125 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 136, + 125 + ], + "score": 1.0, + "content": "bilities", + "type": "text" + }, + { + "bbox": [ + 136, + 104, + 219, + 122 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\hat { p } _ { \\pmb { \\theta } } ( s ) = \\frac { \\bar { p } _ { \\pmb { \\theta } } ( s ) } { \\sum _ { s ^ { \\prime } \\in S } p _ { \\pmb { \\theta } } ( s ) } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 104, + 478, + 125 + ], + "score": 1.0, + "content": ". Using this loss, the (biased) estimate of the gradient is given by", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 82, + 505, + 125 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 123, + 401, + 156 + ], + "lines": [ + { + "bbox": [ + 210, + 123, + 401, + 156 + ], + "spans": [ + { + "bbox": [ + 210, + 123, + 401, + 156 + ], + "score": 0.95, + "content": "e ^ { \\mathrm { R I S K } } ( S ^ { k } ) = \\sum _ { s \\in S ^ { k } } \\nabla _ { \\pmb { \\theta } } \\left( \\frac { p _ { \\pmb { \\theta } } ( s ) } { \\sum _ { s ^ { \\prime } \\in S ^ { k } } p _ { \\pmb { \\theta } } ( s ^ { \\prime } ) } \\right) f ( s ) .", + "type": "interline_equation", + "image_path": "16c4a246849e072f4944d39d2f161557419ea23787c012dd3296694e026e574b.jpg" + } + ] + } + ], + "index": 3.5, + "virtual_lines": [ + { + "bbox": [ + 210, + 123, + 401, + 139.5 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 210, + 139.5, + 401, + 156.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 157, + 505, + 213 + ], + "lines": [ + { + "bbox": [ + 106, + 156, + 505, + 169 + ], + "spans": [ + { + "bbox": [ + 106, + 156, + 505, + 169 + ], + "score": 1.0, + "content": "The risk estimator is similar to the unordered set policy gradient estimator, with two important", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 168, + 505, + 180 + ], + "spans": [ + { + "bbox": [ + 106, + 168, + 505, + 180 + ], + "score": 1.0, + "content": "differences: 1) the individual terms are normalized by the total probability mass rather than the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 180, + 506, + 192 + ], + "spans": [ + { + "bbox": [ + 106, + 180, + 506, + 192 + ], + "score": 1.0, + "content": "leave-one-out ratio and 2) the gradient w.r.t. the normalization factor is taken into account. As a", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 190, + 506, + 202 + ], + "spans": [ + { + "bbox": [ + 105, + 190, + 506, + 202 + ], + "score": 1.0, + "content": "result, samples ‘compete’ for probability mass and only the best can be reinforced. This has the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 201, + 435, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 435, + 214 + ], + "score": 1.0, + "content": "same effect as using a built-in baseline, which we prove in the following theorem.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 156, + 506, + 214 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 215, + 504, + 237 + ], + "lines": [ + { + "bbox": [ + 106, + 214, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 214, + 505, + 227 + ], + "score": 1.0, + "content": "Theorem 3. By taking the gradient w.r.t. the normalization factor into account, the risk estimator", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 226, + 333, + 237 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 333, + 237 + ], + "score": 1.0, + "content": "has a built-in baseline, which means it can be written as", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 106, + 214, + 505, + 237 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 113, + 238, + 482, + 278 + ], + "lines": [ + { + "bbox": [ + 113, + 238, + 482, + 278 + ], + "spans": [ + { + "bbox": [ + 113, + 238, + 482, + 278 + ], + "score": 0.93, + "content": "e ^ { R I S K } ( S ^ { k } ) = \\sum _ { s \\in S ^ { k } } \\nabla _ { \\theta } p _ { \\theta } ( s ) \\frac { 1 } { \\sum _ { s ^ { \\prime \\prime } \\in S ^ { k } } p _ { \\theta } ( s ^ { \\prime \\prime } ) } \\left( f ( s ) - \\sum _ { s ^ { \\prime } \\in S ^ { k } } p _ { \\theta } ( s ^ { \\prime } ) \\frac { 1 } { \\sum _ { s ^ { \\prime \\prime } \\in S ^ { k } } p _ { \\theta } ( s ^ { \\prime \\prime } ) } f ( s ^ { \\prime } ) \\right) .", + "type": "interline_equation", + "image_path": "904b5d4d9996c49ac35bd50c3cc3eaa34cee54f06b1fb5ec574ba84ccd5a5819.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 113, + 238, + 482, + 251.33333333333334 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 113, + 251.33333333333334, + 482, + 264.6666666666667 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 113, + 264.6666666666667, + 482, + 278.0 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 288, + 208, + 299 + ], + "lines": [ + { + "bbox": [ + 106, + 288, + 209, + 300 + ], + "spans": [ + { + "bbox": [ + 106, + 288, + 209, + 300 + ], + "score": 1.0, + "content": "Proof. See Appendix F.1", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15, + "bbox_fs": [ + 106, + 288, + 209, + 300 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 311, + 505, + 367 + ], + "lines": [ + { + "bbox": [ + 106, + 311, + 505, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 311, + 505, + 324 + ], + "score": 1.0, + "content": "This theorem highlights the similarity between the biased risk estimator and our unbiased estimator", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 323, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 106, + 323, + 505, + 335 + ], + "score": 1.0, + "content": "(equation 17), and suggests that their only difference is the weighting of terms. Unfortunately, the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 333, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 505, + 347 + ], + "score": 1.0, + "content": "implementation by Edunov et al. (2018) has more sources of bias (e.g. length normalization), which", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 345, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 505, + 357 + ], + "score": 1.0, + "content": "are not compatible with our estimator. However, we believe that our analysis helps analyze the bias", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 356, + 504, + 368 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 504, + 368 + ], + "score": 1.0, + "content": "of the risk estimator and is a step towards developing unbiased estimators for structured prediction.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18, + "bbox_fs": [ + 106, + 311, + 505, + 368 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 377, + 505, + 456 + ], + "lines": [ + { + "bbox": [ + 106, + 379, + 505, + 390 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 438, + 390 + ], + "score": 1.0, + "content": "Relation to VIMCO. VIMCO (Mnih & Rezende, 2016) is an estimator that uses", + "type": "text" + }, + { + "bbox": [ + 439, + 379, + 446, + 388 + ], + "score": 0.78, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 379, + 505, + 390 + ], + "score": 1.0, + "content": "samples (with", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 388, + 506, + 404 + ], + "spans": [ + { + "bbox": [ + 104, + 388, + 316, + 404 + ], + "score": 1.0, + "content": "replacement) to optimize an objective of the form log", + "type": "text" + }, + { + "bbox": [ + 316, + 389, + 364, + 402 + ], + "score": 0.88, + "content": "\\textstyle { \\frac { 1 } { k } } \\sum _ { i } f ( x _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 388, + 506, + 404 + ], + "score": 1.0, + "content": ", which is a multi-sample stochastic", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 400, + 506, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 506, + 412 + ], + "score": 1.0, + "content": "lower bound in the context of variational inference. VIMCO reduces the variance by using a local", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 411, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 207, + 423 + ], + "score": 1.0, + "content": "baseline for each of the", + "type": "text" + }, + { + "bbox": [ + 207, + 412, + 214, + 421 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 411, + 334, + 423 + ], + "score": 1.0, + "content": "samples, based on the other", + "type": "text" + }, + { + "bbox": [ + 334, + 411, + 360, + 422 + ], + "score": 0.88, + "content": "k - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 411, + 506, + 423 + ], + "score": 1.0, + "content": "samples. While we do not have a", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 421, + 506, + 435 + ], + "spans": [ + { + "bbox": [ + 104, + 421, + 281, + 435 + ], + "score": 1.0, + "content": "log term, as our goal is to optimize general", + "type": "text" + }, + { + "bbox": [ + 282, + 422, + 314, + 434 + ], + "score": 0.92, + "content": "\\mathbb { E } [ f ( x ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 421, + 506, + 435 + ], + "score": 1.0, + "content": ", we adopt the idea of forming a baseline based", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 433, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 505, + 445 + ], + "score": 1.0, + "content": "on the other samples, and we define REINFORCE with replacement (with built-in baseline) as the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 443, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 419, + 457 + ], + "score": 1.0, + "content": "estimator that computes the gradient estimate using samples with replacement", + "type": "text" + }, + { + "bbox": [ + 419, + 444, + 493, + 456 + ], + "score": 0.93, + "content": "X ^ { k } = ( x _ { 1 } , . . . , x _ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 443, + 506, + 457 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24, + "bbox_fs": [ + 104, + 379, + 506, + 457 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 171, + 457, + 441, + 497 + ], + "lines": [ + { + "bbox": [ + 171, + 457, + 441, + 497 + ], + "spans": [ + { + "bbox": [ + 171, + 457, + 441, + 497 + ], + "score": 0.94, + "content": "e ^ { \\mathrm { R F W R } } ( X ^ { k } ) = \\frac { 1 } { k } \\sum _ { i = 1 } ^ { k } \\nabla _ { \\theta } \\log p _ { \\theta } ( x _ { i } ) \\left( f ( x _ { i } ) - \\frac { 1 } { k - 1 } \\sum _ { j \\ne i } f ( x _ { j } ) \\right) .", + "type": "interline_equation", + "image_path": "351a340e6952afd897fb774a727f1e14b17f5a4500b3ff32102096cd6837dcf3.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 171, + 457, + 441, + 470.3333333333333 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 171, + 470.3333333333333, + 441, + 483.66666666666663 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 171, + 483.66666666666663, + 441, + 496.99999999999994 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 498, + 505, + 565 + ], + "lines": [ + { + "bbox": [ + 105, + 498, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 234, + 512 + ], + "score": 1.0, + "content": "This estimator is unbiased, as", + "type": "text" + }, + { + "bbox": [ + 234, + 498, + 369, + 512 + ], + "score": 0.92, + "content": "\\mathbb { E } _ { x _ { i } , x _ { j } } [ \\nabla _ { \\pmb { \\theta } } \\log p _ { \\pmb { \\theta } } ( x _ { i } ) f ( x _ { j } ) ] = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 498, + 388, + 512 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 388, + 499, + 416, + 511 + ], + "score": 0.91, + "content": "i \\neq j", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 498, + 505, + 512 + ], + "score": 1.0, + "content": "(see also Kool et al.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 509, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 506, + 523 + ], + "score": 1.0, + "content": "(2019b)). We think of the unordered set estimator as the without-replacement version of this es-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 518, + 507, + 536 + ], + "spans": [ + { + "bbox": [ + 104, + 518, + 244, + 536 + ], + "score": 1.0, + "content": "timator, which weights terms by", + "type": "text" + }, + { + "bbox": [ + 244, + 520, + 304, + 533 + ], + "score": 0.93, + "content": "p _ { \\pmb { \\theta } } ( s ) R ( S ^ { k } , s )", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 518, + 350, + 536 + ], + "score": 1.0, + "content": "instead of", + "type": "text" + }, + { + "bbox": [ + 351, + 520, + 358, + 534 + ], + "score": 0.86, + "content": "\\frac { 1 } { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 518, + 507, + 536 + ], + "score": 1.0, + "content": ". This puts more weight on higher", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 532, + 506, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 506, + 544 + ], + "score": 1.0, + "content": "probability elements to compensate for sampling without replacement. If probabilities are small and", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 103, + 539, + 508, + 559 + ], + "spans": [ + { + "bbox": [ + 103, + 539, + 468, + 559 + ], + "score": 1.0, + "content": "(close to) uniform, there are (almost) no duplicate samples and the weights will be close to", + "type": "text" + }, + { + "bbox": [ + 468, + 542, + 475, + 556 + ], + "score": 0.85, + "content": "\\frac { 1 } { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 539, + 508, + 559 + ], + "score": 1.0, + "content": ", so the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 554, + 411, + 566 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 411, + 566 + ], + "score": 1.0, + "content": "gradient estimate of the with- and without-replacement versions are similar.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33.5, + "bbox_fs": [ + 103, + 498, + 508, + 566 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 576, + 505, + 632 + ], + "lines": [ + { + "bbox": [ + 105, + 576, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 505, + 590 + ], + "score": 1.0, + "content": "Relation to ARSM. ARSM (Yin et al., 2019) also uses multiple evaluations (‘pseudo-samples’)", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 587, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 117, + 600 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 590, + 129, + 599 + ], + "score": 0.83, + "content": "p _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 587, + 148, + 600 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 149, + 588, + 156, + 600 + ], + "score": 0.81, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 587, + 505, + 600 + ], + "score": 1.0, + "content": ". This can be seen as similar to sampling without replacement, and the estimator also", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 599, + 504, + 610 + ], + "spans": [ + { + "bbox": [ + 106, + 599, + 504, + 610 + ], + "score": 1.0, + "content": "has a built-in control variate. Compared to ARSM, our estimator allows direct control over the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 610, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 610, + 293, + 623 + ], + "score": 1.0, + "content": "computational cost (through the sample size", + "type": "text" + }, + { + "bbox": [ + 293, + 610, + 300, + 620 + ], + "score": 0.66, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 610, + 505, + 623 + ], + "score": 1.0, + "content": ") and has wider applicability, for example it also", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 621, + 490, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 621, + 490, + 634 + ], + "score": 1.0, + "content": "applies to multivariate categorical variables with different numbers of categories per dimension.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 576, + 505, + 634 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 643, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 642, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 505, + 658 + ], + "score": 1.0, + "content": "Relation to stratified/systematic sampling. Our estimator aims to reduce variance by changing", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 656, + 504, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 504, + 667 + ], + "score": 1.0, + "content": "the sampling distribution for multiple samples by sampling without replacement. There are alterna-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "tives, such as using stratified or systematic sampling (see, e.g. Douc & Cappe (2005)). Both partition ´", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 675, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 675, + 154, + 691 + ], + "score": 1.0, + "content": "the domain", + "type": "text" + }, + { + "bbox": [ + 154, + 677, + 164, + 687 + ], + "score": 0.79, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 675, + 183, + 691 + ], + "score": 1.0, + "content": "into", + "type": "text" + }, + { + "bbox": [ + 183, + 677, + 190, + 687 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 675, + 505, + 691 + ], + "score": 1.0, + "content": "strata and take a single sample from each stratum, where systematic sampling", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "uses common random numbers for each stratum. In applications involving high-dimensional or", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 699, + 504, + 710 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 504, + 710 + ], + "score": 1.0, + "content": "structured domains, it is unclear how to partition the domain and how to sample from each partition.", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 710, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 721 + ], + "score": 1.0, + "content": "Additionally, as samples are not independent, it is non-trivial to include a built-in baseline, which", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 721, + 375, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 375, + 732 + ], + "score": 1.0, + "content": "we find is a key component that makes our estimator perform well.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 45.5, + "bbox_fs": [ + 105, + 642, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 115, + 71, + 494, + 174 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 115, + 71, + 494, + 174 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 115, + 71, + 494, + 174 + ], + "spans": [ + { + "bbox": [ + 115, + 71, + 494, + 174 + ], + "score": 0.971, + "type": "image", + "image_path": "1827e94fdb564b2088e10a208547d35fffe208d74d3041a8d194d3868ada9f35.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 115, + 71, + 494, + 105.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 115, + 105.33333333333334, + 494, + 139.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 115, + 139.66666666666669, + 494, + 174.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 179, + 505, + 212 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 178, + 505, + 191 + ], + "spans": [ + { + "bbox": [ + 106, + 178, + 505, + 191 + ], + "score": 1.0, + "content": "Figure 1: Bernoulli gradient variance (on log scale) as a function of the number of model evaluations", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 189, + 506, + 203 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 506, + 203 + ], + "score": 1.0, + "content": "(including baseline evaluations, so the sum-and-sample estimators with sampled baselines use twice", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 201, + 505, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 439, + 213 + ], + "score": 1.0, + "content": "as many evaluations). Note that for some estimators, the variance is 0 (log variance", + "type": "text" + }, + { + "bbox": [ + 439, + 201, + 460, + 212 + ], + "score": 0.8, + "content": "- \\infty )", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 201, + 476, + 213 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 477, + 201, + 501, + 210 + ], + "score": 0.89, + "content": "k = 8", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 201, + 505, + 213 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 107, + 226, + 200, + 239 + ], + "lines": [ + { + "bbox": [ + 105, + 225, + 201, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 201, + 241 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "title", + "bbox": [ + 108, + 251, + 260, + 263 + ], + "lines": [ + { + "bbox": [ + 106, + 252, + 262, + 263 + ], + "spans": [ + { + "bbox": [ + 106, + 252, + 262, + 263 + ], + "score": 1.0, + "content": "4.1 BERNOULLI TOY EXPERIMENT", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 271, + 505, + 359 + ], + "lines": [ + { + "bbox": [ + 106, + 271, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 486, + 286 + ], + "score": 1.0, + "content": "We use the code by Liu et al. (2019) to reproduce their Bernoulli toy experiment. Given a vector", + "type": "text" + }, + { + "bbox": [ + 486, + 274, + 505, + 284 + ], + "score": 0.83, + "content": "\\mathbf { p } =", + "type": "inline_equation" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 279, + 506, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 307, + 305 + ], + "score": 1.0, + "content": "(0.6, 0.51, 0.48) the goal is to minimize the loss", + "type": "text" + }, + { + "bbox": [ + 308, + 283, + 501, + 303 + ], + "score": 0.82, + "content": "\\begin{array} { r } { \\mathcal { L } ( \\eta ) \\ : = \\ : \\mathbb { E } _ { x _ { 1 } , x _ { 2 } , x _ { 3 } \\sim \\mathrm { B e r n } ( \\sigma ( \\eta ) ) } \\left[ \\sum _ { i = 1 } ^ { 3 } ( x _ { i } - p _ { i } ) ^ { 2 } \\right] } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 279, + 506, + 305 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 300, + 505, + 314 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 128, + 314 + ], + "score": 1.0, + "content": "Here", + "type": "text" + }, + { + "bbox": [ + 129, + 304, + 169, + 313 + ], + "score": 0.87, + "content": "x _ { 1 } , x _ { 2 } , x _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 300, + 286, + 314 + ], + "score": 1.0, + "content": "are i.i.d. from the Bernoulli", + "type": "text" + }, + { + "bbox": [ + 286, + 301, + 313, + 314 + ], + "score": 0.87, + "content": "( \\sigma ( \\eta ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 300, + 473, + 314 + ], + "score": 1.0, + "content": "distribution, parameterized by a scalar", + "type": "text" + }, + { + "bbox": [ + 473, + 303, + 501, + 313 + ], + "score": 0.82, + "content": "\\eta \\in \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 300, + 505, + 314 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 312, + 506, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 133, + 325 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 312, + 236, + 325 + ], + "score": 0.93, + "content": "\\sigma ( \\eta ) = ( 1 + \\exp ( - \\eta ) ) ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 312, + 506, + 325 + ], + "score": 1.0, + "content": "is the sigmoid function. We compare different estimators, with and", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 323, + 506, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 506, + 336 + ], + "score": 1.0, + "content": "without baseline (either ‘built-in’ or using additional samples, referred to as REINFORCE+ in Liu", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 333, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 367, + 349 + ], + "score": 1.0, + "content": "et al. (2019)). We report the (log-)variance of the scalar gradient", + "type": "text" + }, + { + "bbox": [ + 367, + 333, + 380, + 349 + ], + "score": 0.9, + "content": "\\frac { \\partial \\mathcal { L } } { \\partial \\eta }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 333, + 506, + 349 + ], + "score": 1.0, + "content": "as a function of the number of", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 346, + 465, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 346, + 465, + 360 + ], + "score": 1.0, + "content": "model evaluations, which is twice as high when using a sampled baseline (for each term).", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 364, + 505, + 419 + ], + "lines": [ + { + "bbox": [ + 106, + 363, + 504, + 377 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 504, + 377 + ], + "score": 1.0, + "content": "As can be seen in Figure 1, the unordered set estimator is the only estimator that has consistently", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 374, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 318, + 388 + ], + "score": 1.0, + "content": "the lowest (or comparable) variance in both the high", + "type": "text" + }, + { + "bbox": [ + 318, + 375, + 344, + 387 + ], + "score": 0.87, + "content": "\\langle \\eta = 0 \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 374, + 416, + 388 + ], + "score": 1.0, + "content": ") and low entropy", + "type": "text" + }, + { + "bbox": [ + 417, + 376, + 452, + 387 + ], + "score": 0.87, + "content": "\\hphantom { - } \\eta = - 4 )", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 374, + 505, + 388 + ], + "score": 1.0, + "content": "regimes and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 385, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 505, + 399 + ], + "score": 1.0, + "content": "for different number of samples/model evaluations. This suggests that it combines the advantages", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 396, + 504, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 478, + 410 + ], + "score": 1.0, + "content": "of the other estimators. We also ran the actual optimization experiment, where with as few as", + "type": "text" + }, + { + "bbox": [ + 479, + 397, + 504, + 407 + ], + "score": 0.88, + "content": "k = 3", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 408, + 495, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 495, + 421 + ], + "score": 1.0, + "content": "samples the trajectory was indistinguishable from using the exact gradient (see Liu et al. (2019)).", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17 + }, + { + "type": "title", + "bbox": [ + 107, + 432, + 329, + 444 + ], + "lines": [ + { + "bbox": [ + 106, + 432, + 330, + 445 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 330, + 445 + ], + "score": 1.0, + "content": "4.2 CATEGORICAL VARIATIONAL AUTO-ENCODER", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 453, + 505, + 520 + ], + "lines": [ + { + "bbox": [ + 106, + 453, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 453, + 505, + 466 + ], + "score": 1.0, + "content": "We use the code from Yin et al. (2019) to train a categorical Variational Auto-Encoder (VAE) with", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 463, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 506, + 478 + ], + "score": 1.0, + "content": "20 dimensional latent space, with 10 categories per dimension (details in Appendix G.1). To use", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 474, + 506, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 376, + 488 + ], + "score": 1.0, + "content": "our estimator, we treat this as a single factorized distribution with", + "type": "text" + }, + { + "bbox": [ + 376, + 475, + 396, + 486 + ], + "score": 0.88, + "content": "1 0 ^ { 2 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 474, + 506, + 488 + ], + "score": 1.0, + "content": "categories from which we", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 487, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 505, + 498 + ], + "score": 1.0, + "content": "can sample without replacement using Stochastic Beam Search (Kool et al., 2019c), sequentially", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 496, + 504, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 488, + 510 + ], + "score": 1.0, + "content": "sampling each dimension as if it were a sequence model. We also perform experiments with", + "type": "text" + }, + { + "bbox": [ + 488, + 497, + 504, + 507 + ], + "score": 0.85, + "content": "1 0 ^ { \\dot { 2 } }", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 507, + 492, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 492, + 522 + ], + "score": 1.0, + "content": "latent space, which provides a lower entropy setting, to highlight the advantage of our estimator.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 106, + 531, + 505, + 598 + ], + "lines": [ + { + "bbox": [ + 106, + 532, + 504, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 504, + 543 + ], + "score": 1.0, + "content": "Measuring the variance. In Table 1, we report the variance of different gradient estimators with", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 107, + 542, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 107, + 543, + 133, + 553 + ], + "score": 0.89, + "content": "k = 4", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 542, + 505, + 555 + ], + "score": 1.0, + "content": "samples, evaluated on a trained model. The unordered set estimator has the lowest variance", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 554, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 506, + 567 + ], + "score": 1.0, + "content": "in both the small and large domain (low and high entropy) setting, being on-par with the best of", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 564, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 505, + 577 + ], + "score": 1.0, + "content": "the (stochastic3) sum-and-sample estimator and REINFORCE with replacement4. This confirms the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 576, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 505, + 588 + ], + "score": 1.0, + "content": "toy experiment, suggesting that the unordered set estimator provides the best of both estimators. In", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 587, + 492, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 492, + 599 + ], + "score": 1.0, + "content": "Appendix G.2 we repeat the same experiment at different stages of training, with similar results.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 29.5 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 117, + 648, + 496, + 669 + ], + "lines": [ + { + "bbox": [ + 118, + 645, + 497, + 660 + ], + "spans": [ + { + "bbox": [ + 118, + 645, + 448, + 660 + ], + "score": 1.0, + "content": "3We cannot use the deterministic version by Liu et al. (2019) since we cannot select the top", + "type": "text" + }, + { + "bbox": [ + 449, + 648, + 455, + 657 + ], + "score": 0.72, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 645, + 497, + 660 + ], + "score": 1.0, + "content": "categories.", + "type": "text" + } + ] + }, + { + "bbox": [ + 118, + 656, + 479, + 672 + ], + "spans": [ + { + "bbox": [ + 118, + 656, + 479, + 672 + ], + "score": 1.0, + "content": "4We cannot compare against VIMCO (Mnih & Rezende, 2016) as it optimizes a different objective.", + "type": "text" + } + ] + } + ] + }, + { + "type": "table_body", + "bbox": [ + 125, + 696, + 486, + 742 + ], + "group_id": 0, + "lines": [] + }, + { + "type": "table_caption", + "bbox": [ + 127, + 676, + 483, + 689 + ], + "group_id": 0, + "lines": [] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 115, + 71, + 494, + 174 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 115, + 71, + 494, + 174 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 115, + 71, + 494, + 174 + ], + "spans": [ + { + "bbox": [ + 115, + 71, + 494, + 174 + ], + "score": 0.971, + "type": "image", + "image_path": "1827e94fdb564b2088e10a208547d35fffe208d74d3041a8d194d3868ada9f35.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 115, + 71, + 494, + 105.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 115, + 105.33333333333334, + 494, + 139.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 115, + 139.66666666666669, + 494, + 174.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 179, + 505, + 212 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 178, + 505, + 191 + ], + "spans": [ + { + "bbox": [ + 106, + 178, + 505, + 191 + ], + "score": 1.0, + "content": "Figure 1: Bernoulli gradient variance (on log scale) as a function of the number of model evaluations", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 189, + 506, + 203 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 506, + 203 + ], + "score": 1.0, + "content": "(including baseline evaluations, so the sum-and-sample estimators with sampled baselines use twice", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 201, + 505, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 439, + 213 + ], + "score": 1.0, + "content": "as many evaluations). Note that for some estimators, the variance is 0 (log variance", + "type": "text" + }, + { + "bbox": [ + 439, + 201, + 460, + 212 + ], + "score": 0.8, + "content": "- \\infty )", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 201, + 476, + 213 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 477, + 201, + 501, + 210 + ], + "score": 0.89, + "content": "k = 8", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 201, + 505, + 213 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 107, + 226, + 200, + 239 + ], + "lines": [ + { + "bbox": [ + 105, + 225, + 201, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 201, + 241 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "title", + "bbox": [ + 108, + 251, + 260, + 263 + ], + "lines": [ + { + "bbox": [ + 106, + 252, + 262, + 263 + ], + "spans": [ + { + "bbox": [ + 106, + 252, + 262, + 263 + ], + "score": 1.0, + "content": "4.1 BERNOULLI TOY EXPERIMENT", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 271, + 505, + 359 + ], + "lines": [ + { + "bbox": [ + 106, + 271, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 486, + 286 + ], + "score": 1.0, + "content": "We use the code by Liu et al. (2019) to reproduce their Bernoulli toy experiment. Given a vector", + "type": "text" + }, + { + "bbox": [ + 486, + 274, + 505, + 284 + ], + "score": 0.83, + "content": "\\mathbf { p } =", + "type": "inline_equation" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 279, + 506, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 307, + 305 + ], + "score": 1.0, + "content": "(0.6, 0.51, 0.48) the goal is to minimize the loss", + "type": "text" + }, + { + "bbox": [ + 308, + 283, + 501, + 303 + ], + "score": 0.82, + "content": "\\begin{array} { r } { \\mathcal { L } ( \\eta ) \\ : = \\ : \\mathbb { E } _ { x _ { 1 } , x _ { 2 } , x _ { 3 } \\sim \\mathrm { B e r n } ( \\sigma ( \\eta ) ) } \\left[ \\sum _ { i = 1 } ^ { 3 } ( x _ { i } - p _ { i } ) ^ { 2 } \\right] } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 279, + 506, + 305 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 300, + 505, + 314 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 128, + 314 + ], + "score": 1.0, + "content": "Here", + "type": "text" + }, + { + "bbox": [ + 129, + 304, + 169, + 313 + ], + "score": 0.87, + "content": "x _ { 1 } , x _ { 2 } , x _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 300, + 286, + 314 + ], + "score": 1.0, + "content": "are i.i.d. from the Bernoulli", + "type": "text" + }, + { + "bbox": [ + 286, + 301, + 313, + 314 + ], + "score": 0.87, + "content": "( \\sigma ( \\eta ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 300, + 473, + 314 + ], + "score": 1.0, + "content": "distribution, parameterized by a scalar", + "type": "text" + }, + { + "bbox": [ + 473, + 303, + 501, + 313 + ], + "score": 0.82, + "content": "\\eta \\in \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 300, + 505, + 314 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 312, + 506, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 133, + 325 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 312, + 236, + 325 + ], + "score": 0.93, + "content": "\\sigma ( \\eta ) = ( 1 + \\exp ( - \\eta ) ) ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 312, + 506, + 325 + ], + "score": 1.0, + "content": "is the sigmoid function. We compare different estimators, with and", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 323, + 506, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 506, + 336 + ], + "score": 1.0, + "content": "without baseline (either ‘built-in’ or using additional samples, referred to as REINFORCE+ in Liu", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 333, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 367, + 349 + ], + "score": 1.0, + "content": "et al. (2019)). We report the (log-)variance of the scalar gradient", + "type": "text" + }, + { + "bbox": [ + 367, + 333, + 380, + 349 + ], + "score": 0.9, + "content": "\\frac { \\partial \\mathcal { L } } { \\partial \\eta }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 333, + 506, + 349 + ], + "score": 1.0, + "content": "as a function of the number of", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 346, + 465, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 346, + 465, + 360 + ], + "score": 1.0, + "content": "model evaluations, which is twice as high when using a sampled baseline (for each term).", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 271, + 506, + 360 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 364, + 505, + 419 + ], + "lines": [ + { + "bbox": [ + 106, + 363, + 504, + 377 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 504, + 377 + ], + "score": 1.0, + "content": "As can be seen in Figure 1, the unordered set estimator is the only estimator that has consistently", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 374, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 318, + 388 + ], + "score": 1.0, + "content": "the lowest (or comparable) variance in both the high", + "type": "text" + }, + { + "bbox": [ + 318, + 375, + 344, + 387 + ], + "score": 0.87, + "content": "\\langle \\eta = 0 \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 374, + 416, + 388 + ], + "score": 1.0, + "content": ") and low entropy", + "type": "text" + }, + { + "bbox": [ + 417, + 376, + 452, + 387 + ], + "score": 0.87, + "content": "\\hphantom { - } \\eta = - 4 )", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 374, + 505, + 388 + ], + "score": 1.0, + "content": "regimes and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 385, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 505, + 399 + ], + "score": 1.0, + "content": "for different number of samples/model evaluations. This suggests that it combines the advantages", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 396, + 504, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 478, + 410 + ], + "score": 1.0, + "content": "of the other estimators. We also ran the actual optimization experiment, where with as few as", + "type": "text" + }, + { + "bbox": [ + 479, + 397, + 504, + 407 + ], + "score": 0.88, + "content": "k = 3", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 408, + 495, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 495, + 421 + ], + "score": 1.0, + "content": "samples the trajectory was indistinguishable from using the exact gradient (see Liu et al. (2019)).", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 363, + 505, + 421 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 432, + 329, + 444 + ], + "lines": [ + { + "bbox": [ + 106, + 432, + 330, + 445 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 330, + 445 + ], + "score": 1.0, + "content": "4.2 CATEGORICAL VARIATIONAL AUTO-ENCODER", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 453, + 505, + 520 + ], + "lines": [ + { + "bbox": [ + 106, + 453, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 453, + 505, + 466 + ], + "score": 1.0, + "content": "We use the code from Yin et al. (2019) to train a categorical Variational Auto-Encoder (VAE) with", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 463, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 506, + 478 + ], + "score": 1.0, + "content": "20 dimensional latent space, with 10 categories per dimension (details in Appendix G.1). To use", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 474, + 506, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 376, + 488 + ], + "score": 1.0, + "content": "our estimator, we treat this as a single factorized distribution with", + "type": "text" + }, + { + "bbox": [ + 376, + 475, + 396, + 486 + ], + "score": 0.88, + "content": "1 0 ^ { 2 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 474, + 506, + 488 + ], + "score": 1.0, + "content": "categories from which we", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 487, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 505, + 498 + ], + "score": 1.0, + "content": "can sample without replacement using Stochastic Beam Search (Kool et al., 2019c), sequentially", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 496, + 504, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 488, + 510 + ], + "score": 1.0, + "content": "sampling each dimension as if it were a sequence model. We also perform experiments with", + "type": "text" + }, + { + "bbox": [ + 488, + 497, + 504, + 507 + ], + "score": 0.85, + "content": "1 0 ^ { \\dot { 2 } }", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 507, + 492, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 492, + 522 + ], + "score": 1.0, + "content": "latent space, which provides a lower entropy setting, to highlight the advantage of our estimator.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 453, + 506, + 522 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 531, + 505, + 598 + ], + "lines": [ + { + "bbox": [ + 106, + 532, + 504, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 504, + 543 + ], + "score": 1.0, + "content": "Measuring the variance. In Table 1, we report the variance of different gradient estimators with", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 107, + 542, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 107, + 543, + 133, + 553 + ], + "score": 0.89, + "content": "k = 4", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 542, + 505, + 555 + ], + "score": 1.0, + "content": "samples, evaluated on a trained model. The unordered set estimator has the lowest variance", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 554, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 506, + 567 + ], + "score": 1.0, + "content": "in both the small and large domain (low and high entropy) setting, being on-par with the best of", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 564, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 505, + 577 + ], + "score": 1.0, + "content": "the (stochastic3) sum-and-sample estimator and REINFORCE with replacement4. This confirms the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 576, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 505, + 588 + ], + "score": 1.0, + "content": "toy experiment, suggesting that the unordered set estimator provides the best of both estimators. In", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 587, + 492, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 492, + 599 + ], + "score": 1.0, + "content": "Appendix G.2 we repeat the same experiment at different stages of training, with similar results.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 532, + 506, + 599 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 117, + 83, + 495, + 216 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 117, + 83, + 495, + 216 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 117, + 83, + 495, + 216 + ], + "spans": [ + { + "bbox": [ + 117, + 83, + 495, + 216 + ], + "score": 0.972, + "type": "image", + "image_path": "38fff474333f745080d8627c5fb4566e88f353059b7a66955110f7f26afb9b13.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 117, + 83, + 495, + 127.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 117, + 127.33333333333334, + 495, + 171.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 117, + 171.66666666666669, + 495, + 216.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 226, + 505, + 259 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 225, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 505, + 238 + ], + "score": 1.0, + "content": "Figure 2: VAE smoothed training curves (-ELBO) of two independent runs when training with", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 236, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 210, + 249 + ], + "score": 1.0, + "content": "different estimators with", + "type": "text" + }, + { + "bbox": [ + 210, + 237, + 240, + 247 + ], + "score": 0.86, + "content": "k = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 236, + 505, + 249 + ], + "score": 1.0, + "content": ", 4 or 8 (thicker lines) samples (ARSM has a variable number).", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 248, + 489, + 260 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 489, + 260 + ], + "score": 1.0, + "content": "Some lines coincide, so we sort the legend by the lowest -ELBO achieved and report this value.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 106, + 281, + 505, + 401 + ], + "lines": [ + { + "bbox": [ + 106, + 280, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 505, + 293 + ], + "score": 1.0, + "content": "ELBO optimization. We use different estimators to optimize the ELBO (details in Appendix", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 291, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 505, + 304 + ], + "score": 1.0, + "content": "G.1). Additionally to the baselines by Yin et al. (2019) we compare against REINFORCE with", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 303, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 505, + 315 + ], + "score": 1.0, + "content": "replacement and the stochastic sum-and-sample estimator. In Figure 2 we observe that our estima-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 314, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 314, + 505, + 326 + ], + "score": 1.0, + "content": "tor performs on par with REINFORCE with replacement (and built-in baseline, equation 23) and", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 323, + 506, + 339 + ], + "spans": [ + { + "bbox": [ + 104, + 323, + 506, + 339 + ], + "score": 1.0, + "content": "outperforms other estimators in at least one of the settings. There are a lot of other factors, e.g.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 335, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 506, + 348 + ], + "score": 1.0, + "content": "exploration that may explain why we do not get a strictly better result despite the lower variance.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 345, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 505, + 360 + ], + "score": 1.0, + "content": "We note some overfitting (see validation curves in Appendix G.2), but since our goal is to show", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 357, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 505, + 370 + ], + "score": 1.0, + "content": "improved optimization, and to keep results directly comparable to Yin et al. (2019), we consider", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 369, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 369, + 505, + 381 + ], + "score": 1.0, + "content": "regularization a separate issue outside the scope of this paper. These results are using MNIST bina-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 378, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 505, + 393 + ], + "score": 1.0, + "content": "rized by a threshold of 0.5. In Appendix G.2 we report results using the standard binarized MNIST", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 390, + 293, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 293, + 403 + ], + "score": 1.0, + "content": "dataset from Salakhutdinov & Murray (2008).", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 11 + }, + { + "type": "title", + "bbox": [ + 108, + 415, + 437, + 426 + ], + "lines": [ + { + "bbox": [ + 105, + 415, + 439, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 439, + 427 + ], + "score": 1.0, + "content": "4.3 STRUCTURED PREDICTION FOR THE TRAVELLING SALESMAN PROBLEM", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 435, + 504, + 480 + ], + "lines": [ + { + "bbox": [ + 105, + 435, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 505, + 448 + ], + "score": 1.0, + "content": "To show the wide applicability of our estimator, we consider the structured prediction task of pre-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 447, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 106, + 447, + 505, + 459 + ], + "score": 1.0, + "content": "dicting routes (sequences) for the Travelling Salesman Problem (TSP) (Vinyals et al., 2015; Bello", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 458, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 505, + 470 + ], + "score": 1.0, + "content": "et al., 2016; Kool et al., 2019a). We use the code by Kool et al. (2019a)5 to reproduce their TSP", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 469, + 332, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 332, + 481 + ], + "score": 1.0, + "content": "experiment with 20 nodes. For details, see Appendix H.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 107, + 486, + 504, + 562 + ], + "lines": [ + { + "bbox": [ + 105, + 485, + 506, + 499 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 506, + 499 + ], + "score": 1.0, + "content": "We implement REINFORCE with replacement (and built-in baseline) as well as the stochastic sum-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 497, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 506, + 509 + ], + "score": 1.0, + "content": "and-sample estimator and our estimator, using Stochastic Beam Search (Kool et al., 2019c) for", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 508, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 505, + 520 + ], + "score": 1.0, + "content": "sampling. Also, we include results using the biased normalized importance-weighted policy gradient", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 518, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 505, + 531 + ], + "score": 1.0, + "content": "estimator with built-in baseline (derived in Kool et al. (2019b), see Appendix D.2). Additionally,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 529, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 505, + 542 + ], + "score": 1.0, + "content": "we compare against REINFORCE with greedy rollout baseline (Rennie et al., 2017) used by Kool", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 541, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 506, + 553 + ], + "score": 1.0, + "content": "et al. (2019c) and a batch-average baseline. For reference, we also include the biased risk estimator,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 552, + 474, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 552, + 474, + 564 + ], + "score": 1.0, + "content": "either ‘sampling’ using stochastic or deterministic beam search (as in Edunov et al. (2018)).", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 569, + 505, + 645 + ], + "lines": [ + { + "bbox": [ + 105, + 569, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 505, + 581 + ], + "score": 1.0, + "content": "In Figure 3a, we compare training progress (measured on the validation set) as a function of the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 579, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 349, + 592 + ], + "score": 1.0, + "content": "number of training steps, where we divide the batch size by", + "type": "text" + }, + { + "bbox": [ + 350, + 580, + 357, + 589 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 579, + 505, + 592 + ], + "score": 1.0, + "content": "to keep the total number of samples", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 590, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 505, + 603 + ], + "score": 1.0, + "content": "equal. Our estimator outperforms REINFORCE with replacement, the stochastic sum-and-sample", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 601, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 505, + 614 + ], + "score": 1.0, + "content": "estimator and the strong greedy rollout baseline (which uses additional baseline model evaluations)", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 612, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 505, + 624 + ], + "score": 1.0, + "content": "and performs on-par with the biased risk estimator. In Figure 3b, we plot the same results against the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 623, + 505, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 505, + 636 + ], + "score": 1.0, + "content": "number of instances, which shows that, compared to the single sample estimators, we can train with", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 634, + 497, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 497, + 647 + ], + "score": 1.0, + "content": "less data and less computational cost (as we only need to run the encoder once for each instance).", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 32 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 117, + 722, + 416, + 731 + ], + "lines": [ + { + "bbox": [ + 118, + 720, + 417, + 733 + ], + "spans": [ + { + "bbox": [ + 118, + 720, + 417, + 733 + ], + "score": 1.0, + "content": "5https://github.com/wouterkool/attention-learn-to-route", + "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, + 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": [ + 117, + 83, + 495, + 216 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 117, + 83, + 495, + 216 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 117, + 83, + 495, + 216 + ], + "spans": [ + { + "bbox": [ + 117, + 83, + 495, + 216 + ], + "score": 0.972, + "type": "image", + "image_path": "38fff474333f745080d8627c5fb4566e88f353059b7a66955110f7f26afb9b13.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 117, + 83, + 495, + 127.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 117, + 127.33333333333334, + 495, + 171.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 117, + 171.66666666666669, + 495, + 216.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 226, + 505, + 259 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 225, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 505, + 238 + ], + "score": 1.0, + "content": "Figure 2: VAE smoothed training curves (-ELBO) of two independent runs when training with", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 236, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 210, + 249 + ], + "score": 1.0, + "content": "different estimators with", + "type": "text" + }, + { + "bbox": [ + 210, + 237, + 240, + 247 + ], + "score": 0.86, + "content": "k = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 236, + 505, + 249 + ], + "score": 1.0, + "content": ", 4 or 8 (thicker lines) samples (ARSM has a variable number).", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 248, + 489, + 260 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 489, + 260 + ], + "score": 1.0, + "content": "Some lines coincide, so we sort the legend by the lowest -ELBO achieved and report this value.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 106, + 281, + 505, + 401 + ], + "lines": [ + { + "bbox": [ + 106, + 280, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 505, + 293 + ], + "score": 1.0, + "content": "ELBO optimization. We use different estimators to optimize the ELBO (details in Appendix", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 291, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 505, + 304 + ], + "score": 1.0, + "content": "G.1). Additionally to the baselines by Yin et al. (2019) we compare against REINFORCE with", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 303, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 505, + 315 + ], + "score": 1.0, + "content": "replacement and the stochastic sum-and-sample estimator. In Figure 2 we observe that our estima-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 314, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 314, + 505, + 326 + ], + "score": 1.0, + "content": "tor performs on par with REINFORCE with replacement (and built-in baseline, equation 23) and", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 323, + 506, + 339 + ], + "spans": [ + { + "bbox": [ + 104, + 323, + 506, + 339 + ], + "score": 1.0, + "content": "outperforms other estimators in at least one of the settings. There are a lot of other factors, e.g.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 335, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 506, + 348 + ], + "score": 1.0, + "content": "exploration that may explain why we do not get a strictly better result despite the lower variance.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 345, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 505, + 360 + ], + "score": 1.0, + "content": "We note some overfitting (see validation curves in Appendix G.2), but since our goal is to show", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 357, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 505, + 370 + ], + "score": 1.0, + "content": "improved optimization, and to keep results directly comparable to Yin et al. (2019), we consider", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 369, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 369, + 505, + 381 + ], + "score": 1.0, + "content": "regularization a separate issue outside the scope of this paper. These results are using MNIST bina-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 378, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 505, + 393 + ], + "score": 1.0, + "content": "rized by a threshold of 0.5. In Appendix G.2 we report results using the standard binarized MNIST", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 390, + 293, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 293, + 403 + ], + "score": 1.0, + "content": "dataset from Salakhutdinov & Murray (2008).", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 11, + "bbox_fs": [ + 104, + 280, + 506, + 403 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 415, + 437, + 426 + ], + "lines": [ + { + "bbox": [ + 105, + 415, + 439, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 439, + 427 + ], + "score": 1.0, + "content": "4.3 STRUCTURED PREDICTION FOR THE TRAVELLING SALESMAN PROBLEM", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 435, + 504, + 480 + ], + "lines": [ + { + "bbox": [ + 105, + 435, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 505, + 448 + ], + "score": 1.0, + "content": "To show the wide applicability of our estimator, we consider the structured prediction task of pre-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 447, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 106, + 447, + 505, + 459 + ], + "score": 1.0, + "content": "dicting routes (sequences) for the Travelling Salesman Problem (TSP) (Vinyals et al., 2015; Bello", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 458, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 505, + 470 + ], + "score": 1.0, + "content": "et al., 2016; Kool et al., 2019a). We use the code by Kool et al. (2019a)5 to reproduce their TSP", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 469, + 332, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 332, + 481 + ], + "score": 1.0, + "content": "experiment with 20 nodes. For details, see Appendix H.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 435, + 505, + 481 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 486, + 504, + 562 + ], + "lines": [ + { + "bbox": [ + 105, + 485, + 506, + 499 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 506, + 499 + ], + "score": 1.0, + "content": "We implement REINFORCE with replacement (and built-in baseline) as well as the stochastic sum-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 497, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 506, + 509 + ], + "score": 1.0, + "content": "and-sample estimator and our estimator, using Stochastic Beam Search (Kool et al., 2019c) for", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 508, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 505, + 520 + ], + "score": 1.0, + "content": "sampling. Also, we include results using the biased normalized importance-weighted policy gradient", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 518, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 505, + 531 + ], + "score": 1.0, + "content": "estimator with built-in baseline (derived in Kool et al. (2019b), see Appendix D.2). Additionally,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 529, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 505, + 542 + ], + "score": 1.0, + "content": "we compare against REINFORCE with greedy rollout baseline (Rennie et al., 2017) used by Kool", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 541, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 506, + 553 + ], + "score": 1.0, + "content": "et al. (2019c) and a batch-average baseline. For reference, we also include the biased risk estimator,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 552, + 474, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 552, + 474, + 564 + ], + "score": 1.0, + "content": "either ‘sampling’ using stochastic or deterministic beam search (as in Edunov et al. (2018)).", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 485, + 506, + 564 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 569, + 505, + 645 + ], + "lines": [ + { + "bbox": [ + 105, + 569, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 505, + 581 + ], + "score": 1.0, + "content": "In Figure 3a, we compare training progress (measured on the validation set) as a function of the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 579, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 349, + 592 + ], + "score": 1.0, + "content": "number of training steps, where we divide the batch size by", + "type": "text" + }, + { + "bbox": [ + 350, + 580, + 357, + 589 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 579, + 505, + 592 + ], + "score": 1.0, + "content": "to keep the total number of samples", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 590, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 505, + 603 + ], + "score": 1.0, + "content": "equal. Our estimator outperforms REINFORCE with replacement, the stochastic sum-and-sample", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 601, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 505, + 614 + ], + "score": 1.0, + "content": "estimator and the strong greedy rollout baseline (which uses additional baseline model evaluations)", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 612, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 505, + 624 + ], + "score": 1.0, + "content": "and performs on-par with the biased risk estimator. In Figure 3b, we plot the same results against the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 623, + 505, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 505, + 636 + ], + "score": 1.0, + "content": "number of instances, which shows that, compared to the single sample estimators, we can train with", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 634, + 497, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 497, + 647 + ], + "score": 1.0, + "content": "less data and less computational cost (as we only need to run the encoder once for each instance).", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 569, + 505, + 647 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 126, + 77, + 486, + 196 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 126, + 77, + 486, + 196 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 126, + 77, + 486, + 196 + ], + "spans": [ + { + "bbox": [ + 126, + 77, + 486, + 196 + ], + "score": 0.968, + "type": "image", + "image_path": "3cf7aa8c67e64f59fc3b77ff931ff72bff898a29559db5fa6f7eddaa573687f1.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 126, + 77, + 486, + 116.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 126, + 116.66666666666666, + 486, + 156.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 126, + 156.33333333333331, + 486, + 195.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 200, + 505, + 244 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 200, + 505, + 213 + ], + "spans": [ + { + "bbox": [ + 106, + 200, + 505, + 213 + ], + "score": 1.0, + "content": "Figure 3: TSP validation set optimality gap measured during training. Raw results are light,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 211, + 504, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 211, + 504, + 223 + ], + "score": 1.0, + "content": "smoothed results are darker (2 random seeds). We compare our estimator against different un-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 222, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 505, + 235 + ], + "score": 1.0, + "content": "biased and biased (dotted) multi-sample estimators and against single-sample REINFORCE, with", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 234, + 272, + 246 + ], + "spans": [ + { + "bbox": [ + 106, + 234, + 272, + 246 + ], + "score": 1.0, + "content": "batch-average or greedy rollout baseline.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "title", + "bbox": [ + 108, + 259, + 190, + 272 + ], + "lines": [ + { + "bbox": [ + 105, + 259, + 192, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 192, + 275 + ], + "score": 1.0, + "content": "5 DISCUSSION", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 285, + 505, + 362 + ], + "lines": [ + { + "bbox": [ + 106, + 285, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 106, + 285, + 505, + 297 + ], + "score": 1.0, + "content": "We introduced the unordered set estimator, a low-variance, unbiased gradient estimator based on", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 297, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 505, + 308 + ], + "score": 1.0, + "content": "sampling without replacement, which can be used as an alternative to the popular biased Gumbel-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 307, + 505, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 505, + 319 + ], + "score": 1.0, + "content": "Softmax estimator (Jang et al., 2016; Maddison et al., 2016). Our estimator is the result of Rao-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 318, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 505, + 330 + ], + "score": 1.0, + "content": "Blackwellizing three existing estimators, which guarantees equal or lower variance, and is closely", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 329, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 505, + 342 + ], + "score": 1.0, + "content": "related to a number of other estimators. It has wide applicability, is parameter free (except for the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 340, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 157, + 352 + ], + "score": 1.0, + "content": "sample size", + "type": "text" + }, + { + "bbox": [ + 157, + 340, + 164, + 350 + ], + "score": 0.69, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 340, + 505, + 352 + ], + "score": 1.0, + "content": ") and has competitive performance to the best of alternatives in both high and low", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 352, + 176, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 352, + 176, + 363 + ], + "score": 1.0, + "content": "entropy regimes.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 367, + 505, + 445 + ], + "lines": [ + { + "bbox": [ + 105, + 367, + 506, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 506, + 380 + ], + "score": 1.0, + "content": "In our experiments, we found that REINFORCE with replacement, with multiple samples and a", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 378, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 505, + 392 + ], + "score": 1.0, + "content": "built-in baseline as inspired by VIMCO (Mnih & Rezende, 2016), is a simple yet strong estimator", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 389, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 505, + 403 + ], + "score": 1.0, + "content": "which has performance similar to our estimator in the high entropy setting. We are not aware of any", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 401, + 506, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 506, + 413 + ], + "score": 1.0, + "content": "recent work on gradient estimators for discrete distributions that has considered this estimator as", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 411, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 505, + 424 + ], + "score": 1.0, + "content": "baseline, while it may be often preferred given its simplicity. In future work, we want to investigate", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 423, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 505, + 435 + ], + "score": 1.0, + "content": "if we can apply our estimator to estimate gradients ‘locally’ (Titsias & Lazaro-Gredilla, 2015), as ´", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 433, + 386, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 386, + 447 + ], + "score": 1.0, + "content": "locally we have a smaller domain and expect more duplicate samples.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18 + }, + { + "type": "title", + "bbox": [ + 108, + 458, + 200, + 469 + ], + "lines": [ + { + "bbox": [ + 107, + 459, + 200, + 469 + ], + "spans": [ + { + "bbox": [ + 107, + 459, + 200, + 469 + ], + "score": 1.0, + "content": "ACKNOWLEDGMENTS", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 477, + 503, + 499 + ], + "lines": [ + { + "bbox": [ + 106, + 477, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 505, + 489 + ], + "score": 1.0, + "content": "This research was funded by ORTEC. We would like to thank anonymous reviewers for their feed-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 487, + 251, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 251, + 501 + ], + "score": 1.0, + "content": "back that helped improve the paper.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "title", + "bbox": [ + 107, + 516, + 175, + 528 + ], + "lines": [ + { + "bbox": [ + 106, + 515, + 176, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 515, + 176, + 530 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 534, + 506, + 568 + ], + "lines": [ + { + "bbox": [ + 106, + 535, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 535, + 505, + 547 + ], + "score": 1.0, + "content": "Dzmitry Bahdanau, Philemon Brakel, Kelvin Xu, Anirudh Goyal, Ryan Lowe, Joelle Pineau, Aaron", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 117, + 546, + 505, + 558 + ], + "spans": [ + { + "bbox": [ + 117, + 546, + 505, + 558 + ], + "score": 1.0, + "content": "Courville, and Yoshua Bengio. An actor-critic algorithm for sequence prediction. In International", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 117, + 557, + 310, + 569 + ], + "spans": [ + { + "bbox": [ + 117, + 557, + 310, + 569 + ], + "score": 1.0, + "content": "Conference on Learning Representations, 2017.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 105, + 576, + 504, + 599 + ], + "lines": [ + { + "bbox": [ + 106, + 576, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 505, + 589 + ], + "score": 1.0, + "content": "Irwan Bello, Hieu Pham, Quoc V Le, Mohammad Norouzi, and Samy Bengio. Neural combinatorial", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 587, + 448, + 600 + ], + "spans": [ + { + "bbox": [ + 115, + 587, + 448, + 600 + ], + "score": 1.0, + "content": "optimization with reinforcement learning. arXiv preprint arXiv:1611.09940, 2016.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 106, + 606, + 504, + 630 + ], + "lines": [ + { + "bbox": [ + 106, + 606, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 505, + 619 + ], + "score": 1.0, + "content": "Yoshua Bengio, Nicholas Leonard, and Aaron Courville. Estimating or propagating gradients ´", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 618, + 501, + 631 + ], + "spans": [ + { + "bbox": [ + 116, + 618, + 501, + 631 + ], + "score": 1.0, + "content": "through stochastic neurons for conditional computation. arXiv preprint arXiv:1308.3432, 2013.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 104, + 637, + 504, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 636, + 504, + 649 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 504, + 649 + ], + "score": 1.0, + "content": "George Casella and Christian P Robert. Rao-Blackwellisation of sampling schemes. Biometrika, 83", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 648, + 186, + 660 + ], + "spans": [ + { + "bbox": [ + 115, + 648, + 186, + 660 + ], + "score": 1.0, + "content": "(1):81–94, 1996.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 107, + 668, + 504, + 702 + ], + "lines": [ + { + "bbox": [ + 105, + 668, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 505, + 681 + ], + "score": 1.0, + "content": "Randal Douc and Olivier Cappe. Comparison of resampling schemes for particle filtering. In ´ ISPA", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 116, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "2005. Proceedings of the 4th International Symposium on Image and Signal Processing and Anal-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 691, + 260, + 702 + ], + "spans": [ + { + "bbox": [ + 115, + 691, + 260, + 702 + ], + "score": 1.0, + "content": "ysis, 2005., pp. 64–69. IEEE, 2005.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 502, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 504, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 504, + 723 + ], + "score": 1.0, + "content": "Nick Duffield, Carsten Lund, and Mikkel Thorup. Priority sampling for estimation of arbitrary", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 720, + 353, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 353, + 732 + ], + "score": 1.0, + "content": "subset sums. Journal of the ACM (JACM), 54(6):32, 2007.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + } + ], + "page_idx": 9, + "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": [ + 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": "image", + "bbox": [ + 126, + 77, + 486, + 196 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 126, + 77, + 486, + 196 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 126, + 77, + 486, + 196 + ], + "spans": [ + { + "bbox": [ + 126, + 77, + 486, + 196 + ], + "score": 0.968, + "type": "image", + "image_path": "3cf7aa8c67e64f59fc3b77ff931ff72bff898a29559db5fa6f7eddaa573687f1.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 126, + 77, + 486, + 116.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 126, + 116.66666666666666, + 486, + 156.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 126, + 156.33333333333331, + 486, + 195.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 200, + 505, + 244 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 200, + 505, + 213 + ], + "spans": [ + { + "bbox": [ + 106, + 200, + 505, + 213 + ], + "score": 1.0, + "content": "Figure 3: TSP validation set optimality gap measured during training. Raw results are light,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 211, + 504, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 211, + 504, + 223 + ], + "score": 1.0, + "content": "smoothed results are darker (2 random seeds). We compare our estimator against different un-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 222, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 505, + 235 + ], + "score": 1.0, + "content": "biased and biased (dotted) multi-sample estimators and against single-sample REINFORCE, with", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 234, + 272, + 246 + ], + "spans": [ + { + "bbox": [ + 106, + 234, + 272, + 246 + ], + "score": 1.0, + "content": "batch-average or greedy rollout baseline.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "title", + "bbox": [ + 108, + 259, + 190, + 272 + ], + "lines": [ + { + "bbox": [ + 105, + 259, + 192, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 192, + 275 + ], + "score": 1.0, + "content": "5 DISCUSSION", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 285, + 505, + 362 + ], + "lines": [ + { + "bbox": [ + 106, + 285, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 106, + 285, + 505, + 297 + ], + "score": 1.0, + "content": "We introduced the unordered set estimator, a low-variance, unbiased gradient estimator based on", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 297, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 505, + 308 + ], + "score": 1.0, + "content": "sampling without replacement, which can be used as an alternative to the popular biased Gumbel-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 307, + 505, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 505, + 319 + ], + "score": 1.0, + "content": "Softmax estimator (Jang et al., 2016; Maddison et al., 2016). Our estimator is the result of Rao-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 318, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 505, + 330 + ], + "score": 1.0, + "content": "Blackwellizing three existing estimators, which guarantees equal or lower variance, and is closely", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 329, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 505, + 342 + ], + "score": 1.0, + "content": "related to a number of other estimators. It has wide applicability, is parameter free (except for the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 340, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 157, + 352 + ], + "score": 1.0, + "content": "sample size", + "type": "text" + }, + { + "bbox": [ + 157, + 340, + 164, + 350 + ], + "score": 0.69, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 340, + 505, + 352 + ], + "score": 1.0, + "content": ") and has competitive performance to the best of alternatives in both high and low", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 352, + 176, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 352, + 176, + 363 + ], + "score": 1.0, + "content": "entropy regimes.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 285, + 505, + 363 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 367, + 505, + 445 + ], + "lines": [ + { + "bbox": [ + 105, + 367, + 506, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 506, + 380 + ], + "score": 1.0, + "content": "In our experiments, we found that REINFORCE with replacement, with multiple samples and a", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 378, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 505, + 392 + ], + "score": 1.0, + "content": "built-in baseline as inspired by VIMCO (Mnih & Rezende, 2016), is a simple yet strong estimator", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 389, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 505, + 403 + ], + "score": 1.0, + "content": "which has performance similar to our estimator in the high entropy setting. We are not aware of any", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 401, + 506, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 506, + 413 + ], + "score": 1.0, + "content": "recent work on gradient estimators for discrete distributions that has considered this estimator as", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 411, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 505, + 424 + ], + "score": 1.0, + "content": "baseline, while it may be often preferred given its simplicity. In future work, we want to investigate", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 423, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 505, + 435 + ], + "score": 1.0, + "content": "if we can apply our estimator to estimate gradients ‘locally’ (Titsias & Lazaro-Gredilla, 2015), as ´", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 433, + 386, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 386, + 447 + ], + "score": 1.0, + "content": "locally we have a smaller domain and expect more duplicate samples.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 367, + 506, + 447 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 458, + 200, + 469 + ], + "lines": [ + { + "bbox": [ + 107, + 459, + 200, + 469 + ], + "spans": [ + { + "bbox": [ + 107, + 459, + 200, + 469 + ], + "score": 1.0, + "content": "ACKNOWLEDGMENTS", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 477, + 503, + 499 + ], + "lines": [ + { + "bbox": [ + 106, + 477, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 505, + 489 + ], + "score": 1.0, + "content": "This research was funded by ORTEC. We would like to thank anonymous reviewers for their feed-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 487, + 251, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 251, + 501 + ], + "score": 1.0, + "content": "back that helped improve the paper.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 477, + 505, + 501 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 516, + 175, + 528 + ], + "lines": [ + { + "bbox": [ + 106, + 515, + 176, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 515, + 176, + 530 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 534, + 506, + 568 + ], + "lines": [ + { + "bbox": [ + 106, + 535, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 535, + 505, + 547 + ], + "score": 1.0, + "content": "Dzmitry Bahdanau, Philemon Brakel, Kelvin Xu, Anirudh Goyal, Ryan Lowe, Joelle Pineau, Aaron", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 117, + 546, + 505, + 558 + ], + "spans": [ + { + "bbox": [ + 117, + 546, + 505, + 558 + ], + "score": 1.0, + "content": "Courville, and Yoshua Bengio. An actor-critic algorithm for sequence prediction. In International", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 117, + 557, + 310, + 569 + ], + "spans": [ + { + "bbox": [ + 117, + 557, + 310, + 569 + ], + "score": 1.0, + "content": "Conference on Learning Representations, 2017.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27, + "bbox_fs": [ + 106, + 535, + 505, + 569 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 576, + 504, + 599 + ], + "lines": [ + { + "bbox": [ + 106, + 576, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 505, + 589 + ], + "score": 1.0, + "content": "Irwan Bello, Hieu Pham, Quoc V Le, Mohammad Norouzi, and Samy Bengio. Neural combinatorial", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 587, + 448, + 600 + ], + "spans": [ + { + "bbox": [ + 115, + 587, + 448, + 600 + ], + "score": 1.0, + "content": "optimization with reinforcement learning. arXiv preprint arXiv:1611.09940, 2016.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 106, + 576, + 505, + 600 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 606, + 504, + 630 + ], + "lines": [ + { + "bbox": [ + 106, + 606, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 505, + 619 + ], + "score": 1.0, + "content": "Yoshua Bengio, Nicholas Leonard, and Aaron Courville. Estimating or propagating gradients ´", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 618, + 501, + 631 + ], + "spans": [ + { + "bbox": [ + 116, + 618, + 501, + 631 + ], + "score": 1.0, + "content": "through stochastic neurons for conditional computation. arXiv preprint arXiv:1308.3432, 2013.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 106, + 606, + 505, + 631 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 637, + 504, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 636, + 504, + 649 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 504, + 649 + ], + "score": 1.0, + "content": "George Casella and Christian P Robert. Rao-Blackwellisation of sampling schemes. Biometrika, 83", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 648, + 186, + 660 + ], + "spans": [ + { + "bbox": [ + 115, + 648, + 186, + 660 + ], + "score": 1.0, + "content": "(1):81–94, 1996.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 106, + 636, + 504, + 660 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 668, + 504, + 702 + ], + "lines": [ + { + "bbox": [ + 105, + 668, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 505, + 681 + ], + "score": 1.0, + "content": "Randal Douc and Olivier Cappe. Comparison of resampling schemes for particle filtering. In ´ ISPA", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 116, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "2005. Proceedings of the 4th International Symposium on Image and Signal Processing and Anal-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 691, + 260, + 702 + ], + "spans": [ + { + "bbox": [ + 115, + 691, + 260, + 702 + ], + "score": 1.0, + "content": "ysis, 2005., pp. 64–69. IEEE, 2005.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 668, + 505, + 702 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 502, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 504, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 504, + 723 + ], + "score": 1.0, + "content": "Nick Duffield, Carsten Lund, and Mikkel Thorup. Priority sampling for estimation of arbitrary", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 720, + 353, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 353, + 732 + ], + "score": 1.0, + "content": "subset sums. Journal of the ACM (JACM), 54(6):32, 2007.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 708, + 504, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 127 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "Sergey Edunov, Myle Ott, Michael Auli, David Grangier, et al. Classical structured prediction losses", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "for sequence to sequence learning. In Proceedings of the 2018 Conference of the North Ameri-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 105, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 115, + 105, + 505, + 118 + ], + "score": 1.0, + "content": "can Chapter of the Association for Computational Linguistics: Human Language Technologies,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 115, + 339, + 127 + ], + "spans": [ + { + "bbox": [ + 116, + 115, + 339, + 127 + ], + "score": 1.0, + "content": "Volume 1 (Long Papers), volume 1, pp. 355–364, 2018.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 106, + 135, + 503, + 158 + ], + "lines": [ + { + "bbox": [ + 105, + 135, + 505, + 148 + ], + "spans": [ + { + "bbox": [ + 105, + 135, + 505, + 148 + ], + "score": 1.0, + "content": "Paul Fearnhead and Peter Clifford. On-line inference for hidden markov models via particle filters.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 146, + 505, + 159 + ], + "spans": [ + { + "bbox": [ + 115, + 146, + 505, + 159 + ], + "score": 1.0, + "content": "Journal of the Royal Statistical Society: Series B (Statistical Methodology), 65(4):887–899, 2003.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 107, + 165, + 505, + 200 + ], + "lines": [ + { + "bbox": [ + 106, + 165, + 505, + 179 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 505, + 179 + ], + "score": 1.0, + "content": "Will Grathwohl, Dami Choi, Yuhuai Wu, Geoffrey Roeder, and David Duvenaud. Backpropagation", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 117, + 177, + 505, + 190 + ], + "spans": [ + { + "bbox": [ + 117, + 177, + 505, + 190 + ], + "score": 1.0, + "content": "through the void: Optimizing control variates for black-box gradient estimation. In International", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 117, + 189, + 310, + 201 + ], + "spans": [ + { + "bbox": [ + 117, + 189, + 310, + 201 + ], + "score": 1.0, + "content": "Conference on Learning Representations, 2018.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 208, + 504, + 231 + ], + "lines": [ + { + "bbox": [ + 106, + 207, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 207, + 505, + 221 + ], + "score": 1.0, + "content": "Karol Gregor, Ivo Danihelka, Andriy Mnih, Charles Blundell, and Daan Wierstra. Deep autoregres-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 219, + 473, + 232 + ], + "spans": [ + { + "bbox": [ + 115, + 219, + 473, + 232 + ], + "score": 1.0, + "content": "sive networks. In International Conference on Machine Learning, pp. 1242–1250, 2014.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 107, + 239, + 504, + 273 + ], + "lines": [ + { + "bbox": [ + 105, + 238, + 505, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 505, + 253 + ], + "score": 1.0, + "content": "Aditya Grover, Eric Wang, Aaron Zweig, and Stefano Ermon. Stochastic optimization of sorting", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 250, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 115, + 250, + 505, + 263 + ], + "score": 1.0, + "content": "networks via continuous relaxations. In International Conference on Learning Representations,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 261, + 142, + 273 + ], + "spans": [ + { + "bbox": [ + 115, + 261, + 142, + 273 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 105, + 281, + 504, + 304 + ], + "lines": [ + { + "bbox": [ + 106, + 282, + 504, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 504, + 295 + ], + "score": 1.0, + "content": "Jiatao Gu, Daniel Jiwoong Im, and Victor OK Li. Neural machine translation with Gumbel-greedy", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 292, + 459, + 305 + ], + "spans": [ + { + "bbox": [ + 116, + 292, + 459, + 305 + ], + "score": 1.0, + "content": "decoding. In Thirty-Second AAAI Conference on Artificial Intelligence (AAAI), 2018.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 107, + 312, + 504, + 335 + ], + "lines": [ + { + "bbox": [ + 106, + 312, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 505, + 325 + ], + "score": 1.0, + "content": "Shixiang Gu, Sergey Levine, Ilya Sutskever, and Andriy Mnih. Muprop: Unbiased backpropagation", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 324, + 502, + 336 + ], + "spans": [ + { + "bbox": [ + 116, + 324, + 502, + 336 + ], + "score": 1.0, + "content": "for stochastic neural networks. In International Conference on Learning Representations, 2016.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 106, + 343, + 505, + 377 + ], + "lines": [ + { + "bbox": [ + 106, + 343, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 505, + 357 + ], + "score": 1.0, + "content": "Di He, Yingce Xia, Tao Qin, Liwei Wang, Nenghai Yu, Tie-Yan Liu, and Wei-Ying Ma. Dual", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 353, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 115, + 353, + 505, + 369 + ], + "score": 1.0, + "content": "learning for machine translation. In Advances in Neural Information Processing Systems, pp.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 366, + 181, + 377 + ], + "spans": [ + { + "bbox": [ + 116, + 366, + 181, + 377 + ], + "score": 1.0, + "content": "820–828, 2016.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 108, + 385, + 504, + 408 + ], + "lines": [ + { + "bbox": [ + 106, + 385, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 505, + 399 + ], + "score": 1.0, + "content": "Eric Jang, Shixiang Gu, and Ben Poole. Categorical reparameterization with gumbel-softmax. In", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 397, + 365, + 409 + ], + "spans": [ + { + "bbox": [ + 115, + 397, + 365, + 409 + ], + "score": 1.0, + "content": "International Conference on Learning Representations, 2016.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 106, + 416, + 504, + 440 + ], + "lines": [ + { + "bbox": [ + 105, + 415, + 506, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 506, + 431 + ], + "score": 1.0, + "content": "Carolyn Kim, Ashish Sabharwal, and Stefano Ermon. Exact sampling with integer linear programs", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 117, + 428, + 472, + 440 + ], + "spans": [ + { + "bbox": [ + 117, + 428, + 472, + 440 + ], + "score": 1.0, + "content": "and random perturbations. In Thirtieth AAAI Conference on Artificial Intelligence, 2016.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 106, + 448, + 504, + 471 + ], + "lines": [ + { + "bbox": [ + 106, + 448, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 505, + 461 + ], + "score": 1.0, + "content": "Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. In International", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 459, + 310, + 471 + ], + "spans": [ + { + "bbox": [ + 116, + 459, + 310, + 471 + ], + "score": 1.0, + "content": "Conference on Learning Representations, 2015.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 106, + 478, + 504, + 502 + ], + "lines": [ + { + "bbox": [ + 106, + 479, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 505, + 492 + ], + "score": 1.0, + "content": "Diederik P Kingma and Max Welling. Auto-encoding variational Bayes. In International Conference", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 491, + 262, + 502 + ], + "spans": [ + { + "bbox": [ + 115, + 491, + 262, + 502 + ], + "score": 1.0, + "content": "on Learning Representations, 2014.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 105, + 509, + 504, + 533 + ], + "lines": [ + { + "bbox": [ + 106, + 510, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 505, + 523 + ], + "score": 1.0, + "content": "Wouter Kool, Herke van Hoof, and Max Welling. Attention, learn to solve routing problems! In", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 117, + 522, + 369, + 533 + ], + "spans": [ + { + "bbox": [ + 117, + 522, + 369, + 533 + ], + "score": 1.0, + "content": "International Conference on Learning Representations, 2019a.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 107, + 541, + 505, + 575 + ], + "lines": [ + { + "bbox": [ + 106, + 541, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 541, + 505, + 554 + ], + "score": 1.0, + "content": "Wouter Kool, Herke van Hoof, and Max Welling. Buy 4 reinforce samples, get a baseline for", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 117, + 553, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 117, + 553, + 505, + 564 + ], + "score": 1.0, + "content": "free! In Deep Reinforcement Learning Meets Structured Prediction Workshop at the International", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 117, + 563, + 315, + 576 + ], + "spans": [ + { + "bbox": [ + 117, + 563, + 315, + 576 + ], + "score": 1.0, + "content": "Conference on Learning Representations, 2019b.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 583, + 505, + 617 + ], + "lines": [ + { + "bbox": [ + 106, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "Wouter Kool, Herke Van Hoof, and Max Welling. Stochastic beams and where to find them: The", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 594, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 115, + 594, + 506, + 607 + ], + "score": 1.0, + "content": "gumbel-top-k trick for sampling sequences without replacement. In International Conference on", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 605, + 289, + 617 + ], + "spans": [ + { + "bbox": [ + 116, + 605, + 289, + 617 + ], + "score": 1.0, + "content": "Machine Learning, pp. 3499–3508, 2019c.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 106, + 625, + 505, + 659 + ], + "lines": [ + { + "bbox": [ + 105, + 624, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 505, + 639 + ], + "score": 1.0, + "content": "Hugo Larochelle and Iain Murray. The neural autoregressive distribution estimator. In Proceedings", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 636, + 505, + 648 + ], + "spans": [ + { + "bbox": [ + 115, + 636, + 505, + 648 + ], + "score": 1.0, + "content": "of the Fourteenth International Conference on Artificial Intelligence and Statistics, pp. 29–37,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 646, + 143, + 659 + ], + "spans": [ + { + "bbox": [ + 115, + 646, + 143, + 659 + ], + "score": 1.0, + "content": "2011.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 667, + 504, + 701 + ], + "lines": [ + { + "bbox": [ + 105, + 666, + 506, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 681 + ], + "score": 1.0, + "content": "Remi Leblond, Jean-Baptiste Alayrac, Anton Osokin, and Simon Lacoste-Julien. Searnn: Training ´", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 115, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "RNNs with global-local losses. In 6th International Conference on Learning Representations,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 114, + 688, + 143, + 702 + ], + "spans": [ + { + "bbox": [ + 114, + 688, + 143, + 702 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 108, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 708, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 708, + 506, + 723 + ], + "score": 1.0, + "content": "EL Lehmann and Henry Scheffe. Completeness, similar regions, and unbiased estimation: Part i. ´", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 720, + 366, + 733 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 366, + 733 + ], + "score": 1.0, + "content": "Sankhya: The Indian Journal of Statistics ¯ , pp. 305–340, 1950.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5 + } + ], + "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 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": [ + 107, + 82, + 505, + 127 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "Sergey Edunov, Myle Ott, Michael Auli, David Grangier, et al. Classical structured prediction losses", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "for sequence to sequence learning. In Proceedings of the 2018 Conference of the North Ameri-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 105, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 115, + 105, + 505, + 118 + ], + "score": 1.0, + "content": "can Chapter of the Association for Computational Linguistics: Human Language Technologies,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 115, + 339, + 127 + ], + "spans": [ + { + "bbox": [ + 116, + 115, + 339, + 127 + ], + "score": 1.0, + "content": "Volume 1 (Long Papers), volume 1, pp. 355–364, 2018.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 106, + 83, + 505, + 127 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 135, + 503, + 158 + ], + "lines": [ + { + "bbox": [ + 105, + 135, + 505, + 148 + ], + "spans": [ + { + "bbox": [ + 105, + 135, + 505, + 148 + ], + "score": 1.0, + "content": "Paul Fearnhead and Peter Clifford. On-line inference for hidden markov models via particle filters.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 146, + 505, + 159 + ], + "spans": [ + { + "bbox": [ + 115, + 146, + 505, + 159 + ], + "score": 1.0, + "content": "Journal of the Royal Statistical Society: Series B (Statistical Methodology), 65(4):887–899, 2003.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 135, + 505, + 159 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 165, + 505, + 200 + ], + "lines": [ + { + "bbox": [ + 106, + 165, + 505, + 179 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 505, + 179 + ], + "score": 1.0, + "content": "Will Grathwohl, Dami Choi, Yuhuai Wu, Geoffrey Roeder, and David Duvenaud. Backpropagation", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 117, + 177, + 505, + 190 + ], + "spans": [ + { + "bbox": [ + 117, + 177, + 505, + 190 + ], + "score": 1.0, + "content": "through the void: Optimizing control variates for black-box gradient estimation. In International", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 117, + 189, + 310, + 201 + ], + "spans": [ + { + "bbox": [ + 117, + 189, + 310, + 201 + ], + "score": 1.0, + "content": "Conference on Learning Representations, 2018.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 106, + 165, + 505, + 201 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 208, + 504, + 231 + ], + "lines": [ + { + "bbox": [ + 106, + 207, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 207, + 505, + 221 + ], + "score": 1.0, + "content": "Karol Gregor, Ivo Danihelka, Andriy Mnih, Charles Blundell, and Daan Wierstra. Deep autoregres-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 219, + 473, + 232 + ], + "spans": [ + { + "bbox": [ + 115, + 219, + 473, + 232 + ], + "score": 1.0, + "content": "sive networks. In International Conference on Machine Learning, pp. 1242–1250, 2014.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 106, + 207, + 505, + 232 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 239, + 504, + 273 + ], + "lines": [ + { + "bbox": [ + 105, + 238, + 505, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 505, + 253 + ], + "score": 1.0, + "content": "Aditya Grover, Eric Wang, Aaron Zweig, and Stefano Ermon. Stochastic optimization of sorting", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 250, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 115, + 250, + 505, + 263 + ], + "score": 1.0, + "content": "networks via continuous relaxations. In International Conference on Learning Representations,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 261, + 142, + 273 + ], + "spans": [ + { + "bbox": [ + 115, + 261, + 142, + 273 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 238, + 505, + 273 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 281, + 504, + 304 + ], + "lines": [ + { + "bbox": [ + 106, + 282, + 504, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 504, + 295 + ], + "score": 1.0, + "content": "Jiatao Gu, Daniel Jiwoong Im, and Victor OK Li. Neural machine translation with Gumbel-greedy", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 292, + 459, + 305 + ], + "spans": [ + { + "bbox": [ + 116, + 292, + 459, + 305 + ], + "score": 1.0, + "content": "decoding. In Thirty-Second AAAI Conference on Artificial Intelligence (AAAI), 2018.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 106, + 282, + 504, + 305 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 312, + 504, + 335 + ], + "lines": [ + { + "bbox": [ + 106, + 312, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 505, + 325 + ], + "score": 1.0, + "content": "Shixiang Gu, Sergey Levine, Ilya Sutskever, and Andriy Mnih. Muprop: Unbiased backpropagation", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 324, + 502, + 336 + ], + "spans": [ + { + "bbox": [ + 116, + 324, + 502, + 336 + ], + "score": 1.0, + "content": "for stochastic neural networks. In International Conference on Learning Representations, 2016.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 106, + 312, + 505, + 336 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 343, + 505, + 377 + ], + "lines": [ + { + "bbox": [ + 106, + 343, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 505, + 357 + ], + "score": 1.0, + "content": "Di He, Yingce Xia, Tao Qin, Liwei Wang, Nenghai Yu, Tie-Yan Liu, and Wei-Ying Ma. Dual", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 353, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 115, + 353, + 505, + 369 + ], + "score": 1.0, + "content": "learning for machine translation. In Advances in Neural Information Processing Systems, pp.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 366, + 181, + 377 + ], + "spans": [ + { + "bbox": [ + 116, + 366, + 181, + 377 + ], + "score": 1.0, + "content": "820–828, 2016.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 106, + 343, + 505, + 377 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 385, + 504, + 408 + ], + "lines": [ + { + "bbox": [ + 106, + 385, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 505, + 399 + ], + "score": 1.0, + "content": "Eric Jang, Shixiang Gu, and Ben Poole. Categorical reparameterization with gumbel-softmax. In", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 397, + 365, + 409 + ], + "spans": [ + { + "bbox": [ + 115, + 397, + 365, + 409 + ], + "score": 1.0, + "content": "International Conference on Learning Representations, 2016.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 106, + 385, + 505, + 409 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 416, + 504, + 440 + ], + "lines": [ + { + "bbox": [ + 105, + 415, + 506, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 506, + 431 + ], + "score": 1.0, + "content": "Carolyn Kim, Ashish Sabharwal, and Stefano Ermon. Exact sampling with integer linear programs", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 117, + 428, + 472, + 440 + ], + "spans": [ + { + "bbox": [ + 117, + 428, + 472, + 440 + ], + "score": 1.0, + "content": "and random perturbations. In Thirtieth AAAI Conference on Artificial Intelligence, 2016.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 415, + 506, + 440 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 448, + 504, + 471 + ], + "lines": [ + { + "bbox": [ + 106, + 448, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 505, + 461 + ], + "score": 1.0, + "content": "Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. In International", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 459, + 310, + 471 + ], + "spans": [ + { + "bbox": [ + 116, + 459, + 310, + 471 + ], + "score": 1.0, + "content": "Conference on Learning Representations, 2015.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 106, + 448, + 505, + 471 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 478, + 504, + 502 + ], + "lines": [ + { + "bbox": [ + 106, + 479, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 505, + 492 + ], + "score": 1.0, + "content": "Diederik P Kingma and Max Welling. Auto-encoding variational Bayes. In International Conference", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 491, + 262, + 502 + ], + "spans": [ + { + "bbox": [ + 115, + 491, + 262, + 502 + ], + "score": 1.0, + "content": "on Learning Representations, 2014.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 106, + 479, + 505, + 502 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 509, + 504, + 533 + ], + "lines": [ + { + "bbox": [ + 106, + 510, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 505, + 523 + ], + "score": 1.0, + "content": "Wouter Kool, Herke van Hoof, and Max Welling. Attention, learn to solve routing problems! In", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 117, + 522, + 369, + 533 + ], + "spans": [ + { + "bbox": [ + 117, + 522, + 369, + 533 + ], + "score": 1.0, + "content": "International Conference on Learning Representations, 2019a.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 106, + 510, + 505, + 533 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 541, + 505, + 575 + ], + "lines": [ + { + "bbox": [ + 106, + 541, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 541, + 505, + 554 + ], + "score": 1.0, + "content": "Wouter Kool, Herke van Hoof, and Max Welling. Buy 4 reinforce samples, get a baseline for", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 117, + 553, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 117, + 553, + 505, + 564 + ], + "score": 1.0, + "content": "free! In Deep Reinforcement Learning Meets Structured Prediction Workshop at the International", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 117, + 563, + 315, + 576 + ], + "spans": [ + { + "bbox": [ + 117, + 563, + 315, + 576 + ], + "score": 1.0, + "content": "Conference on Learning Representations, 2019b.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 106, + 541, + 505, + 576 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 583, + 505, + 617 + ], + "lines": [ + { + "bbox": [ + 106, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "Wouter Kool, Herke Van Hoof, and Max Welling. Stochastic beams and where to find them: The", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 594, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 115, + 594, + 506, + 607 + ], + "score": 1.0, + "content": "gumbel-top-k trick for sampling sequences without replacement. In International Conference on", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 605, + 289, + 617 + ], + "spans": [ + { + "bbox": [ + 116, + 605, + 289, + 617 + ], + "score": 1.0, + "content": "Machine Learning, pp. 3499–3508, 2019c.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35, + "bbox_fs": [ + 106, + 583, + 506, + 617 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 625, + 505, + 659 + ], + "lines": [ + { + "bbox": [ + 105, + 624, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 505, + 639 + ], + "score": 1.0, + "content": "Hugo Larochelle and Iain Murray. The neural autoregressive distribution estimator. In Proceedings", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 636, + 505, + 648 + ], + "spans": [ + { + "bbox": [ + 115, + 636, + 505, + 648 + ], + "score": 1.0, + "content": "of the Fourteenth International Conference on Artificial Intelligence and Statistics, pp. 29–37,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 646, + 143, + 659 + ], + "spans": [ + { + "bbox": [ + 115, + 646, + 143, + 659 + ], + "score": 1.0, + "content": "2011.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 624, + 505, + 659 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 667, + 504, + 701 + ], + "lines": [ + { + "bbox": [ + 105, + 666, + 506, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 681 + ], + "score": 1.0, + "content": "Remi Leblond, Jean-Baptiste Alayrac, Anton Osokin, and Simon Lacoste-Julien. Searnn: Training ´", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 115, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "RNNs with global-local losses. In 6th International Conference on Learning Representations,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 114, + 688, + 143, + 702 + ], + "spans": [ + { + "bbox": [ + 114, + 688, + 143, + 702 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41, + "bbox_fs": [ + 105, + 666, + 506, + 702 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 708, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 708, + 506, + 723 + ], + "score": 1.0, + "content": "EL Lehmann and Henry Scheffe. Completeness, similar regions, and unbiased estimation: Part i. ´", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 720, + 366, + 733 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 366, + 733 + ], + "score": 1.0, + "content": "Sankhya: The Indian Journal of Statistics ¯ , pp. 305–340, 1950.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5, + "bbox_fs": [ + 106, + 708, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 96 + ], + "score": 1.0, + "content": "Chen Liang, Mohammad Norouzi, Jonathan Berant, Quoc V Le, and Ni Lao. Memory augmented", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "policy optimization for program synthesis and semantic parsing. In Advances in Neural Informa-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 104, + 312, + 117 + ], + "spans": [ + { + "bbox": [ + 115, + 104, + 312, + 117 + ], + "score": 1.0, + "content": "tion Processing Systems, pp. 9994–10006, 2018.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 123, + 503, + 157 + ], + "lines": [ + { + "bbox": [ + 105, + 123, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 123, + 505, + 136 + ], + "score": 1.0, + "content": "Runjing Liu, Jeffrey Regier, Nilesh Tripuraneni, Michael Jordan, and Jon Mcauliffe. Rao-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 133, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 115, + 133, + 505, + 147 + ], + "score": 1.0, + "content": "Blackwellized stochastic gradients for discrete distributions. In International Conference on Ma-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 145, + 272, + 158 + ], + "spans": [ + { + "bbox": [ + 116, + 145, + 272, + 158 + ], + "score": 1.0, + "content": "chine Learning, pp. 4023–4031, 2019.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 163, + 503, + 187 + ], + "lines": [ + { + "bbox": [ + 106, + 164, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 164, + 505, + 177 + ], + "score": 1.0, + "content": "Guy Lorberbom, Andreea Gane, Tommi Jaakkola, and Tamir Hazan. Direct optimization through", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 175, + 461, + 187 + ], + "spans": [ + { + "bbox": [ + 115, + 175, + 461, + 187 + ], + "score": 1.0, + "content": "argmax for discrete variational auto-encoder. arXiv preprint arXiv:1806.02867, 2018.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 106, + 194, + 505, + 228 + ], + "lines": [ + { + "bbox": [ + 106, + 194, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 506, + 207 + ], + "score": 1.0, + "content": "Guy Lorberbom, Chris J Maddison, Nicolas Heess, Tamir Hazan, and Daniel Tarlow. Direct", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 205, + 506, + 218 + ], + "spans": [ + { + "bbox": [ + 115, + 205, + 506, + 218 + ], + "score": 1.0, + "content": "policy gradients: Direct optimization of policies in discrete action spaces. arXiv preprint", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 217, + 219, + 227 + ], + "spans": [ + { + "bbox": [ + 115, + 217, + 219, + 227 + ], + "score": 1.0, + "content": "arXiv:1906.06062, 2019.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 235, + 455, + 247 + ], + "lines": [ + { + "bbox": [ + 105, + 234, + 456, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 456, + 248 + ], + "score": 1.0, + "content": "R Duncan Luce. Individual choice behavior: A theoretical analysis. John Wiley, 1959.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 108, + 253, + 502, + 277 + ], + "lines": [ + { + "bbox": [ + 106, + 254, + 504, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 504, + 267 + ], + "score": 1.0, + "content": "Chris J Maddison, Daniel Tarlow, and Tom Minka. A* sampling. In Advances in Neural Information", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 265, + 289, + 277 + ], + "spans": [ + { + "bbox": [ + 115, + 265, + 289, + 277 + ], + "score": 1.0, + "content": "Processing Systems, pp. 3086–3094, 2014.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 106, + 283, + 505, + 317 + ], + "lines": [ + { + "bbox": [ + 106, + 283, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 505, + 297 + ], + "score": 1.0, + "content": "Chris J Maddison, Andriy Mnih, and Yee Whye Teh. The concrete distribution: A continuous re-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 295, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 115, + 295, + 505, + 308 + ], + "score": 1.0, + "content": "laxation of discrete random variables. In International Conference on Learning Representations,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 304, + 143, + 318 + ], + "spans": [ + { + "bbox": [ + 115, + 304, + 143, + 318 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 324, + 504, + 348 + ], + "lines": [ + { + "bbox": [ + 106, + 325, + 505, + 338 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 505, + 338 + ], + "score": 1.0, + "content": "Andriy Mnih and Karol Gregor. Neural variational inference and learning in belief networks. In", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 336, + 401, + 348 + ], + "spans": [ + { + "bbox": [ + 115, + 336, + 401, + 348 + ], + "score": 1.0, + "content": "International Conference on Machine Learning, pp. 1791–1799, 2014.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 106, + 354, + 504, + 378 + ], + "lines": [ + { + "bbox": [ + 106, + 354, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 106, + 354, + 505, + 367 + ], + "score": 1.0, + "content": "Andriy Mnih and Danilo Rezende. Variational inference for Monte Carlo objectives. In International", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 117, + 366, + 345, + 378 + ], + "spans": [ + { + "bbox": [ + 117, + 366, + 345, + 378 + ], + "score": 1.0, + "content": "Conference on Machine Learning, pp. 2188–2196, 2016.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 106, + 385, + 505, + 408 + ], + "lines": [ + { + "bbox": [ + 105, + 384, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 505, + 398 + ], + "score": 1.0, + "content": "MN Murthy. Ordered and unordered estimators in sampling without replacement. Sankhya: The ¯", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 396, + 379, + 408 + ], + "spans": [ + { + "bbox": [ + 115, + 396, + 379, + 408 + ], + "score": 1.0, + "content": "Indian Journal of Statistics (1933-1960), 18(3/4):379–390, 1957.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 106, + 414, + 504, + 448 + ], + "lines": [ + { + "bbox": [ + 105, + 414, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 505, + 428 + ], + "score": 1.0, + "content": "Renato Negrinho, Matthew Gormley, and Geoffrey J Gordon. Learning beam search policies via", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 425, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 115, + 425, + 505, + 439 + ], + "score": 1.0, + "content": "imitation learning. In Advances in Neural Information Processing Systems, pp. 10673–10682,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 435, + 143, + 450 + ], + "spans": [ + { + "bbox": [ + 115, + 435, + 143, + 450 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 455, + 504, + 490 + ], + "lines": [ + { + "bbox": [ + 105, + 454, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 505, + 469 + ], + "score": 1.0, + "content": "Mohammad Norouzi, Samy Bengio, Navdeep Jaitly, Mike Schuster, Yonghui Wu, Dale Schuurmans,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 467, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 116, + 467, + 505, + 479 + ], + "score": 1.0, + "content": "et al. Reward augmented maximum likelihood for neural structured prediction. In Advances In", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 478, + 369, + 490 + ], + "spans": [ + { + "bbox": [ + 116, + 478, + 369, + 490 + ], + "score": 1.0, + "content": "Neural Information Processing Systems, pp. 1723–1731, 2016.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 104, + 496, + 504, + 520 + ], + "lines": [ + { + "bbox": [ + 106, + 497, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 497, + 505, + 509 + ], + "score": 1.0, + "content": "John Paisley, David M Blei, and Michael I Jordan. Variational Bayesian inference with stochastic", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 507, + 443, + 520 + ], + "spans": [ + { + "bbox": [ + 115, + 507, + 443, + 520 + ], + "score": 1.0, + "content": "search. In International Conference on Machine Learning, pp. 1363–1370, 2012.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 105, + 526, + 505, + 550 + ], + "lines": [ + { + "bbox": [ + 105, + 525, + 506, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 506, + 539 + ], + "score": 1.0, + "content": "Robin L Plackett. The analysis of permutations. Journal of the Royal Statistical Society: Series C", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 537, + 287, + 550 + ], + "spans": [ + { + "bbox": [ + 115, + 537, + 287, + 550 + ], + "score": 1.0, + "content": "(Applied Statistics), 24(2):193–202, 1975.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 104, + 556, + 505, + 579 + ], + "lines": [ + { + "bbox": [ + 105, + 555, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 506, + 570 + ], + "score": 1.0, + "content": "Des Raj. Some estimators in sampling with varying probabilities without replacement. Journal of", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 568, + 365, + 579 + ], + "spans": [ + { + "bbox": [ + 116, + 568, + 365, + 579 + ], + "score": 1.0, + "content": "the American Statistical Association, 51(274):269–284, 1956.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 104, + 586, + 505, + 609 + ], + "lines": [ + { + "bbox": [ + 106, + 586, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 506, + 599 + ], + "score": 1.0, + "content": "Rajesh Ranganath, Sean Gerrish, and David Blei. Black box variational inference. In Artificial", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 597, + 304, + 610 + ], + "spans": [ + { + "bbox": [ + 115, + 597, + 304, + 610 + ], + "score": 1.0, + "content": "Intelligence and Statistics, pp. 814–822, 2014.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 107, + 616, + 504, + 650 + ], + "lines": [ + { + "bbox": [ + 105, + 615, + 504, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 504, + 629 + ], + "score": 1.0, + "content": "Marc’Aurelio Ranzato, Sumit Chopra, Michael Auli, and Wojciech Zaremba. Sequence level train-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 627, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 115, + 627, + 505, + 641 + ], + "score": 1.0, + "content": "ing with recurrent neural networks. In International Conference on Learning Representations,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 114, + 637, + 142, + 651 + ], + "spans": [ + { + "bbox": [ + 114, + 637, + 142, + 651 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 108, + 657, + 503, + 692 + ], + "lines": [ + { + "bbox": [ + 106, + 657, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 505, + 670 + ], + "score": 1.0, + "content": "Steven J Rennie, Etienne Marcheret, Youssef Mroueh, Jerret Ross, and Vaibhava Goel. Self-critical", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 669, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 115, + 669, + 505, + 681 + ], + "score": 1.0, + "content": "sequence training for image captioning. In Proceedings of the IEEE Conference on Computer", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 117, + 678, + 336, + 693 + ], + "spans": [ + { + "bbox": [ + 117, + 678, + 336, + 693 + ], + "score": 1.0, + "content": "Vision and Pattern Recognition, pp. 7008–7024, 2017.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 696, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 696, + 505, + 713 + ], + "score": 1.0, + "content": "Danilo Jimenez Rezende, Shakir Mohamed, and Daan Wierstra. Stochastic backpropagation and ap-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "proximate inference in deep generative models. In International Conference on Machine Learn-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 116, + 721, + 225, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 225, + 732 + ], + "score": 1.0, + "content": "ing, pp. 1278–1286, 2014.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44 + } + ], + "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, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 96 + ], + "score": 1.0, + "content": "Chen Liang, Mohammad Norouzi, Jonathan Berant, Quoc V Le, and Ni Lao. Memory augmented", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "policy optimization for program synthesis and semantic parsing. In Advances in Neural Informa-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 104, + 312, + 117 + ], + "spans": [ + { + "bbox": [ + 115, + 104, + 312, + 117 + ], + "score": 1.0, + "content": "tion Processing Systems, pp. 9994–10006, 2018.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 106, + 82, + 505, + 117 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 123, + 503, + 157 + ], + "lines": [ + { + "bbox": [ + 105, + 123, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 123, + 505, + 136 + ], + "score": 1.0, + "content": "Runjing Liu, Jeffrey Regier, Nilesh Tripuraneni, Michael Jordan, and Jon Mcauliffe. Rao-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 133, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 115, + 133, + 505, + 147 + ], + "score": 1.0, + "content": "Blackwellized stochastic gradients for discrete distributions. In International Conference on Ma-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 145, + 272, + 158 + ], + "spans": [ + { + "bbox": [ + 116, + 145, + 272, + 158 + ], + "score": 1.0, + "content": "chine Learning, pp. 4023–4031, 2019.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 123, + 505, + 158 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 163, + 503, + 187 + ], + "lines": [ + { + "bbox": [ + 106, + 164, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 164, + 505, + 177 + ], + "score": 1.0, + "content": "Guy Lorberbom, Andreea Gane, Tommi Jaakkola, and Tamir Hazan. Direct optimization through", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 175, + 461, + 187 + ], + "spans": [ + { + "bbox": [ + 115, + 175, + 461, + 187 + ], + "score": 1.0, + "content": "argmax for discrete variational auto-encoder. arXiv preprint arXiv:1806.02867, 2018.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 106, + 164, + 505, + 187 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 194, + 505, + 228 + ], + "lines": [ + { + "bbox": [ + 106, + 194, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 506, + 207 + ], + "score": 1.0, + "content": "Guy Lorberbom, Chris J Maddison, Nicolas Heess, Tamir Hazan, and Daniel Tarlow. Direct", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 205, + 506, + 218 + ], + "spans": [ + { + "bbox": [ + 115, + 205, + 506, + 218 + ], + "score": 1.0, + "content": "policy gradients: Direct optimization of policies in discrete action spaces. arXiv preprint", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 217, + 219, + 227 + ], + "spans": [ + { + "bbox": [ + 115, + 217, + 219, + 227 + ], + "score": 1.0, + "content": "arXiv:1906.06062, 2019.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 106, + 194, + 506, + 227 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 235, + 455, + 247 + ], + "lines": [ + { + "bbox": [ + 105, + 234, + 456, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 456, + 248 + ], + "score": 1.0, + "content": "R Duncan Luce. Individual choice behavior: A theoretical analysis. John Wiley, 1959.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 234, + 456, + 248 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 253, + 502, + 277 + ], + "lines": [ + { + "bbox": [ + 106, + 254, + 504, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 504, + 267 + ], + "score": 1.0, + "content": "Chris J Maddison, Daniel Tarlow, and Tom Minka. A* sampling. In Advances in Neural Information", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 265, + 289, + 277 + ], + "spans": [ + { + "bbox": [ + 115, + 265, + 289, + 277 + ], + "score": 1.0, + "content": "Processing Systems, pp. 3086–3094, 2014.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 106, + 254, + 504, + 277 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 283, + 505, + 317 + ], + "lines": [ + { + "bbox": [ + 106, + 283, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 505, + 297 + ], + "score": 1.0, + "content": "Chris J Maddison, Andriy Mnih, and Yee Whye Teh. The concrete distribution: A continuous re-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 295, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 115, + 295, + 505, + 308 + ], + "score": 1.0, + "content": "laxation of discrete random variables. In International Conference on Learning Representations,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 304, + 143, + 318 + ], + "spans": [ + { + "bbox": [ + 115, + 304, + 143, + 318 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15, + "bbox_fs": [ + 106, + 283, + 505, + 318 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 324, + 504, + 348 + ], + "lines": [ + { + "bbox": [ + 106, + 325, + 505, + 338 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 505, + 338 + ], + "score": 1.0, + "content": "Andriy Mnih and Karol Gregor. Neural variational inference and learning in belief networks. In", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 336, + 401, + 348 + ], + "spans": [ + { + "bbox": [ + 115, + 336, + 401, + 348 + ], + "score": 1.0, + "content": "International Conference on Machine Learning, pp. 1791–1799, 2014.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 106, + 325, + 505, + 348 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 354, + 504, + 378 + ], + "lines": [ + { + "bbox": [ + 106, + 354, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 106, + 354, + 505, + 367 + ], + "score": 1.0, + "content": "Andriy Mnih and Danilo Rezende. Variational inference for Monte Carlo objectives. In International", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 117, + 366, + 345, + 378 + ], + "spans": [ + { + "bbox": [ + 117, + 366, + 345, + 378 + ], + "score": 1.0, + "content": "Conference on Machine Learning, pp. 2188–2196, 2016.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 106, + 354, + 505, + 378 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 385, + 505, + 408 + ], + "lines": [ + { + "bbox": [ + 105, + 384, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 505, + 398 + ], + "score": 1.0, + "content": "MN Murthy. Ordered and unordered estimators in sampling without replacement. Sankhya: The ¯", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 396, + 379, + 408 + ], + "spans": [ + { + "bbox": [ + 115, + 396, + 379, + 408 + ], + "score": 1.0, + "content": "Indian Journal of Statistics (1933-1960), 18(3/4):379–390, 1957.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 384, + 505, + 408 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 414, + 504, + 448 + ], + "lines": [ + { + "bbox": [ + 105, + 414, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 505, + 428 + ], + "score": 1.0, + "content": "Renato Negrinho, Matthew Gormley, and Geoffrey J Gordon. Learning beam search policies via", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 425, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 115, + 425, + 505, + 439 + ], + "score": 1.0, + "content": "imitation learning. In Advances in Neural Information Processing Systems, pp. 10673–10682,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 435, + 143, + 450 + ], + "spans": [ + { + "bbox": [ + 115, + 435, + 143, + 450 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 414, + 505, + 450 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 455, + 504, + 490 + ], + "lines": [ + { + "bbox": [ + 105, + 454, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 505, + 469 + ], + "score": 1.0, + "content": "Mohammad Norouzi, Samy Bengio, Navdeep Jaitly, Mike Schuster, Yonghui Wu, Dale Schuurmans,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 467, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 116, + 467, + 505, + 479 + ], + "score": 1.0, + "content": "et al. Reward augmented maximum likelihood for neural structured prediction. In Advances In", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 478, + 369, + 490 + ], + "spans": [ + { + "bbox": [ + 116, + 478, + 369, + 490 + ], + "score": 1.0, + "content": "Neural Information Processing Systems, pp. 1723–1731, 2016.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 454, + 505, + 490 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 496, + 504, + 520 + ], + "lines": [ + { + "bbox": [ + 106, + 497, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 497, + 505, + 509 + ], + "score": 1.0, + "content": "John Paisley, David M Blei, and Michael I Jordan. Variational Bayesian inference with stochastic", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 507, + 443, + 520 + ], + "spans": [ + { + "bbox": [ + 115, + 507, + 443, + 520 + ], + "score": 1.0, + "content": "search. In International Conference on Machine Learning, pp. 1363–1370, 2012.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 106, + 497, + 505, + 520 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 526, + 505, + 550 + ], + "lines": [ + { + "bbox": [ + 105, + 525, + 506, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 506, + 539 + ], + "score": 1.0, + "content": "Robin L Plackett. The analysis of permutations. Journal of the Royal Statistical Society: Series C", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 537, + 287, + 550 + ], + "spans": [ + { + "bbox": [ + 115, + 537, + 287, + 550 + ], + "score": 1.0, + "content": "(Applied Statistics), 24(2):193–202, 1975.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 525, + 506, + 550 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 556, + 505, + 579 + ], + "lines": [ + { + "bbox": [ + 105, + 555, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 506, + 570 + ], + "score": 1.0, + "content": "Des Raj. Some estimators in sampling with varying probabilities without replacement. Journal of", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 568, + 365, + 579 + ], + "spans": [ + { + "bbox": [ + 116, + 568, + 365, + 579 + ], + "score": 1.0, + "content": "the American Statistical Association, 51(274):269–284, 1956.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 555, + 506, + 579 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 586, + 505, + 609 + ], + "lines": [ + { + "bbox": [ + 106, + 586, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 506, + 599 + ], + "score": 1.0, + "content": "Rajesh Ranganath, Sean Gerrish, and David Blei. Black box variational inference. In Artificial", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 597, + 304, + 610 + ], + "spans": [ + { + "bbox": [ + 115, + 597, + 304, + 610 + ], + "score": 1.0, + "content": "Intelligence and Statistics, pp. 814–822, 2014.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 106, + 586, + 506, + 610 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 616, + 504, + 650 + ], + "lines": [ + { + "bbox": [ + 105, + 615, + 504, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 504, + 629 + ], + "score": 1.0, + "content": "Marc’Aurelio Ranzato, Sumit Chopra, Michael Auli, and Wojciech Zaremba. Sequence level train-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 627, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 115, + 627, + 505, + 641 + ], + "score": 1.0, + "content": "ing with recurrent neural networks. In International Conference on Learning Representations,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 114, + 637, + 142, + 651 + ], + "spans": [ + { + "bbox": [ + 114, + 637, + 142, + 651 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 615, + 505, + 651 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 657, + 503, + 692 + ], + "lines": [ + { + "bbox": [ + 106, + 657, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 505, + 670 + ], + "score": 1.0, + "content": "Steven J Rennie, Etienne Marcheret, Youssef Mroueh, Jerret Ross, and Vaibhava Goel. Self-critical", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 669, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 115, + 669, + 505, + 681 + ], + "score": 1.0, + "content": "sequence training for image captioning. In Proceedings of the IEEE Conference on Computer", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 117, + 678, + 336, + 693 + ], + "spans": [ + { + "bbox": [ + 117, + 678, + 336, + 693 + ], + "score": 1.0, + "content": "Vision and Pattern Recognition, pp. 7008–7024, 2017.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41, + "bbox_fs": [ + 106, + 657, + 505, + 693 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 696, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 696, + 505, + 713 + ], + "score": 1.0, + "content": "Danilo Jimenez Rezende, Shakir Mohamed, and Daan Wierstra. Stochastic backpropagation and ap-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "proximate inference in deep generative models. In International Conference on Machine Learn-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 116, + 721, + 225, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 225, + 732 + ], + "score": 1.0, + "content": "ing, pp. 1278–1286, 2014.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44, + "bbox_fs": [ + 105, + 696, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "Geoffrey Roeder, Yuhuai Wu, and David K Duvenaud. Sticking the landing: Simple, lower-variance", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "gradient estimators for variational inference. In Advances in Neural Information Processing Sys-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 104, + 230, + 116 + ], + "spans": [ + { + "bbox": [ + 115, + 104, + 230, + 116 + ], + "score": 1.0, + "content": "tems, pp. 6925–6934, 2017.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 105, + 123, + 504, + 146 + ], + "lines": [ + { + "bbox": [ + 106, + 123, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 106, + 123, + 505, + 136 + ], + "score": 1.0, + "content": "Ruslan Salakhutdinov and Iain Murray. On the quantitative analysis of deep belief networks. In", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 134, + 390, + 146 + ], + "spans": [ + { + "bbox": [ + 116, + 134, + 390, + 146 + ], + "score": 1.0, + "content": "International Conference on Machine Learning, pp. 872–879, 2008.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 106, + 153, + 505, + 186 + ], + "lines": [ + { + "bbox": [ + 104, + 151, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 104, + 151, + 505, + 167 + ], + "score": 1.0, + "content": "John Schulman, Nicolas Heess, Theophane Weber, and Pieter Abbeel. Gradient estimation using", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 164, + 505, + 176 + ], + "spans": [ + { + "bbox": [ + 115, + 164, + 505, + 176 + ], + "score": 1.0, + "content": "stochastic computation graphs. In Advances in Neural Information Processing Systems, pp. 3528–", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 173, + 167, + 187 + ], + "spans": [ + { + "bbox": [ + 115, + 173, + 167, + 187 + ], + "score": 1.0, + "content": "3536, 2015.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 193, + 505, + 239 + ], + "lines": [ + { + "bbox": [ + 106, + 194, + 505, + 207 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 505, + 207 + ], + "score": 1.0, + "content": "Shiqi Shen, Yong Cheng, Zhongjun He, Wei He, Hua Wu, Maosong Sun, and Yang Liu. Minimum", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 204, + 506, + 218 + ], + "spans": [ + { + "bbox": [ + 115, + 204, + 506, + 218 + ], + "score": 1.0, + "content": "risk training for neural machine translation. In Proceedings of the 54th Annual Meeting of the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 216, + 506, + 229 + ], + "spans": [ + { + "bbox": [ + 115, + 216, + 506, + 229 + ], + "score": 1.0, + "content": "Association for Computational Linguistics (Volume 1: Long Papers), volume 1, pp. 1683–1692,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 226, + 142, + 238 + ], + "spans": [ + { + "bbox": [ + 115, + 226, + 142, + 238 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 105, + 245, + 504, + 258 + ], + "lines": [ + { + "bbox": [ + 105, + 244, + 505, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 505, + 259 + ], + "score": 1.0, + "content": "Richard S Sutton and Andrew G Barto. Reinforcement learning: An introduction. MIT press, 2018.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 264, + 505, + 298 + ], + "lines": [ + { + "bbox": [ + 106, + 265, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 265, + 505, + 277 + ], + "score": 1.0, + "content": "Michalis K Titsias and Miguel Lazaro-Gredilla. Local expectation gradients for black box varia- ´", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 276, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 115, + 276, + 505, + 288 + ], + "score": 1.0, + "content": "tional inference. In Advances in Neural Information Processing Systems-Volume 2, pp. 2638–", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 286, + 166, + 298 + ], + "spans": [ + { + "bbox": [ + 115, + 286, + 166, + 298 + ], + "score": 1.0, + "content": "2646, 2015.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 305, + 505, + 339 + ], + "lines": [ + { + "bbox": [ + 106, + 305, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 505, + 318 + ], + "score": 1.0, + "content": "George Tucker, Andriy Mnih, Chris J Maddison, John Lawson, and Jascha Sohl-Dickstein. Rebar:", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 317, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 115, + 317, + 505, + 329 + ], + "score": 1.0, + "content": "Low-variance, unbiased gradient estimates for discrete latent variable models. In Advances in", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 327, + 370, + 341 + ], + "spans": [ + { + "bbox": [ + 115, + 327, + 370, + 341 + ], + "score": 1.0, + "content": "Neural Information Processing Systems, pp. 2627–2636, 2017.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 346, + 505, + 380 + ], + "lines": [ + { + "bbox": [ + 105, + 344, + 506, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 166, + 359 + ], + "score": 1.0, + "content": "Tim Vieira.", + "type": "text" + }, + { + "bbox": [ + 200, + 345, + 506, + 359 + ], + "score": 1.0, + "content": "Gumbel-max trick and weighted reservoir sampling, 2014.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 357, + 504, + 370 + ], + "spans": [ + { + "bbox": [ + 115, + 357, + 140, + 369 + ], + "score": 1.0, + "content": "URL", + "type": "text" + }, + { + "bbox": [ + 209, + 357, + 504, + 370 + ], + "score": 1.0, + "content": "https://timvieira.github.io/blog/post/2014/08/01/", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 368, + 417, + 381 + ], + "spans": [ + { + "bbox": [ + 116, + 368, + 417, + 381 + ], + "score": 1.0, + "content": "gumbel-max-trick-and-weighted-reservoir-sampling/.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 108, + 387, + 502, + 410 + ], + "lines": [ + { + "bbox": [ + 106, + 387, + 504, + 399 + ], + "spans": [ + { + "bbox": [ + 106, + 387, + 504, + 399 + ], + "score": 1.0, + "content": "Tim Vieira. Estimating means in a finite universe, 2017. URL https://timvieira.github.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 117, + 398, + 495, + 410 + ], + "spans": [ + { + "bbox": [ + 117, + 398, + 495, + 410 + ], + "score": 1.0, + "content": "io/blog/post/2017/07/03/estimating-means-in-a-finite-universe/.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 106, + 417, + 504, + 440 + ], + "lines": [ + { + "bbox": [ + 106, + 417, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 417, + 506, + 430 + ], + "score": 1.0, + "content": "Oriol Vinyals, Meire Fortunato, and Navdeep Jaitly. Pointer networks. In Advances in Neural", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 428, + 339, + 441 + ], + "spans": [ + { + "bbox": [ + 115, + 428, + 339, + 441 + ], + "score": 1.0, + "content": "Information Processing Systems, pp. 2692–2700, 2015.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 105, + 447, + 504, + 470 + ], + "lines": [ + { + "bbox": [ + 106, + 447, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 447, + 505, + 460 + ], + "score": 1.0, + "content": "Ronald J Williams. Simple statistical gradient-following algorithms for connectionist reinforcement", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 458, + 324, + 471 + ], + "spans": [ + { + "bbox": [ + 116, + 458, + 324, + 471 + ], + "score": 1.0, + "content": "learning. Machine learning, 8(3-4):229–256, 1992.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 105, + 477, + 504, + 510 + ], + "lines": [ + { + "bbox": [ + 105, + 476, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 505, + 489 + ], + "score": 1.0, + "content": "John I Yellott. The relationship between Luce’s choice axiom, Thurstone’s theory of comparative", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 487, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 115, + 487, + 505, + 501 + ], + "score": 1.0, + "content": "judgment, and the double exponential distribution. Journal of Mathematical Psychology, 15(2):", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 117, + 499, + 181, + 510 + ], + "spans": [ + { + "bbox": [ + 117, + 499, + 181, + 510 + ], + "score": 1.0, + "content": "109–144, 1977.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 517, + 504, + 551 + ], + "lines": [ + { + "bbox": [ + 105, + 516, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 505, + 531 + ], + "score": 1.0, + "content": "Mingzhang Yin, Yuguang Yue, and Mingyuan Zhou. Arsm: Augment-reinforce-swap-merge esti-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 529, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 116, + 529, + 505, + 541 + ], + "score": 1.0, + "content": "mator for gradient backpropagation through categorical variables. In International Conference on", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 539, + 285, + 553 + ], + "spans": [ + { + "bbox": [ + 115, + 539, + 285, + 553 + ], + "score": 1.0, + "content": "Machine Learning, pp. 7095–7104, 2019.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + } + ], + "page_idx": 12, + "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": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "Geoffrey Roeder, Yuhuai Wu, and David K Duvenaud. Sticking the landing: Simple, lower-variance", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "gradient estimators for variational inference. In Advances in Neural Information Processing Sys-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 104, + 230, + 116 + ], + "spans": [ + { + "bbox": [ + 115, + 104, + 230, + 116 + ], + "score": 1.0, + "content": "tems, pp. 6925–6934, 2017.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 106, + 81, + 505, + 116 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 123, + 504, + 146 + ], + "lines": [ + { + "bbox": [ + 106, + 123, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 106, + 123, + 505, + 136 + ], + "score": 1.0, + "content": "Ruslan Salakhutdinov and Iain Murray. On the quantitative analysis of deep belief networks. In", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 134, + 390, + 146 + ], + "spans": [ + { + "bbox": [ + 116, + 134, + 390, + 146 + ], + "score": 1.0, + "content": "International Conference on Machine Learning, pp. 872–879, 2008.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 106, + 123, + 505, + 146 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 153, + 505, + 186 + ], + "lines": [ + { + "bbox": [ + 104, + 151, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 104, + 151, + 505, + 167 + ], + "score": 1.0, + "content": "John Schulman, Nicolas Heess, Theophane Weber, and Pieter Abbeel. Gradient estimation using", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 164, + 505, + 176 + ], + "spans": [ + { + "bbox": [ + 115, + 164, + 505, + 176 + ], + "score": 1.0, + "content": "stochastic computation graphs. In Advances in Neural Information Processing Systems, pp. 3528–", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 173, + 167, + 187 + ], + "spans": [ + { + "bbox": [ + 115, + 173, + 167, + 187 + ], + "score": 1.0, + "content": "3536, 2015.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 104, + 151, + 505, + 187 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 193, + 505, + 239 + ], + "lines": [ + { + "bbox": [ + 106, + 194, + 505, + 207 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 505, + 207 + ], + "score": 1.0, + "content": "Shiqi Shen, Yong Cheng, Zhongjun He, Wei He, Hua Wu, Maosong Sun, and Yang Liu. Minimum", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 204, + 506, + 218 + ], + "spans": [ + { + "bbox": [ + 115, + 204, + 506, + 218 + ], + "score": 1.0, + "content": "risk training for neural machine translation. In Proceedings of the 54th Annual Meeting of the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 216, + 506, + 229 + ], + "spans": [ + { + "bbox": [ + 115, + 216, + 506, + 229 + ], + "score": 1.0, + "content": "Association for Computational Linguistics (Volume 1: Long Papers), volume 1, pp. 1683–1692,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 226, + 142, + 238 + ], + "spans": [ + { + "bbox": [ + 115, + 226, + 142, + 238 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5, + "bbox_fs": [ + 106, + 194, + 506, + 238 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 245, + 504, + 258 + ], + "lines": [ + { + "bbox": [ + 105, + 244, + 505, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 505, + 259 + ], + "score": 1.0, + "content": "Richard S Sutton and Andrew G Barto. Reinforcement learning: An introduction. MIT press, 2018.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 244, + 505, + 259 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 264, + 505, + 298 + ], + "lines": [ + { + "bbox": [ + 106, + 265, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 265, + 505, + 277 + ], + "score": 1.0, + "content": "Michalis K Titsias and Miguel Lazaro-Gredilla. Local expectation gradients for black box varia- ´", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 276, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 115, + 276, + 505, + 288 + ], + "score": 1.0, + "content": "tional inference. In Advances in Neural Information Processing Systems-Volume 2, pp. 2638–", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 286, + 166, + 298 + ], + "spans": [ + { + "bbox": [ + 115, + 286, + 166, + 298 + ], + "score": 1.0, + "content": "2646, 2015.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14, + "bbox_fs": [ + 106, + 265, + 505, + 298 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 305, + 505, + 339 + ], + "lines": [ + { + "bbox": [ + 106, + 305, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 505, + 318 + ], + "score": 1.0, + "content": "George Tucker, Andriy Mnih, Chris J Maddison, John Lawson, and Jascha Sohl-Dickstein. Rebar:", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 317, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 115, + 317, + 505, + 329 + ], + "score": 1.0, + "content": "Low-variance, unbiased gradient estimates for discrete latent variable models. In Advances in", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 327, + 370, + 341 + ], + "spans": [ + { + "bbox": [ + 115, + 327, + 370, + 341 + ], + "score": 1.0, + "content": "Neural Information Processing Systems, pp. 2627–2636, 2017.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17, + "bbox_fs": [ + 106, + 305, + 505, + 341 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 346, + 505, + 380 + ], + "lines": [ + { + "bbox": [ + 105, + 344, + 506, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 166, + 359 + ], + "score": 1.0, + "content": "Tim Vieira.", + "type": "text" + }, + { + "bbox": [ + 200, + 345, + 506, + 359 + ], + "score": 1.0, + "content": "Gumbel-max trick and weighted reservoir sampling, 2014.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 357, + 504, + 370 + ], + "spans": [ + { + "bbox": [ + 115, + 357, + 140, + 369 + ], + "score": 1.0, + "content": "URL", + "type": "text" + }, + { + "bbox": [ + 209, + 357, + 504, + 370 + ], + "score": 1.0, + "content": "https://timvieira.github.io/blog/post/2014/08/01/", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 368, + 417, + 381 + ], + "spans": [ + { + "bbox": [ + 116, + 368, + 417, + 381 + ], + "score": 1.0, + "content": "gumbel-max-trick-and-weighted-reservoir-sampling/.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 344, + 506, + 381 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 387, + 502, + 410 + ], + "lines": [ + { + "bbox": [ + 106, + 387, + 504, + 399 + ], + "spans": [ + { + "bbox": [ + 106, + 387, + 504, + 399 + ], + "score": 1.0, + "content": "Tim Vieira. Estimating means in a finite universe, 2017. URL https://timvieira.github.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 117, + 398, + 495, + 410 + ], + "spans": [ + { + "bbox": [ + 117, + 398, + 495, + 410 + ], + "score": 1.0, + "content": "io/blog/post/2017/07/03/estimating-means-in-a-finite-universe/.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 106, + 387, + 504, + 410 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 417, + 504, + 440 + ], + "lines": [ + { + "bbox": [ + 106, + 417, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 417, + 506, + 430 + ], + "score": 1.0, + "content": "Oriol Vinyals, Meire Fortunato, and Navdeep Jaitly. Pointer networks. In Advances in Neural", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 428, + 339, + 441 + ], + "spans": [ + { + "bbox": [ + 115, + 428, + 339, + 441 + ], + "score": 1.0, + "content": "Information Processing Systems, pp. 2692–2700, 2015.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 106, + 417, + 506, + 441 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 447, + 504, + 470 + ], + "lines": [ + { + "bbox": [ + 106, + 447, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 447, + 505, + 460 + ], + "score": 1.0, + "content": "Ronald J Williams. Simple statistical gradient-following algorithms for connectionist reinforcement", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 458, + 324, + 471 + ], + "spans": [ + { + "bbox": [ + 116, + 458, + 324, + 471 + ], + "score": 1.0, + "content": "learning. Machine learning, 8(3-4):229–256, 1992.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 106, + 447, + 505, + 471 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 477, + 504, + 510 + ], + "lines": [ + { + "bbox": [ + 105, + 476, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 505, + 489 + ], + "score": 1.0, + "content": "John I Yellott. The relationship between Luce’s choice axiom, Thurstone’s theory of comparative", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 487, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 115, + 487, + 505, + 501 + ], + "score": 1.0, + "content": "judgment, and the double exponential distribution. Journal of Mathematical Psychology, 15(2):", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 117, + 499, + 181, + 510 + ], + "spans": [ + { + "bbox": [ + 117, + 499, + 181, + 510 + ], + "score": 1.0, + "content": "109–144, 1977.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 476, + 505, + 510 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 517, + 504, + 551 + ], + "lines": [ + { + "bbox": [ + 105, + 516, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 505, + 531 + ], + "score": 1.0, + "content": "Mingzhang Yin, Yuguang Yue, and Mingyuan Zhou. Arsm: Augment-reinforce-swap-merge esti-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 529, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 116, + 529, + 505, + 541 + ], + "score": 1.0, + "content": "mator for gradient backpropagation through categorical variables. In International Conference on", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 539, + 285, + 553 + ], + "spans": [ + { + "bbox": [ + 115, + 539, + 285, + 553 + ], + "score": 1.0, + "content": "Machine Learning, pp. 7095–7104, 2019.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 516, + 505, + 553 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 183, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 185, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 185, + 97 + ], + "score": 1.0, + "content": "A NOTATION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 105, + 468, + 118 + ], + "lines": [ + { + "bbox": [ + 105, + 105, + 469, + 120 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 469, + 120 + ], + "score": 1.0, + "content": "Throughout this appendix we will use the following notation from Maddison et al. (2014):", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "interline_equation", + "bbox": [ + 242, + 122, + 369, + 166 + ], + "lines": [ + { + "bbox": [ + 242, + 122, + 369, + 166 + ], + "spans": [ + { + "bbox": [ + 242, + 122, + 369, + 166 + ], + "score": 0.93, + "content": "\\begin{array} { l } { { e _ { \\phi } ( g ) = \\exp ( - g + \\phi ) } } \\\\ { { F _ { \\phi } ( g ) = \\exp ( - \\exp ( - g + \\phi ) ) } } \\\\ { { f _ { \\phi } ( g ) = e _ { \\phi } ( g ) F _ { \\phi } ( g ) . } } \\end{array}", + "type": "interline_equation", + "image_path": "821cbe0666f811f0f17fdbd24322d0cfd6934666b30ce92d9f2fdccfc37edb08.jpg" + } + ] + } + ], + "index": 2.5, + "virtual_lines": [ + { + "bbox": [ + 242, + 122, + 369, + 144.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 242, + 144.0, + 369, + 166.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 168, + 504, + 192 + ], + "lines": [ + { + "bbox": [ + 106, + 168, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 106, + 168, + 173, + 182 + ], + "score": 1.0, + "content": "This means that", + "type": "text" + }, + { + "bbox": [ + 173, + 169, + 198, + 182 + ], + "score": 0.93, + "content": "F _ { \\phi } ( g )", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 168, + 264, + 182 + ], + "score": 1.0, + "content": "is the CDF and", + "type": "text" + }, + { + "bbox": [ + 264, + 169, + 288, + 182 + ], + "score": 0.93, + "content": "f _ { \\phi } ( g )", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 168, + 384, + 182 + ], + "score": 1.0, + "content": "the PDF of the Gumbel", + "type": "text" + }, + { + "bbox": [ + 384, + 169, + 398, + 181 + ], + "score": 0.8, + "content": "\\left( \\phi \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 168, + 505, + 182 + ], + "score": 1.0, + "content": "distribution. Additionally", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 180, + 316, + 193 + ], + "spans": [ + { + "bbox": [ + 106, + 180, + 316, + 193 + ], + "score": 1.0, + "content": "we will use the identities by Maddison et al. (2014):", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 195, + 405, + 243 + ], + "lines": [ + { + "bbox": [ + 205, + 195, + 405, + 243 + ], + "spans": [ + { + "bbox": [ + 205, + 195, + 405, + 243 + ], + "score": 0.93, + "content": "\\begin{array} { c } { { F _ { \\phi } ( g ) F _ { \\gamma } ( g ) = F _ { \\log ( \\exp ( \\phi ) + \\exp ( \\gamma ) ) } ( g ) } } \\\\ { { \\displaystyle \\int _ { g = a } ^ { b } e _ { \\gamma } ( g ) F _ { \\phi } ( g ) \\partial g = ( F _ { \\phi } ( b ) - F _ { \\phi } ( a ) ) \\frac { \\exp ( \\gamma ) } { \\exp ( \\phi ) } . } } \\end{array}", + "type": "interline_equation", + "image_path": "e3101e89cd302781233ce9a26c02ed7b482a567d9cb9a5e50a37ae7ff37a8a08.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 205, + 195, + 405, + 211.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 205, + 211.0, + 405, + 227.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 205, + 227.0, + 405, + 243.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 252, + 473, + 264 + ], + "lines": [ + { + "bbox": [ + 105, + 251, + 474, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 474, + 266 + ], + "score": 1.0, + "content": "Also, we will use the following notation, definitions and identities (see Kool et al. (2019c)):", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "interline_equation", + "bbox": [ + 168, + 268, + 442, + 381 + ], + "lines": [ + { + "bbox": [ + 168, + 268, + 442, + 381 + ], + "spans": [ + { + "bbox": [ + 168, + 268, + 442, + 381 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\displaystyle \\phi _ { i } = \\log p ( i ) } \\\\ & { \\displaystyle \\phi _ { S } = \\log \\displaystyle \\sum _ { i \\in S } p ( i ) = \\log \\sum _ { i \\in S } \\exp \\phi _ { i } } \\\\ & { \\displaystyle \\phi _ { D \\setminus S } = \\log \\sum _ { i \\in D \\setminus S } p ( i ) = \\log \\left( 1 - \\sum _ { i \\in S } p ( i ) \\right) = \\log ( 1 - \\exp ( \\phi _ { S } ) ) } \\\\ & { \\displaystyle { G _ { \\phi _ { i } } \\sim \\mathrm { G u m b e l } ( \\phi _ { i } ) } } \\\\ & { \\displaystyle { G _ { \\phi _ { S } } = \\sum _ { i \\in S } G _ { \\phi _ { i } } \\sim \\mathrm { G u m b e l } ( \\phi _ { S } ) } } \\end{array}", + "type": "interline_equation", + "image_path": "74b04d313c6fa9193ba14f401130ebf9ca9cdbf24b7db98e9027266e865313ae.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 168, + 268, + 442, + 305.6666666666667 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 168, + 305.6666666666667, + 442, + 343.33333333333337 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 168, + 343.33333333333337, + 442, + 381.00000000000006 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 385, + 326, + 397 + ], + "lines": [ + { + "bbox": [ + 105, + 385, + 327, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 327, + 399 + ], + "score": 1.0, + "content": "For a proof of equation 30, see Maddison et al. (2014).", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "interline_equation", + "bbox": [ + 223, + 411, + 392, + 428 + ], + "lines": [ + { + "bbox": [ + 223, + 411, + 392, + 428 + ], + "spans": [ + { + "bbox": [ + 223, + 411, + 392, + 428 + ], + "score": 0.55, + "content": "p ( S ^ { k } ) , p ^ { D \\setminus C } ( S \\setminus C ) \\ \\mathrm { A N D } \\ R ( S ^ { k } , s )", + "type": "interline_equation", + "image_path": "ebdb2bbb39718391052a7e6fd23cc99c971cdbc1773a9535484decfa338d1f69.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 223, + 411, + 392, + 428 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 438, + 505, + 499 + ], + "lines": [ + { + "bbox": [ + 105, + 438, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 203, + 452 + ], + "score": 1.0, + "content": "We can sample the set", + "type": "text" + }, + { + "bbox": [ + 204, + 439, + 216, + 450 + ], + "score": 0.88, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 438, + 461, + 452 + ], + "score": 1.0, + "content": "from the Plackett-Luce distribution using the Gumbel-Top-", + "type": "text" + }, + { + "bbox": [ + 462, + 440, + 468, + 450 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 438, + 505, + 452 + ], + "score": 1.0, + "content": "trick by", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 450, + 504, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 215, + 464 + ], + "score": 1.0, + "content": "drawing Gumbel variables", + "type": "text" + }, + { + "bbox": [ + 216, + 451, + 297, + 463 + ], + "score": 0.89, + "content": "G _ { \\phi _ { i } } \\sim \\mathrm { G u m b e l } ( \\phi _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 450, + 497, + 464 + ], + "score": 1.0, + "content": "for each element and returning the indices of the", + "type": "text" + }, + { + "bbox": [ + 497, + 451, + 504, + 460 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 461, + 505, + 476 + ], + "spans": [ + { + "bbox": [ + 104, + 461, + 416, + 476 + ], + "score": 1.0, + "content": "largest Gumbels. If we ignore the ordering, this means we will obtain the set", + "type": "text" + }, + { + "bbox": [ + 416, + 462, + 429, + 473 + ], + "score": 0.88, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 461, + 439, + 476 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 439, + 462, + 505, + 475 + ], + "score": 0.72, + "content": "\\mathrm { m i n } _ { i \\in S ^ { k } } G _ { \\phi _ { i } } >", + "type": "inline_equation" + } + ], + "index": 17 + }, + { + "bbox": [ + 107, + 474, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 107, + 474, + 173, + 487 + ], + "score": 0.89, + "content": "\\operatorname* { m a x } _ { i \\in D \\setminus S ^ { k } } G _ { \\phi _ { i } }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 474, + 278, + 486 + ], + "score": 1.0, + "content": ". Omitting the superscript", + "type": "text" + }, + { + "bbox": [ + 279, + 474, + 285, + 484 + ], + "score": 0.83, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 474, + 506, + 486 + ], + "score": 1.0, + "content": "for clarity, we can use the Gumbel-Max trick, i.e. that", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 482, + 452, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 486, + 275, + 500 + ], + "score": 0.89, + "content": "G _ { \\phi _ { D \\setminus S } } = \\operatorname* { m a x } _ { i \\notin S } G _ { \\phi _ { i } } \\sim \\mathrm { G u m b e l } ( \\phi _ { D \\setminus S } )", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 482, + 417, + 503 + ], + "score": 1.0, + "content": "(equation 30) and marginalize over", + "type": "text" + }, + { + "bbox": [ + 418, + 486, + 446, + 500 + ], + "score": 0.93, + "content": "G _ { \\phi _ { D \\setminus S } }", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 482, + 452, + 503 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17 + }, + { + "type": "interline_equation", + "bbox": [ + 169, + 504, + 439, + 635 + ], + "lines": [ + { + "bbox": [ + 169, + 504, + 439, + 635 + ], + "spans": [ + { + "bbox": [ + 169, + 504, + 439, + 635 + ], + "score": 0.97, + "content": "\\begin{array} { r l } { \\displaystyle p ( S ) = P ( \\underset { i \\in S } { \\operatorname* { m i n } } G _ { \\phi _ { i } \\setminus } \\ G _ { \\phi _ { D \\setminus S } } ) } \\\\ { \\displaystyle } & { = P ( G _ { \\phi _ { i } } > G _ { \\phi _ { D \\setminus S } } , i \\in S ) } \\\\ { \\displaystyle } & { = \\int _ { g _ { \\phi _ { D \\setminus S } } = - \\infty } ^ { \\infty } f _ { \\phi _ { D \\setminus S } } ( g _ { \\phi _ { D \\setminus S } } ) P ( G _ { \\phi _ { i } } > g _ { \\phi _ { D \\setminus S } } , i \\in S ) \\partial g _ { \\phi _ { D \\setminus S } } } \\\\ { \\displaystyle } & { = \\int _ { g _ { \\phi _ { D \\setminus S } } = - \\infty } ^ { \\infty } f _ { \\phi _ { D \\setminus S } } ( g _ { \\phi _ { D \\setminus S } } ) \\prod _ { i \\in S } \\left( 1 - F _ { \\phi _ { \\star } } ( g _ { \\phi _ { D \\setminus S } } ) \\right) \\partial g _ { \\phi _ { D \\setminus S } } } \\\\ { \\displaystyle } & { = \\int _ { u = 0 } ^ { 1 } \\prod _ { i \\in S } \\left( 1 - F _ { \\phi _ { i } } \\left( F _ { \\phi _ { D \\setminus S } } ^ { - 1 } ( u ) \\right) \\right) \\partial u } \\end{array}", + "type": "interline_equation", + "image_path": "806f97cd9da1c0ad1baa8ecdc50026ff7932d71042f7f521a043bd018768c996.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 169, + 504, + 439, + 547.6666666666666 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 169, + 547.6666666666666, + 439, + 591.3333333333333 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 169, + 591.3333333333333, + 439, + 634.9999999999999 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 640, + 504, + 674 + ], + "lines": [ + { + "bbox": [ + 105, + 639, + 506, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 277, + 655 + ], + "score": 1.0, + "content": "Here we have used a change of variables", + "type": "text" + }, + { + "bbox": [ + 278, + 640, + 358, + 654 + ], + "score": 0.93, + "content": "u = F _ { \\phi _ { D \\setminus S } } ( g _ { \\phi _ { D \\setminus S } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 639, + 506, + 655 + ], + "score": 1.0, + "content": ". This expression can be efficiently", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 651, + 504, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 504, + 664 + ], + "score": 1.0, + "content": "numerically integrated (although another change of variables may be required for numerical stability", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 661, + 231, + 675 + ], + "spans": [ + { + "bbox": [ + 106, + 661, + 216, + 675 + ], + "score": 1.0, + "content": "depending on the values of", + "type": "text" + }, + { + "bbox": [ + 217, + 663, + 225, + 674 + ], + "score": 0.83, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 661, + 231, + 675 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 685, + 504, + 707 + ], + "lines": [ + { + "bbox": [ + 104, + 683, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 104, + 683, + 204, + 700 + ], + "score": 1.0, + "content": "Exact computation in", + "type": "text" + }, + { + "bbox": [ + 204, + 685, + 230, + 698 + ], + "score": 0.92, + "content": "O ( 2 ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 683, + 506, + 700 + ], + "score": 1.0, + "content": ". The integral in equation 31 can be computed exactly using the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 694, + 140, + 711 + ], + "spans": [ + { + "bbox": [ + 104, + 694, + 140, + 711 + ], + "score": 1.0, + "content": "identity", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "interline_equation", + "bbox": [ + 216, + 706, + 393, + 735 + ], + "lines": [ + { + "bbox": [ + 216, + 706, + 393, + 735 + ], + "spans": [ + { + "bbox": [ + 216, + 706, + 393, + 735 + ], + "score": 0.93, + "content": "\\prod _ { i \\in S } ( a _ { i } - b _ { i } ) = \\sum _ { C \\subseteq S } ( - 1 ) ^ { | C | } \\prod _ { i \\in C } b _ { i } \\prod _ { i \\in S \\setminus C } a _ { i }", + "type": "interline_equation", + "image_path": "dd04b747902262790d7c58d260268b6984c64f5106491fbb6d615230c69419e4.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 216, + 706, + 393, + 735 + ], + "spans": [], + "index": 28 + } + ] + } + ], + "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, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "14", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 183, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 185, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 185, + 97 + ], + "score": 1.0, + "content": "A NOTATION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 105, + 468, + 118 + ], + "lines": [ + { + "bbox": [ + 105, + 105, + 469, + 120 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 469, + 120 + ], + "score": 1.0, + "content": "Throughout this appendix we will use the following notation from Maddison et al. (2014):", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 105, + 469, + 120 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 242, + 122, + 369, + 166 + ], + "lines": [ + { + "bbox": [ + 242, + 122, + 369, + 166 + ], + "spans": [ + { + "bbox": [ + 242, + 122, + 369, + 166 + ], + "score": 0.93, + "content": "\\begin{array} { l } { { e _ { \\phi } ( g ) = \\exp ( - g + \\phi ) } } \\\\ { { F _ { \\phi } ( g ) = \\exp ( - \\exp ( - g + \\phi ) ) } } \\\\ { { f _ { \\phi } ( g ) = e _ { \\phi } ( g ) F _ { \\phi } ( g ) . } } \\end{array}", + "type": "interline_equation", + "image_path": "821cbe0666f811f0f17fdbd24322d0cfd6934666b30ce92d9f2fdccfc37edb08.jpg" + } + ] + } + ], + "index": 2.5, + "virtual_lines": [ + { + "bbox": [ + 242, + 122, + 369, + 144.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 242, + 144.0, + 369, + 166.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 168, + 504, + 192 + ], + "lines": [ + { + "bbox": [ + 106, + 168, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 106, + 168, + 173, + 182 + ], + "score": 1.0, + "content": "This means that", + "type": "text" + }, + { + "bbox": [ + 173, + 169, + 198, + 182 + ], + "score": 0.93, + "content": "F _ { \\phi } ( g )", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 168, + 264, + 182 + ], + "score": 1.0, + "content": "is the CDF and", + "type": "text" + }, + { + "bbox": [ + 264, + 169, + 288, + 182 + ], + "score": 0.93, + "content": "f _ { \\phi } ( g )", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 168, + 384, + 182 + ], + "score": 1.0, + "content": "the PDF of the Gumbel", + "type": "text" + }, + { + "bbox": [ + 384, + 169, + 398, + 181 + ], + "score": 0.8, + "content": "\\left( \\phi \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 168, + 505, + 182 + ], + "score": 1.0, + "content": "distribution. Additionally", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 180, + 316, + 193 + ], + "spans": [ + { + "bbox": [ + 106, + 180, + 316, + 193 + ], + "score": 1.0, + "content": "we will use the identities by Maddison et al. (2014):", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 106, + 168, + 505, + 193 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 195, + 405, + 243 + ], + "lines": [ + { + "bbox": [ + 205, + 195, + 405, + 243 + ], + "spans": [ + { + "bbox": [ + 205, + 195, + 405, + 243 + ], + "score": 0.93, + "content": "\\begin{array} { c } { { F _ { \\phi } ( g ) F _ { \\gamma } ( g ) = F _ { \\log ( \\exp ( \\phi ) + \\exp ( \\gamma ) ) } ( g ) } } \\\\ { { \\displaystyle \\int _ { g = a } ^ { b } e _ { \\gamma } ( g ) F _ { \\phi } ( g ) \\partial g = ( F _ { \\phi } ( b ) - F _ { \\phi } ( a ) ) \\frac { \\exp ( \\gamma ) } { \\exp ( \\phi ) } . } } \\end{array}", + "type": "interline_equation", + "image_path": "e3101e89cd302781233ce9a26c02ed7b482a567d9cb9a5e50a37ae7ff37a8a08.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 205, + 195, + 405, + 211.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 205, + 211.0, + 405, + 227.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 205, + 227.0, + 405, + 243.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 252, + 473, + 264 + ], + "lines": [ + { + "bbox": [ + 105, + 251, + 474, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 474, + 266 + ], + "score": 1.0, + "content": "Also, we will use the following notation, definitions and identities (see Kool et al. (2019c)):", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 251, + 474, + 266 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 168, + 268, + 442, + 381 + ], + "lines": [ + { + "bbox": [ + 168, + 268, + 442, + 381 + ], + "spans": [ + { + "bbox": [ + 168, + 268, + 442, + 381 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\displaystyle \\phi _ { i } = \\log p ( i ) } \\\\ & { \\displaystyle \\phi _ { S } = \\log \\displaystyle \\sum _ { i \\in S } p ( i ) = \\log \\sum _ { i \\in S } \\exp \\phi _ { i } } \\\\ & { \\displaystyle \\phi _ { D \\setminus S } = \\log \\sum _ { i \\in D \\setminus S } p ( i ) = \\log \\left( 1 - \\sum _ { i \\in S } p ( i ) \\right) = \\log ( 1 - \\exp ( \\phi _ { S } ) ) } \\\\ & { \\displaystyle { G _ { \\phi _ { i } } \\sim \\mathrm { G u m b e l } ( \\phi _ { i } ) } } \\\\ & { \\displaystyle { G _ { \\phi _ { S } } = \\sum _ { i \\in S } G _ { \\phi _ { i } } \\sim \\mathrm { G u m b e l } ( \\phi _ { S } ) } } \\end{array}", + "type": "interline_equation", + "image_path": "74b04d313c6fa9193ba14f401130ebf9ca9cdbf24b7db98e9027266e865313ae.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 168, + 268, + 442, + 305.6666666666667 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 168, + 305.6666666666667, + 442, + 343.33333333333337 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 168, + 343.33333333333337, + 442, + 381.00000000000006 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 385, + 326, + 397 + ], + "lines": [ + { + "bbox": [ + 105, + 385, + 327, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 327, + 399 + ], + "score": 1.0, + "content": "For a proof of equation 30, see Maddison et al. (2014).", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 385, + 327, + 399 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 223, + 411, + 392, + 428 + ], + "lines": [ + { + "bbox": [ + 223, + 411, + 392, + 428 + ], + "spans": [ + { + "bbox": [ + 223, + 411, + 392, + 428 + ], + "score": 0.55, + "content": "p ( S ^ { k } ) , p ^ { D \\setminus C } ( S \\setminus C ) \\ \\mathrm { A N D } \\ R ( S ^ { k } , s )", + "type": "interline_equation", + "image_path": "ebdb2bbb39718391052a7e6fd23cc99c971cdbc1773a9535484decfa338d1f69.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 223, + 411, + 392, + 428 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 438, + 505, + 499 + ], + "lines": [ + { + "bbox": [ + 105, + 438, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 203, + 452 + ], + "score": 1.0, + "content": "We can sample the set", + "type": "text" + }, + { + "bbox": [ + 204, + 439, + 216, + 450 + ], + "score": 0.88, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 438, + 461, + 452 + ], + "score": 1.0, + "content": "from the Plackett-Luce distribution using the Gumbel-Top-", + "type": "text" + }, + { + "bbox": [ + 462, + 440, + 468, + 450 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 438, + 505, + 452 + ], + "score": 1.0, + "content": "trick by", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 450, + 504, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 215, + 464 + ], + "score": 1.0, + "content": "drawing Gumbel variables", + "type": "text" + }, + { + "bbox": [ + 216, + 451, + 297, + 463 + ], + "score": 0.89, + "content": "G _ { \\phi _ { i } } \\sim \\mathrm { G u m b e l } ( \\phi _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 450, + 497, + 464 + ], + "score": 1.0, + "content": "for each element and returning the indices of the", + "type": "text" + }, + { + "bbox": [ + 497, + 451, + 504, + 460 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 461, + 505, + 476 + ], + "spans": [ + { + "bbox": [ + 104, + 461, + 416, + 476 + ], + "score": 1.0, + "content": "largest Gumbels. If we ignore the ordering, this means we will obtain the set", + "type": "text" + }, + { + "bbox": [ + 416, + 462, + 429, + 473 + ], + "score": 0.88, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 461, + 439, + 476 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 439, + 462, + 505, + 475 + ], + "score": 0.72, + "content": "\\mathrm { m i n } _ { i \\in S ^ { k } } G _ { \\phi _ { i } } >", + "type": "inline_equation" + } + ], + "index": 17 + }, + { + "bbox": [ + 107, + 474, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 107, + 474, + 173, + 487 + ], + "score": 0.89, + "content": "\\operatorname* { m a x } _ { i \\in D \\setminus S ^ { k } } G _ { \\phi _ { i } }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 474, + 278, + 486 + ], + "score": 1.0, + "content": ". Omitting the superscript", + "type": "text" + }, + { + "bbox": [ + 279, + 474, + 285, + 484 + ], + "score": 0.83, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 474, + 506, + 486 + ], + "score": 1.0, + "content": "for clarity, we can use the Gumbel-Max trick, i.e. that", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 482, + 452, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 486, + 275, + 500 + ], + "score": 0.89, + "content": "G _ { \\phi _ { D \\setminus S } } = \\operatorname* { m a x } _ { i \\notin S } G _ { \\phi _ { i } } \\sim \\mathrm { G u m b e l } ( \\phi _ { D \\setminus S } )", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 482, + 417, + 503 + ], + "score": 1.0, + "content": "(equation 30) and marginalize over", + "type": "text" + }, + { + "bbox": [ + 418, + 486, + 446, + 500 + ], + "score": 0.93, + "content": "G _ { \\phi _ { D \\setminus S } }", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 482, + 452, + 503 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17, + "bbox_fs": [ + 104, + 438, + 506, + 503 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 169, + 504, + 439, + 635 + ], + "lines": [ + { + "bbox": [ + 169, + 504, + 439, + 635 + ], + "spans": [ + { + "bbox": [ + 169, + 504, + 439, + 635 + ], + "score": 0.97, + "content": "\\begin{array} { r l } { \\displaystyle p ( S ) = P ( \\underset { i \\in S } { \\operatorname* { m i n } } G _ { \\phi _ { i } \\setminus } \\ G _ { \\phi _ { D \\setminus S } } ) } \\\\ { \\displaystyle } & { = P ( G _ { \\phi _ { i } } > G _ { \\phi _ { D \\setminus S } } , i \\in S ) } \\\\ { \\displaystyle } & { = \\int _ { g _ { \\phi _ { D \\setminus S } } = - \\infty } ^ { \\infty } f _ { \\phi _ { D \\setminus S } } ( g _ { \\phi _ { D \\setminus S } } ) P ( G _ { \\phi _ { i } } > g _ { \\phi _ { D \\setminus S } } , i \\in S ) \\partial g _ { \\phi _ { D \\setminus S } } } \\\\ { \\displaystyle } & { = \\int _ { g _ { \\phi _ { D \\setminus S } } = - \\infty } ^ { \\infty } f _ { \\phi _ { D \\setminus S } } ( g _ { \\phi _ { D \\setminus S } } ) \\prod _ { i \\in S } \\left( 1 - F _ { \\phi _ { \\star } } ( g _ { \\phi _ { D \\setminus S } } ) \\right) \\partial g _ { \\phi _ { D \\setminus S } } } \\\\ { \\displaystyle } & { = \\int _ { u = 0 } ^ { 1 } \\prod _ { i \\in S } \\left( 1 - F _ { \\phi _ { i } } \\left( F _ { \\phi _ { D \\setminus S } } ^ { - 1 } ( u ) \\right) \\right) \\partial u } \\end{array}", + "type": "interline_equation", + "image_path": "806f97cd9da1c0ad1baa8ecdc50026ff7932d71042f7f521a043bd018768c996.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 169, + 504, + 439, + 547.6666666666666 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 169, + 547.6666666666666, + 439, + 591.3333333333333 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 169, + 591.3333333333333, + 439, + 634.9999999999999 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 640, + 504, + 674 + ], + "lines": [ + { + "bbox": [ + 105, + 639, + 506, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 277, + 655 + ], + "score": 1.0, + "content": "Here we have used a change of variables", + "type": "text" + }, + { + "bbox": [ + 278, + 640, + 358, + 654 + ], + "score": 0.93, + "content": "u = F _ { \\phi _ { D \\setminus S } } ( g _ { \\phi _ { D \\setminus S } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 639, + 506, + 655 + ], + "score": 1.0, + "content": ". This expression can be efficiently", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 651, + 504, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 504, + 664 + ], + "score": 1.0, + "content": "numerically integrated (although another change of variables may be required for numerical stability", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 661, + 231, + 675 + ], + "spans": [ + { + "bbox": [ + 106, + 661, + 216, + 675 + ], + "score": 1.0, + "content": "depending on the values of", + "type": "text" + }, + { + "bbox": [ + 217, + 663, + 225, + 674 + ], + "score": 0.83, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 661, + 231, + 675 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 639, + 506, + 675 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 685, + 504, + 707 + ], + "lines": [ + { + "bbox": [ + 104, + 683, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 104, + 683, + 204, + 700 + ], + "score": 1.0, + "content": "Exact computation in", + "type": "text" + }, + { + "bbox": [ + 204, + 685, + 230, + 698 + ], + "score": 0.92, + "content": "O ( 2 ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 683, + 506, + 700 + ], + "score": 1.0, + "content": ". The integral in equation 31 can be computed exactly using the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 694, + 140, + 711 + ], + "spans": [ + { + "bbox": [ + 104, + 694, + 140, + 711 + ], + "score": 1.0, + "content": "identity", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 104, + 683, + 506, + 711 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 216, + 706, + 393, + 735 + ], + "lines": [ + { + "bbox": [ + 216, + 706, + 393, + 735 + ], + "spans": [ + { + "bbox": [ + 216, + 706, + 393, + 735 + ], + "score": 0.93, + "content": "\\prod _ { i \\in S } ( a _ { i } - b _ { i } ) = \\sum _ { C \\subseteq S } ( - 1 ) ^ { | C | } \\prod _ { i \\in C } b _ { i } \\prod _ { i \\in S \\setminus C } a _ { i }", + "type": "interline_equation", + "image_path": "dd04b747902262790d7c58d260268b6984c64f5106491fbb6d615230c69419e4.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 216, + 706, + 393, + 735 + ], + "spans": [], + "index": 28 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 156, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 158, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 158, + 96 + ], + "score": 1.0, + "content": "which gives", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 138, + 99, + 471, + 296 + ], + "lines": [ + { + "bbox": [ + 138, + 99, + 471, + 296 + ], + "spans": [ + { + "bbox": [ + 138, + 99, + 471, + 296 + ], + "score": 0.95, + "content": "\\begin{array} { r l } { { \\mu ( S ) = \\int _ { s _ { \\phi ( S ) - } - \\infty } ^ { \\infty } \\longrightarrow \\int _ { \\partial \\sigma _ { \\phi ( S ) } } \\bigl ( g _ { \\phi ( S ) , s } \\bigr ) \\prod ( 1 - F _ { \\phi _ { \\phi } } ( g _ { \\phi ( S ) , s } ) ) \\partial g _ { \\phi _ { \\phi ( S ) , s } } } } \\\\ & { = \\sum _ { c \\in S } ^ { \\infty } ( - 1 ) ^ { C } \\big | \\int _ { s _ { \\phi ( S ) - } - \\infty } ^ { \\infty } \\int _ { \\Phi _ { \\phi ( S ) - } ( \\partial g _ { \\phi ( S ) - } ) } \\prod \\int _ { s _ { \\phi } } F _ { \\phi _ { \\phi } } ( g _ { \\phi ( S ) - s } ) \\prod \\big | \\partial g _ { \\phi _ { \\phi ( S ) - } s } } \\\\ & { = \\sum _ { c \\in S } ^ { \\infty } ( - 1 ) ^ { C } \\big | \\int _ { s _ { \\phi ( S ) - } - \\infty } ^ { \\infty } e _ { \\phi _ { \\phi ( S ) - } ( \\partial g _ { \\phi ( S ) - } ) } F _ { \\phi _ { \\phi _ { \\phi ( S ) - } s } } ( g _ { \\phi _ { S } , s } ) F _ { \\phi _ { \\phi ( S ) - } } ( g _ { \\phi _ { S } , s } ) \\big | \\mathcal { P } _ { \\phi _ { \\phi ( S ) - } } \\big | \\mathcal { P } _ { \\phi _ { \\phi ( S ) - } } \\big | \\mathcal { P } _ { \\phi _ { \\phi ( S ) - } } } \\\\ & { = \\sum _ { c \\in S } ^ { \\infty } ( - 1 ) ^ { C } \\big | \\int _ { s _ { \\phi ( S ) - } - \\infty } ^ { \\infty } e _ { \\phi _ { \\phi ( S ) - } ( \\partial g _ { \\phi ( S ) - } ) } F _ { \\phi _ { \\phi ( S ) - } , \\phi _ { \\phi ( S ) - } } ( g _ { \\phi _ { S } , s } ) \\big | \\partial g _ { \\phi _ { \\phi ( S ) - } } } \\\\ & { = \\sum _ { c \\in S } ^ { \\infty } ( - 1 ) ^ { C } ( 1 - 0 ) \\frac { \\exp ( \\phi _ { \\phi ( S ) - } ) } { \\exp ( \\phi _ { \\phi ( S ) - } ) } } \\\\ & { = \\sum _ { c \\in S } ^ { \\infty } ( - 1 ) ^ { C } ( 1 - 0 ) \\exp ( \\phi _ { \\phi ( S ) - } ) } \\\\ & = \\sum _ { c \\in S } ^ { \\infty } ( - 1 ) ^ { C } ( 1 - \\sum \\end{array}", + "type": "interline_equation", + "image_path": "7ba5abea6b75d40021fc45a9d7e85ccd6775706b57325b46c30787c210537343.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 138, + 99, + 471, + 164.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 138, + 164.66666666666669, + 471, + 230.33333333333337 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 138, + 230.33333333333337, + 471, + 296.00000000000006 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 305, + 505, + 353 + ], + "lines": [ + { + "bbox": [ + 105, + 304, + 506, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 178, + 321 + ], + "score": 1.0, + "content": "Computation of", + "type": "text" + }, + { + "bbox": [ + 178, + 305, + 234, + 319 + ], + "score": 0.93, + "content": "p ^ { D \\setminus C } ( S \\setminus C )", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 304, + 366, + 321 + ], + "score": 1.0, + "content": ". When using the Gumbel-Top-", + "type": "text" + }, + { + "bbox": [ + 367, + 307, + 373, + 317 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 304, + 506, + 321 + ], + "score": 1.0, + "content": "trick over the restricted domain", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 316, + 504, + 331 + ], + "spans": [ + { + "bbox": [ + 107, + 318, + 133, + 330 + ], + "score": 0.91, + "content": "D \\backslash C", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 316, + 344, + 331 + ], + "score": 1.0, + "content": ", we do not need to renormalize the log-probabilities", + "type": "text" + }, + { + "bbox": [ + 345, + 318, + 404, + 329 + ], + "score": 0.87, + "content": "\\phi _ { s } , s \\in D \\setminus C", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 316, + 497, + 331 + ], + "score": 1.0, + "content": "since the Gumbel-Top-", + "type": "text" + }, + { + "bbox": [ + 497, + 318, + 504, + 328 + ], + "score": 0.78, + "content": "k", + "type": "inline_equation" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 327, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 360, + 343 + ], + "score": 1.0, + "content": "trick applies to unnormalized log-probabilities. Also, assuming", + "type": "text" + }, + { + "bbox": [ + 360, + 329, + 393, + 340 + ], + "score": 0.88, + "content": "C \\subseteq S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 327, + 446, + 343 + ], + "score": 1.0, + "content": ", it holds that", + "type": "text" + }, + { + "bbox": [ + 447, + 329, + 505, + 341 + ], + "score": 0.89, + "content": "\\left( D \\backslash C \\right) \\backslash ( \\mathbf { \\bar { S } } )", + "type": "inline_equation" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 339, + 445, + 354 + ], + "spans": [ + { + "bbox": [ + 106, + 341, + 158, + 353 + ], + "score": 0.92, + "content": "C ) = D \\backslash S", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 339, + 294, + 354 + ], + "score": 1.0, + "content": ". This means that we can compute", + "type": "text" + }, + { + "bbox": [ + 295, + 340, + 350, + 354 + ], + "score": 0.94, + "content": "p ^ { D \\setminus C } ( S \\setminus C )", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 339, + 445, + 354 + ], + "score": 1.0, + "content": "similar to equation 31:", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5 + }, + { + "type": "interline_equation", + "bbox": [ + 148, + 358, + 463, + 435 + ], + "lines": [ + { + "bbox": [ + 148, + 358, + 463, + 435 + ], + "spans": [ + { + "bbox": [ + 148, + 358, + 463, + 435 + ], + "score": 0.94, + "content": "\\begin{array} { r l } { \\displaystyle p ^ { D \\setminus C } ( S \\setminus C ) = P ( \\underset { i \\in S \\backslash C } { \\mathrm { m i n } } G _ { \\phi _ { i } } > G _ { \\phi _ { ( D \\setminus C ) \\setminus ( S \\setminus C ) } } ) } & { } \\\\ { = P ( \\underset { i \\in S \\backslash C } { \\mathrm { m i n } } G _ { \\phi _ { i } } > G _ { \\phi _ { D \\setminus S } } ) } & { } \\\\ { = \\displaystyle \\int _ { g _ { \\phi _ { D \\setminus S } } = - \\infty } ^ { \\infty } f _ { \\phi _ { D \\setminus S } } \\big ( g _ { \\phi _ { D \\setminus S } } \\big ) \\prod _ { i \\in S \\backslash C } \\left( 1 - F _ { \\phi _ { i } } \\big ( g _ { \\phi _ { D \\setminus S } } \\big ) \\right) \\partial g _ { \\phi _ { D \\setminus S } } . } \\end{array}", + "type": "interline_equation", + "image_path": "71b1ede5eb7d716390ae712d93a77350d15fd8d99080e5f5d9d65b83e209d14e.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 148, + 358, + 463, + 383.6666666666667 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 148, + 383.6666666666667, + 463, + 409.33333333333337 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 148, + 409.33333333333337, + 463, + 435.00000000000006 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 446, + 392, + 460 + ], + "lines": [ + { + "bbox": [ + 106, + 445, + 393, + 461 + ], + "spans": [ + { + "bbox": [ + 106, + 445, + 176, + 461 + ], + "score": 1.0, + "content": "Computation of", + "type": "text" + }, + { + "bbox": [ + 177, + 447, + 213, + 460 + ], + "score": 0.94, + "content": "R ( S ^ { k } , s )", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 445, + 393, + 461 + ], + "score": 1.0, + "content": ". Note that, using equation 10, it holds that", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "interline_equation", + "bbox": [ + 194, + 464, + 417, + 497 + ], + "lines": [ + { + "bbox": [ + 194, + 464, + 417, + 497 + ], + "spans": [ + { + "bbox": [ + 194, + 464, + 417, + 497 + ], + "score": 0.93, + "content": "\\sum _ { s \\in S ^ { k } } { \\frac { p ^ { D \\setminus \\{ s \\} } ( S ^ { k } \\setminus \\{ s \\} ) p ( s ) } { p ( S ^ { k } ) } } = \\sum _ { s \\in S ^ { k } } P ( b _ { 1 } = s | S ^ { k } ) = 1", + "type": "interline_equation", + "image_path": "37fa10b9c1fd720eb745b828e611bb6706d79858280070ca02012d93d4503d8a.jpg" + } + ] + } + ], + "index": 12.5, + "virtual_lines": [ + { + "bbox": [ + 194, + 464, + 417, + 480.5 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 194, + 480.5, + 417, + 497.0 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 502, + 212, + 513 + ], + "lines": [ + { + "bbox": [ + 106, + 501, + 213, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 213, + 514 + ], + "score": 1.0, + "content": "from which it follows that", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "interline_equation", + "bbox": [ + 230, + 509, + 381, + 537 + ], + "lines": [ + { + "bbox": [ + 230, + 509, + 381, + 537 + ], + "spans": [ + { + "bbox": [ + 230, + 509, + 381, + 537 + ], + "score": 0.91, + "content": "p ( S ^ { k } ) = \\sum _ { s \\in S ^ { k } } p ^ { D \\setminus \\{ s \\} } ( S ^ { k } \\setminus \\{ s \\} ) p ( s )", + "type": "interline_equation", + "image_path": "2a4ec5a0625a14701521c45a48439b3f0ca24500a7cee376c7f650e285dca087.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 230, + 509, + 381, + 537 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 540, + 144, + 550 + ], + "lines": [ + { + "bbox": [ + 105, + 538, + 146, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 146, + 551 + ], + "score": 1.0, + "content": "such that", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "interline_equation", + "bbox": [ + 168, + 546, + 443, + 577 + ], + "lines": [ + { + "bbox": [ + 168, + 546, + 443, + 577 + ], + "spans": [ + { + "bbox": [ + 168, + 546, + 443, + 577 + ], + "score": 0.93, + "content": "R ( S ^ { k } , s ) = { \\frac { p ^ { D \\setminus \\{ s \\} } ( S ^ { k } \\setminus \\{ s \\} ) } { p ( S ^ { k } ) } } = { \\frac { p ^ { D \\setminus \\{ s \\} } ( S ^ { k } \\setminus \\{ s \\} ) } { \\sum _ { s ^ { \\prime } \\in S ^ { k } } p ^ { D \\setminus \\{ s ^ { \\prime } \\} } ( S ^ { k } \\setminus \\{ s ^ { \\prime } \\} ) p ( s ^ { \\prime } ) } } .", + "type": "interline_equation", + "image_path": "410624f2557ad5303a82af31b26e72b713b414348fbc1f7ef00af886da23f8f8.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 168, + 546, + 443, + 556.3333333333334 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 168, + 556.3333333333334, + 443, + 566.6666666666667 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 168, + 566.6666666666667, + 443, + 577.0000000000001 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 579, + 505, + 637 + ], + "lines": [ + { + "bbox": [ + 105, + 578, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 355, + 592 + ], + "score": 1.0, + "content": "This means that, to compute the leave-one-out ratio for all", + "type": "text" + }, + { + "bbox": [ + 356, + 579, + 390, + 591 + ], + "score": 0.91, + "content": "s ~ \\in ~ S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 578, + 505, + 592 + ], + "score": 1.0, + "content": ", we only need to compute", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 589, + 506, + 605 + ], + "spans": [ + { + "bbox": [ + 107, + 591, + 177, + 604 + ], + "score": 0.92, + "content": "p ^ { D \\setminus \\{ s \\} } ( S ^ { k } \\setminus \\{ s \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 589, + 192, + 605 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 192, + 591, + 221, + 602 + ], + "score": 0.93, + "content": "s \\in S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 589, + 444, + 605 + ], + "score": 1.0, + "content": ". When using the numerical integration or summation in", + "type": "text" + }, + { + "bbox": [ + 445, + 591, + 471, + 604 + ], + "score": 0.92, + "content": "O ( 2 ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 589, + 506, + 605 + ], + "score": 1.0, + "content": ", we can", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 602, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 602, + 358, + 616 + ], + "score": 1.0, + "content": "reuse computation, whereas using the naive method, the cost is", + "type": "text" + }, + { + "bbox": [ + 358, + 603, + 455, + 615 + ], + "score": 0.91, + "content": "O ( k \\cdot ( k - 1 ) ! ) = O ( k ! )", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 602, + 505, + 616 + ], + "score": 1.0, + "content": ", making the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 610, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 104, + 610, + 327, + 629 + ], + "score": 1.0, + "content": "total computational cost comparable to computing just", + "type": "text" + }, + { + "bbox": [ + 327, + 613, + 352, + 626 + ], + "score": 0.92, + "content": "p ( S ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 610, + 506, + 629 + ], + "score": 1.0, + "content": ", and the same holds when computing", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 624, + 415, + 638 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 415, + 638 + ], + "score": 1.0, + "content": "the ‘second-order’ leave one out ratios for the built-in baseline (equation 17).", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22 + } + ], + "page_idx": 14, + "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, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "15", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 156, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 158, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 158, + 96 + ], + "score": 1.0, + "content": "which gives", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 106, + 81, + 158, + 96 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 138, + 99, + 471, + 296 + ], + "lines": [ + { + "bbox": [ + 138, + 99, + 471, + 296 + ], + "spans": [ + { + "bbox": [ + 138, + 99, + 471, + 296 + ], + "score": 0.95, + "content": "\\begin{array} { r l } { { \\mu ( S ) = \\int _ { s _ { \\phi ( S ) - } - \\infty } ^ { \\infty } \\longrightarrow \\int _ { \\partial \\sigma _ { \\phi ( S ) } } \\bigl ( g _ { \\phi ( S ) , s } \\bigr ) \\prod ( 1 - F _ { \\phi _ { \\phi } } ( g _ { \\phi ( S ) , s } ) ) \\partial g _ { \\phi _ { \\phi ( S ) , s } } } } \\\\ & { = \\sum _ { c \\in S } ^ { \\infty } ( - 1 ) ^ { C } \\big | \\int _ { s _ { \\phi ( S ) - } - \\infty } ^ { \\infty } \\int _ { \\Phi _ { \\phi ( S ) - } ( \\partial g _ { \\phi ( S ) - } ) } \\prod \\int _ { s _ { \\phi } } F _ { \\phi _ { \\phi } } ( g _ { \\phi ( S ) - s } ) \\prod \\big | \\partial g _ { \\phi _ { \\phi ( S ) - } s } } \\\\ & { = \\sum _ { c \\in S } ^ { \\infty } ( - 1 ) ^ { C } \\big | \\int _ { s _ { \\phi ( S ) - } - \\infty } ^ { \\infty } e _ { \\phi _ { \\phi ( S ) - } ( \\partial g _ { \\phi ( S ) - } ) } F _ { \\phi _ { \\phi _ { \\phi ( S ) - } s } } ( g _ { \\phi _ { S } , s } ) F _ { \\phi _ { \\phi ( S ) - } } ( g _ { \\phi _ { S } , s } ) \\big | \\mathcal { P } _ { \\phi _ { \\phi ( S ) - } } \\big | \\mathcal { P } _ { \\phi _ { \\phi ( S ) - } } \\big | \\mathcal { P } _ { \\phi _ { \\phi ( S ) - } } } \\\\ & { = \\sum _ { c \\in S } ^ { \\infty } ( - 1 ) ^ { C } \\big | \\int _ { s _ { \\phi ( S ) - } - \\infty } ^ { \\infty } e _ { \\phi _ { \\phi ( S ) - } ( \\partial g _ { \\phi ( S ) - } ) } F _ { \\phi _ { \\phi ( S ) - } , \\phi _ { \\phi ( S ) - } } ( g _ { \\phi _ { S } , s } ) \\big | \\partial g _ { \\phi _ { \\phi ( S ) - } } } \\\\ & { = \\sum _ { c \\in S } ^ { \\infty } ( - 1 ) ^ { C } ( 1 - 0 ) \\frac { \\exp ( \\phi _ { \\phi ( S ) - } ) } { \\exp ( \\phi _ { \\phi ( S ) - } ) } } \\\\ & { = \\sum _ { c \\in S } ^ { \\infty } ( - 1 ) ^ { C } ( 1 - 0 ) \\exp ( \\phi _ { \\phi ( S ) - } ) } \\\\ & = \\sum _ { c \\in S } ^ { \\infty } ( - 1 ) ^ { C } ( 1 - \\sum \\end{array}", + "type": "interline_equation", + "image_path": "7ba5abea6b75d40021fc45a9d7e85ccd6775706b57325b46c30787c210537343.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 138, + 99, + 471, + 164.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 138, + 164.66666666666669, + 471, + 230.33333333333337 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 138, + 230.33333333333337, + 471, + 296.00000000000006 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 305, + 505, + 353 + ], + "lines": [ + { + "bbox": [ + 105, + 304, + 506, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 178, + 321 + ], + "score": 1.0, + "content": "Computation of", + "type": "text" + }, + { + "bbox": [ + 178, + 305, + 234, + 319 + ], + "score": 0.93, + "content": "p ^ { D \\setminus C } ( S \\setminus C )", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 304, + 366, + 321 + ], + "score": 1.0, + "content": ". When using the Gumbel-Top-", + "type": "text" + }, + { + "bbox": [ + 367, + 307, + 373, + 317 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 304, + 506, + 321 + ], + "score": 1.0, + "content": "trick over the restricted domain", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 316, + 504, + 331 + ], + "spans": [ + { + "bbox": [ + 107, + 318, + 133, + 330 + ], + "score": 0.91, + "content": "D \\backslash C", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 316, + 344, + 331 + ], + "score": 1.0, + "content": ", we do not need to renormalize the log-probabilities", + "type": "text" + }, + { + "bbox": [ + 345, + 318, + 404, + 329 + ], + "score": 0.87, + "content": "\\phi _ { s } , s \\in D \\setminus C", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 316, + 497, + 331 + ], + "score": 1.0, + "content": "since the Gumbel-Top-", + "type": "text" + }, + { + "bbox": [ + 497, + 318, + 504, + 328 + ], + "score": 0.78, + "content": "k", + "type": "inline_equation" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 327, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 360, + 343 + ], + "score": 1.0, + "content": "trick applies to unnormalized log-probabilities. Also, assuming", + "type": "text" + }, + { + "bbox": [ + 360, + 329, + 393, + 340 + ], + "score": 0.88, + "content": "C \\subseteq S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 327, + 446, + 343 + ], + "score": 1.0, + "content": ", it holds that", + "type": "text" + }, + { + "bbox": [ + 447, + 329, + 505, + 341 + ], + "score": 0.89, + "content": "\\left( D \\backslash C \\right) \\backslash ( \\mathbf { \\bar { S } } )", + "type": "inline_equation" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 339, + 445, + 354 + ], + "spans": [ + { + "bbox": [ + 106, + 341, + 158, + 353 + ], + "score": 0.92, + "content": "C ) = D \\backslash S", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 339, + 294, + 354 + ], + "score": 1.0, + "content": ". This means that we can compute", + "type": "text" + }, + { + "bbox": [ + 295, + 340, + 350, + 354 + ], + "score": 0.94, + "content": "p ^ { D \\setminus C } ( S \\setminus C )", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 339, + 445, + 354 + ], + "score": 1.0, + "content": "similar to equation 31:", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5, + "bbox_fs": [ + 105, + 304, + 506, + 354 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 148, + 358, + 463, + 435 + ], + "lines": [ + { + "bbox": [ + 148, + 358, + 463, + 435 + ], + "spans": [ + { + "bbox": [ + 148, + 358, + 463, + 435 + ], + "score": 0.94, + "content": "\\begin{array} { r l } { \\displaystyle p ^ { D \\setminus C } ( S \\setminus C ) = P ( \\underset { i \\in S \\backslash C } { \\mathrm { m i n } } G _ { \\phi _ { i } } > G _ { \\phi _ { ( D \\setminus C ) \\setminus ( S \\setminus C ) } } ) } & { } \\\\ { = P ( \\underset { i \\in S \\backslash C } { \\mathrm { m i n } } G _ { \\phi _ { i } } > G _ { \\phi _ { D \\setminus S } } ) } & { } \\\\ { = \\displaystyle \\int _ { g _ { \\phi _ { D \\setminus S } } = - \\infty } ^ { \\infty } f _ { \\phi _ { D \\setminus S } } \\big ( g _ { \\phi _ { D \\setminus S } } \\big ) \\prod _ { i \\in S \\backslash C } \\left( 1 - F _ { \\phi _ { i } } \\big ( g _ { \\phi _ { D \\setminus S } } \\big ) \\right) \\partial g _ { \\phi _ { D \\setminus S } } . } \\end{array}", + "type": "interline_equation", + "image_path": "71b1ede5eb7d716390ae712d93a77350d15fd8d99080e5f5d9d65b83e209d14e.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 148, + 358, + 463, + 383.6666666666667 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 148, + 383.6666666666667, + 463, + 409.33333333333337 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 148, + 409.33333333333337, + 463, + 435.00000000000006 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 446, + 392, + 460 + ], + "lines": [ + { + "bbox": [ + 106, + 445, + 393, + 461 + ], + "spans": [ + { + "bbox": [ + 106, + 445, + 176, + 461 + ], + "score": 1.0, + "content": "Computation of", + "type": "text" + }, + { + "bbox": [ + 177, + 447, + 213, + 460 + ], + "score": 0.94, + "content": "R ( S ^ { k } , s )", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 445, + 393, + 461 + ], + "score": 1.0, + "content": ". Note that, using equation 10, it holds that", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 106, + 445, + 393, + 461 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 194, + 464, + 417, + 497 + ], + "lines": [ + { + "bbox": [ + 194, + 464, + 417, + 497 + ], + "spans": [ + { + "bbox": [ + 194, + 464, + 417, + 497 + ], + "score": 0.93, + "content": "\\sum _ { s \\in S ^ { k } } { \\frac { p ^ { D \\setminus \\{ s \\} } ( S ^ { k } \\setminus \\{ s \\} ) p ( s ) } { p ( S ^ { k } ) } } = \\sum _ { s \\in S ^ { k } } P ( b _ { 1 } = s | S ^ { k } ) = 1", + "type": "interline_equation", + "image_path": "37fa10b9c1fd720eb745b828e611bb6706d79858280070ca02012d93d4503d8a.jpg" + } + ] + } + ], + "index": 12.5, + "virtual_lines": [ + { + "bbox": [ + 194, + 464, + 417, + 480.5 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 194, + 480.5, + 417, + 497.0 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 502, + 212, + 513 + ], + "lines": [ + { + "bbox": [ + 106, + 501, + 213, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 213, + 514 + ], + "score": 1.0, + "content": "from which it follows that", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14, + "bbox_fs": [ + 106, + 501, + 213, + 514 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 230, + 509, + 381, + 537 + ], + "lines": [ + { + "bbox": [ + 230, + 509, + 381, + 537 + ], + "spans": [ + { + "bbox": [ + 230, + 509, + 381, + 537 + ], + "score": 0.91, + "content": "p ( S ^ { k } ) = \\sum _ { s \\in S ^ { k } } p ^ { D \\setminus \\{ s \\} } ( S ^ { k } \\setminus \\{ s \\} ) p ( s )", + "type": "interline_equation", + "image_path": "2a4ec5a0625a14701521c45a48439b3f0ca24500a7cee376c7f650e285dca087.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 230, + 509, + 381, + 537 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 540, + 144, + 550 + ], + "lines": [ + { + "bbox": [ + 105, + 538, + 146, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 146, + 551 + ], + "score": 1.0, + "content": "such that", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 538, + 146, + 551 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 168, + 546, + 443, + 577 + ], + "lines": [ + { + "bbox": [ + 168, + 546, + 443, + 577 + ], + "spans": [ + { + "bbox": [ + 168, + 546, + 443, + 577 + ], + "score": 0.93, + "content": "R ( S ^ { k } , s ) = { \\frac { p ^ { D \\setminus \\{ s \\} } ( S ^ { k } \\setminus \\{ s \\} ) } { p ( S ^ { k } ) } } = { \\frac { p ^ { D \\setminus \\{ s \\} } ( S ^ { k } \\setminus \\{ s \\} ) } { \\sum _ { s ^ { \\prime } \\in S ^ { k } } p ^ { D \\setminus \\{ s ^ { \\prime } \\} } ( S ^ { k } \\setminus \\{ s ^ { \\prime } \\} ) p ( s ^ { \\prime } ) } } .", + "type": "interline_equation", + "image_path": "410624f2557ad5303a82af31b26e72b713b414348fbc1f7ef00af886da23f8f8.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 168, + 546, + 443, + 556.3333333333334 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 168, + 556.3333333333334, + 443, + 566.6666666666667 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 168, + 566.6666666666667, + 443, + 577.0000000000001 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 579, + 505, + 637 + ], + "lines": [ + { + "bbox": [ + 105, + 578, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 355, + 592 + ], + "score": 1.0, + "content": "This means that, to compute the leave-one-out ratio for all", + "type": "text" + }, + { + "bbox": [ + 356, + 579, + 390, + 591 + ], + "score": 0.91, + "content": "s ~ \\in ~ S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 578, + 505, + 592 + ], + "score": 1.0, + "content": ", we only need to compute", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 589, + 506, + 605 + ], + "spans": [ + { + "bbox": [ + 107, + 591, + 177, + 604 + ], + "score": 0.92, + "content": "p ^ { D \\setminus \\{ s \\} } ( S ^ { k } \\setminus \\{ s \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 589, + 192, + 605 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 192, + 591, + 221, + 602 + ], + "score": 0.93, + "content": "s \\in S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 589, + 444, + 605 + ], + "score": 1.0, + "content": ". When using the numerical integration or summation in", + "type": "text" + }, + { + "bbox": [ + 445, + 591, + 471, + 604 + ], + "score": 0.92, + "content": "O ( 2 ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 589, + 506, + 605 + ], + "score": 1.0, + "content": ", we can", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 602, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 602, + 358, + 616 + ], + "score": 1.0, + "content": "reuse computation, whereas using the naive method, the cost is", + "type": "text" + }, + { + "bbox": [ + 358, + 603, + 455, + 615 + ], + "score": 0.91, + "content": "O ( k \\cdot ( k - 1 ) ! ) = O ( k ! )", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 602, + 505, + 616 + ], + "score": 1.0, + "content": ", making the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 610, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 104, + 610, + 327, + 629 + ], + "score": 1.0, + "content": "total computational cost comparable to computing just", + "type": "text" + }, + { + "bbox": [ + 327, + 613, + 352, + 626 + ], + "score": 0.92, + "content": "p ( S ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 610, + 506, + 629 + ], + "score": 1.0, + "content": ", and the same holds when computing", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 624, + 415, + 638 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 415, + 638 + ], + "score": 1.0, + "content": "the ‘second-order’ leave one out ratios for the built-in baseline (equation 17).", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22, + "bbox_fs": [ + 104, + 578, + 506, + 638 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 505, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Details of numerical integration. For computation of the leave-one-out ratio (equation 35) for", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 128, + 107 + ], + "score": 1.0, + "content": "large", + "type": "text" + }, + { + "bbox": [ + 129, + 94, + 135, + 104 + ], + "score": 0.77, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 93, + 464, + 107 + ], + "score": 1.0, + "content": "we can use the numerical integration, where we need to compute equation 34 with", + "type": "text" + }, + { + "bbox": [ + 464, + 93, + 501, + 106 + ], + "score": 0.93, + "content": "C = \\{ s \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 93, + 505, + 107 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 103, + 280, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 280, + 118 + ], + "score": 1.0, + "content": "For this purpose, we rewrite the integral as", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "interline_equation", + "bbox": [ + 134, + 123, + 477, + 295 + ], + "lines": [ + { + "bbox": [ + 134, + 123, + 477, + 295 + ], + "spans": [ + { + "bbox": [ + 134, + 123, + 477, + 295 + ], + "score": 0.95, + "content": "\\begin{array} { l } { \\displaystyle p ^ { D \\setminus C } ( S \\setminus C ) = \\int _ { \\phi _ { \\partial \\setminus \\mathcal { D } } \\setminus \\phi = - \\phi } ^ { \\phi _ { \\partial \\setminus \\mathcal { D } } } f _ { \\phi _ { D \\setminus \\mathcal { D } } } ( g _ { \\phi \\phi _ { D \\setminus \\mathcal { D } } } , s ) \\prod _ { i \\in S \\setminus \\mathcal { C } } \\left( 1 - F _ { \\phi _ { i } } ( g _ { \\phi _ { D \\setminus i } } , s ) \\right) \\partial g _ { \\phi _ { D \\setminus i } } } \\\\ { \\displaystyle \\qquad = \\int _ { u = 0 } ^ { 1 } \\prod _ { i \\in S \\setminus \\mathcal { C } } \\Big ( 1 - F _ { \\phi _ { i } } \\Big ( F _ { \\phi _ { D \\setminus i } } ^ { - 1 } \\Big ( u \\Big ) \\Big ) \\Big ) \\partial u } \\\\ { \\displaystyle \\qquad = \\int _ { u = 0 } ^ { 1 } \\prod _ { i \\in S \\setminus \\mathcal { C } } \\Big ( 1 - u ^ { \\alpha \\setminus \\phi _ { i } ( \\phi _ { i } - \\phi _ { D \\setminus i } ) s } \\Big ) \\partial u } \\\\ { \\displaystyle \\qquad = \\exp ( b ) \\cdot \\int _ { v = 0 } ^ { 1 } v ^ { \\alpha \\setminus \\phi _ { i } ( b ) - 1 } \\prod _ { i \\in S \\setminus \\mathcal { C } } \\Big ( 1 - v ^ { \\alpha \\setminus \\Phi _ { i } ( \\phi _ { i } - \\phi _ { D \\setminus i } - \\phi _ { i } ) } \\Big ) \\partial v } \\\\ { \\displaystyle \\qquad = \\exp ( a + \\phi _ { D \\setminus S } ) \\cdot \\int _ { v = 0 } ^ { 1 } v ^ { \\alpha \\setminus \\Phi _ { i } ( \\phi _ { i } + \\phi _ { D \\setminus i } - s ) - 1 } \\prod _ { i \\in S \\setminus \\mathcal { C } } \\Big ( 1 - v ^ { \\alpha \\setminus \\Phi _ { i } ( \\phi _ { i } + s ) } \\Big ) \\partial v } \\\\ { \\displaystyle \\qquad = \\exp ( a + \\phi _ { D \\setminus \\mathcal { D } } ) \\cdot \\int _ { v = 0 } ^ { 1 } v ^ { \\alpha \\setminus \\Phi _ { i } ( \\phi _ { i } + \\phi _ { D \\setminus i } - s ) - 1 } v \\in \\mathrm { S } ^ { \\setminus \\Phi _ { i } } } \\end{array}", + "type": "interline_equation", + "image_path": "c310d2db9b1fa7110a785947e4cf56a00a645a76a168ecfb1126319fea07ae03.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 134, + 123, + 477, + 180.33333333333334 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 134, + 180.33333333333334, + 477, + 237.66666666666669 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 134, + 237.66666666666669, + 477, + 295.0 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 302, + 504, + 326 + ], + "lines": [ + { + "bbox": [ + 105, + 301, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 271, + 318 + ], + "score": 1.0, + "content": "Here we have used change of variables", + "type": "text" + }, + { + "bbox": [ + 271, + 303, + 329, + 314 + ], + "score": 0.91, + "content": "v = u ^ { e x p ( - b ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 301, + 349, + 318 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 350, + 304, + 414, + 317 + ], + "score": 0.92, + "content": "a = b - \\phi _ { D \\backslash S }", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 301, + 506, + 318 + ], + "score": 1.0, + "content": ". This form allows to", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 315, + 258, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 258, + 327 + ], + "score": 1.0, + "content": "compute the integrands efficiently, as", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "interline_equation", + "bbox": [ + 199, + 333, + 410, + 368 + ], + "lines": [ + { + "bbox": [ + 199, + 333, + 410, + 368 + ], + "spans": [ + { + "bbox": [ + 199, + 333, + 410, + 368 + ], + "score": 0.93, + "content": "\\prod _ { i \\in S \\setminus C } \\left( 1 - v ^ { \\exp ( \\phi _ { i } + a ) } \\right) = \\frac { \\prod _ { i \\in S } \\left( 1 - v ^ { \\exp ( \\phi _ { i } + a ) } \\right) } { \\prod _ { i \\in C } \\left( 1 - v ^ { \\exp ( \\phi _ { i } + a ) } \\right) }", + "type": "interline_equation", + "image_path": "3ab65bbdffb221dc2e3ddf5ae942c5101495262c958abebcbf1015b13a972aee.jpg" + } + ] + } + ], + "index": 8.5, + "virtual_lines": [ + { + "bbox": [ + 199, + 333, + 410, + 350.5 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 199, + 350.5, + 410, + 368.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 376, + 504, + 399 + ], + "lines": [ + { + "bbox": [ + 105, + 374, + 504, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 366, + 390 + ], + "score": 1.0, + "content": "where the numerator only needs to computed once, and, since", + "type": "text" + }, + { + "bbox": [ + 366, + 376, + 407, + 388 + ], + "score": 0.93, + "content": "C = \\{ s \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 374, + 504, + 390 + ], + "score": 1.0, + "content": "when computing equa-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 387, + 328, + 400 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 328, + 400 + ], + "score": 1.0, + "content": "tion 35, the denominator only consists of a single term.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 106, + 404, + 505, + 460 + ], + "lines": [ + { + "bbox": [ + 106, + 403, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 106, + 403, + 167, + 417 + ], + "score": 1.0, + "content": "The choice of", + "type": "text" + }, + { + "bbox": [ + 168, + 407, + 174, + 414 + ], + "score": 0.65, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 403, + 371, + 417 + ], + "score": 1.0, + "content": "may depend on the setting, but we found that", + "type": "text" + }, + { + "bbox": [ + 371, + 405, + 401, + 415 + ], + "score": 0.9, + "content": "a \\ : = \\ : 5", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 403, + 505, + 417 + ], + "score": 1.0, + "content": "is a good default option", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 415, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 505, + 428 + ], + "score": 1.0, + "content": "which leads to an integral that is generally smooth and can be accurately approximated using the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 426, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 505, + 439 + ], + "score": 1.0, + "content": "trapezoid rule. We compute the integrands in logarithmic space and sum the terms using the stable", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 437, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 505, + 449 + ], + "score": 1.0, + "content": "LOGSUMEXP trick. In our code we provide an implementation which also computes all second-order", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 448, + 232, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 232, + 460 + ], + "score": 1.0, + "content": "leave-one-out ratios efficiently.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14 + }, + { + "type": "title", + "bbox": [ + 107, + 478, + 309, + 491 + ], + "lines": [ + { + "bbox": [ + 106, + 477, + 312, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 312, + 493 + ], + "score": 1.0, + "content": "C THE SUM-AND-SAMPLE ESTIMATOR", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "title", + "bbox": [ + 107, + 505, + 368, + 516 + ], + "lines": [ + { + "bbox": [ + 106, + 505, + 369, + 517 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 369, + 517 + ], + "score": 1.0, + "content": "C.1 UNBIASEDNESS OF THE SUM-AND-SAMPLE ESTIMATOR", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 525, + 505, + 549 + ], + "lines": [ + { + "bbox": [ + 105, + 525, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 383, + 540 + ], + "score": 1.0, + "content": "We show that the sum-and-sample estimator is unbiased for any set", + "type": "text" + }, + { + "bbox": [ + 383, + 527, + 416, + 537 + ], + "score": 0.89, + "content": "C \\subset D", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 525, + 505, + 540 + ], + "score": 1.0, + "content": "(see also Liang et al.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 537, + 212, + 550 + ], + "spans": [ + { + "bbox": [ + 106, + 537, + 212, + 550 + ], + "score": 1.0, + "content": "(2018); Liu et al. (2019)):", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "interline_equation", + "bbox": [ + 175, + 555, + 438, + 738 + ], + "lines": [ + { + "bbox": [ + 175, + 555, + 438, + 738 + ], + "spans": [ + { + "bbox": [ + 175, + 555, + 438, + 738 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\mathbb { E } _ { \\mathrm { s e } \\sim p ^ { N } \\times ( \\pi ) } \\left[ \\underset { s \\in \\mathcal { C } } { \\sum } p ( c ) f ( c ) + \\left( 1 - \\underset { s \\in \\mathcal { C } } { \\sum } p ( c ) \\right) f ( s ) \\right] } \\\\ & { = \\underset { s \\in \\mathcal { C } } { \\sum } p ( c ) f ( e ) + \\left( 1 - \\underset { s \\in \\mathcal { C } } { \\sum } p ( c ) \\right) \\mathbb { E } _ { \\alpha \\sim p ^ { N } \\times ( \\pi ) } [ f ( x ) ] } \\\\ & { = \\underset { s \\in \\mathcal { C } } { \\sum } p ( c ) f ( e ) + \\left( 1 - \\underset { s \\in \\mathcal { C } } { \\sum } p ( c ) \\right) \\underset { s \\in \\mathcal { C } } { \\sum } \\frac { p ( x ) } { 1 - \\sum _ { s \\in \\mathcal { C } } p ( c ) } f ( x ) } \\\\ & { = \\underset { s \\in \\mathcal { C } } { \\sum } p ( c ) f ( e ) + \\underset { s \\in \\mathcal { D } } { \\sum } p ( x ) f ( x ) } \\\\ & { = \\underset { s \\in \\mathcal { C } } { \\sum } p ( c ) f ( x ) + \\underset { s \\in \\mathcal { D } \\backslash \\mathcal { C } } { \\sum } } \\\\ & { = \\underset { s \\in \\mathcal { D } } { \\sum } p ( x ) f ( x ) } \\\\ & { = \\underset { c \\in \\mathcal { C } \\sim ( \\mathcal { C } ) } { \\sum } [ f ( x ) ] } \\end{array}", + "type": "interline_equation", + "image_path": "b9e074f65ae7cf0608fff4cbda5585c6ae47c099e3db5c45711392f7bb8c436a.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 175, + 555, + 438, + 616.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 175, + 616.0, + 438, + 677.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 175, + 677.0, + 438, + 738.0 + ], + "spans": [], + "index": 23 + } + ] + } + ], + "page_idx": 15, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 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": [ + 300, + 751, + 311, + 761 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "16", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 505, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Details of numerical integration. For computation of the leave-one-out ratio (equation 35) for", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 128, + 107 + ], + "score": 1.0, + "content": "large", + "type": "text" + }, + { + "bbox": [ + 129, + 94, + 135, + 104 + ], + "score": 0.77, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 93, + 464, + 107 + ], + "score": 1.0, + "content": "we can use the numerical integration, where we need to compute equation 34 with", + "type": "text" + }, + { + "bbox": [ + 464, + 93, + 501, + 106 + ], + "score": 0.93, + "content": "C = \\{ s \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 93, + 505, + 107 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 103, + 280, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 280, + 118 + ], + "score": 1.0, + "content": "For this purpose, we rewrite the integral as", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 82, + 505, + 118 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 134, + 123, + 477, + 295 + ], + "lines": [ + { + "bbox": [ + 134, + 123, + 477, + 295 + ], + "spans": [ + { + "bbox": [ + 134, + 123, + 477, + 295 + ], + "score": 0.95, + "content": "\\begin{array} { l } { \\displaystyle p ^ { D \\setminus C } ( S \\setminus C ) = \\int _ { \\phi _ { \\partial \\setminus \\mathcal { D } } \\setminus \\phi = - \\phi } ^ { \\phi _ { \\partial \\setminus \\mathcal { D } } } f _ { \\phi _ { D \\setminus \\mathcal { D } } } ( g _ { \\phi \\phi _ { D \\setminus \\mathcal { D } } } , s ) \\prod _ { i \\in S \\setminus \\mathcal { C } } \\left( 1 - F _ { \\phi _ { i } } ( g _ { \\phi _ { D \\setminus i } } , s ) \\right) \\partial g _ { \\phi _ { D \\setminus i } } } \\\\ { \\displaystyle \\qquad = \\int _ { u = 0 } ^ { 1 } \\prod _ { i \\in S \\setminus \\mathcal { C } } \\Big ( 1 - F _ { \\phi _ { i } } \\Big ( F _ { \\phi _ { D \\setminus i } } ^ { - 1 } \\Big ( u \\Big ) \\Big ) \\Big ) \\partial u } \\\\ { \\displaystyle \\qquad = \\int _ { u = 0 } ^ { 1 } \\prod _ { i \\in S \\setminus \\mathcal { C } } \\Big ( 1 - u ^ { \\alpha \\setminus \\phi _ { i } ( \\phi _ { i } - \\phi _ { D \\setminus i } ) s } \\Big ) \\partial u } \\\\ { \\displaystyle \\qquad = \\exp ( b ) \\cdot \\int _ { v = 0 } ^ { 1 } v ^ { \\alpha \\setminus \\phi _ { i } ( b ) - 1 } \\prod _ { i \\in S \\setminus \\mathcal { C } } \\Big ( 1 - v ^ { \\alpha \\setminus \\Phi _ { i } ( \\phi _ { i } - \\phi _ { D \\setminus i } - \\phi _ { i } ) } \\Big ) \\partial v } \\\\ { \\displaystyle \\qquad = \\exp ( a + \\phi _ { D \\setminus S } ) \\cdot \\int _ { v = 0 } ^ { 1 } v ^ { \\alpha \\setminus \\Phi _ { i } ( \\phi _ { i } + \\phi _ { D \\setminus i } - s ) - 1 } \\prod _ { i \\in S \\setminus \\mathcal { C } } \\Big ( 1 - v ^ { \\alpha \\setminus \\Phi _ { i } ( \\phi _ { i } + s ) } \\Big ) \\partial v } \\\\ { \\displaystyle \\qquad = \\exp ( a + \\phi _ { D \\setminus \\mathcal { D } } ) \\cdot \\int _ { v = 0 } ^ { 1 } v ^ { \\alpha \\setminus \\Phi _ { i } ( \\phi _ { i } + \\phi _ { D \\setminus i } - s ) - 1 } v \\in \\mathrm { S } ^ { \\setminus \\Phi _ { i } } } \\end{array}", + "type": "interline_equation", + "image_path": "c310d2db9b1fa7110a785947e4cf56a00a645a76a168ecfb1126319fea07ae03.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 134, + 123, + 477, + 180.33333333333334 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 134, + 180.33333333333334, + 477, + 237.66666666666669 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 134, + 237.66666666666669, + 477, + 295.0 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 302, + 504, + 326 + ], + "lines": [ + { + "bbox": [ + 105, + 301, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 271, + 318 + ], + "score": 1.0, + "content": "Here we have used change of variables", + "type": "text" + }, + { + "bbox": [ + 271, + 303, + 329, + 314 + ], + "score": 0.91, + "content": "v = u ^ { e x p ( - b ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 301, + 349, + 318 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 350, + 304, + 414, + 317 + ], + "score": 0.92, + "content": "a = b - \\phi _ { D \\backslash S }", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 301, + 506, + 318 + ], + "score": 1.0, + "content": ". This form allows to", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 315, + 258, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 258, + 327 + ], + "score": 1.0, + "content": "compute the integrands efficiently, as", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 301, + 506, + 327 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 199, + 333, + 410, + 368 + ], + "lines": [ + { + "bbox": [ + 199, + 333, + 410, + 368 + ], + "spans": [ + { + "bbox": [ + 199, + 333, + 410, + 368 + ], + "score": 0.93, + "content": "\\prod _ { i \\in S \\setminus C } \\left( 1 - v ^ { \\exp ( \\phi _ { i } + a ) } \\right) = \\frac { \\prod _ { i \\in S } \\left( 1 - v ^ { \\exp ( \\phi _ { i } + a ) } \\right) } { \\prod _ { i \\in C } \\left( 1 - v ^ { \\exp ( \\phi _ { i } + a ) } \\right) }", + "type": "interline_equation", + "image_path": "3ab65bbdffb221dc2e3ddf5ae942c5101495262c958abebcbf1015b13a972aee.jpg" + } + ] + } + ], + "index": 8.5, + "virtual_lines": [ + { + "bbox": [ + 199, + 333, + 410, + 350.5 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 199, + 350.5, + 410, + 368.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 376, + 504, + 399 + ], + "lines": [ + { + "bbox": [ + 105, + 374, + 504, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 366, + 390 + ], + "score": 1.0, + "content": "where the numerator only needs to computed once, and, since", + "type": "text" + }, + { + "bbox": [ + 366, + 376, + 407, + 388 + ], + "score": 0.93, + "content": "C = \\{ s \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 374, + 504, + 390 + ], + "score": 1.0, + "content": "when computing equa-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 387, + 328, + 400 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 328, + 400 + ], + "score": 1.0, + "content": "tion 35, the denominator only consists of a single term.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 374, + 504, + 400 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 404, + 505, + 460 + ], + "lines": [ + { + "bbox": [ + 106, + 403, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 106, + 403, + 167, + 417 + ], + "score": 1.0, + "content": "The choice of", + "type": "text" + }, + { + "bbox": [ + 168, + 407, + 174, + 414 + ], + "score": 0.65, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 403, + 371, + 417 + ], + "score": 1.0, + "content": "may depend on the setting, but we found that", + "type": "text" + }, + { + "bbox": [ + 371, + 405, + 401, + 415 + ], + "score": 0.9, + "content": "a \\ : = \\ : 5", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 403, + 505, + 417 + ], + "score": 1.0, + "content": "is a good default option", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 415, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 505, + 428 + ], + "score": 1.0, + "content": "which leads to an integral that is generally smooth and can be accurately approximated using the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 426, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 505, + 439 + ], + "score": 1.0, + "content": "trapezoid rule. We compute the integrands in logarithmic space and sum the terms using the stable", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 437, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 505, + 449 + ], + "score": 1.0, + "content": "LOGSUMEXP trick. In our code we provide an implementation which also computes all second-order", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 448, + 232, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 232, + 460 + ], + "score": 1.0, + "content": "leave-one-out ratios efficiently.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 403, + 505, + 460 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 478, + 309, + 491 + ], + "lines": [ + { + "bbox": [ + 106, + 477, + 312, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 312, + 493 + ], + "score": 1.0, + "content": "C THE SUM-AND-SAMPLE ESTIMATOR", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "title", + "bbox": [ + 107, + 505, + 368, + 516 + ], + "lines": [ + { + "bbox": [ + 106, + 505, + 369, + 517 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 369, + 517 + ], + "score": 1.0, + "content": "C.1 UNBIASEDNESS OF THE SUM-AND-SAMPLE ESTIMATOR", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 525, + 505, + 549 + ], + "lines": [ + { + "bbox": [ + 105, + 525, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 383, + 540 + ], + "score": 1.0, + "content": "We show that the sum-and-sample estimator is unbiased for any set", + "type": "text" + }, + { + "bbox": [ + 383, + 527, + 416, + 537 + ], + "score": 0.89, + "content": "C \\subset D", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 525, + 505, + 540 + ], + "score": 1.0, + "content": "(see also Liang et al.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 537, + 212, + 550 + ], + "spans": [ + { + "bbox": [ + 106, + 537, + 212, + 550 + ], + "score": 1.0, + "content": "(2018); Liu et al. (2019)):", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 525, + 505, + 550 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 175, + 555, + 438, + 738 + ], + "lines": [ + { + "bbox": [ + 175, + 555, + 438, + 738 + ], + "spans": [ + { + "bbox": [ + 175, + 555, + 438, + 738 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\mathbb { E } _ { \\mathrm { s e } \\sim p ^ { N } \\times ( \\pi ) } \\left[ \\underset { s \\in \\mathcal { C } } { \\sum } p ( c ) f ( c ) + \\left( 1 - \\underset { s \\in \\mathcal { C } } { \\sum } p ( c ) \\right) f ( s ) \\right] } \\\\ & { = \\underset { s \\in \\mathcal { C } } { \\sum } p ( c ) f ( e ) + \\left( 1 - \\underset { s \\in \\mathcal { C } } { \\sum } p ( c ) \\right) \\mathbb { E } _ { \\alpha \\sim p ^ { N } \\times ( \\pi ) } [ f ( x ) ] } \\\\ & { = \\underset { s \\in \\mathcal { C } } { \\sum } p ( c ) f ( e ) + \\left( 1 - \\underset { s \\in \\mathcal { C } } { \\sum } p ( c ) \\right) \\underset { s \\in \\mathcal { C } } { \\sum } \\frac { p ( x ) } { 1 - \\sum _ { s \\in \\mathcal { C } } p ( c ) } f ( x ) } \\\\ & { = \\underset { s \\in \\mathcal { C } } { \\sum } p ( c ) f ( e ) + \\underset { s \\in \\mathcal { D } } { \\sum } p ( x ) f ( x ) } \\\\ & { = \\underset { s \\in \\mathcal { C } } { \\sum } p ( c ) f ( x ) + \\underset { s \\in \\mathcal { D } \\backslash \\mathcal { C } } { \\sum } } \\\\ & { = \\underset { s \\in \\mathcal { D } } { \\sum } p ( x ) f ( x ) } \\\\ & { = \\underset { c \\in \\mathcal { C } \\sim ( \\mathcal { C } ) } { \\sum } [ f ( x ) ] } \\end{array}", + "type": "interline_equation", + "image_path": "b9e074f65ae7cf0608fff4cbda5585c6ae47c099e3db5c45711392f7bb8c436a.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 175, + 555, + 438, + 616.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 175, + 616.0, + 438, + 677.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 175, + 677.0, + 438, + 738.0 + ], + "spans": [], + "index": 23 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 107, + 504, + 131 + ], + "lines": [ + { + "bbox": [ + 105, + 107, + 505, + 121 + ], + "spans": [ + { + "bbox": [ + 105, + 107, + 505, + 121 + ], + "score": 1.0, + "content": "In this section we give the proof that Rao-Blackwellizing the stochastic sum-and-sample estimator", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 119, + 257, + 131 + ], + "spans": [ + { + "bbox": [ + 105, + 119, + 257, + 131 + ], + "score": 1.0, + "content": "results in the unordered set estimator.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 105, + 138, + 505, + 162 + ], + "lines": [ + { + "bbox": [ + 106, + 138, + 506, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 506, + 151 + ], + "score": 1.0, + "content": "Theorem 4. Rao-Blackwellizing the stochastic sum-and-sample estimator results in the unordered", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 151, + 176, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 176, + 162 + ], + "score": 1.0, + "content": "set estimator, i.e.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "interline_equation", + "bbox": [ + 120, + 176, + 473, + 217 + ], + "lines": [ + { + "bbox": [ + 120, + 176, + 473, + 217 + ], + "spans": [ + { + "bbox": [ + 120, + 176, + 473, + 217 + ], + "score": 0.94, + "content": "\\mathbb { E } _ { B ^ { k } \\sim p ( B ^ { k } | S ^ { k } ) } \\left[ \\sum _ { j = 1 } ^ { k - 1 } p ( b _ { j } ) f ( b _ { j } ) + \\left( 1 - \\sum _ { j = 1 } ^ { k - 1 } p ( b _ { j } ) \\right) f ( b _ { k } ) \\right] = \\sum _ { s \\in S ^ { k } } p ( s ) R ( S ^ { k } , s ) f ( s ) .", + "type": "interline_equation", + "image_path": "0b9d7c9d1ed7944469fbeac8c9a5bc6f5f685b09515131a1595aefaf726d7cb7.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 120, + 176, + 473, + 189.66666666666666 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 120, + 189.66666666666666, + 473, + 203.33333333333331 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 120, + 203.33333333333331, + 473, + 216.99999999999997 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 262, + 327, + 275 + ], + "lines": [ + { + "bbox": [ + 106, + 262, + 328, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 262, + 328, + 276 + ], + "score": 1.0, + "content": "Proof. To give the proof, we first prove three Lemmas.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 312, + 151, + 324 + ], + "lines": [ + { + "bbox": [ + 106, + 312, + 152, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 152, + 324 + ], + "score": 1.0, + "content": "Lemma 1.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 199, + 336, + 412, + 366 + ], + "lines": [ + { + "bbox": [ + 199, + 336, + 412, + 366 + ], + "spans": [ + { + "bbox": [ + 199, + 336, + 412, + 366 + ], + "score": 0.92, + "content": "P ( b _ { k } = s | S ^ { k } ) = { \\frac { p ( S ^ { k } \\setminus \\{ s \\} ) } { p ( S ^ { k } ) } } { \\frac { p ( s ) } { 1 - \\sum _ { s ^ { \\prime } \\in S ^ { k } \\setminus \\{ s \\} } p ( s ^ { \\prime } ) } }", + "type": "interline_equation", + "image_path": "317c6fc716831ad249f80ed035ca691c5c122a60da3a87b0f11283a54e6d79c1.jpg" + } + ] + } + ], + "index": 9.5, + "virtual_lines": [ + { + "bbox": [ + 199, + 336, + 412, + 351.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 199, + 351.0, + 412, + 366.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 412, + 491, + 426 + ], + "lines": [ + { + "bbox": [ + 105, + 412, + 492, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 246, + 427 + ], + "score": 1.0, + "content": "Proof. Similar to the derivation of", + "type": "text" + }, + { + "bbox": [ + 246, + 413, + 304, + 426 + ], + "score": 0.92, + "content": "P ( b _ { 1 } = s | S ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 412, + 492, + 427 + ], + "score": 1.0, + "content": "(equation 10 in the main paper), we can write:", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "interline_equation", + "bbox": [ + 196, + 442, + 414, + 532 + ], + "lines": [ + { + "bbox": [ + 196, + 442, + 414, + 532 + ], + "spans": [ + { + "bbox": [ + 196, + 442, + 414, + 532 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { P ( b _ { k } = s | S ^ { k } ) = \\displaystyle \\frac { P ( S ^ { k } \\cap b _ { k } = s ) } { p ( S ^ { k } ) } } \\\\ & { \\qquad = \\displaystyle \\frac { p ( S ^ { k } \\setminus \\{ s \\} ) p ^ { D \\setminus ( S ^ { k } \\setminus \\{ s \\} ) } ( s ) } { p ( S ^ { k } ) } } \\\\ & { \\qquad = \\displaystyle \\frac { p ( S ^ { k } \\setminus \\{ s \\} ) } { p ( S ^ { k } ) } \\displaystyle \\frac { p ( s ) } { 1 - \\sum _ { s ^ { \\prime } \\in S ^ { k } \\setminus \\{ s \\} } p ( s ^ { \\prime } ) } . } \\end{array}", + "type": "interline_equation", + "image_path": "6c885fc524dc9e072ef6b44df93fc4809a19f07582e36c8423a970c39b38f389.jpg" + } + ] + } + ], + "index": 14.5, + "virtual_lines": [ + { + "bbox": [ + 196, + 442, + 414, + 457.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 196, + 457.0, + 414, + 472.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 196, + 472.0, + 414, + 487.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 196, + 487.0, + 414, + 502.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 196, + 502.0, + 414, + 517.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 196, + 517.0, + 414, + 532.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 547, + 504, + 583 + ], + "lines": [ + { + "bbox": [ + 105, + 547, + 505, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 392, + 561 + ], + "score": 1.0, + "content": "The step from the first to the second row comes from analyzing the event", + "type": "text" + }, + { + "bbox": [ + 392, + 547, + 438, + 559 + ], + "score": 0.93, + "content": "S ^ { k } \\cap b _ { k } = s", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 547, + 505, + 561 + ], + "score": 1.0, + "content": "using sequential", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 558, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 188, + 572 + ], + "score": 1.0, + "content": "sampling: to sample", + "type": "text" + }, + { + "bbox": [ + 189, + 559, + 201, + 569 + ], + "score": 0.89, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 558, + 244, + 572 + ], + "score": 1.0, + "content": "(including", + "type": "text" + }, + { + "bbox": [ + 245, + 561, + 250, + 569 + ], + "score": 0.56, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 558, + 274, + 572 + ], + "score": 1.0, + "content": ") with", + "type": "text" + }, + { + "bbox": [ + 274, + 561, + 280, + 569 + ], + "score": 0.77, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 558, + 318, + 572 + ], + "score": 1.0, + "content": "being the", + "type": "text" + }, + { + "bbox": [ + 319, + 560, + 326, + 569 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 558, + 506, + 572 + ], + "score": 1.0, + "content": "-th element means that we should first sample", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 107, + 568, + 504, + 584 + ], + "spans": [ + { + "bbox": [ + 107, + 570, + 143, + 583 + ], + "score": 0.92, + "content": "S ^ { k } \\setminus \\{ s \\bar { \\} }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 568, + 271, + 584 + ], + "score": 1.0, + "content": "(in any order), and then sample", + "type": "text" + }, + { + "bbox": [ + 271, + 573, + 277, + 580 + ], + "score": 0.78, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 568, + 413, + 584 + ], + "score": 1.0, + "content": "from the distribution restricted to", + "type": "text" + }, + { + "bbox": [ + 414, + 569, + 475, + 583 + ], + "score": 0.92, + "content": "D \\setminus \\left( S ^ { k } \\setminus \\left\\{ s \\right\\} \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 568, + 482, + 584 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 494, + 572, + 504, + 581 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 623, + 151, + 635 + ], + "lines": [ + { + "bbox": [ + 105, + 622, + 152, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 152, + 636 + ], + "score": 1.0, + "content": "Lemma 2.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "interline_equation", + "bbox": [ + 183, + 646, + 427, + 677 + ], + "lines": [ + { + "bbox": [ + 183, + 646, + 427, + 677 + ], + "spans": [ + { + "bbox": [ + 183, + 646, + 427, + 677 + ], + "score": 0.93, + "content": "p ( S ) + p ( S \\setminus \\{ s \\} ) { \\frac { 1 - \\sum _ { s ^ { \\prime } \\in S } p ( s ^ { \\prime } ) } { 1 - \\sum _ { s ^ { \\prime } \\in S \\setminus \\{ s \\} } p ( s ^ { \\prime } ) } } = p ^ { D \\setminus \\{ s \\} } ( S \\setminus \\{ s \\} )", + "type": "interline_equation", + "image_path": "7c0852d8179f1a62f8ea46378e393a74a336a7f30eadf02092aad28ae432b7d6.jpg" + } + ] + } + ], + "index": 22.5, + "virtual_lines": [ + { + "bbox": [ + 183, + 646, + 427, + 661.5 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 183, + 661.5, + 427, + 677.0 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 719, + 374, + 734 + ], + "lines": [ + { + "bbox": [ + 105, + 718, + 375, + 736 + ], + "spans": [ + { + "bbox": [ + 105, + 718, + 206, + 736 + ], + "score": 1.0, + "content": "Dividing equation 33 by", + "type": "text" + }, + { + "bbox": [ + 206, + 720, + 274, + 734 + ], + "score": 0.93, + "content": "\\begin{array} { r } { 1 - \\sum _ { s ^ { \\prime } \\in S } p ( s ^ { \\prime } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 718, + 375, + 736 + ], + "score": 1.0, + "content": "on both sides, we obtain", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + } + ], + "page_idx": 16, + "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": "17", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 104, + 82, + 470, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 470, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 470, + 95 + ], + "score": 1.0, + "content": "C.2 RAO-BLACKWELLIZATION OF THE STOCHASTIC SUM-AND-SAMPLE ESTIMATOR", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 107, + 504, + 131 + ], + "lines": [ + { + "bbox": [ + 105, + 107, + 505, + 121 + ], + "spans": [ + { + "bbox": [ + 105, + 107, + 505, + 121 + ], + "score": 1.0, + "content": "In this section we give the proof that Rao-Blackwellizing the stochastic sum-and-sample estimator", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 119, + 257, + 131 + ], + "spans": [ + { + "bbox": [ + 105, + 119, + 257, + 131 + ], + "score": 1.0, + "content": "results in the unordered set estimator.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 107, + 505, + 131 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 138, + 505, + 162 + ], + "lines": [ + { + "bbox": [ + 106, + 138, + 506, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 506, + 151 + ], + "score": 1.0, + "content": "Theorem 4. Rao-Blackwellizing the stochastic sum-and-sample estimator results in the unordered", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 151, + 176, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 176, + 162 + ], + "score": 1.0, + "content": "set estimator, i.e.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 138, + 506, + 162 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 120, + 176, + 473, + 217 + ], + "lines": [ + { + "bbox": [ + 120, + 176, + 473, + 217 + ], + "spans": [ + { + "bbox": [ + 120, + 176, + 473, + 217 + ], + "score": 0.94, + "content": "\\mathbb { E } _ { B ^ { k } \\sim p ( B ^ { k } | S ^ { k } ) } \\left[ \\sum _ { j = 1 } ^ { k - 1 } p ( b _ { j } ) f ( b _ { j } ) + \\left( 1 - \\sum _ { j = 1 } ^ { k - 1 } p ( b _ { j } ) \\right) f ( b _ { k } ) \\right] = \\sum _ { s \\in S ^ { k } } p ( s ) R ( S ^ { k } , s ) f ( s ) .", + "type": "interline_equation", + "image_path": "0b9d7c9d1ed7944469fbeac8c9a5bc6f5f685b09515131a1595aefaf726d7cb7.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 120, + 176, + 473, + 189.66666666666666 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 120, + 189.66666666666666, + 473, + 203.33333333333331 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 120, + 203.33333333333331, + 473, + 216.99999999999997 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 262, + 327, + 275 + ], + "lines": [ + { + "bbox": [ + 106, + 262, + 328, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 262, + 328, + 276 + ], + "score": 1.0, + "content": "Proof. To give the proof, we first prove three Lemmas.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7, + "bbox_fs": [ + 106, + 262, + 328, + 276 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 312, + 151, + 324 + ], + "lines": [ + { + "bbox": [ + 106, + 312, + 152, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 152, + 324 + ], + "score": 1.0, + "content": "Lemma 1.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 106, + 312, + 152, + 324 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 199, + 336, + 412, + 366 + ], + "lines": [ + { + "bbox": [ + 199, + 336, + 412, + 366 + ], + "spans": [ + { + "bbox": [ + 199, + 336, + 412, + 366 + ], + "score": 0.92, + "content": "P ( b _ { k } = s | S ^ { k } ) = { \\frac { p ( S ^ { k } \\setminus \\{ s \\} ) } { p ( S ^ { k } ) } } { \\frac { p ( s ) } { 1 - \\sum _ { s ^ { \\prime } \\in S ^ { k } \\setminus \\{ s \\} } p ( s ^ { \\prime } ) } }", + "type": "interline_equation", + "image_path": "317c6fc716831ad249f80ed035ca691c5c122a60da3a87b0f11283a54e6d79c1.jpg" + } + ] + } + ], + "index": 9.5, + "virtual_lines": [ + { + "bbox": [ + 199, + 336, + 412, + 351.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 199, + 351.0, + 412, + 366.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 412, + 491, + 426 + ], + "lines": [ + { + "bbox": [ + 105, + 412, + 492, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 246, + 427 + ], + "score": 1.0, + "content": "Proof. Similar to the derivation of", + "type": "text" + }, + { + "bbox": [ + 246, + 413, + 304, + 426 + ], + "score": 0.92, + "content": "P ( b _ { 1 } = s | S ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 412, + 492, + 427 + ], + "score": 1.0, + "content": "(equation 10 in the main paper), we can write:", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 412, + 492, + 427 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 196, + 442, + 414, + 532 + ], + "lines": [ + { + "bbox": [ + 196, + 442, + 414, + 532 + ], + "spans": [ + { + "bbox": [ + 196, + 442, + 414, + 532 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { P ( b _ { k } = s | S ^ { k } ) = \\displaystyle \\frac { P ( S ^ { k } \\cap b _ { k } = s ) } { p ( S ^ { k } ) } } \\\\ & { \\qquad = \\displaystyle \\frac { p ( S ^ { k } \\setminus \\{ s \\} ) p ^ { D \\setminus ( S ^ { k } \\setminus \\{ s \\} ) } ( s ) } { p ( S ^ { k } ) } } \\\\ & { \\qquad = \\displaystyle \\frac { p ( S ^ { k } \\setminus \\{ s \\} ) } { p ( S ^ { k } ) } \\displaystyle \\frac { p ( s ) } { 1 - \\sum _ { s ^ { \\prime } \\in S ^ { k } \\setminus \\{ s \\} } p ( s ^ { \\prime } ) } . } \\end{array}", + "type": "interline_equation", + "image_path": "6c885fc524dc9e072ef6b44df93fc4809a19f07582e36c8423a970c39b38f389.jpg" + } + ] + } + ], + "index": 14.5, + "virtual_lines": [ + { + "bbox": [ + 196, + 442, + 414, + 457.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 196, + 457.0, + 414, + 472.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 196, + 472.0, + 414, + 487.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 196, + 487.0, + 414, + 502.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 196, + 502.0, + 414, + 517.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 196, + 517.0, + 414, + 532.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 547, + 504, + 583 + ], + "lines": [ + { + "bbox": [ + 105, + 547, + 505, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 392, + 561 + ], + "score": 1.0, + "content": "The step from the first to the second row comes from analyzing the event", + "type": "text" + }, + { + "bbox": [ + 392, + 547, + 438, + 559 + ], + "score": 0.93, + "content": "S ^ { k } \\cap b _ { k } = s", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 547, + 505, + 561 + ], + "score": 1.0, + "content": "using sequential", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 558, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 188, + 572 + ], + "score": 1.0, + "content": "sampling: to sample", + "type": "text" + }, + { + "bbox": [ + 189, + 559, + 201, + 569 + ], + "score": 0.89, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 558, + 244, + 572 + ], + "score": 1.0, + "content": "(including", + "type": "text" + }, + { + "bbox": [ + 245, + 561, + 250, + 569 + ], + "score": 0.56, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 558, + 274, + 572 + ], + "score": 1.0, + "content": ") with", + "type": "text" + }, + { + "bbox": [ + 274, + 561, + 280, + 569 + ], + "score": 0.77, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 558, + 318, + 572 + ], + "score": 1.0, + "content": "being the", + "type": "text" + }, + { + "bbox": [ + 319, + 560, + 326, + 569 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 558, + 506, + 572 + ], + "score": 1.0, + "content": "-th element means that we should first sample", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 107, + 568, + 504, + 584 + ], + "spans": [ + { + "bbox": [ + 107, + 570, + 143, + 583 + ], + "score": 0.92, + "content": "S ^ { k } \\setminus \\{ s \\bar { \\} }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 568, + 271, + 584 + ], + "score": 1.0, + "content": "(in any order), and then sample", + "type": "text" + }, + { + "bbox": [ + 271, + 573, + 277, + 580 + ], + "score": 0.78, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 568, + 413, + 584 + ], + "score": 1.0, + "content": "from the distribution restricted to", + "type": "text" + }, + { + "bbox": [ + 414, + 569, + 475, + 583 + ], + "score": 0.92, + "content": "D \\setminus \\left( S ^ { k } \\setminus \\left\\{ s \\right\\} \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 568, + 482, + 584 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 494, + 572, + 504, + 581 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 547, + 506, + 584 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 623, + 151, + 635 + ], + "lines": [ + { + "bbox": [ + 105, + 622, + 152, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 152, + 636 + ], + "score": 1.0, + "content": "Lemma 2.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 622, + 152, + 636 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 183, + 646, + 427, + 677 + ], + "lines": [ + { + "bbox": [ + 183, + 646, + 427, + 677 + ], + "spans": [ + { + "bbox": [ + 183, + 646, + 427, + 677 + ], + "score": 0.93, + "content": "p ( S ) + p ( S \\setminus \\{ s \\} ) { \\frac { 1 - \\sum _ { s ^ { \\prime } \\in S } p ( s ^ { \\prime } ) } { 1 - \\sum _ { s ^ { \\prime } \\in S \\setminus \\{ s \\} } p ( s ^ { \\prime } ) } } = p ^ { D \\setminus \\{ s \\} } ( S \\setminus \\{ s \\} )", + "type": "interline_equation", + "image_path": "7c0852d8179f1a62f8ea46378e393a74a336a7f30eadf02092aad28ae432b7d6.jpg" + } + ] + } + ], + "index": 22.5, + "virtual_lines": [ + { + "bbox": [ + 183, + 646, + 427, + 661.5 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 183, + 661.5, + 427, + 677.0 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 719, + 374, + 734 + ], + "lines": [ + { + "bbox": [ + 105, + 718, + 375, + 736 + ], + "spans": [ + { + "bbox": [ + 105, + 718, + 206, + 736 + ], + "score": 1.0, + "content": "Dividing equation 33 by", + "type": "text" + }, + { + "bbox": [ + 206, + 720, + 274, + 734 + ], + "score": 0.93, + "content": "\\begin{array} { r } { 1 - \\sum _ { s ^ { \\prime } \\in S } p ( s ^ { \\prime } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 718, + 375, + 736 + ], + "score": 1.0, + "content": "on both sides, we obtain", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 718, + 375, + 736 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 133, + 94 + ], + "lines": [ + { + "bbox": [ + 104, + 81, + 135, + 97 + ], + "spans": [ + { + "bbox": [ + 104, + 81, + 135, + 97 + ], + "score": 1.0, + "content": "Proof.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 107, + 99, + 500, + 396 + ], + "lines": [ + { + "bbox": [ + 107, + 99, + 500, + 396 + ], + "spans": [ + { + "bbox": [ + 107, + 99, + 500, + 396 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\quad _ { 1 } - \\sum _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } ( \\mathsf { E } ^ { ( k ) } , \\mathsf { \\Lambda } _ { k } ^ { 2 } ) } \\\\ & { = \\sum _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } ( \\mathsf { E } ^ { ( k ) } , \\mathsf { \\Lambda } _ { k } ^ { 2 } ) \\le \\epsilon _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } } \\\\ & { \\quad _ { 1 } - \\sum _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } \\Big ( \\mathsf { E } ^ { ( k ) } \\frac { \\epsilon _ { k \\in \\mathcal { N } _ { k } } } { 1 - \\sum _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } ( \\mathsf { E } ^ { ( k ) } , \\mathsf { \\Lambda } _ { k } ^ { 2 } ) } + \\mathsf { E } \\eta ^ { \\mathsf { C P S } _ { k } } \\Big ) + \\mathsf { E } ^ { ( k ) } \\frac { \\epsilon _ { k \\in \\mathcal { N } _ { k } } } { 1 - \\sum _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } ( \\mathsf { E } ^ { ( k ) } , \\mathsf { \\Lambda } _ { k } ^ { 2 } ) } } \\\\ & = \\sum _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } ( \\mathsf { E } ^ { ( k ) } , \\mathsf { \\Lambda } _ { k } ^ { 2 } ) \\le \\epsilon _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } \\le \\epsilon _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } \\le \\epsilon _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } - \\sum _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } \\frac { \\mathsf { E } ^ { ( k ) } } { 1 - \\sum _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } ( \\mathsf { E } ^ { ( k ) } , \\mathsf { \\Lambda } _ { k } ^ { 2 } ) } \\\\ & \\quad _ { 1 } - \\sum _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } ( \\mathsf { E } ^ { ( k ) } \\frac { \\epsilon _ { k \\in \\mathcal { N } _ { k } } } 1 - \\sum _ k \\ \\end{array}", + "type": "interline_equation", + "image_path": "debf08f1ef48f69c0813d75fce15229f44e5af54cbf61079be4a12af114655f3.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 107, + 99, + 500, + 198.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 198.0, + 500, + 297.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 107, + 297.0, + 500, + 396.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 417, + 399, + 431 + ], + "lines": [ + { + "bbox": [ + 105, + 416, + 401, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 169, + 433 + ], + "score": 1.0, + "content": "Multiplying by", + "type": "text" + }, + { + "bbox": [ + 169, + 418, + 237, + 431 + ], + "score": 0.93, + "content": "\\begin{array} { r } { 1 - \\sum _ { s ^ { \\prime } \\in S } p ( s ^ { \\prime } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 416, + 401, + 433 + ], + "score": 1.0, + "content": "and rearranging terms proves Lemma 2.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 452, + 151, + 463 + ], + "lines": [ + { + "bbox": [ + 106, + 451, + 152, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 152, + 464 + ], + "score": 1.0, + "content": "Lemma 3.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "interline_equation", + "bbox": [ + 187, + 466, + 423, + 506 + ], + "lines": [ + { + "bbox": [ + 187, + 466, + 423, + 506 + ], + "spans": [ + { + "bbox": [ + 187, + 466, + 423, + 506 + ], + "score": 0.94, + "content": "p ( s ) + \\left( 1 - \\sum _ { s ^ { \\prime } \\in S ^ { k } } p ( s ^ { \\prime } ) \\right) P ( b _ { k } = s | S ^ { k } ) = p ( s ) R ( S ^ { k } , s )", + "type": "interline_equation", + "image_path": "f849db37933e0df0ed77d77694a6da529c83d635bb55db7375ebdcf9171da09e.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 187, + 466, + 423, + 486.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 187, + 486.0, + 423, + 506.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 532, + 331, + 545 + ], + "lines": [ + { + "bbox": [ + 105, + 532, + 331, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 331, + 545 + ], + "score": 1.0, + "content": "Proof. First using Lemma 1 and then Lemma 2 we find", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 173, + 554, + 435, + 712 + ], + "lines": [ + { + "bbox": [ + 173, + 554, + 435, + 712 + ], + "spans": [ + { + "bbox": [ + 173, + 554, + 435, + 712 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\quad p ( s ) + \\left( 1 - \\displaystyle \\sum _ { s ^ { \\prime } \\in S ^ { k } } p ( s ^ { \\prime } ) \\right) P ( b _ { k } = s | S ^ { k } ) } \\\\ & { = p ( s ) + \\left( 1 - \\displaystyle \\sum _ { s ^ { \\prime } \\in S ^ { k } } p ( s ^ { \\prime } ) \\right) \\frac { p ( S ^ { k } \\setminus \\{ S \\} ) } { p ( S ^ { k } ) } \\frac { p ( s ) } { 1 - \\sum _ { s ^ { \\prime } \\in S ^ { k } \\setminus \\{ S \\} } p ( s ^ { \\prime } ) } } \\\\ & { = \\frac { p ( S ) } { p ( S ^ { k } ) } \\left( p ( S ^ { k } ) + \\displaystyle \\frac { 1 - \\sum _ { s ^ { \\prime } \\in S ^ { k } \\setminus \\{ P ( s ^ { \\prime } ) \\} } p ( s ^ { \\prime } ) } { 1 - \\sum _ { s ^ { \\prime } \\in S ^ { k } \\setminus \\{ S \\} } p ( s ^ { \\prime } ) } p ( S ^ { k } \\setminus \\{ s \\} ) \\right) } \\\\ & { = \\frac { p ( s ) } { p ( S ^ { k } ) } p ^ { D \\setminus \\{ S \\} } ( S ^ { k } \\setminus \\{ s \\} ) } \\\\ & { \\quad - p ( s ) R ( S ^ { k } , s ) . } \\end{array}", + "type": "interline_equation", + "image_path": "377d01fdf87f7d91e3098db3d580ff2258aaa4b7ed1d2cd4efd8f12a2bc3fc82.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 173, + 554, + 435, + 606.6666666666666 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 173, + 606.6666666666666, + 435, + 659.3333333333333 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 173, + 659.3333333333333, + 435, + 711.9999999999999 + ], + "spans": [], + "index": 11 + } + ] + } + ], + "page_idx": 17, + "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, + 311, + 761 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 763 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 763 + ], + "score": 1.0, + "content": "18", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 720, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 495, + 722, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 495, + 722, + 505, + 732 + ], + "score": 0.998, + "content": "□", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 418, + 505, + 429 + ], + "lines": [ + { + "bbox": [ + 496, + 420, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 496, + 420, + 505, + 429 + ], + "score": 0.998, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 133, + 94 + ], + "lines": [ + { + "bbox": [ + 104, + 81, + 135, + 97 + ], + "spans": [ + { + "bbox": [ + 104, + 81, + 135, + 97 + ], + "score": 1.0, + "content": "Proof.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 104, + 81, + 135, + 97 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 107, + 99, + 500, + 396 + ], + "lines": [ + { + "bbox": [ + 107, + 99, + 500, + 396 + ], + "spans": [ + { + "bbox": [ + 107, + 99, + 500, + 396 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\quad _ { 1 } - \\sum _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } ( \\mathsf { E } ^ { ( k ) } , \\mathsf { \\Lambda } _ { k } ^ { 2 } ) } \\\\ & { = \\sum _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } ( \\mathsf { E } ^ { ( k ) } , \\mathsf { \\Lambda } _ { k } ^ { 2 } ) \\le \\epsilon _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } } \\\\ & { \\quad _ { 1 } - \\sum _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } \\Big ( \\mathsf { E } ^ { ( k ) } \\frac { \\epsilon _ { k \\in \\mathcal { N } _ { k } } } { 1 - \\sum _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } ( \\mathsf { E } ^ { ( k ) } , \\mathsf { \\Lambda } _ { k } ^ { 2 } ) } + \\mathsf { E } \\eta ^ { \\mathsf { C P S } _ { k } } \\Big ) + \\mathsf { E } ^ { ( k ) } \\frac { \\epsilon _ { k \\in \\mathcal { N } _ { k } } } { 1 - \\sum _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } ( \\mathsf { E } ^ { ( k ) } , \\mathsf { \\Lambda } _ { k } ^ { 2 } ) } } \\\\ & = \\sum _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } ( \\mathsf { E } ^ { ( k ) } , \\mathsf { \\Lambda } _ { k } ^ { 2 } ) \\le \\epsilon _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } \\le \\epsilon _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } \\le \\epsilon _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } - \\sum _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } \\frac { \\mathsf { E } ^ { ( k ) } } { 1 - \\sum _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } ( \\mathsf { E } ^ { ( k ) } , \\mathsf { \\Lambda } _ { k } ^ { 2 } ) } \\\\ & \\quad _ { 1 } - \\sum _ { k \\in \\mathcal { N } _ { k } } ^ { \\mathsf { C P S } _ { k } } ( \\mathsf { E } ^ { ( k ) } \\frac { \\epsilon _ { k \\in \\mathcal { N } _ { k } } } 1 - \\sum _ k \\ \\end{array}", + "type": "interline_equation", + "image_path": "debf08f1ef48f69c0813d75fce15229f44e5af54cbf61079be4a12af114655f3.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 107, + 99, + 500, + 198.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 198.0, + 500, + 297.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 107, + 297.0, + 500, + 396.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 417, + 399, + 431 + ], + "lines": [ + { + "bbox": [ + 105, + 416, + 401, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 169, + 433 + ], + "score": 1.0, + "content": "Multiplying by", + "type": "text" + }, + { + "bbox": [ + 169, + 418, + 237, + 431 + ], + "score": 0.93, + "content": "\\begin{array} { r } { 1 - \\sum _ { s ^ { \\prime } \\in S } p ( s ^ { \\prime } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 416, + 401, + 433 + ], + "score": 1.0, + "content": "and rearranging terms proves Lemma 2.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 416, + 401, + 433 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 452, + 151, + 463 + ], + "lines": [ + { + "bbox": [ + 106, + 451, + 152, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 152, + 464 + ], + "score": 1.0, + "content": "Lemma 3.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 106, + 451, + 152, + 464 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 187, + 466, + 423, + 506 + ], + "lines": [ + { + "bbox": [ + 187, + 466, + 423, + 506 + ], + "spans": [ + { + "bbox": [ + 187, + 466, + 423, + 506 + ], + "score": 0.94, + "content": "p ( s ) + \\left( 1 - \\sum _ { s ^ { \\prime } \\in S ^ { k } } p ( s ^ { \\prime } ) \\right) P ( b _ { k } = s | S ^ { k } ) = p ( s ) R ( S ^ { k } , s )", + "type": "interline_equation", + "image_path": "f849db37933e0df0ed77d77694a6da529c83d635bb55db7375ebdcf9171da09e.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 187, + 466, + 423, + 486.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 187, + 486.0, + 423, + 506.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 532, + 331, + 545 + ], + "lines": [ + { + "bbox": [ + 105, + 532, + 331, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 331, + 545 + ], + "score": 1.0, + "content": "Proof. First using Lemma 1 and then Lemma 2 we find", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 532, + 331, + 545 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 173, + 554, + 435, + 712 + ], + "lines": [ + { + "bbox": [ + 173, + 554, + 435, + 712 + ], + "spans": [ + { + "bbox": [ + 173, + 554, + 435, + 712 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\quad p ( s ) + \\left( 1 - \\displaystyle \\sum _ { s ^ { \\prime } \\in S ^ { k } } p ( s ^ { \\prime } ) \\right) P ( b _ { k } = s | S ^ { k } ) } \\\\ & { = p ( s ) + \\left( 1 - \\displaystyle \\sum _ { s ^ { \\prime } \\in S ^ { k } } p ( s ^ { \\prime } ) \\right) \\frac { p ( S ^ { k } \\setminus \\{ S \\} ) } { p ( S ^ { k } ) } \\frac { p ( s ) } { 1 - \\sum _ { s ^ { \\prime } \\in S ^ { k } \\setminus \\{ S \\} } p ( s ^ { \\prime } ) } } \\\\ & { = \\frac { p ( S ) } { p ( S ^ { k } ) } \\left( p ( S ^ { k } ) + \\displaystyle \\frac { 1 - \\sum _ { s ^ { \\prime } \\in S ^ { k } \\setminus \\{ P ( s ^ { \\prime } ) \\} } p ( s ^ { \\prime } ) } { 1 - \\sum _ { s ^ { \\prime } \\in S ^ { k } \\setminus \\{ S \\} } p ( s ^ { \\prime } ) } p ( S ^ { k } \\setminus \\{ s \\} ) \\right) } \\\\ & { = \\frac { p ( s ) } { p ( S ^ { k } ) } p ^ { D \\setminus \\{ S \\} } ( S ^ { k } \\setminus \\{ s \\} ) } \\\\ & { \\quad - p ( s ) R ( S ^ { k } , s ) . } \\end{array}", + "type": "interline_equation", + "image_path": "377d01fdf87f7d91e3098db3d580ff2258aaa4b7ed1d2cd4efd8f12a2bc3fc82.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 173, + 554, + 435, + 606.6666666666666 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 173, + 606.6666666666666, + 435, + 659.3333333333333 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 173, + 659.3333333333333, + 435, + 711.9999999999999 + ], + "spans": [], + "index": 11 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 81, + 504, + 106 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 348, + 96 + ], + "score": 1.0, + "content": "Now we can complete the proof of Theorem 4 by adding", + "type": "text" + }, + { + "bbox": [ + 348, + 82, + 476, + 95 + ], + "score": 0.92, + "content": "p ( b _ { k } ) f ( b _ { k } ) - p ( b _ { k } ) f ( b _ { k } ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "to the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 477, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 282, + 106 + ], + "score": 1.0, + "content": "estimator, moving the terms independent of", + "type": "text" + }, + { + "bbox": [ + 282, + 93, + 296, + 104 + ], + "score": 0.89, + "content": "B ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 92, + 477, + 106 + ], + "score": 1.0, + "content": "outside the expectation and using Lemma 3:", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 175, + 111, + 433, + 339 + ], + "lines": [ + { + "bbox": [ + 175, + 111, + 433, + 339 + ], + "spans": [ + { + "bbox": [ + 175, + 111, + 433, + 339 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & \\quad \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\overline { { \\wp } } } \\\\ & \\quad - \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\overline { { \\wp } } } \\\\ & \\quad - \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\overline { { \\wp } } } \\\\ & { \\quad - \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\infty } [ ( 1 - \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } ) f ^ { ( i i i i ) } } ] f ^ { ( i i i i ) } } \\\\ & \\quad - \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\overline { { \\wp } } } \\\\ & { \\quad - \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\overline { { \\wp } } } [ f ^ { ( i i ) } + \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\overline { { \\wp } } } ] f ^ { ( i i i i ) } } \\\\ & { \\quad - \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\overline { { \\wp } } } ( f ^ { ( i i i ) } + \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\overline { { \\wp } } } ) f ^ { ( i i i i ) } } \\\\ & { \\quad - \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\overline { { \\wp } } } ( f ^ { ( i i i ) } + \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\overline { { \\wp } } } ) f ^ { ( i i i ) } } \\\\ & \\quad \\quad - \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\overline { { \\wp } } } ( f ^ { ( i i ) } + \\sum _ \\end{array}", + "type": "interline_equation", + "image_path": "30c1840633db154981388efc9babecf7dc93fdfb0811c0fef42d725b51213f11.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 175, + 111, + 433, + 124.41176470588235 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 175, + 124.41176470588235, + 433, + 137.8235294117647 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 175, + 137.8235294117647, + 433, + 151.23529411764704 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 175, + 151.23529411764704, + 433, + 164.6470588235294 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 175, + 164.6470588235294, + 433, + 178.05882352941174 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 175, + 178.05882352941174, + 433, + 191.4705882352941 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 175, + 191.4705882352941, + 433, + 204.88235294117644 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 175, + 204.88235294117644, + 433, + 218.29411764705878 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 175, + 218.29411764705878, + 433, + 231.70588235294113 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 175, + 231.70588235294113, + 433, + 245.11764705882348 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 175, + 245.11764705882348, + 433, + 258.52941176470586 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 175, + 258.52941176470586, + 433, + 271.94117647058823 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 175, + 271.94117647058823, + 433, + 285.3529411764706 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 175, + 285.3529411764706, + 433, + 298.764705882353 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 175, + 298.764705882353, + 433, + 312.17647058823536 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 175, + 312.17647058823536, + 433, + 325.58823529411774 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 175, + 325.58823529411774, + 433, + 339.0000000000001 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "title", + "bbox": [ + 106, + 366, + 453, + 378 + ], + "lines": [ + { + "bbox": [ + 106, + 366, + 455, + 379 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 455, + 379 + ], + "score": 1.0, + "content": "C.3 THE STOCHASTIC SUM-AND-SAMPLE ESTIMATOR WITH MULTIPLE SAMPLES", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 386, + 506, + 465 + ], + "lines": [ + { + "bbox": [ + 106, + 386, + 506, + 399 + ], + "spans": [ + { + "bbox": [ + 106, + 386, + 506, + 399 + ], + "score": 1.0, + "content": "As was discussed in Liu et al. (2019), one can trade off the number of summed terms and number of", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 398, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 505, + 410 + ], + "score": 1.0, + "content": "sampled terms to maximize the achieved variance reduction. As a generalization of Theorem 4 (the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 409, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 106, + 409, + 278, + 420 + ], + "score": 1.0, + "content": "stochastic sum-and-sample estimator with", + "type": "text" + }, + { + "bbox": [ + 279, + 409, + 303, + 419 + ], + "score": 0.88, + "content": "k - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 409, + 505, + 420 + ], + "score": 1.0, + "content": "summed terms), we introduce here the stochastic", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 419, + 505, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 256, + 432 + ], + "score": 1.0, + "content": "sum-and-sample estimator that sums", + "type": "text" + }, + { + "bbox": [ + 256, + 420, + 284, + 430 + ], + "score": 0.91, + "content": "k - m", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 419, + 362, + 432 + ], + "score": 1.0, + "content": "terms and samples", + "type": "text" + }, + { + "bbox": [ + 363, + 420, + 392, + 430 + ], + "score": 0.9, + "content": "m > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 419, + 505, + 432 + ], + "score": 1.0, + "content": "terms without replacement.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 430, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 392, + 443 + ], + "score": 1.0, + "content": "To estimate the sampled term, we use the unordered set estimator on the", + "type": "text" + }, + { + "bbox": [ + 393, + 432, + 403, + 441 + ], + "score": 0.74, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 430, + 505, + 443 + ], + "score": 1.0, + "content": "samples without replace-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 441, + 506, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 245, + 454 + ], + "score": 1.0, + "content": "ment, on the domain restricted to", + "type": "text" + }, + { + "bbox": [ + 246, + 441, + 292, + 453 + ], + "score": 0.93, + "content": "D \\setminus B ^ { k - m }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 441, + 506, + 454 + ], + "score": 1.0, + "content": ". In general, we denote the unordered set estimator", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 451, + 244, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 203, + 466 + ], + "score": 1.0, + "content": "restricted to the domain", + "type": "text" + }, + { + "bbox": [ + 204, + 452, + 230, + 465 + ], + "score": 0.92, + "content": "D \\backslash C", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 451, + 244, + 466 + ], + "score": 1.0, + "content": "by", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23 + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 469, + 401, + 498 + ], + "lines": [ + { + "bbox": [ + 210, + 469, + 401, + 498 + ], + "spans": [ + { + "bbox": [ + 210, + 469, + 401, + 498 + ], + "score": 0.93, + "content": "e ^ { { \\bf U S } , D \\setminus C } ( S ^ { k } ) = \\sum _ { s \\in S ^ { k } \\setminus C } p ( s ) R ^ { D \\setminus C } ( S ^ { k } , s ) f ( s )", + "type": "interline_equation", + "image_path": "ae6f53cdd3e12b7696af2cbaed29929c0d66349ef59ae9486808cda4504d3d23.jpg" + } + ] + } + ], + "index": 27.5, + "virtual_lines": [ + { + "bbox": [ + 210, + 469, + 401, + 483.5 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 210, + 483.5, + 401, + 498.0 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 504, + 504, + 527 + ], + "lines": [ + { + "bbox": [ + 105, + 502, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 133, + 519 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 504, + 188, + 517 + ], + "score": 0.93, + "content": "R ^ { D \\setminus C } ( S ^ { k } , s )", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 502, + 389, + 519 + ], + "score": 1.0, + "content": "is the leave-one-out ratio restricted to the domain", + "type": "text" + }, + { + "bbox": [ + 389, + 505, + 416, + 517 + ], + "score": 0.92, + "content": "D \\backslash C", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 502, + 506, + 519 + ], + "score": 1.0, + "content": ", similar to the second", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 515, + 270, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 270, + 528 + ], + "score": 1.0, + "content": "order leave-one-out ratio in equation 18:", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "interline_equation", + "bbox": [ + 211, + 531, + 399, + 565 + ], + "lines": [ + { + "bbox": [ + 211, + 531, + 399, + 565 + ], + "spans": [ + { + "bbox": [ + 211, + 531, + 399, + 565 + ], + "score": 0.94, + "content": "R ^ { D \\setminus C } ( S ^ { k } , s ) = { \\frac { p _ { \\theta } ^ { ( D \\setminus C ) \\setminus \\{ s \\} } ( ( S ^ { k } \\setminus C ) \\setminus \\{ s \\} ) } { p _ { \\theta } ^ { D \\setminus C } ( S ^ { k } \\setminus C ) } } .", + "type": "interline_equation", + "image_path": "262dc87328c00006d729bdd5cefd83d20437f1eb35b0ef68dbc8d80f134f5054.jpg" + } + ] + } + ], + "index": 31.5, + "virtual_lines": [ + { + "bbox": [ + 211, + 531, + 399, + 548.0 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 211, + 548.0, + 399, + 565.0 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 570, + 504, + 594 + ], + "lines": [ + { + "bbox": [ + 105, + 569, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 221, + 585 + ], + "score": 1.0, + "content": "While we can also constrain", + "type": "text" + }, + { + "bbox": [ + 221, + 570, + 279, + 583 + ], + "score": 0.93, + "content": "S ^ { k } \\subseteq ( D \\backslash C )", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 569, + 505, + 585 + ], + "score": 1.0, + "content": ", this definition is consistent with equation 18 and allows", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 582, + 186, + 594 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 186, + 594 + ], + "score": 1.0, + "content": "simplified notation.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 106, + 596, + 504, + 619 + ], + "lines": [ + { + "bbox": [ + 106, + 596, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 435, + 609 + ], + "score": 1.0, + "content": "Theorem 5. Rao-Blackwellizing the stochastic sum-and-sample estimator with", + "type": "text" + }, + { + "bbox": [ + 435, + 597, + 468, + 607 + ], + "score": 0.89, + "content": "m \\ > \\ 1", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 596, + 505, + 609 + ], + "score": 1.0, + "content": "samples", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 608, + 272, + 621 + ], + "spans": [ + { + "bbox": [ + 106, + 608, + 272, + 621 + ], + "score": 1.0, + "content": "results in the unordered set estimator, i.e.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 622, + 510, + 663 + ], + "lines": [ + { + "bbox": [ + 111, + 622, + 510, + 663 + ], + "spans": [ + { + "bbox": [ + 111, + 622, + 510, + 663 + ], + "score": 0.94, + "content": "\\ ? \\ ? \\complement _ { B ^ { k } \\sim p ( B ^ { k } \\mid S ^ { k } ) } \\left[ \\sum _ { j = 1 } ^ { k - m } p ( b _ { j } ) f ( b _ { j } ) + \\left( 1 - \\sum _ { j = 1 } ^ { k - m } p ( b _ { j } ) \\right) e ^ { U S , D \\setminus B ^ { k - m } } ( S ^ { k } ) \\right] = \\sum _ { s \\in S ^ { k } } p ( s ) R ( S ^ { k } , s ) f ( s ) .", + "type": "interline_equation", + "image_path": "c9ac6892079fc79013e0e1be3f725409a4351778d410ea7fdeda86d9dc2a5412.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 111, + 622, + 510, + 635.6666666666666 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 111, + 635.6666666666666, + 510, + 649.3333333333333 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 111, + 649.3333333333333, + 510, + 662.9999999999999 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 684, + 358, + 696 + ], + "lines": [ + { + "bbox": [ + 106, + 684, + 358, + 696 + ], + "spans": [ + { + "bbox": [ + 106, + 684, + 358, + 696 + ], + "score": 1.0, + "content": "Proof. Recall that for the unordered set estimator, it holds that", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 700, + 424, + 717 + ], + "lines": [ + { + "bbox": [ + 186, + 700, + 424, + 717 + ], + "spans": [ + { + "bbox": [ + 186, + 700, + 424, + 717 + ], + "score": 0.9, + "content": "e ^ { \\mathrm { U S } } ( S ^ { k } ) = \\mathbb { E } _ { b _ { 1 } \\sim p ( b _ { 1 } | S ^ { k } ) } \\left[ f ( b _ { 1 } ) \\right] = \\mathbb { E } _ { x \\sim p ( x ) } \\left[ f ( x ) \\middle | x \\in S ^ { k } \\right]", + "type": "interline_equation", + "image_path": "530122c7b7780623682b4f30cd05eb78970872a06f15a7c9c139ea6d2478afee.jpg" + } + ] + } + ], + "index": 41, + "virtual_lines": [ + { + "bbox": [ + 186, + 700, + 424, + 717 + ], + "spans": [], + "index": 41 + } + ] + } + ], + "page_idx": 18, + "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, + 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, + 341, + 505, + 352 + ], + "lines": [ + { + "bbox": [ + 496, + 343, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 496, + 343, + 505, + 352 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 721, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 495, + 722, + 505, + 731 + ], + "spans": [ + { + "bbox": [ + 495, + 722, + 505, + 731 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 81, + 504, + 106 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 348, + 96 + ], + "score": 1.0, + "content": "Now we can complete the proof of Theorem 4 by adding", + "type": "text" + }, + { + "bbox": [ + 348, + 82, + 476, + 95 + ], + "score": 0.92, + "content": "p ( b _ { k } ) f ( b _ { k } ) - p ( b _ { k } ) f ( b _ { k } ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "to the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 477, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 282, + 106 + ], + "score": 1.0, + "content": "estimator, moving the terms independent of", + "type": "text" + }, + { + "bbox": [ + 282, + 93, + 296, + 104 + ], + "score": 0.89, + "content": "B ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 92, + 477, + 106 + ], + "score": 1.0, + "content": "outside the expectation and using Lemma 3:", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 506, + 106 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 175, + 111, + 433, + 339 + ], + "lines": [ + { + "bbox": [ + 175, + 111, + 433, + 339 + ], + "spans": [ + { + "bbox": [ + 175, + 111, + 433, + 339 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & \\quad \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\overline { { \\wp } } } \\\\ & \\quad - \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\overline { { \\wp } } } \\\\ & \\quad - \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\overline { { \\wp } } } \\\\ & { \\quad - \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\infty } [ ( 1 - \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } ) f ^ { ( i i i i ) } } ] f ^ { ( i i i i ) } } \\\\ & \\quad - \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\overline { { \\wp } } } \\\\ & { \\quad - \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\overline { { \\wp } } } [ f ^ { ( i i ) } + \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\overline { { \\wp } } } ] f ^ { ( i i i i ) } } \\\\ & { \\quad - \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\overline { { \\wp } } } ( f ^ { ( i i i ) } + \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\overline { { \\wp } } } ) f ^ { ( i i i i ) } } \\\\ & { \\quad - \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\overline { { \\wp } } } ( f ^ { ( i i i ) } + \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\overline { { \\wp } } } ) f ^ { ( i i i ) } } \\\\ & \\quad \\quad - \\sum _ { \\varrho ^ { \\prime } \\to \\varrho ^ { \\prime } \\to \\overline { { \\wp } } } ( f ^ { ( i i ) } + \\sum _ \\end{array}", + "type": "interline_equation", + "image_path": "30c1840633db154981388efc9babecf7dc93fdfb0811c0fef42d725b51213f11.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 175, + 111, + 433, + 124.41176470588235 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 175, + 124.41176470588235, + 433, + 137.8235294117647 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 175, + 137.8235294117647, + 433, + 151.23529411764704 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 175, + 151.23529411764704, + 433, + 164.6470588235294 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 175, + 164.6470588235294, + 433, + 178.05882352941174 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 175, + 178.05882352941174, + 433, + 191.4705882352941 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 175, + 191.4705882352941, + 433, + 204.88235294117644 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 175, + 204.88235294117644, + 433, + 218.29411764705878 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 175, + 218.29411764705878, + 433, + 231.70588235294113 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 175, + 231.70588235294113, + 433, + 245.11764705882348 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 175, + 245.11764705882348, + 433, + 258.52941176470586 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 175, + 258.52941176470586, + 433, + 271.94117647058823 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 175, + 271.94117647058823, + 433, + 285.3529411764706 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 175, + 285.3529411764706, + 433, + 298.764705882353 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 175, + 298.764705882353, + 433, + 312.17647058823536 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 175, + 312.17647058823536, + 433, + 325.58823529411774 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 175, + 325.58823529411774, + 433, + 339.0000000000001 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "title", + "bbox": [ + 106, + 366, + 453, + 378 + ], + "lines": [ + { + "bbox": [ + 106, + 366, + 455, + 379 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 455, + 379 + ], + "score": 1.0, + "content": "C.3 THE STOCHASTIC SUM-AND-SAMPLE ESTIMATOR WITH MULTIPLE SAMPLES", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 386, + 506, + 465 + ], + "lines": [ + { + "bbox": [ + 106, + 386, + 506, + 399 + ], + "spans": [ + { + "bbox": [ + 106, + 386, + 506, + 399 + ], + "score": 1.0, + "content": "As was discussed in Liu et al. (2019), one can trade off the number of summed terms and number of", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 398, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 505, + 410 + ], + "score": 1.0, + "content": "sampled terms to maximize the achieved variance reduction. As a generalization of Theorem 4 (the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 409, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 106, + 409, + 278, + 420 + ], + "score": 1.0, + "content": "stochastic sum-and-sample estimator with", + "type": "text" + }, + { + "bbox": [ + 279, + 409, + 303, + 419 + ], + "score": 0.88, + "content": "k - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 409, + 505, + 420 + ], + "score": 1.0, + "content": "summed terms), we introduce here the stochastic", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 419, + 505, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 256, + 432 + ], + "score": 1.0, + "content": "sum-and-sample estimator that sums", + "type": "text" + }, + { + "bbox": [ + 256, + 420, + 284, + 430 + ], + "score": 0.91, + "content": "k - m", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 419, + 362, + 432 + ], + "score": 1.0, + "content": "terms and samples", + "type": "text" + }, + { + "bbox": [ + 363, + 420, + 392, + 430 + ], + "score": 0.9, + "content": "m > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 419, + 505, + 432 + ], + "score": 1.0, + "content": "terms without replacement.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 430, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 392, + 443 + ], + "score": 1.0, + "content": "To estimate the sampled term, we use the unordered set estimator on the", + "type": "text" + }, + { + "bbox": [ + 393, + 432, + 403, + 441 + ], + "score": 0.74, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 430, + 505, + 443 + ], + "score": 1.0, + "content": "samples without replace-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 441, + 506, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 245, + 454 + ], + "score": 1.0, + "content": "ment, on the domain restricted to", + "type": "text" + }, + { + "bbox": [ + 246, + 441, + 292, + 453 + ], + "score": 0.93, + "content": "D \\setminus B ^ { k - m }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 441, + 506, + 454 + ], + "score": 1.0, + "content": ". In general, we denote the unordered set estimator", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 451, + 244, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 203, + 466 + ], + "score": 1.0, + "content": "restricted to the domain", + "type": "text" + }, + { + "bbox": [ + 204, + 452, + 230, + 465 + ], + "score": 0.92, + "content": "D \\backslash C", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 451, + 244, + 466 + ], + "score": 1.0, + "content": "by", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 386, + 506, + 466 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 469, + 401, + 498 + ], + "lines": [ + { + "bbox": [ + 210, + 469, + 401, + 498 + ], + "spans": [ + { + "bbox": [ + 210, + 469, + 401, + 498 + ], + "score": 0.93, + "content": "e ^ { { \\bf U S } , D \\setminus C } ( S ^ { k } ) = \\sum _ { s \\in S ^ { k } \\setminus C } p ( s ) R ^ { D \\setminus C } ( S ^ { k } , s ) f ( s )", + "type": "interline_equation", + "image_path": "ae6f53cdd3e12b7696af2cbaed29929c0d66349ef59ae9486808cda4504d3d23.jpg" + } + ] + } + ], + "index": 27.5, + "virtual_lines": [ + { + "bbox": [ + 210, + 469, + 401, + 483.5 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 210, + 483.5, + 401, + 498.0 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 504, + 504, + 527 + ], + "lines": [ + { + "bbox": [ + 105, + 502, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 133, + 519 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 504, + 188, + 517 + ], + "score": 0.93, + "content": "R ^ { D \\setminus C } ( S ^ { k } , s )", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 502, + 389, + 519 + ], + "score": 1.0, + "content": "is the leave-one-out ratio restricted to the domain", + "type": "text" + }, + { + "bbox": [ + 389, + 505, + 416, + 517 + ], + "score": 0.92, + "content": "D \\backslash C", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 502, + 506, + 519 + ], + "score": 1.0, + "content": ", similar to the second", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 515, + 270, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 270, + 528 + ], + "score": 1.0, + "content": "order leave-one-out ratio in equation 18:", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 502, + 506, + 528 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 211, + 531, + 399, + 565 + ], + "lines": [ + { + "bbox": [ + 211, + 531, + 399, + 565 + ], + "spans": [ + { + "bbox": [ + 211, + 531, + 399, + 565 + ], + "score": 0.94, + "content": "R ^ { D \\setminus C } ( S ^ { k } , s ) = { \\frac { p _ { \\theta } ^ { ( D \\setminus C ) \\setminus \\{ s \\} } ( ( S ^ { k } \\setminus C ) \\setminus \\{ s \\} ) } { p _ { \\theta } ^ { D \\setminus C } ( S ^ { k } \\setminus C ) } } .", + "type": "interline_equation", + "image_path": "262dc87328c00006d729bdd5cefd83d20437f1eb35b0ef68dbc8d80f134f5054.jpg" + } + ] + } + ], + "index": 31.5, + "virtual_lines": [ + { + "bbox": [ + 211, + 531, + 399, + 548.0 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 211, + 548.0, + 399, + 565.0 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 570, + 504, + 594 + ], + "lines": [ + { + "bbox": [ + 105, + 569, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 221, + 585 + ], + "score": 1.0, + "content": "While we can also constrain", + "type": "text" + }, + { + "bbox": [ + 221, + 570, + 279, + 583 + ], + "score": 0.93, + "content": "S ^ { k } \\subseteq ( D \\backslash C )", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 569, + 505, + 585 + ], + "score": 1.0, + "content": ", this definition is consistent with equation 18 and allows", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 582, + 186, + 594 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 186, + 594 + ], + "score": 1.0, + "content": "simplified notation.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 569, + 505, + 594 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 596, + 504, + 619 + ], + "lines": [ + { + "bbox": [ + 106, + 596, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 435, + 609 + ], + "score": 1.0, + "content": "Theorem 5. Rao-Blackwellizing the stochastic sum-and-sample estimator with", + "type": "text" + }, + { + "bbox": [ + 435, + 597, + 468, + 607 + ], + "score": 0.89, + "content": "m \\ > \\ 1", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 596, + 505, + 609 + ], + "score": 1.0, + "content": "samples", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 608, + 272, + 621 + ], + "spans": [ + { + "bbox": [ + 106, + 608, + 272, + 621 + ], + "score": 1.0, + "content": "results in the unordered set estimator, i.e.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 106, + 596, + 505, + 621 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 622, + 510, + 663 + ], + "lines": [ + { + "bbox": [ + 111, + 622, + 510, + 663 + ], + "spans": [ + { + "bbox": [ + 111, + 622, + 510, + 663 + ], + "score": 0.94, + "content": "\\ ? \\ ? \\complement _ { B ^ { k } \\sim p ( B ^ { k } \\mid S ^ { k } ) } \\left[ \\sum _ { j = 1 } ^ { k - m } p ( b _ { j } ) f ( b _ { j } ) + \\left( 1 - \\sum _ { j = 1 } ^ { k - m } p ( b _ { j } ) \\right) e ^ { U S , D \\setminus B ^ { k - m } } ( S ^ { k } ) \\right] = \\sum _ { s \\in S ^ { k } } p ( s ) R ( S ^ { k } , s ) f ( s ) .", + "type": "interline_equation", + "image_path": "c9ac6892079fc79013e0e1be3f725409a4351778d410ea7fdeda86d9dc2a5412.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 111, + 622, + 510, + 635.6666666666666 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 111, + 635.6666666666666, + 510, + 649.3333333333333 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 111, + 649.3333333333333, + 510, + 662.9999999999999 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 684, + 358, + 696 + ], + "lines": [ + { + "bbox": [ + 106, + 684, + 358, + 696 + ], + "spans": [ + { + "bbox": [ + 106, + 684, + 358, + 696 + ], + "score": 1.0, + "content": "Proof. Recall that for the unordered set estimator, it holds that", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40, + "bbox_fs": [ + 106, + 684, + 358, + 696 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 700, + 424, + 717 + ], + "lines": [ + { + "bbox": [ + 186, + 700, + 424, + 717 + ], + "spans": [ + { + "bbox": [ + 186, + 700, + 424, + 717 + ], + "score": 0.9, + "content": "e ^ { \\mathrm { U S } } ( S ^ { k } ) = \\mathbb { E } _ { b _ { 1 } \\sim p ( b _ { 1 } | S ^ { k } ) } \\left[ f ( b _ { 1 } ) \\right] = \\mathbb { E } _ { x \\sim p ( x ) } \\left[ f ( x ) \\middle | x \\in S ^ { k } \\right]", + "type": "interline_equation", + "image_path": "530122c7b7780623682b4f30cd05eb78970872a06f15a7c9c139ea6d2478afee.jpg" + } + ] + } + ], + "index": 41, + "virtual_lines": [ + { + "bbox": [ + 186, + 700, + 424, + 717 + ], + "spans": [], + "index": 41 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 443, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 444, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 356, + 97 + ], + "score": 1.0, + "content": "which for the restricted equivalent (with restricted distribution", + "type": "text" + }, + { + "bbox": [ + 357, + 81, + 380, + 94 + ], + "score": 0.9, + "content": "p ^ { D \\setminus C }", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 79, + 444, + 97 + ], + "score": 1.0, + "content": ") translates into", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 145, + 98, + 466, + 114 + ], + "lines": [ + { + "bbox": [ + 145, + 98, + 466, + 114 + ], + "spans": [ + { + "bbox": [ + 145, + 98, + 466, + 114 + ], + "score": 0.89, + "content": "e ^ { \\mathrm { U S } , D \\setminus C } ( S ^ { k } ) = \\mathbb { E } _ { x \\sim p ^ { D \\setminus C } ( x ) } \\left[ f ( x ) \\big | x \\in S ^ { k } \\right] = \\mathbb { E } _ { x \\sim p ( x ) } \\left[ f ( x ) \\big | x \\in S ^ { k } , x \\not \\in C \\right] .", + "type": "interline_equation", + "image_path": "95f74612504c9115d909cb70e4eade4f448adb087befe3d0cd39383613e5771d.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 145, + 98, + 466, + 114 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 118, + 505, + 164 + ], + "lines": [ + { + "bbox": [ + 104, + 117, + 507, + 132 + ], + "spans": [ + { + "bbox": [ + 104, + 117, + 243, + 132 + ], + "score": 1.0, + "content": "Now we consider the distribution", + "type": "text" + }, + { + "bbox": [ + 243, + 118, + 322, + 131 + ], + "score": 0.9, + "content": "b _ { k - m + 1 } | S ^ { k } , B ^ { k - m }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 117, + 507, + 132 + ], + "score": 1.0, + "content": ": the distribution of the first element sampled", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 127, + 504, + 143 + ], + "spans": [ + { + "bbox": [ + 104, + 127, + 261, + 143 + ], + "score": 1.0, + "content": "(without replacement) after sampling", + "type": "text" + }, + { + "bbox": [ + 262, + 131, + 289, + 140 + ], + "score": 0.87, + "content": "B ^ { k - m }", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 127, + 497, + 143 + ], + "score": 1.0, + "content": ", given (conditionally on the event) that the set of", + "type": "text" + }, + { + "bbox": [ + 497, + 131, + 504, + 140 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 140, + 506, + 153 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 151, + 153 + ], + "score": 1.0, + "content": "samples is", + "type": "text" + }, + { + "bbox": [ + 152, + 141, + 164, + 151 + ], + "score": 0.88, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 140, + 217, + 153 + ], + "score": 1.0, + "content": ", so we have", + "type": "text" + }, + { + "bbox": [ + 218, + 141, + 277, + 153 + ], + "score": 0.92, + "content": "b _ { k - m + 1 } \\stackrel { - } { \\in } S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 140, + 297, + 153 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 297, + 141, + 371, + 153 + ], + "score": 0.92, + "content": "\\mathsf { \\bar { b } } _ { k - m + 1 } \\notin B ^ { k - m }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 140, + 506, + 153 + ], + "score": 1.0, + "content": ". This means that its conditional", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 151, + 462, + 165 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 166, + 165 + ], + "score": 1.0, + "content": "expectation of", + "type": "text" + }, + { + "bbox": [ + 166, + 152, + 213, + 164 + ], + "score": 0.92, + "content": "f ( b _ { k - m + 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 151, + 388, + 165 + ], + "score": 1.0, + "content": "is the restricted unordered set estimator for", + "type": "text" + }, + { + "bbox": [ + 388, + 152, + 436, + 162 + ], + "score": 0.91, + "content": "C = B ^ { k - m }", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 151, + 462, + 165 + ], + "score": 1.0, + "content": "since", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3.5 + }, + { + "type": "interline_equation", + "bbox": [ + 176, + 167, + 435, + 202 + ], + "lines": [ + { + "bbox": [ + 176, + 167, + 435, + 202 + ], + "spans": [ + { + "bbox": [ + 176, + 167, + 435, + 202 + ], + "score": 0.93, + "content": "\\begin{array} { r l } { { e ^ { \\mathrm { U S } , D \\setminus B ^ { k - m } } ( S ^ { k } ) = \\mathbb { E } _ { x \\sim p ( x ) } [ f ( x ) \\vert x \\in S ^ { k } , x \\not \\in B ^ { k - m } ] } \\quad } & { } \\\\ & { = \\mathbb { E } _ { b _ { k - m + 1 } \\sim p ( b _ { k - m + 1 } \\mid S ^ { k } , B ^ { k - m } ) } [ f ( b _ { k - m + 1 } ) ] . } \\end{array}", + "type": "interline_equation", + "image_path": "07a2fbd8fe56d665e43e09c3001882623419cefdd4f57e0ab0f3785a4c9020f6.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 176, + 167, + 435, + 178.66666666666666 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 176, + 178.66666666666666, + 435, + 190.33333333333331 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 176, + 190.33333333333331, + 435, + 201.99999999999997 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 203, + 505, + 248 + ], + "lines": [ + { + "bbox": [ + 106, + 203, + 505, + 215 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 505, + 215 + ], + "score": 1.0, + "content": "Observing that the definition (equation 42) of the stochastic sum-and-sample estimator does not", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 214, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 214, + 249, + 226 + ], + "score": 1.0, + "content": "depend on the actual order of the", + "type": "text" + }, + { + "bbox": [ + 249, + 216, + 259, + 224 + ], + "score": 0.77, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 214, + 505, + 226 + ], + "score": 1.0, + "content": "samples, and using equation 45, we can reduce the multi-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 225, + 505, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 376, + 237 + ], + "score": 1.0, + "content": "sample estimator to the stochastic sum-and-sample estimator with", + "type": "text" + }, + { + "bbox": [ + 376, + 225, + 447, + 236 + ], + "score": 0.91, + "content": "k ^ { \\prime } = k - m + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 225, + 505, + 237 + ], + "score": 1.0, + "content": ", such that the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 236, + 236, + 248 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 236, + 248 + ], + "score": 1.0, + "content": "result follows from equation 36.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5 + }, + { + "type": "interline_equation", + "bbox": [ + 105, + 252, + 500, + 519 + ], + "lines": [ + { + "bbox": [ + 105, + 252, + 500, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 500, + 519 + ], + "score": 0.96, + "content": "\\begin{array} { c } { { \\displaystyle \\begin{array} { l } { { { \\cal L } _ { \\mathrm { e x c } , \\mathrm { t r i g h } , \\mathrm { \\scriptsize ~ 1 . . } } \\sum _ { j = 0 } ^ { N } \\phi _ { j } \\Big | Z _ { j } ^ { ( k ) } \\phi _ { j } \\Big | + ( \\displaystyle { 1 - \\sum _ { j = 0 } ^ { N } \\phi _ { j } } ) Z _ { j } ^ { ( k ) } z ^ { ( k ) } z ^ { ( k ) } - ( \\beta _ { j } - \\gamma ) \\delta _ { j } ^ { \\prime } \\Big | } } } \\\\ { { \\displaystyle - \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\mathrm { \\cdots ~ 1 } } } \\end{array} \\} } \\\\ \\displaystyle - \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } ( \\displaystyle { 1 - \\sum _ { j = 0 } ^ { N } \\phi _ { j } } ) \\Bigg | \\displaystyle { 1 - \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { k = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { l = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { l = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { l = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { l = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } } \\\\ \\displaystyle - \\sum _ j = \\end{array}", + "type": "interline_equation", + "image_path": "d8526bc56964422d83f6abb56b1004632519ad61650cc88894ec9d0df48c8e72.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 105, + 252, + 500, + 341.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 105, + 341.0, + 500, + 430.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 105, + 430.0, + 500, + 519.0 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "title", + "bbox": [ + 106, + 531, + 343, + 544 + ], + "lines": [ + { + "bbox": [ + 105, + 530, + 344, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 344, + 547 + ], + "score": 1.0, + "content": "D THE IMPORTANCE-WEIGHTED ESTIMATOR", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "title", + "bbox": [ + 107, + 555, + 440, + 567 + ], + "lines": [ + { + "bbox": [ + 106, + 555, + 441, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 555, + 441, + 568 + ], + "score": 1.0, + "content": "D.1 RAO-BLACKWELLIZATION OF THE IMPORTANCE-WEIGHTED ESTIMATOR", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 105, + 575, + 505, + 598 + ], + "lines": [ + { + "bbox": [ + 105, + 576, + 504, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 504, + 588 + ], + "score": 1.0, + "content": "In this section we give the proof that Rao-Blackwellizing the importance-weighted estimator results", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 587, + 230, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 230, + 599 + ], + "score": 1.0, + "content": "in the unordered set estimator.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 106, + 601, + 504, + 623 + ], + "lines": [ + { + "bbox": [ + 105, + 600, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 505, + 614 + ], + "score": 1.0, + "content": "Theorem 6. Rao-Blackwellizing the importance-weighted estimator results in the unordered set", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 612, + 166, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 166, + 624 + ], + "score": 1.0, + "content": "estimator, i.e.:", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "interline_equation", + "bbox": [ + 175, + 626, + 435, + 666 + ], + "lines": [ + { + "bbox": [ + 175, + 626, + 435, + 666 + ], + "spans": [ + { + "bbox": [ + 175, + 626, + 435, + 666 + ], + "score": 0.96, + "content": "\\mathbb { E } _ { \\kappa \\sim p ( \\kappa | S ^ { k } ) } \\left[ \\sum _ { s \\in S ^ { k } } \\frac { p ( s ) } { 1 - F _ { \\phi _ { s } } ( \\kappa ) } f ( s ) \\right] = \\sum _ { s \\in S ^ { k } } p ( s ) R ( S ^ { k } , s ) f ( s ) .", + "type": "interline_equation", + "image_path": "01e8ad49e2b31698b00a425d91b8cf16f8e6028f37590b04c330c6d3a3bf6f9c.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 175, + 626, + 435, + 639.3333333333334 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 175, + 639.3333333333334, + 435, + 652.6666666666667 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 175, + 652.6666666666667, + 435, + 666.0000000000001 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 675, + 506, + 709 + ], + "lines": [ + { + "bbox": [ + 105, + 673, + 506, + 688 + ], + "spans": [ + { + "bbox": [ + 105, + 673, + 506, + 688 + ], + "score": 1.0, + "content": "Here we have slightly rewritten the definition of the importance-weighted estimator, using that", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 107, + 685, + 506, + 699 + ], + "spans": [ + { + "bbox": [ + 107, + 686, + 271, + 698 + ], + "score": 0.91, + "content": "q ( s , a ) = P ( g _ { \\phi _ { s } } ^ { \\mathrm { ~ ~ } } > \\stackrel { \\cdot } { a } ) = 1 - F _ { \\phi _ { s } } ( a )", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 685, + 304, + 699 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 304, + 686, + 321, + 698 + ], + "score": 0.9, + "content": "F _ { \\phi _ { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 685, + 506, + 699 + ], + "score": 1.0, + "content": "is the CDF of the Gumbel distribution (see", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 696, + 164, + 710 + ], + "spans": [ + { + "bbox": [ + 105, + 696, + 164, + 710 + ], + "score": 1.0, + "content": "Appendix A).", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 720, + 285, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 719, + 286, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 719, + 286, + 734 + ], + "score": 1.0, + "content": "Proof. We first prove the following Lemma:", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + } + ], + "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 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 443, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 444, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 356, + 97 + ], + "score": 1.0, + "content": "which for the restricted equivalent (with restricted distribution", + "type": "text" + }, + { + "bbox": [ + 357, + 81, + 380, + 94 + ], + "score": 0.9, + "content": "p ^ { D \\setminus C }", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 79, + 444, + 97 + ], + "score": 1.0, + "content": ") translates into", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 79, + 444, + 97 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 145, + 98, + 466, + 114 + ], + "lines": [ + { + "bbox": [ + 145, + 98, + 466, + 114 + ], + "spans": [ + { + "bbox": [ + 145, + 98, + 466, + 114 + ], + "score": 0.89, + "content": "e ^ { \\mathrm { U S } , D \\setminus C } ( S ^ { k } ) = \\mathbb { E } _ { x \\sim p ^ { D \\setminus C } ( x ) } \\left[ f ( x ) \\big | x \\in S ^ { k } \\right] = \\mathbb { E } _ { x \\sim p ( x ) } \\left[ f ( x ) \\big | x \\in S ^ { k } , x \\not \\in C \\right] .", + "type": "interline_equation", + "image_path": "95f74612504c9115d909cb70e4eade4f448adb087befe3d0cd39383613e5771d.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 145, + 98, + 466, + 114 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 118, + 505, + 164 + ], + "lines": [ + { + "bbox": [ + 104, + 117, + 507, + 132 + ], + "spans": [ + { + "bbox": [ + 104, + 117, + 243, + 132 + ], + "score": 1.0, + "content": "Now we consider the distribution", + "type": "text" + }, + { + "bbox": [ + 243, + 118, + 322, + 131 + ], + "score": 0.9, + "content": "b _ { k - m + 1 } | S ^ { k } , B ^ { k - m }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 117, + 507, + 132 + ], + "score": 1.0, + "content": ": the distribution of the first element sampled", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 127, + 504, + 143 + ], + "spans": [ + { + "bbox": [ + 104, + 127, + 261, + 143 + ], + "score": 1.0, + "content": "(without replacement) after sampling", + "type": "text" + }, + { + "bbox": [ + 262, + 131, + 289, + 140 + ], + "score": 0.87, + "content": "B ^ { k - m }", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 127, + 497, + 143 + ], + "score": 1.0, + "content": ", given (conditionally on the event) that the set of", + "type": "text" + }, + { + "bbox": [ + 497, + 131, + 504, + 140 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 140, + 506, + 153 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 151, + 153 + ], + "score": 1.0, + "content": "samples is", + "type": "text" + }, + { + "bbox": [ + 152, + 141, + 164, + 151 + ], + "score": 0.88, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 140, + 217, + 153 + ], + "score": 1.0, + "content": ", so we have", + "type": "text" + }, + { + "bbox": [ + 218, + 141, + 277, + 153 + ], + "score": 0.92, + "content": "b _ { k - m + 1 } \\stackrel { - } { \\in } S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 140, + 297, + 153 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 297, + 141, + 371, + 153 + ], + "score": 0.92, + "content": "\\mathsf { \\bar { b } } _ { k - m + 1 } \\notin B ^ { k - m }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 140, + 506, + 153 + ], + "score": 1.0, + "content": ". This means that its conditional", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 151, + 462, + 165 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 166, + 165 + ], + "score": 1.0, + "content": "expectation of", + "type": "text" + }, + { + "bbox": [ + 166, + 152, + 213, + 164 + ], + "score": 0.92, + "content": "f ( b _ { k - m + 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 151, + 388, + 165 + ], + "score": 1.0, + "content": "is the restricted unordered set estimator for", + "type": "text" + }, + { + "bbox": [ + 388, + 152, + 436, + 162 + ], + "score": 0.91, + "content": "C = B ^ { k - m }", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 151, + 462, + 165 + ], + "score": 1.0, + "content": "since", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3.5, + "bbox_fs": [ + 104, + 117, + 507, + 165 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 176, + 167, + 435, + 202 + ], + "lines": [ + { + "bbox": [ + 176, + 167, + 435, + 202 + ], + "spans": [ + { + "bbox": [ + 176, + 167, + 435, + 202 + ], + "score": 0.93, + "content": "\\begin{array} { r l } { { e ^ { \\mathrm { U S } , D \\setminus B ^ { k - m } } ( S ^ { k } ) = \\mathbb { E } _ { x \\sim p ( x ) } [ f ( x ) \\vert x \\in S ^ { k } , x \\not \\in B ^ { k - m } ] } \\quad } & { } \\\\ & { = \\mathbb { E } _ { b _ { k - m + 1 } \\sim p ( b _ { k - m + 1 } \\mid S ^ { k } , B ^ { k - m } ) } [ f ( b _ { k - m + 1 } ) ] . } \\end{array}", + "type": "interline_equation", + "image_path": "07a2fbd8fe56d665e43e09c3001882623419cefdd4f57e0ab0f3785a4c9020f6.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 176, + 167, + 435, + 178.66666666666666 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 176, + 178.66666666666666, + 435, + 190.33333333333331 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 176, + 190.33333333333331, + 435, + 201.99999999999997 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 203, + 505, + 248 + ], + "lines": [ + { + "bbox": [ + 106, + 203, + 505, + 215 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 505, + 215 + ], + "score": 1.0, + "content": "Observing that the definition (equation 42) of the stochastic sum-and-sample estimator does not", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 214, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 214, + 249, + 226 + ], + "score": 1.0, + "content": "depend on the actual order of the", + "type": "text" + }, + { + "bbox": [ + 249, + 216, + 259, + 224 + ], + "score": 0.77, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 214, + 505, + 226 + ], + "score": 1.0, + "content": "samples, and using equation 45, we can reduce the multi-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 225, + 505, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 376, + 237 + ], + "score": 1.0, + "content": "sample estimator to the stochastic sum-and-sample estimator with", + "type": "text" + }, + { + "bbox": [ + 376, + 225, + 447, + 236 + ], + "score": 0.91, + "content": "k ^ { \\prime } = k - m + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 225, + 505, + 237 + ], + "score": 1.0, + "content": ", such that the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 236, + 236, + 248 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 236, + 248 + ], + "score": 1.0, + "content": "result follows from equation 36.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 203, + 505, + 248 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 105, + 252, + 500, + 519 + ], + "lines": [ + { + "bbox": [ + 105, + 252, + 500, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 500, + 519 + ], + "score": 0.96, + "content": "\\begin{array} { c } { { \\displaystyle \\begin{array} { l } { { { \\cal L } _ { \\mathrm { e x c } , \\mathrm { t r i g h } , \\mathrm { \\scriptsize ~ 1 . . } } \\sum _ { j = 0 } ^ { N } \\phi _ { j } \\Big | Z _ { j } ^ { ( k ) } \\phi _ { j } \\Big | + ( \\displaystyle { 1 - \\sum _ { j = 0 } ^ { N } \\phi _ { j } } ) Z _ { j } ^ { ( k ) } z ^ { ( k ) } z ^ { ( k ) } - ( \\beta _ { j } - \\gamma ) \\delta _ { j } ^ { \\prime } \\Big | } } } \\\\ { { \\displaystyle - \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\mathrm { \\cdots ~ 1 } } } \\end{array} \\} } \\\\ \\displaystyle - \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } ( \\displaystyle { 1 - \\sum _ { j = 0 } ^ { N } \\phi _ { j } } ) \\Bigg | \\displaystyle { 1 - \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { k = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { l = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { l = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { l = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { j = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } \\sum _ { l = 0 } ^ { N } \\mathrm { \\scriptsize ~ 1 . } } \\\\ \\displaystyle - \\sum _ j = \\end{array}", + "type": "interline_equation", + "image_path": "d8526bc56964422d83f6abb56b1004632519ad61650cc88894ec9d0df48c8e72.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 105, + 252, + 500, + 341.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 105, + 341.0, + 500, + 430.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 105, + 430.0, + 500, + 519.0 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "title", + "bbox": [ + 106, + 531, + 343, + 544 + ], + "lines": [ + { + "bbox": [ + 105, + 530, + 344, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 344, + 547 + ], + "score": 1.0, + "content": "D THE IMPORTANCE-WEIGHTED ESTIMATOR", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "title", + "bbox": [ + 107, + 555, + 440, + 567 + ], + "lines": [ + { + "bbox": [ + 106, + 555, + 441, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 555, + 441, + 568 + ], + "score": 1.0, + "content": "D.1 RAO-BLACKWELLIZATION OF THE IMPORTANCE-WEIGHTED ESTIMATOR", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 105, + 575, + 505, + 598 + ], + "lines": [ + { + "bbox": [ + 105, + 576, + 504, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 504, + 588 + ], + "score": 1.0, + "content": "In this section we give the proof that Rao-Blackwellizing the importance-weighted estimator results", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 587, + 230, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 230, + 599 + ], + "score": 1.0, + "content": "in the unordered set estimator.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 576, + 504, + 599 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 601, + 504, + 623 + ], + "lines": [ + { + "bbox": [ + 105, + 600, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 505, + 614 + ], + "score": 1.0, + "content": "Theorem 6. Rao-Blackwellizing the importance-weighted estimator results in the unordered set", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 612, + 166, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 166, + 624 + ], + "score": 1.0, + "content": "estimator, i.e.:", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 600, + 505, + 624 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 175, + 626, + 435, + 666 + ], + "lines": [ + { + "bbox": [ + 175, + 626, + 435, + 666 + ], + "spans": [ + { + "bbox": [ + 175, + 626, + 435, + 666 + ], + "score": 0.96, + "content": "\\mathbb { E } _ { \\kappa \\sim p ( \\kappa | S ^ { k } ) } \\left[ \\sum _ { s \\in S ^ { k } } \\frac { p ( s ) } { 1 - F _ { \\phi _ { s } } ( \\kappa ) } f ( s ) \\right] = \\sum _ { s \\in S ^ { k } } p ( s ) R ( S ^ { k } , s ) f ( s ) .", + "type": "interline_equation", + "image_path": "01e8ad49e2b31698b00a425d91b8cf16f8e6028f37590b04c330c6d3a3bf6f9c.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 175, + 626, + 435, + 639.3333333333334 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 175, + 639.3333333333334, + 435, + 652.6666666666667 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 175, + 652.6666666666667, + 435, + 666.0000000000001 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 675, + 506, + 709 + ], + "lines": [ + { + "bbox": [ + 105, + 673, + 506, + 688 + ], + "spans": [ + { + "bbox": [ + 105, + 673, + 506, + 688 + ], + "score": 1.0, + "content": "Here we have slightly rewritten the definition of the importance-weighted estimator, using that", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 107, + 685, + 506, + 699 + ], + "spans": [ + { + "bbox": [ + 107, + 686, + 271, + 698 + ], + "score": 0.91, + "content": "q ( s , a ) = P ( g _ { \\phi _ { s } } ^ { \\mathrm { ~ ~ } } > \\stackrel { \\cdot } { a } ) = 1 - F _ { \\phi _ { s } } ( a )", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 685, + 304, + 699 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 304, + 686, + 321, + 698 + ], + "score": 0.9, + "content": "F _ { \\phi _ { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 685, + 506, + 699 + ], + "score": 1.0, + "content": "is the CDF of the Gumbel distribution (see", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 696, + 164, + 710 + ], + "spans": [ + { + "bbox": [ + 105, + 696, + 164, + 710 + ], + "score": 1.0, + "content": "Appendix A).", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 673, + 506, + 710 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 720, + 285, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 719, + 286, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 719, + 286, + 734 + ], + "score": 1.0, + "content": "Proof. We first prove the following Lemma:", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28, + "bbox_fs": [ + 106, + 719, + 286, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 151, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 152, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 152, + 94 + ], + "score": 1.0, + "content": "Lemma 4.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 226, + 90, + 385, + 119 + ], + "lines": [ + { + "bbox": [ + 226, + 90, + 385, + 119 + ], + "spans": [ + { + "bbox": [ + 226, + 90, + 385, + 119 + ], + "score": 0.95, + "content": "\\mathbb { E } _ { \\kappa \\sim p ( \\kappa | S ^ { k } ) } \\left[ \\frac { 1 } { 1 - F _ { \\phi _ { s } } ( \\kappa ) } \\right] = R ( S ^ { k } , s )", + "type": "interline_equation", + "image_path": "ea6ebad1366a3fc44c7c07e5829e5eaef7cab655a4b439ea9150102a75887e5b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 226, + 90, + 385, + 119 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 131, + 505, + 180 + ], + "lines": [ + { + "bbox": [ + 104, + 129, + 505, + 146 + ], + "spans": [ + { + "bbox": [ + 104, + 129, + 206, + 146 + ], + "score": 1.0, + "content": "Proof. Conditioning on", + "type": "text" + }, + { + "bbox": [ + 207, + 131, + 219, + 142 + ], + "score": 0.88, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 129, + 351, + 146 + ], + "score": 1.0, + "content": ", we know that the elements in", + "type": "text" + }, + { + "bbox": [ + 351, + 131, + 364, + 142 + ], + "score": 0.88, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 129, + 405, + 146 + ], + "score": 1.0, + "content": "have the", + "type": "text" + }, + { + "bbox": [ + 405, + 132, + 412, + 142 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 129, + 505, + 146 + ], + "score": 1.0, + "content": "largest perturbed log-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 175, + 156 + ], + "score": 1.0, + "content": "probabilities, so", + "type": "text" + }, + { + "bbox": [ + 176, + 145, + 183, + 153 + ], + "score": 0.71, + "content": "\\kappa", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 142, + 205, + 156 + ], + "score": 1.0, + "content": ", the", + "type": "text" + }, + { + "bbox": [ + 205, + 143, + 237, + 155 + ], + "score": 0.89, + "content": "( k + 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 142, + 505, + 156 + ], + "score": 1.0, + "content": "-th largest perturbed log-probability is the largest perturbed log-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 151, + 506, + 171 + ], + "spans": [ + { + "bbox": [ + 104, + 151, + 162, + 171 + ], + "score": 1.0, + "content": "probability in", + "type": "text" + }, + { + "bbox": [ + 163, + 154, + 192, + 166 + ], + "score": 0.92, + "content": "D \\backslash S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 151, + 246, + 171 + ], + "score": 1.0, + "content": ", and satisfies", + "type": "text" + }, + { + "bbox": [ + 247, + 154, + 453, + 169 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\kappa = \\operatorname* { m a x } _ { s \\in D \\backslash S ^ { k } } g _ { \\phi _ { s } } = g _ { \\phi _ { D \\backslash S ^ { k } } } \\sim \\mathrm { G u m b e l } ( \\phi _ { D \\backslash S ^ { k } } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 151, + 506, + 171 + ], + "score": 1.0, + "content": ". Computing", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 167, + 273, + 182 + ], + "spans": [ + { + "bbox": [ + 106, + 167, + 140, + 181 + ], + "score": 0.92, + "content": "p ( \\kappa | S ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 167, + 273, + 182 + ], + "score": 1.0, + "content": "using Bayes’ Theorem, we have", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3.5 + }, + { + "type": "interline_equation", + "bbox": [ + 183, + 185, + 427, + 216 + ], + "lines": [ + { + "bbox": [ + 183, + 185, + 427, + 216 + ], + "spans": [ + { + "bbox": [ + 183, + 185, + 427, + 216 + ], + "score": 0.92, + "content": "p ( \\kappa | S ^ { k } ) = \\frac { p ( S ^ { k } | \\kappa ) p ( \\kappa ) } { p ( S ^ { k } ) } = \\frac { \\prod _ { s \\in S ^ { k } } ( 1 - F _ { \\phi _ { s } } ( \\kappa ) ) f _ { \\phi _ { D \\setminus S ^ { k } } } ( \\kappa ) } { p ( S ^ { k } ) }", + "type": "interline_equation", + "image_path": "72d64bf455a71d7bfe77493ed53bfb56de65d59129300cc1d8bd30091b9c3013.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 183, + 185, + 427, + 200.5 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 183, + 200.5, + 427, + 216.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 226, + 421, + 240 + ], + "lines": [ + { + "bbox": [ + 104, + 223, + 417, + 244 + ], + "spans": [ + { + "bbox": [ + 104, + 223, + 317, + 244 + ], + "score": 1.0, + "content": "which allows us to compute (using equation 34 with", + "type": "text" + }, + { + "bbox": [ + 317, + 227, + 354, + 240 + ], + "score": 0.94, + "content": "C = \\{ s \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 223, + 372, + 244 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 372, + 228, + 417, + 241 + ], + "score": 0.9, + "content": "g _ { \\phi _ { D \\setminus S } } = \\kappa", + "type": "inline_equation" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 187, + 245, + 422, + 410 + ], + "lines": [ + { + "bbox": [ + 187, + 245, + 422, + 410 + ], + "spans": [ + { + "bbox": [ + 187, + 245, + 422, + 410 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\mathbb { E } _ { n \\sim p ( n | S ^ { k } ) } \\left[ \\frac { 1 } { 1 - F _ { \\phi _ { n } } ( \\kappa ) } \\right] } \\\\ & { = \\int _ { n = - \\infty } ^ { \\infty } p ( \\kappa | S ^ { k } ) \\frac { 1 } { 1 - F _ { \\phi _ { n } } ( \\kappa ) } \\partial \\kappa } \\\\ & { = \\int _ { \\kappa = - \\infty } ^ { \\infty } \\frac { \\prod _ { s \\in S ^ { k } } ( 1 - F _ { \\phi _ { s } } ( \\kappa ) ) f _ { \\phi _ { n ; s } } ( \\kappa ) } { p ( S ^ { k } ) } \\frac { 1 } { 1 - F _ { \\phi _ { n } } ( \\kappa ) } \\partial \\kappa } \\\\ & { = \\frac { 1 } { p ( S ^ { k } ) } \\int _ { \\kappa = - \\infty } ^ { \\infty } \\underset { s \\in S ^ { k } \\backslash \\{ s \\} } { \\prod } \\ ( 1 - F _ { \\phi _ { s } } ( \\kappa ) ) f _ { \\phi _ { n ; s } \\mu \\kappa } ( \\kappa ) \\partial \\kappa } \\\\ & { = \\frac { 1 } { p ( S ^ { k } ) } p ^ { D \\cup S } ( S \\setminus \\{ s \\} ) } \\\\ & { = R ( S ^ { k } , s ) , } \\end{array}", + "type": "interline_equation", + "image_path": "270db507263957445b50afe3dffcba35712863dac88728966242bbb04b5dec1b.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 187, + 245, + 422, + 260.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 187, + 260.0, + 422, + 275.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 187, + 275.0, + 422, + 290.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 187, + 290.0, + 422, + 305.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 187, + 305.0, + 422, + 320.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 187, + 320.0, + 422, + 335.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 187, + 335.0, + 422, + 350.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 187, + 350.0, + 422, + 365.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 187, + 365.0, + 422, + 380.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 187, + 380.0, + 422, + 395.0 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 187, + 395.0, + 422, + 410.0 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 438, + 205, + 450 + ], + "lines": [ + { + "bbox": [ + 106, + 437, + 206, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 206, + 452 + ], + "score": 1.0, + "content": "Using Lemma 4 we find", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "interline_equation", + "bbox": [ + 216, + 456, + 393, + 556 + ], + "lines": [ + { + "bbox": [ + 216, + 456, + 393, + 556 + ], + "spans": [ + { + "bbox": [ + 216, + 456, + 393, + 556 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\mathbb { E } _ { \\kappa \\sim p ( \\kappa | S ^ { k } ) } \\left[ \\displaystyle \\sum _ { s \\in S ^ { k } } \\frac { p ( s ) } { 1 - F _ { \\phi _ { s } } ( \\kappa ) } f ( s ) \\right] } \\\\ & { = \\displaystyle \\sum _ { s \\in S ^ { k } } p ( s ) \\mathbb { E } _ { \\kappa \\sim p ( \\kappa | S ^ { k } ) } \\left[ \\frac { 1 } { 1 - F _ { \\phi _ { s } } ( \\kappa ) } \\right] f ( s ) } \\\\ & { = \\displaystyle \\sum _ { s \\in S ^ { k } } p ( s ) R ( S ^ { k } , s ) f ( s ) . } \\end{array}", + "type": "interline_equation", + "image_path": "189a05ec559dd1c3ad78a3bb4788e233438705067db6a1ef44e13d2ded16f5f7.jpg" + } + ] + } + ], + "index": 23.5, + "virtual_lines": [ + { + "bbox": [ + 216, + 456, + 393, + 472.6666666666667 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 216, + 472.6666666666667, + 393, + 489.33333333333337 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 216, + 489.33333333333337, + 393, + 506.00000000000006 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 216, + 506.00000000000006, + 393, + 522.6666666666667 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 216, + 522.6666666666667, + 393, + 539.3333333333334 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 216, + 539.3333333333334, + 393, + 556.0 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "title", + "bbox": [ + 105, + 586, + 504, + 598 + ], + "lines": [ + { + "bbox": [ + 106, + 586, + 504, + 598 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 504, + 598 + ], + "score": 1.0, + "content": "D.2 THE IMPORTANCE-WEIGHTED POLICY GRADIENT ESTIMATOR WITH BUILT-IN BASELINE", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 606, + 505, + 652 + ], + "lines": [ + { + "bbox": [ + 104, + 605, + 505, + 620 + ], + "spans": [ + { + "bbox": [ + 104, + 605, + 505, + 620 + ], + "score": 1.0, + "content": "For self-containment we include this section, which is adapted from our unpublished workshop", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 618, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 104, + 618, + 506, + 630 + ], + "score": 1.0, + "content": "paper (Kool et al., 2019b). The importance-weighted policy gradient estimator combines REIN-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 628, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 104, + 628, + 506, + 642 + ], + "score": 1.0, + "content": "FORCE (Williams, 1992) with the importance-weighted estimator (Duffield et al., 2007; Vieira,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 638, + 506, + 654 + ], + "spans": [ + { + "bbox": [ + 104, + 638, + 431, + 654 + ], + "score": 1.0, + "content": "2017) in equation 15 which results in an unbiased estimator of the policy gradient", + "type": "text" + }, + { + "bbox": [ + 432, + 640, + 501, + 653 + ], + "score": 0.93, + "content": "\\nabla _ { \\pmb { \\theta } } \\mathbb { E } _ { p _ { \\pmb { \\theta } } ( \\pmb { x } ) } [ f _ { \\pmb { \\theta } } ( \\pmb { x } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 638, + 506, + 654 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5 + }, + { + "type": "interline_equation", + "bbox": [ + 164, + 658, + 447, + 690 + ], + "lines": [ + { + "bbox": [ + 164, + 658, + 447, + 690 + ], + "spans": [ + { + "bbox": [ + 164, + 658, + 447, + 690 + ], + "score": 0.94, + "content": "e ^ { \\mathrm { I W P G } } ( S ^ { k } , \\kappa ) = \\sum _ { s \\in S ^ { k } } \\frac { p _ { \\theta } ( s ) } { q _ { \\theta , \\kappa } ( s ) } \\nabla _ { \\theta } \\log p _ { \\theta } ( s ) f ( s ) = \\sum _ { s \\in S ^ { k } } \\frac { \\nabla _ { \\theta } p _ { \\theta } ( s ) } { q _ { \\theta , \\kappa } ( s ) } f ( s )", + "type": "interline_equation", + "image_path": "15056798f35b0a4a5f225aa5c7bdb4f9651cc7e2dc85aed31fd13666948ec7ab.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 164, + 658, + 447, + 668.6666666666666 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 164, + 668.6666666666666, + 447, + 679.3333333333333 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 164, + 679.3333333333333, + 447, + 689.9999999999999 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 695, + 505, + 736 + ], + "lines": [ + { + "bbox": [ + 105, + 694, + 506, + 709 + ], + "spans": [ + { + "bbox": [ + 105, + 694, + 153, + 709 + ], + "score": 1.0, + "content": "Recall that", + "type": "text" + }, + { + "bbox": [ + 154, + 698, + 161, + 706 + ], + "score": 0.78, + "content": "\\kappa", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 694, + 188, + 709 + ], + "score": 1.0, + "content": "is the", + "type": "text" + }, + { + "bbox": [ + 189, + 696, + 220, + 708 + ], + "score": 0.92, + "content": "( k + 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 694, + 506, + 709 + ], + "score": 1.0, + "content": "-th largest perturbed log-probability (see Section 3.2). We compute a", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 706, + 505, + 720 + ], + "spans": [ + { + "bbox": [ + 105, + 706, + 505, + 720 + ], + "score": 1.0, + "content": "lower variance but biased variant by normalizing the importance weights using the normalization", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 718, + 214, + 736 + ], + "spans": [ + { + "bbox": [ + 105, + 718, + 214, + 736 + ], + "score": 1.0, + "content": "W (Sk) = Ps∈Sk pθ(s)qθ,κ(s) .", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + } + ], + "page_idx": 20, + "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": [ + 494, + 413, + 505, + 424 + ], + "lines": [ + { + "bbox": [ + 495, + 415, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 495, + 415, + 505, + 425 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 561, + 505, + 572 + ], + "lines": [ + { + "bbox": [ + 495, + 563, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 495, + 563, + 505, + 572 + ], + "score": 0.999, + "content": "□", + "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, + 82, + 151, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 152, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 152, + 94 + ], + "score": 1.0, + "content": "Lemma 4.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 106, + 82, + 152, + 94 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 226, + 90, + 385, + 119 + ], + "lines": [ + { + "bbox": [ + 226, + 90, + 385, + 119 + ], + "spans": [ + { + "bbox": [ + 226, + 90, + 385, + 119 + ], + "score": 0.95, + "content": "\\mathbb { E } _ { \\kappa \\sim p ( \\kappa | S ^ { k } ) } \\left[ \\frac { 1 } { 1 - F _ { \\phi _ { s } } ( \\kappa ) } \\right] = R ( S ^ { k } , s )", + "type": "interline_equation", + "image_path": "ea6ebad1366a3fc44c7c07e5829e5eaef7cab655a4b439ea9150102a75887e5b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 226, + 90, + 385, + 119 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 131, + 505, + 180 + ], + "lines": [ + { + "bbox": [ + 104, + 129, + 505, + 146 + ], + "spans": [ + { + "bbox": [ + 104, + 129, + 206, + 146 + ], + "score": 1.0, + "content": "Proof. Conditioning on", + "type": "text" + }, + { + "bbox": [ + 207, + 131, + 219, + 142 + ], + "score": 0.88, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 129, + 351, + 146 + ], + "score": 1.0, + "content": ", we know that the elements in", + "type": "text" + }, + { + "bbox": [ + 351, + 131, + 364, + 142 + ], + "score": 0.88, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 129, + 405, + 146 + ], + "score": 1.0, + "content": "have the", + "type": "text" + }, + { + "bbox": [ + 405, + 132, + 412, + 142 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 129, + 505, + 146 + ], + "score": 1.0, + "content": "largest perturbed log-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 175, + 156 + ], + "score": 1.0, + "content": "probabilities, so", + "type": "text" + }, + { + "bbox": [ + 176, + 145, + 183, + 153 + ], + "score": 0.71, + "content": "\\kappa", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 142, + 205, + 156 + ], + "score": 1.0, + "content": ", the", + "type": "text" + }, + { + "bbox": [ + 205, + 143, + 237, + 155 + ], + "score": 0.89, + "content": "( k + 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 142, + 505, + 156 + ], + "score": 1.0, + "content": "-th largest perturbed log-probability is the largest perturbed log-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 151, + 506, + 171 + ], + "spans": [ + { + "bbox": [ + 104, + 151, + 162, + 171 + ], + "score": 1.0, + "content": "probability in", + "type": "text" + }, + { + "bbox": [ + 163, + 154, + 192, + 166 + ], + "score": 0.92, + "content": "D \\backslash S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 151, + 246, + 171 + ], + "score": 1.0, + "content": ", and satisfies", + "type": "text" + }, + { + "bbox": [ + 247, + 154, + 453, + 169 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\kappa = \\operatorname* { m a x } _ { s \\in D \\backslash S ^ { k } } g _ { \\phi _ { s } } = g _ { \\phi _ { D \\backslash S ^ { k } } } \\sim \\mathrm { G u m b e l } ( \\phi _ { D \\backslash S ^ { k } } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 151, + 506, + 171 + ], + "score": 1.0, + "content": ". Computing", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 167, + 273, + 182 + ], + "spans": [ + { + "bbox": [ + 106, + 167, + 140, + 181 + ], + "score": 0.92, + "content": "p ( \\kappa | S ^ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 167, + 273, + 182 + ], + "score": 1.0, + "content": "using Bayes’ Theorem, we have", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3.5, + "bbox_fs": [ + 104, + 129, + 506, + 182 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 183, + 185, + 427, + 216 + ], + "lines": [ + { + "bbox": [ + 183, + 185, + 427, + 216 + ], + "spans": [ + { + "bbox": [ + 183, + 185, + 427, + 216 + ], + "score": 0.92, + "content": "p ( \\kappa | S ^ { k } ) = \\frac { p ( S ^ { k } | \\kappa ) p ( \\kappa ) } { p ( S ^ { k } ) } = \\frac { \\prod _ { s \\in S ^ { k } } ( 1 - F _ { \\phi _ { s } } ( \\kappa ) ) f _ { \\phi _ { D \\setminus S ^ { k } } } ( \\kappa ) } { p ( S ^ { k } ) }", + "type": "interline_equation", + "image_path": "72d64bf455a71d7bfe77493ed53bfb56de65d59129300cc1d8bd30091b9c3013.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 183, + 185, + 427, + 200.5 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 183, + 200.5, + 427, + 216.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 226, + 421, + 240 + ], + "lines": [ + { + "bbox": [ + 104, + 223, + 417, + 244 + ], + "spans": [ + { + "bbox": [ + 104, + 223, + 317, + 244 + ], + "score": 1.0, + "content": "which allows us to compute (using equation 34 with", + "type": "text" + }, + { + "bbox": [ + 317, + 227, + 354, + 240 + ], + "score": 0.94, + "content": "C = \\{ s \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 223, + 372, + 244 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 372, + 228, + 417, + 241 + ], + "score": 0.9, + "content": "g _ { \\phi _ { D \\setminus S } } = \\kappa", + "type": "inline_equation" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 104, + 223, + 417, + 244 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 187, + 245, + 422, + 410 + ], + "lines": [ + { + "bbox": [ + 187, + 245, + 422, + 410 + ], + "spans": [ + { + "bbox": [ + 187, + 245, + 422, + 410 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\mathbb { E } _ { n \\sim p ( n | S ^ { k } ) } \\left[ \\frac { 1 } { 1 - F _ { \\phi _ { n } } ( \\kappa ) } \\right] } \\\\ & { = \\int _ { n = - \\infty } ^ { \\infty } p ( \\kappa | S ^ { k } ) \\frac { 1 } { 1 - F _ { \\phi _ { n } } ( \\kappa ) } \\partial \\kappa } \\\\ & { = \\int _ { \\kappa = - \\infty } ^ { \\infty } \\frac { \\prod _ { s \\in S ^ { k } } ( 1 - F _ { \\phi _ { s } } ( \\kappa ) ) f _ { \\phi _ { n ; s } } ( \\kappa ) } { p ( S ^ { k } ) } \\frac { 1 } { 1 - F _ { \\phi _ { n } } ( \\kappa ) } \\partial \\kappa } \\\\ & { = \\frac { 1 } { p ( S ^ { k } ) } \\int _ { \\kappa = - \\infty } ^ { \\infty } \\underset { s \\in S ^ { k } \\backslash \\{ s \\} } { \\prod } \\ ( 1 - F _ { \\phi _ { s } } ( \\kappa ) ) f _ { \\phi _ { n ; s } \\mu \\kappa } ( \\kappa ) \\partial \\kappa } \\\\ & { = \\frac { 1 } { p ( S ^ { k } ) } p ^ { D \\cup S } ( S \\setminus \\{ s \\} ) } \\\\ & { = R ( S ^ { k } , s ) , } \\end{array}", + "type": "interline_equation", + "image_path": "270db507263957445b50afe3dffcba35712863dac88728966242bbb04b5dec1b.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 187, + 245, + 422, + 260.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 187, + 260.0, + 422, + 275.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 187, + 275.0, + 422, + 290.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 187, + 290.0, + 422, + 305.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 187, + 305.0, + 422, + 320.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 187, + 320.0, + 422, + 335.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 187, + 335.0, + 422, + 350.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 187, + 350.0, + 422, + 365.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 187, + 365.0, + 422, + 380.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 187, + 380.0, + 422, + 395.0 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 187, + 395.0, + 422, + 410.0 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 438, + 205, + 450 + ], + "lines": [ + { + "bbox": [ + 106, + 437, + 206, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 206, + 452 + ], + "score": 1.0, + "content": "Using Lemma 4 we find", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20, + "bbox_fs": [ + 106, + 437, + 206, + 452 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 216, + 456, + 393, + 556 + ], + "lines": [ + { + "bbox": [ + 216, + 456, + 393, + 556 + ], + "spans": [ + { + "bbox": [ + 216, + 456, + 393, + 556 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\mathbb { E } _ { \\kappa \\sim p ( \\kappa | S ^ { k } ) } \\left[ \\displaystyle \\sum _ { s \\in S ^ { k } } \\frac { p ( s ) } { 1 - F _ { \\phi _ { s } } ( \\kappa ) } f ( s ) \\right] } \\\\ & { = \\displaystyle \\sum _ { s \\in S ^ { k } } p ( s ) \\mathbb { E } _ { \\kappa \\sim p ( \\kappa | S ^ { k } ) } \\left[ \\frac { 1 } { 1 - F _ { \\phi _ { s } } ( \\kappa ) } \\right] f ( s ) } \\\\ & { = \\displaystyle \\sum _ { s \\in S ^ { k } } p ( s ) R ( S ^ { k } , s ) f ( s ) . } \\end{array}", + "type": "interline_equation", + "image_path": "189a05ec559dd1c3ad78a3bb4788e233438705067db6a1ef44e13d2ded16f5f7.jpg" + } + ] + } + ], + "index": 23.5, + "virtual_lines": [ + { + "bbox": [ + 216, + 456, + 393, + 472.6666666666667 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 216, + 472.6666666666667, + 393, + 489.33333333333337 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 216, + 489.33333333333337, + 393, + 506.00000000000006 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 216, + 506.00000000000006, + 393, + 522.6666666666667 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 216, + 522.6666666666667, + 393, + 539.3333333333334 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 216, + 539.3333333333334, + 393, + 556.0 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "title", + "bbox": [ + 105, + 586, + 504, + 598 + ], + "lines": [ + { + "bbox": [ + 106, + 586, + 504, + 598 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 504, + 598 + ], + "score": 1.0, + "content": "D.2 THE IMPORTANCE-WEIGHTED POLICY GRADIENT ESTIMATOR WITH BUILT-IN BASELINE", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 606, + 505, + 652 + ], + "lines": [ + { + "bbox": [ + 104, + 605, + 505, + 620 + ], + "spans": [ + { + "bbox": [ + 104, + 605, + 505, + 620 + ], + "score": 1.0, + "content": "For self-containment we include this section, which is adapted from our unpublished workshop", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 618, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 104, + 618, + 506, + 630 + ], + "score": 1.0, + "content": "paper (Kool et al., 2019b). The importance-weighted policy gradient estimator combines REIN-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 628, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 104, + 628, + 506, + 642 + ], + "score": 1.0, + "content": "FORCE (Williams, 1992) with the importance-weighted estimator (Duffield et al., 2007; Vieira,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 638, + 506, + 654 + ], + "spans": [ + { + "bbox": [ + 104, + 638, + 431, + 654 + ], + "score": 1.0, + "content": "2017) in equation 15 which results in an unbiased estimator of the policy gradient", + "type": "text" + }, + { + "bbox": [ + 432, + 640, + 501, + 653 + ], + "score": 0.93, + "content": "\\nabla _ { \\pmb { \\theta } } \\mathbb { E } _ { p _ { \\pmb { \\theta } } ( \\pmb { x } ) } [ f _ { \\pmb { \\theta } } ( \\pmb { x } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 638, + 506, + 654 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5, + "bbox_fs": [ + 104, + 605, + 506, + 654 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 164, + 658, + 447, + 690 + ], + "lines": [ + { + "bbox": [ + 164, + 658, + 447, + 690 + ], + "spans": [ + { + "bbox": [ + 164, + 658, + 447, + 690 + ], + "score": 0.94, + "content": "e ^ { \\mathrm { I W P G } } ( S ^ { k } , \\kappa ) = \\sum _ { s \\in S ^ { k } } \\frac { p _ { \\theta } ( s ) } { q _ { \\theta , \\kappa } ( s ) } \\nabla _ { \\theta } \\log p _ { \\theta } ( s ) f ( s ) = \\sum _ { s \\in S ^ { k } } \\frac { \\nabla _ { \\theta } p _ { \\theta } ( s ) } { q _ { \\theta , \\kappa } ( s ) } f ( s )", + "type": "interline_equation", + "image_path": "15056798f35b0a4a5f225aa5c7bdb4f9651cc7e2dc85aed31fd13666948ec7ab.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 164, + 658, + 447, + 668.6666666666666 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 164, + 668.6666666666666, + 447, + 679.3333333333333 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 164, + 679.3333333333333, + 447, + 689.9999999999999 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 695, + 505, + 736 + ], + "lines": [ + { + "bbox": [ + 105, + 694, + 506, + 709 + ], + "spans": [ + { + "bbox": [ + 105, + 694, + 153, + 709 + ], + "score": 1.0, + "content": "Recall that", + "type": "text" + }, + { + "bbox": [ + 154, + 698, + 161, + 706 + ], + "score": 0.78, + "content": "\\kappa", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 694, + 188, + 709 + ], + "score": 1.0, + "content": "is the", + "type": "text" + }, + { + "bbox": [ + 189, + 696, + 220, + 708 + ], + "score": 0.92, + "content": "( k + 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 694, + 506, + 709 + ], + "score": 1.0, + "content": "-th largest perturbed log-probability (see Section 3.2). We compute a", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 706, + 505, + 720 + ], + "spans": [ + { + "bbox": [ + 105, + 706, + 505, + 720 + ], + "score": 1.0, + "content": "lower variance but biased variant by normalizing the importance weights using the normalization", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 718, + 214, + 736 + ], + "spans": [ + { + "bbox": [ + 105, + 718, + 214, + 736 + ], + "score": 1.0, + "content": "W (Sk) = Ps∈Sk pθ(s)qθ,κ(s) .", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 694, + 506, + 736 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 80, + 506, + 126 + ], + "lines": [ + { + "bbox": [ + 102, + 77, + 506, + 100 + ], + "spans": [ + { + "bbox": [ + 102, + 77, + 474, + 100 + ], + "score": 1.0, + "content": "As we show in Kool et al. (2019b), we can include a ‘baseline’ B(Sk) = Ps∈Sk pθ(s)qθ,κ(s) f", + "type": "text" + }, + { + "bbox": [ + 487, + 79, + 506, + 95 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 96, + 505, + 109 + ], + "spans": [ + { + "bbox": [ + 106, + 96, + 353, + 109 + ], + "score": 1.0, + "content": "correct for the bias (since it depends on the complete sample", + "type": "text" + }, + { + "bbox": [ + 353, + 97, + 366, + 108 + ], + "score": 0.86, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 96, + 505, + 109 + ], + "score": 1.0, + "content": ") by weighting individual terms of", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 109, + 257, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 109, + 173, + 126 + ], + "score": 1.0, + "content": "the estimator by", + "type": "text" + }, + { + "bbox": [ + 173, + 109, + 253, + 126 + ], + "score": 0.92, + "content": "\\begin{array} { r } { 1 - p _ { \\pmb { \\theta } } ( s ) + \\frac { p _ { \\pmb { \\theta } } ( s ) } { q _ { \\pmb { \\theta } , \\kappa } ( s ) } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 109, + 257, + 126 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "interline_equation", + "bbox": [ + 150, + 130, + 460, + 162 + ], + "lines": [ + { + "bbox": [ + 150, + 130, + 460, + 162 + ], + "spans": [ + { + "bbox": [ + 150, + 130, + 460, + 162 + ], + "score": 0.93, + "content": "e ^ { \\mathrm { I W P G B L } } ( S ^ { k } , \\kappa ) = \\sum _ { s \\in S ^ { k } } { \\frac { \\nabla _ { \\theta } p _ { \\theta } ( s ) } { q _ { \\theta , \\kappa } ( s ) } } \\left( f ( s ) \\left( 1 - p _ { \\theta } ( s ) + { \\frac { p _ { \\theta } ( s ) } { q _ { \\theta , \\kappa } ( s ) } } \\right) - B ( S ^ { k } ) \\right)", + "type": "interline_equation", + "image_path": "ed94fc41ed206e40c574476efbaf81fc4a9410e07b249158520c562ae93e9b64.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 150, + 130, + 460, + 140.66666666666666 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 150, + 140.66666666666666, + 460, + 151.33333333333331 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 150, + 151.33333333333331, + 460, + 161.99999999999997 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 174, + 505, + 207 + ], + "lines": [ + { + "bbox": [ + 104, + 172, + 506, + 192 + ], + "spans": [ + { + "bbox": [ + 104, + 172, + 399, + 191 + ], + "score": 1.0, + "content": "For the normalized version, we use the normalization W (Sk) = Ps∈Sk q", + "type": "text" + }, + { + "bbox": [ + 422, + 172, + 506, + 192 + ], + "score": 1.0, + "content": "for the baseline, and", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 189, + 397, + 209 + ], + "spans": [ + { + "bbox": [ + 106, + 190, + 257, + 208 + ], + "score": 0.92, + "content": "\\begin{array} { r } { W _ { i } ( S ^ { k } ) = W ( S ^ { k } ) - \\frac { p _ { \\theta } ( s ) } { q _ { \\theta , \\kappa } ( s ) } + p _ { \\theta } ( s ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 189, + 397, + 209 + ], + "score": 1.0, + "content": "to normalize the individual terms:", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "interline_equation", + "bbox": [ + 169, + 212, + 442, + 245 + ], + "lines": [ + { + "bbox": [ + 169, + 212, + 442, + 245 + ], + "spans": [ + { + "bbox": [ + 169, + 212, + 442, + 245 + ], + "score": 0.93, + "content": "\\nabla _ { \\pmb \\theta } \\mathbb { E } _ { \\pmb \\theta \\sim p _ { \\pmb \\theta } ( \\pmb y ) } \\left[ f ( \\pmb y ) \\right] \\approx \\sum _ { s \\in S ^ { k } } \\frac { 1 } { W _ { i } ( S ^ { k } ) } \\cdot \\frac { \\nabla _ { \\pmb \\theta } p _ { \\pmb \\theta } ( s ) } { q _ { \\pmb \\theta , \\kappa } ( s ) } \\left( f ( s ) - \\frac { B ( S ^ { k } ) } { W ( S ^ { k } ) } \\right)", + "type": "interline_equation", + "image_path": "428c5674023653acf72976a9a4a14f8ea48e5542ff29a4b3bc54d6b3079b8a91.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 169, + 212, + 442, + 223.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 169, + 223.0, + 442, + 234.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 169, + 234.0, + 442, + 245.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 250, + 506, + 288 + ], + "lines": [ + { + "bbox": [ + 105, + 249, + 507, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 334, + 268 + ], + "score": 1.0, + "content": "It seems odd to normalize the terms in the outer sum by", + "type": "text" + }, + { + "bbox": [ + 335, + 250, + 364, + 266 + ], + "score": 0.93, + "content": "\\frac { 1 } { W _ { i } ( S ^ { k } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 249, + 408, + 268 + ], + "score": 1.0, + "content": "instead of", + "type": "text" + }, + { + "bbox": [ + 406, + 249, + 507, + 266 + ], + "score": 1.0, + "content": "1W (Sk) , but equation 52", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 265, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 265, + 505, + 276 + ], + "score": 1.0, + "content": "can be rewritten into a form similar to equation 17, i.e. with a different baseline for each sample, but", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 275, + 385, + 288 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 385, + 288 + ], + "score": 1.0, + "content": "this form is more convenient for implementation (Kool et al., 2019b).", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "title", + "bbox": [ + 106, + 303, + 399, + 316 + ], + "lines": [ + { + "bbox": [ + 105, + 302, + 399, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 399, + 318 + ], + "score": 1.0, + "content": "E THE UNORDERED SET POLICY GRADIENT ESTIMATOR", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 108, + 327, + 484, + 350 + ], + "lines": [ + { + "bbox": [ + 106, + 327, + 484, + 339 + ], + "spans": [ + { + "bbox": [ + 106, + 327, + 127, + 339 + ], + "score": 1.0, + "content": "E.1", + "type": "text" + }, + { + "bbox": [ + 131, + 329, + 484, + 339 + ], + "score": 1.0, + "content": "PROOF OF UNBIASEDNESS OF THE UNORDERED SET POLICY GRADIENT ESTIMATOR", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 132, + 340, + 201, + 349 + ], + "spans": [ + { + "bbox": [ + 132, + 340, + 201, + 349 + ], + "score": 1.0, + "content": "WITH BASELINE", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 105, + 358, + 487, + 385 + ], + "lines": [ + { + "bbox": [ + 106, + 358, + 486, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 486, + 372 + ], + "score": 1.0, + "content": "To prove the unbiasedness of result we need to prove that the control variate has expectation 0:", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 372, + 153, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 153, + 387 + ], + "score": 1.0, + "content": "Lemma 5.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "interline_equation", + "bbox": [ + 149, + 388, + 462, + 428 + ], + "lines": [ + { + "bbox": [ + 149, + 388, + 462, + 428 + ], + "spans": [ + { + "bbox": [ + 149, + 388, + 462, + 428 + ], + "score": 0.93, + "content": "\\mathbb { E } _ { S ^ { k } \\sim p _ { \\theta } ( S ^ { k } ) } \\left[ \\sum _ { s \\in S ^ { k } } \\nabla _ { \\theta } p _ { \\theta } ( s ) R ( S ^ { k } , s ) \\sum _ { s ^ { \\prime } \\in S ^ { k } } p _ { \\theta } ( s ^ { \\prime } ) R ^ { D \\setminus \\{ s \\} } ( S ^ { k } , s ^ { \\prime } ) f ( s ^ { \\prime } ) \\right] = 0 .", + "type": "interline_equation", + "image_path": "7dcde4fb0e8b1866026dbef50261833923c9fad3f33392df0058daff30d20272.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 149, + 388, + 462, + 401.3333333333333 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 149, + 401.3333333333333, + 462, + 414.66666666666663 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 149, + 414.66666666666663, + 462, + 427.99999999999994 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 438, + 505, + 462 + ], + "lines": [ + { + "bbox": [ + 105, + 436, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 416, + 452 + ], + "score": 1.0, + "content": "Proof. Similar to equation 10, we apply Bayes’ Theorem conditionally on", + "type": "text" + }, + { + "bbox": [ + 417, + 439, + 449, + 450 + ], + "score": 0.92, + "content": "b _ { 1 } ~ = ~ s", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 436, + 506, + 452 + ], + "score": 1.0, + "content": "to derive for", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 107, + 450, + 133, + 461 + ], + "spans": [ + { + "bbox": [ + 107, + 450, + 133, + 461 + ], + "score": 0.88, + "content": "s ^ { \\prime } \\neq s", + "type": "inline_equation" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "interline_equation", + "bbox": [ + 166, + 465, + 444, + 557 + ], + "lines": [ + { + "bbox": [ + 166, + 465, + 444, + 557 + ], + "spans": [ + { + "bbox": [ + 166, + 465, + 444, + 557 + ], + "score": 0.95, + "content": "\\begin{array} { c } { P ( b _ { 2 } = s ^ { \\prime } | S ^ { k } , b _ { 1 } = s ) = \\displaystyle { \\frac { P ( S ^ { k } | b _ { 2 } = s ^ { \\prime } , b _ { 1 } = s ) P ( b _ { 2 } = s ^ { \\prime } | b _ { 1 } = s ^ { \\prime } ) } { P ( S ^ { k } | b _ { 1 } = s ) } } } \\\\ { = \\displaystyle { \\frac { p _ { \\theta } ^ { D \\setminus \\{ s , s ^ { \\prime } \\} } ( S ^ { k } \\setminus \\{ s , s ^ { \\prime } \\} ) p _ { \\theta } ^ { D \\setminus \\{ s \\} } ( s ^ { \\prime } ) } { p _ { \\theta } ^ { D \\setminus \\{ s \\} } ( S ^ { k } \\setminus \\{ s \\} ) } } } \\\\ { { = \\displaystyle { \\frac { p _ { \\theta } ( s ^ { \\prime } ) } { 1 - p _ { \\theta } ( s ) } R ^ { D \\setminus \\{ s \\} } ( S ^ { k } , s ^ { \\prime } ) } . } } \\end{array}", + "type": "interline_equation", + "image_path": "b7826c18422de652fa96e5046dce9e2b17066522210c25cb22c5f01a87170f56.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 166, + 465, + 444, + 495.6666666666667 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 166, + 495.6666666666667, + 444, + 526.3333333333334 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 166, + 526.3333333333334, + 444, + 557.0 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 560, + 479, + 574 + ], + "lines": [ + { + "bbox": [ + 104, + 559, + 482, + 576 + ], + "spans": [ + { + "bbox": [ + 104, + 559, + 123, + 576 + ], + "score": 1.0, + "content": "For", + "type": "text" + }, + { + "bbox": [ + 123, + 562, + 149, + 572 + ], + "score": 0.91, + "content": "s ^ { \\prime } = s", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 559, + 186, + 576 + ], + "score": 1.0, + "content": "we have", + "type": "text" + }, + { + "bbox": [ + 186, + 560, + 267, + 574 + ], + "score": 0.93, + "content": "R ^ { D \\setminus \\{ s \\} } ( S ^ { k } , s ^ { \\prime } ) = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 559, + 482, + 576 + ], + "score": 1.0, + "content": "by definition, so using equation 54 we can show that", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "interline_equation", + "bbox": [ + 165, + 578, + 447, + 733 + ], + "lines": [ + { + "bbox": [ + 165, + 578, + 447, + 733 + ], + "spans": [ + { + "bbox": [ + 165, + 578, + 447, + 733 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\displaystyle \\sum _ { s ^ { \\prime } \\in S ^ { k } } p _ { \\theta } ( s ^ { \\prime } ) R ^ { D N \\setminus \\{ s \\} } ( S ^ { k } , s ^ { \\prime } ) f ( s ^ { \\prime } ) } \\\\ & { = p _ { \\theta } ( s ) f ( s ) + \\displaystyle \\sum _ { s ^ { \\prime } \\in S ^ { k \\setminus \\{ s \\} } } p _ { \\theta } ( s ^ { \\prime } ) R ^ { D \\setminus \\{ s \\} } ( S ^ { k } , s ^ { \\prime } ) f ( s ^ { \\prime } ) } \\\\ & { = p _ { \\theta } ( s ) f ( s ) + ( 1 - p _ { \\theta } ( s ) ) \\displaystyle \\sum _ { s ^ { \\prime } \\in S ^ { k \\setminus \\{ s \\} } \\setminus \\{ s \\} } \\frac { p _ { \\theta } ( s ^ { \\prime } ) } { 1 - p _ { \\theta } ( s ) } R ^ { D \\setminus \\{ s \\} } ( S ^ { k } , s ^ { \\prime } ) f ( s ^ { \\prime } ) } \\\\ & { = p _ { \\theta } ( s ) f ( s ) + ( 1 - p _ { \\theta } ( s ) ) \\displaystyle \\sum _ { s ^ { \\prime } \\in S ^ { k \\setminus \\{ s \\} } \\setminus \\{ s \\} } P ( b _ { 2 } = s ^ { \\prime } | S ^ { k } , b _ { 1 } = s ) f ( s ^ { \\prime } ) } \\\\ & { = p _ { \\theta } ( s ) f ( s ) + ( 1 - p _ { \\theta } ( s ) ) \\| g _ { s ^ { \\prime } \\in S ^ { k \\setminus \\{ s \\} } \\setminus \\{ s \\} } } \\\\ & { = p _ { \\theta } ( s ) f ( s ) + ( 1 - p _ { \\theta } ( s ) ) \\| g _ { s ^ { \\prime } \\circ p _ { \\theta } ( b _ { 2 } \\mid S ^ { k } , b _ { 1 } = s ) } [ f ( b _ { 2 } ) ] } \\\\ & { = \\mathbb { E } _ { \\delta \\to p _ { \\theta } ( b _ { 2 } \\mid S ^ { k } , b _ { 1 } = s ) } [ p _ { \\theta } ( b _ { 1 } ) f ( b _ { 1 } ) + ( 1 - p _ { \\theta } ( b _ { 1 } ) ) f ( b _ { 2 } ) ] . } \\end{array}", + "type": "interline_equation", + "image_path": "941373c9e6ed240fe6a0ad7ccfcb8bc26b621b25ffdc7ff97d9ddb312f31505b.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 165, + 578, + 447, + 629.6666666666666 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 165, + 629.6666666666666, + 447, + 681.3333333333333 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 165, + 681.3333333333333, + 447, + 732.9999999999999 + ], + "spans": [], + "index": 30 + } + ] + } + ], + "page_idx": 21, + "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, + 761 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "22", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 80, + 506, + 126 + ], + "lines": [ + { + "bbox": [ + 102, + 77, + 506, + 100 + ], + "spans": [ + { + "bbox": [ + 102, + 77, + 474, + 100 + ], + "score": 1.0, + "content": "As we show in Kool et al. (2019b), we can include a ‘baseline’ B(Sk) = Ps∈Sk pθ(s)qθ,κ(s) f", + "type": "text" + }, + { + "bbox": [ + 487, + 79, + 506, + 95 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 96, + 505, + 109 + ], + "spans": [ + { + "bbox": [ + 106, + 96, + 353, + 109 + ], + "score": 1.0, + "content": "correct for the bias (since it depends on the complete sample", + "type": "text" + }, + { + "bbox": [ + 353, + 97, + 366, + 108 + ], + "score": 0.86, + "content": "S ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 96, + 505, + 109 + ], + "score": 1.0, + "content": ") by weighting individual terms of", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 109, + 257, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 109, + 173, + 126 + ], + "score": 1.0, + "content": "the estimator by", + "type": "text" + }, + { + "bbox": [ + 173, + 109, + 253, + 126 + ], + "score": 0.92, + "content": "\\begin{array} { r } { 1 - p _ { \\pmb { \\theta } } ( s ) + \\frac { p _ { \\pmb { \\theta } } ( s ) } { q _ { \\pmb { \\theta } , \\kappa } ( s ) } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 109, + 257, + 126 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 102, + 77, + 506, + 126 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 150, + 130, + 460, + 162 + ], + "lines": [ + { + "bbox": [ + 150, + 130, + 460, + 162 + ], + "spans": [ + { + "bbox": [ + 150, + 130, + 460, + 162 + ], + "score": 0.93, + "content": "e ^ { \\mathrm { I W P G B L } } ( S ^ { k } , \\kappa ) = \\sum _ { s \\in S ^ { k } } { \\frac { \\nabla _ { \\theta } p _ { \\theta } ( s ) } { q _ { \\theta , \\kappa } ( s ) } } \\left( f ( s ) \\left( 1 - p _ { \\theta } ( s ) + { \\frac { p _ { \\theta } ( s ) } { q _ { \\theta , \\kappa } ( s ) } } \\right) - B ( S ^ { k } ) \\right)", + "type": "interline_equation", + "image_path": "ed94fc41ed206e40c574476efbaf81fc4a9410e07b249158520c562ae93e9b64.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 150, + 130, + 460, + 140.66666666666666 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 150, + 140.66666666666666, + 460, + 151.33333333333331 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 150, + 151.33333333333331, + 460, + 161.99999999999997 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 174, + 505, + 207 + ], + "lines": [ + { + "bbox": [ + 104, + 172, + 506, + 192 + ], + "spans": [ + { + "bbox": [ + 104, + 172, + 399, + 191 + ], + "score": 1.0, + "content": "For the normalized version, we use the normalization W (Sk) = Ps∈Sk q", + "type": "text" + }, + { + "bbox": [ + 422, + 172, + 506, + 192 + ], + "score": 1.0, + "content": "for the baseline, and", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 189, + 397, + 209 + ], + "spans": [ + { + "bbox": [ + 106, + 190, + 257, + 208 + ], + "score": 0.92, + "content": "\\begin{array} { r } { W _ { i } ( S ^ { k } ) = W ( S ^ { k } ) - \\frac { p _ { \\theta } ( s ) } { q _ { \\theta , \\kappa } ( s ) } + p _ { \\theta } ( s ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 189, + 397, + 209 + ], + "score": 1.0, + "content": "to normalize the individual terms:", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 104, + 172, + 506, + 209 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 169, + 212, + 442, + 245 + ], + "lines": [ + { + "bbox": [ + 169, + 212, + 442, + 245 + ], + "spans": [ + { + "bbox": [ + 169, + 212, + 442, + 245 + ], + "score": 0.93, + "content": "\\nabla _ { \\pmb \\theta } \\mathbb { E } _ { \\pmb \\theta \\sim p _ { \\pmb \\theta } ( \\pmb y ) } \\left[ f ( \\pmb y ) \\right] \\approx \\sum _ { s \\in S ^ { k } } \\frac { 1 } { W _ { i } ( S ^ { k } ) } \\cdot \\frac { \\nabla _ { \\pmb \\theta } p _ { \\pmb \\theta } ( s ) } { q _ { \\pmb \\theta , \\kappa } ( s ) } \\left( f ( s ) - \\frac { B ( S ^ { k } ) } { W ( S ^ { k } ) } \\right)", + "type": "interline_equation", + "image_path": "428c5674023653acf72976a9a4a14f8ea48e5542ff29a4b3bc54d6b3079b8a91.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 169, + 212, + 442, + 223.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 169, + 223.0, + 442, + 234.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 169, + 234.0, + 442, + 245.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 250, + 506, + 288 + ], + "lines": [ + { + "bbox": [ + 105, + 249, + 507, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 334, + 268 + ], + "score": 1.0, + "content": "It seems odd to normalize the terms in the outer sum by", + "type": "text" + }, + { + "bbox": [ + 335, + 250, + 364, + 266 + ], + "score": 0.93, + "content": "\\frac { 1 } { W _ { i } ( S ^ { k } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 249, + 408, + 268 + ], + "score": 1.0, + "content": "instead of", + "type": "text" + }, + { + "bbox": [ + 406, + 249, + 507, + 266 + ], + "score": 1.0, + "content": "1W (Sk) , but equation 52", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 265, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 265, + 505, + 276 + ], + "score": 1.0, + "content": "can be rewritten into a form similar to equation 17, i.e. with a different baseline for each sample, but", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 275, + 385, + 288 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 385, + 288 + ], + "score": 1.0, + "content": "this form is more convenient for implementation (Kool et al., 2019b).", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 249, + 507, + 288 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 303, + 399, + 316 + ], + "lines": [ + { + "bbox": [ + 105, + 302, + 399, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 399, + 318 + ], + "score": 1.0, + "content": "E THE UNORDERED SET POLICY GRADIENT ESTIMATOR", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 108, + 327, + 484, + 350 + ], + "lines": [ + { + "bbox": [ + 106, + 327, + 484, + 339 + ], + "spans": [ + { + "bbox": [ + 106, + 327, + 127, + 339 + ], + "score": 1.0, + "content": "E.1", + "type": "text" + }, + { + "bbox": [ + 131, + 329, + 484, + 339 + ], + "score": 1.0, + "content": "PROOF OF UNBIASEDNESS OF THE UNORDERED SET POLICY GRADIENT ESTIMATOR", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 132, + 340, + 201, + 349 + ], + "spans": [ + { + "bbox": [ + 132, + 340, + 201, + 349 + ], + "score": 1.0, + "content": "WITH BASELINE", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 106, + 327, + 484, + 349 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 358, + 487, + 385 + ], + "lines": [ + { + "bbox": [ + 106, + 358, + 486, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 486, + 372 + ], + "score": 1.0, + "content": "To prove the unbiasedness of result we need to prove that the control variate has expectation 0:", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 372, + 153, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 153, + 387 + ], + "score": 1.0, + "content": "Lemma 5.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 358, + 486, + 387 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 149, + 388, + 462, + 428 + ], + "lines": [ + { + "bbox": [ + 149, + 388, + 462, + 428 + ], + "spans": [ + { + "bbox": [ + 149, + 388, + 462, + 428 + ], + "score": 0.93, + "content": "\\mathbb { E } _ { S ^ { k } \\sim p _ { \\theta } ( S ^ { k } ) } \\left[ \\sum _ { s \\in S ^ { k } } \\nabla _ { \\theta } p _ { \\theta } ( s ) R ( S ^ { k } , s ) \\sum _ { s ^ { \\prime } \\in S ^ { k } } p _ { \\theta } ( s ^ { \\prime } ) R ^ { D \\setminus \\{ s \\} } ( S ^ { k } , s ^ { \\prime } ) f ( s ^ { \\prime } ) \\right] = 0 .", + "type": "interline_equation", + "image_path": "7dcde4fb0e8b1866026dbef50261833923c9fad3f33392df0058daff30d20272.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 149, + 388, + 462, + 401.3333333333333 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 149, + 401.3333333333333, + 462, + 414.66666666666663 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 149, + 414.66666666666663, + 462, + 427.99999999999994 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 438, + 505, + 462 + ], + "lines": [ + { + "bbox": [ + 105, + 436, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 416, + 452 + ], + "score": 1.0, + "content": "Proof. Similar to equation 10, we apply Bayes’ Theorem conditionally on", + "type": "text" + }, + { + "bbox": [ + 417, + 439, + 449, + 450 + ], + "score": 0.92, + "content": "b _ { 1 } ~ = ~ s", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 436, + 506, + 452 + ], + "score": 1.0, + "content": "to derive for", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 107, + 450, + 133, + 461 + ], + "spans": [ + { + "bbox": [ + 107, + 450, + 133, + 461 + ], + "score": 0.88, + "content": "s ^ { \\prime } \\neq s", + "type": "inline_equation" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 436, + 506, + 461 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 166, + 465, + 444, + 557 + ], + "lines": [ + { + "bbox": [ + 166, + 465, + 444, + 557 + ], + "spans": [ + { + "bbox": [ + 166, + 465, + 444, + 557 + ], + "score": 0.95, + "content": "\\begin{array} { c } { P ( b _ { 2 } = s ^ { \\prime } | S ^ { k } , b _ { 1 } = s ) = \\displaystyle { \\frac { P ( S ^ { k } | b _ { 2 } = s ^ { \\prime } , b _ { 1 } = s ) P ( b _ { 2 } = s ^ { \\prime } | b _ { 1 } = s ^ { \\prime } ) } { P ( S ^ { k } | b _ { 1 } = s ) } } } \\\\ { = \\displaystyle { \\frac { p _ { \\theta } ^ { D \\setminus \\{ s , s ^ { \\prime } \\} } ( S ^ { k } \\setminus \\{ s , s ^ { \\prime } \\} ) p _ { \\theta } ^ { D \\setminus \\{ s \\} } ( s ^ { \\prime } ) } { p _ { \\theta } ^ { D \\setminus \\{ s \\} } ( S ^ { k } \\setminus \\{ s \\} ) } } } \\\\ { { = \\displaystyle { \\frac { p _ { \\theta } ( s ^ { \\prime } ) } { 1 - p _ { \\theta } ( s ) } R ^ { D \\setminus \\{ s \\} } ( S ^ { k } , s ^ { \\prime } ) } . } } \\end{array}", + "type": "interline_equation", + "image_path": "b7826c18422de652fa96e5046dce9e2b17066522210c25cb22c5f01a87170f56.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 166, + 465, + 444, + 495.6666666666667 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 166, + 495.6666666666667, + 444, + 526.3333333333334 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 166, + 526.3333333333334, + 444, + 557.0 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 560, + 479, + 574 + ], + "lines": [ + { + "bbox": [ + 104, + 559, + 482, + 576 + ], + "spans": [ + { + "bbox": [ + 104, + 559, + 123, + 576 + ], + "score": 1.0, + "content": "For", + "type": "text" + }, + { + "bbox": [ + 123, + 562, + 149, + 572 + ], + "score": 0.91, + "content": "s ^ { \\prime } = s", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 559, + 186, + 576 + ], + "score": 1.0, + "content": "we have", + "type": "text" + }, + { + "bbox": [ + 186, + 560, + 267, + 574 + ], + "score": 0.93, + "content": "R ^ { D \\setminus \\{ s \\} } ( S ^ { k } , s ^ { \\prime } ) = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 559, + 482, + 576 + ], + "score": 1.0, + "content": "by definition, so using equation 54 we can show that", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27, + "bbox_fs": [ + 104, + 559, + 482, + 576 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 165, + 578, + 447, + 733 + ], + "lines": [ + { + "bbox": [ + 165, + 578, + 447, + 733 + ], + "spans": [ + { + "bbox": [ + 165, + 578, + 447, + 733 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\displaystyle \\sum _ { s ^ { \\prime } \\in S ^ { k } } p _ { \\theta } ( s ^ { \\prime } ) R ^ { D N \\setminus \\{ s \\} } ( S ^ { k } , s ^ { \\prime } ) f ( s ^ { \\prime } ) } \\\\ & { = p _ { \\theta } ( s ) f ( s ) + \\displaystyle \\sum _ { s ^ { \\prime } \\in S ^ { k \\setminus \\{ s \\} } } p _ { \\theta } ( s ^ { \\prime } ) R ^ { D \\setminus \\{ s \\} } ( S ^ { k } , s ^ { \\prime } ) f ( s ^ { \\prime } ) } \\\\ & { = p _ { \\theta } ( s ) f ( s ) + ( 1 - p _ { \\theta } ( s ) ) \\displaystyle \\sum _ { s ^ { \\prime } \\in S ^ { k \\setminus \\{ s \\} } \\setminus \\{ s \\} } \\frac { p _ { \\theta } ( s ^ { \\prime } ) } { 1 - p _ { \\theta } ( s ) } R ^ { D \\setminus \\{ s \\} } ( S ^ { k } , s ^ { \\prime } ) f ( s ^ { \\prime } ) } \\\\ & { = p _ { \\theta } ( s ) f ( s ) + ( 1 - p _ { \\theta } ( s ) ) \\displaystyle \\sum _ { s ^ { \\prime } \\in S ^ { k \\setminus \\{ s \\} } \\setminus \\{ s \\} } P ( b _ { 2 } = s ^ { \\prime } | S ^ { k } , b _ { 1 } = s ) f ( s ^ { \\prime } ) } \\\\ & { = p _ { \\theta } ( s ) f ( s ) + ( 1 - p _ { \\theta } ( s ) ) \\| g _ { s ^ { \\prime } \\in S ^ { k \\setminus \\{ s \\} } \\setminus \\{ s \\} } } \\\\ & { = p _ { \\theta } ( s ) f ( s ) + ( 1 - p _ { \\theta } ( s ) ) \\| g _ { s ^ { \\prime } \\circ p _ { \\theta } ( b _ { 2 } \\mid S ^ { k } , b _ { 1 } = s ) } [ f ( b _ { 2 } ) ] } \\\\ & { = \\mathbb { E } _ { \\delta \\to p _ { \\theta } ( b _ { 2 } \\mid S ^ { k } , b _ { 1 } = s ) } [ p _ { \\theta } ( b _ { 1 } ) f ( b _ { 1 } ) + ( 1 - p _ { \\theta } ( b _ { 1 } ) ) f ( b _ { 2 } ) ] . } \\end{array}", + "type": "interline_equation", + "image_path": "941373c9e6ed240fe6a0ad7ccfcb8bc26b621b25ffdc7ff97d9ddb312f31505b.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 165, + 578, + 447, + 629.6666666666666 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 165, + 629.6666666666666, + 447, + 681.3333333333333 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 165, + 681.3333333333333, + 447, + 732.9999999999999 + ], + "spans": [], + "index": 30 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 81, + 459, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 460, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 460, + 95 + ], + "score": 1.0, + "content": "Now we can show that the control variate is actually the result of Rao-Blackwellization:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 100, + 508, + 308 + ], + "lines": [ + { + "bbox": [ + 111, + 100, + 508, + 308 + ], + "spans": [ + { + "bbox": [ + 111, + 100, + 508, + 308 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { \\mathbb { E } _ { \\theta ^ { \\star } \\sim \\Theta ( \\theta ^ { ( k ) } ) } [ \\displaystyle \\sum _ { \\ell \\in \\mathbb { N } ^ { k } } \\nabla \\theta ^ { ( k ) } ( \\theta ^ { k ) } H ^ { ( S ^ { k } , \\ell ) } \\cdot \\sum _ { \\ell \\in \\mathbb { N } ^ { k } } \\mathcal { P } \\varphi ( \\theta ^ { ( k ) } H ^ { ( S ^ { k } , \\ell ) } ( \\theta ^ { k } , s ^ { \\prime } ) f ( s ^ { \\prime } ) ] } \\\\ & { = \\mathbb { E } _ { \\theta ^ { \\star } \\sim \\Theta ( \\theta ^ { ( k ) } ) } [ \\displaystyle \\sum _ { \\ell \\in \\mathbb { N } ^ { k } } \\mathcal { P } ( \\theta ^ { ( k ) } ) H ( \\theta ^ { ( k ) } , s ^ { \\prime } ) \\nabla \\theta ( \\theta , \\theta ^ { \\prime } ) \\wedge \\sum _ { \\ell \\in \\mathbb { N } ^ { k } } \\mathcal { P } ( \\theta ^ { ( k ) } H ^ { ( S ^ { k } , \\ell ) } ( \\theta ^ { k } ) \\cdot \\xi ^ { \\prime } ) f ( s ^ { \\prime } ) ] } \\\\ & { = \\mathbb { E } _ { \\theta ^ { \\star } \\sim \\Theta ( \\theta ^ { ( k ) } ) } [ \\displaystyle \\sum _ { \\ell \\in \\mathbb { N } ^ { k } } \\mathcal { P } ( \\theta ^ { ( k ) } - s | S ^ { k } | \\nabla \\theta ) \\cdot \\Big ( \\displaystyle \\sum _ { \\ell \\in \\mathbb { N } ^ { k } } \\mathcal { P } ( \\theta ^ { ( k ) } ) H ^ { ( S ^ { k } , \\ell ) } ( \\theta ^ { k } ) \\Big ) ] } \\\\ & { = \\mathbb { E } _ { \\theta ^ { \\star } \\sim \\Theta ( \\theta ^ { ( k ) } ) } [ \\displaystyle \\sum _ { \\ell \\in \\mathbb { N } ^ { k } } \\mathcal { P } ( \\hat { b } _ { 1 } - s | S ^ { k } | \\nabla \\theta ) \\cdot \\Big ( \\displaystyle \\sum _ { \\ell \\in \\mathbb { N } ^ { k } } \\mathcal { P } ( \\theta ^ { ( k ) } ) H ^ { ( S ^ { k } , \\ell ) } ( \\theta ^ { ( k ) } , \\theta ^ { \\prime } ) f ( s ^ { \\prime } ) ] } \\\\ & = \\mathbb { E } _ { \\theta ^ { \\star } \\sim \\Theta ( \\theta ^ { ( k ) } ) } [ \\displaystyle \\operatorname* { m i n } _ { \\theta ^ { \\star } \\sim \\Theta ( \\theta ^ { ( k ) } ) } [ \\nabla \\theta ^ { ( k ) } \\theta ^ { ( k ) } H ^ { ( S ^ { k } , \\ell ) } ] \\xi ^ { \\prime } s ^ \\end{array}", + "type": "interline_equation", + "image_path": "5aa17a281b84d6ea5ad10f6f5e8779f8f9604e2a43778445838faba1d23ee89e.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 111, + 100, + 508, + 169.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 111, + 169.33333333333331, + 508, + 238.66666666666663 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 111, + 238.66666666666663, + 508, + 307.99999999999994 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 316, + 505, + 339 + ], + "lines": [ + { + "bbox": [ + 106, + 316, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 238, + 329 + ], + "score": 1.0, + "content": "This expression depends only on", + "type": "text" + }, + { + "bbox": [ + 239, + 317, + 248, + 327 + ], + "score": 0.88, + "content": "b _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 316, + 266, + 329 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 266, + 317, + 276, + 327 + ], + "score": 0.88, + "content": "b _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 316, + 505, + 329 + ], + "score": 1.0, + "content": "and we recognize the stochastic sum-and-sample estima-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 326, + 461, + 339 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 134, + 339 + ], + "score": 1.0, + "content": "tor for", + "type": "text" + }, + { + "bbox": [ + 135, + 327, + 159, + 337 + ], + "score": 0.9, + "content": "k = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 326, + 381, + 339 + ], + "score": 1.0, + "content": "used as ‘baseline’. As a special case of equation 13 for", + "type": "text" + }, + { + "bbox": [ + 381, + 327, + 422, + 339 + ], + "score": 0.93, + "content": "C = \\{ b _ { 1 } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 326, + 461, + 339 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "interline_equation", + "bbox": [ + 164, + 343, + 446, + 358 + ], + "lines": [ + { + "bbox": [ + 164, + 343, + 446, + 358 + ], + "spans": [ + { + "bbox": [ + 164, + 343, + 446, + 358 + ], + "score": 0.88, + "content": "\\mathbb { E } _ { b _ { 2 } \\sim p _ { \\theta } ( b _ { 2 } \\mid b _ { 1 } ) } \\left[ \\left( p _ { \\theta } ( b _ { 1 } ) f ( b _ { 1 } ) + ( 1 - p _ { \\theta } ( b _ { 1 } ) ) f ( b _ { 2 } ) \\right) \\right] = \\mathbb { E } _ { i \\sim p _ { \\theta } ( i ) } \\left[ f ( i ) \\right] .", + "type": "interline_equation", + "image_path": "2cafa0492e5f1eacfe47000c2ad3ffce6075884ea511cb796118f38c1fbd87c7.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 164, + 343, + 446, + 358 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 363, + 491, + 378 + ], + "lines": [ + { + "bbox": [ + 104, + 361, + 493, + 379 + ], + "spans": [ + { + "bbox": [ + 104, + 361, + 217, + 379 + ], + "score": 1.0, + "content": "Using this, and the fact that", + "type": "text" + }, + { + "bbox": [ + 217, + 363, + 457, + 377 + ], + "score": 0.78, + "content": "\\begin{array} { r } { \\mathbb { E } _ { b _ { 1 } \\sim p _ { \\theta } ( b _ { 1 } ) } \\left[ \\nabla _ { \\theta } \\log p _ { \\theta } ( b _ { 1 } ) \\right] = \\nabla _ { \\theta } \\mathbb { E } _ { b _ { 1 } \\sim p _ { \\theta } ( b _ { 1 } ) } \\left[ 1 \\right] = \\nabla _ { \\theta } 1 = 0 } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 361, + 493, + 379 + ], + "score": 1.0, + "content": "we find", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "interline_equation", + "bbox": [ + 142, + 395, + 468, + 528 + ], + "lines": [ + { + "bbox": [ + 142, + 395, + 468, + 528 + ], + "spans": [ + { + "bbox": [ + 142, + 395, + 468, + 528 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\mathbb { E } _ { S ^ { k } \\sim p _ { \\theta } ( S ^ { k } ) } \\left[ \\displaystyle \\sum _ { s \\in S ^ { k } } \\nabla _ { \\theta } p _ { \\theta } ( s ) R ( S ^ { k } , s ) \\displaystyle \\sum _ { s ^ { \\prime } \\in S ^ { k } } p _ { \\theta } ( s ^ { \\prime } ) R ^ { D \\setminus \\{ s \\} } ( S ^ { k } , s ^ { \\prime } ) f ( s ^ { \\prime } ) \\right] } \\\\ & { = \\mathbb { E } _ { B ^ { k } \\sim p _ { \\theta } ( B ^ { k } ) } \\left[ \\nabla _ { \\theta } \\log p _ { \\theta } ( b _ { 1 } ) \\left( p _ { \\theta } ( b _ { 1 } ) f ( b _ { 1 } ) + ( 1 - p _ { \\theta } ( b _ { 1 } ) ) f ( b _ { 2 } ) \\right) \\right] } \\\\ & { = \\mathbb { E } _ { b _ { 1 } \\sim p _ { \\theta } ( b _ { 1 } ) } \\left[ \\nabla _ { \\theta } \\log p _ { \\theta } ( b _ { 1 } ) \\mathbb { E } _ { b _ { 2 } \\sim p _ { \\theta } ( b _ { 2 } | b _ { 1 } ) } \\left[ ( p _ { \\theta } ( b _ { 1 } ) f ( b _ { 1 } ) + ( 1 - p _ { \\theta } ( b _ { 1 } ) ) f ( b _ { 2 } ) ) \\right] \\right] } \\\\ & { = \\mathbb { E } _ { b _ { 1 } \\sim p _ { \\theta } ( b _ { 1 } ) } \\left[ \\nabla _ { \\theta } \\log p _ { \\theta } ( b _ { 1 } ) \\mathbb { E } _ { x \\sim p _ { \\theta } ( x ) } \\left[ f ( x ) \\right] \\right] } \\\\ & { = \\mathbb { E } _ { b _ { 1 } \\sim p _ { \\theta } ( b _ { 1 } ) } \\left[ \\nabla _ { \\theta } \\log p _ { \\theta } ( b _ { 1 } ) \\right] \\mathbb { E } _ { x \\sim p _ { \\theta } ( x ) } \\left[ f ( x ) \\right] } \\\\ & { = 0 \\cdot \\mathbb { E } _ { x \\sim p _ { \\theta } ( x ) } \\left[ f ( x ) \\right] } \\\\ & { = 0 } \\end{array}", + "type": "interline_equation", + "image_path": "bdf452d0c81a2a447c9b897bf8923e610b1dd3efe14bea58ceb1b7bbda495407.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 142, + 395, + 468, + 439.3333333333333 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 142, + 439.3333333333333, + 468, + 483.66666666666663 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 142, + 483.66666666666663, + 468, + 528.0 + ], + "spans": [], + "index": 10 + } + ] + } + ], + "page_idx": 22, + "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, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 15 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 538, + 505, + 549 + ], + "lines": [ + { + "bbox": [ + 496, + 540, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 496, + 540, + 505, + 550 + ], + "score": 0.998, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 81, + 459, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 460, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 460, + 95 + ], + "score": 1.0, + "content": "Now we can show that the control variate is actually the result of Rao-Blackwellization:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 82, + 460, + 95 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 100, + 508, + 308 + ], + "lines": [ + { + "bbox": [ + 111, + 100, + 508, + 308 + ], + "spans": [ + { + "bbox": [ + 111, + 100, + 508, + 308 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { \\mathbb { E } _ { \\theta ^ { \\star } \\sim \\Theta ( \\theta ^ { ( k ) } ) } [ \\displaystyle \\sum _ { \\ell \\in \\mathbb { N } ^ { k } } \\nabla \\theta ^ { ( k ) } ( \\theta ^ { k ) } H ^ { ( S ^ { k } , \\ell ) } \\cdot \\sum _ { \\ell \\in \\mathbb { N } ^ { k } } \\mathcal { P } \\varphi ( \\theta ^ { ( k ) } H ^ { ( S ^ { k } , \\ell ) } ( \\theta ^ { k } , s ^ { \\prime } ) f ( s ^ { \\prime } ) ] } \\\\ & { = \\mathbb { E } _ { \\theta ^ { \\star } \\sim \\Theta ( \\theta ^ { ( k ) } ) } [ \\displaystyle \\sum _ { \\ell \\in \\mathbb { N } ^ { k } } \\mathcal { P } ( \\theta ^ { ( k ) } ) H ( \\theta ^ { ( k ) } , s ^ { \\prime } ) \\nabla \\theta ( \\theta , \\theta ^ { \\prime } ) \\wedge \\sum _ { \\ell \\in \\mathbb { N } ^ { k } } \\mathcal { P } ( \\theta ^ { ( k ) } H ^ { ( S ^ { k } , \\ell ) } ( \\theta ^ { k } ) \\cdot \\xi ^ { \\prime } ) f ( s ^ { \\prime } ) ] } \\\\ & { = \\mathbb { E } _ { \\theta ^ { \\star } \\sim \\Theta ( \\theta ^ { ( k ) } ) } [ \\displaystyle \\sum _ { \\ell \\in \\mathbb { N } ^ { k } } \\mathcal { P } ( \\theta ^ { ( k ) } - s | S ^ { k } | \\nabla \\theta ) \\cdot \\Big ( \\displaystyle \\sum _ { \\ell \\in \\mathbb { N } ^ { k } } \\mathcal { P } ( \\theta ^ { ( k ) } ) H ^ { ( S ^ { k } , \\ell ) } ( \\theta ^ { k } ) \\Big ) ] } \\\\ & { = \\mathbb { E } _ { \\theta ^ { \\star } \\sim \\Theta ( \\theta ^ { ( k ) } ) } [ \\displaystyle \\sum _ { \\ell \\in \\mathbb { N } ^ { k } } \\mathcal { P } ( \\hat { b } _ { 1 } - s | S ^ { k } | \\nabla \\theta ) \\cdot \\Big ( \\displaystyle \\sum _ { \\ell \\in \\mathbb { N } ^ { k } } \\mathcal { P } ( \\theta ^ { ( k ) } ) H ^ { ( S ^ { k } , \\ell ) } ( \\theta ^ { ( k ) } , \\theta ^ { \\prime } ) f ( s ^ { \\prime } ) ] } \\\\ & = \\mathbb { E } _ { \\theta ^ { \\star } \\sim \\Theta ( \\theta ^ { ( k ) } ) } [ \\displaystyle \\operatorname* { m i n } _ { \\theta ^ { \\star } \\sim \\Theta ( \\theta ^ { ( k ) } ) } [ \\nabla \\theta ^ { ( k ) } \\theta ^ { ( k ) } H ^ { ( S ^ { k } , \\ell ) } ] \\xi ^ { \\prime } s ^ \\end{array}", + "type": "interline_equation", + "image_path": "5aa17a281b84d6ea5ad10f6f5e8779f8f9604e2a43778445838faba1d23ee89e.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 111, + 100, + 508, + 169.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 111, + 169.33333333333331, + 508, + 238.66666666666663 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 111, + 238.66666666666663, + 508, + 307.99999999999994 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 316, + 505, + 339 + ], + "lines": [ + { + "bbox": [ + 106, + 316, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 238, + 329 + ], + "score": 1.0, + "content": "This expression depends only on", + "type": "text" + }, + { + "bbox": [ + 239, + 317, + 248, + 327 + ], + "score": 0.88, + "content": "b _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 316, + 266, + 329 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 266, + 317, + 276, + 327 + ], + "score": 0.88, + "content": "b _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 316, + 505, + 329 + ], + "score": 1.0, + "content": "and we recognize the stochastic sum-and-sample estima-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 326, + 461, + 339 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 134, + 339 + ], + "score": 1.0, + "content": "tor for", + "type": "text" + }, + { + "bbox": [ + 135, + 327, + 159, + 337 + ], + "score": 0.9, + "content": "k = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 326, + 381, + 339 + ], + "score": 1.0, + "content": "used as ‘baseline’. As a special case of equation 13 for", + "type": "text" + }, + { + "bbox": [ + 381, + 327, + 422, + 339 + ], + "score": 0.93, + "content": "C = \\{ b _ { 1 } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 326, + 461, + 339 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 106, + 316, + 505, + 339 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 164, + 343, + 446, + 358 + ], + "lines": [ + { + "bbox": [ + 164, + 343, + 446, + 358 + ], + "spans": [ + { + "bbox": [ + 164, + 343, + 446, + 358 + ], + "score": 0.88, + "content": "\\mathbb { E } _ { b _ { 2 } \\sim p _ { \\theta } ( b _ { 2 } \\mid b _ { 1 } ) } \\left[ \\left( p _ { \\theta } ( b _ { 1 } ) f ( b _ { 1 } ) + ( 1 - p _ { \\theta } ( b _ { 1 } ) ) f ( b _ { 2 } ) \\right) \\right] = \\mathbb { E } _ { i \\sim p _ { \\theta } ( i ) } \\left[ f ( i ) \\right] .", + "type": "interline_equation", + "image_path": "2cafa0492e5f1eacfe47000c2ad3ffce6075884ea511cb796118f38c1fbd87c7.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 164, + 343, + 446, + 358 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 363, + 491, + 378 + ], + "lines": [ + { + "bbox": [ + 104, + 361, + 493, + 379 + ], + "spans": [ + { + "bbox": [ + 104, + 361, + 217, + 379 + ], + "score": 1.0, + "content": "Using this, and the fact that", + "type": "text" + }, + { + "bbox": [ + 217, + 363, + 457, + 377 + ], + "score": 0.78, + "content": "\\begin{array} { r } { \\mathbb { E } _ { b _ { 1 } \\sim p _ { \\theta } ( b _ { 1 } ) } \\left[ \\nabla _ { \\theta } \\log p _ { \\theta } ( b _ { 1 } ) \\right] = \\nabla _ { \\theta } \\mathbb { E } _ { b _ { 1 } \\sim p _ { \\theta } ( b _ { 1 } ) } \\left[ 1 \\right] = \\nabla _ { \\theta } 1 = 0 } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 361, + 493, + 379 + ], + "score": 1.0, + "content": "we find", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7, + "bbox_fs": [ + 104, + 361, + 493, + 379 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 142, + 395, + 468, + 528 + ], + "lines": [ + { + "bbox": [ + 142, + 395, + 468, + 528 + ], + "spans": [ + { + "bbox": [ + 142, + 395, + 468, + 528 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\mathbb { E } _ { S ^ { k } \\sim p _ { \\theta } ( S ^ { k } ) } \\left[ \\displaystyle \\sum _ { s \\in S ^ { k } } \\nabla _ { \\theta } p _ { \\theta } ( s ) R ( S ^ { k } , s ) \\displaystyle \\sum _ { s ^ { \\prime } \\in S ^ { k } } p _ { \\theta } ( s ^ { \\prime } ) R ^ { D \\setminus \\{ s \\} } ( S ^ { k } , s ^ { \\prime } ) f ( s ^ { \\prime } ) \\right] } \\\\ & { = \\mathbb { E } _ { B ^ { k } \\sim p _ { \\theta } ( B ^ { k } ) } \\left[ \\nabla _ { \\theta } \\log p _ { \\theta } ( b _ { 1 } ) \\left( p _ { \\theta } ( b _ { 1 } ) f ( b _ { 1 } ) + ( 1 - p _ { \\theta } ( b _ { 1 } ) ) f ( b _ { 2 } ) \\right) \\right] } \\\\ & { = \\mathbb { E } _ { b _ { 1 } \\sim p _ { \\theta } ( b _ { 1 } ) } \\left[ \\nabla _ { \\theta } \\log p _ { \\theta } ( b _ { 1 } ) \\mathbb { E } _ { b _ { 2 } \\sim p _ { \\theta } ( b _ { 2 } | b _ { 1 } ) } \\left[ ( p _ { \\theta } ( b _ { 1 } ) f ( b _ { 1 } ) + ( 1 - p _ { \\theta } ( b _ { 1 } ) ) f ( b _ { 2 } ) ) \\right] \\right] } \\\\ & { = \\mathbb { E } _ { b _ { 1 } \\sim p _ { \\theta } ( b _ { 1 } ) } \\left[ \\nabla _ { \\theta } \\log p _ { \\theta } ( b _ { 1 } ) \\mathbb { E } _ { x \\sim p _ { \\theta } ( x ) } \\left[ f ( x ) \\right] \\right] } \\\\ & { = \\mathbb { E } _ { b _ { 1 } \\sim p _ { \\theta } ( b _ { 1 } ) } \\left[ \\nabla _ { \\theta } \\log p _ { \\theta } ( b _ { 1 } ) \\right] \\mathbb { E } _ { x \\sim p _ { \\theta } ( x ) } \\left[ f ( x ) \\right] } \\\\ & { = 0 \\cdot \\mathbb { E } _ { x \\sim p _ { \\theta } ( x ) } \\left[ f ( x ) \\right] } \\\\ & { = 0 } \\end{array}", + "type": "interline_equation", + "image_path": "bdf452d0c81a2a447c9b897bf8923e610b1dd3efe14bea58ceb1b7bbda495407.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 142, + 395, + 468, + 439.3333333333333 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 142, + 439.3333333333333, + 468, + 483.66666666666663 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 142, + 483.66666666666663, + 468, + 528.0 + ], + "spans": [], + "index": 10 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 243, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 245, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 245, + 96 + ], + "score": 1.0, + "content": "F THE RISK ESTIMATOR", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "title", + "bbox": [ + 108, + 106, + 259, + 117 + ], + "lines": [ + { + "bbox": [ + 106, + 106, + 259, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 259, + 118 + ], + "score": 1.0, + "content": "F.1 PROOF OF BUILT-IN BASELINE", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 126, + 505, + 170 + ], + "lines": [ + { + "bbox": [ + 105, + 126, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 139 + ], + "score": 1.0, + "content": "We show that the RISK estimator, taking gradients through the normalization factor actually has a", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 137, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 149 + ], + "score": 1.0, + "content": "built-in baseline. We first use the log-derivative trick to rewrite the gradient of the ratio as the ratio", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 148, + 506, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 506, + 161 + ], + "score": 1.0, + "content": "times the logarithm of the gradient, and then swap the summation variables in the double sum that", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 159, + 135, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 135, + 172 + ], + "score": 1.0, + "content": "arises:", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3.5 + }, + { + "type": "interline_equation", + "bbox": [ + 157, + 174, + 455, + 438 + ], + "lines": [ + { + "bbox": [ + 157, + 174, + 455, + 438 + ], + "spans": [ + { + "bbox": [ + 157, + 174, + 455, + 438 + ], + "score": 0.93, + "content": "\\begin{array} { r l } \\varepsilon ^ { \\mathrm { s c } } > 5 1 - \\sum _ { j \\in \\mathcal { K } } \\frac { \\partial } { \\partial x _ { j } } \\varepsilon ( \\frac \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\end{array}", + "type": "interline_equation", + "image_path": "d4fc2e2e5933c5709e0115282aca9abd4d4a5eeb1046ee13e85dc7bc3a3c9cbf.jpg" + } + ] + } + ], + "index": 14.5, + "virtual_lines": [ + { + "bbox": [ + 157, + 174, + 455, + 188.66666666666666 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 157, + 188.66666666666666, + 455, + 203.33333333333331 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 157, + 203.33333333333331, + 455, + 217.99999999999997 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 157, + 217.99999999999997, + 455, + 232.66666666666663 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 157, + 232.66666666666663, + 455, + 247.3333333333333 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 157, + 247.3333333333333, + 455, + 261.99999999999994 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 157, + 261.99999999999994, + 455, + 276.66666666666663 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 157, + 276.66666666666663, + 455, + 291.3333333333333 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 157, + 291.3333333333333, + 455, + 306.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 157, + 306.0, + 455, + 320.6666666666667 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 157, + 320.6666666666667, + 455, + 335.33333333333337 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 157, + 335.33333333333337, + 455, + 350.00000000000006 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 157, + 350.00000000000006, + 455, + 364.66666666666674 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 157, + 364.66666666666674, + 455, + 379.3333333333334 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 157, + 379.3333333333334, + 455, + 394.0000000000001 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 157, + 394.0000000000001, + 455, + 408.6666666666668 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 157, + 408.6666666666668, + 455, + 423.3333333333335 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 157, + 423.3333333333335, + 455, + 438.00000000000017 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "title", + "bbox": [ + 106, + 447, + 366, + 460 + ], + "lines": [ + { + "bbox": [ + 105, + 445, + 367, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 367, + 462 + ], + "score": 1.0, + "content": "G CATEGORICAL VARIATIONAL AUTO-ENCODER", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "title", + "bbox": [ + 107, + 472, + 240, + 483 + ], + "lines": [ + { + "bbox": [ + 106, + 472, + 241, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 472, + 241, + 484 + ], + "score": 1.0, + "content": "G.1 EXPERIMENTAL DETAILS", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 492, + 505, + 592 + ], + "lines": [ + { + "bbox": [ + 105, + 492, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 506, + 506 + ], + "score": 1.0, + "content": "We use the code6 by Yin et al. (2019) to reproduce their categorical VAE experiment, of which we", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 502, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 505, + 517 + ], + "score": 1.0, + "content": "include details here for self-containment. The dataset is MNIST, statically binarized by thresholding", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 513, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 505, + 529 + ], + "score": 1.0, + "content": "at 0.5 (although we include results using the standard binarized dataset by Salakhutdinov & Murray", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 525, + 505, + 539 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 422, + 539 + ], + "score": 1.0, + "content": "(2008); Larochelle & Murray (2011) in Section G.2). The latent representation", + "type": "text" + }, + { + "bbox": [ + 422, + 527, + 429, + 536 + ], + "score": 0.77, + "content": "_ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 525, + 439, + 539 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 439, + 526, + 473, + 536 + ], + "score": 0.89, + "content": "K = 2 0", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 525, + 505, + 539 + ], + "score": 1.0, + "content": "dimen-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 536, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 153, + 550 + ], + "score": 1.0, + "content": "sional with", + "type": "text" + }, + { + "bbox": [ + 153, + 537, + 186, + 547 + ], + "score": 0.92, + "content": "C = 1 0", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 536, + 373, + 550 + ], + "score": 1.0, + "content": "categories per dimension with a uniform prior", + "type": "text" + }, + { + "bbox": [ + 374, + 537, + 501, + 549 + ], + "score": 0.9, + "content": "p ( z _ { k } = c ) = 1 / C , k = 1 , . . . , K", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 536, + 505, + 550 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 546, + 506, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 239, + 561 + ], + "score": 1.0, + "content": "The encoder is parameterized by", + "type": "text" + }, + { + "bbox": [ + 239, + 548, + 248, + 559 + ], + "score": 0.85, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 546, + 259, + 561 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 259, + 547, + 360, + 560 + ], + "score": 0.93, + "content": "\\begin{array} { r } { q _ { \\phi } ( z | \\pmb { x } ) = \\prod _ { k } q _ { \\phi } ( z _ { k } | \\pmb { \\bar { x } } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 546, + 506, + 561 + ], + "score": 1.0, + "content": "and has two fully connected hidden", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 558, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 394, + 572 + ], + "score": 1.0, + "content": "layers with 512 and 256 hidden nodes respectively, with LeakyReLU", + "type": "text" + }, + { + "bbox": [ + 394, + 559, + 432, + 569 + ], + "score": 0.83, + "content": "\\mathit { \\Phi } _ { \\mathrm { ( \\alpha ) } } = 0 . 1", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 558, + 505, + 572 + ], + "score": 1.0, + "content": ") activations. The", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 569, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 215, + 583 + ], + "score": 1.0, + "content": "decoder, parameterized by", + "type": "text" + }, + { + "bbox": [ + 215, + 570, + 222, + 579 + ], + "score": 0.74, + "content": "\\pmb \\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 569, + 273, + 583 + ], + "score": 1.0, + "content": ", is given by", + "type": "text" + }, + { + "bbox": [ + 273, + 569, + 372, + 582 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\bar { p _ { \\pmb \\theta } } ( \\pmb x | z ) \\dot { = } \\prod _ { i } p _ { \\pmb \\theta } ( x _ { i } | \\pmb z ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 569, + 403, + 583 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 403, + 570, + 451, + 581 + ], + "score": 0.93, + "content": "x _ { i } \\in \\{ 0 , 1 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 569, + 505, + 583 + ], + "score": 1.0, + "content": "are the pixel", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 580, + 499, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 580, + 499, + 593 + ], + "score": 1.0, + "content": "values, and has fully connected hidden layers with 256 and 512 nodes and LeakyReLU activation.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 102, + 603, + 461, + 615 + ], + "lines": [ + { + "bbox": [ + 105, + 601, + 461, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 461, + 618 + ], + "score": 1.0, + "content": "ELBO optimization. The evidence lower bound (ELBO) that we optimize is given by", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "interline_equation", + "bbox": [ + 183, + 618, + 427, + 650 + ], + "lines": [ + { + "bbox": [ + 183, + 618, + 427, + 650 + ], + "spans": [ + { + "bbox": [ + 183, + 618, + 427, + 650 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\mathcal { L } ( \\phi , \\pmb { \\theta } ) = \\mathbb { E } _ { z \\sim q _ { \\phi } ( z \\vert x ) } \\left[ \\ln p _ { \\pmb { \\theta } } ( \\pmb { x } \\vert z ) + \\ln p ( z ) - \\ln q _ { \\phi } ( z \\vert x ) \\right] } \\\\ { = \\mathbb { E } _ { z \\sim q _ { \\phi } ( z \\vert x ) } \\left[ \\ln p _ { \\pmb { \\theta } } ( \\pmb { x } \\vert z ) \\right] - K L ( q _ { \\phi } ( z \\vert x ) \\vert \\vert p ( z ) ) . } \\end{array}", + "type": "interline_equation", + "image_path": "11fc4483bac1bab571c6eb2989f4310edc1f93d523bcb801442db4bd3f334b47.jpg" + } + ] + } + ], + "index": 36.5, + "virtual_lines": [ + { + "bbox": [ + 183, + 618, + 427, + 634.0 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 183, + 634.0, + 427, + 650.0 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 651, + 436, + 664 + ], + "lines": [ + { + "bbox": [ + 105, + 650, + 437, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 217, + 666 + ], + "score": 1.0, + "content": "For the decoder parameters", + "type": "text" + }, + { + "bbox": [ + 218, + 653, + 225, + 662 + ], + "score": 0.83, + "content": "\\pmb \\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 650, + 251, + 666 + ], + "score": 1.0, + "content": ", since", + "type": "text" + }, + { + "bbox": [ + 252, + 652, + 286, + 665 + ], + "score": 0.93, + "content": "q _ { \\phi } ( z | \\boldsymbol { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 650, + 367, + 666 + ], + "score": 1.0, + "content": "does not depend on", + "type": "text" + }, + { + "bbox": [ + 367, + 653, + 374, + 662 + ], + "score": 0.78, + "content": "\\pmb \\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 650, + 437, + 666 + ], + "score": 1.0, + "content": ", it follows that", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "interline_equation", + "bbox": [ + 217, + 667, + 393, + 682 + ], + "lines": [ + { + "bbox": [ + 217, + 667, + 393, + 682 + ], + "spans": [ + { + "bbox": [ + 217, + 667, + 393, + 682 + ], + "score": 0.93, + "content": "\\nabla _ { \\pmb \\theta } \\mathcal L ( \\phi , \\pmb \\theta ) = \\mathbb E _ { z \\sim q _ { \\phi } ( z | x ) } \\left[ \\nabla _ { \\pmb \\theta } \\ln p _ { \\pmb \\theta } ( \\pmb x | z ) \\right] .", + "type": "interline_equation", + "image_path": "141335888e50bf6a027bede7f5a9b8c0923d73d3b68ac93b2a5cde2fa4e49d8e.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 217, + 667, + 393, + 682 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "text", + "bbox": [ + 118, + 684, + 482, + 697 + ], + "lines": [ + { + "bbox": [ + 115, + 684, + 483, + 699 + ], + "spans": [ + { + "bbox": [ + 115, + 684, + 217, + 699 + ], + "score": 1.0, + "content": "or the encoder parameters", + "type": "text" + }, + { + "bbox": [ + 218, + 686, + 226, + 697 + ], + "score": 0.85, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 684, + 283, + 699 + ], + "score": 1.0, + "content": ", we can write", + "type": "text" + }, + { + "bbox": [ + 283, + 685, + 330, + 698 + ], + "score": 0.94, + "content": "\\nabla _ { \\phi } \\mathcal { L } ( \\phi , \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 684, + 483, + 699 + ], + "score": 1.0, + "content": "using equation 57 and equation 19 as", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "interline_equation", + "bbox": [ + 130, + 699, + 464, + 714 + ], + "lines": [ + { + "bbox": [ + 130, + 699, + 464, + 714 + ], + "spans": [ + { + "bbox": [ + 130, + 699, + 464, + 714 + ], + "score": 0.88, + "content": "\\nabla _ { \\phi } \\mathcal { L } ( \\phi , \\pmb { \\theta } ) = \\mathbb { E } _ { z \\sim q _ { \\phi } ( z | \\pmb { x } ) } \\left[ \\nabla _ { \\phi } \\ln q _ { \\phi } ( z | \\pmb { x } ) \\ln p _ { \\theta } ( \\pmb { x } | z ) \\right] - \\nabla _ { \\phi } K L ( q _ { \\phi } ( z | \\pmb { x } ) | | p ( z ) ) .", + "type": "interline_equation", + "image_path": "278208fac71600b9253b8dca8238bbf449eaac59045f527748b682df7a879ecb.jpg" + } + ] + } + ], + "index": 41, + "virtual_lines": [ + { + "bbox": [ + 130, + 699, + 464, + 714 + ], + "spans": [], + "index": 41 + } + ] + } + ], + "page_idx": 23, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 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": [ + 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": [ + 118, + 721, + 320, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 719, + 320, + 734 + ], + "spans": [ + { + "bbox": [ + 118, + 719, + 320, + 734 + ], + "score": 1.0, + "content": "6https://github.com/ARM-gradient/ARSM", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 243, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 245, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 245, + 96 + ], + "score": 1.0, + "content": "F THE RISK ESTIMATOR", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "title", + "bbox": [ + 108, + 106, + 259, + 117 + ], + "lines": [ + { + "bbox": [ + 106, + 106, + 259, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 259, + 118 + ], + "score": 1.0, + "content": "F.1 PROOF OF BUILT-IN BASELINE", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 126, + 505, + 170 + ], + "lines": [ + { + "bbox": [ + 105, + 126, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 139 + ], + "score": 1.0, + "content": "We show that the RISK estimator, taking gradients through the normalization factor actually has a", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 137, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 149 + ], + "score": 1.0, + "content": "built-in baseline. We first use the log-derivative trick to rewrite the gradient of the ratio as the ratio", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 148, + 506, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 506, + 161 + ], + "score": 1.0, + "content": "times the logarithm of the gradient, and then swap the summation variables in the double sum that", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 159, + 135, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 135, + 172 + ], + "score": 1.0, + "content": "arises:", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 126, + 506, + 172 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 157, + 174, + 455, + 438 + ], + "lines": [ + { + "bbox": [ + 157, + 174, + 455, + 438 + ], + "spans": [ + { + "bbox": [ + 157, + 174, + 455, + 438 + ], + "score": 0.93, + "content": "\\begin{array} { r l } \\varepsilon ^ { \\mathrm { s c } } > 5 1 - \\sum _ { j \\in \\mathcal { K } } \\frac { \\partial } { \\partial x _ { j } } \\varepsilon ( \\frac \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\cdot \\partial \\end{array}", + "type": "interline_equation", + "image_path": "d4fc2e2e5933c5709e0115282aca9abd4d4a5eeb1046ee13e85dc7bc3a3c9cbf.jpg" + } + ] + } + ], + "index": 14.5, + "virtual_lines": [ + { + "bbox": [ + 157, + 174, + 455, + 188.66666666666666 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 157, + 188.66666666666666, + 455, + 203.33333333333331 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 157, + 203.33333333333331, + 455, + 217.99999999999997 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 157, + 217.99999999999997, + 455, + 232.66666666666663 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 157, + 232.66666666666663, + 455, + 247.3333333333333 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 157, + 247.3333333333333, + 455, + 261.99999999999994 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 157, + 261.99999999999994, + 455, + 276.66666666666663 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 157, + 276.66666666666663, + 455, + 291.3333333333333 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 157, + 291.3333333333333, + 455, + 306.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 157, + 306.0, + 455, + 320.6666666666667 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 157, + 320.6666666666667, + 455, + 335.33333333333337 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 157, + 335.33333333333337, + 455, + 350.00000000000006 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 157, + 350.00000000000006, + 455, + 364.66666666666674 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 157, + 364.66666666666674, + 455, + 379.3333333333334 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 157, + 379.3333333333334, + 455, + 394.0000000000001 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 157, + 394.0000000000001, + 455, + 408.6666666666668 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 157, + 408.6666666666668, + 455, + 423.3333333333335 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 157, + 423.3333333333335, + 455, + 438.00000000000017 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "title", + "bbox": [ + 106, + 447, + 366, + 460 + ], + "lines": [ + { + "bbox": [ + 105, + 445, + 367, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 367, + 462 + ], + "score": 1.0, + "content": "G CATEGORICAL VARIATIONAL AUTO-ENCODER", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "title", + "bbox": [ + 107, + 472, + 240, + 483 + ], + "lines": [ + { + "bbox": [ + 106, + 472, + 241, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 472, + 241, + 484 + ], + "score": 1.0, + "content": "G.1 EXPERIMENTAL DETAILS", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 492, + 505, + 592 + ], + "lines": [ + { + "bbox": [ + 105, + 492, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 506, + 506 + ], + "score": 1.0, + "content": "We use the code6 by Yin et al. (2019) to reproduce their categorical VAE experiment, of which we", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 502, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 505, + 517 + ], + "score": 1.0, + "content": "include details here for self-containment. The dataset is MNIST, statically binarized by thresholding", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 513, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 505, + 529 + ], + "score": 1.0, + "content": "at 0.5 (although we include results using the standard binarized dataset by Salakhutdinov & Murray", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 525, + 505, + 539 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 422, + 539 + ], + "score": 1.0, + "content": "(2008); Larochelle & Murray (2011) in Section G.2). The latent representation", + "type": "text" + }, + { + "bbox": [ + 422, + 527, + 429, + 536 + ], + "score": 0.77, + "content": "_ { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 525, + 439, + 539 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 439, + 526, + 473, + 536 + ], + "score": 0.89, + "content": "K = 2 0", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 525, + 505, + 539 + ], + "score": 1.0, + "content": "dimen-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 536, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 153, + 550 + ], + "score": 1.0, + "content": "sional with", + "type": "text" + }, + { + "bbox": [ + 153, + 537, + 186, + 547 + ], + "score": 0.92, + "content": "C = 1 0", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 536, + 373, + 550 + ], + "score": 1.0, + "content": "categories per dimension with a uniform prior", + "type": "text" + }, + { + "bbox": [ + 374, + 537, + 501, + 549 + ], + "score": 0.9, + "content": "p ( z _ { k } = c ) = 1 / C , k = 1 , . . . , K", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 536, + 505, + 550 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 546, + 506, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 239, + 561 + ], + "score": 1.0, + "content": "The encoder is parameterized by", + "type": "text" + }, + { + "bbox": [ + 239, + 548, + 248, + 559 + ], + "score": 0.85, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 546, + 259, + 561 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 259, + 547, + 360, + 560 + ], + "score": 0.93, + "content": "\\begin{array} { r } { q _ { \\phi } ( z | \\pmb { x } ) = \\prod _ { k } q _ { \\phi } ( z _ { k } | \\pmb { \\bar { x } } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 546, + 506, + 561 + ], + "score": 1.0, + "content": "and has two fully connected hidden", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 558, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 394, + 572 + ], + "score": 1.0, + "content": "layers with 512 and 256 hidden nodes respectively, with LeakyReLU", + "type": "text" + }, + { + "bbox": [ + 394, + 559, + 432, + 569 + ], + "score": 0.83, + "content": "\\mathit { \\Phi } _ { \\mathrm { ( \\alpha ) } } = 0 . 1", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 558, + 505, + 572 + ], + "score": 1.0, + "content": ") activations. The", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 569, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 215, + 583 + ], + "score": 1.0, + "content": "decoder, parameterized by", + "type": "text" + }, + { + "bbox": [ + 215, + 570, + 222, + 579 + ], + "score": 0.74, + "content": "\\pmb \\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 569, + 273, + 583 + ], + "score": 1.0, + "content": ", is given by", + "type": "text" + }, + { + "bbox": [ + 273, + 569, + 372, + 582 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\bar { p _ { \\pmb \\theta } } ( \\pmb x | z ) \\dot { = } \\prod _ { i } p _ { \\pmb \\theta } ( x _ { i } | \\pmb z ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 569, + 403, + 583 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 403, + 570, + 451, + 581 + ], + "score": 0.93, + "content": "x _ { i } \\in \\{ 0 , 1 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 569, + 505, + 583 + ], + "score": 1.0, + "content": "are the pixel", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 580, + 499, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 580, + 499, + 593 + ], + "score": 1.0, + "content": "values, and has fully connected hidden layers with 256 and 512 nodes and LeakyReLU activation.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 492, + 506, + 593 + ] + }, + { + "type": "text", + "bbox": [ + 102, + 603, + 461, + 615 + ], + "lines": [ + { + "bbox": [ + 105, + 601, + 461, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 461, + 618 + ], + "score": 1.0, + "content": "ELBO optimization. The evidence lower bound (ELBO) that we optimize is given by", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 601, + 461, + 618 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 183, + 618, + 427, + 650 + ], + "lines": [ + { + "bbox": [ + 183, + 618, + 427, + 650 + ], + "spans": [ + { + "bbox": [ + 183, + 618, + 427, + 650 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\mathcal { L } ( \\phi , \\pmb { \\theta } ) = \\mathbb { E } _ { z \\sim q _ { \\phi } ( z \\vert x ) } \\left[ \\ln p _ { \\pmb { \\theta } } ( \\pmb { x } \\vert z ) + \\ln p ( z ) - \\ln q _ { \\phi } ( z \\vert x ) \\right] } \\\\ { = \\mathbb { E } _ { z \\sim q _ { \\phi } ( z \\vert x ) } \\left[ \\ln p _ { \\pmb { \\theta } } ( \\pmb { x } \\vert z ) \\right] - K L ( q _ { \\phi } ( z \\vert x ) \\vert \\vert p ( z ) ) . } \\end{array}", + "type": "interline_equation", + "image_path": "11fc4483bac1bab571c6eb2989f4310edc1f93d523bcb801442db4bd3f334b47.jpg" + } + ] + } + ], + "index": 36.5, + "virtual_lines": [ + { + "bbox": [ + 183, + 618, + 427, + 634.0 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 183, + 634.0, + 427, + 650.0 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 651, + 436, + 664 + ], + "lines": [ + { + "bbox": [ + 105, + 650, + 437, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 217, + 666 + ], + "score": 1.0, + "content": "For the decoder parameters", + "type": "text" + }, + { + "bbox": [ + 218, + 653, + 225, + 662 + ], + "score": 0.83, + "content": "\\pmb \\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 650, + 251, + 666 + ], + "score": 1.0, + "content": ", since", + "type": "text" + }, + { + "bbox": [ + 252, + 652, + 286, + 665 + ], + "score": 0.93, + "content": "q _ { \\phi } ( z | \\boldsymbol { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 650, + 367, + 666 + ], + "score": 1.0, + "content": "does not depend on", + "type": "text" + }, + { + "bbox": [ + 367, + 653, + 374, + 662 + ], + "score": 0.78, + "content": "\\pmb \\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 650, + 437, + 666 + ], + "score": 1.0, + "content": ", it follows that", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 650, + 437, + 666 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 217, + 667, + 393, + 682 + ], + "lines": [ + { + "bbox": [ + 217, + 667, + 393, + 682 + ], + "spans": [ + { + "bbox": [ + 217, + 667, + 393, + 682 + ], + "score": 0.93, + "content": "\\nabla _ { \\pmb \\theta } \\mathcal L ( \\phi , \\pmb \\theta ) = \\mathbb E _ { z \\sim q _ { \\phi } ( z | x ) } \\left[ \\nabla _ { \\pmb \\theta } \\ln p _ { \\pmb \\theta } ( \\pmb x | z ) \\right] .", + "type": "interline_equation", + "image_path": "141335888e50bf6a027bede7f5a9b8c0923d73d3b68ac93b2a5cde2fa4e49d8e.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 217, + 667, + 393, + 682 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "text", + "bbox": [ + 118, + 684, + 482, + 697 + ], + "lines": [ + { + "bbox": [ + 115, + 684, + 483, + 699 + ], + "spans": [ + { + "bbox": [ + 115, + 684, + 217, + 699 + ], + "score": 1.0, + "content": "or the encoder parameters", + "type": "text" + }, + { + "bbox": [ + 218, + 686, + 226, + 697 + ], + "score": 0.85, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 684, + 283, + 699 + ], + "score": 1.0, + "content": ", we can write", + "type": "text" + }, + { + "bbox": [ + 283, + 685, + 330, + 698 + ], + "score": 0.94, + "content": "\\nabla _ { \\phi } \\mathcal { L } ( \\phi , \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 684, + 483, + 699 + ], + "score": 1.0, + "content": "using equation 57 and equation 19 as", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40, + "bbox_fs": [ + 115, + 684, + 483, + 699 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 130, + 699, + 464, + 714 + ], + "lines": [ + { + "bbox": [ + 130, + 699, + 464, + 714 + ], + "spans": [ + { + "bbox": [ + 130, + 699, + 464, + 714 + ], + "score": 0.88, + "content": "\\nabla _ { \\phi } \\mathcal { L } ( \\phi , \\pmb { \\theta } ) = \\mathbb { E } _ { z \\sim q _ { \\phi } ( z | \\pmb { x } ) } \\left[ \\nabla _ { \\phi } \\ln q _ { \\phi } ( z | \\pmb { x } ) \\ln p _ { \\theta } ( \\pmb { x } | z ) \\right] - \\nabla _ { \\phi } K L ( q _ { \\phi } ( z | \\pmb { x } ) | | p ( z ) ) .", + "type": "interline_equation", + "image_path": "278208fac71600b9253b8dca8238bbf449eaac59045f527748b682df7a879ecb.jpg" + } + ] + } + ], + "index": 41, + "virtual_lines": [ + { + "bbox": [ + 130, + 699, + 464, + 714 + ], + "spans": [], + "index": 41 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 247, + 96 + ], + "score": 1.0, + "content": "This assumes we can compute the", + "type": "text" + }, + { + "bbox": [ + 247, + 83, + 262, + 93 + ], + "score": 0.37, + "content": "\\mathrm { K L }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "divergence analytically. Alternatively, we can use a sample", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 424, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 424, + 106 + ], + "score": 1.0, + "content": "estimate for the KL divergence, and use equation 56 with equation 19 to obtain", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 108, + 109, + 503, + 153 + ], + "lines": [ + { + "bbox": [ + 108, + 109, + 487, + 153 + ], + "spans": [ + { + "bbox": [ + 108, + 109, + 487, + 153 + ], + "score": 0.64, + "content": "\\begin{array} { l } { \\nabla _ { \\phi } \\mathcal { L } ( \\phi , \\theta ) = \\mathbb { E } _ { z \\sim q _ { \\phi } ( z | x ) } \\left[ \\nabla _ { \\phi } \\ln q _ { \\phi } ( z | x ) ( \\ln p _ { \\theta } ( x | z ) + \\ln p ( z ) - \\ln q _ { \\phi } ( z | x ) ) + \\nabla _ { \\phi } \\ln q _ { \\phi } ( z | x ) \\right] , } \\\\ { \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad } \\\\ { = \\mathbb { E } _ { z \\sim q _ { \\phi } ( z | x ) } \\left[ \\nabla _ { \\phi } \\ln q _ { \\phi } ( z | x ) ( \\ln p _ { \\theta } ( x | z ) - \\ln q _ { \\phi } ( z | x ) ) \\right] . } \\end{array}", + "type": "interline_equation", + "image_path": "9047984934ee20c3367dfc54f7d948b00ec5fc53723581b47394e47e41f9a1e7.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 108, + 109, + 503, + 123.66666666666667 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 108, + 123.66666666666667, + 503, + 138.33333333333334 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 108, + 138.33333333333334, + 503, + 153.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 157, + 505, + 248 + ], + "lines": [ + { + "bbox": [ + 104, + 156, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 104, + 156, + 227, + 173 + ], + "score": 1.0, + "content": "Here we have left out the term", + "type": "text" + }, + { + "bbox": [ + 228, + 158, + 359, + 171 + ], + "score": 0.88, + "content": "\\begin{array} { r } { \\mathbb { E } _ { z \\sim q _ { \\phi } ( z | \\pmb { x } ) } \\left[ \\nabla _ { \\phi } \\ln q _ { \\phi } ( z | \\pmb { x } ) \\right] = 0 } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 156, + 506, + 173 + ], + "score": 1.0, + "content": ", similar to Roeder et al. (2017), and,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 169, + 506, + 184 + ], + "spans": [ + { + "bbox": [ + 104, + 169, + 268, + 184 + ], + "score": 1.0, + "content": "assuming a uniform (i.e. constant) prior", + "type": "text" + }, + { + "bbox": [ + 268, + 171, + 298, + 182 + ], + "score": 0.91, + "content": "\\ln p ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 169, + 338, + 184 + ], + "score": 1.0, + "content": ", the term", + "type": "text" + }, + { + "bbox": [ + 339, + 170, + 501, + 183 + ], + "score": 0.9, + "content": "{ { \\mathbb E } } _ { z \\sim q _ { \\phi } ( z | x ) } \\left[ \\nabla _ { \\phi } \\ln q _ { \\phi } ( z | x ) \\ln p ( z ) \\right] = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 169, + 506, + 184 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 182, + 506, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 182, + 506, + 194 + ], + "score": 1.0, + "content": "With a built-in baseline, this second term cancels out automatically, even if it is implemented. De-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 192, + 506, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 506, + 205 + ], + "score": 1.0, + "content": "spite the similarity of the equation 56 and equation 57, their gradient estimates (equation 60 and", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 204, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 505, + 216 + ], + "score": 1.0, + "content": "equation 59) are structurally dissimilar and care should be taken to implement the REINFORCE", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 214, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 505, + 227 + ], + "score": 1.0, + "content": "estimator (or related estimators such as ARSM and the unordered set estimator) correctly using au-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 225, + 504, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 504, + 237 + ], + "score": 1.0, + "content": "tomatic differentiation software. Using Gumbel-Softmax and RELAX, we take gradients ‘directly’", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 237, + 256, + 248 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 256, + 248 + ], + "score": 1.0, + "content": "through the objective in equation 57.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 107, + 253, + 505, + 308 + ], + "lines": [ + { + "bbox": [ + 107, + 253, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 107, + 253, + 505, + 265 + ], + "score": 1.0, + "content": "We optimize the ELBO using the analytic KL for 1000 epochs using the Adam (Kingma & Ba, 2015)", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 262, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 254, + 277 + ], + "score": 1.0, + "content": "optimizer. We use a learning rate of", + "type": "text" + }, + { + "bbox": [ + 255, + 263, + 276, + 274 + ], + "score": 0.9, + "content": "\\mathrm { i 0 ^ { - 3 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 262, + 505, + 277 + ], + "score": 1.0, + "content": "for all estimators except Gumbel-Softmax and RELAX,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 274, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 218, + 288 + ], + "score": 1.0, + "content": "which use a learning rate of", + "type": "text" + }, + { + "bbox": [ + 218, + 275, + 240, + 285 + ], + "score": 0.9, + "content": "\\bar { 1 } 0 ^ { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 274, + 505, + 288 + ], + "score": 1.0, + "content": "as we found they diverged with a higher learning rate. For ARSM,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 284, + 506, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 352, + 300 + ], + "score": 1.0, + "content": "as an exception we use the sample KL, and a learning rate of", + "type": "text" + }, + { + "bbox": [ + 353, + 285, + 386, + 297 + ], + "score": 0.9, + "content": "3 \\cdot 1 0 ^ { - \\overline { { 4 } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 284, + 506, + 300 + ], + "score": 1.0, + "content": ", as suggested by the authors.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 296, + 489, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 489, + 311 + ], + "score": 1.0, + "content": "All reported ELBO values are computed using the analytic KL. Our code is publicly available7.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15 + }, + { + "type": "title", + "bbox": [ + 107, + 322, + 229, + 333 + ], + "lines": [ + { + "bbox": [ + 106, + 321, + 230, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 230, + 334 + ], + "score": 1.0, + "content": "G.2 ADDITIONAL RESULTS", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 342, + 505, + 408 + ], + "lines": [ + { + "bbox": [ + 106, + 341, + 506, + 355 + ], + "spans": [ + { + "bbox": [ + 106, + 341, + 506, + 355 + ], + "score": 1.0, + "content": "Gradient variance during training. We also evaluate gradient variance of different estimators", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 353, + 504, + 366 + ], + "spans": [ + { + "bbox": [ + 106, + 353, + 474, + 366 + ], + "score": 1.0, + "content": "during different stages of training. We measure the variance of different estimators with", + "type": "text" + }, + { + "bbox": [ + 475, + 354, + 504, + 364 + ], + "score": 0.88, + "content": "k = 4", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 364, + 506, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 506, + 376 + ], + "score": 1.0, + "content": "samples during training with REINFORCE with replacement, such that all estimators are computed", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 375, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 505, + 388 + ], + "score": 1.0, + "content": "for the same model parameters. The results during training, given in Figure 4, are similar to the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 385, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 104, + 385, + 505, + 400 + ], + "score": 1.0, + "content": "results for the trained model in Table 1, except for at the beginning of training, although the rankings", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 397, + 277, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 277, + 410 + ], + "score": 1.0, + "content": "of different estimator are mostly the same.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 107, + 420, + 505, + 487 + ], + "lines": [ + { + "bbox": [ + 106, + 420, + 504, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 420, + 504, + 433 + ], + "score": 1.0, + "content": "Negative ELBO on validation set. Figure 5 shows the -ELBO evaluated during training on the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 430, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 505, + 446 + ], + "score": 1.0, + "content": "validation set. For the large latent space, we see validation error quickly increase (after reaching", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 443, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 505, + 456 + ], + "score": 1.0, + "content": "a minimum) which is likely because of overfitting (due to improved optimization), a phenomenon", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 453, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 505, + 466 + ], + "score": 1.0, + "content": "observed before (Tucker et al., 2017; Grathwohl et al., 2018). Note that before the overfitting starts,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 464, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 506, + 478 + ], + "score": 1.0, + "content": "both REINFORCE without replacement and the unordered set estimator achieve a validation error", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 474, + 464, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 464, + 490 + ], + "score": 1.0, + "content": "similar to the other estimators, such that in a practical setting, one can use early stopping.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 106, + 499, + 505, + 587 + ], + "lines": [ + { + "bbox": [ + 105, + 498, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 505, + 511 + ], + "score": 1.0, + "content": "Results using standard binarized MNIST dataset. Instead of using the MNIST dataset binarized", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 510, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 505, + 522 + ], + "score": 1.0, + "content": "by thresholding values at 0.5 (as in the code and paper by Yin et al. (2019)) we also experiment with", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 521, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 505, + 534 + ], + "score": 1.0, + "content": "the standard (fixed) binarized dataset by Salakhutdinov & Murray (2008); Larochelle & Murray", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 532, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 505, + 545 + ], + "score": 1.0, + "content": "(2011), for which we plot train and validation curves for two runs on the small and large domain", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 543, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 543, + 505, + 556 + ], + "score": 1.0, + "content": "in Figure 6. This gives more realistic (higher) -ELBO scores, although we still observe the effect", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "score": 1.0, + "content": "of overfitting. As this is a bit more unstable setting, one of the runs using REINFORCE with", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 565, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 505, + 578 + ], + "score": 1.0, + "content": "replacement diverged, but in general the relative performance of estimators is similar to using the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 577, + 214, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 214, + 587 + ], + "score": 1.0, + "content": "dataset with 0.5 threshold.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 34.5 + } + ], + "page_idx": 24, + "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": [ + 113, + 722, + 502, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 720, + 503, + 733 + ], + "spans": [ + { + "bbox": [ + 119, + 720, + 503, + 733 + ], + "score": 1.0, + "content": "7https://github.com/wouterkool/estimating-gradients-without-replacement", + "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": "25", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 247, + 96 + ], + "score": 1.0, + "content": "This assumes we can compute the", + "type": "text" + }, + { + "bbox": [ + 247, + 83, + 262, + 93 + ], + "score": 0.37, + "content": "\\mathrm { K L }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "divergence analytically. Alternatively, we can use a sample", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 424, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 424, + 106 + ], + "score": 1.0, + "content": "estimate for the KL divergence, and use equation 56 with equation 19 to obtain", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 505, + 106 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 108, + 109, + 503, + 153 + ], + "lines": [ + { + "bbox": [ + 108, + 109, + 487, + 153 + ], + "spans": [ + { + "bbox": [ + 108, + 109, + 487, + 153 + ], + "score": 0.64, + "content": "\\begin{array} { l } { \\nabla _ { \\phi } \\mathcal { L } ( \\phi , \\theta ) = \\mathbb { E } _ { z \\sim q _ { \\phi } ( z | x ) } \\left[ \\nabla _ { \\phi } \\ln q _ { \\phi } ( z | x ) ( \\ln p _ { \\theta } ( x | z ) + \\ln p ( z ) - \\ln q _ { \\phi } ( z | x ) ) + \\nabla _ { \\phi } \\ln q _ { \\phi } ( z | x ) \\right] , } \\\\ { \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad } \\\\ { = \\mathbb { E } _ { z \\sim q _ { \\phi } ( z | x ) } \\left[ \\nabla _ { \\phi } \\ln q _ { \\phi } ( z | x ) ( \\ln p _ { \\theta } ( x | z ) - \\ln q _ { \\phi } ( z | x ) ) \\right] . } \\end{array}", + "type": "interline_equation", + "image_path": "9047984934ee20c3367dfc54f7d948b00ec5fc53723581b47394e47e41f9a1e7.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 108, + 109, + 503, + 123.66666666666667 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 108, + 123.66666666666667, + 503, + 138.33333333333334 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 108, + 138.33333333333334, + 503, + 153.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 157, + 505, + 248 + ], + "lines": [ + { + "bbox": [ + 104, + 156, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 104, + 156, + 227, + 173 + ], + "score": 1.0, + "content": "Here we have left out the term", + "type": "text" + }, + { + "bbox": [ + 228, + 158, + 359, + 171 + ], + "score": 0.88, + "content": "\\begin{array} { r } { \\mathbb { E } _ { z \\sim q _ { \\phi } ( z | \\pmb { x } ) } \\left[ \\nabla _ { \\phi } \\ln q _ { \\phi } ( z | \\pmb { x } ) \\right] = 0 } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 156, + 506, + 173 + ], + "score": 1.0, + "content": ", similar to Roeder et al. (2017), and,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 169, + 506, + 184 + ], + "spans": [ + { + "bbox": [ + 104, + 169, + 268, + 184 + ], + "score": 1.0, + "content": "assuming a uniform (i.e. constant) prior", + "type": "text" + }, + { + "bbox": [ + 268, + 171, + 298, + 182 + ], + "score": 0.91, + "content": "\\ln p ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 169, + 338, + 184 + ], + "score": 1.0, + "content": ", the term", + "type": "text" + }, + { + "bbox": [ + 339, + 170, + 501, + 183 + ], + "score": 0.9, + "content": "{ { \\mathbb E } } _ { z \\sim q _ { \\phi } ( z | x ) } \\left[ \\nabla _ { \\phi } \\ln q _ { \\phi } ( z | x ) \\ln p ( z ) \\right] = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 169, + 506, + 184 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 182, + 506, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 182, + 506, + 194 + ], + "score": 1.0, + "content": "With a built-in baseline, this second term cancels out automatically, even if it is implemented. De-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 192, + 506, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 506, + 205 + ], + "score": 1.0, + "content": "spite the similarity of the equation 56 and equation 57, their gradient estimates (equation 60 and", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 204, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 505, + 216 + ], + "score": 1.0, + "content": "equation 59) are structurally dissimilar and care should be taken to implement the REINFORCE", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 214, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 505, + 227 + ], + "score": 1.0, + "content": "estimator (or related estimators such as ARSM and the unordered set estimator) correctly using au-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 225, + 504, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 504, + 237 + ], + "score": 1.0, + "content": "tomatic differentiation software. Using Gumbel-Softmax and RELAX, we take gradients ‘directly’", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 237, + 256, + 248 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 256, + 248 + ], + "score": 1.0, + "content": "through the objective in equation 57.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 8.5, + "bbox_fs": [ + 104, + 156, + 506, + 248 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 253, + 505, + 308 + ], + "lines": [ + { + "bbox": [ + 107, + 253, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 107, + 253, + 505, + 265 + ], + "score": 1.0, + "content": "We optimize the ELBO using the analytic KL for 1000 epochs using the Adam (Kingma & Ba, 2015)", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 262, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 254, + 277 + ], + "score": 1.0, + "content": "optimizer. We use a learning rate of", + "type": "text" + }, + { + "bbox": [ + 255, + 263, + 276, + 274 + ], + "score": 0.9, + "content": "\\mathrm { i 0 ^ { - 3 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 262, + 505, + 277 + ], + "score": 1.0, + "content": "for all estimators except Gumbel-Softmax and RELAX,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 274, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 218, + 288 + ], + "score": 1.0, + "content": "which use a learning rate of", + "type": "text" + }, + { + "bbox": [ + 218, + 275, + 240, + 285 + ], + "score": 0.9, + "content": "\\bar { 1 } 0 ^ { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 274, + 505, + 288 + ], + "score": 1.0, + "content": "as we found they diverged with a higher learning rate. For ARSM,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 284, + 506, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 352, + 300 + ], + "score": 1.0, + "content": "as an exception we use the sample KL, and a learning rate of", + "type": "text" + }, + { + "bbox": [ + 353, + 285, + 386, + 297 + ], + "score": 0.9, + "content": "3 \\cdot 1 0 ^ { - \\overline { { 4 } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 284, + 506, + 300 + ], + "score": 1.0, + "content": ", as suggested by the authors.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 296, + 489, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 489, + 311 + ], + "score": 1.0, + "content": "All reported ELBO values are computed using the analytic KL. Our code is publicly available7.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 253, + 506, + 311 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 322, + 229, + 333 + ], + "lines": [ + { + "bbox": [ + 106, + 321, + 230, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 230, + 334 + ], + "score": 1.0, + "content": "G.2 ADDITIONAL RESULTS", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 342, + 505, + 408 + ], + "lines": [ + { + "bbox": [ + 106, + 341, + 506, + 355 + ], + "spans": [ + { + "bbox": [ + 106, + 341, + 506, + 355 + ], + "score": 1.0, + "content": "Gradient variance during training. We also evaluate gradient variance of different estimators", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 353, + 504, + 366 + ], + "spans": [ + { + "bbox": [ + 106, + 353, + 474, + 366 + ], + "score": 1.0, + "content": "during different stages of training. We measure the variance of different estimators with", + "type": "text" + }, + { + "bbox": [ + 475, + 354, + 504, + 364 + ], + "score": 0.88, + "content": "k = 4", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 364, + 506, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 506, + 376 + ], + "score": 1.0, + "content": "samples during training with REINFORCE with replacement, such that all estimators are computed", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 375, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 505, + 388 + ], + "score": 1.0, + "content": "for the same model parameters. The results during training, given in Figure 4, are similar to the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 385, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 104, + 385, + 505, + 400 + ], + "score": 1.0, + "content": "results for the trained model in Table 1, except for at the beginning of training, although the rankings", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 397, + 277, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 277, + 410 + ], + "score": 1.0, + "content": "of different estimator are mostly the same.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21.5, + "bbox_fs": [ + 104, + 341, + 506, + 410 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 420, + 505, + 487 + ], + "lines": [ + { + "bbox": [ + 106, + 420, + 504, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 420, + 504, + 433 + ], + "score": 1.0, + "content": "Negative ELBO on validation set. Figure 5 shows the -ELBO evaluated during training on the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 430, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 505, + 446 + ], + "score": 1.0, + "content": "validation set. For the large latent space, we see validation error quickly increase (after reaching", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 443, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 505, + 456 + ], + "score": 1.0, + "content": "a minimum) which is likely because of overfitting (due to improved optimization), a phenomenon", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 453, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 505, + 466 + ], + "score": 1.0, + "content": "observed before (Tucker et al., 2017; Grathwohl et al., 2018). Note that before the overfitting starts,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 464, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 506, + 478 + ], + "score": 1.0, + "content": "both REINFORCE without replacement and the unordered set estimator achieve a validation error", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 474, + 464, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 464, + 490 + ], + "score": 1.0, + "content": "similar to the other estimators, such that in a practical setting, one can use early stopping.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 420, + 506, + 490 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 499, + 505, + 587 + ], + "lines": [ + { + "bbox": [ + 105, + 498, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 505, + 511 + ], + "score": 1.0, + "content": "Results using standard binarized MNIST dataset. Instead of using the MNIST dataset binarized", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 510, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 505, + 522 + ], + "score": 1.0, + "content": "by thresholding values at 0.5 (as in the code and paper by Yin et al. (2019)) we also experiment with", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 521, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 505, + 534 + ], + "score": 1.0, + "content": "the standard (fixed) binarized dataset by Salakhutdinov & Murray (2008); Larochelle & Murray", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 532, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 505, + 545 + ], + "score": 1.0, + "content": "(2011), for which we plot train and validation curves for two runs on the small and large domain", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 543, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 543, + 505, + 556 + ], + "score": 1.0, + "content": "in Figure 6. This gives more realistic (higher) -ELBO scores, although we still observe the effect", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "score": 1.0, + "content": "of overfitting. As this is a bit more unstable setting, one of the runs using REINFORCE with", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 565, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 505, + 578 + ], + "score": 1.0, + "content": "replacement diverged, but in general the relative performance of estimators is similar to using the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 577, + 214, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 214, + 587 + ], + "score": 1.0, + "content": "dataset with 0.5 threshold.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 498, + 505, + 587 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 116, + 153, + 495, + 276 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 159, + 149, + 269, + 155 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 159, + 149, + 270, + 156 + ], + "spans": [ + { + "bbox": [ + 159, + 149, + 241, + 156 + ], + "score": 1.0, + "content": "Training log variance (10 2 latent space),", + "type": "text" + }, + { + "bbox": [ + 241, + 149, + 252, + 154 + ], + "score": 0.56, + "content": "k = 4", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 149, + 270, + 156 + ], + "score": 1.0, + "content": "samples", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "image_body", + "bbox": [ + 116, + 153, + 495, + 276 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 116, + 153, + 495, + 276 + ], + "spans": [ + { + "bbox": [ + 116, + 153, + 495, + 276 + ], + "score": 0.953, + "type": "image", + "image_path": "3cf64085ef97333430dfc6ae343dba9cc3bb81a28a8d5d46e4e908f59c58c425.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 116, + 153, + 495, + 194.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 116, + 194.0, + 495, + 235.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 116, + 235.0, + 495, + 276.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 284, + 506, + 350 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 282, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 378, + 298 + ], + "score": 1.0, + "content": "Figure 4: Gradient log variance of different unbiased estimators with", + "type": "text" + }, + { + "bbox": [ + 378, + 284, + 403, + 294 + ], + "score": 0.9, + "content": "k = 4", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 282, + 506, + 298 + ], + "score": 1.0, + "content": "samples, estimated every", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 294, + 506, + 307 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 506, + 307 + ], + "score": 1.0, + "content": "100 (out of 1000) epochs while training using REINFORCE with replacement. Each estimator is", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 306, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 506, + 318 + ], + "score": 1.0, + "content": "computed 1000 times with different latent samples for a fixed minibatch (the first 100 records of", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 317, + 506, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 506, + 330 + ], + "score": 1.0, + "content": "training data). We report (the logarithm of) the sum of the variances per parameter (trace of the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 329, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 106, + 329, + 505, + 340 + ], + "score": 1.0, + "content": "covariance matrix). Some lines coincide, so we sort the legend by the last measurement and report", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 339, + 145, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 145, + 351 + ], + "score": 1.0, + "content": "its value.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6.5 + } + ], + "index": 2 + }, + { + "type": "image", + "bbox": [ + 117, + 489, + 495, + 622 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 117, + 489, + 495, + 622 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 117, + 489, + 495, + 622 + ], + "spans": [ + { + "bbox": [ + 117, + 489, + 495, + 622 + ], + "score": 0.965, + "type": "image", + "image_path": "9db0e1232d97d8b19cc6e8b5122295f21e9ef07cda2dbb6e7624da7dadc43d3b.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 117, + 489, + 495, + 533.3333333333334 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 117, + 533.3333333333334, + 495, + 577.6666666666667 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 117, + 577.6666666666667, + 495, + 622.0000000000001 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 631, + 506, + 665 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 631, + 505, + 643 + ], + "spans": [ + { + "bbox": [ + 106, + 631, + 505, + 643 + ], + "score": 1.0, + "content": "Figure 5: Smoothed validation -ELBO curves during training of two independent runs when with", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 641, + 505, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 205, + 655 + ], + "score": 1.0, + "content": "different estimators with", + "type": "text" + }, + { + "bbox": [ + 206, + 642, + 231, + 653 + ], + "score": 0.86, + "content": "k = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 641, + 505, + 655 + ], + "score": 1.0, + "content": ", 4 or 8 (thicker lines) samples (ARSM has a variable number). Some", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 653, + 464, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 464, + 667 + ], + "score": 1.0, + "content": "lines coincide, so we sort the legend by the lowest -ELBO achieved and report this value.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + } + ], + "index": 12.5 + } + ], + "page_idx": 25, + "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": "26", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 353, + 149, + 465, + 155 + ], + "lines": [ + { + "bbox": [ + 353, + 149, + 465, + 156 + ], + "spans": [ + { + "bbox": [ + 353, + 149, + 396, + 156 + ], + "score": 1.0, + "content": "Training log variance", + "type": "text" + }, + { + "bbox": [ + 396, + 149, + 407, + 154 + ], + "score": 0.53, + "content": "( 1 0 ^ { 2 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 149, + 436, + 155 + ], + "score": 1.0, + "content": "latent space),", + "type": "text" + }, + { + "bbox": [ + 436, + 149, + 447, + 154 + ], + "score": 0.56, + "content": "k = 4", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 149, + 465, + 155 + ], + "score": 1.0, + "content": "samples", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 116, + 153, + 495, + 276 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 159, + 149, + 269, + 155 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 159, + 149, + 270, + 156 + ], + "spans": [ + { + "bbox": [ + 159, + 149, + 241, + 156 + ], + "score": 1.0, + "content": "Training log variance (10 2 latent space),", + "type": "text" + }, + { + "bbox": [ + 241, + 149, + 252, + 154 + ], + "score": 0.56, + "content": "k = 4", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 149, + 270, + 156 + ], + "score": 1.0, + "content": "samples", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "image_body", + "bbox": [ + 116, + 153, + 495, + 276 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 116, + 153, + 495, + 276 + ], + "spans": [ + { + "bbox": [ + 116, + 153, + 495, + 276 + ], + "score": 0.953, + "type": "image", + "image_path": "3cf64085ef97333430dfc6ae343dba9cc3bb81a28a8d5d46e4e908f59c58c425.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 116, + 153, + 495, + 194.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 116, + 194.0, + 495, + 235.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 116, + 235.0, + 495, + 276.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 284, + 506, + 350 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 282, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 378, + 298 + ], + "score": 1.0, + "content": "Figure 4: Gradient log variance of different unbiased estimators with", + "type": "text" + }, + { + "bbox": [ + 378, + 284, + 403, + 294 + ], + "score": 0.9, + "content": "k = 4", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 282, + 506, + 298 + ], + "score": 1.0, + "content": "samples, estimated every", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 294, + 506, + 307 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 506, + 307 + ], + "score": 1.0, + "content": "100 (out of 1000) epochs while training using REINFORCE with replacement. Each estimator is", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 306, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 506, + 318 + ], + "score": 1.0, + "content": "computed 1000 times with different latent samples for a fixed minibatch (the first 100 records of", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 317, + 506, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 506, + 330 + ], + "score": 1.0, + "content": "training data). We report (the logarithm of) the sum of the variances per parameter (trace of the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 329, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 106, + 329, + 505, + 340 + ], + "score": 1.0, + "content": "covariance matrix). Some lines coincide, so we sort the legend by the last measurement and report", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 339, + 145, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 145, + 351 + ], + "score": 1.0, + "content": "its value.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6.5 + } + ], + "index": 2 + }, + { + "type": "image", + "bbox": [ + 117, + 489, + 495, + 622 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 117, + 489, + 495, + 622 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 117, + 489, + 495, + 622 + ], + "spans": [ + { + "bbox": [ + 117, + 489, + 495, + 622 + ], + "score": 0.965, + "type": "image", + "image_path": "9db0e1232d97d8b19cc6e8b5122295f21e9ef07cda2dbb6e7624da7dadc43d3b.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 117, + 489, + 495, + 533.3333333333334 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 117, + 533.3333333333334, + 495, + 577.6666666666667 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 117, + 577.6666666666667, + 495, + 622.0000000000001 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 631, + 506, + 665 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 631, + 505, + 643 + ], + "spans": [ + { + "bbox": [ + 106, + 631, + 505, + 643 + ], + "score": 1.0, + "content": "Figure 5: Smoothed validation -ELBO curves during training of two independent runs when with", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 641, + 505, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 205, + 655 + ], + "score": 1.0, + "content": "different estimators with", + "type": "text" + }, + { + "bbox": [ + 206, + 642, + 231, + 653 + ], + "score": 0.86, + "content": "k = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 641, + 505, + 655 + ], + "score": 1.0, + "content": ", 4 or 8 (thicker lines) samples (ARSM has a variable number). Some", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 653, + 464, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 464, + 667 + ], + "score": 1.0, + "content": "lines coincide, so we sort the legend by the lowest -ELBO achieved and report this value.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + } + ], + "index": 12.5 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 115, + 240, + 495, + 508 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 115, + 240, + 495, + 508 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 115, + 240, + 495, + 508 + ], + "spans": [ + { + "bbox": [ + 115, + 240, + 495, + 508 + ], + "score": 0.978, + "type": "image", + "image_path": "d1fca44c1c3c18bdebf0fcdc5ea9a18b01b73cd2389f61f27b68f5e6d89e5bae.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 115, + 240, + 495, + 329.3333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 115, + 329.3333333333333, + 495, + 418.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 115, + 418.66666666666663, + 495, + 507.99999999999994 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 517, + 505, + 573 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 517, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 106, + 517, + 505, + 529 + ], + "score": 1.0, + "content": "Figure 6: Smoothed training and validation -ELBO curves during training on the standard binarized", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 528, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 505, + 540 + ], + "score": 1.0, + "content": "MNIST dataset (Salakhutdinov & Murray, 2008; Larochelle & Murray, 2011) of two independent", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 540, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 269, + 552 + ], + "score": 1.0, + "content": "runs when with different estimators with", + "type": "text" + }, + { + "bbox": [ + 269, + 540, + 294, + 550 + ], + "score": 0.88, + "content": "k = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 540, + 505, + 552 + ], + "score": 1.0, + "content": ", 4 or 8 (thicker lines) samples (ARSM has a variable", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 551, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 505, + 563 + ], + "score": 1.0, + "content": "number). Some lines coincide, so we sort the legend by the lowest -ELBO achieved and report this", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 559, + 134, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 134, + 575 + ], + "score": 1.0, + "content": "value.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + } + ], + "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": "image", + "bbox": [ + 115, + 240, + 495, + 508 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 115, + 240, + 495, + 508 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 115, + 240, + 495, + 508 + ], + "spans": [ + { + "bbox": [ + 115, + 240, + 495, + 508 + ], + "score": 0.978, + "type": "image", + "image_path": "d1fca44c1c3c18bdebf0fcdc5ea9a18b01b73cd2389f61f27b68f5e6d89e5bae.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 115, + 240, + 495, + 329.3333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 115, + 329.3333333333333, + 495, + 418.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 115, + 418.66666666666663, + 495, + 507.99999999999994 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 517, + 505, + 573 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 517, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 106, + 517, + 505, + 529 + ], + "score": 1.0, + "content": "Figure 6: Smoothed training and validation -ELBO curves during training on the standard binarized", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 528, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 505, + 540 + ], + "score": 1.0, + "content": "MNIST dataset (Salakhutdinov & Murray, 2008; Larochelle & Murray, 2011) of two independent", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 540, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 269, + 552 + ], + "score": 1.0, + "content": "runs when with different estimators with", + "type": "text" + }, + { + "bbox": [ + 269, + 540, + 294, + 550 + ], + "score": 0.88, + "content": "k = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 540, + 505, + 552 + ], + "score": 1.0, + "content": ", 4 or 8 (thicker lines) samples (ARSM has a variable", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 551, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 505, + 563 + ], + "score": 1.0, + "content": "number). Some lines coincide, so we sort the legend by the lowest -ELBO achieved and report this", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 559, + 134, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 134, + 575 + ], + "score": 1.0, + "content": "value.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 309, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 311, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 311, + 95 + ], + "score": 1.0, + "content": "H TRAVELLING SALESMAN PROBLEM", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 106, + 505, + 172 + ], + "lines": [ + { + "bbox": [ + 105, + 105, + 506, + 120 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 506, + 120 + ], + "score": 1.0, + "content": "The Travelling Salesman Problem (TSP) is a discrete optimization problem that consists of finding", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 117, + 505, + 130 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 321, + 130 + ], + "score": 1.0, + "content": "the order in which to visit a set of locations, given as", + "type": "text" + }, + { + "bbox": [ + 322, + 119, + 339, + 129 + ], + "score": 0.86, + "content": "x , y", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 117, + 505, + 130 + ], + "score": 1.0, + "content": "coordinates, to minimize the total length", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 128, + 506, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 506, + 141 + ], + "score": 1.0, + "content": "of the tour, starting and ending at the same location. As a tour can be considered a sequence of", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 138, + 506, + 153 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 506, + 153 + ], + "score": 1.0, + "content": "locations, this problem can be set up as a sequence modelling problem, that can be either addressed", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 150, + 506, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 506, + 163 + ], + "score": 1.0, + "content": "using supervised (Vinyals et al., 2015) or reinforcement learning (Bello et al., 2016; Kool et al.,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 161, + 140, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 161, + 140, + 173 + ], + "score": 1.0, + "content": "2019a).", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 107, + 177, + 505, + 244 + ], + "lines": [ + { + "bbox": [ + 106, + 178, + 505, + 190 + ], + "spans": [ + { + "bbox": [ + 106, + 178, + 505, + 190 + ], + "score": 1.0, + "content": "Kool et al. (2019a) introduced the Attention Model, which is an encoder-decoder model which", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 189, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 505, + 200 + ], + "score": 1.0, + "content": "considers a TSP instances as a fully connected graph. The encoder computes embeddings for all", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 199, + 505, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 505, + 212 + ], + "score": 1.0, + "content": "nodes (locations) and the decoder produces a tour, which is sequence of nodes, selecting one note", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 210, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 505, + 223 + ], + "score": 1.0, + "content": "at the time using an attention mechanism, and uses this autoregressively as input to select the next", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 221, + 506, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 506, + 235 + ], + "score": 1.0, + "content": "node. In Kool et al. (2019a), this model is trained using REINFORCE, with a greedy rollout used as", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 232, + 220, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 232, + 220, + 245 + ], + "score": 1.0, + "content": "baseline to reduce variance.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 107, + 249, + 505, + 338 + ], + "lines": [ + { + "bbox": [ + 106, + 250, + 506, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 506, + 262 + ], + "score": 1.0, + "content": "We use the code by Kool et al. (2019a) to train the exact same Attention Model (for details we refer", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 259, + 506, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 506, + 274 + ], + "score": 1.0, + "content": "to Kool et al. (2019a)), and minimize the expected length of a tour predicted by the model, using", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 272, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 272, + 505, + 284 + ], + "score": 1.0, + "content": "different gradient estimators. We did not do any hyperparameter optimization and used the exact", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 282, + 504, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 482, + 295 + ], + "score": 1.0, + "content": "same training details, using the Adam optimizer (Kingma & Ba, 2015) with a learning rate of", + "type": "text" + }, + { + "bbox": [ + 482, + 282, + 504, + 293 + ], + "score": 0.89, + "content": "1 0 ^ { - 4 }", + "type": "inline_equation" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 293, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 505, + 306 + ], + "score": 1.0, + "content": "(no decay) for 100 epochs for all estimators. For the baselines, we used the same batch size of 512,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 303, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 104, + 303, + 212, + 317 + ], + "score": 1.0, + "content": "but for estimators that use", + "type": "text" + }, + { + "bbox": [ + 212, + 305, + 238, + 315 + ], + "score": 0.9, + "content": "k = 4", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 303, + 372, + 317 + ], + "score": 1.0, + "content": "samples, we used a batch size of", + "type": "text" + }, + { + "bbox": [ + 372, + 304, + 415, + 317 + ], + "score": 0.93, + "content": "\\frac { 5 1 2 } { 4 } = 1 2 8", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 303, + 505, + 317 + ], + "score": 1.0, + "content": "to compensate for the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 316, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 505, + 327 + ], + "score": 1.0, + "content": "additional samples (this makes multi-sample methods actually faster since the encoder still needs to", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 327, + 206, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 206, + 339 + ], + "score": 1.0, + "content": "be evaluated only once).", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 16.5 + } + ], + "page_idx": 27, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "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": [ + 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": "title", + "bbox": [ + 107, + 81, + 309, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 311, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 311, + 95 + ], + "score": 1.0, + "content": "H TRAVELLING SALESMAN PROBLEM", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 106, + 505, + 172 + ], + "lines": [ + { + "bbox": [ + 105, + 105, + 506, + 120 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 506, + 120 + ], + "score": 1.0, + "content": "The Travelling Salesman Problem (TSP) is a discrete optimization problem that consists of finding", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 117, + 505, + 130 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 321, + 130 + ], + "score": 1.0, + "content": "the order in which to visit a set of locations, given as", + "type": "text" + }, + { + "bbox": [ + 322, + 119, + 339, + 129 + ], + "score": 0.86, + "content": "x , y", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 117, + 505, + 130 + ], + "score": 1.0, + "content": "coordinates, to minimize the total length", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 128, + 506, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 506, + 141 + ], + "score": 1.0, + "content": "of the tour, starting and ending at the same location. As a tour can be considered a sequence of", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 138, + 506, + 153 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 506, + 153 + ], + "score": 1.0, + "content": "locations, this problem can be set up as a sequence modelling problem, that can be either addressed", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 150, + 506, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 506, + 163 + ], + "score": 1.0, + "content": "using supervised (Vinyals et al., 2015) or reinforcement learning (Bello et al., 2016; Kool et al.,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 161, + 140, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 161, + 140, + 173 + ], + "score": 1.0, + "content": "2019a).", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 105, + 506, + 173 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 177, + 505, + 244 + ], + "lines": [ + { + "bbox": [ + 106, + 178, + 505, + 190 + ], + "spans": [ + { + "bbox": [ + 106, + 178, + 505, + 190 + ], + "score": 1.0, + "content": "Kool et al. (2019a) introduced the Attention Model, which is an encoder-decoder model which", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 189, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 505, + 200 + ], + "score": 1.0, + "content": "considers a TSP instances as a fully connected graph. The encoder computes embeddings for all", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 199, + 505, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 505, + 212 + ], + "score": 1.0, + "content": "nodes (locations) and the decoder produces a tour, which is sequence of nodes, selecting one note", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 210, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 505, + 223 + ], + "score": 1.0, + "content": "at the time using an attention mechanism, and uses this autoregressively as input to select the next", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 221, + 506, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 506, + 235 + ], + "score": 1.0, + "content": "node. In Kool et al. (2019a), this model is trained using REINFORCE, with a greedy rollout used as", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 232, + 220, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 232, + 220, + 245 + ], + "score": 1.0, + "content": "baseline to reduce variance.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 178, + 506, + 245 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 249, + 505, + 338 + ], + "lines": [ + { + "bbox": [ + 106, + 250, + 506, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 506, + 262 + ], + "score": 1.0, + "content": "We use the code by Kool et al. (2019a) to train the exact same Attention Model (for details we refer", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 259, + 506, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 506, + 274 + ], + "score": 1.0, + "content": "to Kool et al. (2019a)), and minimize the expected length of a tour predicted by the model, using", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 272, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 272, + 505, + 284 + ], + "score": 1.0, + "content": "different gradient estimators. We did not do any hyperparameter optimization and used the exact", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 282, + 504, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 482, + 295 + ], + "score": 1.0, + "content": "same training details, using the Adam optimizer (Kingma & Ba, 2015) with a learning rate of", + "type": "text" + }, + { + "bbox": [ + 482, + 282, + 504, + 293 + ], + "score": 0.89, + "content": "1 0 ^ { - 4 }", + "type": "inline_equation" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 293, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 505, + 306 + ], + "score": 1.0, + "content": "(no decay) for 100 epochs for all estimators. For the baselines, we used the same batch size of 512,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 303, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 104, + 303, + 212, + 317 + ], + "score": 1.0, + "content": "but for estimators that use", + "type": "text" + }, + { + "bbox": [ + 212, + 305, + 238, + 315 + ], + "score": 0.9, + "content": "k = 4", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 303, + 372, + 317 + ], + "score": 1.0, + "content": "samples, we used a batch size of", + "type": "text" + }, + { + "bbox": [ + 372, + 304, + 415, + 317 + ], + "score": 0.93, + "content": "\\frac { 5 1 2 } { 4 } = 1 2 8", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 303, + 505, + 317 + ], + "score": 1.0, + "content": "to compensate for the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 316, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 505, + 327 + ], + "score": 1.0, + "content": "additional samples (this makes multi-sample methods actually faster since the encoder still needs to", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 327, + 206, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 206, + 339 + ], + "score": 1.0, + "content": "be evaluated only once).", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 16.5, + "bbox_fs": [ + 104, + 250, + 506, + 339 + ] + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/vlm/train/3-GCM92yaB3/0.png b/vlm/train/3-GCM92yaB3/0.png new file mode 100644 index 0000000000000000000000000000000000000000..3d466e951e683c35be539d2247304509f2b2cf7f --- /dev/null +++ b/vlm/train/3-GCM92yaB3/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2151c335c0ccdebdf792c56240b07c02b02dfca4f3c2d3b6a3b7755689eb32e6 +size 437197 diff --git a/vlm/train/3-GCM92yaB3/1.png b/vlm/train/3-GCM92yaB3/1.png new file mode 100644 index 0000000000000000000000000000000000000000..4fe935df125a668d094b8481eae032fd0bc00f53 --- /dev/null +++ b/vlm/train/3-GCM92yaB3/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb693c9e897234df6a02d05b335d374840cd090d7c08b2ca1fe764a9126e7d58 +size 650666 diff --git a/vlm/train/3-GCM92yaB3/10.png b/vlm/train/3-GCM92yaB3/10.png new file mode 100644 index 0000000000000000000000000000000000000000..1a549db7d965f81e7b94c7ce489ab3c66e25c9a7 --- /dev/null +++ b/vlm/train/3-GCM92yaB3/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e84c36b34bc28b06286cc9fbdfe2959e9a28edc6696067c29e91bd379498d8b9 +size 501266 diff --git a/vlm/train/3-GCM92yaB3/11.png b/vlm/train/3-GCM92yaB3/11.png new file mode 100644 index 0000000000000000000000000000000000000000..740c2d2e017785fa25dbf821cd829ea5feb2918b --- /dev/null +++ b/vlm/train/3-GCM92yaB3/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ce38d52f60ab0b67e8cf13fc0b69e61c8c0b83e3ac507f2f7575af7812bf52a +size 535169 diff --git a/vlm/train/3-GCM92yaB3/12.png b/vlm/train/3-GCM92yaB3/12.png new file mode 100644 index 0000000000000000000000000000000000000000..0563fa90d793b4fa8aeb72b5063b2c562f6e534a --- /dev/null +++ b/vlm/train/3-GCM92yaB3/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb40a0008be955afda9caef9509de9463424e44ff2870c395ab5e89b8e59df43 +size 561535 diff --git a/vlm/train/3-GCM92yaB3/13.png b/vlm/train/3-GCM92yaB3/13.png new file mode 100644 index 0000000000000000000000000000000000000000..647de622ad4cc19ddd250ce0db7fccc0b1835701 --- /dev/null +++ b/vlm/train/3-GCM92yaB3/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfd4402edae7176c3c71fe70510ff9429fde56d5f386d803e459f1442021abb9 +size 149540 diff --git a/vlm/train/3-GCM92yaB3/2.png b/vlm/train/3-GCM92yaB3/2.png new file mode 100644 index 0000000000000000000000000000000000000000..1a57a9f5d38b4046fbbc9a3bcf285e942f493195 --- /dev/null +++ b/vlm/train/3-GCM92yaB3/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c940d8c82d8d36cddb5daa746a68a073eef48e7f812615a374519f4881474443 +size 619820 diff --git a/vlm/train/3-GCM92yaB3/3.png b/vlm/train/3-GCM92yaB3/3.png new file mode 100644 index 0000000000000000000000000000000000000000..d03750f008d55915b557a95d02bbfa344ce366f9 --- /dev/null +++ b/vlm/train/3-GCM92yaB3/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6323cd77bf089d37a27b24106de5436a150acc1ddde7ded92c21120f05f122c9 +size 521720 diff --git a/vlm/train/3-GCM92yaB3/4.png b/vlm/train/3-GCM92yaB3/4.png new file mode 100644 index 0000000000000000000000000000000000000000..36ad990dff1bae2c7d50ce1b47dea69734438357 --- /dev/null +++ b/vlm/train/3-GCM92yaB3/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2e628393695f3374a6d7a406b5392c993600de3eb47e787b7d7bf40627c5561 +size 525231 diff --git a/vlm/train/3-GCM92yaB3/5.png b/vlm/train/3-GCM92yaB3/5.png new file mode 100644 index 0000000000000000000000000000000000000000..71181f9d64d323c6b82e31bdc9cfcae8443247aa --- /dev/null +++ b/vlm/train/3-GCM92yaB3/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9202e366d0e8303b88d618c7651d41b10f3b8992198b53e89d6ffea20143be45 +size 558299 diff --git a/vlm/train/3-GCM92yaB3/6.png b/vlm/train/3-GCM92yaB3/6.png new file mode 100644 index 0000000000000000000000000000000000000000..6e78d4723b51a987d087e2d18319a8941f71ec00 --- /dev/null +++ b/vlm/train/3-GCM92yaB3/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51184688d4092aa29a58f6748bf8c9d30db45e0de358a5ad7a0cd65646b2d80e +size 602135 diff --git a/vlm/train/3-GCM92yaB3/7.png b/vlm/train/3-GCM92yaB3/7.png new file mode 100644 index 0000000000000000000000000000000000000000..1cc1f6d993111b17c9da5c2e42bae984b9b41723 --- /dev/null +++ b/vlm/train/3-GCM92yaB3/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93d474c70c01f52bd2a17f98ae87f2707fb0a8e2557ccd2b92e86eff271870cd +size 622006 diff --git a/vlm/train/3-GCM92yaB3/8.png b/vlm/train/3-GCM92yaB3/8.png new file mode 100644 index 0000000000000000000000000000000000000000..8c2766158600824afcb220eeb7b2f6d9cdd69d3a --- /dev/null +++ b/vlm/train/3-GCM92yaB3/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ef84bcefe2494f9a8958bed9e9886a8d122f0cd3b3703a31a3c93b3eaf23cca +size 652165 diff --git a/vlm/train/3-GCM92yaB3/9.png b/vlm/train/3-GCM92yaB3/9.png new file mode 100644 index 0000000000000000000000000000000000000000..2642437457861f739dced7a3918efb4ad3c3bdc5 --- /dev/null +++ b/vlm/train/3-GCM92yaB3/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4b638238e7425931d8033e7292af3fcf0caf5a1e7341ea69084981b0484d4a7 +size 618198 diff --git a/vlm/train/4AWko4A35ss/0.png b/vlm/train/4AWko4A35ss/0.png new file mode 100644 index 0000000000000000000000000000000000000000..475a7055a99afc8f681d329ce6abc4de64f5814d --- /dev/null +++ b/vlm/train/4AWko4A35ss/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0f325aeaa76313fec7c09814f21e9320b28a672af695a705554b16e3e3fbb0a +size 512677 diff --git a/vlm/train/4AWko4A35ss/1.png b/vlm/train/4AWko4A35ss/1.png new file mode 100644 index 0000000000000000000000000000000000000000..0f1774e992a9f3a0cf09e7b363bf7c65ca8049f4 --- /dev/null +++ b/vlm/train/4AWko4A35ss/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5764ef7fb7b2ab7949757f16b0fe49707f9caa7a9bd5818b47c5e798908c004 +size 767386 diff --git a/vlm/train/4AWko4A35ss/10.png b/vlm/train/4AWko4A35ss/10.png new file mode 100644 index 0000000000000000000000000000000000000000..1698e3b8c6c0acdfe8683a09a31ffae4491c6986 --- /dev/null +++ b/vlm/train/4AWko4A35ss/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95fe079674197b1cd66bba5e429d6052c425b7aa4244f0550189e19cb5272d8b +size 530706 diff --git a/vlm/train/4AWko4A35ss/11.png b/vlm/train/4AWko4A35ss/11.png new file mode 100644 index 0000000000000000000000000000000000000000..c01d00994a72452ac3ccfbbcce64e21b63769187 --- /dev/null +++ b/vlm/train/4AWko4A35ss/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41502d1eb459ea375f23a5823c43a8541a950207a04ecddcded7732b7ddfeeaf +size 185735 diff --git a/vlm/train/4AWko4A35ss/12.png b/vlm/train/4AWko4A35ss/12.png new file mode 100644 index 0000000000000000000000000000000000000000..cd3592f8b9fb4168a955581ed5fcc6888aae38b0 --- /dev/null +++ b/vlm/train/4AWko4A35ss/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec52ec4589165c3585d2420f25a387bb300949b5de32c8f7c3640bfb282e8d93 +size 416936 diff --git a/vlm/train/4AWko4A35ss/13.png b/vlm/train/4AWko4A35ss/13.png new file mode 100644 index 0000000000000000000000000000000000000000..780d4bf245d7104ef9b4588870771515808e1f17 --- /dev/null +++ b/vlm/train/4AWko4A35ss/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2c6e4e33ec34fac48541dc8abb79dad0414c910c18fa8b7bf2685fba6075091 +size 405604 diff --git a/vlm/train/4AWko4A35ss/14.png b/vlm/train/4AWko4A35ss/14.png new file mode 100644 index 0000000000000000000000000000000000000000..13ded7fd73def89660365f1a2dfad51677ce0076 --- /dev/null +++ b/vlm/train/4AWko4A35ss/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9edae80ed08c81d30e51186bedac20b7a9619ef68c0efaac0c08da8b14bb05fe +size 427023 diff --git a/vlm/train/4AWko4A35ss/15.png b/vlm/train/4AWko4A35ss/15.png new file mode 100644 index 0000000000000000000000000000000000000000..1a23a6339abcae425327810a3322518ad9274eca --- /dev/null +++ b/vlm/train/4AWko4A35ss/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:185c3e32769d02885a07a895ced800a2d4dd8c60f18cd6bd8a9fa14428f8044e +size 563698 diff --git a/vlm/train/4AWko4A35ss/2.png b/vlm/train/4AWko4A35ss/2.png new file mode 100644 index 0000000000000000000000000000000000000000..b611e6b5fc0dc8b6e019a23f95ba0d23c363a30a --- /dev/null +++ b/vlm/train/4AWko4A35ss/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b61b72cf1e136a444b5912abd50de6a2a8a8042721fcf9538366fb4907576223 +size 594791 diff --git a/vlm/train/4AWko4A35ss/3.png b/vlm/train/4AWko4A35ss/3.png new file mode 100644 index 0000000000000000000000000000000000000000..20f4e362d472d4e9b4c31bbbd0762902933e10d1 --- /dev/null +++ b/vlm/train/4AWko4A35ss/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d8e9c7205eba8261e57bca19cee70b682de08ed342c4dbc5cb70aae689d2d53 +size 596445 diff --git a/vlm/train/4AWko4A35ss/4.png b/vlm/train/4AWko4A35ss/4.png new file mode 100644 index 0000000000000000000000000000000000000000..b5c40f7f7985088d4c58488e3b0e3e56076a37b5 --- /dev/null +++ b/vlm/train/4AWko4A35ss/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4384862e840b4d08e5b893945d5b9eabe953e887e63ec246217aa13d6bc232eb +size 556347 diff --git a/vlm/train/4AWko4A35ss/5.png b/vlm/train/4AWko4A35ss/5.png new file mode 100644 index 0000000000000000000000000000000000000000..fea96e43636e199c33ac0742aa5ff85f0037c570 --- /dev/null +++ b/vlm/train/4AWko4A35ss/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d62a9b8c2a28832948cd8448434278f52946413b92e5fb31fd7942d1ef49ef56 +size 533582 diff --git a/vlm/train/4AWko4A35ss/6.png b/vlm/train/4AWko4A35ss/6.png new file mode 100644 index 0000000000000000000000000000000000000000..3bc297e2286f87777c0766dcc4fe25749f140dc9 --- /dev/null +++ b/vlm/train/4AWko4A35ss/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba8b25d8b737344851d01df7c92687d3b75300c2ee8168677d84dc5b5f9ad83b +size 601971 diff --git a/vlm/train/4AWko4A35ss/7.png b/vlm/train/4AWko4A35ss/7.png new file mode 100644 index 0000000000000000000000000000000000000000..b6122e1e92afe11d1b9ddf4492e0aafb9112c72e --- /dev/null +++ b/vlm/train/4AWko4A35ss/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18ca1c074955861886934cb3776784a13c15a24e1ff5e87ad7a58070597e20fd +size 870059 diff --git a/vlm/train/4AWko4A35ss/8.png b/vlm/train/4AWko4A35ss/8.png new file mode 100644 index 0000000000000000000000000000000000000000..e77ade9a2aad75c38ccc4f0efa74b01dd37207d1 --- /dev/null +++ b/vlm/train/4AWko4A35ss/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c6e2c4f77a43a067ee37a834d99cdf1af8cef9964060da7632f8ff43d90a164 +size 814912 diff --git a/vlm/train/4AWko4A35ss/9.png b/vlm/train/4AWko4A35ss/9.png new file mode 100644 index 0000000000000000000000000000000000000000..4500db2ab58a8eb51994b11f3c11625c37b84677 --- /dev/null +++ b/vlm/train/4AWko4A35ss/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bef78bf86baa116bacd7e3872a6b49487ecdf442ad38d7c9900904ac3f9dec90 +size 511941 diff --git a/vlm/train/4JLiaohIk9/0.png b/vlm/train/4JLiaohIk9/0.png new file mode 100644 index 0000000000000000000000000000000000000000..bd41fecad967065249baa07fa2143d7d7e3248e9 --- /dev/null +++ b/vlm/train/4JLiaohIk9/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc92fc449c4639f7d328d8062ca8b3722417df8e80bb11395efad1213bb3c356 +size 476186 diff --git a/vlm/train/4JLiaohIk9/1.png b/vlm/train/4JLiaohIk9/1.png new file mode 100644 index 0000000000000000000000000000000000000000..783d3bad1f7e7cdcba3ba1c5954d4f2b4b5a439a --- /dev/null +++ b/vlm/train/4JLiaohIk9/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c729d3dbef5a905b098056e340a0a931f1cfd68b8938cbc96110d505dfae534 +size 524771 diff --git a/vlm/train/4JLiaohIk9/10.png b/vlm/train/4JLiaohIk9/10.png new file mode 100644 index 0000000000000000000000000000000000000000..e13f80a5853744bc968c9b0609a5412096d0570d --- /dev/null +++ b/vlm/train/4JLiaohIk9/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:399c6f02cb320c80d5c6ec422a3feb36b100c9f28238ad087a2b9e7afacda534 +size 320925 diff --git a/vlm/train/4JLiaohIk9/11.png b/vlm/train/4JLiaohIk9/11.png new file mode 100644 index 0000000000000000000000000000000000000000..6bfb3c65cc4266ae968f859ab8903d2864fa0336 --- /dev/null +++ b/vlm/train/4JLiaohIk9/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87497c7422bd56e5ab50ff1302af0410a10c2a7ac83a4af38fc18e437d244f38 +size 344500 diff --git a/vlm/train/4JLiaohIk9/12.png b/vlm/train/4JLiaohIk9/12.png new file mode 100644 index 0000000000000000000000000000000000000000..2198f23ffde924c86e4b1d3b59a53d9998d22ec4 --- /dev/null +++ b/vlm/train/4JLiaohIk9/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c423efbc1556361f0bdbc36be192b52d077c5588c9ce4a8a57e2ebe6bfb7db7 +size 217107 diff --git a/vlm/train/4JLiaohIk9/13.png b/vlm/train/4JLiaohIk9/13.png new file mode 100644 index 0000000000000000000000000000000000000000..cee4b7b3249d604ddf119d8da3f4b48b6ecaab22 --- /dev/null +++ b/vlm/train/4JLiaohIk9/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcfd61f545795fdd80f79cf551d4caafeccc3d33152bcd31d72921b8cf7431ab +size 322897 diff --git a/vlm/train/4JLiaohIk9/2.png b/vlm/train/4JLiaohIk9/2.png new file mode 100644 index 0000000000000000000000000000000000000000..1ce96b38632d0a14dcdb9d937708693fc1626a19 --- /dev/null +++ b/vlm/train/4JLiaohIk9/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e017e214390cdf0c169bf6c2cb7e74982993c6711ffe60125a888ffae962f4e +size 595023 diff --git a/vlm/train/4JLiaohIk9/3.png b/vlm/train/4JLiaohIk9/3.png new file mode 100644 index 0000000000000000000000000000000000000000..aafc2be4dcc757a00f11bec790482c503bc4f1d9 --- /dev/null +++ b/vlm/train/4JLiaohIk9/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3a9699d67c5ee6006d442e7e414b37ace49196493b4164fb9a7d1301464f58e +size 495745 diff --git a/vlm/train/4JLiaohIk9/4.png b/vlm/train/4JLiaohIk9/4.png new file mode 100644 index 0000000000000000000000000000000000000000..760ee8f5914f58011a9554c597c9d0aafc6619a7 --- /dev/null +++ b/vlm/train/4JLiaohIk9/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:128c7cbc0f78d7bd15dac579c52c90ad7f35c12005d7a606a83be9dacb38ef0d +size 399843 diff --git a/vlm/train/4JLiaohIk9/5.png b/vlm/train/4JLiaohIk9/5.png new file mode 100644 index 0000000000000000000000000000000000000000..ed88e8af222438a8ef3b5b4de060031df14e3cb7 --- /dev/null +++ b/vlm/train/4JLiaohIk9/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba15ee42158cb2770859a678dbc48ac02099271680cdbfad59f0037c8b0b6038 +size 583137 diff --git a/vlm/train/4JLiaohIk9/6.png b/vlm/train/4JLiaohIk9/6.png new file mode 100644 index 0000000000000000000000000000000000000000..1893f3ae67a2b617ab62c7fcfbe5d40834f1e8c9 --- /dev/null +++ b/vlm/train/4JLiaohIk9/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11f1d48a999bd68fd6e21ba0ff2e1731cca2ce62e70095d5b58cda60e72a2b8d +size 465804 diff --git a/vlm/train/4JLiaohIk9/7.png b/vlm/train/4JLiaohIk9/7.png new file mode 100644 index 0000000000000000000000000000000000000000..6a3cc6206bf0470d563bc5c1b20f36817408072f --- /dev/null +++ b/vlm/train/4JLiaohIk9/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7206f732ffecce30629db0b86148674e69a0a332a261e8f9373562932b5a304f +size 453943 diff --git a/vlm/train/4JLiaohIk9/8.png b/vlm/train/4JLiaohIk9/8.png new file mode 100644 index 0000000000000000000000000000000000000000..e772ae8f84a40d120ff0ad11ac7df6739c3abb2e --- /dev/null +++ b/vlm/train/4JLiaohIk9/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29c76338543dbd62c675d6509cb68771384aee962f4d984c6396bac904462470 +size 552276 diff --git a/vlm/train/4JLiaohIk9/9.png b/vlm/train/4JLiaohIk9/9.png new file mode 100644 index 0000000000000000000000000000000000000000..42c5f144732cb8d9e504b8b69b8ed7d49d0e841f --- /dev/null +++ b/vlm/train/4JLiaohIk9/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:081c1dd90c07885f6cb5c97e18231ef781ee821933eaff4bbccbb16d592b72d5 +size 342100 diff --git a/vlm/train/5k8F6UU39V/0.png b/vlm/train/5k8F6UU39V/0.png new file mode 100644 index 0000000000000000000000000000000000000000..8c6f6df42e1e4eb3810d97599e31462f52bc78b4 --- /dev/null +++ b/vlm/train/5k8F6UU39V/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03e27edf718f3f80e1f0f63ba63597fd83123dac441604bdae0e055d446f6bdb +size 517258 diff --git a/vlm/train/5k8F6UU39V/1.png b/vlm/train/5k8F6UU39V/1.png new file mode 100644 index 0000000000000000000000000000000000000000..70bdd0379948286451e3b00180643a401a08b617 --- /dev/null +++ b/vlm/train/5k8F6UU39V/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:412e56264dd7ffd7df4d23fd24dade9348b7d4f14007d848a29194b873f27919 +size 571111 diff --git a/vlm/train/5k8F6UU39V/10.png b/vlm/train/5k8F6UU39V/10.png new file mode 100644 index 0000000000000000000000000000000000000000..dc5de5be30c001fd4879d283d93fe02a0070fc98 --- /dev/null +++ b/vlm/train/5k8F6UU39V/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6789a05969a6d8142629073c10a835a47aa7d8d0393b95de21b395c8829330f0 +size 615617 diff --git a/vlm/train/5k8F6UU39V/11.png b/vlm/train/5k8F6UU39V/11.png new file mode 100644 index 0000000000000000000000000000000000000000..bc5b011a8b7b2013d4d4e6ac7a66c614a18d60f2 --- /dev/null +++ b/vlm/train/5k8F6UU39V/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8449ef8dea6fa7f11e695c9047194a4c050aa1900a95f3fbbce1d0707a47dea +size 649943 diff --git a/vlm/train/5k8F6UU39V/12.png b/vlm/train/5k8F6UU39V/12.png new file mode 100644 index 0000000000000000000000000000000000000000..1384cc4ca5fa8f4a5ab5bb4d4fa8b9de57ce86bb --- /dev/null +++ b/vlm/train/5k8F6UU39V/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dbac42735c5345cd29bbad47775b7a6fa1f8b36ac54260db7162adf3ae0fc4b +size 624468 diff --git a/vlm/train/5k8F6UU39V/13.png b/vlm/train/5k8F6UU39V/13.png new file mode 100644 index 0000000000000000000000000000000000000000..4c116ae36ef5efb7b563d933368069244cf4c4ab --- /dev/null +++ b/vlm/train/5k8F6UU39V/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddc383aebe94787f2dc9ab449320c3a1399e4e03561f11cac9ab3d7fe2483671 +size 567658 diff --git a/vlm/train/5k8F6UU39V/14.png b/vlm/train/5k8F6UU39V/14.png new file mode 100644 index 0000000000000000000000000000000000000000..b5e1cf3e8fee60344d1d3d25847313ffb14de3c9 --- /dev/null +++ b/vlm/train/5k8F6UU39V/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8cd22f4db4e73523f0b021e1d3e765afb79946f470985315810d11e60875fb8 +size 608807 diff --git a/vlm/train/5k8F6UU39V/15.png b/vlm/train/5k8F6UU39V/15.png new file mode 100644 index 0000000000000000000000000000000000000000..03c1497e6c30f9a3eb71ebaff7cf5111e1a4ede4 --- /dev/null +++ b/vlm/train/5k8F6UU39V/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70529c27f393adb183c024c06cc4868e44f5955c5f678ce822b4d4fa380a0298 +size 496424 diff --git a/vlm/train/5k8F6UU39V/16.png b/vlm/train/5k8F6UU39V/16.png new file mode 100644 index 0000000000000000000000000000000000000000..25fe8723485412aa5512e22edef7d4e4426d1764 --- /dev/null +++ b/vlm/train/5k8F6UU39V/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1af4b6ed902c7944980850c56b1f24ca43889c4f1382e11dc5f665b8bb930038 +size 433511 diff --git a/vlm/train/5k8F6UU39V/17.png b/vlm/train/5k8F6UU39V/17.png new file mode 100644 index 0000000000000000000000000000000000000000..4f0c3cae925fd52aed78b24fea6be365e06049d5 --- /dev/null +++ b/vlm/train/5k8F6UU39V/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1ed26b65c8868856dedbe2898dab5a0266755ea229217294240204fd2a4c79e +size 330679 diff --git a/vlm/train/5k8F6UU39V/18.png b/vlm/train/5k8F6UU39V/18.png new file mode 100644 index 0000000000000000000000000000000000000000..97d90a4b236df09e7af33eb80a16142864a8d9f4 --- /dev/null +++ b/vlm/train/5k8F6UU39V/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c5208fb53947a34a151e3c8cd3f23ac2ce54390b404b9341e113a200cfe3e3a +size 419984 diff --git a/vlm/train/5k8F6UU39V/19.png b/vlm/train/5k8F6UU39V/19.png new file mode 100644 index 0000000000000000000000000000000000000000..e0ed9e218f4badda0bb45acc4bda5d24da375949 --- /dev/null +++ b/vlm/train/5k8F6UU39V/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4676a82b49e4e8ce59105b31dee1303df42854b351377e5b6f8459640c07f885 +size 294711 diff --git a/vlm/train/5k8F6UU39V/2.png b/vlm/train/5k8F6UU39V/2.png new file mode 100644 index 0000000000000000000000000000000000000000..2761e3f373ac41698a482f57735d74a52dacb78c --- /dev/null +++ b/vlm/train/5k8F6UU39V/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b4e8fa4489ace28fdd587553c9610294087006c48a695c0478fb114b0aaf9a4 +size 558194 diff --git a/vlm/train/5k8F6UU39V/3.png b/vlm/train/5k8F6UU39V/3.png new file mode 100644 index 0000000000000000000000000000000000000000..0e8267a5efa5b329bb01d25747e41028a16b9e61 --- /dev/null +++ b/vlm/train/5k8F6UU39V/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9e7ba575df5cb20b7692ad94b2310b36208895e14d1f286db763f799111b555 +size 554861 diff --git a/vlm/train/5k8F6UU39V/4.png b/vlm/train/5k8F6UU39V/4.png new file mode 100644 index 0000000000000000000000000000000000000000..e8ea780833687eaa9da0db0d4e3fe2aec450a88c --- /dev/null +++ b/vlm/train/5k8F6UU39V/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bf9a355d20c3ea40bf7cb68ae6fd4c82e9cd8aab94ec5f0122bde82fcd2fe20 +size 597223 diff --git a/vlm/train/5k8F6UU39V/5.png b/vlm/train/5k8F6UU39V/5.png new file mode 100644 index 0000000000000000000000000000000000000000..1af67db0f18cd2e6a7675b9da13712140316a51d --- /dev/null +++ b/vlm/train/5k8F6UU39V/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b15454a3ab370d70dd4968c3d05cc9c0bbe5ade8be88a7448e941895682eefd +size 541478 diff --git a/vlm/train/5k8F6UU39V/6.png b/vlm/train/5k8F6UU39V/6.png new file mode 100644 index 0000000000000000000000000000000000000000..0c1a8aabe64fe81dfe71be33e8bf2ae54dc38cf7 --- /dev/null +++ b/vlm/train/5k8F6UU39V/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7855b289ca16452793dfb0a5aeef92423c1689cabd32fb4b48aff16e95aff6e1 +size 584432 diff --git a/vlm/train/5k8F6UU39V/7.png b/vlm/train/5k8F6UU39V/7.png new file mode 100644 index 0000000000000000000000000000000000000000..daa538cbf27a5a5e4f915cf31042a21739afb0c2 --- /dev/null +++ b/vlm/train/5k8F6UU39V/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d25fc5e264db57605ac1b048fe5c8c6beb5cefa4ae09e653ade035dcb6f3e49 +size 541969 diff --git a/vlm/train/5k8F6UU39V/8.png b/vlm/train/5k8F6UU39V/8.png new file mode 100644 index 0000000000000000000000000000000000000000..3ca87f2d3c34cda6c773c123449d5b22724afbdc --- /dev/null +++ b/vlm/train/5k8F6UU39V/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a9cce963611838eda7fdb58ec4691116ade330dda797b36f96665c69c8e8fba +size 500985 diff --git a/vlm/train/5k8F6UU39V/9.png b/vlm/train/5k8F6UU39V/9.png new file mode 100644 index 0000000000000000000000000000000000000000..ce5b41689705674174e7968639be8c88b1646532 --- /dev/null +++ b/vlm/train/5k8F6UU39V/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05cbd415081a9f2abe283771cff82cdf29ecd3d8816e0ec163237bea4772bc08 +size 635975 diff --git a/vlm/train/B1TTpYKgx/0.png b/vlm/train/B1TTpYKgx/0.png new file mode 100644 index 0000000000000000000000000000000000000000..d789c4dabaa87c15705ed275857c06df063a8b14 --- /dev/null +++ b/vlm/train/B1TTpYKgx/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a277499828fa46d8c665fb7dd27a1deed1cb95453a4160d8a360570bb79589f +size 486231 diff --git a/vlm/train/B1TTpYKgx/1.png b/vlm/train/B1TTpYKgx/1.png new file mode 100644 index 0000000000000000000000000000000000000000..919b60147a47970c6cac93b1f83c71e42c418762 --- /dev/null +++ b/vlm/train/B1TTpYKgx/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fb787143ab0584f8960723e8d48319d93b5c298bfaf0e9af2d8b69057a14adf +size 585626 diff --git a/vlm/train/B1TTpYKgx/10.png b/vlm/train/B1TTpYKgx/10.png new file mode 100644 index 0000000000000000000000000000000000000000..8471d07d4d860c9430a3cab8e9a60e2eeb181076 --- /dev/null +++ b/vlm/train/B1TTpYKgx/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86d78762c8bcd4a45b5002cbe38c1d0a1034c530e94472e639d0d42c8576531b +size 112899 diff --git a/vlm/train/B1TTpYKgx/11.png b/vlm/train/B1TTpYKgx/11.png new file mode 100644 index 0000000000000000000000000000000000000000..17ab879d621ac78d743872432a40559615185824 --- /dev/null +++ b/vlm/train/B1TTpYKgx/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9fafff55337804a830d822ca5a06ee3462aec4d5c2f4d19c6431fdc7d0520a4 +size 358867 diff --git a/vlm/train/B1TTpYKgx/12.png b/vlm/train/B1TTpYKgx/12.png new file mode 100644 index 0000000000000000000000000000000000000000..e44877faa14f0b9a4b75d510436deb619e770f7a --- /dev/null +++ b/vlm/train/B1TTpYKgx/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84dffe45f729a96702b2a3a9a44f9aecaf755275de1541f75311b8753e0a6487 +size 386254 diff --git a/vlm/train/B1TTpYKgx/13.png b/vlm/train/B1TTpYKgx/13.png new file mode 100644 index 0000000000000000000000000000000000000000..28c8aaa3369038d52e0e7ac1bdf16e9adb591695 --- /dev/null +++ b/vlm/train/B1TTpYKgx/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbb9f03685509d4e775128a820601e587e0b62a58058e9fe3bf6d26f7d16c1dc +size 390394 diff --git a/vlm/train/B1TTpYKgx/14.png b/vlm/train/B1TTpYKgx/14.png new file mode 100644 index 0000000000000000000000000000000000000000..1b4568ad726b08b8974314db421dba80b7b4a04d --- /dev/null +++ b/vlm/train/B1TTpYKgx/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29635779ad1ce7ac16edcffd019f3173241307385a0e52b4a4f484cf4e20919f +size 330860 diff --git a/vlm/train/B1TTpYKgx/15.png b/vlm/train/B1TTpYKgx/15.png new file mode 100644 index 0000000000000000000000000000000000000000..7081498a22282bb6da68dc9c6c254baa3255bdf7 --- /dev/null +++ b/vlm/train/B1TTpYKgx/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e9d86ab4d3b5779a792365543f5f9a3682b0d6aeb610364ca78fdf06dffd2ed +size 307696 diff --git a/vlm/train/B1TTpYKgx/16.png b/vlm/train/B1TTpYKgx/16.png new file mode 100644 index 0000000000000000000000000000000000000000..f1b9aa92d1dcdcf221aad2916247568a5647e7a6 --- /dev/null +++ b/vlm/train/B1TTpYKgx/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e88e39491656033350643051aceff006797328fcfc151dab9783d922eb969efc +size 341480 diff --git a/vlm/train/B1TTpYKgx/17.png b/vlm/train/B1TTpYKgx/17.png new file mode 100644 index 0000000000000000000000000000000000000000..f09453548d144a9c719597a494d39ad6dad3f085 --- /dev/null +++ b/vlm/train/B1TTpYKgx/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:582b4323b2d67f79d516f54d538a97bbee31b8e93fb220027d94c2539083526b +size 423056 diff --git a/vlm/train/B1TTpYKgx/18.png b/vlm/train/B1TTpYKgx/18.png new file mode 100644 index 0000000000000000000000000000000000000000..eb94933cbcd8a464c2f21a4e337d3c69bdb92b31 --- /dev/null +++ b/vlm/train/B1TTpYKgx/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51f06a71add556df56d9a050e3274149490226fd7c11e0c960ce230ec97b7a0d +size 485018 diff --git a/vlm/train/B1TTpYKgx/19.png b/vlm/train/B1TTpYKgx/19.png new file mode 100644 index 0000000000000000000000000000000000000000..d3dbed7f5495a1f4caf9c0ab760449c26967f0a3 --- /dev/null +++ b/vlm/train/B1TTpYKgx/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3161965f1c9a5db3023d3c159a172cea23efd4d19ed1c3fe61ae81fe45bc9902 +size 366171 diff --git a/vlm/train/B1TTpYKgx/2.png b/vlm/train/B1TTpYKgx/2.png new file mode 100644 index 0000000000000000000000000000000000000000..6327f8f29d855b4bb1fb7f4a91c74529cc005b3f --- /dev/null +++ b/vlm/train/B1TTpYKgx/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec557e211d3911265b00f2e7981609bd139537fd153851a9de6e471c2316db14 +size 479752 diff --git a/vlm/train/B1TTpYKgx/20.png b/vlm/train/B1TTpYKgx/20.png new file mode 100644 index 0000000000000000000000000000000000000000..fcda7127011e0ae66500540bc252adf3f6293a8f --- /dev/null +++ b/vlm/train/B1TTpYKgx/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cbd70a1bd0ae9acada92ad30ae780ae55023ee9d7683a89ae06f8bd6dcd2796 +size 455622 diff --git a/vlm/train/B1TTpYKgx/21.png b/vlm/train/B1TTpYKgx/21.png new file mode 100644 index 0000000000000000000000000000000000000000..f31385b96d97f4365270ba9e19fa3b659d1c9d5a --- /dev/null +++ b/vlm/train/B1TTpYKgx/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e6c4bac3fb728ef0879320202816a32cbdd569abc225d295ad43a216d892272 +size 291313 diff --git a/vlm/train/B1TTpYKgx/3.png b/vlm/train/B1TTpYKgx/3.png new file mode 100644 index 0000000000000000000000000000000000000000..e1782e47fe0c0974df5f1cdd246a6fd791022cb7 --- /dev/null +++ b/vlm/train/B1TTpYKgx/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72b3b1eb8b6fd469fbbb238483d85846707772afbfed170c622dd6902afe7063 +size 470035 diff --git a/vlm/train/B1TTpYKgx/4.png b/vlm/train/B1TTpYKgx/4.png new file mode 100644 index 0000000000000000000000000000000000000000..2658b2d4a743b709e55c7261a988a09af5125178 --- /dev/null +++ b/vlm/train/B1TTpYKgx/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3e4bceb49ae76c104c65b7931076ecedce828740fcd6155e64dadcd8a52918c +size 461767 diff --git a/vlm/train/B1TTpYKgx/5.png b/vlm/train/B1TTpYKgx/5.png new file mode 100644 index 0000000000000000000000000000000000000000..4c3348e81fa5dd2884899f901faef9342610a9b3 --- /dev/null +++ b/vlm/train/B1TTpYKgx/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81db06c1b568678679382ada55e9a0e67317b31510cafdb63607ac345ba56d61 +size 559161 diff --git a/vlm/train/B1TTpYKgx/6.png b/vlm/train/B1TTpYKgx/6.png new file mode 100644 index 0000000000000000000000000000000000000000..4619663bec32967e2424eccc5e2fa2ce04a65bdf --- /dev/null +++ b/vlm/train/B1TTpYKgx/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3599bd8f7fc099b3667796dbdcca9fa27b5a68bdfa9abc0785d3829668ad215d +size 463632 diff --git a/vlm/train/B1TTpYKgx/7.png b/vlm/train/B1TTpYKgx/7.png new file mode 100644 index 0000000000000000000000000000000000000000..187928d5a61e7c89a7edcfd05dacb6fa73452607 --- /dev/null +++ b/vlm/train/B1TTpYKgx/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c7dff4c1ac85b6ff7dc39b4c0395f4ee86d6a0ad34621ed29b4fd882bdfd195 +size 459771 diff --git a/vlm/train/B1TTpYKgx/8.png b/vlm/train/B1TTpYKgx/8.png new file mode 100644 index 0000000000000000000000000000000000000000..4bebabaa09567bb43aa1003f83aea931eefb76b1 --- /dev/null +++ b/vlm/train/B1TTpYKgx/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7de127b5335548534c805d9a9b37f8a654083af3a5babd4fc2b1a7e7e0da4dd0 +size 525797 diff --git a/vlm/train/B1TTpYKgx/9.png b/vlm/train/B1TTpYKgx/9.png new file mode 100644 index 0000000000000000000000000000000000000000..5469cdca2125c2ed93c7db2b65a03b853a0212f5 --- /dev/null +++ b/vlm/train/B1TTpYKgx/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd05ee72ee8b3838e531ec0f9f8a15b8b318a0499251b59439f493d35ca552a5 +size 658090 diff --git a/vlm/train/B1gabhRcYX/0.png b/vlm/train/B1gabhRcYX/0.png new file mode 100644 index 0000000000000000000000000000000000000000..13d16df17e78dc30c04dbb725776d807eb458b98 --- /dev/null +++ b/vlm/train/B1gabhRcYX/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2c2475813839516d17afdae36fdeed68f9546e307111315059455772655fbf5 +size 529736 diff --git a/vlm/train/B1gabhRcYX/1.png b/vlm/train/B1gabhRcYX/1.png new file mode 100644 index 0000000000000000000000000000000000000000..e5c5c15fb42e590503c9bfd4b83a2901be2cf06a --- /dev/null +++ b/vlm/train/B1gabhRcYX/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e2b275495609c0769b19f646fcd4d9e69f3cae47ae3f9f3ac6737c6ffec92f7 +size 607179 diff --git a/vlm/train/B1gabhRcYX/10.png b/vlm/train/B1gabhRcYX/10.png new file mode 100644 index 0000000000000000000000000000000000000000..e95baaafad0f9cc319d82633b469383126610f28 --- /dev/null +++ b/vlm/train/B1gabhRcYX/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cf921b31d548919d9a01c1497e8237ba7a28fd6a8335969c08e0bedc0b6b2b1 +size 588173 diff --git a/vlm/train/B1gabhRcYX/11.png b/vlm/train/B1gabhRcYX/11.png new file mode 100644 index 0000000000000000000000000000000000000000..5eb8676f1f19e1c9ad8f6010bb790c2e27c7a08c --- /dev/null +++ b/vlm/train/B1gabhRcYX/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50c2c3c270af2d32b0a8803f77948e13a6e9bbd2b91735408b3608ec8918c15e +size 473975 diff --git a/vlm/train/B1gabhRcYX/12.png b/vlm/train/B1gabhRcYX/12.png new file mode 100644 index 0000000000000000000000000000000000000000..2aeb9afbe29628c7757bd287dd1ae912cc40a4cc --- /dev/null +++ b/vlm/train/B1gabhRcYX/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:489f2eae1dd17efa92f4059efe11ae868a48c96fb7487e338b54a44ed84f40ba +size 532350 diff --git a/vlm/train/B1gabhRcYX/13.png b/vlm/train/B1gabhRcYX/13.png new file mode 100644 index 0000000000000000000000000000000000000000..ec28a0ab8197a81e0b41681f73f8ec9ec5ba725e --- /dev/null +++ b/vlm/train/B1gabhRcYX/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa8a03e73d1187e14dc55ac9b3dd84b90db7d81b59bd1e228b62ca9068141a19 +size 524115 diff --git a/vlm/train/B1gabhRcYX/14.png b/vlm/train/B1gabhRcYX/14.png new file mode 100644 index 0000000000000000000000000000000000000000..bd587658d1163d4051aa929a381b8d9abd7fd16e --- /dev/null +++ b/vlm/train/B1gabhRcYX/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25f1a326bf8b50f01de4d743f538006bf2338d4324ca12c957e76beda50904b3 +size 388774 diff --git a/vlm/train/B1gabhRcYX/15.png b/vlm/train/B1gabhRcYX/15.png new file mode 100644 index 0000000000000000000000000000000000000000..2ae38b045cc1328eb994afc4419d42edac745459 --- /dev/null +++ b/vlm/train/B1gabhRcYX/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0d3519cba907f04eb4c7f233b597c805f00760f3955ae9be93d63517535cddc +size 877255 diff --git a/vlm/train/B1gabhRcYX/16.png b/vlm/train/B1gabhRcYX/16.png new file mode 100644 index 0000000000000000000000000000000000000000..93cd693060691682e0222c9b1d55a95fce13d3eb --- /dev/null +++ b/vlm/train/B1gabhRcYX/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbfbe2ca726b010dcd5642d74d9cf27f5b656b23bf30eaed4a189601c2a65ce9 +size 698036 diff --git a/vlm/train/B1gabhRcYX/2.png b/vlm/train/B1gabhRcYX/2.png new file mode 100644 index 0000000000000000000000000000000000000000..cd66205d4878229426a9949d42ddae8f2cbb930c --- /dev/null +++ b/vlm/train/B1gabhRcYX/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64a588100bbc7f4316a56f7b6f0d9717054507e9a65d2454aee92a8d1f2a699b +size 491211 diff --git a/vlm/train/B1gabhRcYX/3.png b/vlm/train/B1gabhRcYX/3.png new file mode 100644 index 0000000000000000000000000000000000000000..0c2437a3ca01d71b8d47ce5f07fb37497ac302e6 --- /dev/null +++ b/vlm/train/B1gabhRcYX/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a98a43671307697049e729a9399942874273a8543b6b33432fb7b8de09494527 +size 617249 diff --git a/vlm/train/B1gabhRcYX/4.png b/vlm/train/B1gabhRcYX/4.png new file mode 100644 index 0000000000000000000000000000000000000000..9c621f4359ec4d767cd363997ab8ce8c3144328e --- /dev/null +++ b/vlm/train/B1gabhRcYX/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4050d7963f794ae94a2ff2d15f345ea7aa7fbe36b5aab28ef0e3a58676ca8293 +size 598875 diff --git a/vlm/train/B1gabhRcYX/5.png b/vlm/train/B1gabhRcYX/5.png new file mode 100644 index 0000000000000000000000000000000000000000..7363d4773d3a169788107c5cf8c98b579a7272ec --- /dev/null +++ b/vlm/train/B1gabhRcYX/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db278041f06112e4d4907895a6183cca604d56cb761f50aae5d0615fb3165d00 +size 546690 diff --git a/vlm/train/B1gabhRcYX/6.png b/vlm/train/B1gabhRcYX/6.png new file mode 100644 index 0000000000000000000000000000000000000000..1df88ec3115bdd9ee011b40ed1e9d6cc53d15f90 --- /dev/null +++ b/vlm/train/B1gabhRcYX/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7be6a8bc17a27af1c5edc728590a8ccb2419ec87bd4b5dc8b8a279c06352151c +size 517195 diff --git a/vlm/train/B1gabhRcYX/7.png b/vlm/train/B1gabhRcYX/7.png new file mode 100644 index 0000000000000000000000000000000000000000..d22e48443816361d4c1617228882e57f35e12ee2 --- /dev/null +++ b/vlm/train/B1gabhRcYX/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f87bdf17ac9df117d7bcbcde7586843837af99b17f646c93d8eeed188fce52e8 +size 542802 diff --git a/vlm/train/B1gabhRcYX/8.png b/vlm/train/B1gabhRcYX/8.png new file mode 100644 index 0000000000000000000000000000000000000000..b3302aded057e5ce2b16f3c5cf5affa080321800 --- /dev/null +++ b/vlm/train/B1gabhRcYX/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc91ac8ebbf671149bd8389a2cf721e6b2d8de422dc38a7de7da846bb3450c67 +size 537562 diff --git a/vlm/train/B1gabhRcYX/9.png b/vlm/train/B1gabhRcYX/9.png new file mode 100644 index 0000000000000000000000000000000000000000..5024b87781c552043d19b26ac0d5cc48bdae6bb8 --- /dev/null +++ b/vlm/train/B1gabhRcYX/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb62a28e71946406ea0e9c913b41b08fb5b331b43faea1888b1835ec207345f6 +size 524606 diff --git a/vlm/train/B1twdMCab/0.png b/vlm/train/B1twdMCab/0.png new file mode 100644 index 0000000000000000000000000000000000000000..273e6ddbeb0899e8d1de37327bd59e41be2cbc31 --- /dev/null +++ b/vlm/train/B1twdMCab/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c94ac3944e4656e11d99ff1e36191fac5a5ad1d532af39a05d3bec55906aeaa2 +size 524587 diff --git a/vlm/train/B1twdMCab/1.png b/vlm/train/B1twdMCab/1.png new file mode 100644 index 0000000000000000000000000000000000000000..c2f6decad9c8e9a4648967d452ca33253bd2da05 --- /dev/null +++ b/vlm/train/B1twdMCab/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67b655dc8f4c2066ee2c967ceb31457d86bf8706204e8cd95d665613a6a0f965 +size 571274 diff --git a/vlm/train/B1twdMCab/10.png b/vlm/train/B1twdMCab/10.png new file mode 100644 index 0000000000000000000000000000000000000000..bd487a27a8658996b2909edf41be511598061b22 --- /dev/null +++ b/vlm/train/B1twdMCab/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38b400570b76ccc35836b8f7f66485be9ee5db67b56a6ab9b8230588dc3277ba +size 352721 diff --git a/vlm/train/B1twdMCab/11.png b/vlm/train/B1twdMCab/11.png new file mode 100644 index 0000000000000000000000000000000000000000..e04142225d521a59931cda184e82f83e6a9644bd --- /dev/null +++ b/vlm/train/B1twdMCab/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:417a4e6ce44a5f04fab12ac454dec8d0bbabeb468e4cc886776b88a2926d2464 +size 395380 diff --git a/vlm/train/B1twdMCab/12.png b/vlm/train/B1twdMCab/12.png new file mode 100644 index 0000000000000000000000000000000000000000..d113a1d0624207c3571bfafa7a591aa968448d4b --- /dev/null +++ b/vlm/train/B1twdMCab/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2456369620cf272ceaa89c43c6b6fc223dab4dcde3f150b9c95c26c54ad17932 +size 190174 diff --git a/vlm/train/B1twdMCab/2.png b/vlm/train/B1twdMCab/2.png new file mode 100644 index 0000000000000000000000000000000000000000..95e9d4f7ef022b910a2f7f773f78a448c36e1742 --- /dev/null +++ b/vlm/train/B1twdMCab/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee32a0a0aaf17c4497593fc1d16c26893d9eac8e046b9fa95d2a1e5b64bcfd3c +size 358422 diff --git a/vlm/train/B1twdMCab/3.png b/vlm/train/B1twdMCab/3.png new file mode 100644 index 0000000000000000000000000000000000000000..3dd5866a97d6b18a5212800750206817f986ad1a --- /dev/null +++ b/vlm/train/B1twdMCab/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0f3e13efcb52437bd28dc56da8a6ca52adbc297514c91ccd48694a76e4c4689 +size 474208 diff --git a/vlm/train/B1twdMCab/4.png b/vlm/train/B1twdMCab/4.png new file mode 100644 index 0000000000000000000000000000000000000000..39d871b5d9e93a8a7f7627a68bdf79ab9d9d49ed --- /dev/null +++ b/vlm/train/B1twdMCab/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c96f83c943344f5d3f987f1ab7f667673c7f7592045e08582c84416fd96ba0c +size 493911 diff --git a/vlm/train/B1twdMCab/5.png b/vlm/train/B1twdMCab/5.png new file mode 100644 index 0000000000000000000000000000000000000000..67440321ae2c36d22a022d104730a17132f45137 --- /dev/null +++ b/vlm/train/B1twdMCab/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cb72f39b960fb00e107bf14e82df37f2708bf6818c6dae3916887789916df7 +size 546589 diff --git a/vlm/train/B1twdMCab/6.png b/vlm/train/B1twdMCab/6.png new file mode 100644 index 0000000000000000000000000000000000000000..4fa55e225ecf1e8f871845509cc956fbb648c7b5 --- /dev/null +++ b/vlm/train/B1twdMCab/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68f104518ab23c0eda329716df9600eef94227f3e00db8f7d1fe6005e4fc1353 +size 445255 diff --git a/vlm/train/B1twdMCab/7.png b/vlm/train/B1twdMCab/7.png new file mode 100644 index 0000000000000000000000000000000000000000..7838ee08982f05bc388738b55f656345548f2379 --- /dev/null +++ b/vlm/train/B1twdMCab/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c867cc8923a9daeeed9177e343bcfe2a08e015f90a21aa1374567be004958421 +size 493037 diff --git a/vlm/train/B1twdMCab/8.png b/vlm/train/B1twdMCab/8.png new file mode 100644 index 0000000000000000000000000000000000000000..99b6e654c5a638286f32ff758b3f94d14ce79ba8 --- /dev/null +++ b/vlm/train/B1twdMCab/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e60f1f8441ff12535873361bf506a895f5bc359026b17af83e535f03a9ac5237 +size 550775 diff --git a/vlm/train/B1twdMCab/9.png b/vlm/train/B1twdMCab/9.png new file mode 100644 index 0000000000000000000000000000000000000000..d3e3c7e02e30909d6d8ecb70b7b7fe68ead615ce --- /dev/null +++ b/vlm/train/B1twdMCab/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4796e7fffc50462243c64fdc3e892dc7253367866a600422b298dc9f15473ff5 +size 473081 diff --git a/vlm/train/BJehNfW0-/0.png b/vlm/train/BJehNfW0-/0.png new file mode 100644 index 0000000000000000000000000000000000000000..5048a63958468a4c0d1129d6b377e47bfa8f1679 --- /dev/null +++ b/vlm/train/BJehNfW0-/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f752ab8f953a879bf30ae7bb928834f490a192f200491a291d75dcbc4c60c311 +size 453530 diff --git a/vlm/train/BJehNfW0-/1.png b/vlm/train/BJehNfW0-/1.png new file mode 100644 index 0000000000000000000000000000000000000000..3d111a65a426d8f40039735de037605d7b882913 --- /dev/null +++ b/vlm/train/BJehNfW0-/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:883a4b223e31ac6d1473e01300f1a3c13571d643c227045c748ecfb62763d583 +size 609512 diff --git a/vlm/train/BJehNfW0-/10.png b/vlm/train/BJehNfW0-/10.png new file mode 100644 index 0000000000000000000000000000000000000000..a7308fcf079db7a3ca579a8b101fde89238ec3b2 --- /dev/null +++ b/vlm/train/BJehNfW0-/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcc7ef569c349b387064c9c572163f0db0a2d5b1c19b7a5977261b600455be97 +size 621365 diff --git a/vlm/train/BJehNfW0-/11.png b/vlm/train/BJehNfW0-/11.png new file mode 100644 index 0000000000000000000000000000000000000000..74af6b4e4ed7846acb9591b3966cd15cad4803e6 --- /dev/null +++ b/vlm/train/BJehNfW0-/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b42dc0ce8dae6c365761332460b872e42301b4c1752a6355faee3d79a171c9d3 +size 407002 diff --git a/vlm/train/BJehNfW0-/12.png b/vlm/train/BJehNfW0-/12.png new file mode 100644 index 0000000000000000000000000000000000000000..eaa61098718af79bc22d0573f8656a21c5ecaea4 --- /dev/null +++ b/vlm/train/BJehNfW0-/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8df8fbd8cf150d0ea78503a2807e46d8e656a35028a3e35e12fb52f5d901f06 +size 361271 diff --git a/vlm/train/BJehNfW0-/13.png b/vlm/train/BJehNfW0-/13.png new file mode 100644 index 0000000000000000000000000000000000000000..2d742f44d0cd4c4d447f4a8b84730db22e6fd02a --- /dev/null +++ b/vlm/train/BJehNfW0-/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95379224e61101bad826da03fdfdc52e15e4a3c1bd22501e9b7e6a61b6fa852e +size 480515 diff --git a/vlm/train/BJehNfW0-/14.png b/vlm/train/BJehNfW0-/14.png new file mode 100644 index 0000000000000000000000000000000000000000..4adfed11348b1b9b4b8236ddd856bfd8016386dc --- /dev/null +++ b/vlm/train/BJehNfW0-/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fc12551443d3e687527e94686b0e50edac126b37bae6f15f405dbbea359ce4c +size 155472 diff --git a/vlm/train/BJehNfW0-/15.png b/vlm/train/BJehNfW0-/15.png new file mode 100644 index 0000000000000000000000000000000000000000..24c865d1dccec907eab3bdd90c45e301e6c7ecb5 --- /dev/null +++ b/vlm/train/BJehNfW0-/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a0b8e385e56e14f4871ad53da0fea04ac62ed8b835834c963992c8b93a7f95a +size 94800 diff --git a/vlm/train/BJehNfW0-/2.png b/vlm/train/BJehNfW0-/2.png new file mode 100644 index 0000000000000000000000000000000000000000..51d8d27b8bb8f3d7328652bfb1b4e7e285363652 --- /dev/null +++ b/vlm/train/BJehNfW0-/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f0e8787a4541976e912305a20edd2a5fe590c7fd6441c216753e0180be5a04a +size 554598 diff --git a/vlm/train/BJehNfW0-/3.png b/vlm/train/BJehNfW0-/3.png new file mode 100644 index 0000000000000000000000000000000000000000..f5c14ff3effd1759cfccb34afd1cbe83cacaaa8b --- /dev/null +++ b/vlm/train/BJehNfW0-/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18711a25c17d36dd86319f1a5efc5f4d121830d029682c390164492a2c491e94 +size 511312 diff --git a/vlm/train/BJehNfW0-/4.png b/vlm/train/BJehNfW0-/4.png new file mode 100644 index 0000000000000000000000000000000000000000..9f34f705c640f9c1ac87c471273210e9c3c7699e --- /dev/null +++ b/vlm/train/BJehNfW0-/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e82ba8a04e0f370e1812740659b8a4abc79ce7f9381686097dd24fa04cc5aaba +size 952734 diff --git a/vlm/train/BJehNfW0-/5.png b/vlm/train/BJehNfW0-/5.png new file mode 100644 index 0000000000000000000000000000000000000000..a3d58ae0e0eca06273d20745179f3054928cb6e4 --- /dev/null +++ b/vlm/train/BJehNfW0-/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b895eacff629f5f5d9b9e46951a91373f2aff9b943311066114942ba62f91bfc +size 1313550 diff --git a/vlm/train/BJehNfW0-/6.png b/vlm/train/BJehNfW0-/6.png new file mode 100644 index 0000000000000000000000000000000000000000..9971502983b03b279358dd0712b8d46906ab85c9 --- /dev/null +++ b/vlm/train/BJehNfW0-/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34bbbac907fc583c43eda7481092294cde9252780dbc30e004b5c4eaf5c228c3 +size 508328 diff --git a/vlm/train/BJehNfW0-/7.png b/vlm/train/BJehNfW0-/7.png new file mode 100644 index 0000000000000000000000000000000000000000..b249964b4ea3eb2ddb8ef14808ef9882cde17647 --- /dev/null +++ b/vlm/train/BJehNfW0-/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac93cfd7849b4571ea2cc722d0ebc2ba7474fd604e6f16a911d2338ea8a20710 +size 518136 diff --git a/vlm/train/BJehNfW0-/8.png b/vlm/train/BJehNfW0-/8.png new file mode 100644 index 0000000000000000000000000000000000000000..25595a7ae3f73b780aff859bedbc5431579d7f27 --- /dev/null +++ b/vlm/train/BJehNfW0-/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb3cdd68fc599408005c9d5babe1db9c767d2ee082f9b9a33dfd27e15b7b5882 +size 511076 diff --git a/vlm/train/BJehNfW0-/9.png b/vlm/train/BJehNfW0-/9.png new file mode 100644 index 0000000000000000000000000000000000000000..8302a10185e05b23c659d892f220c6990a055abf --- /dev/null +++ b/vlm/train/BJehNfW0-/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd83c22ca7d0fb13400741b6c08d938328d3c4925ab4c9ab6b32b01306520ad2 +size 341147 diff --git a/vlm/train/BJgqqsAct7/0.png b/vlm/train/BJgqqsAct7/0.png new file mode 100644 index 0000000000000000000000000000000000000000..d768284544960b2c76e8062fea3230948c3e8688 --- /dev/null +++ b/vlm/train/BJgqqsAct7/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3be72790cfe3d36af872965ceead99427ba8c64b6d4904d01bc37b38d019f50d +size 450872 diff --git a/vlm/train/BJgqqsAct7/1.png b/vlm/train/BJgqqsAct7/1.png new file mode 100644 index 0000000000000000000000000000000000000000..f022f1c12cde18073f61d52b29c25b16b3bd3ac8 --- /dev/null +++ b/vlm/train/BJgqqsAct7/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:910dbb18acaaa4773c6c024f916c0645ec87636bad280922497d4dbc1afa6fe5 +size 592365 diff --git a/vlm/train/BJgqqsAct7/10.png b/vlm/train/BJgqqsAct7/10.png new file mode 100644 index 0000000000000000000000000000000000000000..8e9790760142ef689833b3832d49f76f5611c89d --- /dev/null +++ b/vlm/train/BJgqqsAct7/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7882c601e7e43a0fdd493e397bb660ed5a1343511cbf838a0d01b066eb72731 +size 382042 diff --git a/vlm/train/BJgqqsAct7/11.png b/vlm/train/BJgqqsAct7/11.png new file mode 100644 index 0000000000000000000000000000000000000000..7a0fe33ea03c1b3bda698c742bd5d8c24a900738 --- /dev/null +++ b/vlm/train/BJgqqsAct7/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4493d1cf8a9293ab565622386b9dca563c2e85e0950d9d97368371f8b325a25a +size 379109 diff --git a/vlm/train/BJgqqsAct7/12.png b/vlm/train/BJgqqsAct7/12.png new file mode 100644 index 0000000000000000000000000000000000000000..a02a2d2a0682cf71f018fce92c2d6c16434e1a28 --- /dev/null +++ b/vlm/train/BJgqqsAct7/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bb5d03ba7849c38088848e645345f264f1b98aab64a45885e896251bdb20144 +size 431298 diff --git a/vlm/train/BJgqqsAct7/13.png b/vlm/train/BJgqqsAct7/13.png new file mode 100644 index 0000000000000000000000000000000000000000..2d890176dfd1289a2cf5a708414fe8a7f09bba51 --- /dev/null +++ b/vlm/train/BJgqqsAct7/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9305fdef2cf5f88e1e4c75cf927200147019f8c4ff50d11eb765cf7a4e3e2c0d +size 466978 diff --git a/vlm/train/BJgqqsAct7/14.png b/vlm/train/BJgqqsAct7/14.png new file mode 100644 index 0000000000000000000000000000000000000000..1532f218ee91175b2232f820c804add69514ad8d --- /dev/null +++ b/vlm/train/BJgqqsAct7/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f653a740cc2dac553498059f002edc67513d6a7af2b76aeabbc9d2ba73959994 +size 433268 diff --git a/vlm/train/BJgqqsAct7/15.png b/vlm/train/BJgqqsAct7/15.png new file mode 100644 index 0000000000000000000000000000000000000000..58f33edc8d4488cb667dfe60a306694f0233c604 --- /dev/null +++ b/vlm/train/BJgqqsAct7/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e30bcdfa3f322fd1172ea6aef6b540546575b1207223d7ee72a918246e41e241 +size 67518 diff --git a/vlm/train/BJgqqsAct7/2.png b/vlm/train/BJgqqsAct7/2.png new file mode 100644 index 0000000000000000000000000000000000000000..c693005d87f0c25fb911000e3d7e45e6a8ebdfb5 --- /dev/null +++ b/vlm/train/BJgqqsAct7/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33665d5cda074cb91853b3e56d308f1e4cf609c27f71a94d95435d0244a8bf3a +size 515223 diff --git a/vlm/train/BJgqqsAct7/3.png b/vlm/train/BJgqqsAct7/3.png new file mode 100644 index 0000000000000000000000000000000000000000..c6076bd6fa5a61660edb133d4748dd307c967a2b --- /dev/null +++ b/vlm/train/BJgqqsAct7/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cafbf82922ec79e588185044c07a841de5231f4985ac8d13ffee8e23e0df81b +size 581575 diff --git a/vlm/train/BJgqqsAct7/4.png b/vlm/train/BJgqqsAct7/4.png new file mode 100644 index 0000000000000000000000000000000000000000..dde7d9202ddedbbf51b6d879d0b6f6c87c6f2bd2 --- /dev/null +++ b/vlm/train/BJgqqsAct7/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e07eb266d6f54f216850c2c3137883e5fdec40b276640492c806d9f505b180dd +size 497555 diff --git a/vlm/train/BJgqqsAct7/5.png b/vlm/train/BJgqqsAct7/5.png new file mode 100644 index 0000000000000000000000000000000000000000..aceae5498cf090d1d6892798be778de0c3c5d31d --- /dev/null +++ b/vlm/train/BJgqqsAct7/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58ff73855b6ac9869feae134241ac71d9fa575ab8c042f568e6aeefbe2b76f31 +size 530286 diff --git a/vlm/train/BJgqqsAct7/6.png b/vlm/train/BJgqqsAct7/6.png new file mode 100644 index 0000000000000000000000000000000000000000..61ce01b087fbd02f9229094b2acd3009e84149cb --- /dev/null +++ b/vlm/train/BJgqqsAct7/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e977c5dfec42ec6cd709278c5500b64a8245f009a20602ccb56c354cc41a7317 +size 562272 diff --git a/vlm/train/BJgqqsAct7/7.png b/vlm/train/BJgqqsAct7/7.png new file mode 100644 index 0000000000000000000000000000000000000000..762edd96036c8459343e60be2aefccc36472be47 --- /dev/null +++ b/vlm/train/BJgqqsAct7/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20202cf4ffbe08aac8a8e3961126f6af9fe617ded746836b95a6d5fb388c441c +size 499728 diff --git a/vlm/train/BJgqqsAct7/8.png b/vlm/train/BJgqqsAct7/8.png new file mode 100644 index 0000000000000000000000000000000000000000..6378105ad4a416df10869cd736c7e987a0183ee8 --- /dev/null +++ b/vlm/train/BJgqqsAct7/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e6b3bf471ef8313c171c85cb71fea6557943b886f34d48312ff4fd6da294527 +size 546642 diff --git a/vlm/train/BJgqqsAct7/9.png b/vlm/train/BJgqqsAct7/9.png new file mode 100644 index 0000000000000000000000000000000000000000..27427662783a2dfd2b7135ef297573348ad333aa --- /dev/null +++ b/vlm/train/BJgqqsAct7/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:405e7ce86f4e29ac9a7a8fdb43975bf61139e083e920a8fb46918e283c23bc98 +size 569712 diff --git a/vlm/train/Bkeeca4Kvr/0.png b/vlm/train/Bkeeca4Kvr/0.png new file mode 100644 index 0000000000000000000000000000000000000000..ee29f5dfd7e9f1b14907eabe037d12ee2e0ed901 --- /dev/null +++ b/vlm/train/Bkeeca4Kvr/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07b35112c17e129609fdd978c9718b966ca6d9572416cdf3aa445343d3b82bf4 +size 500749 diff --git a/vlm/train/Bkeeca4Kvr/1.png b/vlm/train/Bkeeca4Kvr/1.png new file mode 100644 index 0000000000000000000000000000000000000000..7e9c3dd9c21826221c3bf744eed6b7a3bf70ee70 --- /dev/null +++ b/vlm/train/Bkeeca4Kvr/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cca28ace1f692f1d2ccdf09735c8301ef56e835897c7f33d48eba186e7db379 +size 631685 diff --git a/vlm/train/Bkeeca4Kvr/10.png b/vlm/train/Bkeeca4Kvr/10.png new file mode 100644 index 0000000000000000000000000000000000000000..f399607a5e8bf4284f975a677d1f5e53dedf355f --- /dev/null +++ b/vlm/train/Bkeeca4Kvr/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4114021dfd0224932e73a7bee05535a8ae451665bde16c0e4ed223143e0f5fd +size 578849 diff --git a/vlm/train/Bkeeca4Kvr/11.png b/vlm/train/Bkeeca4Kvr/11.png new file mode 100644 index 0000000000000000000000000000000000000000..fee0a4bff7f10efd6e87f55f5469375af61f0526 --- /dev/null +++ b/vlm/train/Bkeeca4Kvr/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7625572b9464b7c4a4c8eb518fb7aff134f6a0adc0c1cb8c6afa0852f298ffb9 +size 568022 diff --git a/vlm/train/Bkeeca4Kvr/12.png b/vlm/train/Bkeeca4Kvr/12.png new file mode 100644 index 0000000000000000000000000000000000000000..cd9a6d19f3126acb931a4bcb9b5c73e513c13b8b --- /dev/null +++ b/vlm/train/Bkeeca4Kvr/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a841445413d4b146c506380bc71f7340bbbc99ad0e0deb1265914d26a8c97746 +size 291899 diff --git a/vlm/train/Bkeeca4Kvr/13.png b/vlm/train/Bkeeca4Kvr/13.png new file mode 100644 index 0000000000000000000000000000000000000000..a903c22202043d225d8398bfbd757d7680568ce0 --- /dev/null +++ b/vlm/train/Bkeeca4Kvr/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87233b66e620dbd3f32f4e002fdbd9d6ab6b381c37e1aaeac5309d2f4ce21c81 +size 386252 diff --git a/vlm/train/Bkeeca4Kvr/14.png b/vlm/train/Bkeeca4Kvr/14.png new file mode 100644 index 0000000000000000000000000000000000000000..e19af388a131a27466691204ac264b561df57f97 --- /dev/null +++ b/vlm/train/Bkeeca4Kvr/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5c72a5fd66b4a1a02967b57639714e2e1dc7a038cf2c46bbb97fd2122ae978c +size 561452 diff --git a/vlm/train/Bkeeca4Kvr/15.png b/vlm/train/Bkeeca4Kvr/15.png new file mode 100644 index 0000000000000000000000000000000000000000..f3e4ac5a2c44b0a4c60c693a3e84a8551c8223a9 --- /dev/null +++ b/vlm/train/Bkeeca4Kvr/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66f65a3665d7ab4a676b483eb6813caa491ba2f71fa7432cfc80efb6663c198a +size 388849 diff --git a/vlm/train/Bkeeca4Kvr/16.png b/vlm/train/Bkeeca4Kvr/16.png new file mode 100644 index 0000000000000000000000000000000000000000..5192497c1c796f1c86ebc5a99f278fddc71bae60 --- /dev/null +++ b/vlm/train/Bkeeca4Kvr/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71582a7c3d5e1bd570fd997616360a178a2db617f28e7e2b57f0f8be56c43dc8 +size 477737 diff --git a/vlm/train/Bkeeca4Kvr/17.png b/vlm/train/Bkeeca4Kvr/17.png new file mode 100644 index 0000000000000000000000000000000000000000..4ff23091ea37e01abfc59da6827fb7011544abdc --- /dev/null +++ b/vlm/train/Bkeeca4Kvr/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7897d461b53dfde67ad142cb9181584aba174be3a406e7d1a05f2bc57cc1a08 +size 524851 diff --git a/vlm/train/Bkeeca4Kvr/18.png b/vlm/train/Bkeeca4Kvr/18.png new file mode 100644 index 0000000000000000000000000000000000000000..cc8d4b0b31dfb00c24dee7334ab5d83887eeb35a --- /dev/null +++ b/vlm/train/Bkeeca4Kvr/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e08e99d14830f9b10ba8463a69179d568c79c3ee30a255d81c0b5644ca11dd7 +size 197349 diff --git a/vlm/train/Bkeeca4Kvr/2.png b/vlm/train/Bkeeca4Kvr/2.png new file mode 100644 index 0000000000000000000000000000000000000000..b09add0b4626d88d0dfe6a225a67980c25e4d765 --- /dev/null +++ b/vlm/train/Bkeeca4Kvr/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4991da5224fe195959fdbb29564ff6c4093286e4ff59eba5f91d85f7f284ff9 +size 595599 diff --git a/vlm/train/Bkeeca4Kvr/3.png b/vlm/train/Bkeeca4Kvr/3.png new file mode 100644 index 0000000000000000000000000000000000000000..d1a89732963ec979871518647c978bbfac845c4b --- /dev/null +++ b/vlm/train/Bkeeca4Kvr/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:964c157bc20c2235c5507fbf19389e7f0c484be2a1717d00c60e921bd0bf2bd6 +size 520067 diff --git a/vlm/train/Bkeeca4Kvr/4.png b/vlm/train/Bkeeca4Kvr/4.png new file mode 100644 index 0000000000000000000000000000000000000000..83f5d86bf59e7f7f95e6a6a0de95493f083374d8 --- /dev/null +++ b/vlm/train/Bkeeca4Kvr/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bc99f2bf02b549305177fcb02555298d2adfa91f2e25a8287f6d7c09c30898a +size 432669 diff --git a/vlm/train/Bkeeca4Kvr/5.png b/vlm/train/Bkeeca4Kvr/5.png new file mode 100644 index 0000000000000000000000000000000000000000..5ef40f89a9b747cc6f376211696170da433247f4 --- /dev/null +++ b/vlm/train/Bkeeca4Kvr/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8da8237b2585e06338d6f5fadbd3669b343bc9ceade0f1b80ad53d22d979de31 +size 487029 diff --git a/vlm/train/Bkeeca4Kvr/6.png b/vlm/train/Bkeeca4Kvr/6.png new file mode 100644 index 0000000000000000000000000000000000000000..4f9cc46aaf3059c89a8960094a7df884ee812261 --- /dev/null +++ b/vlm/train/Bkeeca4Kvr/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aba34949f7631af7b004d0b874e87ea8d8f555188852c991278e734014525ada +size 550585 diff --git a/vlm/train/Bkeeca4Kvr/7.png b/vlm/train/Bkeeca4Kvr/7.png new file mode 100644 index 0000000000000000000000000000000000000000..1daf04b5efc535abc28f03312a3638d215b7b51f --- /dev/null +++ b/vlm/train/Bkeeca4Kvr/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46764c267b4026912c9e09dd4d1e8c844f449de617896dedbe8f059ae9a64f80 +size 560880 diff --git a/vlm/train/Bkeeca4Kvr/8.png b/vlm/train/Bkeeca4Kvr/8.png new file mode 100644 index 0000000000000000000000000000000000000000..8c5d8dcede92f6335b2b613e7a7aaf216ce6f862 --- /dev/null +++ b/vlm/train/Bkeeca4Kvr/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e521fdc38208dc6d1990d482fda0d35fc353f8520ef30f1215d7256e42de413f +size 552793 diff --git a/vlm/train/Bkeeca4Kvr/9.png b/vlm/train/Bkeeca4Kvr/9.png new file mode 100644 index 0000000000000000000000000000000000000000..0729ffdbac3da0f362ba38008c8ee7e1780fd87c --- /dev/null +++ b/vlm/train/Bkeeca4Kvr/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:701d79d964e950e0b75f5f6a2ff26dd050fd97d443963bc96551c54fe8d1e7e9 +size 463491 diff --git a/vlm/train/CaKvIT5UMfd/0.png b/vlm/train/CaKvIT5UMfd/0.png new file mode 100644 index 0000000000000000000000000000000000000000..7a9e043ae2cf6ce512bf31b7ebc01625c9e74362 --- /dev/null +++ b/vlm/train/CaKvIT5UMfd/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85de03d72ab6c190ccf0e7bf3256a33e766fdd717d72c0b821cf15dbaaf01d54 +size 453703 diff --git a/vlm/train/CaKvIT5UMfd/1.png b/vlm/train/CaKvIT5UMfd/1.png new file mode 100644 index 0000000000000000000000000000000000000000..c53cdccf743a7b1be4ea0186a201295df9bce295 --- /dev/null +++ b/vlm/train/CaKvIT5UMfd/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33a9ce668108bf1cdd20bc9fee6f9b8fcc538769368a621fc29f35457ad8f979 +size 615217 diff --git a/vlm/train/CaKvIT5UMfd/10.png b/vlm/train/CaKvIT5UMfd/10.png new file mode 100644 index 0000000000000000000000000000000000000000..a08dd9c9609b557474cf701d83713697f37bfc5a --- /dev/null +++ b/vlm/train/CaKvIT5UMfd/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b53a5d63812d01f748c81145e5dd381477fbc558d1d013e7bc8ab9b7ba429d6 +size 572549 diff --git a/vlm/train/CaKvIT5UMfd/11.png b/vlm/train/CaKvIT5UMfd/11.png new file mode 100644 index 0000000000000000000000000000000000000000..8d7a84f25c485b5b6b55a6fee793a04756dc019b --- /dev/null +++ b/vlm/train/CaKvIT5UMfd/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:096dd4f0fb712a66f28943df3bd8be64c0302738e2a3c0670ea0b81c804fd2af +size 573443 diff --git a/vlm/train/CaKvIT5UMfd/12.png b/vlm/train/CaKvIT5UMfd/12.png new file mode 100644 index 0000000000000000000000000000000000000000..e42021664e5f128cf8a97b14a4bfe79253b4656f --- /dev/null +++ b/vlm/train/CaKvIT5UMfd/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa90317a500c6a3fc1f35f194fbe82c6d8d62f743b85cdc96e09531e05decb52 +size 593105 diff --git a/vlm/train/CaKvIT5UMfd/2.png b/vlm/train/CaKvIT5UMfd/2.png new file mode 100644 index 0000000000000000000000000000000000000000..120262bd9d0948c35ca24d670700b9b008484427 --- /dev/null +++ b/vlm/train/CaKvIT5UMfd/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90994ece91325acda2d21dd686fe0ca03986f3a79ad681b3cd7c55d10f5f67f2 +size 491084 diff --git a/vlm/train/CaKvIT5UMfd/3.png b/vlm/train/CaKvIT5UMfd/3.png new file mode 100644 index 0000000000000000000000000000000000000000..8cb3a5394f7cc7a9d31d515a0e0582d9d31af948 --- /dev/null +++ b/vlm/train/CaKvIT5UMfd/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2dd73fc5fd2908c9ece3e453274eba1fed1c04a100b995eec18cdb12796bfdf +size 525881 diff --git a/vlm/train/CaKvIT5UMfd/4.png b/vlm/train/CaKvIT5UMfd/4.png new file mode 100644 index 0000000000000000000000000000000000000000..a4f4bd26c2024ed98ccf8a326ac12d985ed57613 --- /dev/null +++ b/vlm/train/CaKvIT5UMfd/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd90ca403dc21716941d57195d937b728e248cba991e03a85c386649e507b232 +size 595203 diff --git a/vlm/train/CaKvIT5UMfd/5.png b/vlm/train/CaKvIT5UMfd/5.png new file mode 100644 index 0000000000000000000000000000000000000000..9b5afdf0e1d3e6d5c5e0cfa035450ffcf4985ab9 --- /dev/null +++ b/vlm/train/CaKvIT5UMfd/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb1f8529e2e229793ccac3b4d0fc1e4aeff6f6d57ac224e2194be64735425603 +size 799348 diff --git a/vlm/train/CaKvIT5UMfd/6.png b/vlm/train/CaKvIT5UMfd/6.png new file mode 100644 index 0000000000000000000000000000000000000000..3d350f9841c607fb0b2d66b950533ce56d0d32ba --- /dev/null +++ b/vlm/train/CaKvIT5UMfd/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a689e35ba9170d31c0203471075da30c34f8c50e40fed1d5b47a19412425cdc +size 610448 diff --git a/vlm/train/CaKvIT5UMfd/7.png b/vlm/train/CaKvIT5UMfd/7.png new file mode 100644 index 0000000000000000000000000000000000000000..e47e114594c43a4d04be87a4622d5ba19f732677 --- /dev/null +++ b/vlm/train/CaKvIT5UMfd/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bdfe0d20f3cf348ca00b3d24485fd0bdf341e980d966531da112f944460510a +size 1205113 diff --git a/vlm/train/CaKvIT5UMfd/8.png b/vlm/train/CaKvIT5UMfd/8.png new file mode 100644 index 0000000000000000000000000000000000000000..9dbf51af067c32811ba3ffddf250db439d364509 --- /dev/null +++ b/vlm/train/CaKvIT5UMfd/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aafb59111ff043104fab2246c29be2f4f03a7b0fb8e17a6c45245e700a60760 +size 1768626 diff --git a/vlm/train/CaKvIT5UMfd/9.png b/vlm/train/CaKvIT5UMfd/9.png new file mode 100644 index 0000000000000000000000000000000000000000..45e7751b1bd86ed3033b1d6fe6321fa4d7d53c06 --- /dev/null +++ b/vlm/train/CaKvIT5UMfd/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26a7f95f7cda0168225728358af96826484356881069a2231babf8f9eb75fc19 +size 705846 diff --git a/vlm/train/H1dh6Ax0Z/0.png b/vlm/train/H1dh6Ax0Z/0.png new file mode 100644 index 0000000000000000000000000000000000000000..fdf71074e87ca5a9ed7be071e3040e5983f51831 --- /dev/null +++ b/vlm/train/H1dh6Ax0Z/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:690715f66d65322441a72f092a47eb6fd21f31ea921353f211fe0471c4e95ecb +size 459099 diff --git a/vlm/train/H1dh6Ax0Z/1.png b/vlm/train/H1dh6Ax0Z/1.png new file mode 100644 index 0000000000000000000000000000000000000000..ba54a5f2ed6461f935a2396295943ec445a1dccf --- /dev/null +++ b/vlm/train/H1dh6Ax0Z/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:534c67a0bfc7ff2b35863cc8775e40f77fb01371a1dcd2a8448dc4075fb278b9 +size 514478 diff --git a/vlm/train/H1dh6Ax0Z/10.png b/vlm/train/H1dh6Ax0Z/10.png new file mode 100644 index 0000000000000000000000000000000000000000..7512059a8bb012096145d187346cba5336d78aea --- /dev/null +++ b/vlm/train/H1dh6Ax0Z/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97f90b041c3089fad16217ad2caad446bf55c132de1952b6a00ad8a221eace4b +size 554736 diff --git a/vlm/train/H1dh6Ax0Z/11.png b/vlm/train/H1dh6Ax0Z/11.png new file mode 100644 index 0000000000000000000000000000000000000000..4c17a59e788447b6274437763707ca098ea2fbfb --- /dev/null +++ b/vlm/train/H1dh6Ax0Z/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feca99b91c54672855316eafc6c5dd0c5636b176cff5e6ddf89f304ad732e51d +size 518963 diff --git a/vlm/train/H1dh6Ax0Z/12.png b/vlm/train/H1dh6Ax0Z/12.png new file mode 100644 index 0000000000000000000000000000000000000000..0ff942f1c2b168ca4bcec91a588e274702cbdf4d --- /dev/null +++ b/vlm/train/H1dh6Ax0Z/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8eb33f539b4ac5ada0a74ec0afb7d4be08987395f16baa60e8287f00abf810b +size 566628 diff --git a/vlm/train/H1dh6Ax0Z/13.png b/vlm/train/H1dh6Ax0Z/13.png new file mode 100644 index 0000000000000000000000000000000000000000..396a0970d697eea055f7deeafb6ab7bac9ae6c18 --- /dev/null +++ b/vlm/train/H1dh6Ax0Z/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddf98e89c2ec986cf094dd7aec1ee8adbde9aa1cf599dd3afe2c26248b1f7f5d +size 197666 diff --git a/vlm/train/H1dh6Ax0Z/14.png b/vlm/train/H1dh6Ax0Z/14.png new file mode 100644 index 0000000000000000000000000000000000000000..765654b76a9a6ff9090e510a82f033240ecabf8b --- /dev/null +++ b/vlm/train/H1dh6Ax0Z/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a99d9cd1e3567a32ab2946d5f6b44b6c60998ca83f956ef46b85c098c6f21757 +size 398962 diff --git a/vlm/train/H1dh6Ax0Z/2.png b/vlm/train/H1dh6Ax0Z/2.png new file mode 100644 index 0000000000000000000000000000000000000000..27ebe7943541fc6efb4131314b5a0d079e580e21 --- /dev/null +++ b/vlm/train/H1dh6Ax0Z/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:768e5350b08735cc8b3fc2d77b6ca162f407671393906dfa3e2e9e52196bfdad +size 526001 diff --git a/vlm/train/H1dh6Ax0Z/3.png b/vlm/train/H1dh6Ax0Z/3.png new file mode 100644 index 0000000000000000000000000000000000000000..d2563e4cd48c88502a9be5e4d7ace79e62cd4979 --- /dev/null +++ b/vlm/train/H1dh6Ax0Z/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e5ad20cd30b59ef01c3dd318747fa58910c10c2f27dffd92c6a012f4cb0bc2e +size 427693 diff --git a/vlm/train/H1dh6Ax0Z/4.png b/vlm/train/H1dh6Ax0Z/4.png new file mode 100644 index 0000000000000000000000000000000000000000..5ef39d54d3f2126c7bc4da0ae37be68485e888b1 --- /dev/null +++ b/vlm/train/H1dh6Ax0Z/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac62e990e61fc877423f8aaefa6631170500b5dc8702c220ea63a398e6139cda +size 491603 diff --git a/vlm/train/H1dh6Ax0Z/5.png b/vlm/train/H1dh6Ax0Z/5.png new file mode 100644 index 0000000000000000000000000000000000000000..b79d42ca0052004050e8c53b40da62f8ec1fd625 --- /dev/null +++ b/vlm/train/H1dh6Ax0Z/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56e8811f9afc6b0ecc2e0ba47e4bbe263da202604c1a2495f68594480ad09a6a +size 474867 diff --git a/vlm/train/H1dh6Ax0Z/6.png b/vlm/train/H1dh6Ax0Z/6.png new file mode 100644 index 0000000000000000000000000000000000000000..0c8f6e4c37d914efe4e7db6c56bcf3f3e209ebc5 --- /dev/null +++ b/vlm/train/H1dh6Ax0Z/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d85a9504ca6074f1cce47dc9640bf0e9f27e97cf7ed0a55cd788a0d3c12d555 +size 584709 diff --git a/vlm/train/H1dh6Ax0Z/7.png b/vlm/train/H1dh6Ax0Z/7.png new file mode 100644 index 0000000000000000000000000000000000000000..d2eb4f23d01f141f9bf1247c4609dfb251be943b --- /dev/null +++ b/vlm/train/H1dh6Ax0Z/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71a38b3fedd7fc817213344184aa102c0bfb2c3c2391b2d95b1ff023fafe1b18 +size 406468 diff --git a/vlm/train/H1dh6Ax0Z/8.png b/vlm/train/H1dh6Ax0Z/8.png new file mode 100644 index 0000000000000000000000000000000000000000..e2e005d6ab4bb9fb6bfcca92582ff14b6d0bf3f8 --- /dev/null +++ b/vlm/train/H1dh6Ax0Z/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bf1a3b58cd7a54694ec43a165af552f8771abbcb6128b58919b660cb60361b8 +size 593512 diff --git a/vlm/train/H1dh6Ax0Z/9.png b/vlm/train/H1dh6Ax0Z/9.png new file mode 100644 index 0000000000000000000000000000000000000000..c0b650da8d6597910c9b629ba7a7e6928ce304d1 --- /dev/null +++ b/vlm/train/H1dh6Ax0Z/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f63e3414fcb3a788218ba9e7f647f35b93592bf4718ba5934f28900360255ce8 +size 1194995 diff --git a/vlm/train/HJgpugrKPS/0.png b/vlm/train/HJgpugrKPS/0.png new file mode 100644 index 0000000000000000000000000000000000000000..2a63c99df40a3b3286bb77dd5f9566f3ed723200 --- /dev/null +++ b/vlm/train/HJgpugrKPS/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a0bb63af7ef350b3d17f980f17c2380a39f6511eed80102feeda8a557c98e99 +size 490290 diff --git a/vlm/train/HJgpugrKPS/1.png b/vlm/train/HJgpugrKPS/1.png new file mode 100644 index 0000000000000000000000000000000000000000..93635be218546cc7a0442249da5f032c2ac21f66 --- /dev/null +++ b/vlm/train/HJgpugrKPS/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22373799b9e3fc8ddf95ba517c9bb05140fac5ae30ed8aa231e8588921a954ea +size 418335 diff --git a/vlm/train/HJgpugrKPS/10.png b/vlm/train/HJgpugrKPS/10.png new file mode 100644 index 0000000000000000000000000000000000000000..b6044a74923987b1d0a707435d7aa423d2cfcdee --- /dev/null +++ b/vlm/train/HJgpugrKPS/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5133c96861e5172bfb262ba943f1328967f7e9d330af28dd3a60bc8ef7b468ac +size 169398 diff --git a/vlm/train/HJgpugrKPS/11.png b/vlm/train/HJgpugrKPS/11.png new file mode 100644 index 0000000000000000000000000000000000000000..66ddc29c4e92f240dcf49b10f4fe4c35bda04009 --- /dev/null +++ b/vlm/train/HJgpugrKPS/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feaea774a9f47a8d30af355329c2183c8645045c0c2f1e3fd535a507053c08a3 +size 137839 diff --git a/vlm/train/HJgpugrKPS/12.png b/vlm/train/HJgpugrKPS/12.png new file mode 100644 index 0000000000000000000000000000000000000000..6132a4cbd688915561560125f1262b63ca798e96 --- /dev/null +++ b/vlm/train/HJgpugrKPS/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e38aae1f3e81ad9bf49c72e23a03ec96cc08c7357d2a2c547175332a3fbcb293 +size 265064 diff --git a/vlm/train/HJgpugrKPS/13.png b/vlm/train/HJgpugrKPS/13.png new file mode 100644 index 0000000000000000000000000000000000000000..f4ed878571059c951891dc7a8483c9b2937e5f9a --- /dev/null +++ b/vlm/train/HJgpugrKPS/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:610103f707d5fbe34372c8ae34c51b37fe3533a498c0a7f2d136613280866f45 +size 167610 diff --git a/vlm/train/HJgpugrKPS/2.png b/vlm/train/HJgpugrKPS/2.png new file mode 100644 index 0000000000000000000000000000000000000000..6e988dd356b7e2d673dec1922b3719e535b73b39 --- /dev/null +++ b/vlm/train/HJgpugrKPS/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d433be198bf02704058798e28fafca2e09e37260d95d8d9c7ecc1d9df080079 +size 483980 diff --git a/vlm/train/HJgpugrKPS/3.png b/vlm/train/HJgpugrKPS/3.png new file mode 100644 index 0000000000000000000000000000000000000000..f8d12a7deed1f7eb6e101eaa5bf40f2b0529e512 --- /dev/null +++ b/vlm/train/HJgpugrKPS/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ee803584cd3facf15b44e07a38dd9cf0de331321d3eb62b430e2061912a8328 +size 508313 diff --git a/vlm/train/HJgpugrKPS/4.png b/vlm/train/HJgpugrKPS/4.png new file mode 100644 index 0000000000000000000000000000000000000000..ae6cec055e703eeacb3d1fe64653ea69ba7ecbd0 --- /dev/null +++ b/vlm/train/HJgpugrKPS/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db360528d95af96be607710e26e02ed0b3f0d04d996af2d4cbbe8d51803f4331 +size 484128 diff --git a/vlm/train/HJgpugrKPS/5.png b/vlm/train/HJgpugrKPS/5.png new file mode 100644 index 0000000000000000000000000000000000000000..1b0a748879fdd65b4ed8623720d7cf608b2698e6 --- /dev/null +++ b/vlm/train/HJgpugrKPS/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87d24ad4a50d2a602e8de3c4d44cca365646cf88233b791416dc000c1dcfc06b +size 422130 diff --git a/vlm/train/HJgpugrKPS/6.png b/vlm/train/HJgpugrKPS/6.png new file mode 100644 index 0000000000000000000000000000000000000000..8c4622ad666eab879f0259d772318cc004a06c80 --- /dev/null +++ b/vlm/train/HJgpugrKPS/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46ed3efb1ddcf210ddf2aed155dbed882477148f36f4259356dd8b75ea4875f5 +size 514146 diff --git a/vlm/train/HJgpugrKPS/7.png b/vlm/train/HJgpugrKPS/7.png new file mode 100644 index 0000000000000000000000000000000000000000..18426d0a217464730ef9b55f721e88cb67f89356 --- /dev/null +++ b/vlm/train/HJgpugrKPS/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:675c48d84acb7cb5356fe2c33661fc18ac05ca781fee064cb5fdcd7ff88928a2 +size 598518 diff --git a/vlm/train/HJgpugrKPS/8.png b/vlm/train/HJgpugrKPS/8.png new file mode 100644 index 0000000000000000000000000000000000000000..58537ae412ed0a47cfe13f4101fbd994dfb23255 --- /dev/null +++ b/vlm/train/HJgpugrKPS/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9799f9d55576df439990ae91777a43804f6352b18f69db74787f6810ae1ab10d +size 508788 diff --git a/vlm/train/HJgpugrKPS/9.png b/vlm/train/HJgpugrKPS/9.png new file mode 100644 index 0000000000000000000000000000000000000000..9d2f2164c8aacdbeb1ce6ab8c6dc47af8da7d093 --- /dev/null +++ b/vlm/train/HJgpugrKPS/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60b9a0e674fb48f86000b09dbae0ad67b7a99dccd44e21137bb08eed73dfd6e1 +size 523565 diff --git a/vlm/train/HJlzxgBtwH/0.png b/vlm/train/HJlzxgBtwH/0.png new file mode 100644 index 0000000000000000000000000000000000000000..233528c3ff8946b681c965b71ee4d8f461fa6d60 --- /dev/null +++ b/vlm/train/HJlzxgBtwH/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbc12dfd9b290ea4c3f4f6d6d4abb2be6e9bd5d2acda2ca355cc36a72bc17948 +size 535054 diff --git a/vlm/train/HJlzxgBtwH/1.png b/vlm/train/HJlzxgBtwH/1.png new file mode 100644 index 0000000000000000000000000000000000000000..2a93e4b922e857f2a7067950087d59e164a949df --- /dev/null +++ b/vlm/train/HJlzxgBtwH/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0cfbae0ce4cb508cb537249653fdf25b67fa5927b1ce5c062ced1c20410d2a1 +size 503577 diff --git a/vlm/train/HJlzxgBtwH/10.png b/vlm/train/HJlzxgBtwH/10.png new file mode 100644 index 0000000000000000000000000000000000000000..8a18e9ac875ee5aa02d8932dad5dfc442ae818ec --- /dev/null +++ b/vlm/train/HJlzxgBtwH/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a90c5840b5e1974587aff307f5374f50fd259a367b6ddaca8e0387fabd800bd +size 99374 diff --git a/vlm/train/HJlzxgBtwH/11.png b/vlm/train/HJlzxgBtwH/11.png new file mode 100644 index 0000000000000000000000000000000000000000..1e4739c61e7eb1da951a106b49b774ed3d3f3a6b --- /dev/null +++ b/vlm/train/HJlzxgBtwH/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5685ea05862d1e04ba4a5676c0faf633adab58ab5d065c66881b189e32796ae4 +size 498811 diff --git a/vlm/train/HJlzxgBtwH/12.png b/vlm/train/HJlzxgBtwH/12.png new file mode 100644 index 0000000000000000000000000000000000000000..e5a3fead2552c0ec8630d7c0ae7eea99042bc46f --- /dev/null +++ b/vlm/train/HJlzxgBtwH/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5da90fb3e8a1795a063becc9a54df0d6ac9f61eed89c23e29cae5833715f551a +size 265365 diff --git a/vlm/train/HJlzxgBtwH/13.png b/vlm/train/HJlzxgBtwH/13.png new file mode 100644 index 0000000000000000000000000000000000000000..6d59433a26d39509395e667c8c1432dd64089ec6 --- /dev/null +++ b/vlm/train/HJlzxgBtwH/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a43c16035a1df09d6dd0758ca69dbd8daf07bb6f61c2db4dfac3423dce57085 +size 359251 diff --git a/vlm/train/HJlzxgBtwH/14.png b/vlm/train/HJlzxgBtwH/14.png new file mode 100644 index 0000000000000000000000000000000000000000..d75b0b3ec9b75c1fce624dfd66ce35ffe7257752 --- /dev/null +++ b/vlm/train/HJlzxgBtwH/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b09473ad220e2fa04c0e2eab45c9c0ce4a7c251ac7a33fd80ea148794fcd3863 +size 367979 diff --git a/vlm/train/HJlzxgBtwH/15.png b/vlm/train/HJlzxgBtwH/15.png new file mode 100644 index 0000000000000000000000000000000000000000..002acfc89e5f8637c8f77018a045ecc07cdcf770 --- /dev/null +++ b/vlm/train/HJlzxgBtwH/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d78f06810d2169e5627c4d847dbf0784b28bbdb99b3d9fa3b26bca39b11bb82 +size 365614 diff --git a/vlm/train/HJlzxgBtwH/16.png b/vlm/train/HJlzxgBtwH/16.png new file mode 100644 index 0000000000000000000000000000000000000000..9c4ff0b6d1eff05f7f3a41b1bac4912fd2d388f3 --- /dev/null +++ b/vlm/train/HJlzxgBtwH/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc917196aa915e6ff8b903429ff8f495f041bc8c33061252898b3b9bace8eb46 +size 312966 diff --git a/vlm/train/HJlzxgBtwH/17.png b/vlm/train/HJlzxgBtwH/17.png new file mode 100644 index 0000000000000000000000000000000000000000..e6da903b93e8c5b6a0064cda782a6cd02cd722e6 --- /dev/null +++ b/vlm/train/HJlzxgBtwH/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bedd60139dd9560244f7441103450cab85b32b434e94e14110583d59da4b59e7 +size 175167 diff --git a/vlm/train/HJlzxgBtwH/18.png b/vlm/train/HJlzxgBtwH/18.png new file mode 100644 index 0000000000000000000000000000000000000000..6239ba36d4dab789462fc41b81f217e3a90ed2a0 --- /dev/null +++ b/vlm/train/HJlzxgBtwH/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17ccc9e65b3c8419a41b3fc33ef24398ff550f4196ac8c3c0a7668ff1fbaeae0 +size 743608 diff --git a/vlm/train/HJlzxgBtwH/19.png b/vlm/train/HJlzxgBtwH/19.png new file mode 100644 index 0000000000000000000000000000000000000000..783f7c90c40e3919ddcb3ec7fbc8bd61a0ea13e9 --- /dev/null +++ b/vlm/train/HJlzxgBtwH/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54467eb5c8968dc480312cae2c28f7986bc41cd66f3b775f9aa165df5766079a +size 223088 diff --git a/vlm/train/HJlzxgBtwH/2.png b/vlm/train/HJlzxgBtwH/2.png new file mode 100644 index 0000000000000000000000000000000000000000..2f53e014ac602fce2b5f5572fe43f564bb2d9175 --- /dev/null +++ b/vlm/train/HJlzxgBtwH/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:277d91e4c5b12a44e09d9eaa18c9a6f3dd864f5577e093ca6758e4b37aa92312 +size 490394 diff --git a/vlm/train/HJlzxgBtwH/20.png b/vlm/train/HJlzxgBtwH/20.png new file mode 100644 index 0000000000000000000000000000000000000000..b86ab0b3b9d9e5a90a6a48d3cb741d452dd585e0 --- /dev/null +++ b/vlm/train/HJlzxgBtwH/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a842766cefac83d7a671005861ca0fcae6fd2151daf5b079671bee284a1958e +size 280767 diff --git a/vlm/train/HJlzxgBtwH/21.png b/vlm/train/HJlzxgBtwH/21.png new file mode 100644 index 0000000000000000000000000000000000000000..6bd4849db4f1cef097b1b93102a4f488c2438157 --- /dev/null +++ b/vlm/train/HJlzxgBtwH/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9369bb0b1b70c1db29e7e5529bfac2bad4454907c2d4947b32827227b8ba79b +size 256922 diff --git a/vlm/train/HJlzxgBtwH/22.png b/vlm/train/HJlzxgBtwH/22.png new file mode 100644 index 0000000000000000000000000000000000000000..51727de7f1703c7b1a8e151e701eeded72ff1e07 --- /dev/null +++ b/vlm/train/HJlzxgBtwH/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d10003e87ef4cb9f1c8570eb48c22dbda8e737ac8f3465d511ad2283f04752ae +size 262178 diff --git a/vlm/train/HJlzxgBtwH/3.png b/vlm/train/HJlzxgBtwH/3.png new file mode 100644 index 0000000000000000000000000000000000000000..88b881488704ccd9bee8417bcd3744488e84f729 --- /dev/null +++ b/vlm/train/HJlzxgBtwH/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42281868129d923ff9e329790358099d824a55ac36e6984a0ccbefe265d76791 +size 425856 diff --git a/vlm/train/HJlzxgBtwH/4.png b/vlm/train/HJlzxgBtwH/4.png new file mode 100644 index 0000000000000000000000000000000000000000..8b10858270c285a5c93b0c844e29cf4bfe36c82b --- /dev/null +++ b/vlm/train/HJlzxgBtwH/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38dc0edc3a4962225ef475a5e194adfac6c74c53803ed34b24aafb41d3e31a14 +size 547240 diff --git a/vlm/train/HJlzxgBtwH/5.png b/vlm/train/HJlzxgBtwH/5.png new file mode 100644 index 0000000000000000000000000000000000000000..a68e6298c2c6cb0ab27b5a4e23c2e313115f554f --- /dev/null +++ b/vlm/train/HJlzxgBtwH/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8df95acf37ebb258256c278180d4431706232780e663bcc305be2425f08ae27 +size 382032 diff --git a/vlm/train/HJlzxgBtwH/6.png b/vlm/train/HJlzxgBtwH/6.png new file mode 100644 index 0000000000000000000000000000000000000000..9633c3f347fdbcc7b0c8a714d44b53625fba39a2 --- /dev/null +++ b/vlm/train/HJlzxgBtwH/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8eb800087424a676bb1f6ae57240287794ac6fba8707d5eb8b1396132742086 +size 638310 diff --git a/vlm/train/HJlzxgBtwH/7.png b/vlm/train/HJlzxgBtwH/7.png new file mode 100644 index 0000000000000000000000000000000000000000..b80de008c25c0d981407a069ba47ef1bd3c0963b --- /dev/null +++ b/vlm/train/HJlzxgBtwH/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdf1c53aa1524f76d924572b1c74066a493bfa22e52d7f1a9e8a90e0360c975c +size 476141 diff --git a/vlm/train/HJlzxgBtwH/8.png b/vlm/train/HJlzxgBtwH/8.png new file mode 100644 index 0000000000000000000000000000000000000000..58a2e97d2b77c922e1f3aaff12e3412266d29e12 --- /dev/null +++ b/vlm/train/HJlzxgBtwH/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:058acde7d8a4756498171bb1012f29fc3974b130abc0d2835749e803b3bb4357 +size 478094 diff --git a/vlm/train/HJlzxgBtwH/9.png b/vlm/train/HJlzxgBtwH/9.png new file mode 100644 index 0000000000000000000000000000000000000000..e487ea04f5b569d11e9fb0c3cdb85e446365f728 --- /dev/null +++ b/vlm/train/HJlzxgBtwH/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0fdc29bfddab99b89d31e2b4aace799c9269af4ec2ce8700f0c9d89214fc19e +size 490863 diff --git a/vlm/train/HJr4QJ26W/0.png b/vlm/train/HJr4QJ26W/0.png new file mode 100644 index 0000000000000000000000000000000000000000..fc653572be8c4f4a046f5d19223ac2e09471c6c9 --- /dev/null +++ b/vlm/train/HJr4QJ26W/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c22c2128e532089c6d168cbe78cb20e8990fd5389f020e6c5349a44ac2829127 +size 513357 diff --git a/vlm/train/HJr4QJ26W/1.png b/vlm/train/HJr4QJ26W/1.png new file mode 100644 index 0000000000000000000000000000000000000000..43b2bae10ac022009ccecd2ee9c7636d4c8a9efd --- /dev/null +++ b/vlm/train/HJr4QJ26W/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec33bfe3e03406a4a75eb1afd39f1bb247e1649f531e1be2b7c1dcbcb82825c4 +size 398899 diff --git a/vlm/train/HJr4QJ26W/10.png b/vlm/train/HJr4QJ26W/10.png new file mode 100644 index 0000000000000000000000000000000000000000..76fd395fa94808b60d526b96ab00281d1206ae60 --- /dev/null +++ b/vlm/train/HJr4QJ26W/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:894268324ebbbd748caa928ad4978182e56e3dfc5401ebfb0281f52dd5ef01f2 +size 428074 diff --git a/vlm/train/HJr4QJ26W/11.png b/vlm/train/HJr4QJ26W/11.png new file mode 100644 index 0000000000000000000000000000000000000000..6c91fb535409082a93e7a841374110d1eaba7aa4 --- /dev/null +++ b/vlm/train/HJr4QJ26W/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aaf2e09332619d9c9437a469c387f3d8ae8c506f9ef1cc6a498be6f3ca95d0e +size 352250 diff --git a/vlm/train/HJr4QJ26W/12.png b/vlm/train/HJr4QJ26W/12.png new file mode 100644 index 0000000000000000000000000000000000000000..8afa9b5a37f33810703cd27ad88a7bfae8e2a4d9 --- /dev/null +++ b/vlm/train/HJr4QJ26W/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d43f4234be79d70cebba4902f02a8ac7b048f53ec7d191d4088c5ed9c6e17fc +size 362146 diff --git a/vlm/train/HJr4QJ26W/13.png b/vlm/train/HJr4QJ26W/13.png new file mode 100644 index 0000000000000000000000000000000000000000..2d4dea1114817e35551b5f9f7333e3a2bcf7df52 --- /dev/null +++ b/vlm/train/HJr4QJ26W/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c8fd8909abab9ee5f11da23eea97a70d06c471f7daf97f4c66811456014c82c +size 529478 diff --git a/vlm/train/HJr4QJ26W/14.png b/vlm/train/HJr4QJ26W/14.png new file mode 100644 index 0000000000000000000000000000000000000000..84bf162e184c05120ea32f3e8f0216d85dbfcc9b --- /dev/null +++ b/vlm/train/HJr4QJ26W/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:993b3d1f90a8fc623b11c8d4148a3782cfde7b46cb4f94cf5178321179a0625d +size 409930 diff --git a/vlm/train/HJr4QJ26W/15.png b/vlm/train/HJr4QJ26W/15.png new file mode 100644 index 0000000000000000000000000000000000000000..c9d817204613185bca1cc423c6008eb7e5cb3e9b --- /dev/null +++ b/vlm/train/HJr4QJ26W/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd86ef6ad98906a03f025061fb0ae5e1f375431416ec9d1f8dcc8907157027c9 +size 363340 diff --git a/vlm/train/HJr4QJ26W/2.png b/vlm/train/HJr4QJ26W/2.png new file mode 100644 index 0000000000000000000000000000000000000000..f31cb02292325b1a778887aea293507eaec92ffa --- /dev/null +++ b/vlm/train/HJr4QJ26W/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94d74017546b826e4ccdcb03990f81fed65bfdb7e5a530095ac8903ca121db2e +size 535811 diff --git a/vlm/train/HJr4QJ26W/3.png b/vlm/train/HJr4QJ26W/3.png new file mode 100644 index 0000000000000000000000000000000000000000..921469d22bff2f0baff87dde785faac301063876 --- /dev/null +++ b/vlm/train/HJr4QJ26W/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06997bd5b48606c61c4d415cbb8d407fa642f00244e3fb5fefe045fe9c4cfb92 +size 542290 diff --git a/vlm/train/HJr4QJ26W/4.png b/vlm/train/HJr4QJ26W/4.png new file mode 100644 index 0000000000000000000000000000000000000000..1dff5306e609e32c8634169dee5e4f9a6aa8f79c --- /dev/null +++ b/vlm/train/HJr4QJ26W/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cb93cc9270323aa40f34e4c179682352f3b325240ac505fe626d4a2a17ae2c3 +size 548207 diff --git a/vlm/train/HJr4QJ26W/5.png b/vlm/train/HJr4QJ26W/5.png new file mode 100644 index 0000000000000000000000000000000000000000..ca30c170591e038dcc32af189918b72415dc962b --- /dev/null +++ b/vlm/train/HJr4QJ26W/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:438d76cc71a4118a565b8ffc7cdde67b26c4670f7205e5096b9124875cdeb92a +size 451146 diff --git a/vlm/train/HJr4QJ26W/6.png b/vlm/train/HJr4QJ26W/6.png new file mode 100644 index 0000000000000000000000000000000000000000..91fd87670a764a3ff62bc78abbf0f98fe23eb2c0 --- /dev/null +++ b/vlm/train/HJr4QJ26W/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28a094dbc225ad6ea3f35e3c3b84a4a9850f1177a569571a38e273f1d60ce754 +size 1535460 diff --git a/vlm/train/HJr4QJ26W/7.png b/vlm/train/HJr4QJ26W/7.png new file mode 100644 index 0000000000000000000000000000000000000000..091453068bb588910c75a2f99cdc060cb1f56535 --- /dev/null +++ b/vlm/train/HJr4QJ26W/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d0e9ad0f6bac6276217831e7049cd01b741e8d0fb6397347adf9ab018bac0ab +size 563872 diff --git a/vlm/train/HJr4QJ26W/8.png b/vlm/train/HJr4QJ26W/8.png new file mode 100644 index 0000000000000000000000000000000000000000..73992a097410d4d8cfb56a50ff9b28a01516e36f --- /dev/null +++ b/vlm/train/HJr4QJ26W/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19bb1401c837b459c24b1379bdabfc4edf6d6b930416474b35388b8a34293fa4 +size 528327 diff --git a/vlm/train/HJr4QJ26W/9.png b/vlm/train/HJr4QJ26W/9.png new file mode 100644 index 0000000000000000000000000000000000000000..91111a9ec5c1bc4060cb49123fae1b148b8e40a4 --- /dev/null +++ b/vlm/train/HJr4QJ26W/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93054c3eda2730d1569507f0f0ea3219fe4236224545954783bb63bd7754bbef +size 142527 diff --git a/vlm/train/HkG3e205K7/0.png b/vlm/train/HkG3e205K7/0.png new file mode 100644 index 0000000000000000000000000000000000000000..21c2b0a1c518d73c9094766a3318f8f73fb8436f --- /dev/null +++ b/vlm/train/HkG3e205K7/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca057665c42568b7f40a846fe094e660d5bc235e23f99b71ca59fec86c6a680b +size 489278 diff --git a/vlm/train/HkG3e205K7/1.png b/vlm/train/HkG3e205K7/1.png new file mode 100644 index 0000000000000000000000000000000000000000..f0632b31e2ce9648ce5f735c5ddaa6fcd246b387 --- /dev/null +++ b/vlm/train/HkG3e205K7/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fc560213d63a96d9333dcfae5b2d4ab032c1f24990f5d1d78cb3471d9e83f61 +size 546290 diff --git a/vlm/train/HkG3e205K7/10.png b/vlm/train/HkG3e205K7/10.png new file mode 100644 index 0000000000000000000000000000000000000000..f5e56e52f6ab6317a0b92387af6e10f5fa39997b --- /dev/null +++ b/vlm/train/HkG3e205K7/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c89ef3c2071ea893ea1b4f92942c62fe11bd242da60365ec2483444be462fd3 +size 463566 diff --git a/vlm/train/HkG3e205K7/11.png b/vlm/train/HkG3e205K7/11.png new file mode 100644 index 0000000000000000000000000000000000000000..a2a772ced75abf913517bbc57949b8acd0edd93c --- /dev/null +++ b/vlm/train/HkG3e205K7/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2070122f152ef4232b7b1be1df0503ed7309ef037468509c999d662505595cd +size 509037 diff --git a/vlm/train/HkG3e205K7/12.png b/vlm/train/HkG3e205K7/12.png new file mode 100644 index 0000000000000000000000000000000000000000..71505aabe06d7652dbe1d506c78d00c3901387f3 --- /dev/null +++ b/vlm/train/HkG3e205K7/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20f61127b1c1f91b2af2cac411d766bd077b63c07bb6bec80ee04889b3438e7b +size 528133 diff --git a/vlm/train/HkG3e205K7/13.png b/vlm/train/HkG3e205K7/13.png new file mode 100644 index 0000000000000000000000000000000000000000..a0cf116cfdcd3c0d5a81d8ba03747ea43f3c0ad1 --- /dev/null +++ b/vlm/train/HkG3e205K7/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27acf16f6ec7248fe2f448cf3f7de29efe9767fa0cf1f0564120158da32ba682 +size 187601 diff --git a/vlm/train/HkG3e205K7/2.png b/vlm/train/HkG3e205K7/2.png new file mode 100644 index 0000000000000000000000000000000000000000..39c147af97f5a5fd20860c55d73e6337dc4a5797 --- /dev/null +++ b/vlm/train/HkG3e205K7/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ec4fe65c00a35dcb9e218c07fe2d6c2a5e3518b90d1c8bb9e882d22af330294 +size 468556 diff --git a/vlm/train/HkG3e205K7/3.png b/vlm/train/HkG3e205K7/3.png new file mode 100644 index 0000000000000000000000000000000000000000..f4176869b54143b501ea624844a479582c74b137 --- /dev/null +++ b/vlm/train/HkG3e205K7/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a136522dce9e2a07c44e170dde79572ae43471a024165ea895c48dcdefc06844 +size 461778 diff --git a/vlm/train/HkG3e205K7/4.png b/vlm/train/HkG3e205K7/4.png new file mode 100644 index 0000000000000000000000000000000000000000..2fd9602f47b7316289fb78451da9c7ec6dc4047b --- /dev/null +++ b/vlm/train/HkG3e205K7/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:628145085899103ecedf920078b9a94926dd967871b6fcab11d35d86b67e377f +size 494394 diff --git a/vlm/train/HkG3e205K7/5.png b/vlm/train/HkG3e205K7/5.png new file mode 100644 index 0000000000000000000000000000000000000000..be26dcab2fbedb236db044658e4c6b064ef8ac31 --- /dev/null +++ b/vlm/train/HkG3e205K7/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3809fd6b1b6a3cf95a4e4e125f2ed0325e1b11c12b50120f1c974175ed945fed +size 521733 diff --git a/vlm/train/HkG3e205K7/6.png b/vlm/train/HkG3e205K7/6.png new file mode 100644 index 0000000000000000000000000000000000000000..c60f75ecb3f16c87376b14b7109664989ce4e5f5 --- /dev/null +++ b/vlm/train/HkG3e205K7/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea49a417f0fbd841438d540dfd74ac015a6f6f66a39552f17b10ffb2bcbc38c8 +size 558367 diff --git a/vlm/train/HkG3e205K7/7.png b/vlm/train/HkG3e205K7/7.png new file mode 100644 index 0000000000000000000000000000000000000000..738db87e47969c75b88e9d64179ad338dd0f1248 --- /dev/null +++ b/vlm/train/HkG3e205K7/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3ed0ec9e2da9606a7f4a26417c30bb1426cf04342d83d73582d8880535c8af9 +size 622722 diff --git a/vlm/train/HkG3e205K7/8.png b/vlm/train/HkG3e205K7/8.png new file mode 100644 index 0000000000000000000000000000000000000000..36004bb6ac529e0051d39c6bdf5aa536b6cbfb6f --- /dev/null +++ b/vlm/train/HkG3e205K7/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8d3658fe3313f2702c695420681ad797c13c6abbec11ab2d27a53c277f61a06 +size 492400 diff --git a/vlm/train/HkG3e205K7/9.png b/vlm/train/HkG3e205K7/9.png new file mode 100644 index 0000000000000000000000000000000000000000..ee09f90954f20c47bc71192909ef7b52fa8397d4 --- /dev/null +++ b/vlm/train/HkG3e205K7/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fa9b85378c795d39b9eb48aeb60f8022042a9f1cf3595e24a63694605bf6f87 +size 525468 diff --git a/vlm/train/HyPpD0g0Z/0.png b/vlm/train/HyPpD0g0Z/0.png new file mode 100644 index 0000000000000000000000000000000000000000..f15ed4132646dfd251e3eb3b5007097cda38cd31 --- /dev/null +++ b/vlm/train/HyPpD0g0Z/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47750d8bbf26c798e07c0a842eacffd12a74e1b9b0e626d9c76b5451a6b02c3e +size 471023 diff --git a/vlm/train/HyPpD0g0Z/1.png b/vlm/train/HyPpD0g0Z/1.png new file mode 100644 index 0000000000000000000000000000000000000000..405c85d58e2336d8b8318f315ce96aaf8ac8fd67 --- /dev/null +++ b/vlm/train/HyPpD0g0Z/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53333202a98eda6f491566e3b2b220b7ac511b9849eb7e0594d5dd239fd40061 +size 583976 diff --git a/vlm/train/HyPpD0g0Z/10.png b/vlm/train/HyPpD0g0Z/10.png new file mode 100644 index 0000000000000000000000000000000000000000..edd5e5dd3c88ed79bf8575754d103d3c76e760ed --- /dev/null +++ b/vlm/train/HyPpD0g0Z/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e49feb65dd632f324fa73799a5f031746cf08efa905ad690abf52b65e13d9ba +size 556444 diff --git a/vlm/train/HyPpD0g0Z/11.png b/vlm/train/HyPpD0g0Z/11.png new file mode 100644 index 0000000000000000000000000000000000000000..9e442d6ad98f8c744c4b6b9f62497cbf2ad85b31 --- /dev/null +++ b/vlm/train/HyPpD0g0Z/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:485f4e4be85f9a37771318fe80fc2a41517921498e5ada97fb9468a470d56cfb +size 224241 diff --git a/vlm/train/HyPpD0g0Z/12.png b/vlm/train/HyPpD0g0Z/12.png new file mode 100644 index 0000000000000000000000000000000000000000..144342742dd5290a5b0fa6afa89b26717798b3b1 --- /dev/null +++ b/vlm/train/HyPpD0g0Z/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc408da2955adb7704ac5d2fbbf12154330fd4009f0ce5e3095160a338a1f7e7 +size 555070 diff --git a/vlm/train/HyPpD0g0Z/13.png b/vlm/train/HyPpD0g0Z/13.png new file mode 100644 index 0000000000000000000000000000000000000000..401cf746e5c1e6453d8e13fffc28528358eae5e4 --- /dev/null +++ b/vlm/train/HyPpD0g0Z/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8319dae502793cd421051ce1cddd12580b154c768a2a7aefc8516b97e02b1bd +size 527222 diff --git a/vlm/train/HyPpD0g0Z/14.png b/vlm/train/HyPpD0g0Z/14.png new file mode 100644 index 0000000000000000000000000000000000000000..d9d2e0512a4001355a20020e87be734478e31fc9 --- /dev/null +++ b/vlm/train/HyPpD0g0Z/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50df9c6411f9d247c54e673715ddfa3f9b0c38b3649814b6e69ee5fc228502b5 +size 279611 diff --git a/vlm/train/HyPpD0g0Z/15.png b/vlm/train/HyPpD0g0Z/15.png new file mode 100644 index 0000000000000000000000000000000000000000..9a0fdb5ac77251d92e205bafeeaea231784a5029 --- /dev/null +++ b/vlm/train/HyPpD0g0Z/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4953784fb3c3e896baa4e1cc1da8197d489e6ba32d85d46b242268980c03ea1 +size 438560 diff --git a/vlm/train/HyPpD0g0Z/16.png b/vlm/train/HyPpD0g0Z/16.png new file mode 100644 index 0000000000000000000000000000000000000000..c8dac66d2f9daa514ecf94c0a00a2634d331044c --- /dev/null +++ b/vlm/train/HyPpD0g0Z/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ffc7345433c87b99fb5cdb7dacebbf6412697de7c64ff953b8b386222193e0c +size 408295 diff --git a/vlm/train/HyPpD0g0Z/17.png b/vlm/train/HyPpD0g0Z/17.png new file mode 100644 index 0000000000000000000000000000000000000000..1e47d28bb8f1cf09d27bccc6b15c510530f39883 --- /dev/null +++ b/vlm/train/HyPpD0g0Z/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5774cd822c65a045cab095db9c78282387b8dc2eb70d27733f8cd8c68d75e7e +size 412514 diff --git a/vlm/train/HyPpD0g0Z/18.png b/vlm/train/HyPpD0g0Z/18.png new file mode 100644 index 0000000000000000000000000000000000000000..50dc70a394c743d1dd307943a9c097b3a31ed788 --- /dev/null +++ b/vlm/train/HyPpD0g0Z/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:281d0d91ee9066c36c6627a0a9e7cd1611a5e718c5a8e69f1cbb4e03fff0c418 +size 626501 diff --git a/vlm/train/HyPpD0g0Z/19.png b/vlm/train/HyPpD0g0Z/19.png new file mode 100644 index 0000000000000000000000000000000000000000..769927e4ed48bd567019bd81276f4535ab05bf78 --- /dev/null +++ b/vlm/train/HyPpD0g0Z/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e3a1eeab8213b20bf06e726061c52d719fc1420b6cf8e86e476dd9da9208f96 +size 272738 diff --git a/vlm/train/HyPpD0g0Z/2.png b/vlm/train/HyPpD0g0Z/2.png new file mode 100644 index 0000000000000000000000000000000000000000..bbb3603d939a437175eef1d4123814c1c196c18e --- /dev/null +++ b/vlm/train/HyPpD0g0Z/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:237370b85f0d030e5f5a1eecb8c3696dc482f7b03e04e40b70ca7434851dda2f +size 690870 diff --git a/vlm/train/HyPpD0g0Z/20.png b/vlm/train/HyPpD0g0Z/20.png new file mode 100644 index 0000000000000000000000000000000000000000..8d492af608b8041e1fd5dd6de735a486c726c0c2 --- /dev/null +++ b/vlm/train/HyPpD0g0Z/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11dbb3aef8801994ad9be3c2f5afe3b8024610d2202be32e6fd2375997fabe9a +size 564857 diff --git a/vlm/train/HyPpD0g0Z/21.png b/vlm/train/HyPpD0g0Z/21.png new file mode 100644 index 0000000000000000000000000000000000000000..eb8c9e05c2708e48e43b5eb4ad70a66f15219460 --- /dev/null +++ b/vlm/train/HyPpD0g0Z/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b401ee5e0528f9dc85e839ec299197f5a34b1b383643aec85150948a296460f +size 849303 diff --git a/vlm/train/HyPpD0g0Z/22.png b/vlm/train/HyPpD0g0Z/22.png new file mode 100644 index 0000000000000000000000000000000000000000..3672e299c70a7802508b9cebf3145b7bae8e8b03 --- /dev/null +++ b/vlm/train/HyPpD0g0Z/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8abe1ab192bbaf618970b48f2fb833e80a9fb024313eed375b62855794f86d20 +size 292716 diff --git a/vlm/train/HyPpD0g0Z/23.png b/vlm/train/HyPpD0g0Z/23.png new file mode 100644 index 0000000000000000000000000000000000000000..466ee7e9837aa009cf684e252e4eb5929fd7d893 --- /dev/null +++ b/vlm/train/HyPpD0g0Z/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23f0e336e1c9775da72a69c604fd6c26e164c8cc1a316b38b3aa66ca70ad7856 +size 411474 diff --git a/vlm/train/HyPpD0g0Z/24.png b/vlm/train/HyPpD0g0Z/24.png new file mode 100644 index 0000000000000000000000000000000000000000..cff12de5bbbe1c7ca62cb00d8e48d60dc0b52e71 --- /dev/null +++ b/vlm/train/HyPpD0g0Z/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0d8d1a68ed5c5e3701455567eb4a9577001b99d12131b6328fbec4f2ccb4d96 +size 405747 diff --git a/vlm/train/HyPpD0g0Z/25.png b/vlm/train/HyPpD0g0Z/25.png new file mode 100644 index 0000000000000000000000000000000000000000..072770560ef8d8d3f3153dd8d551a790cb9e2bde --- /dev/null +++ b/vlm/train/HyPpD0g0Z/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9acd5a2d6e407691e45e26d82f630ea79450696bc84736fc5377ce7c4a9e9a2 +size 821211 diff --git a/vlm/train/HyPpD0g0Z/26.png b/vlm/train/HyPpD0g0Z/26.png new file mode 100644 index 0000000000000000000000000000000000000000..33c34188e2822130165c769cff688826cf22b740 --- /dev/null +++ b/vlm/train/HyPpD0g0Z/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c046e9520b7c5f673181fc06d86182a5d88fc377d5c3aaa47f22e2d768720f8e +size 410643 diff --git a/vlm/train/HyPpD0g0Z/27.png b/vlm/train/HyPpD0g0Z/27.png new file mode 100644 index 0000000000000000000000000000000000000000..a74e015fc5b2386bd7000224e33330d944778304 --- /dev/null +++ b/vlm/train/HyPpD0g0Z/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4926c8a4e5d5d85ec23be90d74f79c3ed6c567a89b4fd7cc4f58dccc95be2cab +size 141036 diff --git a/vlm/train/HyPpD0g0Z/3.png b/vlm/train/HyPpD0g0Z/3.png new file mode 100644 index 0000000000000000000000000000000000000000..bba59d751d898d7111bb9c936d24164c52dc9657 --- /dev/null +++ b/vlm/train/HyPpD0g0Z/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d967e1d226fd7c9d0e509ddcf5faa0bace11f9fe25c1304d9e7feadd018423a +size 623358 diff --git a/vlm/train/HyPpD0g0Z/4.png b/vlm/train/HyPpD0g0Z/4.png new file mode 100644 index 0000000000000000000000000000000000000000..ae957247aaf6683ec3fcec5931c19297424d5073 --- /dev/null +++ b/vlm/train/HyPpD0g0Z/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d509b8618d2c6e4ea0825d66b66bcba26fdaa7dba9a2d70e58b07500aac77aea +size 405034 diff --git a/vlm/train/HyPpD0g0Z/5.png b/vlm/train/HyPpD0g0Z/5.png new file mode 100644 index 0000000000000000000000000000000000000000..4d899d453a422d1707c149c797b96c1eb0804577 --- /dev/null +++ b/vlm/train/HyPpD0g0Z/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e04e81524e7028298ccb1e2a52c04e0e919f45d8cc178ed41a825ab8bcd82716 +size 553908 diff --git a/vlm/train/HyPpD0g0Z/6.png b/vlm/train/HyPpD0g0Z/6.png new file mode 100644 index 0000000000000000000000000000000000000000..214a70f9e28f8b696e3dd5b1eeb13052e8cdd884 --- /dev/null +++ b/vlm/train/HyPpD0g0Z/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91301f253fcff5ba41afa2a7d2b7a7ee7116e02d22e2cb61c0dcf02045534806 +size 518359 diff --git a/vlm/train/HyPpD0g0Z/7.png b/vlm/train/HyPpD0g0Z/7.png new file mode 100644 index 0000000000000000000000000000000000000000..d2786ad9a00d04ddedcb52a25417e3f7e75109b2 --- /dev/null +++ b/vlm/train/HyPpD0g0Z/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e37bc841b4989fefc45c73e01c0be4d978ae42108fb81326273b759432e5b75d +size 448827 diff --git a/vlm/train/HyPpD0g0Z/8.png b/vlm/train/HyPpD0g0Z/8.png new file mode 100644 index 0000000000000000000000000000000000000000..7a6ce0ec568ddeedc9dcd67654c125bf4f1448e9 --- /dev/null +++ b/vlm/train/HyPpD0g0Z/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54fb32bf85dcce4498f5449a9744d59f2469d609abe0f1f8cdec57aaa6493974 +size 528774 diff --git a/vlm/train/HyPpD0g0Z/9.png b/vlm/train/HyPpD0g0Z/9.png new file mode 100644 index 0000000000000000000000000000000000000000..f0629e23db9f6c1d7b61425e576d4af36230c294 --- /dev/null +++ b/vlm/train/HyPpD0g0Z/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3da4dd2cdd7b44544c0858023362e7be62f4d8b72af8904297b2c31440c7d7fe +size 603334 diff --git a/vlm/train/Hygm8jC9FQ/0.png b/vlm/train/Hygm8jC9FQ/0.png new file mode 100644 index 0000000000000000000000000000000000000000..dc36093653f55e8c88eb6860e7b8633da22a9ae5 --- /dev/null +++ b/vlm/train/Hygm8jC9FQ/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78729b2edcbe82a528cb4c4c0d0fb1b53775375eea1c31b279aac770a22e7f48 +size 479857 diff --git a/vlm/train/Hygm8jC9FQ/1.png b/vlm/train/Hygm8jC9FQ/1.png new file mode 100644 index 0000000000000000000000000000000000000000..77b9c7d9f342c5ca2c7471725023d2d1e010489d --- /dev/null +++ b/vlm/train/Hygm8jC9FQ/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af00c2ff12412e33680fc769b0a41786b1dcb170237fa66a2855b093bfc01eea +size 531102 diff --git a/vlm/train/Hygm8jC9FQ/10.png b/vlm/train/Hygm8jC9FQ/10.png new file mode 100644 index 0000000000000000000000000000000000000000..dc082b9771acc97eefde0a8c0a37a631ffbdcba4 --- /dev/null +++ b/vlm/train/Hygm8jC9FQ/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01104957e4b90d9891c442936002739aa17e9cf07825d89ef3c04289e3951c68 +size 320222 diff --git a/vlm/train/Hygm8jC9FQ/11.png b/vlm/train/Hygm8jC9FQ/11.png new file mode 100644 index 0000000000000000000000000000000000000000..a8b6900e934f0c8ef15813d1dd6cd556546f85d8 --- /dev/null +++ b/vlm/train/Hygm8jC9FQ/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:264d1bbafce3420e693b422a37d39f8404dde6ff84f670dfaf8e6fc3700f733d +size 464523 diff --git a/vlm/train/Hygm8jC9FQ/12.png b/vlm/train/Hygm8jC9FQ/12.png new file mode 100644 index 0000000000000000000000000000000000000000..235687e7eead680301d524c5648e9ff02306986a --- /dev/null +++ b/vlm/train/Hygm8jC9FQ/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e18678b69ba0ac18090721381d4249ebb77aafe1f83d761698d61ac651db327 +size 443144 diff --git a/vlm/train/Hygm8jC9FQ/13.png b/vlm/train/Hygm8jC9FQ/13.png new file mode 100644 index 0000000000000000000000000000000000000000..bf69c6fc079e9134528c8e0b91eea233b3a64656 --- /dev/null +++ b/vlm/train/Hygm8jC9FQ/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69bd98cb0058e1c058bc4c116b54ba0368e81a2aec37409054aa95e813e0f48c +size 355807 diff --git a/vlm/train/Hygm8jC9FQ/14.png b/vlm/train/Hygm8jC9FQ/14.png new file mode 100644 index 0000000000000000000000000000000000000000..d9811315800fb2faddd8859c64c25b4b5c1ed4e7 --- /dev/null +++ b/vlm/train/Hygm8jC9FQ/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01b6d9dbd6b1416b8337d2b42d4f4fcacfde39fa6b0542e08db6052cd1699eab +size 114800 diff --git a/vlm/train/Hygm8jC9FQ/15.png b/vlm/train/Hygm8jC9FQ/15.png new file mode 100644 index 0000000000000000000000000000000000000000..320d546a2964857137e8ff3bbd03f11f6e1fb324 --- /dev/null +++ b/vlm/train/Hygm8jC9FQ/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f381c30cb4f0dc38db6e7450f97989ad5943031ed364b4380a9d339863df599 +size 374472 diff --git a/vlm/train/Hygm8jC9FQ/16.png b/vlm/train/Hygm8jC9FQ/16.png new file mode 100644 index 0000000000000000000000000000000000000000..8bbc4ee3a6b345517f5cfb8ac7ad8343d279099b --- /dev/null +++ b/vlm/train/Hygm8jC9FQ/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcd3c3bf147d6c959da6bd2d9af621ca492f5045bb51a8db1881a7e1cb3e4501 +size 104867 diff --git a/vlm/train/Hygm8jC9FQ/2.png b/vlm/train/Hygm8jC9FQ/2.png new file mode 100644 index 0000000000000000000000000000000000000000..f1f265a0c8d3d72dc1d13e6754d50bf7b64315d4 --- /dev/null +++ b/vlm/train/Hygm8jC9FQ/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6371b69cd1989d70921e579b2e088229044e0b085736d38ddf3444a7e8bafb6e +size 496086 diff --git a/vlm/train/Hygm8jC9FQ/3.png b/vlm/train/Hygm8jC9FQ/3.png new file mode 100644 index 0000000000000000000000000000000000000000..3a956ac1291d419871ab45ac6db2e007aea2bc1d --- /dev/null +++ b/vlm/train/Hygm8jC9FQ/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52de17f102b233aa70a3d5a0a91b5d12e47614763f40021b55c8f787a821aaa2 +size 468190 diff --git a/vlm/train/Hygm8jC9FQ/4.png b/vlm/train/Hygm8jC9FQ/4.png new file mode 100644 index 0000000000000000000000000000000000000000..1b2b841cc0bf830bd5bdae0dafd8446374d2a64a --- /dev/null +++ b/vlm/train/Hygm8jC9FQ/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9010c388908c1cbf256c8b51b1fe97584fb0efaf63e1462491212ebdbf995d28 +size 478734 diff --git a/vlm/train/Hygm8jC9FQ/5.png b/vlm/train/Hygm8jC9FQ/5.png new file mode 100644 index 0000000000000000000000000000000000000000..9108592165cbdc928f97fe1ddb5e5cde5f2b5163 --- /dev/null +++ b/vlm/train/Hygm8jC9FQ/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48707a43f785c3032b50e2b27aa8afd369d05fcbc6d50ab669b2d76e3a6e52fb +size 524948 diff --git a/vlm/train/Hygm8jC9FQ/6.png b/vlm/train/Hygm8jC9FQ/6.png new file mode 100644 index 0000000000000000000000000000000000000000..5ed38e3c8b5184d453938af746de1bb0ec280a60 --- /dev/null +++ b/vlm/train/Hygm8jC9FQ/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f0facd964654bd2c57a4f216874cb24ac676d5ca2a6a36bfb8d1509f1e3702b +size 401661 diff --git a/vlm/train/Hygm8jC9FQ/7.png b/vlm/train/Hygm8jC9FQ/7.png new file mode 100644 index 0000000000000000000000000000000000000000..ff94b0f12470b1c52e3cc0d1b4545d12a05f8ee8 --- /dev/null +++ b/vlm/train/Hygm8jC9FQ/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bd6271826ec9e093586ff7ddee09545f5e4a894501a16a3de504b947b10b032 +size 625364 diff --git a/vlm/train/Hygm8jC9FQ/8.png b/vlm/train/Hygm8jC9FQ/8.png new file mode 100644 index 0000000000000000000000000000000000000000..5ccd0d222856a3890c86087eb6f0d9df327211e8 --- /dev/null +++ b/vlm/train/Hygm8jC9FQ/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3520d13953aafbed3bf4b2f88cf74ab16bd9bb17562bd7701fd5e279005362e9 +size 522945 diff --git a/vlm/train/Hygm8jC9FQ/9.png b/vlm/train/Hygm8jC9FQ/9.png new file mode 100644 index 0000000000000000000000000000000000000000..672053806beb35ad7528c4fe7f51e0e687cb71d1 --- /dev/null +++ b/vlm/train/Hygm8jC9FQ/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093b5145dd5ce119ebf06d97bd21e72f9878a7e4d3121908f2b5dc3ffdfa3005 +size 355200 diff --git a/vlm/train/Hygxb2CqKm/0.png b/vlm/train/Hygxb2CqKm/0.png new file mode 100644 index 0000000000000000000000000000000000000000..e2db79a1fa3760429168b1c98b62ce4b633a0597 --- /dev/null +++ b/vlm/train/Hygxb2CqKm/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3585abd87bc97f7c8536f096cb4b8aed3b19559e6c8f11d35ef027815836b97b +size 475407 diff --git a/vlm/train/Hygxb2CqKm/1.png b/vlm/train/Hygxb2CqKm/1.png new file mode 100644 index 0000000000000000000000000000000000000000..dbfe24e9d30f96000992b580423e071a715937dd --- /dev/null +++ b/vlm/train/Hygxb2CqKm/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d488cfea1548b2fece6b5947bd8b5f9a9526b66ab30f2712908b8b6fdae82d5a +size 465673 diff --git a/vlm/train/Hygxb2CqKm/10.png b/vlm/train/Hygxb2CqKm/10.png new file mode 100644 index 0000000000000000000000000000000000000000..b8157bf39f909b1ba190b19e54d40e97f84823a4 --- /dev/null +++ b/vlm/train/Hygxb2CqKm/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d1bbbfb0681f3d63db3c6518580be3593a92283e3db5313b9491a95e00bc220 +size 509369 diff --git a/vlm/train/Hygxb2CqKm/11.png b/vlm/train/Hygxb2CqKm/11.png new file mode 100644 index 0000000000000000000000000000000000000000..d520e9753ee31db1de30688436f486e1c9ae8a3f --- /dev/null +++ b/vlm/train/Hygxb2CqKm/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f937afa14af39465ef81a1f4d1eb11fd1258682780affe73501c6303cfaeb159 +size 397223 diff --git a/vlm/train/Hygxb2CqKm/12.png b/vlm/train/Hygxb2CqKm/12.png new file mode 100644 index 0000000000000000000000000000000000000000..43c044e366b4b6438d4e6ff9c402d77d9ba6e575 --- /dev/null +++ b/vlm/train/Hygxb2CqKm/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0efbce1af33d9e8903282d3cd070ff0d7a3a6f64d86060490a1f14d129c1038a +size 302349 diff --git a/vlm/train/Hygxb2CqKm/13.png b/vlm/train/Hygxb2CqKm/13.png new file mode 100644 index 0000000000000000000000000000000000000000..802da704182bb33bdd66783beaf391af3f246170 --- /dev/null +++ b/vlm/train/Hygxb2CqKm/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43ed82d8b34c6f74aa811e0f6555234b3112dedbafe666c8735b63743f5f2906 +size 329922 diff --git a/vlm/train/Hygxb2CqKm/14.png b/vlm/train/Hygxb2CqKm/14.png new file mode 100644 index 0000000000000000000000000000000000000000..8df05043f1b609c0a05e359e1f5d29d405f46208 --- /dev/null +++ b/vlm/train/Hygxb2CqKm/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51af81dd0c542a094986bea5ac80d31caa455033eae32f8886c063b21191716e +size 285479 diff --git a/vlm/train/Hygxb2CqKm/15.png b/vlm/train/Hygxb2CqKm/15.png new file mode 100644 index 0000000000000000000000000000000000000000..f74412fc2d3139c35ff00785b99fe0d76caf5b1d --- /dev/null +++ b/vlm/train/Hygxb2CqKm/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e72c8b22030adb8535a8c097919409a8635b182f6a34e7fc5338e3991d0998b +size 364470 diff --git a/vlm/train/Hygxb2CqKm/16.png b/vlm/train/Hygxb2CqKm/16.png new file mode 100644 index 0000000000000000000000000000000000000000..283599011014395a4ea67bf5697bdfe24a9f0fb3 --- /dev/null +++ b/vlm/train/Hygxb2CqKm/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fe93a87052450a8ff8138a9bc9ffa0a732f0f6b494a99202cc2b64384e3bc3d +size 315533 diff --git a/vlm/train/Hygxb2CqKm/17.png b/vlm/train/Hygxb2CqKm/17.png new file mode 100644 index 0000000000000000000000000000000000000000..e26ce7e8d7ca721f44430806af6ddb57fe9b6055 --- /dev/null +++ b/vlm/train/Hygxb2CqKm/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bd43753eeb3d949970afd7e662ccb35154d1bf5a43d5729c8c99d846a061cc8 +size 330087 diff --git a/vlm/train/Hygxb2CqKm/18.png b/vlm/train/Hygxb2CqKm/18.png new file mode 100644 index 0000000000000000000000000000000000000000..b44af6674e9b0e2eb51ce5273acc4dd095be85cc --- /dev/null +++ b/vlm/train/Hygxb2CqKm/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:067429353c05f2ea10d0643705c62f73de2518df9f5bfd9c51b8752179d94a6a +size 261990 diff --git a/vlm/train/Hygxb2CqKm/19.png b/vlm/train/Hygxb2CqKm/19.png new file mode 100644 index 0000000000000000000000000000000000000000..ad1a8672d2f46ee87c7debaf0fa5427bfbfc585d --- /dev/null +++ b/vlm/train/Hygxb2CqKm/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a97df2d426d4589651c92668a08912cf86323306ee9c35ffc1a2f7ba05a7b4fd +size 271201 diff --git a/vlm/train/Hygxb2CqKm/2.png b/vlm/train/Hygxb2CqKm/2.png new file mode 100644 index 0000000000000000000000000000000000000000..2779224a1591b1232997ad9a4c1058adc2352a84 --- /dev/null +++ b/vlm/train/Hygxb2CqKm/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b74efebf0b8aac3a93738f0df367e220087a68b03f34badd186e69edc76066da +size 494679 diff --git a/vlm/train/Hygxb2CqKm/20.png b/vlm/train/Hygxb2CqKm/20.png new file mode 100644 index 0000000000000000000000000000000000000000..5e56c633d475acdede60c67cd42c066771cd7306 --- /dev/null +++ b/vlm/train/Hygxb2CqKm/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cee60647ca4a5549bc770b4676604a5fb55bcbd0c237e8ef05ece04a168b0c38 +size 511907 diff --git a/vlm/train/Hygxb2CqKm/21.png b/vlm/train/Hygxb2CqKm/21.png new file mode 100644 index 0000000000000000000000000000000000000000..1adb8d9712342d4d65206571ee260e3b379fc305 --- /dev/null +++ b/vlm/train/Hygxb2CqKm/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd361a58dfe02e5b4928f936aba3f3069245c1ab1c8454822968d9abb4e9b9e2 +size 194646 diff --git a/vlm/train/Hygxb2CqKm/22.png b/vlm/train/Hygxb2CqKm/22.png new file mode 100644 index 0000000000000000000000000000000000000000..3dc1e66bcb442ad96a76b2827e77a2c6b36a869e --- /dev/null +++ b/vlm/train/Hygxb2CqKm/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ec51d141bae7f85fe5c0ed02f5b9d117c38a6f8666148d60f4782eaf7b86ade +size 290539 diff --git a/vlm/train/Hygxb2CqKm/3.png b/vlm/train/Hygxb2CqKm/3.png new file mode 100644 index 0000000000000000000000000000000000000000..e26985c7c9a7324d277ea2f2d489dc2ffdadb529 --- /dev/null +++ b/vlm/train/Hygxb2CqKm/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d547f7eb35f2ae902bbcbea91e5aa5fd4a6e1bcd4d28617b94b420d32d9f21b +size 502874 diff --git a/vlm/train/Hygxb2CqKm/4.png b/vlm/train/Hygxb2CqKm/4.png new file mode 100644 index 0000000000000000000000000000000000000000..2f44f01545b3ae34d2c07d791a6c94b8ad11ef0e --- /dev/null +++ b/vlm/train/Hygxb2CqKm/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b229f614175259ff4bda551b5360c85dc93e2d9358aaa96b3b9eed96f501f06 +size 539172 diff --git a/vlm/train/Hygxb2CqKm/5.png b/vlm/train/Hygxb2CqKm/5.png new file mode 100644 index 0000000000000000000000000000000000000000..9805b756fb53ee400b97cd6945e1fd86dbc28441 --- /dev/null +++ b/vlm/train/Hygxb2CqKm/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:740cb7d63d3b8197f3e045eb51dca8ce4b26083bfe1c9d0bd474862e366b3a51 +size 483039 diff --git a/vlm/train/Hygxb2CqKm/6.png b/vlm/train/Hygxb2CqKm/6.png new file mode 100644 index 0000000000000000000000000000000000000000..01a8d357b310238cde12bc571aaac77573679452 --- /dev/null +++ b/vlm/train/Hygxb2CqKm/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56a635df278639a2b385080cad384c7b10150ed8b89269e4e7db4ddff47057af +size 554784 diff --git a/vlm/train/Hygxb2CqKm/7.png b/vlm/train/Hygxb2CqKm/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f06403e052297acace9611146820b27dc1ee49f7 --- /dev/null +++ b/vlm/train/Hygxb2CqKm/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a990ff9c4ba2f896a0fc747c0b4f152ca9153696122d7d7266d558801cb6d0d9 +size 449314 diff --git a/vlm/train/Hygxb2CqKm/8.png b/vlm/train/Hygxb2CqKm/8.png new file mode 100644 index 0000000000000000000000000000000000000000..c583dc413c82b38bfce60aab7140258e74253a95 --- /dev/null +++ b/vlm/train/Hygxb2CqKm/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1d7764ec96efbbfde6ccbdd2a570ba99cbd1525681b26694d09e632e7c64625 +size 500394 diff --git a/vlm/train/Hygxb2CqKm/9.png b/vlm/train/Hygxb2CqKm/9.png new file mode 100644 index 0000000000000000000000000000000000000000..688b0c475e51cdb41f13c2740f3f917a74e29515 --- /dev/null +++ b/vlm/train/Hygxb2CqKm/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d396a1c00e2e581c10f9785d0f8d6b31fe95dd4d92a08b8abf0d9866154e398a +size 554304 diff --git a/vlm/train/ODKwX19UjOj/0.png b/vlm/train/ODKwX19UjOj/0.png new file mode 100644 index 0000000000000000000000000000000000000000..c790742b9743b70d650f549ba51fca59bec65542 --- /dev/null +++ b/vlm/train/ODKwX19UjOj/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3867c8897cd62cc3da65688cc800b342463f992ac9ac88072fe86176c867d991 +size 472429 diff --git a/vlm/train/ODKwX19UjOj/1.png b/vlm/train/ODKwX19UjOj/1.png new file mode 100644 index 0000000000000000000000000000000000000000..1624c2285bc4c147df723961daab0917d368b690 --- /dev/null +++ b/vlm/train/ODKwX19UjOj/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23d950a76870b91574b48c0d9ae07c66fc9302ebdc0c17e584a7d48d557417c6 +size 536788 diff --git a/vlm/train/ODKwX19UjOj/10.png b/vlm/train/ODKwX19UjOj/10.png new file mode 100644 index 0000000000000000000000000000000000000000..fcf525da1d3fa580b7a118dc0bcc480aeac69490 --- /dev/null +++ b/vlm/train/ODKwX19UjOj/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ee77d4339a35114e49a7922060c5d1fc62c6c599e9d6e05e3035a4bd9408f12 +size 561817 diff --git a/vlm/train/ODKwX19UjOj/11.png b/vlm/train/ODKwX19UjOj/11.png new file mode 100644 index 0000000000000000000000000000000000000000..645b78bf630db52889bba8a363861aabce8a209c --- /dev/null +++ b/vlm/train/ODKwX19UjOj/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c38ae373f3fc9fde1c025674f1491e94c404b0dcc4a46e4deca3a6a7e96d0679 +size 536251 diff --git a/vlm/train/ODKwX19UjOj/12.png b/vlm/train/ODKwX19UjOj/12.png new file mode 100644 index 0000000000000000000000000000000000000000..709fec3a15fa7a94075d5b342c505e26e5d09219 --- /dev/null +++ b/vlm/train/ODKwX19UjOj/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a60378072c8e43acd61323edd11e859d04ef7bc5503f7d99ab15d0a0b5e45930 +size 538391 diff --git a/vlm/train/ODKwX19UjOj/13.png b/vlm/train/ODKwX19UjOj/13.png new file mode 100644 index 0000000000000000000000000000000000000000..6232b775181ac6ca65d4695cf486780716d1dd89 --- /dev/null +++ b/vlm/train/ODKwX19UjOj/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:528297e3849b6314d38f561854ea00ef48b4c115c0984789d41a6866201d3f68 +size 195134 diff --git a/vlm/train/ODKwX19UjOj/2.png b/vlm/train/ODKwX19UjOj/2.png new file mode 100644 index 0000000000000000000000000000000000000000..9f95a551cbd83a56d9f58854cf24370c3c050f8a --- /dev/null +++ b/vlm/train/ODKwX19UjOj/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ff0d811d9e72d44d810caddf24e5616b3c6122bf7b036075bab1f57f73247aa +size 616806 diff --git a/vlm/train/ODKwX19UjOj/3.png b/vlm/train/ODKwX19UjOj/3.png new file mode 100644 index 0000000000000000000000000000000000000000..b1646963649f881cea5b843bcce14eb28c8f4c5f --- /dev/null +++ b/vlm/train/ODKwX19UjOj/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da626e035a4b924c2b4894737e75375fd4208bbe56ccbce0b7fdc57108468d41 +size 585687 diff --git a/vlm/train/ODKwX19UjOj/4.png b/vlm/train/ODKwX19UjOj/4.png new file mode 100644 index 0000000000000000000000000000000000000000..b10c5504964bca1a9c58e632b10bd39ba0851e2a --- /dev/null +++ b/vlm/train/ODKwX19UjOj/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bb63c8fac174aba063124a5d1bbe33f988b2686249f2fbdb93f85c1cda612a7 +size 493519 diff --git a/vlm/train/ODKwX19UjOj/5.png b/vlm/train/ODKwX19UjOj/5.png new file mode 100644 index 0000000000000000000000000000000000000000..74d5bfdf45038434c93951d85ff3f1cbaf18f235 --- /dev/null +++ b/vlm/train/ODKwX19UjOj/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da1b703bb91586172883a2dfdca93fcfbc7084472ab809f5d2d1f895aea19479 +size 564303 diff --git a/vlm/train/ODKwX19UjOj/6.png b/vlm/train/ODKwX19UjOj/6.png new file mode 100644 index 0000000000000000000000000000000000000000..6fcf22bcf042503d52a3748c37a0b6dd2df1b7b7 --- /dev/null +++ b/vlm/train/ODKwX19UjOj/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:877a3064cf0d1e6594b15ca0225768a9ba72933b65f8919a63a7b7be53b40f12 +size 740793 diff --git a/vlm/train/ODKwX19UjOj/7.png b/vlm/train/ODKwX19UjOj/7.png new file mode 100644 index 0000000000000000000000000000000000000000..69ea72a88a4720091b95ff5e04bd88215e0afb4f --- /dev/null +++ b/vlm/train/ODKwX19UjOj/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab53427cdf009cc62e1e9f2962d5a616a39e733e06ef59871038a5e2a2a0ea31 +size 707042 diff --git a/vlm/train/ODKwX19UjOj/8.png b/vlm/train/ODKwX19UjOj/8.png new file mode 100644 index 0000000000000000000000000000000000000000..0ab5b1057b9b6711018f6f661bfc07c4ccc734b4 --- /dev/null +++ b/vlm/train/ODKwX19UjOj/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e6f5fddfd2c991e93ec77bf15e233fcf40685404a6f365001df41174d78fa1a +size 546904 diff --git a/vlm/train/ODKwX19UjOj/9.png b/vlm/train/ODKwX19UjOj/9.png new file mode 100644 index 0000000000000000000000000000000000000000..a1279755a804b0ccdca49a5dca8b4c54193712ee --- /dev/null +++ b/vlm/train/ODKwX19UjOj/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:949e6a5bbb065168c079ede23eae17d81984330395232803a310ca735e160cfd +size 578816 diff --git a/vlm/train/S19dR9x0b/0.png b/vlm/train/S19dR9x0b/0.png new file mode 100644 index 0000000000000000000000000000000000000000..cd2f5d9dc2d0f010a1eed2d200f2ac9e442d5ed3 --- /dev/null +++ b/vlm/train/S19dR9x0b/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe3831181e0fa32a8147374b91dde1ac141449592009ab7ebefa6736f97590c2 +size 497449 diff --git a/vlm/train/S19dR9x0b/1.png b/vlm/train/S19dR9x0b/1.png new file mode 100644 index 0000000000000000000000000000000000000000..a7f18d34f0b8e9721db19e31f6ed8a97f2ee8918 --- /dev/null +++ b/vlm/train/S19dR9x0b/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6e81743782b5f6f4afe0f3e33b16333c67bcb96e644087c45e1fb2178cf76f9 +size 594789 diff --git a/vlm/train/S19dR9x0b/10.png b/vlm/train/S19dR9x0b/10.png new file mode 100644 index 0000000000000000000000000000000000000000..48af2174833187040fd3f2d9d3cedf082ee1a40b --- /dev/null +++ b/vlm/train/S19dR9x0b/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a15c359635f3ccf3a0c59310eeea346787f4dd64a3603c1dbc74488c8685932 +size 266541 diff --git a/vlm/train/S19dR9x0b/11.png b/vlm/train/S19dR9x0b/11.png new file mode 100644 index 0000000000000000000000000000000000000000..4f111b3387888924e4912c5d77c2618d5c81e1dc --- /dev/null +++ b/vlm/train/S19dR9x0b/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8fc1aa066702e438dae93b6daea4933ca8f634420f0d66c587d2b1feabf7e37 +size 529797 diff --git a/vlm/train/S19dR9x0b/12.png b/vlm/train/S19dR9x0b/12.png new file mode 100644 index 0000000000000000000000000000000000000000..59c1223fb897d4704d0a15a20776061e31dd6218 --- /dev/null +++ b/vlm/train/S19dR9x0b/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4915fa760548f12b06a8573f779e97debd35f11897dec7e1fb10923269ed066 +size 331072 diff --git a/vlm/train/S19dR9x0b/2.png b/vlm/train/S19dR9x0b/2.png new file mode 100644 index 0000000000000000000000000000000000000000..5d1f396875a2b13b547174846252aca8e6753bdd --- /dev/null +++ b/vlm/train/S19dR9x0b/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e16a154b3caa3202472522c34bc6740d31fdf6e4221e5735bff3b364f0ab8c8c +size 443951 diff --git a/vlm/train/S19dR9x0b/3.png b/vlm/train/S19dR9x0b/3.png new file mode 100644 index 0000000000000000000000000000000000000000..9a03a388cf50bf14d2386b1a8ebc03f59069ffac --- /dev/null +++ b/vlm/train/S19dR9x0b/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dbbd94d90377f9e261e28c5ee109377e01c2c35b45909476910a64c91d1e0e3 +size 405345 diff --git a/vlm/train/S19dR9x0b/4.png b/vlm/train/S19dR9x0b/4.png new file mode 100644 index 0000000000000000000000000000000000000000..fed3ec37b86ead5033bdbf0824a5d752392256e9 --- /dev/null +++ b/vlm/train/S19dR9x0b/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a674bebc74c843452b5ac8a3a2ea341dd0eeb64b921285df101f9b735ae77187 +size 528173 diff --git a/vlm/train/S19dR9x0b/5.png b/vlm/train/S19dR9x0b/5.png new file mode 100644 index 0000000000000000000000000000000000000000..849a0436a89933af4c65e8533d6aadd17498ff21 --- /dev/null +++ b/vlm/train/S19dR9x0b/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a78ec86d1e9400891c4a01d15ef789efc69a1df8cce45147d0d46aac4658e97 +size 456042 diff --git a/vlm/train/S19dR9x0b/6.png b/vlm/train/S19dR9x0b/6.png new file mode 100644 index 0000000000000000000000000000000000000000..d1788ac238f1042374f7ff13b16cf4d48b2dc428 --- /dev/null +++ b/vlm/train/S19dR9x0b/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71335d15624060a28a753d5ebeb7e80c141e306cd1f5f99a53acee79d2944652 +size 472930 diff --git a/vlm/train/S19dR9x0b/7.png b/vlm/train/S19dR9x0b/7.png new file mode 100644 index 0000000000000000000000000000000000000000..ac566e26f8cf0fb11e7f34e1fbd42f1c90a64d3f --- /dev/null +++ b/vlm/train/S19dR9x0b/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bf9cadbc9266d45a609a19b79f5c9111292fe838fe6beff9b1a53800b132321 +size 438574 diff --git a/vlm/train/S19dR9x0b/8.png b/vlm/train/S19dR9x0b/8.png new file mode 100644 index 0000000000000000000000000000000000000000..d4183dc6b5b5e4b21a3fb95e02cff50a190d1765 --- /dev/null +++ b/vlm/train/S19dR9x0b/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6afe1324dfbe5a6cd220fa5b7fc12b070c5d5d347460ea6f4ffe9872a971bdbd +size 560825 diff --git a/vlm/train/S19dR9x0b/9.png b/vlm/train/S19dR9x0b/9.png new file mode 100644 index 0000000000000000000000000000000000000000..bb32484634a5331532e28ce27df7ddecf095f1a6 --- /dev/null +++ b/vlm/train/S19dR9x0b/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4274d9e9ecde71c2c693b48de93226553ef6d82533675f17cc60c68c14ce2882 +size 512996 diff --git a/vlm/train/S1EwLkW0W/0.png b/vlm/train/S1EwLkW0W/0.png new file mode 100644 index 0000000000000000000000000000000000000000..93d2e8345ece2d40278c51fa17ab9a1a2ca98830 --- /dev/null +++ b/vlm/train/S1EwLkW0W/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeef56e4433e1337dab53b93c89c7bb98e4edfe5c4860f538ef3ff46433cedd7 +size 425186 diff --git a/vlm/train/S1EwLkW0W/1.png b/vlm/train/S1EwLkW0W/1.png new file mode 100644 index 0000000000000000000000000000000000000000..be544d82b277e4d05e6192416c7def125766d6c8 --- /dev/null +++ b/vlm/train/S1EwLkW0W/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6187e54a2158d98154cd4aa080be9440cc1e2a0c6ef75cd96ef4af7f00ca2077 +size 425306 diff --git a/vlm/train/S1EwLkW0W/10.png b/vlm/train/S1EwLkW0W/10.png new file mode 100644 index 0000000000000000000000000000000000000000..a3f5eca0c00c8e26eebeb4428749a4de489dae7b --- /dev/null +++ b/vlm/train/S1EwLkW0W/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2958a405867601f3e6dbc064ce8e21f09efd32f9849dd4458207d24a7918e924 +size 458858 diff --git a/vlm/train/S1EwLkW0W/11.png b/vlm/train/S1EwLkW0W/11.png new file mode 100644 index 0000000000000000000000000000000000000000..f42ad8ed072ad6c57004af6ebf84f6a3b0bbd625 --- /dev/null +++ b/vlm/train/S1EwLkW0W/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:998497f150a0a7b06133988e0cc764a7ff23aad743b4a89b10c03d87c1497715 +size 288794 diff --git a/vlm/train/S1EwLkW0W/12.png b/vlm/train/S1EwLkW0W/12.png new file mode 100644 index 0000000000000000000000000000000000000000..420ef40601101a18ffb25fe481de782806cd96b4 --- /dev/null +++ b/vlm/train/S1EwLkW0W/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d99040fd7295694002abc1edb19044179a7574159977b53cc2e3b419ec8dc9ed +size 341534 diff --git a/vlm/train/S1EwLkW0W/13.png b/vlm/train/S1EwLkW0W/13.png new file mode 100644 index 0000000000000000000000000000000000000000..971fc9dc3c9147d1da78e3ecb8fd0e1c12cc96bd --- /dev/null +++ b/vlm/train/S1EwLkW0W/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:558e6b7ed3e6ba13d069d31045a8bc00155b305bffa9c218913cb23c5cab5b1d +size 274701 diff --git a/vlm/train/S1EwLkW0W/14.png b/vlm/train/S1EwLkW0W/14.png new file mode 100644 index 0000000000000000000000000000000000000000..132e251b0e9071a5a1487f4b537de6ca947d2834 --- /dev/null +++ b/vlm/train/S1EwLkW0W/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c270ffecdda50e5e37d057047945037b40084259e5fcbfd419a0724e583917f +size 446232 diff --git a/vlm/train/S1EwLkW0W/15.png b/vlm/train/S1EwLkW0W/15.png new file mode 100644 index 0000000000000000000000000000000000000000..5286ecac24272e77de5a6c2510ea1e4720240231 --- /dev/null +++ b/vlm/train/S1EwLkW0W/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5908c5a2555e823472bcb473022d69ea8f55b85dce4d3cda26834e9c4841f6d +size 372674 diff --git a/vlm/train/S1EwLkW0W/16.png b/vlm/train/S1EwLkW0W/16.png new file mode 100644 index 0000000000000000000000000000000000000000..a462a976fe3c8457fd2a825209a5b47286d4e534 --- /dev/null +++ b/vlm/train/S1EwLkW0W/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fa36bd476691917b500274e1575fed1efad6ee1a64372abee08b67c4ef7c27e +size 303702 diff --git a/vlm/train/S1EwLkW0W/17.png b/vlm/train/S1EwLkW0W/17.png new file mode 100644 index 0000000000000000000000000000000000000000..659ba061dad88121be0320a860fd1f79e514cc2f --- /dev/null +++ b/vlm/train/S1EwLkW0W/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7360b24b0766d0a96ab6b757ae9c09ff7f9b90bbf45349300c2c58e662781087 +size 174020 diff --git a/vlm/train/S1EwLkW0W/2.png b/vlm/train/S1EwLkW0W/2.png new file mode 100644 index 0000000000000000000000000000000000000000..e644b8f11311f122fb009a1af64b5a139527bf02 --- /dev/null +++ b/vlm/train/S1EwLkW0W/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94b071fbbc6fd6c1d4a2a8fae1f9fbce2829c4a2165620590c1bacf198bf6060 +size 453854 diff --git a/vlm/train/S1EwLkW0W/3.png b/vlm/train/S1EwLkW0W/3.png new file mode 100644 index 0000000000000000000000000000000000000000..1dce3f3db1c8c71fc33fba4189261736d44f7ecc --- /dev/null +++ b/vlm/train/S1EwLkW0W/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3ac4367428b7e21a14080c2950d56dc2f74c267d6764cf0629e9bab56cc0b82 +size 495527 diff --git a/vlm/train/S1EwLkW0W/4.png b/vlm/train/S1EwLkW0W/4.png new file mode 100644 index 0000000000000000000000000000000000000000..d9f40dc889377c9091f81206e29aa97bd146dfa0 --- /dev/null +++ b/vlm/train/S1EwLkW0W/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b8651310161fd02c9d29cf365a611f393ed29d1141b8ce226ae1d8c440aa076 +size 458713 diff --git a/vlm/train/S1EwLkW0W/5.png b/vlm/train/S1EwLkW0W/5.png new file mode 100644 index 0000000000000000000000000000000000000000..c5aae550a0d6fc73962ddc729dacc11ff561f908 --- /dev/null +++ b/vlm/train/S1EwLkW0W/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e48d0d6c561373f97354e91f85fddc7348dcaa52b8cd1b09d640060c5de7e7bc +size 494819 diff --git a/vlm/train/S1EwLkW0W/6.png b/vlm/train/S1EwLkW0W/6.png new file mode 100644 index 0000000000000000000000000000000000000000..3263bc292168e95323728ce5137bd597935c145d --- /dev/null +++ b/vlm/train/S1EwLkW0W/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c742974f4b2357fc391429bcc2436e2b84278a2a36247d9a3af23a403098e98 +size 411209 diff --git a/vlm/train/S1EwLkW0W/7.png b/vlm/train/S1EwLkW0W/7.png new file mode 100644 index 0000000000000000000000000000000000000000..ac41481ae2d4483d6841718fbe24453ea715318a --- /dev/null +++ b/vlm/train/S1EwLkW0W/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a849a1bf1a0115435e90448f50652f8ac0a06b0824e072dc5eb5a9265784ada +size 522245 diff --git a/vlm/train/S1EwLkW0W/8.png b/vlm/train/S1EwLkW0W/8.png new file mode 100644 index 0000000000000000000000000000000000000000..cf2781407fe5a4b26d68ee4ec0f1965fc4bfc705 --- /dev/null +++ b/vlm/train/S1EwLkW0W/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1a6e4da42613a4625a278ff8e237e4493ea11ca925c7b6094b9f84e2b3af058 +size 525456 diff --git a/vlm/train/S1EwLkW0W/9.png b/vlm/train/S1EwLkW0W/9.png new file mode 100644 index 0000000000000000000000000000000000000000..0873fb806529e4c9f4b633f7d85e19464998e6fb --- /dev/null +++ b/vlm/train/S1EwLkW0W/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a539ac34d8f994e5bd18c36f70c5fb9727167ee9ea823626f04fee2b971f48fc +size 554616 diff --git a/vlm/train/S1xiOjC9F7/0.png b/vlm/train/S1xiOjC9F7/0.png new file mode 100644 index 0000000000000000000000000000000000000000..956c8cdbec13a3ff7842e5297c8f8bedf2cc37f9 --- /dev/null +++ b/vlm/train/S1xiOjC9F7/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffb966d660ef8cb18fb45c210a0f89d48d2d07ba73454e75eeaab164c3fa8ed6 +size 478250 diff --git a/vlm/train/S1xiOjC9F7/1.png b/vlm/train/S1xiOjC9F7/1.png new file mode 100644 index 0000000000000000000000000000000000000000..77a4e5f49a37bac6265951a60ca8d5ae7a94c232 --- /dev/null +++ b/vlm/train/S1xiOjC9F7/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c42f83ddb8e00c4566e4d2d48ae1ac70710addfd8e80840e42ec6a15db2f912 +size 658854 diff --git a/vlm/train/S1xiOjC9F7/11.png b/vlm/train/S1xiOjC9F7/11.png new file mode 100644 index 0000000000000000000000000000000000000000..06db0a935c79bdd50601b8279b3a54f9781a8495 --- /dev/null +++ b/vlm/train/S1xiOjC9F7/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7971578a1961dda3d5aeaba1d04f9ce8f0ad40e15d66f81fee9def40da4517ee +size 571077 diff --git a/vlm/train/S1xiOjC9F7/12.png b/vlm/train/S1xiOjC9F7/12.png new file mode 100644 index 0000000000000000000000000000000000000000..fe4d27730080e5f2d4c29b77c954d6cc4af50f12 --- /dev/null +++ b/vlm/train/S1xiOjC9F7/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe5e844817f7db329886c9742ea6214a46ebfc9d839f5ff0c1a4024c42223aa8 +size 177694 diff --git a/vlm/train/S1xiOjC9F7/13.png b/vlm/train/S1xiOjC9F7/13.png new file mode 100644 index 0000000000000000000000000000000000000000..0208552a74931fc64159677b9fb0786392a1a70f --- /dev/null +++ b/vlm/train/S1xiOjC9F7/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cd1e2cbf0a2d620ec06650283a9409b947d864648f89114283ca661c8babf1c +size 514102 diff --git a/vlm/train/S1xiOjC9F7/14.png b/vlm/train/S1xiOjC9F7/14.png new file mode 100644 index 0000000000000000000000000000000000000000..3987acfd360b986ca25268aa6a54ec0382796b9e --- /dev/null +++ b/vlm/train/S1xiOjC9F7/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cbeaa3e145f32f6856544ea484aa8069a244c9ca1477530bd348010b5828767 +size 546999 diff --git a/vlm/train/S1xiOjC9F7/15.png b/vlm/train/S1xiOjC9F7/15.png new file mode 100644 index 0000000000000000000000000000000000000000..bc2c9dca5115090d07fa149db44fc6cb16afce55 --- /dev/null +++ b/vlm/train/S1xiOjC9F7/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3eb62c3df92c243213683b05593c6f2ce8d478973564be13390e46118c0f882 +size 349124 diff --git a/vlm/train/S1xiOjC9F7/16.png b/vlm/train/S1xiOjC9F7/16.png new file mode 100644 index 0000000000000000000000000000000000000000..2d3a2dddc5c657855b6152097075801376caa73d --- /dev/null +++ b/vlm/train/S1xiOjC9F7/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8300706445229ce084b2d63e5c7d4a70b421b9d1b7935410c23f2b93b5a1570 +size 187714 diff --git a/vlm/train/S1xiOjC9F7/17.png b/vlm/train/S1xiOjC9F7/17.png new file mode 100644 index 0000000000000000000000000000000000000000..1917326539d84f8e91aa34ed0345a75895507b30 --- /dev/null +++ b/vlm/train/S1xiOjC9F7/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca12d0af0e2ba393c849d201fee8ed813b0ca6d2408ce0ae80fc972fd121a30e +size 532625 diff --git a/vlm/train/S1xiOjC9F7/18.png b/vlm/train/S1xiOjC9F7/18.png new file mode 100644 index 0000000000000000000000000000000000000000..ab0a8f3540529d604b44be55aeeaa683c783cc0f --- /dev/null +++ b/vlm/train/S1xiOjC9F7/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f9b644c0b01b3fe0d08828cad69ef758f01222dafc541ea068b35ba93323cf4 +size 839241 diff --git a/vlm/train/S1xiOjC9F7/19.png b/vlm/train/S1xiOjC9F7/19.png new file mode 100644 index 0000000000000000000000000000000000000000..76ef85b7346e03826deaa170a568b760c9426840 --- /dev/null +++ b/vlm/train/S1xiOjC9F7/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1657526677326a584fc0f2fc0c35c9d6a2de13e4ce619aae3f801de33162892 +size 920585 diff --git a/vlm/train/S1xiOjC9F7/2.png b/vlm/train/S1xiOjC9F7/2.png new file mode 100644 index 0000000000000000000000000000000000000000..edaad35465d4e1d4762ba44807d7b71aca2a243c --- /dev/null +++ b/vlm/train/S1xiOjC9F7/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ead5f74b16e4758de9c4a963873c3fc58198205528de3abbce022802192193b8 +size 599108 diff --git a/vlm/train/S1xiOjC9F7/4.png b/vlm/train/S1xiOjC9F7/4.png new file mode 100644 index 0000000000000000000000000000000000000000..e8464cc5ef44de8d9e7c322c8d20abb14a496c8d --- /dev/null +++ b/vlm/train/S1xiOjC9F7/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ea1263f15090093ab5a4712ceaca0c7ceb421f5b076904399c0a0db42801f04 +size 484952 diff --git a/vlm/train/S1xiOjC9F7/5.png b/vlm/train/S1xiOjC9F7/5.png new file mode 100644 index 0000000000000000000000000000000000000000..06772e7a8a04f1cc5433684a5222ab1beea79807 --- /dev/null +++ b/vlm/train/S1xiOjC9F7/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5159b193e19c10a6190baf38844003eb2d6d55b1068f7b1ec5035144d5c16d4 +size 591865 diff --git a/vlm/train/S1xiOjC9F7/7.png b/vlm/train/S1xiOjC9F7/7.png new file mode 100644 index 0000000000000000000000000000000000000000..5a19b617c21cdf151f28c9155efeaae1192ddd2c --- /dev/null +++ b/vlm/train/S1xiOjC9F7/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:389a1db54e433ce16d9e808dd0b413d3d45c18119d2694d8ccd1a93afb7714da +size 559505 diff --git a/vlm/train/S1xiOjC9F7/8.png b/vlm/train/S1xiOjC9F7/8.png new file mode 100644 index 0000000000000000000000000000000000000000..09a37fe37ad0a63022ea62ef331ee322f165bbb8 --- /dev/null +++ b/vlm/train/S1xiOjC9F7/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1481de280be11e5cb483aa6678bd28db4778e2c2126aa3e154ced898120ac3c7 +size 537895 diff --git a/vlm/train/S1xiOjC9F7/9.png b/vlm/train/S1xiOjC9F7/9.png new file mode 100644 index 0000000000000000000000000000000000000000..71ee3a89b077a70715d7a606c87d263e3af6d880 --- /dev/null +++ b/vlm/train/S1xiOjC9F7/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2985f4583da0a683cf934b69f51da3d8738b09e3e3160e1135ef889f203a76e2 +size 564713 diff --git a/vlm/train/SJzvDjAcK7/0.png b/vlm/train/SJzvDjAcK7/0.png new file mode 100644 index 0000000000000000000000000000000000000000..4da3826437b957b1cfc08c99f76e68d78f403e91 --- /dev/null +++ b/vlm/train/SJzvDjAcK7/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc4c7e5b65f4fe7db3f4e43af4a2fc2206932091ef87ed0485179a47a9e67fc5 +size 489134 diff --git a/vlm/train/SJzvDjAcK7/1.png b/vlm/train/SJzvDjAcK7/1.png new file mode 100644 index 0000000000000000000000000000000000000000..b9be29c0661712cff9eede53634d1b1f59114718 --- /dev/null +++ b/vlm/train/SJzvDjAcK7/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44cb87f95ea3edf8e3189c7f64c142610e4d14479d4eda84fcf534683b15f023 +size 602679 diff --git a/vlm/train/SJzvDjAcK7/10.png b/vlm/train/SJzvDjAcK7/10.png new file mode 100644 index 0000000000000000000000000000000000000000..c39b42f68f8395414e391e9af761cc2c91cedfc1 --- /dev/null +++ b/vlm/train/SJzvDjAcK7/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6061ed822bb1a80cf67c54c2af83a779223db60c9411a39dac017893f3ea067c +size 545575 diff --git a/vlm/train/SJzvDjAcK7/11.png b/vlm/train/SJzvDjAcK7/11.png new file mode 100644 index 0000000000000000000000000000000000000000..1b1d4cd497dee901c33d95b4091d5169b6eae1fd --- /dev/null +++ b/vlm/train/SJzvDjAcK7/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae29e998e0527f618d448f032328e7453761ea3f1c80bde8c91b9805e523a86d +size 376079 diff --git a/vlm/train/SJzvDjAcK7/12.png b/vlm/train/SJzvDjAcK7/12.png new file mode 100644 index 0000000000000000000000000000000000000000..774d78f1a8a0663fb1bbd5abddd303dddbeb1266 --- /dev/null +++ b/vlm/train/SJzvDjAcK7/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c03e139617853bd244811137d10b7e64398bd863d8b339e52c9cc21092377cb5 +size 404246 diff --git a/vlm/train/SJzvDjAcK7/13.png b/vlm/train/SJzvDjAcK7/13.png new file mode 100644 index 0000000000000000000000000000000000000000..b57511e83d2bcd21f82f539444fb07145cca63a8 --- /dev/null +++ b/vlm/train/SJzvDjAcK7/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa62d938fb910bd0645c5e097abc1fb08d0545414f0faf2560098488310267a4 +size 283412 diff --git a/vlm/train/SJzvDjAcK7/14.png b/vlm/train/SJzvDjAcK7/14.png new file mode 100644 index 0000000000000000000000000000000000000000..572c20953835f900cd6fc8e9b8716366a3c90cd3 --- /dev/null +++ b/vlm/train/SJzvDjAcK7/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:406ecd6e120097d6fdcfc071233188333f7be732ff451e85bc22412e58fafebf +size 465233 diff --git a/vlm/train/SJzvDjAcK7/15.png b/vlm/train/SJzvDjAcK7/15.png new file mode 100644 index 0000000000000000000000000000000000000000..dcd013aae2a9bacfee67a99b8d0d984e1dcba60a --- /dev/null +++ b/vlm/train/SJzvDjAcK7/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54200dc283e997fa2c70da89ebab4e730778f9f55fd4a9a82a8488d41148f66f +size 334140 diff --git a/vlm/train/SJzvDjAcK7/16.png b/vlm/train/SJzvDjAcK7/16.png new file mode 100644 index 0000000000000000000000000000000000000000..493c8d0e36301b07e34aafbd86ec93d51b8d3eab --- /dev/null +++ b/vlm/train/SJzvDjAcK7/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6561ca5670daec7bd5b2a417638156a71f015824112bac9c57a5c0dc10ac7201 +size 150635 diff --git a/vlm/train/SJzvDjAcK7/17.png b/vlm/train/SJzvDjAcK7/17.png new file mode 100644 index 0000000000000000000000000000000000000000..cac29b184605afc54ae39fb7ea44c12120fef11f --- /dev/null +++ b/vlm/train/SJzvDjAcK7/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0134eec97351054dc89d9296bb4820e37c9cde64ab409237996c432917510609 +size 399010 diff --git a/vlm/train/SJzvDjAcK7/18.png b/vlm/train/SJzvDjAcK7/18.png new file mode 100644 index 0000000000000000000000000000000000000000..9030ba3eefa2a7d43a1b7bd31b6e73e6f2945f09 --- /dev/null +++ b/vlm/train/SJzvDjAcK7/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe2030c303390778b0eb6695ea77acf49b6c8ed5d7e00cce61ac92bb6a4f489a +size 378068 diff --git a/vlm/train/SJzvDjAcK7/19.png b/vlm/train/SJzvDjAcK7/19.png new file mode 100644 index 0000000000000000000000000000000000000000..9e46ee5f958ffd1c47c4877204e2257671eeefab --- /dev/null +++ b/vlm/train/SJzvDjAcK7/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac779a428b95c7a8a93366950a6d7588da5738e66aa8ff2563e6cf03997220f5 +size 241518 diff --git a/vlm/train/SJzvDjAcK7/2.png b/vlm/train/SJzvDjAcK7/2.png new file mode 100644 index 0000000000000000000000000000000000000000..304c337fb258e5d91ae0cf4b2c672df11ad1fa6f --- /dev/null +++ b/vlm/train/SJzvDjAcK7/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:420a4953984b86bbd319057eb333b2e10402b5aec85c4a45951747945209b9a9 +size 584614 diff --git a/vlm/train/SJzvDjAcK7/3.png b/vlm/train/SJzvDjAcK7/3.png new file mode 100644 index 0000000000000000000000000000000000000000..f97ddb8df5b049462663f33d3c80e8cd5d766c13 --- /dev/null +++ b/vlm/train/SJzvDjAcK7/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a93ac1ab00e1f11b46165e55b7d51262ba6e1a4ae61b2a96fcfc9a29e2827f2 +size 578534 diff --git a/vlm/train/SJzvDjAcK7/4.png b/vlm/train/SJzvDjAcK7/4.png new file mode 100644 index 0000000000000000000000000000000000000000..4b2a36386e1e7370346b19d996f63a477d9bcd50 --- /dev/null +++ b/vlm/train/SJzvDjAcK7/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d97eb28f62e819b26455322e7a22161de1633ee42c9bec9ef71e758080fc2b1 +size 582252 diff --git a/vlm/train/SJzvDjAcK7/5.png b/vlm/train/SJzvDjAcK7/5.png new file mode 100644 index 0000000000000000000000000000000000000000..9eead27133df9769510359a50b36a10567d9f959 --- /dev/null +++ b/vlm/train/SJzvDjAcK7/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09e3dd5974dd45b32cd8478a3f365b3843bf78ab1c4924a9c827cbbab343c985 +size 509479 diff --git a/vlm/train/SJzvDjAcK7/6.png b/vlm/train/SJzvDjAcK7/6.png new file mode 100644 index 0000000000000000000000000000000000000000..a071426f328f3194b59230717ad945ed2666d1ac --- /dev/null +++ b/vlm/train/SJzvDjAcK7/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c08ad4d6b6e63bacddc729f4515b33975efe90099743b8347a82b5560dd6784 +size 544766 diff --git a/vlm/train/SJzvDjAcK7/7.png b/vlm/train/SJzvDjAcK7/7.png new file mode 100644 index 0000000000000000000000000000000000000000..09ec3752846f7dae2f0cd4a8730b49b9f700c3ea --- /dev/null +++ b/vlm/train/SJzvDjAcK7/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:873dae4214f3edd4b56ea41f3556d31394ab98963eea6c4b671e58bed3741a4a +size 648395 diff --git a/vlm/train/SJzvDjAcK7/8.png b/vlm/train/SJzvDjAcK7/8.png new file mode 100644 index 0000000000000000000000000000000000000000..c549c941eae42a0f17ecf7272953db97303c541c --- /dev/null +++ b/vlm/train/SJzvDjAcK7/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c06de393fd308b3a71959da334397b1a9dc27db284b40de0f251e10bc7d3a292 +size 522344 diff --git a/vlm/train/SJzvDjAcK7/9.png b/vlm/train/SJzvDjAcK7/9.png new file mode 100644 index 0000000000000000000000000000000000000000..229aabcfe34624e34a68f02803b2ffe21804ef7f --- /dev/null +++ b/vlm/train/SJzvDjAcK7/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7a6466a48c1e6bd4f3734a1104108fbc3e4a216a8159e5b7b75f697711b6899 +size 572740 diff --git a/vlm/train/SkeK3s0qKQ/0.png b/vlm/train/SkeK3s0qKQ/0.png new file mode 100644 index 0000000000000000000000000000000000000000..7e5eb3ecab42442d11f1b009ffaeb3bc7ac6da21 --- /dev/null +++ b/vlm/train/SkeK3s0qKQ/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf7366de959a1f7a1ecb8aea82123235ed89d78baa7d14a18adedf7eac22c27a +size 515920 diff --git a/vlm/train/SkeK3s0qKQ/1.png b/vlm/train/SkeK3s0qKQ/1.png new file mode 100644 index 0000000000000000000000000000000000000000..a7718839cc57860c272db6d3633e43faddde5db4 --- /dev/null +++ b/vlm/train/SkeK3s0qKQ/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5b445163adcab5f266c5031cea524994120a7d3078503564cb066fceb37bcf4 +size 623536 diff --git a/vlm/train/SkeK3s0qKQ/10.png b/vlm/train/SkeK3s0qKQ/10.png new file mode 100644 index 0000000000000000000000000000000000000000..ae0fed728d0c9455df223e14b51b61175ec976d3 --- /dev/null +++ b/vlm/train/SkeK3s0qKQ/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70bcca12670aaadccb314a0196f5caa2351520bee89386f61d04b5cc8678f8e0 +size 564143 diff --git a/vlm/train/SkeK3s0qKQ/11.png b/vlm/train/SkeK3s0qKQ/11.png new file mode 100644 index 0000000000000000000000000000000000000000..1641ac05cfb74478f08df48504c3cd90e7f9a543 --- /dev/null +++ b/vlm/train/SkeK3s0qKQ/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e239dc619c46639520432f3b1fb829bfc5a85c028bdef4279cf97b3d11ef661 +size 380475 diff --git a/vlm/train/SkeK3s0qKQ/12.png b/vlm/train/SkeK3s0qKQ/12.png new file mode 100644 index 0000000000000000000000000000000000000000..aac6b3a9f049792496f66852a770d4aeda5abe0d --- /dev/null +++ b/vlm/train/SkeK3s0qKQ/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:835f6b39801dc309b89801e15f84637297b2a473c6b8fbe046921bf73d8e0004 +size 518534 diff --git a/vlm/train/SkeK3s0qKQ/13.png b/vlm/train/SkeK3s0qKQ/13.png new file mode 100644 index 0000000000000000000000000000000000000000..684a30096c6f99de2d1406c00543583c7d1687f7 --- /dev/null +++ b/vlm/train/SkeK3s0qKQ/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca1c3e3a6ae9969256f1855448b3962598cf35f6ca354f8c8f42e7fc94345c74 +size 434342 diff --git a/vlm/train/SkeK3s0qKQ/14.png b/vlm/train/SkeK3s0qKQ/14.png new file mode 100644 index 0000000000000000000000000000000000000000..1c7da2752481eeb72f4ca7964ebbfe685b47fafa --- /dev/null +++ b/vlm/train/SkeK3s0qKQ/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aae8196fb672e7323dbfcab54a4134eb1b61aed638b6d032393446bfb24d137 +size 330908 diff --git a/vlm/train/SkeK3s0qKQ/15.png b/vlm/train/SkeK3s0qKQ/15.png new file mode 100644 index 0000000000000000000000000000000000000000..057b0380a5d173ff17dea3f90d715ceb23796cb1 --- /dev/null +++ b/vlm/train/SkeK3s0qKQ/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f553d2b7eccd7b8dcf8c55bb578ad859c844ce5eceb064f132ab67efbb3eaf9 +size 420921 diff --git a/vlm/train/SkeK3s0qKQ/16.png b/vlm/train/SkeK3s0qKQ/16.png new file mode 100644 index 0000000000000000000000000000000000000000..7e2f120c605717fa60c4c3e1724625e7084b8cd3 --- /dev/null +++ b/vlm/train/SkeK3s0qKQ/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3f0faffcdfc8b1a82adc2deb1ca19463993d2c9a5326d82def3cd07b93459be +size 352957 diff --git a/vlm/train/SkeK3s0qKQ/17.png b/vlm/train/SkeK3s0qKQ/17.png new file mode 100644 index 0000000000000000000000000000000000000000..fad5e57f46a777f547f73f7dae7299a8f5c988b6 --- /dev/null +++ b/vlm/train/SkeK3s0qKQ/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfddfe5f049412e4e03f6ca839ce04bed8392089eb22ea3e787e91d9a2d8fdc1 +size 557221 diff --git a/vlm/train/SkeK3s0qKQ/18.png b/vlm/train/SkeK3s0qKQ/18.png new file mode 100644 index 0000000000000000000000000000000000000000..c8d695f1611c093379dd52a134e36d8314d557d7 --- /dev/null +++ b/vlm/train/SkeK3s0qKQ/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90eea1d5d7d114a725746ccbd089e75985e266b2a631223fcd67a5877baf2396 +size 447404 diff --git a/vlm/train/SkeK3s0qKQ/19.png b/vlm/train/SkeK3s0qKQ/19.png new file mode 100644 index 0000000000000000000000000000000000000000..0730a92d518960167b02f4b30e0de4cb63c8f263 --- /dev/null +++ b/vlm/train/SkeK3s0qKQ/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b0758b3793a29136dcc535ead0d71b0510d69f01a9768678233787ecab8d10 +size 209416 diff --git a/vlm/train/SkeK3s0qKQ/2.png b/vlm/train/SkeK3s0qKQ/2.png new file mode 100644 index 0000000000000000000000000000000000000000..28583275dc6e9ae234ce9036c26b1fd4101928ab --- /dev/null +++ b/vlm/train/SkeK3s0qKQ/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0ca333af8e9491d3509e2e5a8837dc828fb3886919ed59c87c814467211ed95 +size 527379 diff --git a/vlm/train/SkeK3s0qKQ/3.png b/vlm/train/SkeK3s0qKQ/3.png new file mode 100644 index 0000000000000000000000000000000000000000..33cf18c326639a75c4750fcfcc18b2afc93d4314 --- /dev/null +++ b/vlm/train/SkeK3s0qKQ/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f08ff1c8c6aa1279db642428dde400b39c4700f2aeeb74e48cffde9a21ecb240 +size 475806 diff --git a/vlm/train/SkeK3s0qKQ/4.png b/vlm/train/SkeK3s0qKQ/4.png new file mode 100644 index 0000000000000000000000000000000000000000..e20533cf3a8cd6f2f0a8da5e1c0587b6fc7addf2 --- /dev/null +++ b/vlm/train/SkeK3s0qKQ/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5f2621966d1f458e7169ea4d42d33e90746079fc87c719b351a3dcf2499e1ed +size 710021 diff --git a/vlm/train/SkeK3s0qKQ/5.png b/vlm/train/SkeK3s0qKQ/5.png new file mode 100644 index 0000000000000000000000000000000000000000..d0a7a25184dd6d109d1aeab4da0fa505c29ae41d --- /dev/null +++ b/vlm/train/SkeK3s0qKQ/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c5d55c61124883a5916ee29d4ca2505a383f2400d7ccb991762f6b2ca80037b +size 619271 diff --git a/vlm/train/SkeK3s0qKQ/6.png b/vlm/train/SkeK3s0qKQ/6.png new file mode 100644 index 0000000000000000000000000000000000000000..636fde028cf82d9b661dc085909a29fa42ae9a3e --- /dev/null +++ b/vlm/train/SkeK3s0qKQ/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57646a4f95196b1bb1e5383ba4c34f589dcfb9b9f78f9c0ec7a21a80d68af269 +size 614113 diff --git a/vlm/train/SkeK3s0qKQ/7.png b/vlm/train/SkeK3s0qKQ/7.png new file mode 100644 index 0000000000000000000000000000000000000000..d1ca2f00ab3e79799ee0263056dfc7baaa023bde --- /dev/null +++ b/vlm/train/SkeK3s0qKQ/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69e65071bc8b662e094af6d112daf603dbb08d5c99e35f5ee52edbb2dcbc9fb6 +size 841349 diff --git a/vlm/train/SkeK3s0qKQ/8.png b/vlm/train/SkeK3s0qKQ/8.png new file mode 100644 index 0000000000000000000000000000000000000000..f22877193d485f1bdcecc219a63fc885e87d1b4d --- /dev/null +++ b/vlm/train/SkeK3s0qKQ/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46dbf2dfcca155b06035960a99f06508d191733190fb394c2b6661ab3dab31a6 +size 583855 diff --git a/vlm/train/SkeK3s0qKQ/9.png b/vlm/train/SkeK3s0qKQ/9.png new file mode 100644 index 0000000000000000000000000000000000000000..c41a748afba07844089770ed085dbe4bbb263249 --- /dev/null +++ b/vlm/train/SkeK3s0qKQ/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90328a30de9dcf289e03c99f5f9b49620c4c070dd97fde0dcb92ca46c5c25ead +size 651463 diff --git a/vlm/train/SnONpXZ_uQ_/4.png b/vlm/train/SnONpXZ_uQ_/4.png new file mode 100644 index 0000000000000000000000000000000000000000..ec5f9075ccb3610368aeaf9d6e5d6a9c1e170d78 --- /dev/null +++ b/vlm/train/SnONpXZ_uQ_/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2c1ab80e9e521184ea6f1b200d3dba3940de46061cca5a1bd04012cd9560529 +size 478176 diff --git a/vlm/train/SnONpXZ_uQ_/8.png b/vlm/train/SnONpXZ_uQ_/8.png new file mode 100644 index 0000000000000000000000000000000000000000..d9789b0dd41008964c49a1c0563206d9ee426019 --- /dev/null +++ b/vlm/train/SnONpXZ_uQ_/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:026b26ed3db1b8ab1fb0916723fe7901473133c51c00e71aa1bf537ada9edbab +size 386742 diff --git a/vlm/train/SyZI0GWCZ/0.png b/vlm/train/SyZI0GWCZ/0.png new file mode 100644 index 0000000000000000000000000000000000000000..5b0558cc1504646dfd8e04b636174ff05f90f3b4 --- /dev/null +++ b/vlm/train/SyZI0GWCZ/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3fe2cf3f252e22520a1426795688aca56c8d94c60f9e877432d048ca130187d +size 481814 diff --git a/vlm/train/SyZI0GWCZ/1.png b/vlm/train/SyZI0GWCZ/1.png new file mode 100644 index 0000000000000000000000000000000000000000..d42c9a15eee76481e0f355212486a57aa3fa16c8 --- /dev/null +++ b/vlm/train/SyZI0GWCZ/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a5e3acd353b806a784b76ec469d339e481ebdd8045c3ddbeafe1c4f478f9b39 +size 585135 diff --git a/vlm/train/SyZI0GWCZ/10.png b/vlm/train/SyZI0GWCZ/10.png new file mode 100644 index 0000000000000000000000000000000000000000..72b23564ae49b9eb734516dc741cf41e756b167a --- /dev/null +++ b/vlm/train/SyZI0GWCZ/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfc2ddaca07c7795f54a510fb598c59468c488c877f27c8ee6459fc68eaee3e0 +size 553773 diff --git a/vlm/train/SyZI0GWCZ/11.png b/vlm/train/SyZI0GWCZ/11.png new file mode 100644 index 0000000000000000000000000000000000000000..02f5e42ca6159194dd3029ec7f681cbf0d2ba28f --- /dev/null +++ b/vlm/train/SyZI0GWCZ/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed12819cc62b429ada8b817f1bd1c6838a76fc88c530890e0a7cdc2eb469b381 +size 604289 diff --git a/vlm/train/SyZI0GWCZ/2.png b/vlm/train/SyZI0GWCZ/2.png new file mode 100644 index 0000000000000000000000000000000000000000..b7b3028f74f8d93ca219f011191d63f1b5e699a5 --- /dev/null +++ b/vlm/train/SyZI0GWCZ/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f29a5a6044bdee41296d191c6d4ce20a9bcc89aa9d33b0e2940b994105d10724 +size 521707 diff --git a/vlm/train/SyZI0GWCZ/3.png b/vlm/train/SyZI0GWCZ/3.png new file mode 100644 index 0000000000000000000000000000000000000000..1e7eca422253d4f3208ac3c4f9271a724ff3a7c5 --- /dev/null +++ b/vlm/train/SyZI0GWCZ/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8754f946fa23c1a8eca9c7bec8c00df7b70fc81bd5fe9df7b588727824ac4a3f +size 420763 diff --git a/vlm/train/SyZI0GWCZ/4.png b/vlm/train/SyZI0GWCZ/4.png new file mode 100644 index 0000000000000000000000000000000000000000..1c5da13d716389db575993cd44890a7aa7e8301a --- /dev/null +++ b/vlm/train/SyZI0GWCZ/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce6a6dcea3a7811dfbfdfbab6314af9bd4bcb786091171a010f9e83242a629fc +size 516127 diff --git a/vlm/train/SyZI0GWCZ/5.png b/vlm/train/SyZI0GWCZ/5.png new file mode 100644 index 0000000000000000000000000000000000000000..d38599a7d9c9ed2aa7d43eb2046d23fe1594a850 --- /dev/null +++ b/vlm/train/SyZI0GWCZ/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e065e4ae0bd5632043682e910958c9d22392d9cdf4918d62d17bd2a2971bd4c +size 519875 diff --git a/vlm/train/SyZI0GWCZ/6.png b/vlm/train/SyZI0GWCZ/6.png new file mode 100644 index 0000000000000000000000000000000000000000..00fbad5c4d6f8e650db647fa96a3e1b6ef580057 --- /dev/null +++ b/vlm/train/SyZI0GWCZ/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d23bd69ebfee119d0454c7f2b1092aec7f0fa7b32f60ea4a874ccd8287cf2d50 +size 1013884 diff --git a/vlm/train/SyZI0GWCZ/7.png b/vlm/train/SyZI0GWCZ/7.png new file mode 100644 index 0000000000000000000000000000000000000000..9a1b8b4194784ec7506a189c7a4c46c56ce23aaf --- /dev/null +++ b/vlm/train/SyZI0GWCZ/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0b67ab02a448304f85efbe53f3c369fc9ce1401098df05d30afeeaa1f272ecf +size 906052 diff --git a/vlm/train/SyZI0GWCZ/8.png b/vlm/train/SyZI0GWCZ/8.png new file mode 100644 index 0000000000000000000000000000000000000000..0163cd692966fc28aaf597d5989e079d194d45ca --- /dev/null +++ b/vlm/train/SyZI0GWCZ/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06dcc4129d5e3ce59346b0cef20bf391451090b60802e8b274f2c95478c74651 +size 471615 diff --git a/vlm/train/SyZI0GWCZ/9.png b/vlm/train/SyZI0GWCZ/9.png new file mode 100644 index 0000000000000000000000000000000000000000..f2b77d1ee49ff77b6faa3a92723abdfb38d4cac4 --- /dev/null +++ b/vlm/train/SyZI0GWCZ/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f02edefd918aaef2c40a9a3aeb1e47ad8aed0c9ca845ce4a979cc6ead0d112f +size 734659 diff --git a/vlm/train/WEHSlH5mOk/0.png b/vlm/train/WEHSlH5mOk/0.png new file mode 100644 index 0000000000000000000000000000000000000000..0205e9dba46906c255d061633b29bcfa790e9da5 --- /dev/null +++ b/vlm/train/WEHSlH5mOk/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c6dc9718d184fe1ac1ab92704f8b783b92b17aaf2319a879c89d8d337f8b19b +size 442537 diff --git a/vlm/train/WEHSlH5mOk/1.png b/vlm/train/WEHSlH5mOk/1.png new file mode 100644 index 0000000000000000000000000000000000000000..4ca2bf544db7dd759926483cd46ac3bae66c53aa --- /dev/null +++ b/vlm/train/WEHSlH5mOk/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc1beeb0329f619e64449a81dbd69cae8fba7c5ce7907bc91969e57aed607a69 +size 564337 diff --git a/vlm/train/WEHSlH5mOk/10.png b/vlm/train/WEHSlH5mOk/10.png new file mode 100644 index 0000000000000000000000000000000000000000..6745e7abf9cdc40a46dd2d9b8e34f8c07649a7eb --- /dev/null +++ b/vlm/train/WEHSlH5mOk/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:930283ff4dbd4c19b3f784a3e589daca973f165f62c3d015498edfa34f362f4c +size 442897 diff --git a/vlm/train/WEHSlH5mOk/11.png b/vlm/train/WEHSlH5mOk/11.png new file mode 100644 index 0000000000000000000000000000000000000000..81a6eab4cd9184f77504423a5f03601e36d1fc57 --- /dev/null +++ b/vlm/train/WEHSlH5mOk/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92a81c7290642a8c018fad8d9438acc8a561be4f35de2a0e9168e90b90c6a622 +size 503817 diff --git a/vlm/train/WEHSlH5mOk/12.png b/vlm/train/WEHSlH5mOk/12.png new file mode 100644 index 0000000000000000000000000000000000000000..9571b841c71af2fbea6a7888984dbb5a6fc7f969 --- /dev/null +++ b/vlm/train/WEHSlH5mOk/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13f2aab72711c6d76a93b47324c859124e0dd3f95621f76c60e15333982f58cf +size 897387 diff --git a/vlm/train/WEHSlH5mOk/13.png b/vlm/train/WEHSlH5mOk/13.png new file mode 100644 index 0000000000000000000000000000000000000000..28f4539e4d6bf949e6407302326b5bcdd9e183bf --- /dev/null +++ b/vlm/train/WEHSlH5mOk/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d7fa86b963f2a91941fb4eabe04201dc54eeb1764c6294ec47bed2f77dd93da +size 406803 diff --git a/vlm/train/WEHSlH5mOk/2.png b/vlm/train/WEHSlH5mOk/2.png new file mode 100644 index 0000000000000000000000000000000000000000..26c3b676058dae9d360ccaeea04ec97fcf53d193 --- /dev/null +++ b/vlm/train/WEHSlH5mOk/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4be0282397b0c6a1561d1cada5624365a49d91f4f64dca62e0b1e6a742bc4c6e +size 581803 diff --git a/vlm/train/WEHSlH5mOk/3.png b/vlm/train/WEHSlH5mOk/3.png new file mode 100644 index 0000000000000000000000000000000000000000..62c5e85f37cb4fb7035225438b4600bedd26736e --- /dev/null +++ b/vlm/train/WEHSlH5mOk/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdb902d41d274484ec3e4a64e94c5c732497eefea2b6e7e025a7a557038ca2bd +size 463628 diff --git a/vlm/train/WEHSlH5mOk/4.png b/vlm/train/WEHSlH5mOk/4.png new file mode 100644 index 0000000000000000000000000000000000000000..50cdbabea31e07b6ea03b53b6250bcc665470f01 --- /dev/null +++ b/vlm/train/WEHSlH5mOk/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6661121382e110eafa2b78948c9f9634d081d43a4f824a44c3bb077c889f4ca +size 520601 diff --git a/vlm/train/WEHSlH5mOk/5.png b/vlm/train/WEHSlH5mOk/5.png new file mode 100644 index 0000000000000000000000000000000000000000..d824696e6f3eb1e17428a077f90a36b516f9af4a --- /dev/null +++ b/vlm/train/WEHSlH5mOk/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b93491730da4c7ee2fd0ecc6afc8f45789b225cef3d535f696d0eb28026c0d6 +size 478007 diff --git a/vlm/train/WEHSlH5mOk/6.png b/vlm/train/WEHSlH5mOk/6.png new file mode 100644 index 0000000000000000000000000000000000000000..82b709bba69b086a449451b898c56711072cafc7 --- /dev/null +++ b/vlm/train/WEHSlH5mOk/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:154a857e27c810f43db134e6cd1d9fab9f50e532a8c9968376cd0fdb4334aa48 +size 548935 diff --git a/vlm/train/WEHSlH5mOk/7.png b/vlm/train/WEHSlH5mOk/7.png new file mode 100644 index 0000000000000000000000000000000000000000..01e2ee4a2da04dc525715c134a4045a7c11fa167 --- /dev/null +++ b/vlm/train/WEHSlH5mOk/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b09781d5518b458c6442e381759eb0f3ac53769dfb2fd336eeebafd57de203c4 +size 485209 diff --git a/vlm/train/WEHSlH5mOk/8.png b/vlm/train/WEHSlH5mOk/8.png new file mode 100644 index 0000000000000000000000000000000000000000..2208e25ddcaadfd0980b976af7a9843533ac23a4 --- /dev/null +++ b/vlm/train/WEHSlH5mOk/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5d9c981936609e3eaeee5baff78ce54bbc9adf5b7882e639e4b78c26ce546cb +size 498855 diff --git a/vlm/train/WEHSlH5mOk/9.png b/vlm/train/WEHSlH5mOk/9.png new file mode 100644 index 0000000000000000000000000000000000000000..7f100e9c59c480636e7eda574ee732dd0ffbe9be --- /dev/null +++ b/vlm/train/WEHSlH5mOk/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f239e97101cfc7bc05e6fc819b864414d6fa87a591ed1abd609e8be3bfd3954 +size 490894 diff --git a/vlm/train/b83ibRX55T/0.png b/vlm/train/b83ibRX55T/0.png new file mode 100644 index 0000000000000000000000000000000000000000..f60146020f991817b349fc41cfb7f11ff9708f55 --- /dev/null +++ b/vlm/train/b83ibRX55T/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15aeba283a3d8f03d1e1cd114646e39a83efa2b786a0e057c691faa582720f0a +size 447808 diff --git a/vlm/train/b83ibRX55T/1.png b/vlm/train/b83ibRX55T/1.png new file mode 100644 index 0000000000000000000000000000000000000000..425d140862727b960b3cfc5fdc90edb7d1e422d8 --- /dev/null +++ b/vlm/train/b83ibRX55T/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fd4a9af37f2bf8facc0ab83316df825b651e59542b4baa327131adcca46572f +size 611541 diff --git a/vlm/train/b83ibRX55T/10.png b/vlm/train/b83ibRX55T/10.png new file mode 100644 index 0000000000000000000000000000000000000000..d4bf523057e30a7514259e3966265551c0daba85 --- /dev/null +++ b/vlm/train/b83ibRX55T/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5774ab17a083a856b65cfeb7078d8c68c77761c21da8f5cb6cc9c536e1f95fb0 +size 491228 diff --git a/vlm/train/b83ibRX55T/11.png b/vlm/train/b83ibRX55T/11.png new file mode 100644 index 0000000000000000000000000000000000000000..f6b7df3c571f0b15c4032b9567c1937b38c4050e --- /dev/null +++ b/vlm/train/b83ibRX55T/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca6fcd3cfe384af230726546ff58d1c321c6edc5f93587a3265c48b78f65f157 +size 474716 diff --git a/vlm/train/b83ibRX55T/12.png b/vlm/train/b83ibRX55T/12.png new file mode 100644 index 0000000000000000000000000000000000000000..2bf1a34e803ee5cb23aba24fb244183b53c864e1 --- /dev/null +++ b/vlm/train/b83ibRX55T/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a79dbdf39cc2b0ea824914970a9f35984e6b7b6b022dfb632df84fad92e7ce46 +size 457054 diff --git a/vlm/train/b83ibRX55T/13.png b/vlm/train/b83ibRX55T/13.png new file mode 100644 index 0000000000000000000000000000000000000000..e26e6177bbc879489bcfeb8db736c66bed4b5f28 --- /dev/null +++ b/vlm/train/b83ibRX55T/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:307f6ee808d9da0e00110e0f99e36327846c4075e0f5a1521b2c0a57910ba5dc +size 269212 diff --git a/vlm/train/b83ibRX55T/2.png b/vlm/train/b83ibRX55T/2.png new file mode 100644 index 0000000000000000000000000000000000000000..34b63dc08de93f4cef41c33a6ee28df70fe4b861 --- /dev/null +++ b/vlm/train/b83ibRX55T/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeee3b4f9e61ea36919727ffe52f19519994223692d00aa22b4d20449daeed84 +size 507589 diff --git a/vlm/train/b83ibRX55T/3.png b/vlm/train/b83ibRX55T/3.png new file mode 100644 index 0000000000000000000000000000000000000000..859b6e9618834616b10bde6f6d8a7cc94e3dc527 --- /dev/null +++ b/vlm/train/b83ibRX55T/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ceb6c30e91da7666eb73662c9b85a7cf418bd4283597dca4f3f06b42e261ef4 +size 558520 diff --git a/vlm/train/b83ibRX55T/4.png b/vlm/train/b83ibRX55T/4.png new file mode 100644 index 0000000000000000000000000000000000000000..653df97d35fb5a6ee32452af01fe1285de52208e --- /dev/null +++ b/vlm/train/b83ibRX55T/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f03fb5ce780f8cc0d3018dae242e90b53004b9dd0f927bb78590b9176e7575f +size 474575 diff --git a/vlm/train/b83ibRX55T/5.png b/vlm/train/b83ibRX55T/5.png new file mode 100644 index 0000000000000000000000000000000000000000..8aff3a8d427868d187007c2522566a11b18e43ef --- /dev/null +++ b/vlm/train/b83ibRX55T/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51e638e0fd4c3029d77389ce8400eacc2b4fc365a9a3a250a647844d19c406c6 +size 482493 diff --git a/vlm/train/b83ibRX55T/6.png b/vlm/train/b83ibRX55T/6.png new file mode 100644 index 0000000000000000000000000000000000000000..71b8b1d8e3ade958dbc9e677c4cb9045e1431ce7 --- /dev/null +++ b/vlm/train/b83ibRX55T/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:441dfe02e0f749d2b7c5e1c89fcc2a21ba5e9c602434ab75083352b6634f1f0f +size 475689 diff --git a/vlm/train/b83ibRX55T/7.png b/vlm/train/b83ibRX55T/7.png new file mode 100644 index 0000000000000000000000000000000000000000..87c4fd5a38d934f9fc4cee666d59d8697263b2de --- /dev/null +++ b/vlm/train/b83ibRX55T/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83579a9775f0beabe61658e3c9a0072c82df7bc6f60641716d8f97414fb7b3f3 +size 554064 diff --git a/vlm/train/b83ibRX55T/8.png b/vlm/train/b83ibRX55T/8.png new file mode 100644 index 0000000000000000000000000000000000000000..bdc14ad292e788b5dae621052fb63b9c40022a3d --- /dev/null +++ b/vlm/train/b83ibRX55T/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:009bc2790904eb43f24b86f41b5225aa28ebdc721047c513ffca9f1955346fee +size 515094 diff --git a/vlm/train/b83ibRX55T/9.png b/vlm/train/b83ibRX55T/9.png new file mode 100644 index 0000000000000000000000000000000000000000..491728403d23cf277f0eb29b72ce00eaa3783269 --- /dev/null +++ b/vlm/train/b83ibRX55T/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:294bb322ebab6200c9380f6dc65414beb98a2659da2a5bc8c9770038fa760eba +size 497120 diff --git a/vlm/train/ki4eJ1fSJNq/0.png b/vlm/train/ki4eJ1fSJNq/0.png new file mode 100644 index 0000000000000000000000000000000000000000..7b490881426b80dbdcaf0c60835d41b5751bb6c0 --- /dev/null +++ b/vlm/train/ki4eJ1fSJNq/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4cab79360dfab44c793878d8484724afe1561fbf91815fea4cbf2e56fad5b2e +size 452866 diff --git a/vlm/train/ki4eJ1fSJNq/1.png b/vlm/train/ki4eJ1fSJNq/1.png new file mode 100644 index 0000000000000000000000000000000000000000..14cab00adcf13dcc298239b9176d3472f517659d --- /dev/null +++ b/vlm/train/ki4eJ1fSJNq/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd1924eb8b88f6fb9169371d45225e4777f2a88fa6919715195c8ef0e83b8305 +size 451310 diff --git a/vlm/train/ki4eJ1fSJNq/10.png b/vlm/train/ki4eJ1fSJNq/10.png new file mode 100644 index 0000000000000000000000000000000000000000..7d282a7d1f291fcea0c3d67883c3d887a73fa585 --- /dev/null +++ b/vlm/train/ki4eJ1fSJNq/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d369cf2821348579b3632cf84b2a95b994a684e63a06f664c1aa628ce664fc81 +size 566533 diff --git a/vlm/train/ki4eJ1fSJNq/11.png b/vlm/train/ki4eJ1fSJNq/11.png new file mode 100644 index 0000000000000000000000000000000000000000..0b3bcb08199d7957eae8160635f8eb7ee78396b8 --- /dev/null +++ b/vlm/train/ki4eJ1fSJNq/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:831af7e014cfffce4c2c847649a41334670cbd67ddea0f3dd0f92efb4e413a1f +size 550029 diff --git a/vlm/train/ki4eJ1fSJNq/12.png b/vlm/train/ki4eJ1fSJNq/12.png new file mode 100644 index 0000000000000000000000000000000000000000..36f33f2c33f3a7989cb9792f010e7088fbf76781 --- /dev/null +++ b/vlm/train/ki4eJ1fSJNq/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ef6f7f2cc137271ecd81ff19aa697798a40e4fad83551f7bdf41da5181c04bd +size 133261 diff --git a/vlm/train/ki4eJ1fSJNq/13.png b/vlm/train/ki4eJ1fSJNq/13.png new file mode 100644 index 0000000000000000000000000000000000000000..3bdc61f4a1e6094fff04883e20c9e2091129998e --- /dev/null +++ b/vlm/train/ki4eJ1fSJNq/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fe5546051f0a16f75786b9531f7bc4d03b5aa255028c7453e1177135fa252fc +size 421790 diff --git a/vlm/train/ki4eJ1fSJNq/2.png b/vlm/train/ki4eJ1fSJNq/2.png new file mode 100644 index 0000000000000000000000000000000000000000..e8dffdf11deaa5b4f436f35dde003589db97e133 --- /dev/null +++ b/vlm/train/ki4eJ1fSJNq/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d079a94537d9edebc12f03bfc2d9d2558d0b45dcc09b883491c4130b9c2448a6 +size 528094 diff --git a/vlm/train/ki4eJ1fSJNq/3.png b/vlm/train/ki4eJ1fSJNq/3.png new file mode 100644 index 0000000000000000000000000000000000000000..863fe3ba163d2071c32af8fe863a88b5308bd7c6 --- /dev/null +++ b/vlm/train/ki4eJ1fSJNq/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:849d0f70fbca7294cef8ee63a7ffcbf0e8d9d342a24270a10e4eb14da4433745 +size 555321 diff --git a/vlm/train/ki4eJ1fSJNq/4.png b/vlm/train/ki4eJ1fSJNq/4.png new file mode 100644 index 0000000000000000000000000000000000000000..60cb2c041cf86ec026ee9a7afcd451dbe9f42704 --- /dev/null +++ b/vlm/train/ki4eJ1fSJNq/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80b496ff20c344866eab198937640d9974abd65ceafe0bc416bf6c3c9d35cb10 +size 498675 diff --git a/vlm/train/ki4eJ1fSJNq/5.png b/vlm/train/ki4eJ1fSJNq/5.png new file mode 100644 index 0000000000000000000000000000000000000000..9d8a875acc91a248dcb159a37d57d89b20d03251 --- /dev/null +++ b/vlm/train/ki4eJ1fSJNq/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e0f0a79e2c8c35af2b2e75592e98586a38b175d80319161a4aff4b4e0877606 +size 546897 diff --git a/vlm/train/ki4eJ1fSJNq/6.png b/vlm/train/ki4eJ1fSJNq/6.png new file mode 100644 index 0000000000000000000000000000000000000000..e55c36e16df5dbceb1d4e2f1d555a37de6fa9cd8 --- /dev/null +++ b/vlm/train/ki4eJ1fSJNq/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d1b4e973c73902f632fcec1931816c0a407c844c8af16585356bd7cdc039f9e +size 624262 diff --git a/vlm/train/ki4eJ1fSJNq/7.png b/vlm/train/ki4eJ1fSJNq/7.png new file mode 100644 index 0000000000000000000000000000000000000000..b9086453cb65d85fafc0b3bcfc38e1939e46f21b --- /dev/null +++ b/vlm/train/ki4eJ1fSJNq/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17bc497a435168d7d8cf4698d02012d6bff19c41fede0e8e05ff76a394518541 +size 641941 diff --git a/vlm/train/ki4eJ1fSJNq/8.png b/vlm/train/ki4eJ1fSJNq/8.png new file mode 100644 index 0000000000000000000000000000000000000000..24af6aa24b268cffe399a4936850cb96c6e7e083 --- /dev/null +++ b/vlm/train/ki4eJ1fSJNq/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e80057d38fc14ad54cfb9ce66f6fb46f81ed3ec3f969ba35232ae885b3ddb6b2 +size 570845 diff --git a/vlm/train/ki4eJ1fSJNq/9.png b/vlm/train/ki4eJ1fSJNq/9.png new file mode 100644 index 0000000000000000000000000000000000000000..b5f23f8e007f5b43a35e2fc06ba36f151551694a --- /dev/null +++ b/vlm/train/ki4eJ1fSJNq/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e260a7bff92be7ecfb09cfee60f9d556a7fddfa1eb3535f51effc9000e91500b +size 520557 diff --git a/vlm/train/lH2ukHnGDdq/0.png b/vlm/train/lH2ukHnGDdq/0.png new file mode 100644 index 0000000000000000000000000000000000000000..81610500c07ea5a386504d893e3d4b7ae88c1aa4 --- /dev/null +++ b/vlm/train/lH2ukHnGDdq/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58e24e63aa8dfe53e8ebd076aaa1953192170b85f3de62bef515c0b78ac0b45e +size 500911 diff --git a/vlm/train/lH2ukHnGDdq/1.png b/vlm/train/lH2ukHnGDdq/1.png new file mode 100644 index 0000000000000000000000000000000000000000..b9202cd756cc7ad7e940d10261fa07be44dea8aa --- /dev/null +++ b/vlm/train/lH2ukHnGDdq/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8276d165b8a83827033c1cf8ba87f9e7e477a63a3f2cdad901b57776c475b392 +size 585676 diff --git a/vlm/train/lH2ukHnGDdq/10.png b/vlm/train/lH2ukHnGDdq/10.png new file mode 100644 index 0000000000000000000000000000000000000000..f20bcf4e68da0d352d6e21ed9d062f4a8ae7d487 --- /dev/null +++ b/vlm/train/lH2ukHnGDdq/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc2e67b0ab7886a444c9beb915308b5f3d1340bdac44351d325a42a8b3d9df58 +size 434286 diff --git a/vlm/train/lH2ukHnGDdq/11.png b/vlm/train/lH2ukHnGDdq/11.png new file mode 100644 index 0000000000000000000000000000000000000000..132fa98adfc457d34bac091226a77d8aac3267f2 --- /dev/null +++ b/vlm/train/lH2ukHnGDdq/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1a2a6c37bd8f88d7d014e057fe574fcb7f393085439bb9f726bee307ed4447c +size 521655 diff --git a/vlm/train/lH2ukHnGDdq/12.png b/vlm/train/lH2ukHnGDdq/12.png new file mode 100644 index 0000000000000000000000000000000000000000..cb33b480272012184b9d09cf0011c477ec6ead4f --- /dev/null +++ b/vlm/train/lH2ukHnGDdq/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b46f0740bfaaeb2f96c95f3acf2866326b4476b8036c724bc908d5ccc9c02c79 +size 541458 diff --git a/vlm/train/lH2ukHnGDdq/13.png b/vlm/train/lH2ukHnGDdq/13.png new file mode 100644 index 0000000000000000000000000000000000000000..46246f8205904c39b1bda0b948d1640d466926ad --- /dev/null +++ b/vlm/train/lH2ukHnGDdq/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8851859f652c7286cc8d6cd01018e99ff75aac6c43e4f9c28eabb3d9ab7cad1e +size 1163641 diff --git a/vlm/train/lH2ukHnGDdq/14.png b/vlm/train/lH2ukHnGDdq/14.png new file mode 100644 index 0000000000000000000000000000000000000000..68b06dd261b116abca103de1908d90dec6ab23f3 --- /dev/null +++ b/vlm/train/lH2ukHnGDdq/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba8e3539f6012c22b0235909243743fa5d699c010d2f1b817122834ae467a763 +size 1421342 diff --git a/vlm/train/lH2ukHnGDdq/15.png b/vlm/train/lH2ukHnGDdq/15.png new file mode 100644 index 0000000000000000000000000000000000000000..404566480fc2195e8596efed649b90afbbdedf11 --- /dev/null +++ b/vlm/train/lH2ukHnGDdq/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19d90125eea5db71c6c791db65c79ed35e8c81bcfd1ec032c422b481a0b99ca1 +size 1292121 diff --git a/vlm/train/lH2ukHnGDdq/16.png b/vlm/train/lH2ukHnGDdq/16.png new file mode 100644 index 0000000000000000000000000000000000000000..afcea8631c564f21bfb6c5f1e3234ca8dbc0fca4 --- /dev/null +++ b/vlm/train/lH2ukHnGDdq/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:225de6b809306047396a2e161ebcaabff5f25e0a3617284af429116a992cc482 +size 303553 diff --git a/vlm/train/lH2ukHnGDdq/17.png b/vlm/train/lH2ukHnGDdq/17.png new file mode 100644 index 0000000000000000000000000000000000000000..f79fab88c41ba6c21bdd53e54438a84168300f1f --- /dev/null +++ b/vlm/train/lH2ukHnGDdq/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5eb054d377da1036769d16bd08fe180c983a47c0b46f8d477a6a8883ef37054 +size 112915 diff --git a/vlm/train/lH2ukHnGDdq/2.png b/vlm/train/lH2ukHnGDdq/2.png new file mode 100644 index 0000000000000000000000000000000000000000..2cd517d5474972e361a5e97882fc56eea459839b --- /dev/null +++ b/vlm/train/lH2ukHnGDdq/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96f2428f18e52d862bd94a6e6012e83a79bf5158aab5abfc58041d052c4276ed +size 481462 diff --git a/vlm/train/lH2ukHnGDdq/3.png b/vlm/train/lH2ukHnGDdq/3.png new file mode 100644 index 0000000000000000000000000000000000000000..5116918c7203fbcd45d445e692d0159b87ab733f --- /dev/null +++ b/vlm/train/lH2ukHnGDdq/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ca7646558aac510eda6e380b62b4c9d32cc00d64406d3c2cf6f7bd27815e43c +size 604103 diff --git a/vlm/train/lH2ukHnGDdq/4.png b/vlm/train/lH2ukHnGDdq/4.png new file mode 100644 index 0000000000000000000000000000000000000000..7016a2725dada73818c756fbb65b207114f62d37 --- /dev/null +++ b/vlm/train/lH2ukHnGDdq/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b2c5dd59d69dd3ede7f5b550716b06b64a6108cba72d9f82d13e6b9c77fd12c +size 458374 diff --git a/vlm/train/lH2ukHnGDdq/5.png b/vlm/train/lH2ukHnGDdq/5.png new file mode 100644 index 0000000000000000000000000000000000000000..9cb8eacca6a19d3e4a79e5619f7056c126516859 --- /dev/null +++ b/vlm/train/lH2ukHnGDdq/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3d66f50781940e917825bdcc016884d694d9f7e812ffff6ee46be0858c647a7 +size 628940 diff --git a/vlm/train/lH2ukHnGDdq/6.png b/vlm/train/lH2ukHnGDdq/6.png new file mode 100644 index 0000000000000000000000000000000000000000..534cb1de46c6a7ff18eaf47e2436927de5c2482e --- /dev/null +++ b/vlm/train/lH2ukHnGDdq/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33ce226adefdd90e05d20920c1aec8cadeaf938ec77136618c7683dd13423384 +size 915511 diff --git a/vlm/train/lH2ukHnGDdq/7.png b/vlm/train/lH2ukHnGDdq/7.png new file mode 100644 index 0000000000000000000000000000000000000000..b4020e67f5ec0d32e778be3b3e2d90f22da9c31b --- /dev/null +++ b/vlm/train/lH2ukHnGDdq/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5cc2aa89f975effbc2b8008f3c84fd32ab77a6b941da35f16da5488efb137f1 +size 618471 diff --git a/vlm/train/lH2ukHnGDdq/8.png b/vlm/train/lH2ukHnGDdq/8.png new file mode 100644 index 0000000000000000000000000000000000000000..93059e97227ba31bc52874a00fc514967a0f1075 --- /dev/null +++ b/vlm/train/lH2ukHnGDdq/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dfe9322f8023dec22a5508787b7f48794d7f4a94ad38df8dfff8b0d6272351d +size 589483 diff --git a/vlm/train/lH2ukHnGDdq/9.png b/vlm/train/lH2ukHnGDdq/9.png new file mode 100644 index 0000000000000000000000000000000000000000..dbe7f00d6152dced045e518899a492ea0c2fbc1b --- /dev/null +++ b/vlm/train/lH2ukHnGDdq/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:862a0473772771ced7d26dfa4699e084fbc0347b674db6d849988101f6cb9fdd +size 564320 diff --git a/vlm/train/r1l73iRqKm/0.png b/vlm/train/r1l73iRqKm/0.png new file mode 100644 index 0000000000000000000000000000000000000000..1392133c88fb9168ffade6718c7bdb6dfe746c2d --- /dev/null +++ b/vlm/train/r1l73iRqKm/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8f1b743c72411c324a952b4d415850129302efd50355769a07da6a51fd20164 +size 488063 diff --git a/vlm/train/r1l73iRqKm/1.png b/vlm/train/r1l73iRqKm/1.png new file mode 100644 index 0000000000000000000000000000000000000000..bf7eb3d8c94400d320c66124e4382a2ad13843a0 --- /dev/null +++ b/vlm/train/r1l73iRqKm/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f26375ca6f10b9dc35a1f826ee4fc263a90359b3cd10da17a01513cc3f161564 +size 576510 diff --git a/vlm/train/r1l73iRqKm/10.png b/vlm/train/r1l73iRqKm/10.png new file mode 100644 index 0000000000000000000000000000000000000000..dc46986ce9d28c6c3021dbb05acfdf35e7e6c18c --- /dev/null +++ b/vlm/train/r1l73iRqKm/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22739666f79b874b691abb20030c745e797a4f497bcbca2650f4c9a8fb59be87 +size 184550 diff --git a/vlm/train/r1l73iRqKm/11.png b/vlm/train/r1l73iRqKm/11.png new file mode 100644 index 0000000000000000000000000000000000000000..83a08835d0cd6922cbe8491d8a36aa80c0619296 --- /dev/null +++ b/vlm/train/r1l73iRqKm/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6b0cb1e0460c72bc138665bc6a8a0da039bfe5b575bd4987746af362a53e25c +size 564629 diff --git a/vlm/train/r1l73iRqKm/12.png b/vlm/train/r1l73iRqKm/12.png new file mode 100644 index 0000000000000000000000000000000000000000..715c6c432210330b7f7a23703ff9de0aa2dad614 --- /dev/null +++ b/vlm/train/r1l73iRqKm/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b6a98400b672fde06c569e56f6a0db93a501da1e0bea4262dbd387ad464605c +size 483522 diff --git a/vlm/train/r1l73iRqKm/13.png b/vlm/train/r1l73iRqKm/13.png new file mode 100644 index 0000000000000000000000000000000000000000..9e7b8ae9f98871755460a7da4df85b761af2420f --- /dev/null +++ b/vlm/train/r1l73iRqKm/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43053ede2c133c60c3d0dede2e276b60250668c11749aaf85d22252c0946733c +size 445393 diff --git a/vlm/train/r1l73iRqKm/14.png b/vlm/train/r1l73iRqKm/14.png new file mode 100644 index 0000000000000000000000000000000000000000..69dcd6e644a116b1d59dc61a5570140c1b796db4 --- /dev/null +++ b/vlm/train/r1l73iRqKm/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e4385de2162f03343b3b5e85ddf2adc0c91a699cb2b4858fba5356f14c16945 +size 484645 diff --git a/vlm/train/r1l73iRqKm/15.png b/vlm/train/r1l73iRqKm/15.png new file mode 100644 index 0000000000000000000000000000000000000000..b9f0cbf87bb8e369e5fc43030cc306618770a927 --- /dev/null +++ b/vlm/train/r1l73iRqKm/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:636b0137395227abdabc7f2e0280511db73ad2d6d48e9be642e650ade7bdd3ca +size 69015 diff --git a/vlm/train/r1l73iRqKm/16.png b/vlm/train/r1l73iRqKm/16.png new file mode 100644 index 0000000000000000000000000000000000000000..a8df256fb711cf968f182c48a9a5013039af13d9 --- /dev/null +++ b/vlm/train/r1l73iRqKm/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0eefb542a799958ae602f3ae6016ed41ab5b859e09b08bd0311d939de4a8126f +size 549738 diff --git a/vlm/train/r1l73iRqKm/17.png b/vlm/train/r1l73iRqKm/17.png new file mode 100644 index 0000000000000000000000000000000000000000..1721cd25a2a7a94ef2e59a361a7f442ddb01c939 --- /dev/null +++ b/vlm/train/r1l73iRqKm/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c98e356f43e70df01a38a1a3de48d058749545baed386a59a22c3cd29f78fa4f +size 556074 diff --git a/vlm/train/r1l73iRqKm/2.png b/vlm/train/r1l73iRqKm/2.png new file mode 100644 index 0000000000000000000000000000000000000000..bb48577c98d578c1fd6c4b73d1b89292ce55da87 --- /dev/null +++ b/vlm/train/r1l73iRqKm/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7af9193f8c494fa2e3c4c2aff40b5b6cfbcc98ad6042fb64b384f9df428be742 +size 528029 diff --git a/vlm/train/r1l73iRqKm/3.png b/vlm/train/r1l73iRqKm/3.png new file mode 100644 index 0000000000000000000000000000000000000000..598ada183a9b7b86890dcda690c6627b8c9d3af2 --- /dev/null +++ b/vlm/train/r1l73iRqKm/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eaba9b272cdfa9055666abb410adb8a46e908e3d59257392b73982fbe3b1e31f +size 498314 diff --git a/vlm/train/r1l73iRqKm/4.png b/vlm/train/r1l73iRqKm/4.png new file mode 100644 index 0000000000000000000000000000000000000000..9d02eabe6f3082e5297dc781339e4886054bcfee --- /dev/null +++ b/vlm/train/r1l73iRqKm/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4f2ef2237a43a67cd4d03923f9eedf104b487264a71559ff977d998c000f646 +size 483581 diff --git a/vlm/train/r1l73iRqKm/5.png b/vlm/train/r1l73iRqKm/5.png new file mode 100644 index 0000000000000000000000000000000000000000..04941505c316efeaa065e9bec35797e437f7a08f --- /dev/null +++ b/vlm/train/r1l73iRqKm/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6932e8356191388fe47bd5588e31f4b7d6fbeacece1160f7c6c21d2a008c07c5 +size 491398 diff --git a/vlm/train/r1l73iRqKm/6.png b/vlm/train/r1l73iRqKm/6.png new file mode 100644 index 0000000000000000000000000000000000000000..7e7b537d2a2aa5df8f89a58a9afaee83f6572de7 --- /dev/null +++ b/vlm/train/r1l73iRqKm/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d093a0aab37dda6abdb5c7f261c8aca8c4cd178ad089526407ba00cb8deefa13 +size 450606 diff --git a/vlm/train/r1l73iRqKm/7.png b/vlm/train/r1l73iRqKm/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f21fbd43e6d48ebde59793169109034279a15a77 --- /dev/null +++ b/vlm/train/r1l73iRqKm/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99f65e7bb3f7dde996a4142ba6ebca0c8f4146ccfcdd9426822253887139bd32 +size 527390 diff --git a/vlm/train/r1l73iRqKm/8.png b/vlm/train/r1l73iRqKm/8.png new file mode 100644 index 0000000000000000000000000000000000000000..4713983382339d797d145a277078fab9f056ec9e --- /dev/null +++ b/vlm/train/r1l73iRqKm/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b567e9d11de3ee523a497301e6527a30b9f8c37bf15c9aedd03f9af98330ad41 +size 546032 diff --git a/vlm/train/r1l73iRqKm/9.png b/vlm/train/r1l73iRqKm/9.png new file mode 100644 index 0000000000000000000000000000000000000000..a5612dd167eb7a9bec37de62b5253098e2008f1d --- /dev/null +++ b/vlm/train/r1l73iRqKm/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9bc3f819ee5a99bc91dda56d6ac5859bdcb1311c369a091de51532caa378f03 +size 606983 diff --git a/vlm/train/rJBiunlAW/0.png b/vlm/train/rJBiunlAW/0.png new file mode 100644 index 0000000000000000000000000000000000000000..47ad3632ef4216e6cc485da10602966e040a6479 --- /dev/null +++ b/vlm/train/rJBiunlAW/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8de9ad3e5bfe4a77fddcb862ad4cb0fc4da5b37cd8d10ba311b60e963aeb5813 +size 496900 diff --git a/vlm/train/rJBiunlAW/1.png b/vlm/train/rJBiunlAW/1.png new file mode 100644 index 0000000000000000000000000000000000000000..63819df7d9c0011ad20ddbf96eada2ab7e84acca --- /dev/null +++ b/vlm/train/rJBiunlAW/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e9e964751737009bc45983e054a229e8427e46c4b12ac7a0006d1d593aed30c +size 397973 diff --git a/vlm/train/rJBiunlAW/10.png b/vlm/train/rJBiunlAW/10.png new file mode 100644 index 0000000000000000000000000000000000000000..2ba422b445e808c3e735f3818e4e6de46b13b4c5 --- /dev/null +++ b/vlm/train/rJBiunlAW/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:629aec52b4c41aa1a70f8cb6c0c452a0cdf17a9e77e6be79d2b35a6539204df2 +size 583848 diff --git a/vlm/train/rJBiunlAW/11.png b/vlm/train/rJBiunlAW/11.png new file mode 100644 index 0000000000000000000000000000000000000000..21a0c4ea1a2ec897aca316397fc5e0989590c639 --- /dev/null +++ b/vlm/train/rJBiunlAW/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07a7a1dee89a1cf1e97071792b76ac77ec3439d8e3a33b81ddf307cb3f2d2a50 +size 600387 diff --git a/vlm/train/rJBiunlAW/12.png b/vlm/train/rJBiunlAW/12.png new file mode 100644 index 0000000000000000000000000000000000000000..5ec44085b65a62a2f611517c15689f6bd6ec2583 --- /dev/null +++ b/vlm/train/rJBiunlAW/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98785188c54847600806b27b9b2a3e3873df9cfc40d28bb9634bc88a0ec44f92 +size 438801 diff --git a/vlm/train/rJBiunlAW/13.png b/vlm/train/rJBiunlAW/13.png new file mode 100644 index 0000000000000000000000000000000000000000..6006cee94e02f77cc5011d7d42a4453481e199c6 --- /dev/null +++ b/vlm/train/rJBiunlAW/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00686272818affa0ff03afa6563afe1d874a1ca5340dc52e09d8ef7dd378e275 +size 592251 diff --git a/vlm/train/rJBiunlAW/14.png b/vlm/train/rJBiunlAW/14.png new file mode 100644 index 0000000000000000000000000000000000000000..c82936f35b7ad346c4d80dd587452792ea6a6ebb --- /dev/null +++ b/vlm/train/rJBiunlAW/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e00b80c22884d7494bd9be8dea7da22be01c5710206686462b71f82aad43c004 +size 365876 diff --git a/vlm/train/rJBiunlAW/15.png b/vlm/train/rJBiunlAW/15.png new file mode 100644 index 0000000000000000000000000000000000000000..3ae37e51d28c4ffced9c9f8250dc71bf27f0e19d --- /dev/null +++ b/vlm/train/rJBiunlAW/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccacdb3175b65ada461eaaf8cd7e2b85e3bcf07b633650f23cd041144538bab0 +size 487641 diff --git a/vlm/train/rJBiunlAW/16.png b/vlm/train/rJBiunlAW/16.png new file mode 100644 index 0000000000000000000000000000000000000000..633adb2fe46e9ca2663d7b9130b1a5b8d4021c60 --- /dev/null +++ b/vlm/train/rJBiunlAW/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c237ca3c9c739b619610165c5a4cc30a6e3061d36caa582df142c9b13446b7b4 +size 291448 diff --git a/vlm/train/rJBiunlAW/2.png b/vlm/train/rJBiunlAW/2.png new file mode 100644 index 0000000000000000000000000000000000000000..bb549941208200296e73ec8da3190b79ea87f9a8 --- /dev/null +++ b/vlm/train/rJBiunlAW/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e67d9319fd94ff28fc35ff326914fa076b7a0161743eb8e9a2abd1ca02c0d4ee +size 513299 diff --git a/vlm/train/rJBiunlAW/3.png b/vlm/train/rJBiunlAW/3.png new file mode 100644 index 0000000000000000000000000000000000000000..53c1bd533f2ae5b89b26929fae0594dbe25351cf --- /dev/null +++ b/vlm/train/rJBiunlAW/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c681a8ab316e09bd0fcdf0305ba21b8fccb1c635f0cbe3de0423ce037e1e189 +size 506752 diff --git a/vlm/train/rJBiunlAW/4.png b/vlm/train/rJBiunlAW/4.png new file mode 100644 index 0000000000000000000000000000000000000000..8ac9a18fd52533645396731a30b1de38dd5a36be --- /dev/null +++ b/vlm/train/rJBiunlAW/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ba4149c4e6b75f370c8621b7db969b4ef671b802d455d3a8d3e4bbfd3fc1524 +size 431504 diff --git a/vlm/train/rJBiunlAW/5.png b/vlm/train/rJBiunlAW/5.png new file mode 100644 index 0000000000000000000000000000000000000000..fa09966bf4ba0d15fd43a11945e651a325586109 --- /dev/null +++ b/vlm/train/rJBiunlAW/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdf493c08651dc41a43e67521d83be0b17dfda4abbb617b134b3751cf45a1a4b +size 513373 diff --git a/vlm/train/rJBiunlAW/6.png b/vlm/train/rJBiunlAW/6.png new file mode 100644 index 0000000000000000000000000000000000000000..c0520445ab04476679b5c92d538709900d0f2cda --- /dev/null +++ b/vlm/train/rJBiunlAW/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e09f7a2533e734a9598c14ff34157d0c44565331aa17692f2ba432d3a712a2a1 +size 530737 diff --git a/vlm/train/rJBiunlAW/7.png b/vlm/train/rJBiunlAW/7.png new file mode 100644 index 0000000000000000000000000000000000000000..86d759d086a54adfd21b6f19dd0c798f9a8efdeb --- /dev/null +++ b/vlm/train/rJBiunlAW/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6e79a4fe27032f21e37ad400259eda3fd734e308a1f7e57525f3a1ce8277491 +size 494668 diff --git a/vlm/train/rJBiunlAW/8.png b/vlm/train/rJBiunlAW/8.png new file mode 100644 index 0000000000000000000000000000000000000000..5b739348f3536216d3ecc704f94e9839ff7675ac --- /dev/null +++ b/vlm/train/rJBiunlAW/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7851aec9999365bb2c485b223ded79d57e0bbfc4268b81d0eaa77846245cd6dc +size 432927 diff --git a/vlm/train/rJBiunlAW/9.png b/vlm/train/rJBiunlAW/9.png new file mode 100644 index 0000000000000000000000000000000000000000..73d063ca6787c73713b361a2c9ba0bf13bc321af --- /dev/null +++ b/vlm/train/rJBiunlAW/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34fff433e47e7e58bc6c26e0fb830f70bc8972a4990d9c8a76868313285fe3d3 +size 571851 diff --git a/vlm/train/rkezdaEtvH/0.png b/vlm/train/rkezdaEtvH/0.png new file mode 100644 index 0000000000000000000000000000000000000000..0b0f04e5cbec3d44eb6b3b93629ef95e2305163d --- /dev/null +++ b/vlm/train/rkezdaEtvH/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35b5094596260df8a91aac570ff295da7eb98635bebfe768ba4d431f38753d81 +size 515342 diff --git a/vlm/train/rkezdaEtvH/1.png b/vlm/train/rkezdaEtvH/1.png new file mode 100644 index 0000000000000000000000000000000000000000..78e6c7203c8b0cf002355ede48eb25c667826984 --- /dev/null +++ b/vlm/train/rkezdaEtvH/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36a3044bb8c85ac34c3dc98dceea81285beeb7f63a8b687bdfa0cff3046ae9a2 +size 616622 diff --git a/vlm/train/rkezdaEtvH/10.png b/vlm/train/rkezdaEtvH/10.png new file mode 100644 index 0000000000000000000000000000000000000000..d065bd2a1f52580f77538d6ce4c6cf3193417d3c --- /dev/null +++ b/vlm/train/rkezdaEtvH/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55248fe25941b4a79bddf2bc557f10807937651b08713b20d90117e3952763d6 +size 511217 diff --git a/vlm/train/rkezdaEtvH/11.png b/vlm/train/rkezdaEtvH/11.png new file mode 100644 index 0000000000000000000000000000000000000000..9c337b4c906c3f10422e56e58de5e40db5146887 --- /dev/null +++ b/vlm/train/rkezdaEtvH/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a05b860df9f2f72454b4870bafd118ae70340776bee080607d7afb5f8016c23 +size 552231 diff --git a/vlm/train/rkezdaEtvH/12.png b/vlm/train/rkezdaEtvH/12.png new file mode 100644 index 0000000000000000000000000000000000000000..f29de59444b0463be06aca834d9e37cf8bad98fd --- /dev/null +++ b/vlm/train/rkezdaEtvH/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a199b9320c2d56244133de14218abb5474af56a3d0003c1c12b3887dff2be7f +size 528859 diff --git a/vlm/train/rkezdaEtvH/13.png b/vlm/train/rkezdaEtvH/13.png new file mode 100644 index 0000000000000000000000000000000000000000..4c621c462505566b60cfd8e9b67aaa65803f4e86 --- /dev/null +++ b/vlm/train/rkezdaEtvH/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72789722fd2fa1b508a4315d79ab781c93d26e671f4e587169b8bf34be93e5b1 +size 76943 diff --git a/vlm/train/rkezdaEtvH/14.png b/vlm/train/rkezdaEtvH/14.png new file mode 100644 index 0000000000000000000000000000000000000000..2a8ebf97146d932d9e86520778e8b758243a146d --- /dev/null +++ b/vlm/train/rkezdaEtvH/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba47e59094e655853f0028cb7f91c49105eaf72cfb14d0aadafade77d4a9c78a +size 446021 diff --git a/vlm/train/rkezdaEtvH/15.png b/vlm/train/rkezdaEtvH/15.png new file mode 100644 index 0000000000000000000000000000000000000000..53f7aef3086503cd6fa318e25bc6006aae262681 --- /dev/null +++ b/vlm/train/rkezdaEtvH/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73761764cf6391bb6555b2cf44123dac9ac3deba987c6f5d9e4fadd23cc6d02f +size 338632 diff --git a/vlm/train/rkezdaEtvH/16.png b/vlm/train/rkezdaEtvH/16.png new file mode 100644 index 0000000000000000000000000000000000000000..1884990e52eb54e1528d8e0b98b9acc127099287 --- /dev/null +++ b/vlm/train/rkezdaEtvH/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4510f48fa30ea6e7a84d64341705ea27ee0785d69169d3d69b9372ad7bb3c036 +size 378260 diff --git a/vlm/train/rkezdaEtvH/17.png b/vlm/train/rkezdaEtvH/17.png new file mode 100644 index 0000000000000000000000000000000000000000..f6e50f6d8931ff3ecaa61567c2d002eeb99a3e70 --- /dev/null +++ b/vlm/train/rkezdaEtvH/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:772103a4d36a548d3a4297781ac013e087106f4cf7dd5224b6e3df209593eae5 +size 333395 diff --git a/vlm/train/rkezdaEtvH/18.png b/vlm/train/rkezdaEtvH/18.png new file mode 100644 index 0000000000000000000000000000000000000000..161fe91cfd52d1e0e74432714ba468d36283ab41 --- /dev/null +++ b/vlm/train/rkezdaEtvH/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd0f6f647e02e34cb5169d9c6be435e4dddb89a42125be1b0db062d0b639b2b9 +size 229226 diff --git a/vlm/train/rkezdaEtvH/19.png b/vlm/train/rkezdaEtvH/19.png new file mode 100644 index 0000000000000000000000000000000000000000..9be8e70f4fc5ba8749ef02a96702677f3950a43c --- /dev/null +++ b/vlm/train/rkezdaEtvH/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f9295bacf4e625c0c39db521adde393733e48e44bf3e3a6b70115053cfdaca5 +size 328993 diff --git a/vlm/train/rkezdaEtvH/2.png b/vlm/train/rkezdaEtvH/2.png new file mode 100644 index 0000000000000000000000000000000000000000..6ad4ef2fcf4da87baa74f38a30c902b3b3d6ebaf --- /dev/null +++ b/vlm/train/rkezdaEtvH/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d011575b82804ca01b21231b68a3802015b2920ab120dfe7c4ed80ad8171d73 +size 498890 diff --git a/vlm/train/rkezdaEtvH/20.png b/vlm/train/rkezdaEtvH/20.png new file mode 100644 index 0000000000000000000000000000000000000000..7f7fde331b5562444a4db1d09ca458b78226f745 --- /dev/null +++ b/vlm/train/rkezdaEtvH/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:519950d1ec9fa5e3b25f9f802abf387fc0f6beb6c93bbd03a6d01bbc91549370 +size 249105 diff --git a/vlm/train/rkezdaEtvH/21.png b/vlm/train/rkezdaEtvH/21.png new file mode 100644 index 0000000000000000000000000000000000000000..28949cf297123589277226bc7a067e23ba0843a8 --- /dev/null +++ b/vlm/train/rkezdaEtvH/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d42d24898590a2a98f06eba8b635a70a69535792ad683e349c7ea1ca84edf540 +size 321351 diff --git a/vlm/train/rkezdaEtvH/22.png b/vlm/train/rkezdaEtvH/22.png new file mode 100644 index 0000000000000000000000000000000000000000..d0084b5e6917e4a4cdec70c922adf6d7648e8402 --- /dev/null +++ b/vlm/train/rkezdaEtvH/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2051f59a1a6dc067489df61b16f408df0548c93e50dd7e63382cece8f22ae86 +size 314249 diff --git a/vlm/train/rkezdaEtvH/23.png b/vlm/train/rkezdaEtvH/23.png new file mode 100644 index 0000000000000000000000000000000000000000..91e97ac390fae7a1fedccb9ed824969e758f5b17 --- /dev/null +++ b/vlm/train/rkezdaEtvH/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d63af1c2ba5562e8f01ed4d6647ecd685e891b0594d061f197387bd352f886fa +size 259454 diff --git a/vlm/train/rkezdaEtvH/24.png b/vlm/train/rkezdaEtvH/24.png new file mode 100644 index 0000000000000000000000000000000000000000..5e43ecc74811a1b29aaf4ff4ad45badc166d40a1 --- /dev/null +++ b/vlm/train/rkezdaEtvH/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae5652f74aee08a0e464585ab248e0273fcf6911d5f23b4443c086b9d37e7292 +size 268778 diff --git a/vlm/train/rkezdaEtvH/25.png b/vlm/train/rkezdaEtvH/25.png new file mode 100644 index 0000000000000000000000000000000000000000..60b806ef3db6c7779850b061d4dddb68cdbf9373 --- /dev/null +++ b/vlm/train/rkezdaEtvH/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0eb6969be082424e5afd1e34106f422c778128c7ec24732e18ea4be46680b0d +size 458122 diff --git a/vlm/train/rkezdaEtvH/3.png b/vlm/train/rkezdaEtvH/3.png new file mode 100644 index 0000000000000000000000000000000000000000..d538114604fcdea022faaa61c3abe2b223d6a523 --- /dev/null +++ b/vlm/train/rkezdaEtvH/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2f5fabcf0efb3c8e37982965d1da5088a86b9ddaa58b81888f8d6530ee6a54a +size 406415 diff --git a/vlm/train/rkezdaEtvH/4.png b/vlm/train/rkezdaEtvH/4.png new file mode 100644 index 0000000000000000000000000000000000000000..b05effbcd700b612b6249018cfef60bbf970c94b --- /dev/null +++ b/vlm/train/rkezdaEtvH/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a871d94149cf38976fdd76ae3d4d33dfca3ce0e58bef61d3c4520b95f7804c13 +size 516117 diff --git a/vlm/train/rkezdaEtvH/5.png b/vlm/train/rkezdaEtvH/5.png new file mode 100644 index 0000000000000000000000000000000000000000..95230930108a0b82119c3d778f97a407fa50a9bb --- /dev/null +++ b/vlm/train/rkezdaEtvH/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b10448f5d47b28a0151f29dc8d96c9f4223473f98b189efd043e92890d50bd56 +size 444946 diff --git a/vlm/train/rkezdaEtvH/6.png b/vlm/train/rkezdaEtvH/6.png new file mode 100644 index 0000000000000000000000000000000000000000..37ed9d65437c1c9c0b027f56bbe193cb26ed51cf --- /dev/null +++ b/vlm/train/rkezdaEtvH/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57715503b03c2fa9e9f325c1c9abf25a5ea23a739e10a2a52c3c51a927d21466 +size 425315 diff --git a/vlm/train/rkezdaEtvH/7.png b/vlm/train/rkezdaEtvH/7.png new file mode 100644 index 0000000000000000000000000000000000000000..cda9716b8e9b80088fd5fb0b6f3534e2aebe8fb5 --- /dev/null +++ b/vlm/train/rkezdaEtvH/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:089a86a19c8e39d93390bb6b2da86a258db77165efed9bfbdfdc08325ba7972f +size 405079 diff --git a/vlm/train/rkezdaEtvH/8.png b/vlm/train/rkezdaEtvH/8.png new file mode 100644 index 0000000000000000000000000000000000000000..88804769a7a46815ecf89450fc4edcf0de92dc60 --- /dev/null +++ b/vlm/train/rkezdaEtvH/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a182905645719a2e243c3b4a2e10c8324685a1085ab31e6ae95137c5c4daa66 +size 466080 diff --git a/vlm/train/rkezdaEtvH/9.png b/vlm/train/rkezdaEtvH/9.png new file mode 100644 index 0000000000000000000000000000000000000000..75bb5421317ab225273e0e313b2c614704f1a57a --- /dev/null +++ b/vlm/train/rkezdaEtvH/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:299961afe7798fc1eed8917625e5dcbd9fb5c3653afa4a3d959b7778ae7db420 +size 618100 diff --git a/vlm/train/uY-XMIbyXec/0.png b/vlm/train/uY-XMIbyXec/0.png new file mode 100644 index 0000000000000000000000000000000000000000..4a646a3fbbb20cb0611c99dcfd7eaf768417324c --- /dev/null +++ b/vlm/train/uY-XMIbyXec/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09956d79bebc2adbb743fc2e9b3b82518961ddf5f7f96cb8256041b6ab7dc180 +size 423795 diff --git a/vlm/train/uY-XMIbyXec/1.png b/vlm/train/uY-XMIbyXec/1.png new file mode 100644 index 0000000000000000000000000000000000000000..55e26ce5afa206e40beb08facc4e524cf8923243 --- /dev/null +++ b/vlm/train/uY-XMIbyXec/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c917c0b3d20a0faf1e16957a776cd771075264461a7ee4ad851c3f2da9cc44f9 +size 539305 diff --git a/vlm/train/uY-XMIbyXec/10.png b/vlm/train/uY-XMIbyXec/10.png new file mode 100644 index 0000000000000000000000000000000000000000..193428771c2ac2321b7481a9a0b90b5e046111c5 --- /dev/null +++ b/vlm/train/uY-XMIbyXec/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac62a65df51f8a69d79a5e29ec75f515ad2d753c22a12984a44ce8ce806802fb +size 602718 diff --git a/vlm/train/uY-XMIbyXec/11.png b/vlm/train/uY-XMIbyXec/11.png new file mode 100644 index 0000000000000000000000000000000000000000..06d2efe8cd6fb6847310cadda608bb3a4bb010ae --- /dev/null +++ b/vlm/train/uY-XMIbyXec/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5623de0ffe2fd649bb9a411d649a54deef7109d16f2e6116cc36f05274d13764 +size 616275 diff --git a/vlm/train/uY-XMIbyXec/12.png b/vlm/train/uY-XMIbyXec/12.png new file mode 100644 index 0000000000000000000000000000000000000000..7fe4c609eb565d85c583c6c717f43dd2f85630fc --- /dev/null +++ b/vlm/train/uY-XMIbyXec/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a3028b723d1e5411b6a6d02ec625ffb9aa57bcc55175048addca7daec3d6681 +size 203709 diff --git a/vlm/train/uY-XMIbyXec/2.png b/vlm/train/uY-XMIbyXec/2.png new file mode 100644 index 0000000000000000000000000000000000000000..cef4b3cb666fead2dbc8d24bf2340228fa8d1dc8 --- /dev/null +++ b/vlm/train/uY-XMIbyXec/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70831b8c7b6028147aa4329e50834a285a74750f40df9cc90c39fa58d8a69348 +size 573155 diff --git a/vlm/train/uY-XMIbyXec/3.png b/vlm/train/uY-XMIbyXec/3.png new file mode 100644 index 0000000000000000000000000000000000000000..ca8073986d389e52fccd61ef33c6332305c4be94 --- /dev/null +++ b/vlm/train/uY-XMIbyXec/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d2ccbbc113f5a5c4c8cba7b742681a2368c9d7c96d974305c09594d99b9ec97 +size 523507 diff --git a/vlm/train/uY-XMIbyXec/4.png b/vlm/train/uY-XMIbyXec/4.png new file mode 100644 index 0000000000000000000000000000000000000000..9b1a72e0926ccdbb9b7640df5cd284d6a7de74e9 --- /dev/null +++ b/vlm/train/uY-XMIbyXec/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7f53152989ad079f52e3a00b737b7adc702a34c822dbc53c2b53f6155d58075 +size 359516 diff --git a/vlm/train/uY-XMIbyXec/5.png b/vlm/train/uY-XMIbyXec/5.png new file mode 100644 index 0000000000000000000000000000000000000000..c0ae1f7e976d4aac52f79aad0b215c439673416c --- /dev/null +++ b/vlm/train/uY-XMIbyXec/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80dec6b084d2fa857d38c896c04788009ada58af55743ede7e2527cb0ce514ef +size 497113 diff --git a/vlm/train/uY-XMIbyXec/6.png b/vlm/train/uY-XMIbyXec/6.png new file mode 100644 index 0000000000000000000000000000000000000000..87c5cc6561a9b7927f63d3ebdcab606876fe7ad0 --- /dev/null +++ b/vlm/train/uY-XMIbyXec/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8325d49c16dbf0d2540e0bcb051e237f466a61e4206d151aa75ba08f573be046 +size 542189 diff --git a/vlm/train/uY-XMIbyXec/7.png b/vlm/train/uY-XMIbyXec/7.png new file mode 100644 index 0000000000000000000000000000000000000000..92887e3d9848e4282c2a948411f3f751fe4085c8 --- /dev/null +++ b/vlm/train/uY-XMIbyXec/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34ddc8d9f6bb8ea12b401f0d2f4d4b31efa1c8f0b759ae20850aeeb7f464b6bb +size 579229 diff --git a/vlm/train/uY-XMIbyXec/8.png b/vlm/train/uY-XMIbyXec/8.png new file mode 100644 index 0000000000000000000000000000000000000000..968c9e589ed7508d1ec7e3d7bbd67ce59827d03e --- /dev/null +++ b/vlm/train/uY-XMIbyXec/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d28e0f99c4cb63624df8e1e37afdfeb50b00c704782e9afd6d3a4572840eceb +size 496178 diff --git a/vlm/train/uY-XMIbyXec/9.png b/vlm/train/uY-XMIbyXec/9.png new file mode 100644 index 0000000000000000000000000000000000000000..587a752a210fba26da602838d8d7644367e3938b --- /dev/null +++ b/vlm/train/uY-XMIbyXec/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58c9aef80e9533386d00c504a2539c11348c31782d83e4920ef321ad3a2e26ba +size 451072