diff --git a/parse/train/-iu9-C_lan/-iu9-C_lan.md b/parse/train/-iu9-C_lan/-iu9-C_lan.md new file mode 100644 index 0000000000000000000000000000000000000000..e744073e9dd199c4f800b30f34c63046d9c86c27 --- /dev/null +++ b/parse/train/-iu9-C_lan/-iu9-C_lan.md @@ -0,0 +1,373 @@ +# Cycle Self-Training for Domain Adaptation + +Hong Liu Dept of Electronic Engineering Tsinghua University hongliu9903@gmail.com + +Jianmin Wang +School of Software, BNRist +Tsinghua University +jimwang@tsinghua.edu.cn Mingsheng Long⇤ +School of Software, BNRist Tsinghua University +mingsheng@tsinghua.edu.cn + +# Abstract + +Mainstream approaches for unsupervised domain adaptation (UDA) learn domaininvariant representations to narrow the domain shift, which are empirically effective but theoretically challenged by the hardness or impossibility theorems. Recently, self-training has been gaining momentum in UDA, which exploits unlabeled target data by training with target pseudo-labels. However, as corroborated in this work, under distributional shift, the pseudo-labels can be unreliable in terms of their large discrepancy from target ground truth. In this paper, we propose Cycle Self-Training (CST), a principled self-training algorithm that explicitly enforces pseudo-labels to generalize across domains. CST cycles between a forward step and a reverse step until convergence. In the forward step, CST generates target pseudo-labels with a source-trained classifier. In the reverse step, CST trains a target classifier using target pseudo-labels, and then updates the shared representations to make the target classifier perform well on the source data. We introduce the Tsallis entropy as a confidence-friendly regularization to improve the quality of target pseudo-labels. We analyze CST theoretically under realistic assumptions, and provide hard cases where CST recovers target ground truth, while both invariant feature learning and vanilla self-training fail. Empirical results indicate that CST significantly improves over the state-of-the-arts on visual recognition and sentiment analysis benchmarks. + +# 1 Introduction + +Transferring knowledge from a source domain with rich supervision to an unlabeled target domain is an important yet challenging problem. Since deep neural networks are known to be sensitive to subtle change in underlying distributions [70], models trained on one labeled dataset often fail to generalize to another unlabeled dataset [58, 1]. Unsupervised domain adaptation (UDA) addresses the challenge of distributional shift by adapting the source model to the unlabeled target data [50, 43]. + +The mainstream paradigm for UDA is feature adaptation, a.k.a. domain alignment. By reducing the distance of the source and target feature distributions, these methods learn invariant representations to facilitate knowledge transfer between domains [34, 22, 36, 54, 37, 73], with successful applications in various areas such as computer vision [63, 27, 77] and natural language processing [75, 49]. Despite their popularity, the impossibility theories [6] uncovered intrinsic limitations of learning invariant representations when it comes to label shift [74, 32] and shift in the support of domains [29]. + +Recently, self-training (a.k.a. pseudo-labeling) [21, 78, 30, 32, 47, 68] has been gaining momentum as a promising alternative to feature adaptation. Originally tailored to semi-supervised learning, self-training generates pseudo-labels of unlabeled data, and jointly trains the model with source labels and target pseudo-labels [31, 39, 30]. However, the distributional shift in UDA makes pseudo-labeling more difficult. Directly using all pseudo-labels is risky due to accumulated error and even trivial solution [14]. Thus previous works tailor self-training to UDA by selecting trustworthy pseudo-labels. Using confidence threshold or reweighting, recent works try to alleviate the negative effect of domain shift in standard self-training [78, 47], but they can be brittle and require expensive tweaking of the threshold or weight for different tasks, and their performance gain is still inconsistent. + +![](images/a98d2d44c2b974a909fc041a6f8726476f59f9bdcb19e5febe93a6d25e86dd55.jpg) +Figure 1: Standard self-training vs. cycle self-training. In standard self-training, we generate target pseudolabels with a source model, and then train the model with both source ground-truths and target pseudo-labels. In cycle self-training, we train a target classifier with target pseudo-labels in the inner loop, and make the target classifier perform well on the source domain by updating the shared representations in the outer loop. + +In this work, we first analyze the quality of pseudo-labels with or without domain shift to delve deeper into the difficulty of standard self-training in UDA. On popular benchmark datasets, when the source and target are the same, our analysis indicates that the pseudo-label distribution is almost identical to the ground-truth distribution. However, with distributional shift, their discrepancy can be very large with examples of several classes mostly misclassified into other classes. We also study the difficulty of selecting correct pseudo-labels with popular criteria under domain shift. Although entropy and confidence are reasonable selection criteria for correct pseudo-labels without domain shift, the domain shift makes their accuracy decrease sharply. + +Our analysis shows that domain shift makes pseudo-labels unreliable and that self-training on selected target instances with accurate pseudo-labels is less successful. Thereby, more principled improvement of standard self-training should be tailored to UDA and address the domain shift explicitly. In this work, we propose Cycle Self-Training (CST), a principled self-training approach to UDA, which overcomes the limitations of standard self-training (see Figure 1). Different from previous works to select target pseudo-labels with hard-to-tweak protocols, CST learns to generalize the pseudo-labels across domains. Specifically, CST cycles between the use of target pseudo-labels to train a target classifier, and the update of shared representations to make the target classifier perform well on the source data. In contrast to the standard Gibbs entropy that makes the target predictions over-confident, we propose a confidence-friendly uncertainty measure based on the Tsallis entropy in information theory, which adaptively minimizes the uncertainty without manually tuning or setting thresholds. Our method is simple and generally applicable to vision and language tasks with various backbones. + +We empirically evaluate our method on a series of standard UDA benchmarks. Results indicate that CST outperforms previous state-of-the-art methods in 21 out of 25 tasks for object recognition and sentiment classification. Theoretically, we prove that the minimizer of CST objective is endowed with general guarantees of target performance. We also study hard cases on specific distributions, showing that CST recovers target ground-truths while both feature adaptation and standard self-training fail. + +# 2 Preliminaries + +We study unsupervised domain adaptation (UDA). Consider a source distribution $P$ and a target distribution $Q$ over the input-label space $\mathcal { X } \times \mathcal { V }$ . We have access to $n _ { s }$ labeled i.i.d. samples $\widehat { P } = \{ x _ { i } ^ { s } , y _ { i } ^ { s } \} _ { i = 1 } ^ { n _ { s } }$ from $P$ and $n _ { t }$ unlabeled i.i.d. samples $\widehat { Q } = \{ x _ { i } ^ { t } \} _ { i = 1 } ^ { n _ { t } }$ from $Q$ . The model $f$ comprises a feature extractor $h _ { \phi }$ parametrized by $\phi$ and a head (linear classifier) $g _ { \theta }$ parametrized by $\theta$ , i.e. $\bar { f } _ { \theta , \phi } ( x ) = g _ { \theta } ( h _ { \phi } ( x ) )$ . The loss function is $\ell ( \cdot , \cdot )$ . Denote by $L _ { P } ( \theta , \phi ) : = \mathbb { E } _ { ( x , y ) \sim P } \ell ( f _ { \theta , \phi } ( x ) , y )$ the expected error on $P$ . Similarly, we use ${ \cal L } _ { \widehat { P } } ( \theta , \phi )$ to denote the empirical error on dataset $\widehat { P }$ . + +We discuss two mainstream UDA methods and their formulations: feature adaptation and self-training. + +Feature Adaptation trains the model $f$ on the source dataset $\widehat { P }$ , and simultaneously matches the source and target distributions in the representation space $\mathcal { Z } = h ( \mathcal { X } )$ : + +$$ +\operatorname* { m i n } _ { \theta , \phi } L _ { \widehat { P } } ( \theta , \phi ) + d ( h _ { \sharp } \widehat { P } , h _ { \sharp } \widehat { Q } ) . +$$ + +![](images/b47a38073ca7224e33f9ab2c301d27144b2711ff9fb5bf238f28f0fb56f3274f.jpg) +Figure 2: Analysis of pseudo-labels under domain shift on VisDA-2017. Left: Pseudo-label distributions with and without domain shift. Middle: Changes of pseudo-label distributions throughout training. Right: Quality of pseudo-labels under different pseudo-label selection criteria. + +Here, $h _ { \sharp } \widehat { P }$ denotes the pushforward distribution of $\widehat { P }$ , and $d ( \cdot , \cdot )$ is some distribution distance. For instance, Long et al. [34] used maximum mean discrepancy $d _ { \mathrm { M M D } }$ , and Ganin et al. [22] approximated the $\mathcal { H } \Delta \mathcal { H }$ -distance $d _ { \mathcal { H } \Delta \mathcal { H } }$ [7] with adversarial training. Despite its pervasiveness, recent works have shown the intrinsic limitations of feature adaptation under real-world situations [6, 74, 33, 32, 29]. + +Self-Training is considered a promising alternative to feature adaptation. In this work we mainly focus on pseudo-labeling [31, 30]. Stemming from semi-supervised learning, standard self-training trains a source model $f _ { s }$ on the source dataset $\widehat { P }$ $: \mathrm { m i n } _ { \theta _ { s } , \phi _ { s } } L _ { \widehat { P } } ( \theta _ { s } , \phi _ { s } )$ . The target pseudo-labels are then generated by $f _ { s }$ on the target dataset $\widehat { Q }$ . To leverage unlabeled target data, self-training trains the model on the source and target datasets together with source ground-truths and target pseudo-labels: + +$$ +\operatorname* { m i n } _ { \theta , \phi } L _ { \widehat { P } } ( \theta , \phi ) + \mathbb { E } _ { x \sim \widehat { Q } } \ell ( f _ { \theta , \phi } ( x ) , \arg \operatorname* { m a x } _ { i } \{ f _ { \theta , \phi _ { s } } ( x ) _ { [ i ] } \} ) . +$$ + +Self-training also uses label-sharpening as a standard protocol [31, 57]. Another popular variant of pseudo-labeling is the teacher-student model [4, 61], which iteratively improves the quality of pseudo-labels via alternatively replacing $\theta _ { s }$ and $\phi _ { s }$ with $\theta$ and $\phi$ of the previous iteration. + +# 2.1 Limitations of Standard Self-Training + +Standard self-training with pseudo-labels uses unlabeled data efficiently for semi-supervised learning [31, 39, 57]. Here we carry out exploratory studies on the popular VisDA-2017 [45] dataset using ResNet-50 backbones. We find that domain shift makes the pseudo-labels biased towards several classes and thereby unreliable in UDA. See Appendix C.1 for details and results on more datasets. + +Pseudo-label distributions with or without domain shift. We resample the original VisDA-2017 to simulate different relationship between source and target domains: 1) i.i.d., 2) covariate shift, and 3) label shift. We train the model on the three variants of source dataset and use it to generate target pseudo-labels. We show the distributions of target ground-truths and pseudo-labels in Figure 2 (Left). When the source and target distributions are identical, the distribution of pseudo-labels is almost the same as ground-truths, indicating the reliability of pseudo-labels. In contrast, when exposed to label shift or covariate shift, the distribution of pseudo-labels is significantly different from target ground-truths. Note that classes 2, 7, 8 and 12 appear rarely in the target pseudo-labels in the covariate shift setting, indicating that the pseudo-labels are biased towards several classes due to domain shift. Self-training with these pseudo-labels is risky since it may lead to misalignment of distributions and misclassify many examples of classes 2, 7, 8 and 12. + +Change of pseudo-label distributions throughout training. To further study the change of pseudolabels in standard self-training, we compute the total variation (TV) distance between target groundtruths and target pseudo-labels: $\begin{array} { r } { d _ { \mathrm { T V } } ( c , \dot { c ^ { \prime } } ) = \frac { 1 } { 2 } \sum _ { i } \| c _ { i } - c _ { i } ^ { \prime } \| } \end{array}$ , where $c _ { i }$ is the ratio of class $i$ . We plot its change during training in Figure 2 (Middle). Although the error rate of pseudo-labels continues to decrease, $d _ { \mathrm { T V } }$ remains almost unchanged at 0.26 throughout training. Note that $d _ { \mathrm { T V } }$ is the lower bound of the error rate of the pseudo-labels (shown in Appendix C.1). If $d _ { \mathrm { T V } }$ converges to 0.26, then the accuracy of pseudo-labels is upper-bounded by 0.74. This indicates that the important denoising ability [66] of pseudo-labels in standard self-training is hindered by domain shift. + +Difficulty of selecting reliable pseudo-labels under domain shift. To mitigate the negative effect of false pseudo-labels, recent works proposed to select correct pseudo-labels based on thresholding the entropy or confidence criteria [35, 21, 37, 57]. However, it remains unclear whether these strategies are still effective under domain shift. Here we compare the quality of pseudo-labels selected by different strategies with or without domain shift. For each strategy, we compute False Positive Rate and True Positive Rate for different thresholds and plot its ROC curve in Figure 2 (Right). When the source and target distributions are identical, both entropy and confidence are reasonable strategies for selecting correct pseudo-labels $( \mathrm { A U C } { = } 0 . 8 9 )$ ). However, when the target pseudo-labels are generated by the source model, the quality of pseudo-labels decreases sharply under domain shift $\mathrm { \Delta A U C { = } 0 . 7 8 }$ ). + +# 3 Approach + +We present Cycle Self-Training (CST) to improve pseudo-labels under domain shift. An overview of our method is given in Figure 1. Cycle Self-Training iterates between a forward step and a reverse step to make self-trained classifiers generalize well on both target and source domains. + +# 3.1 Cycle Self-Training + +Forward Step. Similar to standard self-training, we have a source classifier $\theta _ { s }$ trained on top of the shared representations $\phi$ on the labeled source domain, and use it to generate target pseudo-labels as + +$$ +y ^ { \prime } = \arg \operatorname* { m a x } _ { i } \{ f _ { \theta _ { s } , \phi } ( x ) _ { [ i ] } \} , +$$ + +for each $x$ in the target dataset $\widehat { Q }$ . Traditional self-training methods use confidence thresholding or reweighting to select reliable pseudo-labels. For example, Sohn et al. [57] select pseudo-labels with softmax value and Long et al. [37] add entropy reweighting to rely on examples with more confidence prediction. However, the output of deep networks is usually miscalibrated [25], and is not necessarily related to the ground-truth confidence even on the same distribution. In domain adaptation, as shown in Section 2.1, the discrepancy between the source and target domains makes pseudo-labels even more unreliable, and the performance of commonly used selection strategies is also unsatisfactory. Another drawback is the expensive tweaking in order to find the optimal confidence threshold for new tasks. To better apply self-training to domain adaptation, we expect that the model can gradually refine the pseudo-labels by itself without the cumbersome selection or thresholding. + +Reverse Step. We design a complementary step with the following insights to improve self-training. Intuitively, the labels on the source domain contain both useful information that can transfer to the target domain and harmful information that can make pseudo-labels incorrect. Similarly, reliable pseudo-labels on the target domain can transfer to the source domain in turn, while models trained with incorrect pseudo-labels on the target domain cannot transfer to the source domain. In this sense, if we explicitly train the model to make target pseudo-labels informative of the source domain, we can gradually make the pseudo-labels more accurate and learn to generalize to the target domain. + +Specifically, with the pseudo-labels $y ^ { \prime }$ generated by the source classifier $\theta _ { s }$ at hand as in equation 3, we train a target head $\hat { \theta } _ { t } ( \phi )$ on top of the representation $\phi$ with pseudo-labels on the target domain $\widehat { Q }$ + +$$ +\hat { \theta } _ { t } ( \phi ) = \underset { \theta } { \arg \operatorname* { m i n } } \mathbb { E } _ { \boldsymbol { x } \sim \hat { \boldsymbol { Q } } } \ell ( f _ { \theta , \phi } ( \boldsymbol { x } ) , y ^ { \prime } ) . +$$ + +We wish to make the target pseudo-labels informative of the source domain and gradually refine them. To this end, we update the shared feature extractor $\phi$ to predict accurately on the source domain and jointly enforce the target classifier $\hat { \theta } _ { t } ( \phi )$ to perform well on the source domain. This naturally leads to the objective of Cycle Self-Training: + +$$ +\operatorname* { m i n i m i z e } _ { \theta _ { s } , \phi } L _ { \mathrm { C y c l e } } ( \theta _ { s } , \phi ) : = L _ { \hat { P } } ( \theta _ { s } , \phi ) + L _ { \hat { P } } ( \hat { \theta } _ { t } ( \phi ) , \phi ) . +$$ + +Bi-level Optimization. The objective in equation 5 relies on the solution $\hat { \theta } _ { t } ( \phi )$ to the objective in equation 4. Thus, CST formulates a bi-level optimization problem. In the inner loop we generate target pseudo-labels with the source classifier (equation 3), and train a target classifier with target pseudo-labels (equation 4). After each inner loop, we update the feature extractor $\phi$ for one step in the outer loop (equation 5), and start a new inner loop again. However, since the inner loop of the optimization in equation 4 only involves the light-weight linear head $\theta _ { t }$ , we propose to calculate the analytical form of $\hat { \theta } _ { t } ( \phi )$ and directly back-propagate to the feature extractor $\phi$ instead of calculating the second-order derivatives as in MAML [18]. The resulting framework is as fast as training two heads jointly. Also note that the solution $\hat { \theta } _ { t } ( \phi )$ relies on $\theta _ { s }$ implicitly through $y ^ { \prime }$ . However, both standard self-training and our implementation use label sharpening, making $y ^ { \prime }$ not differentiable. Thus we follow vanilla self-training and do not consider the gradient of $\hat { \theta } _ { t } ( \phi )$ w.r.t. $y ^ { \prime }$ in the outer loop optimization. We defer the derivation and implementation of bi-level optimization to Appendix B.2. + +# 3.2 Tsallis Entropy Minimization + +Gibbs entropy is widely used by existing semi-supervised learning methods to regularize the model output and minimize the uncertainty of predictions on unlabeled data [24]. In this work, we generalize Gibbs entropy to Tsallis entropy [62] in information theory. Suppose the softmax output of a model is $\boldsymbol { y } \in \mathbb { R } ^ { K }$ , then the $\alpha$ -Tsallis entropy is defined as + +$$ +S _ { \alpha } ( y ) = \frac { 1 } { \alpha - 1 } \left( 1 - \sum y _ { [ i ] } ^ { \alpha } \right) , +$$ + +where $\alpha > 0$ is the entropic-index. Note that $\begin{array} { r } { \operatorname* { l i m } _ { \alpha \to 1 } S _ { \alpha } ( y ) = \sum _ { i } - y _ { [ i ] } \mathrm { l o g } ( y _ { [ i ] } ) } \end{array}$ which exactly recovers the Gibbs entropy. When $\alpha = 2$ , $S _ { \alpha } ( y )$ becomes the Gini impurity $1 - \textstyle \sum _ { i } y _ { [ i ] } ^ { 2 }$ . + +We propose to control the uncertainty of target pseudo-labels based on Tsallis entropy minimization: + +$$ +L _ { \widehat { Q } , \mathrm { T s a l l i s } , \alpha } ( \theta , \phi ) : = \mathbb { E } _ { \boldsymbol { x } \sim \widehat { Q } } S _ { \alpha } ( f _ { \theta , \phi } ( \boldsymbol { x } ) ) . +$$ + +Figure 3 shows the change of Tsallis entropy with different entropic-indices $\alpha$ for binary problems. Intuitively, smaller $\alpha$ exerts more penalization on uncertain predictions and larger $\alpha$ allows several scores $y _ { i }$ ’s to be similar. This is critical in self-training since an overly small $\alpha$ (as in Gibbs entropy) will make the incorrect dimension of pseudo-labels close to 1 and have no chance to be corrected throughout training. In Section 5.4, we further verify this property with experiments. + +![](images/1ee6c84356d7e7a52e7c51e6a8539defd26596a9b539b8488d28b38233853582.jpg) +Figure 3: Tsallis entropy vs. entropic-index $\alpha$ + +An important improvement of the Tsallis entropy over Gibbs entropy is that it can choose the suitable measure of uncertainty for different systems to avoid over-confidence caused by overly penalizing the uncertain pseudo-labels. To automatically find the suitable $\alpha$ , we adopt a similar strategy as Section 3.1. The intuition is that if we use the suitable entropic-index $\alpha$ to train the source classifier $\theta _ { s , \alpha }$ , the target pseudo-labels generated by $\theta _ { s , \alpha }$ will contain desirable knowledge of the source dataset, i.e. a target classifier $\theta _ { t , \alpha }$ trained with these pseudo-labels will perform well on the source domain. Therefore, we semi-supervisedly train a classifier $\widehat { \theta } _ { s , \alpha }$ on the source domain with the $\alpha$ -Tsallis entropy regularization $L _ { \widehat { Q } , \mathrm { T s a l l i s } , \alpha }$ on the target domain as: $\hat { \theta } _ { s , \alpha } = \arg \operatorname* { m i n } _ { \theta } L _ { \widehat { P } } ( \theta , \phi ) + L _ { \widehat { Q } , \mathrm { T s a l l i s } , \alpha } ( \theta , \phi )$ , from which we obtain the target pseudo-labels. Then we train another head $\widehat { \theta } _ { t , \alpha }$ with target pseudo-labels. We automatically find $\alpha$ by minimizing the loss of $\widehat { \theta } _ { t , \alpha }$ on the source data: + +$$ +\hat { \alpha } = \underset { \alpha \in [ 1 , 2 ] } { \arg \operatorname* { m i n } } L _ { \widehat { P } } ( \widehat { \theta } _ { t , \alpha } , \phi ) +$$ + +To solve equation 10, we discretize the feasible region [1, 2] of $\alpha$ and use discrete optimization to lower computational cost. We also update $\alpha$ at the start of each epoch, since we found more frequent + +# Algorithm 1 Cycle Self-Training (CST) + +1: Input: source dataset $\widehat { P }$ and target dataset $\widehat { Q }$ . +2: for epoch $= 0$ to MaxEpoch do +3: Select $\hat { \alpha }$ as equation 10 at the start of each epoch. +4: for $t = 0$ to MaxIter do +5: Forward Step +6: Generate pseudo-labels on the target domain with $\phi$ and $\theta _ { s }$ ${ \mathrm { ~ \mu ~ } } _ { 3 } \colon y ^ { \prime } = \arg \operatorname* { m a x } _ { i } \{ f _ { \theta _ { s } , \phi } ( x ) _ { [ i ] } \}$ . +7: Reverse Step +8: Train a target head $\hat { \theta } _ { t } ( \phi )$ with target pseudo-labels $y ^ { \prime }$ on the feature extractor $\phi$ : +$\hat { \theta } _ { t } ( \phi ) = \underset { \theta } { \arg \operatorname* { m i n } } \mathbb { E } _ { x \sim \hat { Q } } \ell ( f _ { \theta , \phi } ( x ) , y ^ { \prime } ) .$ +9: Update the feature extractor $\phi$ and the source head $\theta _ { s }$ to make $\hat { \theta } _ { t } ( \phi )$ perform well on the +source dataset and minimize the $\hat { \alpha }$ -Tsallis entropy on the target dataset: + +$$ +\begin{array} { r l } & { \phi \phi - \eta \nabla _ { \phi } [ L _ { \widehat { P } } ( \theta _ { s } , \phi ) + L _ { \widehat { P } } ( \widehat { \theta } _ { t } ( \phi ) , \phi ) + L _ { \widehat { Q } , \mathrm { T s a l l i s } , \widehat { \alpha } } ( \theta _ { s } , \phi ) ] . } \\ & { \qquad \theta _ { s } \theta _ { s } - \eta \nabla _ { \theta _ { s } } [ L _ { \widehat { P } } ( \theta _ { s } , \phi ) + L _ { \widehat { Q } , \mathrm { T s a l l i s } , \widehat { \alpha } } ( \theta _ { s } , \phi ) ] . } \end{array} +$$ + +10: end for +11: end for + +update leads to no performance gain. Details are deferred to Appendix B.3. Finally, with the optimal $\hat { \alpha }$ found, we add the $\hat { \alpha }$ -Tsallis entropy minimization term $L _ { \widehat { Q } , \mathrm { T s a l l i s } , \widehat { \alpha } }$ to the overall objective: + +$$ +\operatorname* { m i n i m i z e } _ { \theta _ { s } , \phi } L _ { \mathrm { C y c l e } } ( \theta _ { s } , \phi ) + L _ { \hat { Q } , \mathrm { T s a l l i s } , \hat { \alpha } } ( \theta _ { s } , \phi ) . +$$ + +In summary, Algorithm 1 depicts the complete training procedure of Cycle Self-Training (CST). + +# 4 Theoretical Analysis + +We analyze the properties of CST theoretically. First, we prove that the minimizer of the CST loss $L _ { \mathrm { C S T } } ( f _ { s } , f _ { t } )$ will lead to small target loss $\mathrm { E r r } _ { Q } ( f _ { s } )$ under a simple but realistic expansion assumption. Then, we further demonstrate a concrete instantiation where cycle self-training provably recovers the target ground truth, but both feature adaptation and standard self-training fail. Due to space limit, we state the main results here and defer all proof details to Appendix $A$ . + +# 4.1 CST Provably Works under the Expansion Assumption + +We start from a $K$ -way classification model, $f : \mathcal { X } \to [ 0 , 1 ] ^ { K } \in \mathcal { F }$ and ${ \tilde { f } } ( x ) : = \arg \operatorname* { m a x } _ { i } f ( x ) _ { [ i ] }$ denotes the prediction. Denote by $P _ { i }$ the conditional distribution of $P$ given $y = i$ . Assume the supports of $P _ { i }$ and $P _ { j }$ are disjoint for $i \neq j$ . The definition is similar for $Q _ { i }$ . We further Assume $P ( y = i ) = Q ( y = i )$ . For any $x \in \mathcal { X }$ , $\mathcal { N } ( x )$ is defined as the neighboring set of $x$ with a proper metric $d ( \cdot , \cdot )$ $\vert , \mathcal { N } ( x ) = \{ x ^ { \prime } : d ( x , x ^ { \prime } ) \leq \xi \}$ . ${ \mathcal { N } } ( A ) : = \cup _ { x \in A } { \mathcal { N } } ( x )$ . Denote the expected error on the target domain by $\mathrm { E r r } _ { Q } ( f ) : = \mathbb { E } _ { ( x , y ) \sim Q } \mathbb { I } ( \tilde { f } ( x ) \neq y )$ . + +We study the CST algorithm under the expansion assumption of the mixture distribution [66, 11]. Intuitively, this assumption indicates that the conditional distributions $P _ { i }$ and $Q _ { i }$ are closely located and regularly shaped, enabling knowledge transfer from the source domain to the target domain. + +Definition 1 $[ q , \epsilon )$ -constant expansion [66]). We say $P$ and $Q$ satisfy $( q , \epsilon )$ -constant expansion for some constant $q , \epsilon \in ( 0 , 1 )$ , if for any set $A \in { \mathcal { X } }$ and any $i \in [ K ]$ with ${ \textstyle \frac { 1 } { 2 } } > P _ { \frac { 1 } { 2 } ( P _ { i } + Q _ { i } ) } ( A ) > q$ , we have $P _ { \frac { 1 } { 2 } ( P _ { i } + Q _ { i } ) } ( { \mathcal { N } } ( A ) \backslash A ) > \operatorname* { m i n } \{ \epsilon , P _ { \frac { 1 } { 2 } ( P _ { i } + Q _ { i } ) } ( A ) \} .$ . + +Based on this expansion assumption, we consider a robustness-constrained version of CST. Later we will show that the robustness is closely related to the uncertainty. Denote by $f _ { s }$ the source model and $f _ { t }$ the model trained on the target with pseudo-labels. Let $R ( f _ { t } ) : = P _ { \frac { 1 } { 2 } ( P + Q ) } ( \{ x : \exists x ^ { \prime } \in$ $\mathcal { N } ( x ) , \tilde { f } _ { t } ( x ) \neq \tilde { f } _ { t } ( x ^ { \prime } ) \} )$ represent the robustness [66] of $f _ { t }$ on $P$ and $Q$ . Suppose $\mathbb { E } _ { ( x , y ) \sim Q } \mathbb { I } ( \tilde { f } _ { s } ( x ) \neq$ $\tilde { f } _ { t } ( x ) ) \leq c$ and $R ( f _ { t } ) \leq \rho$ . The following theorem states that when $f _ { s }$ and $f _ { t }$ behave similarly on the target domain $Q$ and $f _ { t }$ is robust to local changes in input, the minimizer of the cycle source error $\mathrm { E r r } _ { P } ( f _ { t } )$ will guarantee low error of $f _ { s }$ on the target domain $Q$ . + +Theorem 1. Suppose Definition 1 holds for $P$ and $Q$ . For any $f _ { s } , f _ { t }$ satisfying $\mathbb { E } _ { ( x , y ) \sim Q } \mathbb { I } ( \tilde { f } _ { s } ( x ) \neq$ $\tilde { f } _ { t } ( x ) ) \leq c$ and $R ( f _ { t } ) \leq \rho _ { : }$ , the expected error of $f _ { s }$ on the target domain $Q$ is bounded, + +$$ +\mathrm { E r r } _ { Q } ( f _ { s } ) \le \mathrm { E r r } _ { P } ( f _ { t } ) + c + 2 q + \frac { \rho } { \mathrm { m i n } \{ \epsilon , q \} } . +$$ + +To further relate the expected error with the CST training objective and obtain finite-sample guarantee, we use the multi-class margin loss: $l _ { \gamma } ( f ( x ) , y ) : = \bar { \psi _ { \gamma } } ( - { \cal M } ( f ( x ) , y ) )$ , where $\mathcal { M } ( v , y ) =$ $v _ { [ y ] } - \operatorname* { m a x } _ { y ^ { \prime } \ne y } v _ { [ y ^ { \prime } ] }$ and $\psi _ { \gamma }$ is the ramp function. We then extend the margin loss: $\mathcal { M } ( v ) =$ $\begin{array} { r } { \operatorname* { m a x } _ { y } \big ( v _ { [ y ] } - \operatorname* { m a x } _ { y ^ { \prime } \neq y } v _ { [ y ^ { \prime } ] } \big ) } \end{array}$ (The difference between the largest and the second largest scores in $v )$ , and $\dot { l } _ { \gamma } ( f _ { t } ( x ) , f _ { s } ( x ) ) : = \psi _ { \gamma } ( - \mathcal { M } ( f _ { t } ( x ) , \tilde { f } _ { s } ( x ) ) )$ . Further suppose $f _ { [ i ] }$ is $L _ { f }$ -Lipschitz w.r.t. the metric $d ( \cdot , \cdot )$ and $\tau : = 1 - 2 L _ { f } \xi \operatorname* { m i n } \{ \epsilon , q \} > 0$ . Consider the following training objective for CST, denoted by $L _ { \mathrm { C S T } } ( f _ { s } , f _ { t } )$ , where $\mathcal { L } _ { \widehat { P } , \gamma } ( f _ { t } ) : = \mathbb { E } _ { ( x , y ) \sim \widehat { P } } l _ { \gamma } ( f _ { t } ( x ) , y )$ corresponds to the cycle source loss in equation 5, $L _ { \widehat { Q } , \gamma } ( f _ { t } , f _ { s } ) : = \mathbb { E } _ { ( x , y ) \sim \widehat { Q } } l _ { \gamma } ( f _ { t } ( x ) , f _ { s } ( x ) )$ is consistent with the target loss in equation 4, and $\mathcal { M } ( f _ { t } ( x ) )$ is closely related to the uncertainty of predictions in equation 11. + +$$ +\operatorname* { m i n } L _ { \mathrm { C S T } } ( f _ { s } , f _ { t } ) : = L _ { \widehat { P } , \gamma } ( f _ { t } ) + L _ { \widehat { Q } , \gamma } ( f _ { t } , f _ { s } ) + \frac { 1 - \mathbb { E } _ { ( x , y ) \sim \frac { 1 } { 2 } ( \widehat { P } + \widehat { Q } ) } \mathcal { M } ( f _ { t } ( x ) ) } { \tau } . +$$ + +The following theorem shows that the minimizer of the training objective $L _ { \mathrm { C S T } } ( f _ { s } , f _ { t } )$ guarantees low population error of $f _ { s }$ on the target domain $Q$ . + +Theorem 2. $ { \widehat { \mathcal { R } } } ( \mathcal { F } | _ { { \widehat { P } } } )$ denotes the empirical Rademacher complexity of function class $\mathcal { F }$ on dataset $\widehat { P }$ . For any solution of equation $^ { 1 3 }$ and $\gamma > 0$ , with probability larger than $1 - \delta$ , + +$\mathrm { E r r } _ { Q } ( f _ { s } ) \leq L _ { \mathrm { C S T } } ( f _ { s } , f _ { t } ) + 2 q + \frac { 4 K } { \gamma } \left[ \widehat { R } ( \mathcal { F } | _ { \widehat { P } } ) + \widehat { \mathcal { R } } ( \tilde { \mathcal { F } } \times \mathcal { F } | _ { \widehat { Q } } ) \right] + \frac { 2 } { \tau } \left[ \widehat { R } ( \mathcal { F } | _ { \widehat { P } } ) + \widehat { \mathcal { R } } ( \mathcal { F } | _ { \widehat { Q } } ) \right] + \zeta ,$ where $\zeta = O \left( \sqrt { \log ( 1 / \delta ) / n _ { s } } + \sqrt { \log ( 1 / \delta ) / n _ { t } } \right)$ is a low-order term. $\tilde { \mathcal { F } } \times \mathcal { F }$ refers to the function class $\{ x f ( \overleftarrow { x } ) _ { [ \tilde { f } ^ { \prime } ( x ) ] } : f , f ^ { \prime } \in \mathcal { F } \} _ { }$ . + +Main insights. Theorem 2 justifies CST under the expansion assumption. The generalization error of the classifier $f _ { s }$ on the target domain is bounded with the CST loss objective $L _ { \mathrm { C S T } } ( f _ { s } , f _ { t } )$ , the intrinsic property of the data distribution $q$ , and the complexity of the function classes. In our algorithm, $\bar { L _ { \mathrm { C S T } } } ( f _ { s } , f _ { t } )$ is minimized by the neural networks and $q$ is a constant. The complexity of the function class can be controlled with proper regularization. + +# 4.2 Hard Case for Feature Adaptation and Standard Self-Training + +To gain more insight, we study UDA in a quadratic neural network $f _ { \theta , \phi } ( x ) = \theta ^ { \top } ( \phi ^ { \top } x ) ^ { \odot 2 }$ , where $\odot$ is element-wise power. In UDA, the source can have multiple solutions but we aim to learn the one working on the target [34]. We design the underlying distributions $p$ and $q$ in Table 6 to reflect this. Consider the following $P$ and $Q$ . $x _ { [ 1 ] }$ and $x _ { [ 2 ] }$ are sampled i.i.d. from distribution $p$ on $P$ , and from $q$ on $Q$ . For $i \in [ 3 , d ]$ , $x _ { [ i ] } = \sigma _ { i } x _ { [ 2 ] }$ on $P$ and $x _ { [ i ] } = \sigma _ { i } x _ { [ 1 ] }$ on $Q$ . $\sigma _ { i } \in \{ \pm 1 \}$ are i.i.d. and uniform. We also assume realizability: for all $y = x _ { [ 1 ] } ^ { 2 } - x _ { [ 2 ] } ^ { 2 }$ $i \in [ 2 , d ]$ for both source and target. Note that are solutions to $P$ but only $y = x _ { [ 1 ] } ^ { 2 } - x _ { [ 2 ] } ^ { 2 }$ $y = x _ { [ 1 ] } ^ { 2 } - x _ { [ i ] } ^ { 2 }$ [1] [i]works on $Q$ . We visualize this specialized setting in Figure 4. + +Table 1: The design of $p$ and $q$ . + +
Distribution-1+10
Source p[0.050.050.90
Target q0.250.250.50
+ +![](images/c5b098da78c5868e7858cc364d018d8dfcb55a8acb4b0000cd134653d0e02a42.jpg) +Figure 4: The hard case where $d = 3$ . Green dots for $y = 1$ , red dots for $y = 0$ , and blue dots for $y = - 1$ . The grey curve is the classification boundary of different features. The good feature $x _ { [ 1 ] } ^ { 2 } - x _ { [ 2 ] } ^ { 2 }$ works on the target domain (shown in (a) and (c)), whereas the spurious feature $x _ { [ 1 ] } ^ { 2 } - x _ { [ 3 ] } ^ { 2 }$ only works on the source domain (shown in (b) andwhile CST learns tion 4.2, we show that feature adaptation and standard self-training learn . $x _ { [ 1 ] } ^ { 2 } - x _ { [ 3 ] } ^ { 2 }$ , $x _ { [ 1 ] } ^ { 2 } - x _ { [ 2 ] } ^ { 2 }$ + +To make the features more tractable, we study the norm-constrained version of the algorithms (details are deferred to Section A.3.2). We compare the features learned by feature adaptation, standard selftraining, and CST. Intuitively, feature adaptation fails because the ideal target solution $y = x _ { [ 1 ] } ^ { 2 } - x _ { [ 2 ] } ^ { 2 }$ has larger distance in the feature space than other spurious solutions y = x2[1] $y = x _ { [ 1 ] } ^ { 2 } - x _ { [ i ] } ^ { 2 }$ x2[i] . Standard selftraining also fails since it will choose randomly among all solutions. In comparison, CST can recover the ground truth, because it can distinguish the spurious solution resulting in bad pseudo-labels. A classifier trained with those pseudo-labels cannot work on the source domain in turn. This intuition is rigorously justified in the following two theorems. + +Theorem 3. For $\epsilon \in ( 0 , 0 . 5 )$ , the following statements hold for feature adaptation and self-training: + +• For failure rate $\xi > 0$ , and target dataset size $n _ { t } > \Theta ( \log { \frac { 1 } { \xi } } )$ , with probability at least $1 - \xi$ over the sampling of target data, the solution $( \hat { \theta } _ { \mathrm { F A } } , \hat { \phi } _ { \mathrm { F A } } )$ found by feature adaptation satisfies + +$$ +\mathrm { E r r } _ { Q } ( \hat { \theta } _ { \mathrm { F A } } , \hat { \phi } _ { \mathrm { F A } } ) \geq \epsilon . +$$ + +• With probability at least $1 - { \frac { 1 } { d - 1 } }$ , the solution $( \hat { \theta } _ { \mathrm { S T } } , \hat { \phi } _ { \mathrm { S T } } )$ of standard self-training satisfies + +$$ +\mathrm { E r r } _ { Q } ( \hat { \theta } _ { \mathrm { S T } } , \hat { \phi } _ { \mathrm { S T } } ) \geq \epsilon . +$$ + +Theorem 4. For failure rate $\xi > 0$ , and target dataset size $\begin{array} { r } { n _ { t } > \Theta ( \log { \frac { 1 } { \xi } } ) } \end{array}$ , with probability at least $1 - \xi ,$ , the solution of $C S T ( \hat { \phi } _ { \mathrm { C S T } } , \hat { \theta } _ { \mathrm { C S T } } )$ recovers the ground truth of the target dataset: + +$$ +\mathrm { E r r } _ { Q } ( \hat { \theta } _ { \mathrm { C S T } } , \hat { \phi } _ { \mathrm { C S T } } ) = 0 . +$$ + +# 5 Experiments + +We test the performance of the proposed method on both vision and language datasets. Cycle SelfTraining (CST) consistently outperforms state-of-the-art feature adaptation and self-training methods. Code is available at https://github.com/Liuhong99/CST. + +# 5.1 Setup + +Datasets. We experiment on visual object recognition and linguistic sentiment classification tasks: Office-Home [64] has 65 classes from four kinds of environment with large domain gap: Artistic (Ar), Clip Art (Cl), Product $( \mathbf { P r } )$ , and Real-World (Rw); VisDA-2017 [45] is a large-scale UDA dataset with two domains named Synthetic and Real. The datasets consist of over $2 0 0 \mathrm { k }$ images from 12 categories of objects; Amazon Review [10] is a linguistic sentiment classification dataset of product reviews in four products: Books $\mathbf { ( B ) }$ , DVDs (D), Electronics (E), and Kitchen $\mathbf { \eta } ( \mathbf { K } )$ . + +Implementation. We use ResNet-50 [26] (pretrained on ImageNet [53]) as feature extractors for vision tasks, and BERT [16] for linguistic tasks. On VisDA-2017, we also provide results of ResNet101 to include more baselines. We use cross-entropy loss for classification on the source domain. When training the target head $\widehat { \theta } _ { t }$ and updating the feature extractor with CST, we use squared loss to get the analytical solution of $\widehat { \theta } _ { t }$ directly and avoid calculating second order derivatives as metalearning [18]. Details on adapting squared loss to multi-class classification are deferred to Appendix B. We adopt SGD with initial learning rate $\eta _ { 0 } = 2 e - 3$ for image classification and $\eta _ { 0 } = 5 e - 4$ for sentiment classification. Following standard protocol in [26], we decay the learning rate by 0.1 each 50 epochs until 150 epochs. We run all the tasks 3 times and report mean and deviation in top-1 accuracy. For VisDA-2017, we report the mean class accuracy. Following Theorem 2, we also enhance CST with sharpness-aware regularization [19] $( \mathbf { C S T + S A M } )$ , which help regularize the Lipschitzness of the function class. Due to space limit, we report mean accuracies in Tables 2 and 3 and defer standard deviation to Appendix C. + +# 5.2 Baselines + +We compare with two lines of works in domain adaptation: feature adaptation and self-training. We also compare with more complex state-of-the-arts and create stronger baselines by combining feature adaptation and self-training. + +Feature Adaptation: DANN [22], MCD [54], CDAN [37] (which improves DANN with pseudolabel conditioning), MDD [73] (which improves previous domain adaptation with margin theory), Implicit Alignment (IA) [28] (which improves MDD to deal with label shift). + +Self-Training. We include VAT [40], MixMatch [8] and FixMatch [57] in the semi-supervised learning literature as self-training methods. We also compare with self-training methods for UDA: CBST [77], which considers class imbalance in standard self-training, and KLD [78], which improves CBST with label regularization. However, these methods involve tricks specified for convolutional networks. Thus, in sentiment classification tasks where we use BERT backbones, we compare with other consistency regularization baselines: VAT [40], VAT $^ { \cdot } +$ Entropy Minimization. + +Feature Adaptation $^ +$ Self-Training. DIRT-T [56] combines DANN, VAT, and entropy minimization. We also create more powerful baselines: CDAN $^ +$ VAT $^ +$ Entropy and MDD $+$ Fixmatch. + +Other SOTA. AFN [69] boosts transferability by large norm. STAR [38] aligns domains with stochastic classifiers. SENTRY [48] selects confident examples with a committee of random augmentations. + +# 5.3 Results + +Results on 12 pairs of Office-Home tasks are shown in Table 2. When domain shift is large, standard self-training methods such as VAT and FixMatch suffer from the decay in pseudo-label quality. CST outperforms feature adaptation and self-training methods significantly in 9 out of 12 tasks. Note that CST does not involve manually setting confidence threshold or reweighting. + +Table 2: Accuracy $( \% )$ on Office-Home for unsupervised domain adaptation (ResNet-50). + +
Method|Ar-Cl Ar-Pr Ar-Rw Cl-Ar Cl-Pr Cl-Rw Pr-Ar Pr-CIPr-Rw Rw-Ar Rw-Cl Rw-Pr|Avg.
DANN [22]45.659.370.147.058.560.946.143.768.563.251.876.857.6
CDAN [37]50.770.676.057.670.070.057.450.977.370.956.781.665.8
CDAN+VAT+Entropy52.271.576.461.170.367.859.554.478.673.259.082.767.3
FixMatch [57]51.874.280.163.573.861.364.751.480.073.356.881.767.7
MDD [73]54.973.777.860.071.471.861.253.678.172.560.282.368.1
MDD+IA [28]56.277.979.264.473.174.464.254.279.971.258.183.169.5
SENTRY [48]61.877.480.166.371.674.766.863.080.974.066.384.172.2
CST59.079.683.468.477.176.768.956.483.075.362.285.1|73.0
+ +Table 3: Accuracy $( \% )$ on Multi-Domain Sentiment Dataset for domain adaptation with BERT. + +
MethodB-DB-EB-KD-BD-ED-KE-BE-DE-KK-BK-DK-EAvg.
Source-only89.788.490.990.188.590.286.988.591.587.687.391.289.2
DANN [22]90.289.590.991.090.690.287.187.592.887.887.693.289.9
VAT[40]90.691.091.790.890.892.087.286.992.686.987.792.990.1
VAT+Entropy90.491.391.591.091.192.487.586.392.486.587.593.190.1
MDD [73]90.490.491.890.290.991.087.586.392.589.087.992.190.0
CST91.592.992.691.992.693.590.289.493.887.988.393.591.5
+ +Table 4 shows the results on VisDA-2017. CST surpasses state-of-the-arts with ResNet-50 and ResNet101 backbones. We also combine feature adaptation and self-training (DIRT-T, CDAN+VAT+entropy and MDD $^ { + }$ FixMatch) to test if feature adaptation alleviates the negative effect of domain shift in standard self-training. Results indicate that CST is a better solution than simple combination. + +While most traditional self-training methods include techniques specified for ConvNets such as Mixup [72], CST is a universal method and can directly work on sentiment classification by simply replacing the head and training objective of BERT [16]. In Table 3, most feature adaptation baselines improve over source only marginally, but CST outperforms all baselines on most tasks significantly. + +# 5.4 Analysis + +Ablation Study. We study the role of each part of CST in self-training. CST w/o Tsallis removes the Tsallis entropy $L _ { \mathrm { T s a l l i s } , \alpha }$ . CST $+$ Entropy replaces the Tsallis entropy with standard entropy. FixMatch+Tsallis adds $L _ { \mathrm { T s a l l i s } , \alpha }$ to standard self-training. Observations are shown in Table 5. $\mathrm { C S T + l }$ Entropy performs $3 . 7 \%$ worse than CST, indicating that Tsallis entropy is a better regularization for pseudolabels than standard entropy. CST performs $5 . 4 \%$ better than FixMatch, indicating that CST is better adapted to domain shift than standard self-training. While FixMatch+Tsallis outperforms FixMatch, it is still $3 . 6 \%$ behind CST, with much larger total variation distance $d _ { \mathrm { T V } }$ between pseudo-labels and ground-truths, indicating that CST makes pseudo-labels more reliable than standard self-training under domain shift. + +Table 5: Ablation on VisDA-2017. + +
MethodAccuracy ↑|drv↓
FixMatch [57]74.5 ± 0.20.22
Fixmatch+Tsallis76.3 ± 0.80.15
CST w/o Tsallis72.0 ± 0.40.16
CST+Entropy76.2 ± 0.60.20
CST79.9 ± 0.50.12
+ +Quality of Pseudo-labels. We visualize the error of pseudo-labels during training on VisDA-2017 in Figure 5 (Left). The error of target classifier $\theta _ { t }$ on the source domain decreases quickly in training, when both the error of pseudo-labels (error of $\theta _ { s }$ on $Q$ ) and the total variation (TV) distance between pseudo-labels and ground-truths continue to decay, indicating that CST gradually refines pseudolabels. This forms a clear contrast to standard self-training as visualized in Figure 2 (Middle), where the distance $d _ { \mathrm { T V } }$ remains nearly unchanged throughout training. + +Comparison of Gibbs entropy and Tsallis entropy. We compare the pseudo-labels learned with standard Gibbs entropy and Tsallis entropy on $\mathbf { A r { } C l }$ with ResNet-50 at epoch 40. We compute the difference between the largest and the second largest softmax scores of each target example and plot the histogram in Figure 5 (Right). Gibbs entropy makes the largest softmax output close to 1, indicating over-confidence. In this case, if the prediction is wrong, it can be hard to correct it using self-training. In contrast, Tsallis entropy allows the largest and the second largest scores to be similar. + +Table 4: Mean Class Accuracy $( \% )$ for unsupervised domain adaptation on VisDA-2017. + +
MethodResNet-50ResNet-101MethodResNet-50ResNet-101
DANN [22]69.379.5CBST[77]176.4 ± 0.9
VAT [40]68.0±0.373.4 ± 0.5KLD [78]178.1 ± 0.2
DIRT-T [56]68.2 ± 0.377.2 ± 0.5MDD[73]74.681.6 ± 0.3
MCD [54]69.277.7AFN [69]176.1
CDAN [37]70.080.1MDD+IA [28]75.81
CDAN+VAT+Entropy76.5 ± 0.580.4± 0.7MDD+FixMatch77.8 ± 0.382.4 ± 0.4
MixMatch69.3 ± 0.477.0 ± 0.5STAR [38]182.7
FixMatch [57]74.5 ± 0.279.5 ± 0.3SENTRY [48]76.71
CST79.9 ± 0.584.8± 0.6CST+SAM80.6 ± 0.586.5 ± 0.7
+ +![](images/b438078399476e8bc688a6c6252f161f15cda1ea9f72241d501cd24f973a4fac.jpg) +Figure 5: Analysis. Left: Error of pseudo-labels and reverse pseudo-labels. The error of target classifier $\theta _ { t }$ on the source domain decreases, indicating the quality of pseudo-labels is refined. Right: Histograms of the difference between the largest and the second largest softmax scores. Tsallis entropy avoids over-confidence. + +# 6 Related Work + +Self-Training. Self-training is a mainstream technique for semi-supervised learning [13]. In this work, we focus on pseudo-labeling [52, 31, 2], which uses unlabeled data by training on pseudo-labels generated by a source model. Other lines of work study consistency regularization [4, 51, 55, 40]. Recent works demonstrate the power of such methods [67, 57, 23]. Equipped with proper training techniques, these methods can achieve comparable results as standard training that uses much more labeled examples [17]. Zoph et al. [76] compare self-training to pre-training and joint training. Vu et al. [65], Mukherjee & Awadallah [42] show that task-level self-training works well in few-shot learning. These methods are tailored to semi-supervised learning or general representation learning and do not take domain shift into consideration explicitly. Wei et al. [66], Frei et al. [20] provide the first nice theoretical analysis of self-training based on the expansion assumption. + +Domain Adaptation. Inspired by the generalization error bound of Ben-David et al. [7], Long et al. [34], Zellinger et al. [71] minimize distance measures between source and target distributions to learn domain-invariant features. Ganin et al. [22] (DANN) proposed to approximate the domain distance by adversarial learning. Follow-up works proposed various improvement upon DANN [63, 54, 37, 73, 28]. Popular as they are, failure cases exist in situation like label shift [74, 32], shift in support of domains [29], and large discrepancy between source and target [33]. Another line of works try to address domain adaptation with self-training. Shu et al. [56] improves DANN with VAT and entropy minimization. French et al. [21], Zou et al. [78], Li et al. [32] incorporated various semi-supervised learning techniques to boost domain adaptation performance. Kumar et al. [30], Chen et al. [15] and Cai et al. [11] showed self-training provably works in domain adaptation under certain assumptions. + +# 7 Conclusion + +We propose cycle self-training in place of standard self-training to explicitly address the distribution shift in domain adaptation. We show that our method provably works under the expansion assumption and demonstrate hard cases for feature adaptation and standard self-training. Self-training (or pseudolabeling) is only one line of works in the semi-supervised learning literature. Future work can delve into the behaviors of other semi-supervised learning techniques including consistency regularization and data augmentation under distribution shift, and exploit them extensively for domain adaptation. + +# Acknowledgements + +This work was supported by the National Natural Science Foundation of China under Grants 62022050 and 62021002, Beijing Nova Program under Grant Z201100006820041, China’s Ministry of Industry and Information Technology, the MOE Innovation Plan and the BNRist Innovation Fund. + +# References + +[1] Albadawy, E. A., Saha, A., and Mazurowski, M. A. Deep learning for segmentation of brain tumors: Impact of cross-institutional training and testing. Medical Physics, 45(3), 2018. +[2] Arazo, E., Ortego, D., Albert, P., O’Connor, N. E., and McGuinness, K. Pseudo-labeling and confirmation bias in deep semi-supervised learning. CoRR, abs/1908.02983, 2019. +[3] Arora, S., Du, S. S., Hu, W., Li, Z., Salakhutdinov, R. R., and Wang, R. On exact computation with an infinitely wide neural net. In NeurIPS, pp. 8141–8150. 2019. +[4] Bachman, P., Alsharif, O., and Precup, D. Learning with pseudo-ensembles. In NeurIPS, volume 27, pp. 3365–3373, 2014. +[5] Bartlett, P. L. and Mendelson, S. Rademacher and gaussian complexities: Risk bounds and structural results. JMLR, 3(Nov):463–482, 2002. +[6] Ben-David, S. and Urner, R. On the hardness of domain adaptation and the utility of unlabeled target samples. In ALT, pp. 139–153, 2012. +[7] Ben-David, S., Blitzer, J., Crammer, K., Kulesza, A., Pereira, F., and Vaughan, J. W. A theory of learning from different domains. Machine Learning, 79(1-2):151–175, 2010. +[8] Berthelot, D., Carlini, N., Goodfellow, I., Papernot, N., Oliver, A., and Raffel, C. Mixmatch: A holistic approach to semi-supervised learning. arXiv preprint arXiv:1905.02249, 2019. +[9] Bertinetto, L., Henriques, J. F., Torr, P., and Vedaldi, A. Meta-learning with differentiable closed-form solvers. In ICLR, 2019. +[10] Blitzer, J., Dredze, M., and Pereira, F. Biographies, Bollywood, boom-boxes and blenders: Domain adaptation for sentiment classification. In ACL, pp. 440–447, 2007. +[11] Cai, T., Gao, R., Lee, J. D., and Lei, Q. A theory of label propagation for subpopulation shift, 2021. +[12] Carlini, N. Poisoning the unlabeled dataset of semi-supervised learning, 2021. +[13] Chapelle, O., Scholkopf, B., and Zien, A. ¨ Semi-supervised learning. MIT press Cambridge, 2006. +[14] Chen, C., Xie, W., Huang, W., Rong, Y., Ding, X., Huang, Y., Xu, T., and Huang, J. Progressive feature alignment for unsupervised domain adaptation. In CVPR, pp. 627–636, 2019. +[15] Chen, Y., Wei, C., Kumar, A., and Ma, T. Self-training avoids using spurious features under domain shift. In NeurIPS, pp. 21061–21071, 2020. +[16] Devlin, J., Chang, M.-W., Lee, K., and Toutanova, K. BERT: Pre-training of deep bidirectional transformers for language understanding. In NAACL, pp. 4171–4186, 2019. +[17] Du, J., Grave, E., Gunel, B., Chaudhary, V., Celebi, O., Auli, M., Stoyanov, V., and Conneau, A. Self-training improves pre-training for natural language understanding. In NAACL, pp. 5408–5418, 2021. +[18] Finn, C., Abbeel, P., and Levine, S. Model-agnostic meta-learning for fast adaptation of deep networks. In ICML, pp. 1126–1135, 2017. +[19] Foret, P., Kleiner, A., Mobahi, H., and Neyshabur, B. Sharpness-aware minimization for efficiently improving generalization. In ICLR, 2021. +[20] Frei, S., Zou, D., Chen, Z., and Gu, Q. Self-training converts weak learners to strong learners in mixture models. arXiv preprint arXiv:2106.13805, 2021. +[21] French, G., Mackiewicz, M., and Fisher, M. Self-ensembling for visual domain adaptation. In ICLR, 2018. +[22] Ganin, Y., Ustinova, E., Ajakan, H., Germain, P., Larochelle, H., Marchand, M., and Lempitsky, V. Domain-adversarial training of neural networks. JMLR, 17(1):2096–2030, 2016. +[23] Ghiasi, G., Zoph, B., Cubuk, E. D., Le, Q. V., and Lin, T.-Y. Multi-task self-training for learning general representations. In ICCV, pp. 8856–8865, 2021. +[24] Grandvalet, Y. and Bengio, Y. Semi-supervised learning by entropy minimization. In NeurIPS, pp. 529–536, 2004. +[25] Guo, C., Pleiss, G., Sun, Y., and Weinberger, K. Q. On calibration of modern neural networks. In ICML, pp. 1321–1330, 2017. +[26] He, K., Zhang, X., Ren, S., and Sun, J. Deep residual learning for image recognition. In CVPR, pp. 770–778, 2016. +[27] Hoffman, J., Tzeng, E., Park, T., Zhu, J., Isola, P., Saenko, K., Efros, A. A., and Darrell, T. Cycada: Cycle-consistent adversarial domain adaptation. In ICML, pp. 1994–2003, 2018. +[28] Jiang, X., Lao, Q., Matwin, S., and Havaei, M. Implicit class-conditioned domain alignment for unsupervised domain adaptation. In ICML, pp. 4816–4827, 2020. +[29] Johansson, F. D., Sontag, D., and Ranganath, R. Support and invertibility in domain-invariant representations. In AISTATS, pp. 527–536, 2019. +[30] Kumar, A., Ma, T., and Liang, P. Understanding self-training for gradual domain adaptation. In ICML, pp. 5468–5479, 2020. +[31] Lee, D.-H. Pseudo-label : The simple and efficient semi-supervised learning method for deep neural networks. ICML Workshop: Challenges in Representation Learning (WREPL), 2013. +[32] Li, B., Wang, Y., Che, T., Zhang, S., Zhao, S., Xu, P., Zhou, W., Bengio, Y., and Keutzer, K. Rethinking distributional matching based domain adaptation. ArXiv, abs/2006.13352, 2020. +[33] Liu, H., Long, M., Wang, J., and Jordan, M. Transferable adversarial training: A general approach to adapting deep classifiers. In ICML, volume 97, pp. 4013–4022, 2019. +[34] Long, M., Cao, Y., Wang, J., and Jordan, M. I. Learning transferable features with deep adaptation networks. In ICML, pp. 97–105, 2015. +[35] Long, M., Zhu, H., Wang, J., and Jordan, M. I. Unsupervised domain adaptation with residual transfer networks. In NeurIPS, pp. 136–144, 2016. +[36] Long, M., Zhu, H., Wang, J., and Jordan, M. I. Deep transfer learning with joint adaptation networks. In ICML, pp. 2208–2217, 2017. +[37] Long, M., Cao, Z., Wang, J., and Jordan, M. I. Conditional adversarial domain adaptation. In NeurIPS, pp. 1640–1650. 2018. +[38] Lu, Z., Yang, Y., Zhu, X., Liu, C., Song, Y.-Z., and Xiang, T. Stochastic classifiers for unsupervised domain adaptation. In CVPR, pp. 9111–9120, 2020. +[39] Mey, A. and Loog, M. A soft-labeled self-training approach. In ICPR, 2016. +[40] Miyato, T., Maeda, S., Ishii, S., and Koyama, M. Virtual adversarial training: A regularization method for supervised and semi-supervised learning. TPAMI, 2018. +[41] Mohri, M., Rostamizadeh, A., and Talwalkar, A. Foundations of machine learning. MIT press, 2018. +[42] Mukherjee, S. and Awadallah, A. Uncertainty-aware self-training for few-shot text classification. In NeurIPS, volume 33, pp. 21199–21212, 2020. +[43] Pan, S. J. and Yang, Q. A survey on transfer learning. TKDE, 22(10):1345–1359, 2010. +[44] Paszke, A., Gross, S., Massa, F., Lerer, A., Bradbury, J., Chanan, G., Killeen, T., Lin, Z., Gimelshein, N., Antiga, L., Desmaison, A., Kopf, A., Yang, E., DeVito, Z., Raison, M., Tejani, A., Chilamkurthy, S., Steiner, B., Fang, L., Bai, J., and Chintala, S. Pytorch: An imperative style, high-performance deep learning library. In NeurIPS, volume 32, pp. 8026–8037, 2019. +[45] Peng, X., Usman, B., Kaushik, N., Hoffman, J., Wang, D., and Saenko, K. Visda: The visual domain adaptation challenge. CoRR, abs/1710.06924, 2017. +[46] Peng, X., Bai, Q., Xia, X., Huang, Z., Saenko, K., and Wang, B. Moment matching for multi-source domain adaptation. In ICCV, pp. 1406–1415, 2019. +[47] Prabhu, V., Khare, S., Kartik, D., and Hoffman, J. Sentry: Selective entropy optimization via committee consistency for unsupervised domain adaptation, 2020. +[48] Prabhu, V., Khare, S., Kartik, D., and Hoffman, J. Sentry: Selective entropy optimization via committee consistency for unsupervised domain adaptation. In ICCV, pp. 8558–8567, October 2021. +[49] Qu, X., Zou, Z., Cheng, Y., Yang, Y., and Zhou, P. Adversarial category alignment network for cross-domain sentiment classification. In NAACL, 2019. +[50] Quionero-Candela, J., Sugiyama, M., Schwaighofer, A., and Lawrence, N. D. Dataset Shift in Machine Learning. The MIT Press, 2009. +[51] Rasmus, A., Berglund, M., Honkala, M., Valpola, H., and Raiko, T. Semi-supervised learning with ladder networks. In NeurIPS, volume 28, pp. 3546–3554, 2015. +[52] Rosenberg, C., Hebert, M., and Schneiderman, H. Semi-supervised self-training of object detection models. In WACV, volume 1, pp. 29–36, 2005. +[53] Russakovsky, O., Deng, J., Su, H., Krause, J., Satheesh, S., Ma, S., Huang, Z., Karpathy, A., Khosla, A., Bernstein, M., Berg, A. C., and Fei-Fei, L. ImageNet Large Scale Visual Recognition Challenge. IJCV, 115(3):211–252, 2015. +[54] Saito, K., Watanabe, K., Ushiku, Y., and Harada, T. Maximum classifier discrepancy for unsupervised domain adaptation. In CVPR, pp. 3723–3732, 2018. +[55] Sajjadi, M., Javanmardi, M., and Tasdizen, T. Regularization with stochastic transformations and perturbations for deep semi-supervised learning. In NeurIPS, volume 29, pp. 1163–1171, 2016. +[56] Shu, R., Bui, H., Narui, H., and Ermon, S. A DIRT-t approach to unsupervised domain adaptation. In ICLR, 2018. +[57] Sohn, K., Berthelot, D., Carlini, N., Zhang, Z., Zhang, H., Raffel, C. A., Cubuk, E. D., Kurakin, A., and Li, C.-L. Fixmatch: Simplifying semi-supervised learning with consistency and confidence. In NeurIPS, 2020. +[58] Szegedy, C., Zaremba, W., Sutskever, I., Bruna, J., Erhan, D., Goodfellow, I., and Fergus, R. Intriguing properties of neural networks. In ICLR, 2014. +[59] Talagrand, M. Upper and lower bounds for stochastic processes: modern methods and classical problems, volume 60. Springer Science & Business Media, 2014. +[60] Tan, S., Peng, X., and Saenko, K. Class-imbalanced domain adaptation: An empirical odyssey. In ECCV Workshop, 2020. +[61] Tarvainen, A. and Valpola, H. Mean teachers are better role models: Weight-averaged consistency targets improve semi-supervised deep learning results. In NeurIPS, volume 30, pp. 1195–1204, 2017. +[62] Tsallis, C. Possible generalization of boltzmann-gibbs statistics. Journal of Statistical Physics, 52(1-2):479–487, 1988. +[63] Tzeng, E., Hoffman, J., Saenko, K., and Darrell, T. Adversarial discriminative domain adaptation. In CVPR, pp. 7167–7176, 2017. +[64] Venkateswara, H., Eusebio, J., Chakraborty, S., and Panchanathan, S. Deep hashing network for unsupervised domain adaptation. In CVPR, pp. 5018–5027, 2017. +[65] Vu, T., Luong, M.-T., Le, Q. V., Simon, G., and Iyyer, M. Strata: Self-training with task augmentation for better few-shot learning. arXiv preprint arXiv:2109.06270, 2021. +[66] Wei, C., Shen, K., Yining, C., and Ma, T. Theoretical analysis of self-training with deep networks on unlabeled data. In ICLR, 2021. +[67] Xie, Q., Luong, M. T., Hovy, E., and Le, Q. V. Self-training with noisy student improves imagenet classification. In CVPR, 2020. +[68] Xie, S. M., Kumar, A., Jones, R., Khani, F., Ma, T., and Liang, P. In-n-out: Pre-training and self-training using auxiliary information for out-of-distribution robustness. In ICLR, 2021. +[69] Xu, R., Li, G., Yang, J., and Lin, L. Larger norm more transferable: An adaptive feature norm approach for unsupervised domain adaptation. In ICCV, 2019. +[70] Yosinski, J., Clune, J., Bengio, Y., and Lipson, H. How transferable are features in deep neural networks? In NeurIPS, pp. 3320–3328. 2014. +[71] Zellinger, W., Grubinger, T., Lughofer, E., Natschlager, T., and Saminger-Platz, S. Central ¨ moment discrepancy (CMD) for domain-invariant representation learning. In ICLR, 2017. +[72] Zhang, H., Cisse, M., Dauphin, Y. N., and Lopez-Paz, D. mixup: Beyond empirical risk minimization. In ICLR, 2018. +[73] Zhang, Y., Liu, T., Long, M., and Jordan, M. Bridging theory and algorithm for domain adaptation. In ICML, pp. 7404–7413, 2019. +[74] Zhao, H., Combes, R. T. D., Zhang, K., and Gordon, G. On learning invariant representations for domain adaptation. In ICML, volume 97, pp. 7523–7532, 2019. +[75] Ziser, Y. and Reichart, R. Pivot based language modeling for improved neural domain adaptation. In NAACL, pp. 1241–1251, 2018. +[76] Zoph, B., Ghiasi, G., Lin, T.-Y., Cui, Y., Liu, H., Cubuk, E. D., and Le, Q. Rethinking pre-training and self-training. In NeurIPS, volume 33, pp. 3833–3845, 2020. +[77] Zou, Y., Yu, Z., Vijaya Kumar, B. V. K., and Wang, J. Unsupervised domain adaptation for semantic segmentation via class-balanced self-training. In ECCV, pp. 297–313, 2018. +[78] Zou, Y., Yu, Z., Liu, X., Kumar, B. V., and Wang, J. Confidence regularized self-training. In ICCV, October 2019. \ No newline at end of file diff --git a/parse/train/-iu9-C_lan/-iu9-C_lan_content_list.json b/parse/train/-iu9-C_lan/-iu9-C_lan_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..682b4bcc338d8877faa5aaabfc8465cda1e43bc8 --- /dev/null +++ b/parse/train/-iu9-C_lan/-iu9-C_lan_content_list.json @@ -0,0 +1,1484 @@ +[ + { + "type": "text", + "text": "Cycle Self-Training for Domain Adaptation ", + "text_level": 1, + "bbox": [ + 235, + 122, + 763, + 147 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Hong Liu Dept of Electronic Engineering Tsinghua University hongliu9903@gmail.com ", + "bbox": [ + 186, + 202, + 392, + 257 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Jianmin Wang \nSchool of Software, BNRist \nTsinghua University \njimwang@tsinghua.edu.cn Mingsheng Long⇤ \nSchool of Software, BNRist Tsinghua University \nmingsheng@tsinghua.edu.cn ", + "bbox": [ + 411, + 202, + 598, + 257 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 617, + 202, + 810, + 257 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Abstract ", + "text_level": 1, + "bbox": [ + 462, + 292, + 535, + 309 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Mainstream approaches for unsupervised domain adaptation (UDA) learn domaininvariant representations to narrow the domain shift, which are empirically effective but theoretically challenged by the hardness or impossibility theorems. Recently, self-training has been gaining momentum in UDA, which exploits unlabeled target data by training with target pseudo-labels. However, as corroborated in this work, under distributional shift, the pseudo-labels can be unreliable in terms of their large discrepancy from target ground truth. In this paper, we propose Cycle Self-Training (CST), a principled self-training algorithm that explicitly enforces pseudo-labels to generalize across domains. CST cycles between a forward step and a reverse step until convergence. In the forward step, CST generates target pseudo-labels with a source-trained classifier. In the reverse step, CST trains a target classifier using target pseudo-labels, and then updates the shared representations to make the target classifier perform well on the source data. We introduce the Tsallis entropy as a confidence-friendly regularization to improve the quality of target pseudo-labels. We analyze CST theoretically under realistic assumptions, and provide hard cases where CST recovers target ground truth, while both invariant feature learning and vanilla self-training fail. Empirical results indicate that CST significantly improves over the state-of-the-arts on visual recognition and sentiment analysis benchmarks. ", + "bbox": [ + 232, + 324, + 766, + 571 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 Introduction ", + "text_level": 1, + "bbox": [ + 174, + 590, + 310, + 607 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Transferring knowledge from a source domain with rich supervision to an unlabeled target domain is an important yet challenging problem. Since deep neural networks are known to be sensitive to subtle change in underlying distributions [70], models trained on one labeled dataset often fail to generalize to another unlabeled dataset [58, 1]. Unsupervised domain adaptation (UDA) addresses the challenge of distributional shift by adapting the source model to the unlabeled target data [50, 43]. ", + "bbox": [ + 174, + 616, + 825, + 685 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "The mainstream paradigm for UDA is feature adaptation, a.k.a. domain alignment. By reducing the distance of the source and target feature distributions, these methods learn invariant representations to facilitate knowledge transfer between domains [34, 22, 36, 54, 37, 73], with successful applications in various areas such as computer vision [63, 27, 77] and natural language processing [75, 49]. Despite their popularity, the impossibility theories [6] uncovered intrinsic limitations of learning invariant representations when it comes to label shift [74, 32] and shift in the support of domains [29]. ", + "bbox": [ + 174, + 691, + 825, + 775 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Recently, self-training (a.k.a. pseudo-labeling) [21, 78, 30, 32, 47, 68] has been gaining momentum as a promising alternative to feature adaptation. Originally tailored to semi-supervised learning, self-training generates pseudo-labels of unlabeled data, and jointly trains the model with source labels and target pseudo-labels [31, 39, 30]. However, the distributional shift in UDA makes pseudo-labeling more difficult. Directly using all pseudo-labels is risky due to accumulated error and even trivial solution [14]. Thus previous works tailor self-training to UDA by selecting trustworthy pseudo-labels. Using confidence threshold or reweighting, recent works try to alleviate the negative effect of domain shift in standard self-training [78, 47], but they can be brittle and require expensive tweaking of the threshold or weight for different tasks, and their performance gain is still inconsistent. ", + "bbox": [ + 174, + 780, + 825, + 878 + ], + "page_idx": 0 + }, + { + "type": "image", + "img_path": "images/a98d2d44c2b974a909fc041a6f8726476f59f9bdcb19e5febe93a6d25e86dd55.jpg", + "image_caption": [ + "Figure 1: Standard self-training vs. cycle self-training. In standard self-training, we generate target pseudolabels with a source model, and then train the model with both source ground-truths and target pseudo-labels. In cycle self-training, we train a target classifier with target pseudo-labels in the inner loop, and make the target classifier perform well on the source domain by updating the shared representations in the outer loop. " + ], + "image_footnote": [], + "bbox": [ + 209, + 87, + 789, + 208 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 281, + 821, + 310 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In this work, we first analyze the quality of pseudo-labels with or without domain shift to delve deeper into the difficulty of standard self-training in UDA. On popular benchmark datasets, when the source and target are the same, our analysis indicates that the pseudo-label distribution is almost identical to the ground-truth distribution. However, with distributional shift, their discrepancy can be very large with examples of several classes mostly misclassified into other classes. We also study the difficulty of selecting correct pseudo-labels with popular criteria under domain shift. Although entropy and confidence are reasonable selection criteria for correct pseudo-labels without domain shift, the domain shift makes their accuracy decrease sharply. ", + "bbox": [ + 173, + 315, + 825, + 428 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Our analysis shows that domain shift makes pseudo-labels unreliable and that self-training on selected target instances with accurate pseudo-labels is less successful. Thereby, more principled improvement of standard self-training should be tailored to UDA and address the domain shift explicitly. In this work, we propose Cycle Self-Training (CST), a principled self-training approach to UDA, which overcomes the limitations of standard self-training (see Figure 1). Different from previous works to select target pseudo-labels with hard-to-tweak protocols, CST learns to generalize the pseudo-labels across domains. Specifically, CST cycles between the use of target pseudo-labels to train a target classifier, and the update of shared representations to make the target classifier perform well on the source data. In contrast to the standard Gibbs entropy that makes the target predictions over-confident, we propose a confidence-friendly uncertainty measure based on the Tsallis entropy in information theory, which adaptively minimizes the uncertainty without manually tuning or setting thresholds. Our method is simple and generally applicable to vision and language tasks with various backbones. ", + "bbox": [ + 174, + 433, + 825, + 599 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We empirically evaluate our method on a series of standard UDA benchmarks. Results indicate that CST outperforms previous state-of-the-art methods in 21 out of 25 tasks for object recognition and sentiment classification. Theoretically, we prove that the minimizer of CST objective is endowed with general guarantees of target performance. We also study hard cases on specific distributions, showing that CST recovers target ground-truths while both feature adaptation and standard self-training fail. ", + "bbox": [ + 174, + 606, + 825, + 676 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 Preliminaries ", + "text_level": 1, + "bbox": [ + 174, + 693, + 318, + 710 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We study unsupervised domain adaptation (UDA). Consider a source distribution $P$ and a target distribution $Q$ over the input-label space $\\mathcal { X } \\times \\mathcal { V }$ . We have access to $n _ { s }$ labeled i.i.d. samples $\\widehat { P } = \\{ x _ { i } ^ { s } , y _ { i } ^ { s } \\} _ { i = 1 } ^ { n _ { s } }$ from $P$ and $n _ { t }$ unlabeled i.i.d. samples $\\widehat { Q } = \\{ x _ { i } ^ { t } \\} _ { i = 1 } ^ { n _ { t } }$ from $Q$ . The model $f$ comprises a feature extractor $h _ { \\phi }$ parametrized by $\\phi$ and a head (linear classifier) $g _ { \\theta }$ parametrized by $\\theta$ , i.e. $\\bar { f } _ { \\theta , \\phi } ( x ) = g _ { \\theta } ( h _ { \\phi } ( x ) )$ . The loss function is $\\ell ( \\cdot , \\cdot )$ . Denote by $L _ { P } ( \\theta , \\phi ) : = \\mathbb { E } _ { ( x , y ) \\sim P } \\ell ( f _ { \\theta , \\phi } ( x ) , y )$ the expected error on $P$ . Similarly, we use ${ \\cal L } _ { \\widehat { P } } ( \\theta , \\phi )$ to denote the empirical error on dataset $\\widehat { P }$ . ", + "bbox": [ + 173, + 722, + 826, + 814 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We discuss two mainstream UDA methods and their formulations: feature adaptation and self-training. ", + "bbox": [ + 173, + 818, + 825, + 833 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Feature Adaptation trains the model $f$ on the source dataset $\\widehat { P }$ , and simultaneously matches the source and target distributions in the representation space $\\mathcal { Z } = h ( \\mathcal { X } )$ : ", + "bbox": [ + 171, + 839, + 823, + 871 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/08c3281134353cdfc0b467df0091b2073698e29eaba7544d4dbb027d50f15236.jpg", + "text": "$$\n\\operatorname* { m i n } _ { \\theta , \\phi } L _ { \\widehat { P } } ( \\theta , \\phi ) + d ( h _ { \\sharp } \\widehat { P } , h _ { \\sharp } \\widehat { Q } ) .\n$$", + "text_format": "latex", + "bbox": [ + 398, + 881, + 599, + 909 + ], + "page_idx": 1 + }, + { + "type": "image", + "img_path": "images/b47a38073ca7224e33f9ab2c301d27144b2711ff9fb5bf238f28f0fb56f3274f.jpg", + "image_caption": [ + "Figure 2: Analysis of pseudo-labels under domain shift on VisDA-2017. Left: Pseudo-label distributions with and without domain shift. Middle: Changes of pseudo-label distributions throughout training. Right: Quality of pseudo-labels under different pseudo-label selection criteria. " + ], + "image_footnote": [], + "bbox": [ + 202, + 97, + 790, + 214 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Here, $h _ { \\sharp } \\widehat { P }$ denotes the pushforward distribution of $\\widehat { P }$ , and $d ( \\cdot , \\cdot )$ is some distribution distance. For instance, Long et al. [34] used maximum mean discrepancy $d _ { \\mathrm { M M D } }$ , and Ganin et al. [22] approximated the $\\mathcal { H } \\Delta \\mathcal { H }$ -distance $d _ { \\mathcal { H } \\Delta \\mathcal { H } }$ [7] with adversarial training. Despite its pervasiveness, recent works have shown the intrinsic limitations of feature adaptation under real-world situations [6, 74, 33, 32, 29]. ", + "bbox": [ + 174, + 270, + 825, + 329 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Self-Training is considered a promising alternative to feature adaptation. In this work we mainly focus on pseudo-labeling [31, 30]. Stemming from semi-supervised learning, standard self-training trains a source model $f _ { s }$ on the source dataset $\\widehat { P }$ $: \\mathrm { m i n } _ { \\theta _ { s } , \\phi _ { s } } L _ { \\widehat { P } } ( \\theta _ { s } , \\phi _ { s } )$ . The target pseudo-labels are then generated by $f _ { s }$ on the target dataset $\\widehat { Q }$ . To leverage unlabeled target data, self-training trains the model on the source and target datasets together with source ground-truths and target pseudo-labels: ", + "bbox": [ + 173, + 335, + 825, + 412 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/7eb4ed6be74b99db248b902505b5c093a12694a3b85b7d17df4c597e37de3e0f.jpg", + "text": "$$\n\\operatorname* { m i n } _ { \\theta , \\phi } L _ { \\widehat { P } } ( \\theta , \\phi ) + \\mathbb { E } _ { x \\sim \\widehat { Q } } \\ell ( f _ { \\theta , \\phi } ( x ) , \\arg \\operatorname* { m a x } _ { i } \\{ f _ { \\theta , \\phi _ { s } } ( x ) _ { [ i ] } \\} ) .\n$$", + "text_format": "latex", + "bbox": [ + 308, + 417, + 689, + 441 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Self-training also uses label-sharpening as a standard protocol [31, 57]. Another popular variant of pseudo-labeling is the teacher-student model [4, 61], which iteratively improves the quality of pseudo-labels via alternatively replacing $\\theta _ { s }$ and $\\phi _ { s }$ with $\\theta$ and $\\phi$ of the previous iteration. ", + "bbox": [ + 174, + 446, + 825, + 489 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.1 Limitations of Standard Self-Training ", + "text_level": 1, + "bbox": [ + 174, + 498, + 477, + 513 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Standard self-training with pseudo-labels uses unlabeled data efficiently for semi-supervised learning [31, 39, 57]. Here we carry out exploratory studies on the popular VisDA-2017 [45] dataset using ResNet-50 backbones. We find that domain shift makes the pseudo-labels biased towards several classes and thereby unreliable in UDA. See Appendix C.1 for details and results on more datasets. ", + "bbox": [ + 173, + 517, + 825, + 574 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Pseudo-label distributions with or without domain shift. We resample the original VisDA-2017 to simulate different relationship between source and target domains: 1) i.i.d., 2) covariate shift, and 3) label shift. We train the model on the three variants of source dataset and use it to generate target pseudo-labels. We show the distributions of target ground-truths and pseudo-labels in Figure 2 (Left). When the source and target distributions are identical, the distribution of pseudo-labels is almost the same as ground-truths, indicating the reliability of pseudo-labels. In contrast, when exposed to label shift or covariate shift, the distribution of pseudo-labels is significantly different from target ground-truths. Note that classes 2, 7, 8 and 12 appear rarely in the target pseudo-labels in the covariate shift setting, indicating that the pseudo-labels are biased towards several classes due to domain shift. Self-training with these pseudo-labels is risky since it may lead to misalignment of distributions and misclassify many examples of classes 2, 7, 8 and 12. ", + "bbox": [ + 173, + 579, + 825, + 732 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Change of pseudo-label distributions throughout training. To further study the change of pseudolabels in standard self-training, we compute the total variation (TV) distance between target groundtruths and target pseudo-labels: $\\begin{array} { r } { d _ { \\mathrm { T V } } ( c , \\dot { c ^ { \\prime } } ) = \\frac { 1 } { 2 } \\sum _ { i } \\| c _ { i } - c _ { i } ^ { \\prime } \\| } \\end{array}$ , where $c _ { i }$ is the ratio of class $i$ . We plot its change during training in Figure 2 (Middle). Although the error rate of pseudo-labels continues to decrease, $d _ { \\mathrm { T V } }$ remains almost unchanged at 0.26 throughout training. Note that $d _ { \\mathrm { T V } }$ is the lower bound of the error rate of the pseudo-labels (shown in Appendix C.1). If $d _ { \\mathrm { T V } }$ converges to 0.26, then the accuracy of pseudo-labels is upper-bounded by 0.74. This indicates that the important denoising ability [66] of pseudo-labels in standard self-training is hindered by domain shift. ", + "bbox": [ + 173, + 738, + 825, + 849 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Difficulty of selecting reliable pseudo-labels under domain shift. To mitigate the negative effect of false pseudo-labels, recent works proposed to select correct pseudo-labels based on thresholding the entropy or confidence criteria [35, 21, 37, 57]. However, it remains unclear whether these strategies are still effective under domain shift. Here we compare the quality of pseudo-labels selected by different strategies with or without domain shift. For each strategy, we compute False Positive Rate and True Positive Rate for different thresholds and plot its ROC curve in Figure 2 (Right). When the source and target distributions are identical, both entropy and confidence are reasonable strategies for selecting correct pseudo-labels $( \\mathrm { A U C } { = } 0 . 8 9 )$ ). However, when the target pseudo-labels are generated by the source model, the quality of pseudo-labels decreases sharply under domain shift $\\mathrm { \\Delta A U C { = } 0 . 7 8 }$ ). ", + "bbox": [ + 174, + 856, + 825, + 911 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 90, + 825, + 161 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3 Approach ", + "text_level": 1, + "bbox": [ + 174, + 174, + 289, + 191 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We present Cycle Self-Training (CST) to improve pseudo-labels under domain shift. An overview of our method is given in Figure 1. Cycle Self-Training iterates between a forward step and a reverse step to make self-trained classifiers generalize well on both target and source domains. ", + "bbox": [ + 174, + 198, + 825, + 241 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.1 Cycle Self-Training ", + "text_level": 1, + "bbox": [ + 174, + 246, + 349, + 261 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Forward Step. Similar to standard self-training, we have a source classifier $\\theta _ { s }$ trained on top of the shared representations $\\phi$ on the labeled source domain, and use it to generate target pseudo-labels as ", + "bbox": [ + 173, + 265, + 823, + 294 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/f320bf246563b81f6d2648d2fdd1228bfad0d9c84e43d970ceea81de6211fd67.jpg", + "text": "$$\ny ^ { \\prime } = \\arg \\operatorname* { m a x } _ { i } \\{ f _ { \\theta _ { s } , \\phi } ( x ) _ { [ i ] } \\} ,\n$$", + "text_format": "latex", + "bbox": [ + 406, + 299, + 589, + 324 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "for each $x$ in the target dataset $\\widehat { Q }$ . Traditional self-training methods use confidence thresholding or reweighting to select reliable pseudo-labels. For example, Sohn et al. [57] select pseudo-labels with softmax value and Long et al. [37] add entropy reweighting to rely on examples with more confidence prediction. However, the output of deep networks is usually miscalibrated [25], and is not necessarily related to the ground-truth confidence even on the same distribution. In domain adaptation, as shown in Section 2.1, the discrepancy between the source and target domains makes pseudo-labels even more unreliable, and the performance of commonly used selection strategies is also unsatisfactory. Another drawback is the expensive tweaking in order to find the optimal confidence threshold for new tasks. To better apply self-training to domain adaptation, we expect that the model can gradually refine the pseudo-labels by itself without the cumbersome selection or thresholding. ", + "bbox": [ + 173, + 330, + 825, + 473 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Reverse Step. We design a complementary step with the following insights to improve self-training. Intuitively, the labels on the source domain contain both useful information that can transfer to the target domain and harmful information that can make pseudo-labels incorrect. Similarly, reliable pseudo-labels on the target domain can transfer to the source domain in turn, while models trained with incorrect pseudo-labels on the target domain cannot transfer to the source domain. In this sense, if we explicitly train the model to make target pseudo-labels informative of the source domain, we can gradually make the pseudo-labels more accurate and learn to generalize to the target domain. ", + "bbox": [ + 173, + 478, + 825, + 575 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Specifically, with the pseudo-labels $y ^ { \\prime }$ generated by the source classifier $\\theta _ { s }$ at hand as in equation 3, we train a target head $\\hat { \\theta } _ { t } ( \\phi )$ on top of the representation $\\phi$ with pseudo-labels on the target domain $\\widehat { Q }$ ", + "bbox": [ + 173, + 580, + 821, + 613 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/03699fae3f7b59b86374fb91a0f3d780b856c7a8778a428e47452fb369f5cccb.jpg", + "text": "$$\n\\hat { \\theta } _ { t } ( \\phi ) = \\underset { \\theta } { \\arg \\operatorname* { m i n } } \\mathbb { E } _ { \\boldsymbol { x } \\sim \\hat { \\boldsymbol { Q } } } \\ell ( f _ { \\theta , \\phi } ( \\boldsymbol { x } ) , y ^ { \\prime } ) .\n$$", + "text_format": "latex", + "bbox": [ + 374, + 619, + 624, + 646 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We wish to make the target pseudo-labels informative of the source domain and gradually refine them. To this end, we update the shared feature extractor $\\phi$ to predict accurately on the source domain and jointly enforce the target classifier $\\hat { \\theta } _ { t } ( \\phi )$ to perform well on the source domain. This naturally leads to the objective of Cycle Self-Training: ", + "bbox": [ + 173, + 651, + 825, + 710 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/ed81524779eb8a44184f8a5fa701e5693bc66a771d5cf2175c8b352bbc8f7bc8.jpg", + "text": "$$\n\\operatorname* { m i n i m i z e } _ { \\theta _ { s } , \\phi } L _ { \\mathrm { C y c l e } } ( \\theta _ { s } , \\phi ) : = L _ { \\hat { P } } ( \\theta _ { s } , \\phi ) + L _ { \\hat { P } } ( \\hat { \\theta } _ { t } ( \\phi ) , \\phi ) .\n$$", + "text_format": "latex", + "bbox": [ + 320, + 715, + 676, + 742 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Bi-level Optimization. The objective in equation 5 relies on the solution $\\hat { \\theta } _ { t } ( \\phi )$ to the objective in equation 4. Thus, CST formulates a bi-level optimization problem. In the inner loop we generate target pseudo-labels with the source classifier (equation 3), and train a target classifier with target pseudo-labels (equation 4). After each inner loop, we update the feature extractor $\\phi$ for one step in the outer loop (equation 5), and start a new inner loop again. However, since the inner loop of the optimization in equation 4 only involves the light-weight linear head $\\theta _ { t }$ , we propose to calculate the analytical form of $\\hat { \\theta } _ { t } ( \\phi )$ and directly back-propagate to the feature extractor $\\phi$ instead of calculating the second-order derivatives as in MAML [18]. The resulting framework is as fast as training two heads jointly. Also note that the solution $\\hat { \\theta } _ { t } ( \\phi )$ relies on $\\theta _ { s }$ implicitly through $y ^ { \\prime }$ . However, both standard self-training and our implementation use label sharpening, making $y ^ { \\prime }$ not differentiable. Thus we follow vanilla self-training and do not consider the gradient of $\\hat { \\theta } _ { t } ( \\phi )$ w.r.t. $y ^ { \\prime }$ in the outer loop optimization. We defer the derivation and implementation of bi-level optimization to Appendix B.2. ", + "bbox": [ + 173, + 744, + 826, + 919 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.2 Tsallis Entropy Minimization ", + "text_level": 1, + "bbox": [ + 174, + 90, + 418, + 106 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Gibbs entropy is widely used by existing semi-supervised learning methods to regularize the model output and minimize the uncertainty of predictions on unlabeled data [24]. In this work, we generalize Gibbs entropy to Tsallis entropy [62] in information theory. Suppose the softmax output of a model is $\\boldsymbol { y } \\in \\mathbb { R } ^ { K }$ , then the $\\alpha$ -Tsallis entropy is defined as ", + "bbox": [ + 173, + 109, + 825, + 165 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/b95e1c346e23f4b85a1a6f60a6af5ce0f86164604ee0f7976ebba75830a25b7b.jpg", + "text": "$$\nS _ { \\alpha } ( y ) = \\frac { 1 } { \\alpha - 1 } \\left( 1 - \\sum y _ { [ i ] } ^ { \\alpha } \\right) ,\n$$", + "text_format": "latex", + "bbox": [ + 392, + 162, + 604, + 194 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where $\\alpha > 0$ is the entropic-index. Note that $\\begin{array} { r } { \\operatorname* { l i m } _ { \\alpha \\to 1 } S _ { \\alpha } ( y ) = \\sum _ { i } - y _ { [ i ] } \\mathrm { l o g } ( y _ { [ i ] } ) } \\end{array}$ which exactly recovers the Gibbs entropy. When $\\alpha = 2$ , $S _ { \\alpha } ( y )$ becomes the Gini impurity $1 - \\textstyle \\sum _ { i } y _ { [ i ] } ^ { 2 }$ . ", + "bbox": [ + 174, + 196, + 826, + 229 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We propose to control the uncertainty of target pseudo-labels based on Tsallis entropy minimization: ", + "bbox": [ + 173, + 236, + 825, + 251 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/9217f3dc045a29db80f7156064abccd6aedaffed583742fa94bbd6774795f66a.jpg", + "text": "$$\nL _ { \\widehat { Q } , \\mathrm { T s a l l i s } , \\alpha } ( \\theta , \\phi ) : = \\mathbb { E } _ { \\boldsymbol { x } \\sim \\widehat { Q } } S _ { \\alpha } ( f _ { \\theta , \\phi } ( \\boldsymbol { x } ) ) .\n$$", + "text_format": "latex", + "bbox": [ + 367, + 253, + 629, + 275 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Figure 3 shows the change of Tsallis entropy with different entropic-indices $\\alpha$ for binary problems. Intuitively, smaller $\\alpha$ exerts more penalization on uncertain predictions and larger $\\alpha$ allows several scores $y _ { i }$ ’s to be similar. This is critical in self-training since an overly small $\\alpha$ (as in Gibbs entropy) will make the incorrect dimension of pseudo-labels close to 1 and have no chance to be corrected throughout training. In Section 5.4, we further verify this property with experiments. ", + "bbox": [ + 173, + 284, + 531, + 409 + ], + "page_idx": 4 + }, + { + "type": "image", + "img_path": "images/1ee6c84356d7e7a52e7c51e6a8539defd26596a9b539b8488d28b38233853582.jpg", + "image_caption": [ + "Figure 3: Tsallis entropy vs. entropic-index $\\alpha$ " + ], + "image_footnote": [], + "bbox": [ + 545, + 286, + 816, + 388 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "An important improvement of the Tsallis entropy over Gibbs entropy is that it can choose the suitable measure of uncertainty for different systems to avoid over-confidence caused by overly penalizing the uncertain pseudo-labels. To automatically find the suitable $\\alpha$ , we adopt a similar strategy as Section 3.1. The intuition is that if we use the suitable entropic-index $\\alpha$ to train the source classifier $\\theta _ { s , \\alpha }$ , the target pseudo-labels generated by $\\theta _ { s , \\alpha }$ will contain desirable knowledge of the source dataset, i.e. a target classifier $\\theta _ { t , \\alpha }$ trained with these pseudo-labels will perform well on the source domain. Therefore, we semi-supervisedly train a classifier $\\widehat { \\theta } _ { s , \\alpha }$ on the source domain with the $\\alpha$ -Tsallis entropy regularization $L _ { \\widehat { Q } , \\mathrm { T s a l l i s } , \\alpha }$ on the target domain as: $\\hat { \\theta } _ { s , \\alpha } = \\arg \\operatorname* { m i n } _ { \\theta } L _ { \\widehat { P } } ( \\theta , \\phi ) + L _ { \\widehat { Q } , \\mathrm { T s a l l i s } , \\alpha } ( \\theta , \\phi )$ , from which we obtain the target pseudo-labels. Then we train another head $\\widehat { \\theta } _ { t , \\alpha }$ with target pseudo-labels. We automatically find $\\alpha$ by minimizing the loss of $\\widehat { \\theta } _ { t , \\alpha }$ on the source data: ", + "bbox": [ + 173, + 415, + 826, + 569 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/8049a6e65f36582e37ae51ea79dc307021193480cbdf85b180862acbd25d47dc.jpg", + "text": "$$\n\\hat { \\alpha } = \\underset { \\alpha \\in [ 1 , 2 ] } { \\arg \\operatorname* { m i n } } L _ { \\widehat { P } } ( \\widehat { \\theta } _ { t , \\alpha } , \\phi )\n$$", + "text_format": "latex", + "bbox": [ + 413, + 573, + 584, + 603 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "To solve equation 10, we discretize the feasible region [1, 2] of $\\alpha$ and use discrete optimization to lower computational cost. We also update $\\alpha$ at the start of each epoch, since we found more frequent ", + "bbox": [ + 174, + 606, + 823, + 636 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Algorithm 1 Cycle Self-Training (CST) ", + "text_level": 1, + "bbox": [ + 174, + 659, + 437, + 672 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "1: Input: source dataset $\\widehat { P }$ and target dataset $\\widehat { Q }$ . \n2: for epoch $= 0$ to MaxEpoch do \n3: Select $\\hat { \\alpha }$ as equation 10 at the start of each epoch. \n4: for $t = 0$ to MaxIter do \n5: Forward Step \n6: Generate pseudo-labels on the target domain with $\\phi$ and $\\theta _ { s }$ ${ \\mathrm { ~ \\mu ~ } } _ { 3 } \\colon y ^ { \\prime } = \\arg \\operatorname* { m a x } _ { i } \\{ f _ { \\theta _ { s } , \\phi } ( x ) _ { [ i ] } \\}$ . \n7: Reverse Step \n8: Train a target head $\\hat { \\theta } _ { t } ( \\phi )$ with target pseudo-labels $y ^ { \\prime }$ on the feature extractor $\\phi$ : \n$\\hat { \\theta } _ { t } ( \\phi ) = \\underset { \\theta } { \\arg \\operatorname* { m i n } } \\mathbb { E } _ { x \\sim \\hat { Q } } \\ell ( f _ { \\theta , \\phi } ( x ) , y ^ { \\prime } ) .$ \n9: Update the feature extractor $\\phi$ and the source head $\\theta _ { s }$ to make $\\hat { \\theta } _ { t } ( \\phi )$ perform well on the \nsource dataset and minimize the $\\hat { \\alpha }$ -Tsallis entropy on the target dataset: ", + "bbox": [ + 178, + 676, + 823, + 848 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/6d875ecdfd62ea38ad6b27593a76ee5f7927e127b3756c92fd9a5c61070856d5.jpg", + "text": "$$\n\\begin{array} { r l } & { \\phi \\phi - \\eta \\nabla _ { \\phi } [ L _ { \\widehat { P } } ( \\theta _ { s } , \\phi ) + L _ { \\widehat { P } } ( \\widehat { \\theta } _ { t } ( \\phi ) , \\phi ) + L _ { \\widehat { Q } , \\mathrm { T s a l l i s } , \\widehat { \\alpha } } ( \\theta _ { s } , \\phi ) ] . } \\\\ & { \\qquad \\theta _ { s } \\theta _ { s } - \\eta \\nabla _ { \\theta _ { s } } [ L _ { \\widehat { P } } ( \\theta _ { s } , \\phi ) + L _ { \\widehat { Q } , \\mathrm { T s a l l i s } , \\widehat { \\alpha } } ( \\theta _ { s } , \\phi ) ] . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 318, + 847, + 738, + 891 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "10: end for \n11: end for ", + "bbox": [ + 174, + 877, + 271, + 905 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "update leads to no performance gain. Details are deferred to Appendix B.3. Finally, with the optimal $\\hat { \\alpha }$ found, we add the $\\hat { \\alpha }$ -Tsallis entropy minimization term $L _ { \\widehat { Q } , \\mathrm { T s a l l i s } , \\widehat { \\alpha } }$ to the overall objective: ", + "bbox": [ + 171, + 90, + 823, + 122 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/2cceee179cc3a3be90b0ab3de021cb3447406ac386ba4aec8ca271ad95f039c1.jpg", + "text": "$$\n\\operatorname* { m i n i m i z e } _ { \\theta _ { s } , \\phi } L _ { \\mathrm { C y c l e } } ( \\theta _ { s } , \\phi ) + L _ { \\hat { Q } , \\mathrm { T s a l l i s } , \\hat { \\alpha } } ( \\theta _ { s } , \\phi ) .\n$$", + "text_format": "latex", + "bbox": [ + 352, + 128, + 643, + 154 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "In summary, Algorithm 1 depicts the complete training procedure of Cycle Self-Training (CST). ", + "bbox": [ + 169, + 159, + 802, + 174 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4 Theoretical Analysis ", + "text_level": 1, + "bbox": [ + 174, + 185, + 377, + 203 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We analyze the properties of CST theoretically. First, we prove that the minimizer of the CST loss $L _ { \\mathrm { C S T } } ( f _ { s } , f _ { t } )$ will lead to small target loss $\\mathrm { E r r } _ { Q } ( f _ { s } )$ under a simple but realistic expansion assumption. Then, we further demonstrate a concrete instantiation where cycle self-training provably recovers the target ground truth, but both feature adaptation and standard self-training fail. Due to space limit, we state the main results here and defer all proof details to Appendix $A$ . ", + "bbox": [ + 173, + 210, + 826, + 281 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.1 CST Provably Works under the Expansion Assumption ", + "text_level": 1, + "bbox": [ + 173, + 287, + 598, + 304 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We start from a $K$ -way classification model, $f : \\mathcal { X } \\to [ 0 , 1 ] ^ { K } \\in \\mathcal { F }$ and ${ \\tilde { f } } ( x ) : = \\arg \\operatorname* { m a x } _ { i } f ( x ) _ { [ i ] }$ denotes the prediction. Denote by $P _ { i }$ the conditional distribution of $P$ given $y = i$ . Assume the supports of $P _ { i }$ and $P _ { j }$ are disjoint for $i \\neq j$ . The definition is similar for $Q _ { i }$ . We further Assume $P ( y = i ) = Q ( y = i )$ . For any $x \\in \\mathcal { X }$ , $\\mathcal { N } ( x )$ is defined as the neighboring set of $x$ with a proper metric $d ( \\cdot , \\cdot )$ $\\vert , \\mathcal { N } ( x ) = \\{ x ^ { \\prime } : d ( x , x ^ { \\prime } ) \\leq \\xi \\}$ . ${ \\mathcal { N } } ( A ) : = \\cup _ { x \\in A } { \\mathcal { N } } ( x )$ . Denote the expected error on the target domain by $\\mathrm { E r r } _ { Q } ( f ) : = \\mathbb { E } _ { ( x , y ) \\sim Q } \\mathbb { I } ( \\tilde { f } ( x ) \\neq y )$ . ", + "bbox": [ + 173, + 309, + 825, + 397 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We study the CST algorithm under the expansion assumption of the mixture distribution [66, 11]. Intuitively, this assumption indicates that the conditional distributions $P _ { i }$ and $Q _ { i }$ are closely located and regularly shaped, enabling knowledge transfer from the source domain to the target domain. ", + "bbox": [ + 174, + 401, + 823, + 444 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Definition 1 $[ q , \\epsilon )$ -constant expansion [66]). We say $P$ and $Q$ satisfy $( q , \\epsilon )$ -constant expansion for some constant $q , \\epsilon \\in ( 0 , 1 )$ , if for any set $A \\in { \\mathcal { X } }$ and any $i \\in [ K ]$ with ${ \\textstyle \\frac { 1 } { 2 } } > P _ { \\frac { 1 } { 2 } ( P _ { i } + Q _ { i } ) } ( A ) > q$ , we have $P _ { \\frac { 1 } { 2 } ( P _ { i } + Q _ { i } ) } ( { \\mathcal { N } } ( A ) \\backslash A ) > \\operatorname* { m i n } \\{ \\epsilon , P _ { \\frac { 1 } { 2 } ( P _ { i } + Q _ { i } ) } ( A ) \\} .$ . ", + "bbox": [ + 173, + 446, + 825, + 497 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Based on this expansion assumption, we consider a robustness-constrained version of CST. Later we will show that the robustness is closely related to the uncertainty. Denote by $f _ { s }$ the source model and $f _ { t }$ the model trained on the target with pseudo-labels. Let $R ( f _ { t } ) : = P _ { \\frac { 1 } { 2 } ( P + Q ) } ( \\{ x : \\exists x ^ { \\prime } \\in$ $\\mathcal { N } ( x ) , \\tilde { f } _ { t } ( x ) \\neq \\tilde { f } _ { t } ( x ^ { \\prime } ) \\} )$ represent the robustness [66] of $f _ { t }$ on $P$ and $Q$ . Suppose $\\mathbb { E } _ { ( x , y ) \\sim Q } \\mathbb { I } ( \\tilde { f } _ { s } ( x ) \\neq$ $\\tilde { f } _ { t } ( x ) ) \\leq c$ and $R ( f _ { t } ) \\leq \\rho$ . The following theorem states that when $f _ { s }$ and $f _ { t }$ behave similarly on the target domain $Q$ and $f _ { t }$ is robust to local changes in input, the minimizer of the cycle source error $\\mathrm { E r r } _ { P } ( f _ { t } )$ will guarantee low error of $f _ { s }$ on the target domain $Q$ . ", + "bbox": [ + 173, + 505, + 826, + 613 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Theorem 1. Suppose Definition 1 holds for $P$ and $Q$ . For any $f _ { s } , f _ { t }$ satisfying $\\mathbb { E } _ { ( x , y ) \\sim Q } \\mathbb { I } ( \\tilde { f } _ { s } ( x ) \\neq$ $\\tilde { f } _ { t } ( x ) ) \\leq c$ and $R ( f _ { t } ) \\leq \\rho _ { : }$ , the expected error of $f _ { s }$ on the target domain $Q$ is bounded, ", + "bbox": [ + 173, + 617, + 826, + 651 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/3767b419c5d7590bcb91c5aa576cdb2e8a221e8b675b0cb2270ca20aa270faad.jpg", + "text": "$$\n\\mathrm { E r r } _ { Q } ( f _ { s } ) \\le \\mathrm { E r r } _ { P } ( f _ { t } ) + c + 2 q + \\frac { \\rho } { \\mathrm { m i n } \\{ \\epsilon , q \\} } .\n$$", + "text_format": "latex", + "bbox": [ + 348, + 656, + 648, + 686 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "To further relate the expected error with the CST training objective and obtain finite-sample guarantee, we use the multi-class margin loss: $l _ { \\gamma } ( f ( x ) , y ) : = \\bar { \\psi _ { \\gamma } } ( - { \\cal M } ( f ( x ) , y ) )$ , where $\\mathcal { M } ( v , y ) =$ $v _ { [ y ] } - \\operatorname* { m a x } _ { y ^ { \\prime } \\ne y } v _ { [ y ^ { \\prime } ] }$ and $\\psi _ { \\gamma }$ is the ramp function. We then extend the margin loss: $\\mathcal { M } ( v ) =$ $\\begin{array} { r } { \\operatorname* { m a x } _ { y } \\big ( v _ { [ y ] } - \\operatorname* { m a x } _ { y ^ { \\prime } \\neq y } v _ { [ y ^ { \\prime } ] } \\big ) } \\end{array}$ (The difference between the largest and the second largest scores in $v )$ , and $\\dot { l } _ { \\gamma } ( f _ { t } ( x ) , f _ { s } ( x ) ) : = \\psi _ { \\gamma } ( - \\mathcal { M } ( f _ { t } ( x ) , \\tilde { f } _ { s } ( x ) ) )$ . Further suppose $f _ { [ i ] }$ is $L _ { f }$ -Lipschitz w.r.t. the metric $d ( \\cdot , \\cdot )$ and $\\tau : = 1 - 2 L _ { f } \\xi \\operatorname* { m i n } \\{ \\epsilon , q \\} > 0$ . Consider the following training objective for CST, denoted by $L _ { \\mathrm { C S T } } ( f _ { s } , f _ { t } )$ , where $\\mathcal { L } _ { \\widehat { P } , \\gamma } ( f _ { t } ) : = \\mathbb { E } _ { ( x , y ) \\sim \\widehat { P } } l _ { \\gamma } ( f _ { t } ( x ) , y )$ corresponds to the cycle source loss in equation 5, $L _ { \\widehat { Q } , \\gamma } ( f _ { t } , f _ { s } ) : = \\mathbb { E } _ { ( x , y ) \\sim \\widehat { Q } } l _ { \\gamma } ( f _ { t } ( x ) , f _ { s } ( x ) )$ is consistent with the target loss in equation 4, and $\\mathcal { M } ( f _ { t } ( x ) )$ is closely related to the uncertainty of predictions in equation 11. ", + "bbox": [ + 173, + 696, + 826, + 838 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/c6d24ce0adbf8cbbf84bc22d55ac6324f6f73dadd0fed6d9251d5b91d46526cc.jpg", + "text": "$$\n\\operatorname* { m i n } L _ { \\mathrm { C S T } } ( f _ { s } , f _ { t } ) : = L _ { \\widehat { P } , \\gamma } ( f _ { t } ) + L _ { \\widehat { Q } , \\gamma } ( f _ { t } , f _ { s } ) + \\frac { 1 - \\mathbb { E } _ { ( x , y ) \\sim \\frac { 1 } { 2 } ( \\widehat { P } + \\widehat { Q } ) } \\mathcal { M } ( f _ { t } ( x ) ) } { \\tau } .\n$$", + "text_format": "latex", + "bbox": [ + 233, + 842, + 763, + 877 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "The following theorem shows that the minimizer of the training objective $L _ { \\mathrm { C S T } } ( f _ { s } , f _ { t } )$ guarantees low population error of $f _ { s }$ on the target domain $Q$ . ", + "bbox": [ + 171, + 882, + 823, + 912 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Theorem 2. $ { \\widehat { \\mathcal { R } } } ( \\mathcal { F } | _ { { \\widehat { P } } } )$ denotes the empirical Rademacher complexity of function class $\\mathcal { F }$ on dataset $\\widehat { P }$ . For any solution of equation $^ { 1 3 }$ and $\\gamma > 0$ , with probability larger than $1 - \\delta$ , ", + "bbox": [ + 173, + 88, + 823, + 125 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "$\\mathrm { E r r } _ { Q } ( f _ { s } ) \\leq L _ { \\mathrm { C S T } } ( f _ { s } , f _ { t } ) + 2 q + \\frac { 4 K } { \\gamma } \\left[ \\widehat { R } ( \\mathcal { F } | _ { \\widehat { P } } ) + \\widehat { \\mathcal { R } } ( \\tilde { \\mathcal { F } } \\times \\mathcal { F } | _ { \\widehat { Q } } ) \\right] + \\frac { 2 } { \\tau } \\left[ \\widehat { R } ( \\mathcal { F } | _ { \\widehat { P } } ) + \\widehat { \\mathcal { R } } ( \\mathcal { F } | _ { \\widehat { Q } } ) \\right] + \\zeta ,$ where $\\zeta = O \\left( \\sqrt { \\log ( 1 / \\delta ) / n _ { s } } + \\sqrt { \\log ( 1 / \\delta ) / n _ { t } } \\right)$ is a low-order term. $\\tilde { \\mathcal { F } } \\times \\mathcal { F }$ refers to the function class $\\{ x f ( \\overleftarrow { x } ) _ { [ \\tilde { f } ^ { \\prime } ( x ) ] } : f , f ^ { \\prime } \\in \\mathcal { F } \\} _ { }$ . ", + "bbox": [ + 174, + 126, + 825, + 205 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Main insights. Theorem 2 justifies CST under the expansion assumption. The generalization error of the classifier $f _ { s }$ on the target domain is bounded with the CST loss objective $L _ { \\mathrm { C S T } } ( f _ { s } , f _ { t } )$ , the intrinsic property of the data distribution $q$ , and the complexity of the function classes. In our algorithm, $\\bar { L _ { \\mathrm { C S T } } } ( f _ { s } , f _ { t } )$ is minimized by the neural networks and $q$ is a constant. The complexity of the function class can be controlled with proper regularization. ", + "bbox": [ + 173, + 212, + 826, + 282 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.2 Hard Case for Feature Adaptation and Standard Self-Training ", + "text_level": 1, + "bbox": [ + 173, + 294, + 650, + 309 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "To gain more insight, we study UDA in a quadratic neural network $f _ { \\theta , \\phi } ( x ) = \\theta ^ { \\top } ( \\phi ^ { \\top } x ) ^ { \\odot 2 }$ , where $\\odot$ is element-wise power. In UDA, the source can have multiple solutions but we aim to learn the one working on the target [34]. We design the underlying distributions $p$ and $q$ in Table 6 to reflect this. Consider the following $P$ and $Q$ . $x _ { [ 1 ] }$ and $x _ { [ 2 ] }$ are sampled i.i.d. from distribution $p$ on $P$ , and from $q$ on $Q$ . For $i \\in [ 3 , d ]$ , $x _ { [ i ] } = \\sigma _ { i } x _ { [ 2 ] }$ on $P$ and $x _ { [ i ] } = \\sigma _ { i } x _ { [ 1 ] }$ on $Q$ . $\\sigma _ { i } \\in \\{ \\pm 1 \\}$ are i.i.d. and uniform. We also assume realizability: for all $y = x _ { [ 1 ] } ^ { 2 } - x _ { [ 2 ] } ^ { 2 }$ $i \\in [ 2 , d ]$ for both source and target. Note that are solutions to $P$ but only $y = x _ { [ 1 ] } ^ { 2 } - x _ { [ 2 ] } ^ { 2 }$ $y = x _ { [ 1 ] } ^ { 2 } - x _ { [ i ] } ^ { 2 }$ [1] \u0000 [i]works on $Q$ . We visualize this specialized setting in Figure 4. ", + "bbox": [ + 171, + 315, + 823, + 372 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/dec7d5c5c265fa3517e125f23204bae6b6328a41a793093a8f16e95e56e7c393.jpg", + "table_caption": [ + "Table 1: The design of $p$ and $q$ . " + ], + "table_footnote": [], + "table_body": "
Distribution-1+10
Source p[0.050.050.90
Target q0.250.250.50
", + "bbox": [ + 630, + 393, + 823, + 445 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 378, + 620, + 457 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/c5b098da78c5868e7858cc364d018d8dfcb55a8acb4b0000cd134653d0e02a42.jpg", + "image_caption": [ + "Figure 4: The hard case where $d = 3$ . Green dots for $y = 1$ , red dots for $y = 0$ , and blue dots for $y = - 1$ . The grey curve is the classification boundary of different features. The good feature $x _ { [ 1 ] } ^ { 2 } - x _ { [ 2 ] } ^ { 2 }$ works on the target domain (shown in (a) and (c)), whereas the spurious feature $x _ { [ 1 ] } ^ { 2 } - x _ { [ 3 ] } ^ { 2 }$ only works on the source domain (shown in (b) andwhile CST learns tion 4.2, we show that feature adaptation and standard self-training learn . $x _ { [ 1 ] } ^ { 2 } - x _ { [ 3 ] } ^ { 2 }$ , $x _ { [ 1 ] } ^ { 2 } - x _ { [ 2 ] } ^ { 2 }$ " + ], + "image_footnote": [], + "bbox": [ + 196, + 470, + 789, + 559 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "To make the features more tractable, we study the norm-constrained version of the algorithms (details are deferred to Section A.3.2). We compare the features learned by feature adaptation, standard selftraining, and CST. Intuitively, feature adaptation fails because the ideal target solution $y = x _ { [ 1 ] } ^ { 2 } - x _ { [ 2 ] } ^ { 2 }$ has larger distance in the feature space than other spurious solutions y = x2[1] $y = x _ { [ 1 ] } ^ { 2 } - x _ { [ i ] } ^ { 2 }$ \u0000 x2[i] . Standard selftraining also fails since it will choose randomly among all solutions. In comparison, CST can recover the ground truth, because it can distinguish the spurious solution resulting in bad pseudo-labels. A classifier trained with those pseudo-labels cannot work on the source domain in turn. This intuition is rigorously justified in the following two theorems. ", + "bbox": [ + 173, + 650, + 826, + 767 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Theorem 3. For $\\epsilon \\in ( 0 , 0 . 5 )$ , the following statements hold for feature adaptation and self-training: ", + "bbox": [ + 173, + 770, + 825, + 785 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "• For failure rate $\\xi > 0$ , and target dataset size $n _ { t } > \\Theta ( \\log { \\frac { 1 } { \\xi } } )$ , with probability at least $1 - \\xi$ over the sampling of target data, the solution $( \\hat { \\theta } _ { \\mathrm { F A } } , \\hat { \\phi } _ { \\mathrm { F A } } )$ found by feature adaptation satisfies ", + "bbox": [ + 176, + 790, + 825, + 825 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/afe6482f8253d3cdc0a14cb5eb569c010b4413eaf5d99d1cc896456d1e87bf37.jpg", + "text": "$$\n\\mathrm { E r r } _ { Q } ( \\hat { \\theta } _ { \\mathrm { F A } } , \\hat { \\phi } _ { \\mathrm { F A } } ) \\geq \\epsilon .\n$$", + "text_format": "latex", + "bbox": [ + 439, + 835, + 573, + 856 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "• With probability at least $1 - { \\frac { 1 } { d - 1 } }$ , the solution $( \\hat { \\theta } _ { \\mathrm { S T } } , \\hat { \\phi } _ { \\mathrm { S T } } )$ of standard self-training satisfies ", + "bbox": [ + 171, + 864, + 784, + 885 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/fd18edd7a8a42cef00255f76e999ade6cbb72cc6851eacd590e343946e6c4f62.jpg", + "text": "$$\n\\mathrm { E r r } _ { Q } ( \\hat { \\theta } _ { \\mathrm { S T } } , \\hat { \\phi } _ { \\mathrm { S T } } ) \\geq \\epsilon .\n$$", + "text_format": "latex", + "bbox": [ + 441, + 893, + 573, + 912 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Theorem 4. For failure rate $\\xi > 0$ , and target dataset size $\\begin{array} { r } { n _ { t } > \\Theta ( \\log { \\frac { 1 } { \\xi } } ) } \\end{array}$ , with probability at least $1 - \\xi ,$ , the solution of $C S T ( \\hat { \\phi } _ { \\mathrm { C S T } } , \\hat { \\theta } _ { \\mathrm { C S T } } )$ recovers the ground truth of the target dataset: ", + "bbox": [ + 171, + 90, + 825, + 126 + ], + "page_idx": 7 + }, + { + "type": "equation", + "img_path": "images/a687f52493667af53742d40a8ef8dff8469302111c5c6a72746feb742d9f3911.jpg", + "text": "$$\n\\mathrm { E r r } _ { Q } ( \\hat { \\theta } _ { \\mathrm { C S T } } , \\hat { \\phi } _ { \\mathrm { C S T } } ) = 0 .\n$$", + "text_format": "latex", + "bbox": [ + 436, + 147, + 588, + 167 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5 Experiments ", + "text_level": 1, + "bbox": [ + 174, + 176, + 312, + 194 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We test the performance of the proposed method on both vision and language datasets. Cycle SelfTraining (CST) consistently outperforms state-of-the-art feature adaptation and self-training methods. Code is available at https://github.com/Liuhong99/CST. ", + "bbox": [ + 176, + 202, + 825, + 243 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5.1 Setup", + "text_level": 1, + "bbox": [ + 174, + 253, + 253, + 267 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Datasets. We experiment on visual object recognition and linguistic sentiment classification tasks: Office-Home [64] has 65 classes from four kinds of environment with large domain gap: Artistic (Ar), Clip Art (Cl), Product $( \\mathbf { P r } )$ , and Real-World (Rw); VisDA-2017 [45] is a large-scale UDA dataset with two domains named Synthetic and Real. The datasets consist of over $2 0 0 \\mathrm { k }$ images from 12 categories of objects; Amazon Review [10] is a linguistic sentiment classification dataset of product reviews in four products: Books $\\mathbf { ( B ) }$ , DVDs (D), Electronics (E), and Kitchen $\\mathbf { \\eta } ( \\mathbf { K } )$ . ", + "bbox": [ + 174, + 272, + 825, + 356 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Implementation. We use ResNet-50 [26] (pretrained on ImageNet [53]) as feature extractors for vision tasks, and BERT [16] for linguistic tasks. On VisDA-2017, we also provide results of ResNet101 to include more baselines. We use cross-entropy loss for classification on the source domain. When training the target head $\\widehat { \\theta } _ { t }$ and updating the feature extractor with CST, we use squared loss to get the analytical solution of $\\widehat { \\theta } _ { t }$ directly and avoid calculating second order derivatives as metalearning [18]. Details on adapting squared loss to multi-class classification are deferred to Appendix B. We adopt SGD with initial learning rate $\\eta _ { 0 } = 2 e - 3$ for image classification and $\\eta _ { 0 } = 5 e - 4$ for sentiment classification. Following standard protocol in [26], we decay the learning rate by 0.1 each 50 epochs until 150 epochs. We run all the tasks 3 times and report mean and deviation in top-1 accuracy. For VisDA-2017, we report the mean class accuracy. Following Theorem 2, we also enhance CST with sharpness-aware regularization [19] $( \\mathbf { C S T + S A M } )$ , which help regularize the Lipschitzness of the function class. Due to space limit, we report mean accuracies in Tables 2 and 3 and defer standard deviation to Appendix C. ", + "bbox": [ + 173, + 361, + 826, + 546 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5.2 Baselines ", + "text_level": 1, + "bbox": [ + 174, + 555, + 277, + 569 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We compare with two lines of works in domain adaptation: feature adaptation and self-training. We also compare with more complex state-of-the-arts and create stronger baselines by combining feature adaptation and self-training. ", + "bbox": [ + 178, + 578, + 821, + 621 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Feature Adaptation: DANN [22], MCD [54], CDAN [37] (which improves DANN with pseudolabel conditioning), MDD [73] (which improves previous domain adaptation with margin theory), Implicit Alignment (IA) [28] (which improves MDD to deal with label shift). ", + "bbox": [ + 173, + 626, + 826, + 669 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Self-Training. We include VAT [40], MixMatch [8] and FixMatch [57] in the semi-supervised learning literature as self-training methods. We also compare with self-training methods for UDA: CBST [77], which considers class imbalance in standard self-training, and KLD [78], which improves CBST with label regularization. However, these methods involve tricks specified for convolutional networks. Thus, in sentiment classification tasks where we use BERT backbones, we compare with other consistency regularization baselines: VAT [40], VAT $^ { \\cdot } +$ Entropy Minimization. ", + "bbox": [ + 173, + 674, + 825, + 758 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Feature Adaptation $^ +$ Self-Training. DIRT-T [56] combines DANN, VAT, and entropy minimization. We also create more powerful baselines: CDAN $^ +$ VAT $^ +$ Entropy and MDD $+$ Fixmatch. ", + "bbox": [ + 173, + 763, + 823, + 792 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Other SOTA. AFN [69] boosts transferability by large norm. STAR [38] aligns domains with stochastic classifiers. SENTRY [48] selects confident examples with a committee of random augmentations. ", + "bbox": [ + 173, + 797, + 823, + 827 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5.3 Results ", + "text_level": 1, + "bbox": [ + 173, + 837, + 264, + 851 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Results on 12 pairs of Office-Home tasks are shown in Table 2. When domain shift is large, standard self-training methods such as VAT and FixMatch suffer from the decay in pseudo-label quality. CST outperforms feature adaptation and self-training methods significantly in 9 out of 12 tasks. Note that CST does not involve manually setting confidence threshold or reweighting. ", + "bbox": [ + 176, + 856, + 825, + 911 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/eb42d296b2f1285d0c7b99e47a1d81c9ac4a636562d148c0779058e73bc8001b.jpg", + "table_caption": [ + "Table 2: Accuracy $( \\% )$ on Office-Home for unsupervised domain adaptation (ResNet-50). " + ], + "table_footnote": [], + "table_body": "
Method|Ar-Cl Ar-Pr Ar-Rw Cl-Ar Cl-Pr Cl-Rw Pr-Ar Pr-CIPr-Rw Rw-Ar Rw-Cl Rw-Pr|Avg.
DANN [22]45.659.370.147.058.560.946.143.768.563.251.876.857.6
CDAN [37]50.770.676.057.670.070.057.450.977.370.956.781.665.8
CDAN+VAT+Entropy52.271.576.461.170.367.859.554.478.673.259.082.767.3
FixMatch [57]51.874.280.163.573.861.364.751.480.073.356.881.767.7
MDD [73]54.973.777.860.071.471.861.253.678.172.560.282.368.1
MDD+IA [28]56.277.979.264.473.174.464.254.279.971.258.183.169.5
SENTRY [48]61.877.480.166.371.674.766.863.080.974.066.384.172.2
CST59.079.683.468.477.176.768.956.483.075.362.285.1|73.0
", + "bbox": [ + 174, + 104, + 825, + 239 + ], + "page_idx": 8 + }, + { + "type": "table", + "img_path": "images/064187228bcfd5fa0d44b25d3abd40425be164827f67f87214f6fccf6617bc69.jpg", + "table_caption": [ + "Table 3: Accuracy $( \\% )$ on Multi-Domain Sentiment Dataset for domain adaptation with BERT. " + ], + "table_footnote": [], + "table_body": "
MethodB-DB-EB-KD-BD-ED-KE-BE-DE-KK-BK-DK-EAvg.
Source-only89.788.490.990.188.590.286.988.591.587.687.391.289.2
DANN [22]90.289.590.991.090.690.287.187.592.887.887.693.289.9
VAT[40]90.691.091.790.890.892.087.286.992.686.987.792.990.1
VAT+Entropy90.491.391.591.091.192.487.586.392.486.587.593.190.1
MDD [73]90.490.491.890.290.991.087.586.392.589.087.992.190.0
CST91.592.992.691.992.693.590.289.493.887.988.393.591.5
", + "bbox": [ + 173, + 268, + 823, + 377 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Table 4 shows the results on VisDA-2017. CST surpasses state-of-the-arts with ResNet-50 and ResNet101 backbones. We also combine feature adaptation and self-training (DIRT-T, CDAN+VAT+entropy and MDD $^ { + }$ FixMatch) to test if feature adaptation alleviates the negative effect of domain shift in standard self-training. Results indicate that CST is a better solution than simple combination. ", + "bbox": [ + 174, + 411, + 825, + 467 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "While most traditional self-training methods include techniques specified for ConvNets such as Mixup [72], CST is a universal method and can directly work on sentiment classification by simply replacing the head and training objective of BERT [16]. In Table 3, most feature adaptation baselines improve over source only marginally, but CST outperforms all baselines on most tasks significantly. ", + "bbox": [ + 173, + 473, + 825, + 530 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "5.4 Analysis ", + "text_level": 1, + "bbox": [ + 174, + 547, + 271, + 563 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Ablation Study. We study the role of each part of CST in self-training. CST w/o Tsallis removes the Tsallis entropy $L _ { \\mathrm { T s a l l i s } , \\alpha }$ . CST $+$ Entropy replaces the Tsallis entropy with standard entropy. FixMatch+Tsallis adds $L _ { \\mathrm { T s a l l i s } , \\alpha }$ to standard self-training. Observations are shown in Table 5. $\\mathrm { C S T + l }$ Entropy performs $3 . 7 \\%$ worse than CST, indicating that Tsallis entropy is a better regularization for pseudolabels than standard entropy. CST performs $5 . 4 \\%$ better than FixMatch, indicating that CST is better adapted to domain shift than standard self-training. While FixMatch+Tsallis outperforms FixMatch, it is still $3 . 6 \\%$ behind CST, with much larger total variation distance $d _ { \\mathrm { T V } }$ between pseudo-labels and ground-truths, indicating that CST makes pseudo-labels more reliable than standard self-training under domain shift. ", + "bbox": [ + 174, + 569, + 545, + 681 + ], + "page_idx": 8 + }, + { + "type": "table", + "img_path": "images/1f009038872b5ecebb92230a8969f0c1c81ac204407dd1ce16149601336c7a75.jpg", + "table_caption": [ + "Table 5: Ablation on VisDA-2017. " + ], + "table_footnote": [], + "table_body": "
MethodAccuracy ↑|drv↓
FixMatch [57]74.5 ± 0.20.22
Fixmatch+Tsallis76.3 ± 0.80.15
CST w/o Tsallis72.0 ± 0.40.16
CST+Entropy76.2 ± 0.60.20
CST79.9 ± 0.50.12
", + "bbox": [ + 557, + 580, + 823, + 678 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 681, + 823, + 736 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Quality of Pseudo-labels. We visualize the error of pseudo-labels during training on VisDA-2017 in Figure 5 (Left). The error of target classifier $\\theta _ { t }$ on the source domain decreases quickly in training, when both the error of pseudo-labels (error of $\\theta _ { s }$ on $Q$ ) and the total variation (TV) distance between pseudo-labels and ground-truths continue to decay, indicating that CST gradually refines pseudolabels. This forms a clear contrast to standard self-training as visualized in Figure 2 (Middle), where the distance $d _ { \\mathrm { T V } }$ remains nearly unchanged throughout training. ", + "bbox": [ + 173, + 741, + 825, + 825 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Comparison of Gibbs entropy and Tsallis entropy. We compare the pseudo-labels learned with standard Gibbs entropy and Tsallis entropy on $\\mathbf { A r { } C l }$ with ResNet-50 at epoch 40. We compute the difference between the largest and the second largest softmax scores of each target example and plot the histogram in Figure 5 (Right). Gibbs entropy makes the largest softmax output close to 1, indicating over-confidence. In this case, if the prediction is wrong, it can be hard to correct it using self-training. In contrast, Tsallis entropy allows the largest and the second largest scores to be similar. ", + "bbox": [ + 174, + 832, + 825, + 915 + ], + "page_idx": 8 + }, + { + "type": "table", + "img_path": "images/3398ef4904b4c447ef21ebadb24014f266b754a7009178d7c7d1a7ef77df12da.jpg", + "table_caption": [ + "Table 4: Mean Class Accuracy $( \\% )$ for unsupervised domain adaptation on VisDA-2017. " + ], + "table_footnote": [], + "table_body": "
MethodResNet-50ResNet-101MethodResNet-50ResNet-101
DANN [22]69.379.5CBST[77]176.4 ± 0.9
VAT [40]68.0±0.373.4 ± 0.5KLD [78]178.1 ± 0.2
DIRT-T [56]68.2 ± 0.377.2 ± 0.5MDD[73]74.681.6 ± 0.3
MCD [54]69.277.7AFN [69]176.1
CDAN [37]70.080.1MDD+IA [28]75.81
CDAN+VAT+Entropy76.5 ± 0.580.4± 0.7MDD+FixMatch77.8 ± 0.382.4 ± 0.4
MixMatch69.3 ± 0.477.0 ± 0.5STAR [38]182.7
FixMatch [57]74.5 ± 0.279.5 ± 0.3SENTRY [48]76.71
CST79.9 ± 0.584.8± 0.6CST+SAM80.6 ± 0.586.5 ± 0.7
", + "bbox": [ + 174, + 90, + 823, + 237 + ], + "page_idx": 9 + }, + { + "type": "image", + "img_path": "images/b438078399476e8bc688a6c6252f161f15cda1ea9f72241d501cd24f973a4fac.jpg", + "image_caption": [ + "Figure 5: Analysis. Left: Error of pseudo-labels and reverse pseudo-labels. The error of target classifier $\\theta _ { t }$ on the source domain decreases, indicating the quality of pseudo-labels is refined. Right: Histograms of the difference between the largest and the second largest softmax scores. Tsallis entropy avoids over-confidence. " + ], + "image_footnote": [], + "bbox": [ + 194, + 246, + 799, + 352 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "6 Related Work ", + "text_level": 1, + "bbox": [ + 174, + 404, + 321, + 421 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Self-Training. Self-training is a mainstream technique for semi-supervised learning [13]. In this work, we focus on pseudo-labeling [52, 31, 2], which uses unlabeled data by training on pseudo-labels generated by a source model. Other lines of work study consistency regularization [4, 51, 55, 40]. Recent works demonstrate the power of such methods [67, 57, 23]. Equipped with proper training techniques, these methods can achieve comparable results as standard training that uses much more labeled examples [17]. Zoph et al. [76] compare self-training to pre-training and joint training. Vu et al. [65], Mukherjee & Awadallah [42] show that task-level self-training works well in few-shot learning. These methods are tailored to semi-supervised learning or general representation learning and do not take domain shift into consideration explicitly. Wei et al. [66], Frei et al. [20] provide the first nice theoretical analysis of self-training based on the expansion assumption. ", + "bbox": [ + 173, + 429, + 825, + 568 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Domain Adaptation. Inspired by the generalization error bound of Ben-David et al. [7], Long et al. [34], Zellinger et al. [71] minimize distance measures between source and target distributions to learn domain-invariant features. Ganin et al. [22] (DANN) proposed to approximate the domain distance by adversarial learning. Follow-up works proposed various improvement upon DANN [63, 54, 37, 73, 28]. Popular as they are, failure cases exist in situation like label shift [74, 32], shift in support of domains [29], and large discrepancy between source and target [33]. Another line of works try to address domain adaptation with self-training. Shu et al. [56] improves DANN with VAT and entropy minimization. French et al. [21], Zou et al. [78], Li et al. [32] incorporated various semi-supervised learning techniques to boost domain adaptation performance. Kumar et al. [30], Chen et al. [15] and Cai et al. [11] showed self-training provably works in domain adaptation under certain assumptions. ", + "bbox": [ + 174, + 574, + 825, + 712 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "7 Conclusion ", + "text_level": 1, + "bbox": [ + 174, + 724, + 299, + 741 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "We propose cycle self-training in place of standard self-training to explicitly address the distribution shift in domain adaptation. We show that our method provably works under the expansion assumption and demonstrate hard cases for feature adaptation and standard self-training. Self-training (or pseudolabeling) is only one line of works in the semi-supervised learning literature. Future work can delve into the behaviors of other semi-supervised learning techniques including consistency regularization and data augmentation under distribution shift, and exploit them extensively for domain adaptation. ", + "bbox": [ + 174, + 750, + 825, + 833 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Acknowledgements ", + "text_level": 1, + "bbox": [ + 174, + 844, + 338, + 862 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "This work was supported by the National Natural Science Foundation of China under Grants 62022050 and 62021002, Beijing Nova Program under Grant Z201100006820041, China’s Ministry of Industry and Information Technology, the MOE Innovation Plan and the BNRist Innovation Fund. ", + "bbox": [ + 176, + 869, + 825, + 911 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "References ", + "text_level": 1, + "bbox": [ + 174, + 89, + 267, + 106 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "[1] Albadawy, E. A., Saha, A., and Mazurowski, M. A. Deep learning for segmentation of brain tumors: Impact of cross-institutional training and testing. Medical Physics, 45(3), 2018. \n[2] Arazo, E., Ortego, D., Albert, P., O’Connor, N. E., and McGuinness, K. Pseudo-labeling and confirmation bias in deep semi-supervised learning. CoRR, abs/1908.02983, 2019. \n[3] Arora, S., Du, S. S., Hu, W., Li, Z., Salakhutdinov, R. R., and Wang, R. On exact computation with an infinitely wide neural net. In NeurIPS, pp. 8141–8150. 2019. \n[4] Bachman, P., Alsharif, O., and Precup, D. Learning with pseudo-ensembles. In NeurIPS, volume 27, pp. 3365–3373, 2014. \n[5] Bartlett, P. L. and Mendelson, S. Rademacher and gaussian complexities: Risk bounds and structural results. JMLR, 3(Nov):463–482, 2002. \n[6] Ben-David, S. and Urner, R. On the hardness of domain adaptation and the utility of unlabeled target samples. In ALT, pp. 139–153, 2012. \n[7] Ben-David, S., Blitzer, J., Crammer, K., Kulesza, A., Pereira, F., and Vaughan, J. W. A theory of learning from different domains. Machine Learning, 79(1-2):151–175, 2010. \n[8] Berthelot, D., Carlini, N., Goodfellow, I., Papernot, N., Oliver, A., and Raffel, C. Mixmatch: A holistic approach to semi-supervised learning. arXiv preprint arXiv:1905.02249, 2019. \n[9] Bertinetto, L., Henriques, J. F., Torr, P., and Vedaldi, A. Meta-learning with differentiable closed-form solvers. In ICLR, 2019. \n[10] Blitzer, J., Dredze, M., and Pereira, F. Biographies, Bollywood, boom-boxes and blenders: Domain adaptation for sentiment classification. In ACL, pp. 440–447, 2007. \n[11] Cai, T., Gao, R., Lee, J. D., and Lei, Q. A theory of label propagation for subpopulation shift, 2021. \n[12] Carlini, N. Poisoning the unlabeled dataset of semi-supervised learning, 2021. \n[13] Chapelle, O., Scholkopf, B., and Zien, A. ¨ Semi-supervised learning. MIT press Cambridge, 2006. \n[14] Chen, C., Xie, W., Huang, W., Rong, Y., Ding, X., Huang, Y., Xu, T., and Huang, J. Progressive feature alignment for unsupervised domain adaptation. In CVPR, pp. 627–636, 2019. \n[15] Chen, Y., Wei, C., Kumar, A., and Ma, T. Self-training avoids using spurious features under domain shift. In NeurIPS, pp. 21061–21071, 2020. \n[16] Devlin, J., Chang, M.-W., Lee, K., and Toutanova, K. BERT: Pre-training of deep bidirectional transformers for language understanding. In NAACL, pp. 4171–4186, 2019. \n[17] Du, J., Grave, E., Gunel, B., Chaudhary, V., Celebi, O., Auli, M., Stoyanov, V., and Conneau, A. Self-training improves pre-training for natural language understanding. In NAACL, pp. 5408–5418, 2021. \n[18] Finn, C., Abbeel, P., and Levine, S. Model-agnostic meta-learning for fast adaptation of deep networks. In ICML, pp. 1126–1135, 2017. \n[19] Foret, P., Kleiner, A., Mobahi, H., and Neyshabur, B. Sharpness-aware minimization for efficiently improving generalization. In ICLR, 2021. \n[20] Frei, S., Zou, D., Chen, Z., and Gu, Q. Self-training converts weak learners to strong learners in mixture models. arXiv preprint arXiv:2106.13805, 2021. \n[21] French, G., Mackiewicz, M., and Fisher, M. Self-ensembling for visual domain adaptation. In ICLR, 2018. \n[22] Ganin, Y., Ustinova, E., Ajakan, H., Germain, P., Larochelle, H., Marchand, M., and Lempitsky, V. Domain-adversarial training of neural networks. JMLR, 17(1):2096–2030, 2016. \n[23] Ghiasi, G., Zoph, B., Cubuk, E. D., Le, Q. V., and Lin, T.-Y. Multi-task self-training for learning general representations. In ICCV, pp. 8856–8865, 2021. \n[24] Grandvalet, Y. and Bengio, Y. Semi-supervised learning by entropy minimization. In NeurIPS, pp. 529–536, 2004. \n[25] Guo, C., Pleiss, G., Sun, Y., and Weinberger, K. Q. On calibration of modern neural networks. In ICML, pp. 1321–1330, 2017. \n[26] He, K., Zhang, X., Ren, S., and Sun, J. Deep residual learning for image recognition. In CVPR, pp. 770–778, 2016. \n[27] Hoffman, J., Tzeng, E., Park, T., Zhu, J., Isola, P., Saenko, K., Efros, A. A., and Darrell, T. Cycada: Cycle-consistent adversarial domain adaptation. In ICML, pp. 1994–2003, 2018. \n[28] Jiang, X., Lao, Q., Matwin, S., and Havaei, M. Implicit class-conditioned domain alignment for unsupervised domain adaptation. In ICML, pp. 4816–4827, 2020. \n[29] Johansson, F. D., Sontag, D., and Ranganath, R. Support and invertibility in domain-invariant representations. In AISTATS, pp. 527–536, 2019. \n[30] Kumar, A., Ma, T., and Liang, P. Understanding self-training for gradual domain adaptation. In ICML, pp. 5468–5479, 2020. \n[31] Lee, D.-H. Pseudo-label : The simple and efficient semi-supervised learning method for deep neural networks. ICML Workshop: Challenges in Representation Learning (WREPL), 2013. \n[32] Li, B., Wang, Y., Che, T., Zhang, S., Zhao, S., Xu, P., Zhou, W., Bengio, Y., and Keutzer, K. Rethinking distributional matching based domain adaptation. ArXiv, abs/2006.13352, 2020. \n[33] Liu, H., Long, M., Wang, J., and Jordan, M. Transferable adversarial training: A general approach to adapting deep classifiers. In ICML, volume 97, pp. 4013–4022, 2019. \n[34] Long, M., Cao, Y., Wang, J., and Jordan, M. I. Learning transferable features with deep adaptation networks. In ICML, pp. 97–105, 2015. \n[35] Long, M., Zhu, H., Wang, J., and Jordan, M. I. Unsupervised domain adaptation with residual transfer networks. In NeurIPS, pp. 136–144, 2016. \n[36] Long, M., Zhu, H., Wang, J., and Jordan, M. I. Deep transfer learning with joint adaptation networks. In ICML, pp. 2208–2217, 2017. \n[37] Long, M., Cao, Z., Wang, J., and Jordan, M. I. Conditional adversarial domain adaptation. In NeurIPS, pp. 1640–1650. 2018. \n[38] Lu, Z., Yang, Y., Zhu, X., Liu, C., Song, Y.-Z., and Xiang, T. Stochastic classifiers for unsupervised domain adaptation. In CVPR, pp. 9111–9120, 2020. \n[39] Mey, A. and Loog, M. A soft-labeled self-training approach. In ICPR, 2016. \n[40] Miyato, T., Maeda, S., Ishii, S., and Koyama, M. Virtual adversarial training: A regularization method for supervised and semi-supervised learning. TPAMI, 2018. \n[41] Mohri, M., Rostamizadeh, A., and Talwalkar, A. Foundations of machine learning. MIT press, 2018. \n[42] Mukherjee, S. and Awadallah, A. Uncertainty-aware self-training for few-shot text classification. In NeurIPS, volume 33, pp. 21199–21212, 2020. \n[43] Pan, S. J. and Yang, Q. A survey on transfer learning. TKDE, 22(10):1345–1359, 2010. \n[44] Paszke, A., Gross, S., Massa, F., Lerer, A., Bradbury, J., Chanan, G., Killeen, T., Lin, Z., Gimelshein, N., Antiga, L., Desmaison, A., Kopf, A., Yang, E., DeVito, Z., Raison, M., Tejani, A., Chilamkurthy, S., Steiner, B., Fang, L., Bai, J., and Chintala, S. Pytorch: An imperative style, high-performance deep learning library. In NeurIPS, volume 32, pp. 8026–8037, 2019. \n[45] Peng, X., Usman, B., Kaushik, N., Hoffman, J., Wang, D., and Saenko, K. Visda: The visual domain adaptation challenge. CoRR, abs/1710.06924, 2017. \n[46] Peng, X., Bai, Q., Xia, X., Huang, Z., Saenko, K., and Wang, B. Moment matching for multi-source domain adaptation. In ICCV, pp. 1406–1415, 2019. \n[47] Prabhu, V., Khare, S., Kartik, D., and Hoffman, J. Sentry: Selective entropy optimization via committee consistency for unsupervised domain adaptation, 2020. \n[48] Prabhu, V., Khare, S., Kartik, D., and Hoffman, J. Sentry: Selective entropy optimization via committee consistency for unsupervised domain adaptation. In ICCV, pp. 8558–8567, October 2021. \n[49] Qu, X., Zou, Z., Cheng, Y., Yang, Y., and Zhou, P. Adversarial category alignment network for cross-domain sentiment classification. In NAACL, 2019. \n[50] Quionero-Candela, J., Sugiyama, M., Schwaighofer, A., and Lawrence, N. D. Dataset Shift in Machine Learning. The MIT Press, 2009. \n[51] Rasmus, A., Berglund, M., Honkala, M., Valpola, H., and Raiko, T. Semi-supervised learning with ladder networks. In NeurIPS, volume 28, pp. 3546–3554, 2015. \n[52] Rosenberg, C., Hebert, M., and Schneiderman, H. Semi-supervised self-training of object detection models. In WACV, volume 1, pp. 29–36, 2005. \n[53] Russakovsky, O., Deng, J., Su, H., Krause, J., Satheesh, S., Ma, S., Huang, Z., Karpathy, A., Khosla, A., Bernstein, M., Berg, A. C., and Fei-Fei, L. ImageNet Large Scale Visual Recognition Challenge. IJCV, 115(3):211–252, 2015. \n[54] Saito, K., Watanabe, K., Ushiku, Y., and Harada, T. Maximum classifier discrepancy for unsupervised domain adaptation. In CVPR, pp. 3723–3732, 2018. \n[55] Sajjadi, M., Javanmardi, M., and Tasdizen, T. Regularization with stochastic transformations and perturbations for deep semi-supervised learning. In NeurIPS, volume 29, pp. 1163–1171, 2016. \n[56] Shu, R., Bui, H., Narui, H., and Ermon, S. A DIRT-t approach to unsupervised domain adaptation. In ICLR, 2018. \n[57] Sohn, K., Berthelot, D., Carlini, N., Zhang, Z., Zhang, H., Raffel, C. A., Cubuk, E. D., Kurakin, A., and Li, C.-L. Fixmatch: Simplifying semi-supervised learning with consistency and confidence. In NeurIPS, 2020. \n[58] Szegedy, C., Zaremba, W., Sutskever, I., Bruna, J., Erhan, D., Goodfellow, I., and Fergus, R. Intriguing properties of neural networks. In ICLR, 2014. \n[59] Talagrand, M. Upper and lower bounds for stochastic processes: modern methods and classical problems, volume 60. Springer Science & Business Media, 2014. \n[60] Tan, S., Peng, X., and Saenko, K. Class-imbalanced domain adaptation: An empirical odyssey. In ECCV Workshop, 2020. \n[61] Tarvainen, A. and Valpola, H. Mean teachers are better role models: Weight-averaged consistency targets improve semi-supervised deep learning results. In NeurIPS, volume 30, pp. 1195–1204, 2017. \n[62] Tsallis, C. Possible generalization of boltzmann-gibbs statistics. Journal of Statistical Physics, 52(1-2):479–487, 1988. \n[63] Tzeng, E., Hoffman, J., Saenko, K., and Darrell, T. Adversarial discriminative domain adaptation. In CVPR, pp. 7167–7176, 2017. \n[64] Venkateswara, H., Eusebio, J., Chakraborty, S., and Panchanathan, S. Deep hashing network for unsupervised domain adaptation. In CVPR, pp. 5018–5027, 2017. \n[65] Vu, T., Luong, M.-T., Le, Q. V., Simon, G., and Iyyer, M. Strata: Self-training with task augmentation for better few-shot learning. arXiv preprint arXiv:2109.06270, 2021. \n[66] Wei, C., Shen, K., Yining, C., and Ma, T. Theoretical analysis of self-training with deep networks on unlabeled data. In ICLR, 2021. \n[67] Xie, Q., Luong, M. T., Hovy, E., and Le, Q. V. Self-training with noisy student improves imagenet classification. In CVPR, 2020. \n[68] Xie, S. M., Kumar, A., Jones, R., Khani, F., Ma, T., and Liang, P. In-n-out: Pre-training and self-training using auxiliary information for out-of-distribution robustness. In ICLR, 2021. \n[69] Xu, R., Li, G., Yang, J., and Lin, L. Larger norm more transferable: An adaptive feature norm approach for unsupervised domain adaptation. In ICCV, 2019. \n[70] Yosinski, J., Clune, J., Bengio, Y., and Lipson, H. How transferable are features in deep neural networks? In NeurIPS, pp. 3320–3328. 2014. \n[71] Zellinger, W., Grubinger, T., Lughofer, E., Natschlager, T., and Saminger-Platz, S. Central ¨ moment discrepancy (CMD) for domain-invariant representation learning. In ICLR, 2017. \n[72] Zhang, H., Cisse, M., Dauphin, Y. N., and Lopez-Paz, D. mixup: Beyond empirical risk minimization. In ICLR, 2018. \n[73] Zhang, Y., Liu, T., Long, M., and Jordan, M. Bridging theory and algorithm for domain adaptation. In ICML, pp. 7404–7413, 2019. \n[74] Zhao, H., Combes, R. T. D., Zhang, K., and Gordon, G. On learning invariant representations for domain adaptation. In ICML, volume 97, pp. 7523–7532, 2019. \n[75] Ziser, Y. and Reichart, R. Pivot based language modeling for improved neural domain adaptation. In NAACL, pp. 1241–1251, 2018. \n[76] Zoph, B., Ghiasi, G., Lin, T.-Y., Cui, Y., Liu, H., Cubuk, E. D., and Le, Q. Rethinking pre-training and self-training. In NeurIPS, volume 33, pp. 3833–3845, 2020. \n[77] Zou, Y., Yu, Z., Vijaya Kumar, B. V. K., and Wang, J. Unsupervised domain adaptation for semantic segmentation via class-balanced self-training. In ECCV, pp. 297–313, 2018. \n[78] Zou, Y., Yu, Z., Liu, X., Kumar, B. V., and Wang, J. Confidence regularized self-training. In ICCV, October 2019. ", + "bbox": [ + 171, + 113, + 830, + 916 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 92, + 828, + 912 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 68, + 828, + 920 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 88, + 828, + 689 + ], + "page_idx": 13 + } +] \ No newline at end of file diff --git a/parse/train/-iu9-C_lan/-iu9-C_lan_middle.json b/parse/train/-iu9-C_lan/-iu9-C_lan_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..e69fea91fe625854d745d967bed67bdb441ffba4 --- /dev/null +++ b/parse/train/-iu9-C_lan/-iu9-C_lan_middle.json @@ -0,0 +1,44858 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 144, + 97, + 467, + 117 + ], + "lines": [ + { + "bbox": [ + 144, + 95, + 468, + 119 + ], + "spans": [ + { + "bbox": [ + 144, + 95, + 468, + 119 + ], + "score": 1.0, + "content": "Cycle Self-Training for Domain Adaptation", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 114, + 160, + 240, + 204 + ], + "lines": [ + { + "bbox": [ + 156, + 159, + 201, + 172 + ], + "spans": [ + { + "bbox": [ + 156, + 159, + 201, + 172 + ], + "score": 1.0, + "content": "Hong Liu", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 113, + 169, + 242, + 184 + ], + "spans": [ + { + "bbox": [ + 113, + 169, + 242, + 184 + ], + "score": 1.0, + "content": "Dept of Electronic Engineering", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 135, + 181, + 219, + 194 + ], + "spans": [ + { + "bbox": [ + 135, + 181, + 219, + 194 + ], + "score": 1.0, + "content": "Tsinghua University", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 126, + 193, + 228, + 205 + ], + "spans": [ + { + "bbox": [ + 126, + 193, + 228, + 205 + ], + "score": 1.0, + "content": "hongliu9903@gmail.com", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 252, + 160, + 366, + 204 + ], + "lines": [ + { + "bbox": [ + 276, + 158, + 342, + 173 + ], + "spans": [ + { + "bbox": [ + 276, + 158, + 342, + 173 + ], + "score": 1.0, + "content": "Jianmin Wang", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 252, + 171, + 366, + 182 + ], + "spans": [ + { + "bbox": [ + 252, + 171, + 366, + 182 + ], + "score": 1.0, + "content": "School of Software, BNRist", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 267, + 181, + 351, + 194 + ], + "spans": [ + { + "bbox": [ + 267, + 181, + 351, + 194 + ], + "score": 1.0, + "content": "Tsinghua University", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 253, + 194, + 364, + 204 + ], + "spans": [ + { + "bbox": [ + 253, + 194, + 364, + 204 + ], + "score": 1.0, + "content": "jimwang@tsinghua.edu.cn", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 378, + 160, + 496, + 204 + ], + "lines": [ + { + "bbox": [ + 399, + 159, + 478, + 173 + ], + "spans": [ + { + "bbox": [ + 399, + 159, + 478, + 173 + ], + "score": 1.0, + "content": "Mingsheng Long⇤", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 380, + 171, + 495, + 182 + ], + "spans": [ + { + "bbox": [ + 380, + 171, + 495, + 182 + ], + "score": 1.0, + "content": "School of Software, BNRist", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 394, + 181, + 479, + 194 + ], + "spans": [ + { + "bbox": [ + 394, + 181, + 479, + 194 + ], + "score": 1.0, + "content": "Tsinghua University", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 377, + 193, + 497, + 205 + ], + "spans": [ + { + "bbox": [ + 377, + 193, + 497, + 205 + ], + "score": 1.0, + "content": "mingsheng@tsinghua.edu.cn", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 7.5 + }, + { + "type": "title", + "bbox": [ + 283, + 232, + 328, + 245 + ], + "lines": [ + { + "bbox": [ + 281, + 231, + 331, + 246 + ], + "spans": [ + { + "bbox": [ + 281, + 231, + 331, + 246 + ], + "score": 1.0, + "content": "Abstract", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 142, + 257, + 469, + 453 + ], + "lines": [ + { + "bbox": [ + 141, + 257, + 470, + 270 + ], + "spans": [ + { + "bbox": [ + 141, + 257, + 470, + 270 + ], + "score": 1.0, + "content": "Mainstream approaches for unsupervised domain adaptation (UDA) learn domain-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 268, + 469, + 280 + ], + "spans": [ + { + "bbox": [ + 141, + 268, + 469, + 280 + ], + "score": 1.0, + "content": "invariant representations to narrow the domain shift, which are empirically effective", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 279, + 470, + 291 + ], + "spans": [ + { + "bbox": [ + 141, + 279, + 470, + 291 + ], + "score": 1.0, + "content": "but theoretically challenged by the hardness or impossibility theorems. Recently,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 290, + 470, + 302 + ], + "spans": [ + { + "bbox": [ + 141, + 290, + 470, + 302 + ], + "score": 1.0, + "content": "self-training has been gaining momentum in UDA, which exploits unlabeled target", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 300, + 470, + 312 + ], + "spans": [ + { + "bbox": [ + 141, + 300, + 470, + 312 + ], + "score": 1.0, + "content": "data by training with target pseudo-labels. However, as corroborated in this work,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 311, + 469, + 324 + ], + "spans": [ + { + "bbox": [ + 141, + 311, + 469, + 324 + ], + "score": 1.0, + "content": "under distributional shift, the pseudo-labels can be unreliable in terms of their large", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 322, + 470, + 335 + ], + "spans": [ + { + "bbox": [ + 141, + 322, + 470, + 335 + ], + "score": 1.0, + "content": "discrepancy from target ground truth. In this paper, we propose Cycle Self-Training", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 334, + 469, + 345 + ], + "spans": [ + { + "bbox": [ + 142, + 334, + 469, + 345 + ], + "score": 1.0, + "content": "(CST), a principled self-training algorithm that explicitly enforces pseudo-labels to", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 344, + 470, + 358 + ], + "spans": [ + { + "bbox": [ + 141, + 344, + 470, + 358 + ], + "score": 1.0, + "content": "generalize across domains. CST cycles between a forward step and a reverse step", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 355, + 470, + 368 + ], + "spans": [ + { + "bbox": [ + 141, + 355, + 470, + 368 + ], + "score": 1.0, + "content": "until convergence. In the forward step, CST generates target pseudo-labels with", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 140, + 365, + 469, + 379 + ], + "spans": [ + { + "bbox": [ + 140, + 365, + 469, + 379 + ], + "score": 1.0, + "content": "a source-trained classifier. In the reverse step, CST trains a target classifier using", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 377, + 470, + 389 + ], + "spans": [ + { + "bbox": [ + 141, + 377, + 470, + 389 + ], + "score": 1.0, + "content": "target pseudo-labels, and then updates the shared representations to make the target", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 141, + 388, + 470, + 400 + ], + "spans": [ + { + "bbox": [ + 141, + 388, + 470, + 400 + ], + "score": 1.0, + "content": "classifier perform well on the source data. We introduce the Tsallis entropy as a", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 141, + 399, + 471, + 411 + ], + "spans": [ + { + "bbox": [ + 141, + 399, + 471, + 411 + ], + "score": 1.0, + "content": "confidence-friendly regularization to improve the quality of target pseudo-labels.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 141, + 408, + 470, + 423 + ], + "spans": [ + { + "bbox": [ + 141, + 408, + 470, + 423 + ], + "score": 1.0, + "content": "We analyze CST theoretically under realistic assumptions, and provide hard cases", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 142, + 421, + 469, + 433 + ], + "spans": [ + { + "bbox": [ + 142, + 421, + 469, + 433 + ], + "score": 1.0, + "content": "where CST recovers target ground truth, while both invariant feature learning and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 141, + 431, + 469, + 444 + ], + "spans": [ + { + "bbox": [ + 141, + 431, + 469, + 444 + ], + "score": 1.0, + "content": "vanilla self-training fail. Empirical results indicate that CST significantly improves", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 141, + 442, + 466, + 455 + ], + "spans": [ + { + "bbox": [ + 141, + 442, + 466, + 455 + ], + "score": 1.0, + "content": "over the state-of-the-arts on visual recognition and sentiment analysis benchmarks.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 22.5 + }, + { + "type": "title", + "bbox": [ + 107, + 468, + 190, + 481 + ], + "lines": [ + { + "bbox": [ + 105, + 466, + 192, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 192, + 483 + ], + "score": 1.0, + "content": "1 Introduction", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 488, + 505, + 543 + ], + "lines": [ + { + "bbox": [ + 106, + 488, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 505, + 500 + ], + "score": 1.0, + "content": "Transferring knowledge from a source domain with rich supervision to an unlabeled target domain is", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 498, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 505, + 511 + ], + "score": 1.0, + "content": "an important yet challenging problem. Since deep neural networks are known to be sensitive to subtle", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 509, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 505, + 522 + ], + "score": 1.0, + "content": "change in underlying distributions [70], models trained on one labeled dataset often fail to generalize", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 518, + 506, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 506, + 535 + ], + "score": 1.0, + "content": "to another unlabeled dataset [58, 1]. Unsupervised domain adaptation (UDA) addresses the challenge", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 531, + 459, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 459, + 544 + ], + "score": 1.0, + "content": "of distributional shift by adapting the source model to the unlabeled target data [50, 43].", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 548, + 505, + 614 + ], + "lines": [ + { + "bbox": [ + 105, + 547, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 505, + 560 + ], + "score": 1.0, + "content": "The mainstream paradigm for UDA is feature adaptation, a.k.a. domain alignment. By reducing the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 558, + 506, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 506, + 571 + ], + "score": 1.0, + "content": "distance of the source and target feature distributions, these methods learn invariant representations to", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 569, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 505, + 582 + ], + "score": 1.0, + "content": "facilitate knowledge transfer between domains [34, 22, 36, 54, 37, 73], with successful applications in", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "score": 1.0, + "content": "various areas such as computer vision [63, 27, 77] and natural language processing [75, 49]. Despite", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 591, + 506, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 506, + 604 + ], + "score": 1.0, + "content": "their popularity, the impossibility theories [6] uncovered intrinsic limitations of learning invariant", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 601, + 478, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 478, + 615 + ], + "score": 1.0, + "content": "representations when it comes to label shift [74, 32] and shift in the support of domains [29].", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 107, + 618, + 505, + 696 + ], + "lines": [ + { + "bbox": [ + 106, + 618, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 506, + 632 + ], + "score": 1.0, + "content": "Recently, self-training (a.k.a. pseudo-labeling) [21, 78, 30, 32, 47, 68] has been gaining momentum", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 629, + 506, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 506, + 643 + ], + "score": 1.0, + "content": "as a promising alternative to feature adaptation. Originally tailored to semi-supervised learning,", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 641, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 505, + 653 + ], + "score": 1.0, + "content": "self-training generates pseudo-labels of unlabeled data, and jointly trains the model with source labels", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 650, + 506, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 506, + 665 + ], + "score": 1.0, + "content": "and target pseudo-labels [31, 39, 30]. However, the distributional shift in UDA makes pseudo-labeling", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 662, + 505, + 675 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 505, + 675 + ], + "score": 1.0, + "content": "more difficult. Directly using all pseudo-labels is risky due to accumulated error and even trivial", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 673, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 106, + 673, + 506, + 685 + ], + "score": 1.0, + "content": "solution [14]. Thus previous works tailor self-training to UDA by selecting trustworthy pseudo-labels.", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 685, + 505, + 697 + ], + "spans": [ + { + "bbox": [ + 106, + 685, + 505, + 697 + ], + "score": 1.0, + "content": "Using confidence threshold or reweighting, recent works try to alleviate the negative effect of domain", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 47 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 118, + 703, + 396, + 714 + ], + "lines": [ + { + "bbox": [ + 118, + 701, + 397, + 716 + ], + "spans": [ + { + "bbox": [ + 118, + 701, + 397, + 716 + ], + "score": 1.0, + "content": "⇤Corresponding author: Mingsheng Long (mingsheng@tsinghua.edu.cn)", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 731, + 385, + 742 + ], + "lines": [ + { + "bbox": [ + 105, + 730, + 386, + 743 + ], + "spans": [ + { + "bbox": [ + 105, + 730, + 386, + 743 + ], + "score": 1.0, + "content": "35th Conference on Neural Information Processing Systems (NeurIPS 2021).", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 144, + 97, + 467, + 117 + ], + "lines": [ + { + "bbox": [ + 144, + 95, + 468, + 119 + ], + "spans": [ + { + "bbox": [ + 144, + 95, + 468, + 119 + ], + "score": 1.0, + "content": "Cycle Self-Training for Domain Adaptation", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 114, + 160, + 240, + 204 + ], + "lines": [ + { + "bbox": [ + 156, + 159, + 201, + 172 + ], + "spans": [ + { + "bbox": [ + 156, + 159, + 201, + 172 + ], + "score": 1.0, + "content": "Hong Liu", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 113, + 169, + 242, + 184 + ], + "spans": [ + { + "bbox": [ + 113, + 169, + 242, + 184 + ], + "score": 1.0, + "content": "Dept of Electronic Engineering", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 135, + 181, + 219, + 194 + ], + "spans": [ + { + "bbox": [ + 135, + 181, + 219, + 194 + ], + "score": 1.0, + "content": "Tsinghua University", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 126, + 193, + 228, + 205 + ], + "spans": [ + { + "bbox": [ + 126, + 193, + 228, + 205 + ], + "score": 1.0, + "content": "hongliu9903@gmail.com", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 5.5, + "bbox_fs": [ + 113, + 159, + 242, + 205 + ] + }, + { + "type": "list", + "bbox": [ + 252, + 160, + 366, + 204 + ], + "lines": [ + { + "bbox": [ + 276, + 158, + 342, + 173 + ], + "spans": [ + { + "bbox": [ + 276, + 158, + 342, + 173 + ], + "score": 1.0, + "content": "Jianmin Wang", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 252, + 171, + 366, + 182 + ], + "spans": [ + { + "bbox": [ + 252, + 171, + 366, + 182 + ], + "score": 1.0, + "content": "School of Software, BNRist", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 267, + 181, + 351, + 194 + ], + "spans": [ + { + "bbox": [ + 267, + 181, + 351, + 194 + ], + "score": 1.0, + "content": "Tsinghua University", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 253, + 194, + 364, + 204 + ], + "spans": [ + { + "bbox": [ + 253, + 194, + 364, + 204 + ], + "score": 1.0, + "content": "jimwang@tsinghua.edu.cn", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 399, + 159, + 478, + 173 + ], + "spans": [ + { + "bbox": [ + 399, + 159, + 478, + 173 + ], + "score": 1.0, + "content": "Mingsheng Long⇤", + "type": "text" + } + ], + "index": 3, + "is_list_end_line": true + }, + { + "bbox": [ + 380, + 171, + 495, + 182 + ], + "spans": [ + { + "bbox": [ + 380, + 171, + 495, + 182 + ], + "score": 1.0, + "content": "School of Software, BNRist", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 394, + 181, + 479, + 194 + ], + "spans": [ + { + "bbox": [ + 394, + 181, + 479, + 194 + ], + "score": 1.0, + "content": "Tsinghua University", + "type": "text" + } + ], + "index": 9, + "is_list_end_line": true + }, + { + "bbox": [ + 377, + 193, + 497, + 205 + ], + "spans": [ + { + "bbox": [ + 377, + 193, + 497, + 205 + ], + "score": 1.0, + "content": "mingsheng@tsinghua.edu.cn", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + } + ], + "index": 6.5, + "bbox_fs": [ + 252, + 158, + 366, + 204 + ] + }, + { + "type": "list", + "bbox": [ + 378, + 160, + 496, + 204 + ], + "lines": [], + "index": 7.5, + "bbox_fs": [ + 377, + 159, + 497, + 205 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 283, + 232, + 328, + 245 + ], + "lines": [ + { + "bbox": [ + 281, + 231, + 331, + 246 + ], + "spans": [ + { + "bbox": [ + 281, + 231, + 331, + 246 + ], + "score": 1.0, + "content": "Abstract", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 142, + 257, + 469, + 453 + ], + "lines": [ + { + "bbox": [ + 141, + 257, + 470, + 270 + ], + "spans": [ + { + "bbox": [ + 141, + 257, + 470, + 270 + ], + "score": 1.0, + "content": "Mainstream approaches for unsupervised domain adaptation (UDA) learn domain-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 268, + 469, + 280 + ], + "spans": [ + { + "bbox": [ + 141, + 268, + 469, + 280 + ], + "score": 1.0, + "content": "invariant representations to narrow the domain shift, which are empirically effective", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 279, + 470, + 291 + ], + "spans": [ + { + "bbox": [ + 141, + 279, + 470, + 291 + ], + "score": 1.0, + "content": "but theoretically challenged by the hardness or impossibility theorems. Recently,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 290, + 470, + 302 + ], + "spans": [ + { + "bbox": [ + 141, + 290, + 470, + 302 + ], + "score": 1.0, + "content": "self-training has been gaining momentum in UDA, which exploits unlabeled target", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 300, + 470, + 312 + ], + "spans": [ + { + "bbox": [ + 141, + 300, + 470, + 312 + ], + "score": 1.0, + "content": "data by training with target pseudo-labels. However, as corroborated in this work,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 311, + 469, + 324 + ], + "spans": [ + { + "bbox": [ + 141, + 311, + 469, + 324 + ], + "score": 1.0, + "content": "under distributional shift, the pseudo-labels can be unreliable in terms of their large", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 322, + 470, + 335 + ], + "spans": [ + { + "bbox": [ + 141, + 322, + 470, + 335 + ], + "score": 1.0, + "content": "discrepancy from target ground truth. In this paper, we propose Cycle Self-Training", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 334, + 469, + 345 + ], + "spans": [ + { + "bbox": [ + 142, + 334, + 469, + 345 + ], + "score": 1.0, + "content": "(CST), a principled self-training algorithm that explicitly enforces pseudo-labels to", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 344, + 470, + 358 + ], + "spans": [ + { + "bbox": [ + 141, + 344, + 470, + 358 + ], + "score": 1.0, + "content": "generalize across domains. CST cycles between a forward step and a reverse step", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 355, + 470, + 368 + ], + "spans": [ + { + "bbox": [ + 141, + 355, + 470, + 368 + ], + "score": 1.0, + "content": "until convergence. In the forward step, CST generates target pseudo-labels with", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 140, + 365, + 469, + 379 + ], + "spans": [ + { + "bbox": [ + 140, + 365, + 469, + 379 + ], + "score": 1.0, + "content": "a source-trained classifier. In the reverse step, CST trains a target classifier using", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 377, + 470, + 389 + ], + "spans": [ + { + "bbox": [ + 141, + 377, + 470, + 389 + ], + "score": 1.0, + "content": "target pseudo-labels, and then updates the shared representations to make the target", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 141, + 388, + 470, + 400 + ], + "spans": [ + { + "bbox": [ + 141, + 388, + 470, + 400 + ], + "score": 1.0, + "content": "classifier perform well on the source data. We introduce the Tsallis entropy as a", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 141, + 399, + 471, + 411 + ], + "spans": [ + { + "bbox": [ + 141, + 399, + 471, + 411 + ], + "score": 1.0, + "content": "confidence-friendly regularization to improve the quality of target pseudo-labels.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 141, + 408, + 470, + 423 + ], + "spans": [ + { + "bbox": [ + 141, + 408, + 470, + 423 + ], + "score": 1.0, + "content": "We analyze CST theoretically under realistic assumptions, and provide hard cases", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 142, + 421, + 469, + 433 + ], + "spans": [ + { + "bbox": [ + 142, + 421, + 469, + 433 + ], + "score": 1.0, + "content": "where CST recovers target ground truth, while both invariant feature learning and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 141, + 431, + 469, + 444 + ], + "spans": [ + { + "bbox": [ + 141, + 431, + 469, + 444 + ], + "score": 1.0, + "content": "vanilla self-training fail. Empirical results indicate that CST significantly improves", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 141, + 442, + 466, + 455 + ], + "spans": [ + { + "bbox": [ + 141, + 442, + 466, + 455 + ], + "score": 1.0, + "content": "over the state-of-the-arts on visual recognition and sentiment analysis benchmarks.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 22.5, + "bbox_fs": [ + 140, + 257, + 471, + 455 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 468, + 190, + 481 + ], + "lines": [ + { + "bbox": [ + 105, + 466, + 192, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 192, + 483 + ], + "score": 1.0, + "content": "1 Introduction", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 488, + 505, + 543 + ], + "lines": [ + { + "bbox": [ + 106, + 488, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 505, + 500 + ], + "score": 1.0, + "content": "Transferring knowledge from a source domain with rich supervision to an unlabeled target domain is", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 498, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 505, + 511 + ], + "score": 1.0, + "content": "an important yet challenging problem. Since deep neural networks are known to be sensitive to subtle", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 509, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 505, + 522 + ], + "score": 1.0, + "content": "change in underlying distributions [70], models trained on one labeled dataset often fail to generalize", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 518, + 506, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 506, + 535 + ], + "score": 1.0, + "content": "to another unlabeled dataset [58, 1]. Unsupervised domain adaptation (UDA) addresses the challenge", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 531, + 459, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 459, + 544 + ], + "score": 1.0, + "content": "of distributional shift by adapting the source model to the unlabeled target data [50, 43].", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 488, + 506, + 544 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 548, + 505, + 614 + ], + "lines": [ + { + "bbox": [ + 105, + 547, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 505, + 560 + ], + "score": 1.0, + "content": "The mainstream paradigm for UDA is feature adaptation, a.k.a. domain alignment. By reducing the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 558, + 506, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 506, + 571 + ], + "score": 1.0, + "content": "distance of the source and target feature distributions, these methods learn invariant representations to", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 569, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 505, + 582 + ], + "score": 1.0, + "content": "facilitate knowledge transfer between domains [34, 22, 36, 54, 37, 73], with successful applications in", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "score": 1.0, + "content": "various areas such as computer vision [63, 27, 77] and natural language processing [75, 49]. Despite", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 591, + 506, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 506, + 604 + ], + "score": 1.0, + "content": "their popularity, the impossibility theories [6] uncovered intrinsic limitations of learning invariant", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 601, + 478, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 478, + 615 + ], + "score": 1.0, + "content": "representations when it comes to label shift [74, 32] and shift in the support of domains [29].", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 547, + 506, + 615 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 618, + 505, + 696 + ], + "lines": [ + { + "bbox": [ + 106, + 618, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 506, + 632 + ], + "score": 1.0, + "content": "Recently, self-training (a.k.a. pseudo-labeling) [21, 78, 30, 32, 47, 68] has been gaining momentum", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 629, + 506, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 506, + 643 + ], + "score": 1.0, + "content": "as a promising alternative to feature adaptation. Originally tailored to semi-supervised learning,", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 641, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 505, + 653 + ], + "score": 1.0, + "content": "self-training generates pseudo-labels of unlabeled data, and jointly trains the model with source labels", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 650, + 506, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 506, + 665 + ], + "score": 1.0, + "content": "and target pseudo-labels [31, 39, 30]. However, the distributional shift in UDA makes pseudo-labeling", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 662, + 505, + 675 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 505, + 675 + ], + "score": 1.0, + "content": "more difficult. Directly using all pseudo-labels is risky due to accumulated error and even trivial", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 673, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 106, + 673, + 506, + 685 + ], + "score": 1.0, + "content": "solution [14]. Thus previous works tailor self-training to UDA by selecting trustworthy pseudo-labels.", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 685, + 505, + 697 + ], + "spans": [ + { + "bbox": [ + 106, + 685, + 505, + 697 + ], + "score": 1.0, + "content": "Using confidence threshold or reweighting, recent works try to alleviate the negative effect of domain", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 223, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 505, + 236 + ], + "score": 1.0, + "content": "shift in standard self-training [78, 47], but they can be brittle and require expensive tweaking of the", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 235, + 451, + 246 + ], + "spans": [ + { + "bbox": [ + 106, + 235, + 451, + 246 + ], + "score": 1.0, + "content": "threshold or weight for different tasks, and their performance gain is still inconsistent.", + "type": "text", + "cross_page": true + } + ], + "index": 8 + } + ], + "index": 47, + "bbox_fs": [ + 105, + 618, + 506, + 697 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 128, + 69, + 483, + 165 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 128, + 69, + 483, + 165 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 128, + 69, + 483, + 165 + ], + "spans": [ + { + "bbox": [ + 128, + 69, + 483, + 165 + ], + "score": 0.968, + "type": "image", + "image_path": "a98d2d44c2b974a909fc041a6f8726476f59f9bdcb19e5febe93a6d25e86dd55.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 128, + 69, + 483, + 101.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 128, + 101.0, + 483, + 133.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 128, + 133.0, + 483, + 165.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 169, + 506, + 209 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 168, + 506, + 181 + ], + "spans": [ + { + "bbox": [ + 106, + 168, + 506, + 181 + ], + "score": 1.0, + "content": "Figure 1: Standard self-training vs. cycle self-training. In standard self-training, we generate target pseudo-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 178, + 506, + 191 + ], + "spans": [ + { + "bbox": [ + 105, + 178, + 506, + 191 + ], + "score": 1.0, + "content": "labels with a source model, and then train the model with both source ground-truths and target pseudo-labels. In", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 188, + 506, + 201 + ], + "spans": [ + { + "bbox": [ + 106, + 188, + 506, + 201 + ], + "score": 1.0, + "content": "cycle self-training, we train a target classifier with target pseudo-labels in the inner loop, and make the target", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 197, + 475, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 475, + 212 + ], + "score": 1.0, + "content": "classifier perform well on the source domain by updating the shared representations in the outer loop.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "text", + "bbox": [ + 107, + 223, + 503, + 246 + ], + "lines": [ + { + "bbox": [ + 106, + 223, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 505, + 236 + ], + "score": 1.0, + "content": "shift in standard self-training [78, 47], but they can be brittle and require expensive tweaking of the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 235, + 451, + 246 + ], + "spans": [ + { + "bbox": [ + 106, + 235, + 451, + 246 + ], + "score": 1.0, + "content": "threshold or weight for different tasks, and their performance gain is still inconsistent.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 106, + 250, + 505, + 339 + ], + "lines": [ + { + "bbox": [ + 106, + 251, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 106, + 251, + 505, + 263 + ], + "score": 1.0, + "content": "In this work, we first analyze the quality of pseudo-labels with or without domain shift to delve", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 262, + 505, + 274 + ], + "spans": [ + { + "bbox": [ + 106, + 262, + 505, + 274 + ], + "score": 1.0, + "content": "deeper into the difficulty of standard self-training in UDA. On popular benchmark datasets, when", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 272, + 506, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 506, + 285 + ], + "score": 1.0, + "content": "the source and target are the same, our analysis indicates that the pseudo-label distribution is almost", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 284, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 284, + 505, + 296 + ], + "score": 1.0, + "content": "identical to the ground-truth distribution. However, with distributional shift, their discrepancy can be", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 295, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 106, + 295, + 505, + 307 + ], + "score": 1.0, + "content": "very large with examples of several classes mostly misclassified into other classes. We also study", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 304, + 505, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 505, + 319 + ], + "score": 1.0, + "content": "the difficulty of selecting correct pseudo-labels with popular criteria under domain shift. Although", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 317, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 505, + 328 + ], + "score": 1.0, + "content": "entropy and confidence are reasonable selection criteria for correct pseudo-labels without domain", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 326, + 353, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 353, + 341 + ], + "score": 1.0, + "content": "shift, the domain shift makes their accuracy decrease sharply.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 107, + 343, + 505, + 475 + ], + "lines": [ + { + "bbox": [ + 106, + 344, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 506, + 356 + ], + "score": 1.0, + "content": "Our analysis shows that domain shift makes pseudo-labels unreliable and that self-training on selected", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 354, + 506, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 506, + 368 + ], + "score": 1.0, + "content": "target instances with accurate pseudo-labels is less successful. Thereby, more principled improvement", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 366, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 505, + 378 + ], + "score": 1.0, + "content": "of standard self-training should be tailored to UDA and address the domain shift explicitly. In this", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 377, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 106, + 377, + 505, + 389 + ], + "score": 1.0, + "content": "work, we propose Cycle Self-Training (CST), a principled self-training approach to UDA, which", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 388, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 106, + 388, + 505, + 400 + ], + "score": 1.0, + "content": "overcomes the limitations of standard self-training (see Figure 1). Different from previous works to", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 398, + 506, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 506, + 412 + ], + "score": 1.0, + "content": "select target pseudo-labels with hard-to-tweak protocols, CST learns to generalize the pseudo-labels", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 410, + 506, + 422 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 506, + 422 + ], + "score": 1.0, + "content": "across domains. Specifically, CST cycles between the use of target pseudo-labels to train a target", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 420, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 420, + 505, + 433 + ], + "score": 1.0, + "content": "classifier, and the update of shared representations to make the target classifier perform well on the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 431, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 431, + 506, + 443 + ], + "score": 1.0, + "content": "source data. In contrast to the standard Gibbs entropy that makes the target predictions over-confident,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 443, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 506, + 455 + ], + "score": 1.0, + "content": "we propose a confidence-friendly uncertainty measure based on the Tsallis entropy in information", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 453, + 506, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 506, + 465 + ], + "score": 1.0, + "content": "theory, which adaptively minimizes the uncertainty without manually tuning or setting thresholds.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 463, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 506, + 477 + ], + "score": 1.0, + "content": "Our method is simple and generally applicable to vision and language tasks with various backbones.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 107, + 480, + 505, + 536 + ], + "lines": [ + { + "bbox": [ + 106, + 480, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 505, + 492 + ], + "score": 1.0, + "content": "We empirically evaluate our method on a series of standard UDA benchmarks. Results indicate that", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 491, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 491, + 505, + 503 + ], + "score": 1.0, + "content": "CST outperforms previous state-of-the-art methods in 21 out of 25 tasks for object recognition and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 502, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 502, + 505, + 514 + ], + "score": 1.0, + "content": "sentiment classification. Theoretically, we prove that the minimizer of CST objective is endowed with", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 511, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 505, + 528 + ], + "score": 1.0, + "content": "general guarantees of target performance. We also study hard cases on specific distributions, showing", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 524, + 498, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 498, + 537 + ], + "score": 1.0, + "content": "that CST recovers target ground-truths while both feature adaptation and standard self-training fail.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31 + }, + { + "type": "title", + "bbox": [ + 107, + 549, + 195, + 563 + ], + "lines": [ + { + "bbox": [ + 104, + 547, + 196, + 566 + ], + "spans": [ + { + "bbox": [ + 104, + 547, + 196, + 566 + ], + "score": 1.0, + "content": "2 Preliminaries", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 106, + 572, + 506, + 645 + ], + "lines": [ + { + "bbox": [ + 105, + 572, + 506, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 443, + 584 + ], + "score": 1.0, + "content": "We study unsupervised domain adaptation (UDA). Consider a source distribution", + "type": "text" + }, + { + "bbox": [ + 444, + 573, + 453, + 582 + ], + "score": 0.83, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 572, + 506, + 584 + ], + "score": 1.0, + "content": "and a target", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 156, + 596 + ], + "score": 1.0, + "content": "distribution", + "type": "text" + }, + { + "bbox": [ + 157, + 583, + 166, + 595 + ], + "score": 0.84, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 582, + 280, + 596 + ], + "score": 1.0, + "content": "over the input-label space", + "type": "text" + }, + { + "bbox": [ + 280, + 584, + 312, + 594 + ], + "score": 0.9, + "content": "\\mathcal { X } \\times \\mathcal { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 582, + 400, + 596 + ], + "score": 1.0, + "content": ". We have access to", + "type": "text" + }, + { + "bbox": [ + 401, + 585, + 412, + 594 + ], + "score": 0.84, + "content": "n _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 582, + 506, + 596 + ], + "score": 1.0, + "content": "labeled i.i.d. samples", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 107, + 591, + 504, + 614 + ], + "spans": [ + { + "bbox": [ + 107, + 594, + 179, + 608 + ], + "score": 0.91, + "content": "\\widehat { P } = \\{ x _ { i } ^ { s } , y _ { i } ^ { s } \\} _ { i = 1 } ^ { n _ { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 591, + 205, + 614 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 205, + 596, + 214, + 606 + ], + "score": 0.81, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 591, + 234, + 614 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 234, + 597, + 245, + 607 + ], + "score": 0.84, + "content": "n _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 591, + 348, + 614 + ], + "score": 1.0, + "content": "unlabeled i.i.d. samples", + "type": "text" + }, + { + "bbox": [ + 349, + 594, + 406, + 608 + ], + "score": 0.91, + "content": "\\widehat { Q } = \\{ x _ { i } ^ { t } \\} _ { i = 1 } ^ { n _ { t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 591, + 432, + 614 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 432, + 596, + 441, + 608 + ], + "score": 0.82, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 591, + 496, + 614 + ], + "score": 1.0, + "content": ". The model", + "type": "text" + }, + { + "bbox": [ + 497, + 596, + 504, + 608 + ], + "score": 0.83, + "content": "f", + "type": "inline_equation" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 606, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 104, + 606, + 221, + 619 + ], + "score": 1.0, + "content": "comprises a feature extractor", + "type": "text" + }, + { + "bbox": [ + 221, + 608, + 233, + 619 + ], + "score": 0.89, + "content": "h _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 606, + 300, + 619 + ], + "score": 1.0, + "content": "parametrized by", + "type": "text" + }, + { + "bbox": [ + 300, + 608, + 307, + 618 + ], + "score": 0.86, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 606, + 419, + 619 + ], + "score": 1.0, + "content": "and a head (linear classifier)", + "type": "text" + }, + { + "bbox": [ + 420, + 609, + 430, + 618 + ], + "score": 0.8, + "content": "g _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 606, + 496, + 619 + ], + "score": 1.0, + "content": "parametrized by", + "type": "text" + }, + { + "bbox": [ + 497, + 608, + 502, + 617 + ], + "score": 0.79, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 606, + 506, + 619 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 616, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 104, + 616, + 122, + 632 + ], + "score": 1.0, + "content": "i.e.", + "type": "text" + }, + { + "bbox": [ + 122, + 618, + 208, + 630 + ], + "score": 0.93, + "content": "\\bar { f } _ { \\theta , \\phi } ( x ) = g _ { \\theta } ( h _ { \\phi } ( x ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 616, + 292, + 632 + ], + "score": 1.0, + "content": ". The loss function is", + "type": "text" + }, + { + "bbox": [ + 292, + 618, + 315, + 630 + ], + "score": 0.92, + "content": "\\ell ( \\cdot , \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 616, + 362, + 632 + ], + "score": 1.0, + "content": ". Denote by", + "type": "text" + }, + { + "bbox": [ + 363, + 618, + 505, + 631 + ], + "score": 0.9, + "content": "L _ { P } ( \\theta , \\phi ) : = \\mathbb { E } _ { ( x , y ) \\sim P } \\ell ( f _ { \\theta , \\phi } ( x ) , y )", + "type": "inline_equation" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 631, + 489, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 193, + 645 + ], + "score": 1.0, + "content": "the expected error on", + "type": "text" + }, + { + "bbox": [ + 194, + 633, + 202, + 642 + ], + "score": 0.81, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 631, + 278, + 645 + ], + "score": 1.0, + "content": ". Similarly, we use", + "type": "text" + }, + { + "bbox": [ + 278, + 632, + 315, + 645 + ], + "score": 0.93, + "content": "{ \\cal L } _ { \\widehat { P } } ( \\theta , \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 631, + 475, + 645 + ], + "score": 1.0, + "content": "to denote the empirical error on dataset", + "type": "text" + }, + { + "bbox": [ + 476, + 631, + 484, + 642 + ], + "score": 0.85, + "content": "\\widehat { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 631, + 489, + 645 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 106, + 648, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 646, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 506, + 662 + ], + "score": 1.0, + "content": "We discuss two mainstream UDA methods and their formulations: feature adaptation and self-training.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 105, + 665, + 504, + 690 + ], + "lines": [ + { + "bbox": [ + 105, + 664, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 262, + 680 + ], + "score": 1.0, + "content": "Feature Adaptation trains the model", + "type": "text" + }, + { + "bbox": [ + 262, + 667, + 269, + 678 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 664, + 359, + 680 + ], + "score": 1.0, + "content": "on the source dataset", + "type": "text" + }, + { + "bbox": [ + 360, + 666, + 368, + 677 + ], + "score": 0.84, + "content": "\\widehat { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 664, + 505, + 680 + ], + "score": 1.0, + "content": ", and simultaneously matches the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 677, + 386, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 338, + 691 + ], + "score": 1.0, + "content": "source and target distributions in the representation space", + "type": "text" + }, + { + "bbox": [ + 338, + 679, + 382, + 690 + ], + "score": 0.93, + "content": "\\mathcal { Z } = h ( \\mathcal { X } )", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 677, + 386, + 691 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5 + }, + { + "type": "interline_equation", + "bbox": [ + 244, + 698, + 367, + 720 + ], + "lines": [ + { + "bbox": [ + 244, + 698, + 367, + 720 + ], + "spans": [ + { + "bbox": [ + 244, + 698, + 367, + 720 + ], + "score": 0.93, + "content": "\\operatorname* { m i n } _ { \\theta , \\phi } L _ { \\widehat { P } } ( \\theta , \\phi ) + d ( h _ { \\sharp } \\widehat { P } , h _ { \\sharp } \\widehat { Q } ) .", + "type": "interline_equation", + "image_path": "08c3281134353cdfc0b467df0091b2073698e29eaba7544d4dbb027d50f15236.jpg" + } + ] + } + ], + "index": 44, + "virtual_lines": [ + { + "bbox": [ + 244, + 698, + 367, + 720 + ], + "spans": [], + "index": 44 + } + ] + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 740, + 310, + 753 + ], + "spans": [ + { + "bbox": [ + 301, + 740, + 310, + 753 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 128, + 69, + 483, + 165 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 128, + 69, + 483, + 165 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 128, + 69, + 483, + 165 + ], + "spans": [ + { + "bbox": [ + 128, + 69, + 483, + 165 + ], + "score": 0.968, + "type": "image", + "image_path": "a98d2d44c2b974a909fc041a6f8726476f59f9bdcb19e5febe93a6d25e86dd55.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 128, + 69, + 483, + 101.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 128, + 101.0, + 483, + 133.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 128, + 133.0, + 483, + 165.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 169, + 506, + 209 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 168, + 506, + 181 + ], + "spans": [ + { + "bbox": [ + 106, + 168, + 506, + 181 + ], + "score": 1.0, + "content": "Figure 1: Standard self-training vs. cycle self-training. In standard self-training, we generate target pseudo-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 178, + 506, + 191 + ], + "spans": [ + { + "bbox": [ + 105, + 178, + 506, + 191 + ], + "score": 1.0, + "content": "labels with a source model, and then train the model with both source ground-truths and target pseudo-labels. In", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 188, + 506, + 201 + ], + "spans": [ + { + "bbox": [ + 106, + 188, + 506, + 201 + ], + "score": 1.0, + "content": "cycle self-training, we train a target classifier with target pseudo-labels in the inner loop, and make the target", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 197, + 475, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 475, + 212 + ], + "score": 1.0, + "content": "classifier perform well on the source domain by updating the shared representations in the outer loop.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "text", + "bbox": [ + 107, + 223, + 503, + 246 + ], + "lines": [], + "index": 7.5, + "bbox_fs": [ + 106, + 223, + 505, + 246 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 250, + 505, + 339 + ], + "lines": [ + { + "bbox": [ + 106, + 251, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 106, + 251, + 505, + 263 + ], + "score": 1.0, + "content": "In this work, we first analyze the quality of pseudo-labels with or without domain shift to delve", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 262, + 505, + 274 + ], + "spans": [ + { + "bbox": [ + 106, + 262, + 505, + 274 + ], + "score": 1.0, + "content": "deeper into the difficulty of standard self-training in UDA. On popular benchmark datasets, when", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 272, + 506, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 506, + 285 + ], + "score": 1.0, + "content": "the source and target are the same, our analysis indicates that the pseudo-label distribution is almost", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 284, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 284, + 505, + 296 + ], + "score": 1.0, + "content": "identical to the ground-truth distribution. However, with distributional shift, their discrepancy can be", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 295, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 106, + 295, + 505, + 307 + ], + "score": 1.0, + "content": "very large with examples of several classes mostly misclassified into other classes. We also study", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 304, + 505, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 505, + 319 + ], + "score": 1.0, + "content": "the difficulty of selecting correct pseudo-labels with popular criteria under domain shift. Although", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 317, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 505, + 328 + ], + "score": 1.0, + "content": "entropy and confidence are reasonable selection criteria for correct pseudo-labels without domain", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 326, + 353, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 353, + 341 + ], + "score": 1.0, + "content": "shift, the domain shift makes their accuracy decrease sharply.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 251, + 506, + 341 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 343, + 505, + 475 + ], + "lines": [ + { + "bbox": [ + 106, + 344, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 506, + 356 + ], + "score": 1.0, + "content": "Our analysis shows that domain shift makes pseudo-labels unreliable and that self-training on selected", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 354, + 506, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 506, + 368 + ], + "score": 1.0, + "content": "target instances with accurate pseudo-labels is less successful. Thereby, more principled improvement", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 366, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 505, + 378 + ], + "score": 1.0, + "content": "of standard self-training should be tailored to UDA and address the domain shift explicitly. In this", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 377, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 106, + 377, + 505, + 389 + ], + "score": 1.0, + "content": "work, we propose Cycle Self-Training (CST), a principled self-training approach to UDA, which", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 388, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 106, + 388, + 505, + 400 + ], + "score": 1.0, + "content": "overcomes the limitations of standard self-training (see Figure 1). Different from previous works to", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 398, + 506, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 506, + 412 + ], + "score": 1.0, + "content": "select target pseudo-labels with hard-to-tweak protocols, CST learns to generalize the pseudo-labels", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 410, + 506, + 422 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 506, + 422 + ], + "score": 1.0, + "content": "across domains. Specifically, CST cycles between the use of target pseudo-labels to train a target", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 420, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 420, + 505, + 433 + ], + "score": 1.0, + "content": "classifier, and the update of shared representations to make the target classifier perform well on the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 431, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 431, + 506, + 443 + ], + "score": 1.0, + "content": "source data. In contrast to the standard Gibbs entropy that makes the target predictions over-confident,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 443, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 506, + 455 + ], + "score": 1.0, + "content": "we propose a confidence-friendly uncertainty measure based on the Tsallis entropy in information", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 453, + 506, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 506, + 465 + ], + "score": 1.0, + "content": "theory, which adaptively minimizes the uncertainty without manually tuning or setting thresholds.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 463, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 506, + 477 + ], + "score": 1.0, + "content": "Our method is simple and generally applicable to vision and language tasks with various backbones.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 344, + 506, + 477 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 480, + 505, + 536 + ], + "lines": [ + { + "bbox": [ + 106, + 480, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 505, + 492 + ], + "score": 1.0, + "content": "We empirically evaluate our method on a series of standard UDA benchmarks. Results indicate that", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 491, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 491, + 505, + 503 + ], + "score": 1.0, + "content": "CST outperforms previous state-of-the-art methods in 21 out of 25 tasks for object recognition and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 502, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 502, + 505, + 514 + ], + "score": 1.0, + "content": "sentiment classification. Theoretically, we prove that the minimizer of CST objective is endowed with", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 511, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 505, + 528 + ], + "score": 1.0, + "content": "general guarantees of target performance. We also study hard cases on specific distributions, showing", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 524, + 498, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 498, + 537 + ], + "score": 1.0, + "content": "that CST recovers target ground-truths while both feature adaptation and standard self-training fail.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 480, + 505, + 537 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 549, + 195, + 563 + ], + "lines": [ + { + "bbox": [ + 104, + 547, + 196, + 566 + ], + "spans": [ + { + "bbox": [ + 104, + 547, + 196, + 566 + ], + "score": 1.0, + "content": "2 Preliminaries", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 106, + 572, + 506, + 645 + ], + "lines": [ + { + "bbox": [ + 105, + 572, + 506, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 443, + 584 + ], + "score": 1.0, + "content": "We study unsupervised domain adaptation (UDA). Consider a source distribution", + "type": "text" + }, + { + "bbox": [ + 444, + 573, + 453, + 582 + ], + "score": 0.83, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 572, + 506, + 584 + ], + "score": 1.0, + "content": "and a target", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 156, + 596 + ], + "score": 1.0, + "content": "distribution", + "type": "text" + }, + { + "bbox": [ + 157, + 583, + 166, + 595 + ], + "score": 0.84, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 582, + 280, + 596 + ], + "score": 1.0, + "content": "over the input-label space", + "type": "text" + }, + { + "bbox": [ + 280, + 584, + 312, + 594 + ], + "score": 0.9, + "content": "\\mathcal { X } \\times \\mathcal { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 582, + 400, + 596 + ], + "score": 1.0, + "content": ". We have access to", + "type": "text" + }, + { + "bbox": [ + 401, + 585, + 412, + 594 + ], + "score": 0.84, + "content": "n _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 582, + 506, + 596 + ], + "score": 1.0, + "content": "labeled i.i.d. samples", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 107, + 591, + 504, + 614 + ], + "spans": [ + { + "bbox": [ + 107, + 594, + 179, + 608 + ], + "score": 0.91, + "content": "\\widehat { P } = \\{ x _ { i } ^ { s } , y _ { i } ^ { s } \\} _ { i = 1 } ^ { n _ { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 591, + 205, + 614 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 205, + 596, + 214, + 606 + ], + "score": 0.81, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 591, + 234, + 614 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 234, + 597, + 245, + 607 + ], + "score": 0.84, + "content": "n _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 591, + 348, + 614 + ], + "score": 1.0, + "content": "unlabeled i.i.d. samples", + "type": "text" + }, + { + "bbox": [ + 349, + 594, + 406, + 608 + ], + "score": 0.91, + "content": "\\widehat { Q } = \\{ x _ { i } ^ { t } \\} _ { i = 1 } ^ { n _ { t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 591, + 432, + 614 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 432, + 596, + 441, + 608 + ], + "score": 0.82, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 591, + 496, + 614 + ], + "score": 1.0, + "content": ". The model", + "type": "text" + }, + { + "bbox": [ + 497, + 596, + 504, + 608 + ], + "score": 0.83, + "content": "f", + "type": "inline_equation" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 606, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 104, + 606, + 221, + 619 + ], + "score": 1.0, + "content": "comprises a feature extractor", + "type": "text" + }, + { + "bbox": [ + 221, + 608, + 233, + 619 + ], + "score": 0.89, + "content": "h _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 606, + 300, + 619 + ], + "score": 1.0, + "content": "parametrized by", + "type": "text" + }, + { + "bbox": [ + 300, + 608, + 307, + 618 + ], + "score": 0.86, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 606, + 419, + 619 + ], + "score": 1.0, + "content": "and a head (linear classifier)", + "type": "text" + }, + { + "bbox": [ + 420, + 609, + 430, + 618 + ], + "score": 0.8, + "content": "g _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 606, + 496, + 619 + ], + "score": 1.0, + "content": "parametrized by", + "type": "text" + }, + { + "bbox": [ + 497, + 608, + 502, + 617 + ], + "score": 0.79, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 606, + 506, + 619 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 616, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 104, + 616, + 122, + 632 + ], + "score": 1.0, + "content": "i.e.", + "type": "text" + }, + { + "bbox": [ + 122, + 618, + 208, + 630 + ], + "score": 0.93, + "content": "\\bar { f } _ { \\theta , \\phi } ( x ) = g _ { \\theta } ( h _ { \\phi } ( x ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 616, + 292, + 632 + ], + "score": 1.0, + "content": ". The loss function is", + "type": "text" + }, + { + "bbox": [ + 292, + 618, + 315, + 630 + ], + "score": 0.92, + "content": "\\ell ( \\cdot , \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 616, + 362, + 632 + ], + "score": 1.0, + "content": ". Denote by", + "type": "text" + }, + { + "bbox": [ + 363, + 618, + 505, + 631 + ], + "score": 0.9, + "content": "L _ { P } ( \\theta , \\phi ) : = \\mathbb { E } _ { ( x , y ) \\sim P } \\ell ( f _ { \\theta , \\phi } ( x ) , y )", + "type": "inline_equation" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 631, + 489, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 193, + 645 + ], + "score": 1.0, + "content": "the expected error on", + "type": "text" + }, + { + "bbox": [ + 194, + 633, + 202, + 642 + ], + "score": 0.81, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 631, + 278, + 645 + ], + "score": 1.0, + "content": ". Similarly, we use", + "type": "text" + }, + { + "bbox": [ + 278, + 632, + 315, + 645 + ], + "score": 0.93, + "content": "{ \\cal L } _ { \\widehat { P } } ( \\theta , \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 631, + 475, + 645 + ], + "score": 1.0, + "content": "to denote the empirical error on dataset", + "type": "text" + }, + { + "bbox": [ + 476, + 631, + 484, + 642 + ], + "score": 0.85, + "content": "\\widehat { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 631, + 489, + 645 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37.5, + "bbox_fs": [ + 104, + 572, + 506, + 645 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 648, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 646, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 506, + 662 + ], + "score": 1.0, + "content": "We discuss two mainstream UDA methods and their formulations: feature adaptation and self-training.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41, + "bbox_fs": [ + 105, + 646, + 506, + 662 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 665, + 504, + 690 + ], + "lines": [ + { + "bbox": [ + 105, + 664, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 262, + 680 + ], + "score": 1.0, + "content": "Feature Adaptation trains the model", + "type": "text" + }, + { + "bbox": [ + 262, + 667, + 269, + 678 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 664, + 359, + 680 + ], + "score": 1.0, + "content": "on the source dataset", + "type": "text" + }, + { + "bbox": [ + 360, + 666, + 368, + 677 + ], + "score": 0.84, + "content": "\\widehat { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 664, + 505, + 680 + ], + "score": 1.0, + "content": ", and simultaneously matches the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 677, + 386, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 338, + 691 + ], + "score": 1.0, + "content": "source and target distributions in the representation space", + "type": "text" + }, + { + "bbox": [ + 338, + 679, + 382, + 690 + ], + "score": 0.93, + "content": "\\mathcal { Z } = h ( \\mathcal { X } )", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 677, + 386, + 691 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 664, + 505, + 691 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 244, + 698, + 367, + 720 + ], + "lines": [ + { + "bbox": [ + 244, + 698, + 367, + 720 + ], + "spans": [ + { + "bbox": [ + 244, + 698, + 367, + 720 + ], + "score": 0.93, + "content": "\\operatorname* { m i n } _ { \\theta , \\phi } L _ { \\widehat { P } } ( \\theta , \\phi ) + d ( h _ { \\sharp } \\widehat { P } , h _ { \\sharp } \\widehat { Q } ) .", + "type": "interline_equation", + "image_path": "08c3281134353cdfc0b467df0091b2073698e29eaba7544d4dbb027d50f15236.jpg" + } + ] + } + ], + "index": 44, + "virtual_lines": [ + { + "bbox": [ + 244, + 698, + 367, + 720 + ], + "spans": [], + "index": 44 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 124, + 77, + 484, + 170 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 124, + 77, + 484, + 170 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 124, + 77, + 484, + 170 + ], + "spans": [ + { + "bbox": [ + 124, + 77, + 484, + 170 + ], + "score": 0.959, + "type": "image", + "image_path": "b47a38073ca7224e33f9ab2c301d27144b2711ff9fb5bf238f28f0fb56f3274f.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 124, + 77, + 484, + 108.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 124, + 108.0, + 484, + 139.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 124, + 139.0, + 484, + 170.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 177, + 506, + 208 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 176, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 505, + 189 + ], + "score": 1.0, + "content": "Figure 2: Analysis of pseudo-labels under domain shift on VisDA-2017. Left: Pseudo-label distributions", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 186, + 506, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 506, + 199 + ], + "score": 1.0, + "content": "with and without domain shift. Middle: Changes of pseudo-label distributions throughout training. Right:", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 198, + 364, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 364, + 208 + ], + "score": 1.0, + "content": "Quality of pseudo-labels under different pseudo-label selection criteria.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 214, + 505, + 261 + ], + "lines": [ + { + "bbox": [ + 105, + 215, + 506, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 131, + 229 + ], + "score": 1.0, + "content": "Here,", + "type": "text" + }, + { + "bbox": [ + 131, + 215, + 150, + 229 + ], + "score": 0.93, + "content": "h _ { \\sharp } \\widehat { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 216, + 312, + 229 + ], + "score": 1.0, + "content": "denotes the pushforward distribution of", + "type": "text" + }, + { + "bbox": [ + 313, + 215, + 322, + 227 + ], + "score": 0.86, + "content": "\\widehat { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 216, + 342, + 229 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 343, + 217, + 367, + 229 + ], + "score": 0.9, + "content": "d ( \\cdot , \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 216, + 506, + 229 + ], + "score": 1.0, + "content": "is some distribution distance. For", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 227, + 506, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 339, + 241 + ], + "score": 1.0, + "content": "instance, Long et al. [34] used maximum mean discrepancy", + "type": "text" + }, + { + "bbox": [ + 339, + 229, + 363, + 240 + ], + "score": 0.88, + "content": "d _ { \\mathrm { M M D } }", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 227, + 506, + 241 + ], + "score": 1.0, + "content": ", and Ganin et al. [22] approximated", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 238, + 506, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 120, + 252 + ], + "score": 1.0, + "content": "the", + "type": "text" + }, + { + "bbox": [ + 121, + 239, + 147, + 250 + ], + "score": 0.81, + "content": "\\mathcal { H } \\Delta \\mathcal { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 238, + 184, + 252 + ], + "score": 1.0, + "content": "-distance", + "type": "text" + }, + { + "bbox": [ + 184, + 240, + 211, + 250 + ], + "score": 0.91, + "content": "d _ { \\mathcal { H } \\Delta \\mathcal { H } }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 238, + 506, + 252 + ], + "score": 1.0, + "content": "[7] with adversarial training. Despite its pervasiveness, recent works have", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 249, + 501, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 501, + 262 + ], + "score": 1.0, + "content": "shown the intrinsic limitations of feature adaptation under real-world situations [6, 74, 33, 32, 29].", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 106, + 266, + 505, + 327 + ], + "lines": [ + { + "bbox": [ + 105, + 266, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 505, + 279 + ], + "score": 1.0, + "content": "Self-Training is considered a promising alternative to feature adaptation. In this work we mainly", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 276, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 506, + 290 + ], + "score": 1.0, + "content": "focus on pseudo-labeling [31, 30]. Stemming from semi-supervised learning, standard self-training", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 288, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 192, + 304 + ], + "score": 1.0, + "content": "trains a source model", + "type": "text" + }, + { + "bbox": [ + 193, + 290, + 203, + 302 + ], + "score": 0.88, + "content": "f _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 289, + 289, + 304 + ], + "score": 1.0, + "content": "on the source dataset", + "type": "text" + }, + { + "bbox": [ + 289, + 288, + 298, + 300 + ], + "score": 0.72, + "content": "\\widehat { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 289, + 386, + 303 + ], + "score": 0.84, + "content": ": \\mathrm { m i n } _ { \\theta _ { s } , \\phi _ { s } } L _ { \\widehat { P } } ( \\theta _ { s } , \\phi _ { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 289, + 506, + 304 + ], + "score": 1.0, + "content": ". The target pseudo-labels are", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 302, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 178, + 317 + ], + "score": 1.0, + "content": "then generated by", + "type": "text" + }, + { + "bbox": [ + 178, + 304, + 189, + 316 + ], + "score": 0.88, + "content": "f _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 303, + 270, + 317 + ], + "score": 1.0, + "content": "on the target dataset", + "type": "text" + }, + { + "bbox": [ + 270, + 302, + 279, + 316 + ], + "score": 0.86, + "content": "\\widehat { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 303, + 505, + 317 + ], + "score": 1.0, + "content": ". To leverage unlabeled target data, self-training trains the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 315, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 106, + 315, + 506, + 327 + ], + "score": 1.0, + "content": "model on the source and target datasets together with source ground-truths and target pseudo-labels:", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12 + }, + { + "type": "interline_equation", + "bbox": [ + 189, + 331, + 422, + 350 + ], + "lines": [ + { + "bbox": [ + 189, + 331, + 422, + 350 + ], + "spans": [ + { + "bbox": [ + 189, + 331, + 422, + 350 + ], + "score": 0.91, + "content": "\\operatorname* { m i n } _ { \\theta , \\phi } L _ { \\widehat { P } } ( \\theta , \\phi ) + \\mathbb { E } _ { x \\sim \\widehat { Q } } \\ell ( f _ { \\theta , \\phi } ( x ) , \\arg \\operatorname* { m a x } _ { i } \\{ f _ { \\theta , \\phi _ { s } } ( x ) _ { [ i ] } \\} ) .", + "type": "interline_equation", + "image_path": "7eb4ed6be74b99db248b902505b5c093a12694a3b85b7d17df4c597e37de3e0f.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 189, + 331, + 422, + 350 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 354, + 505, + 388 + ], + "lines": [ + { + "bbox": [ + 105, + 353, + 506, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 506, + 367 + ], + "score": 1.0, + "content": "Self-training also uses label-sharpening as a standard protocol [31, 57]. Another popular variant", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 366, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 505, + 378 + ], + "score": 1.0, + "content": "of pseudo-labeling is the teacher-student model [4, 61], which iteratively improves the quality of", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 376, + 464, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 270, + 389 + ], + "score": 1.0, + "content": "pseudo-labels via alternatively replacing", + "type": "text" + }, + { + "bbox": [ + 270, + 377, + 280, + 387 + ], + "score": 0.88, + "content": "\\theta _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 376, + 298, + 389 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 298, + 377, + 309, + 388 + ], + "score": 0.89, + "content": "\\phi _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 376, + 331, + 389 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 331, + 377, + 337, + 386 + ], + "score": 0.83, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 376, + 355, + 389 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 356, + 377, + 363, + 388 + ], + "score": 0.86, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 376, + 464, + 389 + ], + "score": 1.0, + "content": "of the previous iteration.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17 + }, + { + "type": "title", + "bbox": [ + 107, + 395, + 292, + 407 + ], + "lines": [ + { + "bbox": [ + 105, + 393, + 294, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 294, + 410 + ], + "score": 1.0, + "content": "2.1 Limitations of Standard Self-Training", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 410, + 505, + 455 + ], + "lines": [ + { + "bbox": [ + 106, + 410, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 506, + 423 + ], + "score": 1.0, + "content": "Standard self-training with pseudo-labels uses unlabeled data efficiently for semi-supervised learn-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 420, + 506, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 506, + 435 + ], + "score": 1.0, + "content": "ing [31, 39, 57]. Here we carry out exploratory studies on the popular VisDA-2017 [45] dataset using", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 432, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 505, + 444 + ], + "score": 1.0, + "content": "ResNet-50 backbones. We find that domain shift makes the pseudo-labels biased towards several", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 443, + 500, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 500, + 455 + ], + "score": 1.0, + "content": "classes and thereby unreliable in UDA. See Appendix C.1 for details and results on more datasets.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 106, + 459, + 505, + 580 + ], + "lines": [ + { + "bbox": [ + 106, + 460, + 506, + 472 + ], + "spans": [ + { + "bbox": [ + 106, + 460, + 506, + 472 + ], + "score": 1.0, + "content": "Pseudo-label distributions with or without domain shift. We resample the original VisDA-2017", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 471, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 505, + 483 + ], + "score": 1.0, + "content": "to simulate different relationship between source and target domains: 1) i.i.d., 2) covariate shift, and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 481, + 506, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 506, + 494 + ], + "score": 1.0, + "content": "3) label shift. We train the model on the three variants of source dataset and use it to generate target", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 492, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 104, + 492, + 506, + 505 + ], + "score": 1.0, + "content": "pseudo-labels. We show the distributions of target ground-truths and pseudo-labels in Figure 2 (Left).", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 503, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 106, + 503, + 506, + 516 + ], + "score": 1.0, + "content": "When the source and target distributions are identical, the distribution of pseudo-labels is almost", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 514, + 506, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 506, + 527 + ], + "score": 1.0, + "content": "the same as ground-truths, indicating the reliability of pseudo-labels. In contrast, when exposed to", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 524, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 506, + 538 + ], + "score": 1.0, + "content": "label shift or covariate shift, the distribution of pseudo-labels is significantly different from target", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "score": 1.0, + "content": "ground-truths. Note that classes 2, 7, 8 and 12 appear rarely in the target pseudo-labels in the covariate", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 547, + 506, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 506, + 559 + ], + "score": 1.0, + "content": "shift setting, indicating that the pseudo-labels are biased towards several classes due to domain shift.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 558, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 506, + 570 + ], + "score": 1.0, + "content": "Self-training with these pseudo-labels is risky since it may lead to misalignment of distributions and", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 569, + 318, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 318, + 581 + ], + "score": 1.0, + "content": "misclassify many examples of classes 2, 7, 8 and 12.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 585, + 505, + 673 + ], + "lines": [ + { + "bbox": [ + 106, + 584, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 106, + 584, + 506, + 598 + ], + "score": 1.0, + "content": "Change of pseudo-label distributions throughout training. To further study the change of pseudo-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "score": 1.0, + "content": "labels in standard self-training, we compute the total variation (TV) distance between target ground-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 606, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 232, + 621 + ], + "score": 1.0, + "content": "truths and target pseudo-labels:", + "type": "text" + }, + { + "bbox": [ + 233, + 606, + 346, + 619 + ], + "score": 0.93, + "content": "\\begin{array} { r } { d _ { \\mathrm { T V } } ( c , \\dot { c ^ { \\prime } } ) = \\frac { 1 } { 2 } \\sum _ { i } \\| c _ { i } - c _ { i } ^ { \\prime } \\| } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 606, + 376, + 621 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 376, + 609, + 385, + 618 + ], + "score": 0.85, + "content": "c _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 606, + 462, + 621 + ], + "score": 1.0, + "content": "is the ratio of class", + "type": "text" + }, + { + "bbox": [ + 463, + 608, + 468, + 617 + ], + "score": 0.58, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 606, + 506, + 621 + ], + "score": 1.0, + "content": ". We plot", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 618, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 505, + 630 + ], + "score": 1.0, + "content": "its change during training in Figure 2 (Middle). Although the error rate of pseudo-labels continues", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 628, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 156, + 641 + ], + "score": 1.0, + "content": "to decrease,", + "type": "text" + }, + { + "bbox": [ + 157, + 629, + 173, + 640 + ], + "score": 0.87, + "content": "d _ { \\mathrm { T V } }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 628, + 438, + 641 + ], + "score": 1.0, + "content": "remains almost unchanged at 0.26 throughout training. Note that", + "type": "text" + }, + { + "bbox": [ + 439, + 629, + 455, + 640 + ], + "score": 0.88, + "content": "d _ { \\mathrm { T V } }", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 628, + 505, + 641 + ], + "score": 1.0, + "content": "is the lower", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 640, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 640, + 393, + 652 + ], + "score": 1.0, + "content": "bound of the error rate of the pseudo-labels (shown in Appendix C.1). If", + "type": "text" + }, + { + "bbox": [ + 394, + 640, + 410, + 651 + ], + "score": 0.89, + "content": "d _ { \\mathrm { T V } }", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 640, + 505, + 652 + ], + "score": 1.0, + "content": "converges to 0.26, then", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 649, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 506, + 664 + ], + "score": 1.0, + "content": "the accuracy of pseudo-labels is upper-bounded by 0.74. This indicates that the important denoising", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 662, + 433, + 674 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 433, + 674 + ], + "score": 1.0, + "content": "ability [66] of pseudo-labels in standard self-training is hindered by domain shift.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 107, + 678, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "Difficulty of selecting reliable pseudo-labels under domain shift. To mitigate the negative effect", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 689, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 505, + 701 + ], + "score": 1.0, + "content": "of false pseudo-labels, recent works proposed to select correct pseudo-labels based on thresholding the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 700, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 505, + 713 + ], + "score": 1.0, + "content": "entropy or confidence criteria [35, 21, 37, 57]. However, it remains unclear whether these strategies", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 710, + 505, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 724 + ], + "score": 1.0, + "content": "are still effective under domain shift. Here we compare the quality of pseudo-labels selected by", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 44.5 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 740, + 310, + 752 + ], + "spans": [ + { + "bbox": [ + 301, + 740, + 310, + 752 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 124, + 77, + 484, + 170 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 124, + 77, + 484, + 170 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 124, + 77, + 484, + 170 + ], + "spans": [ + { + "bbox": [ + 124, + 77, + 484, + 170 + ], + "score": 0.959, + "type": "image", + "image_path": "b47a38073ca7224e33f9ab2c301d27144b2711ff9fb5bf238f28f0fb56f3274f.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 124, + 77, + 484, + 108.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 124, + 108.0, + 484, + 139.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 124, + 139.0, + 484, + 170.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 177, + 506, + 208 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 176, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 505, + 189 + ], + "score": 1.0, + "content": "Figure 2: Analysis of pseudo-labels under domain shift on VisDA-2017. Left: Pseudo-label distributions", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 186, + 506, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 506, + 199 + ], + "score": 1.0, + "content": "with and without domain shift. Middle: Changes of pseudo-label distributions throughout training. Right:", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 198, + 364, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 364, + 208 + ], + "score": 1.0, + "content": "Quality of pseudo-labels under different pseudo-label selection criteria.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 214, + 505, + 261 + ], + "lines": [ + { + "bbox": [ + 105, + 215, + 506, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 131, + 229 + ], + "score": 1.0, + "content": "Here,", + "type": "text" + }, + { + "bbox": [ + 131, + 215, + 150, + 229 + ], + "score": 0.93, + "content": "h _ { \\sharp } \\widehat { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 216, + 312, + 229 + ], + "score": 1.0, + "content": "denotes the pushforward distribution of", + "type": "text" + }, + { + "bbox": [ + 313, + 215, + 322, + 227 + ], + "score": 0.86, + "content": "\\widehat { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 216, + 342, + 229 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 343, + 217, + 367, + 229 + ], + "score": 0.9, + "content": "d ( \\cdot , \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 216, + 506, + 229 + ], + "score": 1.0, + "content": "is some distribution distance. For", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 227, + 506, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 339, + 241 + ], + "score": 1.0, + "content": "instance, Long et al. [34] used maximum mean discrepancy", + "type": "text" + }, + { + "bbox": [ + 339, + 229, + 363, + 240 + ], + "score": 0.88, + "content": "d _ { \\mathrm { M M D } }", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 227, + 506, + 241 + ], + "score": 1.0, + "content": ", and Ganin et al. [22] approximated", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 238, + 506, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 120, + 252 + ], + "score": 1.0, + "content": "the", + "type": "text" + }, + { + "bbox": [ + 121, + 239, + 147, + 250 + ], + "score": 0.81, + "content": "\\mathcal { H } \\Delta \\mathcal { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 238, + 184, + 252 + ], + "score": 1.0, + "content": "-distance", + "type": "text" + }, + { + "bbox": [ + 184, + 240, + 211, + 250 + ], + "score": 0.91, + "content": "d _ { \\mathcal { H } \\Delta \\mathcal { H } }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 238, + 506, + 252 + ], + "score": 1.0, + "content": "[7] with adversarial training. Despite its pervasiveness, recent works have", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 249, + 501, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 501, + 262 + ], + "score": 1.0, + "content": "shown the intrinsic limitations of feature adaptation under real-world situations [6, 74, 33, 32, 29].", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 215, + 506, + 262 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 266, + 505, + 327 + ], + "lines": [ + { + "bbox": [ + 105, + 266, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 505, + 279 + ], + "score": 1.0, + "content": "Self-Training is considered a promising alternative to feature adaptation. In this work we mainly", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 276, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 506, + 290 + ], + "score": 1.0, + "content": "focus on pseudo-labeling [31, 30]. Stemming from semi-supervised learning, standard self-training", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 288, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 192, + 304 + ], + "score": 1.0, + "content": "trains a source model", + "type": "text" + }, + { + "bbox": [ + 193, + 290, + 203, + 302 + ], + "score": 0.88, + "content": "f _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 289, + 289, + 304 + ], + "score": 1.0, + "content": "on the source dataset", + "type": "text" + }, + { + "bbox": [ + 289, + 288, + 298, + 300 + ], + "score": 0.72, + "content": "\\widehat { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 289, + 386, + 303 + ], + "score": 0.84, + "content": ": \\mathrm { m i n } _ { \\theta _ { s } , \\phi _ { s } } L _ { \\widehat { P } } ( \\theta _ { s } , \\phi _ { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 289, + 506, + 304 + ], + "score": 1.0, + "content": ". The target pseudo-labels are", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 302, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 178, + 317 + ], + "score": 1.0, + "content": "then generated by", + "type": "text" + }, + { + "bbox": [ + 178, + 304, + 189, + 316 + ], + "score": 0.88, + "content": "f _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 303, + 270, + 317 + ], + "score": 1.0, + "content": "on the target dataset", + "type": "text" + }, + { + "bbox": [ + 270, + 302, + 279, + 316 + ], + "score": 0.86, + "content": "\\widehat { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 303, + 505, + 317 + ], + "score": 1.0, + "content": ". To leverage unlabeled target data, self-training trains the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 315, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 106, + 315, + 506, + 327 + ], + "score": 1.0, + "content": "model on the source and target datasets together with source ground-truths and target pseudo-labels:", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 266, + 506, + 327 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 189, + 331, + 422, + 350 + ], + "lines": [ + { + "bbox": [ + 189, + 331, + 422, + 350 + ], + "spans": [ + { + "bbox": [ + 189, + 331, + 422, + 350 + ], + "score": 0.91, + "content": "\\operatorname* { m i n } _ { \\theta , \\phi } L _ { \\widehat { P } } ( \\theta , \\phi ) + \\mathbb { E } _ { x \\sim \\widehat { Q } } \\ell ( f _ { \\theta , \\phi } ( x ) , \\arg \\operatorname* { m a x } _ { i } \\{ f _ { \\theta , \\phi _ { s } } ( x ) _ { [ i ] } \\} ) .", + "type": "interline_equation", + "image_path": "7eb4ed6be74b99db248b902505b5c093a12694a3b85b7d17df4c597e37de3e0f.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 189, + 331, + 422, + 350 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 354, + 505, + 388 + ], + "lines": [ + { + "bbox": [ + 105, + 353, + 506, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 506, + 367 + ], + "score": 1.0, + "content": "Self-training also uses label-sharpening as a standard protocol [31, 57]. Another popular variant", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 366, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 505, + 378 + ], + "score": 1.0, + "content": "of pseudo-labeling is the teacher-student model [4, 61], which iteratively improves the quality of", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 376, + 464, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 270, + 389 + ], + "score": 1.0, + "content": "pseudo-labels via alternatively replacing", + "type": "text" + }, + { + "bbox": [ + 270, + 377, + 280, + 387 + ], + "score": 0.88, + "content": "\\theta _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 376, + 298, + 389 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 298, + 377, + 309, + 388 + ], + "score": 0.89, + "content": "\\phi _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 376, + 331, + 389 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 331, + 377, + 337, + 386 + ], + "score": 0.83, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 376, + 355, + 389 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 356, + 377, + 363, + 388 + ], + "score": 0.86, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 376, + 464, + 389 + ], + "score": 1.0, + "content": "of the previous iteration.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 353, + 506, + 389 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 395, + 292, + 407 + ], + "lines": [ + { + "bbox": [ + 105, + 393, + 294, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 294, + 410 + ], + "score": 1.0, + "content": "2.1 Limitations of Standard Self-Training", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 410, + 505, + 455 + ], + "lines": [ + { + "bbox": [ + 106, + 410, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 506, + 423 + ], + "score": 1.0, + "content": "Standard self-training with pseudo-labels uses unlabeled data efficiently for semi-supervised learn-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 420, + 506, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 506, + 435 + ], + "score": 1.0, + "content": "ing [31, 39, 57]. Here we carry out exploratory studies on the popular VisDA-2017 [45] dataset using", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 432, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 505, + 444 + ], + "score": 1.0, + "content": "ResNet-50 backbones. We find that domain shift makes the pseudo-labels biased towards several", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 443, + 500, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 500, + 455 + ], + "score": 1.0, + "content": "classes and thereby unreliable in UDA. See Appendix C.1 for details and results on more datasets.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 410, + 506, + 455 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 459, + 505, + 580 + ], + "lines": [ + { + "bbox": [ + 106, + 460, + 506, + 472 + ], + "spans": [ + { + "bbox": [ + 106, + 460, + 506, + 472 + ], + "score": 1.0, + "content": "Pseudo-label distributions with or without domain shift. We resample the original VisDA-2017", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 471, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 505, + 483 + ], + "score": 1.0, + "content": "to simulate different relationship between source and target domains: 1) i.i.d., 2) covariate shift, and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 481, + 506, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 506, + 494 + ], + "score": 1.0, + "content": "3) label shift. We train the model on the three variants of source dataset and use it to generate target", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 492, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 104, + 492, + 506, + 505 + ], + "score": 1.0, + "content": "pseudo-labels. We show the distributions of target ground-truths and pseudo-labels in Figure 2 (Left).", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 503, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 106, + 503, + 506, + 516 + ], + "score": 1.0, + "content": "When the source and target distributions are identical, the distribution of pseudo-labels is almost", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 514, + 506, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 506, + 527 + ], + "score": 1.0, + "content": "the same as ground-truths, indicating the reliability of pseudo-labels. In contrast, when exposed to", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 524, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 506, + 538 + ], + "score": 1.0, + "content": "label shift or covariate shift, the distribution of pseudo-labels is significantly different from target", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "score": 1.0, + "content": "ground-truths. Note that classes 2, 7, 8 and 12 appear rarely in the target pseudo-labels in the covariate", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 547, + 506, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 506, + 559 + ], + "score": 1.0, + "content": "shift setting, indicating that the pseudo-labels are biased towards several classes due to domain shift.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 558, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 506, + 570 + ], + "score": 1.0, + "content": "Self-training with these pseudo-labels is risky since it may lead to misalignment of distributions and", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 569, + 318, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 318, + 581 + ], + "score": 1.0, + "content": "misclassify many examples of classes 2, 7, 8 and 12.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 29, + "bbox_fs": [ + 104, + 460, + 506, + 581 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 585, + 505, + 673 + ], + "lines": [ + { + "bbox": [ + 106, + 584, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 106, + 584, + 506, + 598 + ], + "score": 1.0, + "content": "Change of pseudo-label distributions throughout training. To further study the change of pseudo-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "score": 1.0, + "content": "labels in standard self-training, we compute the total variation (TV) distance between target ground-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 606, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 232, + 621 + ], + "score": 1.0, + "content": "truths and target pseudo-labels:", + "type": "text" + }, + { + "bbox": [ + 233, + 606, + 346, + 619 + ], + "score": 0.93, + "content": "\\begin{array} { r } { d _ { \\mathrm { T V } } ( c , \\dot { c ^ { \\prime } } ) = \\frac { 1 } { 2 } \\sum _ { i } \\| c _ { i } - c _ { i } ^ { \\prime } \\| } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 606, + 376, + 621 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 376, + 609, + 385, + 618 + ], + "score": 0.85, + "content": "c _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 606, + 462, + 621 + ], + "score": 1.0, + "content": "is the ratio of class", + "type": "text" + }, + { + "bbox": [ + 463, + 608, + 468, + 617 + ], + "score": 0.58, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 606, + 506, + 621 + ], + "score": 1.0, + "content": ". We plot", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 618, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 505, + 630 + ], + "score": 1.0, + "content": "its change during training in Figure 2 (Middle). Although the error rate of pseudo-labels continues", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 628, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 156, + 641 + ], + "score": 1.0, + "content": "to decrease,", + "type": "text" + }, + { + "bbox": [ + 157, + 629, + 173, + 640 + ], + "score": 0.87, + "content": "d _ { \\mathrm { T V } }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 628, + 438, + 641 + ], + "score": 1.0, + "content": "remains almost unchanged at 0.26 throughout training. Note that", + "type": "text" + }, + { + "bbox": [ + 439, + 629, + 455, + 640 + ], + "score": 0.88, + "content": "d _ { \\mathrm { T V } }", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 628, + 505, + 641 + ], + "score": 1.0, + "content": "is the lower", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 640, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 640, + 393, + 652 + ], + "score": 1.0, + "content": "bound of the error rate of the pseudo-labels (shown in Appendix C.1). If", + "type": "text" + }, + { + "bbox": [ + 394, + 640, + 410, + 651 + ], + "score": 0.89, + "content": "d _ { \\mathrm { T V } }", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 640, + 505, + 652 + ], + "score": 1.0, + "content": "converges to 0.26, then", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 649, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 506, + 664 + ], + "score": 1.0, + "content": "the accuracy of pseudo-labels is upper-bounded by 0.74. This indicates that the important denoising", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 662, + 433, + 674 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 433, + 674 + ], + "score": 1.0, + "content": "ability [66] of pseudo-labels in standard self-training is hindered by domain shift.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 584, + 506, + 674 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 678, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "Difficulty of selecting reliable pseudo-labels under domain shift. To mitigate the negative effect", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 689, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 505, + 701 + ], + "score": 1.0, + "content": "of false pseudo-labels, recent works proposed to select correct pseudo-labels based on thresholding the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 700, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 505, + 713 + ], + "score": 1.0, + "content": "entropy or confidence criteria [35, 21, 37, 57]. However, it remains unclear whether these strategies", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 710, + 505, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 724 + ], + "score": 1.0, + "content": "are still effective under domain shift. Here we compare the quality of pseudo-labels selected by", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 73, + 505, + 85 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 505, + 85 + ], + "score": 1.0, + "content": "different strategies with or without domain shift. For each strategy, we compute False Positive Rate", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 83, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 96 + ], + "score": 1.0, + "content": "and True Positive Rate for different thresholds and plot its ROC curve in Figure 2 (Right). When the", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 94, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 107 + ], + "score": 1.0, + "content": "source and target distributions are identical, both entropy and confidence are reasonable strategies for", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 105, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 234, + 118 + ], + "score": 1.0, + "content": "selecting correct pseudo-labels", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 234, + 105, + 281, + 117 + ], + "score": 0.55, + "content": "( \\mathrm { A U C } { = } 0 . 8 9 )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 281, + 105, + 506, + 118 + ], + "score": 1.0, + "content": "). However, when the target pseudo-labels are generated", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 116, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 454, + 129 + ], + "score": 1.0, + "content": "by the source model, the quality of pseudo-labels decreases sharply under domain shift", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 455, + 117, + 500, + 127 + ], + "score": 0.51, + "content": "\\mathrm { \\Delta A U C { = } 0 . 7 8 }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 501, + 116, + 506, + 129 + ], + "score": 1.0, + "content": ").", + "type": "text", + "cross_page": true + } + ], + "index": 4 + } + ], + "index": 44.5, + "bbox_fs": [ + 105, + 677, + 506, + 724 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 72, + 505, + 128 + ], + "lines": [ + { + "bbox": [ + 106, + 73, + 505, + 85 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 505, + 85 + ], + "score": 1.0, + "content": "different strategies with or without domain shift. For each strategy, we compute False Positive Rate", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 83, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 96 + ], + "score": 1.0, + "content": "and True Positive Rate for different thresholds and plot its ROC curve in Figure 2 (Right). When the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 94, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 107 + ], + "score": 1.0, + "content": "source and target distributions are identical, both entropy and confidence are reasonable strategies for", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 105, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 234, + 118 + ], + "score": 1.0, + "content": "selecting correct pseudo-labels", + "type": "text" + }, + { + "bbox": [ + 234, + 105, + 281, + 117 + ], + "score": 0.55, + "content": "( \\mathrm { A U C } { = } 0 . 8 9 )", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 105, + 506, + 118 + ], + "score": 1.0, + "content": "). However, when the target pseudo-labels are generated", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 116, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 454, + 129 + ], + "score": 1.0, + "content": "by the source model, the quality of pseudo-labels decreases sharply under domain shift", + "type": "text" + }, + { + "bbox": [ + 455, + 117, + 500, + 127 + ], + "score": 0.51, + "content": "\\mathrm { \\Delta A U C { = } 0 . 7 8 }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 116, + 506, + 129 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "title", + "bbox": [ + 107, + 138, + 177, + 152 + ], + "lines": [ + { + "bbox": [ + 103, + 135, + 178, + 155 + ], + "spans": [ + { + "bbox": [ + 103, + 135, + 178, + 155 + ], + "score": 1.0, + "content": "3 Approach", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 157, + 505, + 191 + ], + "lines": [ + { + "bbox": [ + 105, + 157, + 506, + 170 + ], + "spans": [ + { + "bbox": [ + 105, + 157, + 506, + 170 + ], + "score": 1.0, + "content": "We present Cycle Self-Training (CST) to improve pseudo-labels under domain shift. An overview of", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 168, + 505, + 181 + ], + "spans": [ + { + "bbox": [ + 105, + 168, + 505, + 181 + ], + "score": 1.0, + "content": "our method is given in Figure 1. Cycle Self-Training iterates between a forward step and a reverse", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 179, + 454, + 192 + ], + "spans": [ + { + "bbox": [ + 105, + 179, + 454, + 192 + ], + "score": 1.0, + "content": "step to make self-trained classifiers generalize well on both target and source domains.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "title", + "bbox": [ + 107, + 195, + 214, + 207 + ], + "lines": [ + { + "bbox": [ + 104, + 192, + 215, + 210 + ], + "spans": [ + { + "bbox": [ + 104, + 192, + 215, + 210 + ], + "score": 1.0, + "content": "3.1 Cycle Self-Training", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 210, + 504, + 233 + ], + "lines": [ + { + "bbox": [ + 106, + 210, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 410, + 223 + ], + "score": 1.0, + "content": "Forward Step. Similar to standard self-training, we have a source classifier", + "type": "text" + }, + { + "bbox": [ + 411, + 211, + 421, + 222 + ], + "score": 0.88, + "content": "\\theta _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 210, + 505, + 223 + ], + "score": 1.0, + "content": "trained on top of the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 221, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 197, + 234 + ], + "score": 1.0, + "content": "shared representations", + "type": "text" + }, + { + "bbox": [ + 197, + 222, + 204, + 233 + ], + "score": 0.85, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 221, + 505, + 234 + ], + "score": 1.0, + "content": "on the labeled source domain, and use it to generate target pseudo-labels as", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "interline_equation", + "bbox": [ + 249, + 237, + 361, + 257 + ], + "lines": [ + { + "bbox": [ + 249, + 237, + 361, + 257 + ], + "spans": [ + { + "bbox": [ + 249, + 237, + 361, + 257 + ], + "score": 0.94, + "content": "y ^ { \\prime } = \\arg \\operatorname* { m a x } _ { i } \\{ f _ { \\theta _ { s } , \\phi } ( x ) _ { [ i ] } \\} ,", + "type": "interline_equation", + "image_path": "f320bf246563b81f6d2648d2fdd1228bfad0d9c84e43d970ceea81de6211fd67.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 249, + 237, + 361, + 257 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 262, + 505, + 375 + ], + "lines": [ + { + "bbox": [ + 105, + 263, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 141, + 277 + ], + "score": 1.0, + "content": "for each", + "type": "text" + }, + { + "bbox": [ + 142, + 267, + 149, + 275 + ], + "score": 0.74, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 263, + 230, + 277 + ], + "score": 1.0, + "content": "in the target dataset", + "type": "text" + }, + { + "bbox": [ + 231, + 263, + 240, + 276 + ], + "score": 0.86, + "content": "\\widehat { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 263, + 506, + 277 + ], + "score": 1.0, + "content": ". Traditional self-training methods use confidence thresholding or", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 276, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 505, + 288 + ], + "score": 1.0, + "content": "reweighting to select reliable pseudo-labels. For example, Sohn et al. [57] select pseudo-labels with", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 286, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 286, + 505, + 299 + ], + "score": 1.0, + "content": "softmax value and Long et al. [37] add entropy reweighting to rely on examples with more confidence", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 298, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 505, + 310 + ], + "score": 1.0, + "content": "prediction. However, the output of deep networks is usually miscalibrated [25], and is not necessarily", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 309, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 309, + 505, + 320 + ], + "score": 1.0, + "content": "related to the ground-truth confidence even on the same distribution. In domain adaptation, as shown", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 320, + 506, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 506, + 333 + ], + "score": 1.0, + "content": "in Section 2.1, the discrepancy between the source and target domains makes pseudo-labels even", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 329, + 507, + 344 + ], + "spans": [ + { + "bbox": [ + 104, + 329, + 507, + 344 + ], + "score": 1.0, + "content": "more unreliable, and the performance of commonly used selection strategies is also unsatisfactory.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 341, + 506, + 354 + ], + "spans": [ + { + "bbox": [ + 106, + 341, + 506, + 354 + ], + "score": 1.0, + "content": "Another drawback is the expensive tweaking in order to find the optimal confidence threshold for", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 353, + 504, + 364 + ], + "spans": [ + { + "bbox": [ + 106, + 353, + 504, + 364 + ], + "score": 1.0, + "content": "new tasks. To better apply self-training to domain adaptation, we expect that the model can gradually", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 362, + 443, + 377 + ], + "spans": [ + { + "bbox": [ + 104, + 362, + 443, + 377 + ], + "score": 1.0, + "content": "refine the pseudo-labels by itself without the cumbersome selection or thresholding.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 106, + 379, + 505, + 456 + ], + "lines": [ + { + "bbox": [ + 105, + 378, + 506, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 506, + 393 + ], + "score": 1.0, + "content": "Reverse Step. We design a complementary step with the following insights to improve self-training.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 391, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 391, + 505, + 402 + ], + "score": 1.0, + "content": "Intuitively, the labels on the source domain contain both useful information that can transfer to the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 401, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 505, + 413 + ], + "score": 1.0, + "content": "target domain and harmful information that can make pseudo-labels incorrect. Similarly, reliable", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 412, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 104, + 412, + 506, + 424 + ], + "score": 1.0, + "content": "pseudo-labels on the target domain can transfer to the source domain in turn, while models trained", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 423, + 506, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 506, + 436 + ], + "score": 1.0, + "content": "with incorrect pseudo-labels on the target domain cannot transfer to the source domain. In this sense,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 434, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 506, + 446 + ], + "score": 1.0, + "content": "if we explicitly train the model to make target pseudo-labels informative of the source domain, we", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 444, + 495, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 495, + 457 + ], + "score": 1.0, + "content": "can gradually make the pseudo-labels more accurate and learn to generalize to the target domain.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 460, + 503, + 486 + ], + "lines": [ + { + "bbox": [ + 106, + 460, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 460, + 250, + 474 + ], + "score": 1.0, + "content": "Specifically, with the pseudo-labels", + "type": "text" + }, + { + "bbox": [ + 250, + 461, + 259, + 473 + ], + "score": 0.87, + "content": "y ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 460, + 395, + 474 + ], + "score": 1.0, + "content": "generated by the source classifier", + "type": "text" + }, + { + "bbox": [ + 396, + 462, + 406, + 472 + ], + "score": 0.88, + "content": "\\theta _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 460, + 506, + 474 + ], + "score": 1.0, + "content": "at hand as in equation 3,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 472, + 502, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 192, + 488 + ], + "score": 1.0, + "content": "we train a target head", + "type": "text" + }, + { + "bbox": [ + 192, + 472, + 215, + 486 + ], + "score": 0.93, + "content": "\\hat { \\theta } _ { t } ( \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 473, + 326, + 488 + ], + "score": 1.0, + "content": "on top of the representation", + "type": "text" + }, + { + "bbox": [ + 327, + 475, + 334, + 486 + ], + "score": 0.86, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 473, + 494, + 488 + ], + "score": 1.0, + "content": "with pseudo-labels on the target domain", + "type": "text" + }, + { + "bbox": [ + 494, + 473, + 502, + 486 + ], + "score": 0.88, + "content": "\\widehat { Q }", + "type": "inline_equation" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "interline_equation", + "bbox": [ + 229, + 491, + 382, + 512 + ], + "lines": [ + { + "bbox": [ + 229, + 491, + 382, + 512 + ], + "spans": [ + { + "bbox": [ + 229, + 491, + 382, + 512 + ], + "score": 0.94, + "content": "\\hat { \\theta } _ { t } ( \\phi ) = \\underset { \\theta } { \\arg \\operatorname* { m i n } } \\mathbb { E } _ { \\boldsymbol { x } \\sim \\hat { \\boldsymbol { Q } } } \\ell ( f _ { \\theta , \\phi } ( \\boldsymbol { x } ) , y ^ { \\prime } ) .", + "type": "interline_equation", + "image_path": "03699fae3f7b59b86374fb91a0f3d780b856c7a8778a428e47452fb369f5cccb.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 229, + 491, + 382, + 512 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 516, + 505, + 563 + ], + "lines": [ + { + "bbox": [ + 106, + 516, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 506, + 528 + ], + "score": 1.0, + "content": "We wish to make the target pseudo-labels informative of the source domain and gradually refine them.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 527, + 505, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 308, + 539 + ], + "score": 1.0, + "content": "To this end, we update the shared feature extractor", + "type": "text" + }, + { + "bbox": [ + 309, + 528, + 316, + 539 + ], + "score": 0.86, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 527, + 505, + 539 + ], + "score": 1.0, + "content": "to predict accurately on the source domain and", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 538, + 505, + 553 + ], + "spans": [ + { + "bbox": [ + 104, + 539, + 245, + 553 + ], + "score": 1.0, + "content": "jointly enforce the target classifier", + "type": "text" + }, + { + "bbox": [ + 245, + 538, + 268, + 552 + ], + "score": 0.92, + "content": "\\hat { \\theta } _ { t } ( \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 539, + 505, + 553 + ], + "score": 1.0, + "content": "to perform well on the source domain. This naturally leads", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 550, + 268, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 268, + 565 + ], + "score": 1.0, + "content": "to the objective of Cycle Self-Training:", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34.5 + }, + { + "type": "interline_equation", + "bbox": [ + 196, + 567, + 414, + 588 + ], + "lines": [ + { + "bbox": [ + 196, + 567, + 414, + 588 + ], + "spans": [ + { + "bbox": [ + 196, + 567, + 414, + 588 + ], + "score": 0.91, + "content": "\\operatorname* { m i n i m i z e } _ { \\theta _ { s } , \\phi } L _ { \\mathrm { C y c l e } } ( \\theta _ { s } , \\phi ) : = L _ { \\hat { P } } ( \\theta _ { s } , \\phi ) + L _ { \\hat { P } } ( \\hat { \\theta } _ { t } ( \\phi ) , \\phi ) .", + "type": "interline_equation", + "image_path": "ed81524779eb8a44184f8a5fa701e5693bc66a771d5cf2175c8b352bbc8f7bc8.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 196, + 567, + 414, + 588 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 590, + 506, + 728 + ], + "lines": [ + { + "bbox": [ + 106, + 590, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 106, + 591, + 405, + 604 + ], + "score": 1.0, + "content": "Bi-level Optimization. The objective in equation 5 relies on the solution", + "type": "text" + }, + { + "bbox": [ + 405, + 590, + 428, + 603 + ], + "score": 0.92, + "content": "\\hat { \\theta } _ { t } ( \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 591, + 505, + 604 + ], + "score": 1.0, + "content": "to the objective in", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 602, + 506, + 615 + ], + "spans": [ + { + "bbox": [ + 106, + 602, + 506, + 615 + ], + "score": 1.0, + "content": "equation 4. Thus, CST formulates a bi-level optimization problem. In the inner loop we generate", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 612, + 506, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 506, + 626 + ], + "score": 1.0, + "content": "target pseudo-labels with the source classifier (equation 3), and train a target classifier with target", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 623, + 506, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 436, + 637 + ], + "score": 1.0, + "content": "pseudo-labels (equation 4). After each inner loop, we update the feature extractor", + "type": "text" + }, + { + "bbox": [ + 437, + 624, + 444, + 636 + ], + "score": 0.86, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 623, + 506, + 637 + ], + "score": 1.0, + "content": "for one step in", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 635, + 506, + 647 + ], + "spans": [ + { + "bbox": [ + 106, + 635, + 506, + 647 + ], + "score": 1.0, + "content": "the outer loop (equation 5), and start a new inner loop again. However, since the inner loop of the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 646, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 646, + 381, + 658 + ], + "score": 1.0, + "content": "optimization in equation 4 only involves the light-weight linear head", + "type": "text" + }, + { + "bbox": [ + 381, + 646, + 390, + 657 + ], + "score": 0.87, + "content": "\\theta _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 646, + 506, + 658 + ], + "score": 1.0, + "content": ", we propose to calculate the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 657, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 180, + 671 + ], + "score": 1.0, + "content": "analytical form of", + "type": "text" + }, + { + "bbox": [ + 180, + 657, + 203, + 671 + ], + "score": 0.92, + "content": "\\hat { \\theta } _ { t } ( \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 658, + 410, + 671 + ], + "score": 1.0, + "content": "and directly back-propagate to the feature extractor", + "type": "text" + }, + { + "bbox": [ + 410, + 659, + 417, + 670 + ], + "score": 0.85, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 658, + 505, + 671 + ], + "score": 1.0, + "content": "instead of calculating", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 668, + 506, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 506, + 682 + ], + "score": 1.0, + "content": "the second-order derivatives as in MAML [18]. The resulting framework is as fast as training two", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 682, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 277, + 694 + ], + "score": 1.0, + "content": "heads jointly. Also note that the solution", + "type": "text" + }, + { + "bbox": [ + 277, + 682, + 299, + 694 + ], + "score": 0.93, + "content": "\\hat { \\theta } _ { t } ( \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 682, + 339, + 694 + ], + "score": 1.0, + "content": "relies on", + "type": "text" + }, + { + "bbox": [ + 340, + 683, + 349, + 693 + ], + "score": 0.86, + "content": "\\theta _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 682, + 428, + 694 + ], + "score": 1.0, + "content": "implicitly through", + "type": "text" + }, + { + "bbox": [ + 428, + 682, + 437, + 693 + ], + "score": 0.85, + "content": "y ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 682, + 505, + 694 + ], + "score": 1.0, + "content": ". However, both", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 693, + 506, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 693, + 420, + 705 + ], + "score": 1.0, + "content": "standard self-training and our implementation use label sharpening, making", + "type": "text" + }, + { + "bbox": [ + 420, + 694, + 429, + 705 + ], + "score": 0.86, + "content": "y ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 693, + 506, + 705 + ], + "score": 1.0, + "content": "not differentiable.", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 704, + 506, + 719 + ], + "spans": [ + { + "bbox": [ + 105, + 704, + 383, + 719 + ], + "score": 1.0, + "content": "Thus we follow vanilla self-training and do not consider the gradient of", + "type": "text" + }, + { + "bbox": [ + 384, + 705, + 406, + 718 + ], + "score": 0.93, + "content": "\\hat { \\theta } _ { t } ( \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 704, + 429, + 719 + ], + "score": 1.0, + "content": "w.r.t.", + "type": "text" + }, + { + "bbox": [ + 429, + 705, + 438, + 717 + ], + "score": 0.87, + "content": "y ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 704, + 506, + 719 + ], + "score": 1.0, + "content": "in the outer loop", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 716, + 506, + 729 + ], + "spans": [ + { + "bbox": [ + 105, + 716, + 506, + 729 + ], + "score": 1.0, + "content": "optimization. We defer the derivation and implementation of bi-level optimization to Appendix B.2.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 43.5 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 742, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 741, + 310, + 752 + ], + "spans": [ + { + "bbox": [ + 301, + 741, + 310, + 752 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 11, + "width": 9 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 72, + 505, + 128 + ], + "lines": [], + "index": 2, + "bbox_fs": [ + 105, + 73, + 506, + 129 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 107, + 138, + 177, + 152 + ], + "lines": [ + { + "bbox": [ + 103, + 135, + 178, + 155 + ], + "spans": [ + { + "bbox": [ + 103, + 135, + 178, + 155 + ], + "score": 1.0, + "content": "3 Approach", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 157, + 505, + 191 + ], + "lines": [ + { + "bbox": [ + 105, + 157, + 506, + 170 + ], + "spans": [ + { + "bbox": [ + 105, + 157, + 506, + 170 + ], + "score": 1.0, + "content": "We present Cycle Self-Training (CST) to improve pseudo-labels under domain shift. An overview of", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 168, + 505, + 181 + ], + "spans": [ + { + "bbox": [ + 105, + 168, + 505, + 181 + ], + "score": 1.0, + "content": "our method is given in Figure 1. Cycle Self-Training iterates between a forward step and a reverse", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 179, + 454, + 192 + ], + "spans": [ + { + "bbox": [ + 105, + 179, + 454, + 192 + ], + "score": 1.0, + "content": "step to make self-trained classifiers generalize well on both target and source domains.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 157, + 506, + 192 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 195, + 214, + 207 + ], + "lines": [ + { + "bbox": [ + 104, + 192, + 215, + 210 + ], + "spans": [ + { + "bbox": [ + 104, + 192, + 215, + 210 + ], + "score": 1.0, + "content": "3.1 Cycle Self-Training", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 210, + 504, + 233 + ], + "lines": [ + { + "bbox": [ + 106, + 210, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 410, + 223 + ], + "score": 1.0, + "content": "Forward Step. Similar to standard self-training, we have a source classifier", + "type": "text" + }, + { + "bbox": [ + 411, + 211, + 421, + 222 + ], + "score": 0.88, + "content": "\\theta _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 210, + 505, + 223 + ], + "score": 1.0, + "content": "trained on top of the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 221, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 197, + 234 + ], + "score": 1.0, + "content": "shared representations", + "type": "text" + }, + { + "bbox": [ + 197, + 222, + 204, + 233 + ], + "score": 0.85, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 221, + 505, + 234 + ], + "score": 1.0, + "content": "on the labeled source domain, and use it to generate target pseudo-labels as", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 106, + 210, + 505, + 234 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 249, + 237, + 361, + 257 + ], + "lines": [ + { + "bbox": [ + 249, + 237, + 361, + 257 + ], + "spans": [ + { + "bbox": [ + 249, + 237, + 361, + 257 + ], + "score": 0.94, + "content": "y ^ { \\prime } = \\arg \\operatorname* { m a x } _ { i } \\{ f _ { \\theta _ { s } , \\phi } ( x ) _ { [ i ] } \\} ,", + "type": "interline_equation", + "image_path": "f320bf246563b81f6d2648d2fdd1228bfad0d9c84e43d970ceea81de6211fd67.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 249, + 237, + 361, + 257 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 262, + 505, + 375 + ], + "lines": [ + { + "bbox": [ + 105, + 263, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 141, + 277 + ], + "score": 1.0, + "content": "for each", + "type": "text" + }, + { + "bbox": [ + 142, + 267, + 149, + 275 + ], + "score": 0.74, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 263, + 230, + 277 + ], + "score": 1.0, + "content": "in the target dataset", + "type": "text" + }, + { + "bbox": [ + 231, + 263, + 240, + 276 + ], + "score": 0.86, + "content": "\\widehat { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 263, + 506, + 277 + ], + "score": 1.0, + "content": ". Traditional self-training methods use confidence thresholding or", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 276, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 505, + 288 + ], + "score": 1.0, + "content": "reweighting to select reliable pseudo-labels. For example, Sohn et al. [57] select pseudo-labels with", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 286, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 286, + 505, + 299 + ], + "score": 1.0, + "content": "softmax value and Long et al. [37] add entropy reweighting to rely on examples with more confidence", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 298, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 505, + 310 + ], + "score": 1.0, + "content": "prediction. However, the output of deep networks is usually miscalibrated [25], and is not necessarily", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 309, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 309, + 505, + 320 + ], + "score": 1.0, + "content": "related to the ground-truth confidence even on the same distribution. In domain adaptation, as shown", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 320, + 506, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 506, + 333 + ], + "score": 1.0, + "content": "in Section 2.1, the discrepancy between the source and target domains makes pseudo-labels even", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 329, + 507, + 344 + ], + "spans": [ + { + "bbox": [ + 104, + 329, + 507, + 344 + ], + "score": 1.0, + "content": "more unreliable, and the performance of commonly used selection strategies is also unsatisfactory.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 341, + 506, + 354 + ], + "spans": [ + { + "bbox": [ + 106, + 341, + 506, + 354 + ], + "score": 1.0, + "content": "Another drawback is the expensive tweaking in order to find the optimal confidence threshold for", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 353, + 504, + 364 + ], + "spans": [ + { + "bbox": [ + 106, + 353, + 504, + 364 + ], + "score": 1.0, + "content": "new tasks. To better apply self-training to domain adaptation, we expect that the model can gradually", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 362, + 443, + 377 + ], + "spans": [ + { + "bbox": [ + 104, + 362, + 443, + 377 + ], + "score": 1.0, + "content": "refine the pseudo-labels by itself without the cumbersome selection or thresholding.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 17.5, + "bbox_fs": [ + 104, + 263, + 507, + 377 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 379, + 505, + 456 + ], + "lines": [ + { + "bbox": [ + 105, + 378, + 506, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 506, + 393 + ], + "score": 1.0, + "content": "Reverse Step. We design a complementary step with the following insights to improve self-training.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 391, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 391, + 505, + 402 + ], + "score": 1.0, + "content": "Intuitively, the labels on the source domain contain both useful information that can transfer to the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 401, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 505, + 413 + ], + "score": 1.0, + "content": "target domain and harmful information that can make pseudo-labels incorrect. Similarly, reliable", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 412, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 104, + 412, + 506, + 424 + ], + "score": 1.0, + "content": "pseudo-labels on the target domain can transfer to the source domain in turn, while models trained", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 423, + 506, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 506, + 436 + ], + "score": 1.0, + "content": "with incorrect pseudo-labels on the target domain cannot transfer to the source domain. In this sense,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 434, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 506, + 446 + ], + "score": 1.0, + "content": "if we explicitly train the model to make target pseudo-labels informative of the source domain, we", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 444, + 495, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 495, + 457 + ], + "score": 1.0, + "content": "can gradually make the pseudo-labels more accurate and learn to generalize to the target domain.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26, + "bbox_fs": [ + 104, + 378, + 506, + 457 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 460, + 503, + 486 + ], + "lines": [ + { + "bbox": [ + 106, + 460, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 460, + 250, + 474 + ], + "score": 1.0, + "content": "Specifically, with the pseudo-labels", + "type": "text" + }, + { + "bbox": [ + 250, + 461, + 259, + 473 + ], + "score": 0.87, + "content": "y ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 460, + 395, + 474 + ], + "score": 1.0, + "content": "generated by the source classifier", + "type": "text" + }, + { + "bbox": [ + 396, + 462, + 406, + 472 + ], + "score": 0.88, + "content": "\\theta _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 460, + 506, + 474 + ], + "score": 1.0, + "content": "at hand as in equation 3,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 472, + 502, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 192, + 488 + ], + "score": 1.0, + "content": "we train a target head", + "type": "text" + }, + { + "bbox": [ + 192, + 472, + 215, + 486 + ], + "score": 0.93, + "content": "\\hat { \\theta } _ { t } ( \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 473, + 326, + 488 + ], + "score": 1.0, + "content": "on top of the representation", + "type": "text" + }, + { + "bbox": [ + 327, + 475, + 334, + 486 + ], + "score": 0.86, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 473, + 494, + 488 + ], + "score": 1.0, + "content": "with pseudo-labels on the target domain", + "type": "text" + }, + { + "bbox": [ + 494, + 473, + 502, + 486 + ], + "score": 0.88, + "content": "\\widehat { Q }", + "type": "inline_equation" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 460, + 506, + 488 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 229, + 491, + 382, + 512 + ], + "lines": [ + { + "bbox": [ + 229, + 491, + 382, + 512 + ], + "spans": [ + { + "bbox": [ + 229, + 491, + 382, + 512 + ], + "score": 0.94, + "content": "\\hat { \\theta } _ { t } ( \\phi ) = \\underset { \\theta } { \\arg \\operatorname* { m i n } } \\mathbb { E } _ { \\boldsymbol { x } \\sim \\hat { \\boldsymbol { Q } } } \\ell ( f _ { \\theta , \\phi } ( \\boldsymbol { x } ) , y ^ { \\prime } ) .", + "type": "interline_equation", + "image_path": "03699fae3f7b59b86374fb91a0f3d780b856c7a8778a428e47452fb369f5cccb.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 229, + 491, + 382, + 512 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 516, + 505, + 563 + ], + "lines": [ + { + "bbox": [ + 106, + 516, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 506, + 528 + ], + "score": 1.0, + "content": "We wish to make the target pseudo-labels informative of the source domain and gradually refine them.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 527, + 505, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 308, + 539 + ], + "score": 1.0, + "content": "To this end, we update the shared feature extractor", + "type": "text" + }, + { + "bbox": [ + 309, + 528, + 316, + 539 + ], + "score": 0.86, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 527, + 505, + 539 + ], + "score": 1.0, + "content": "to predict accurately on the source domain and", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 538, + 505, + 553 + ], + "spans": [ + { + "bbox": [ + 104, + 539, + 245, + 553 + ], + "score": 1.0, + "content": "jointly enforce the target classifier", + "type": "text" + }, + { + "bbox": [ + 245, + 538, + 268, + 552 + ], + "score": 0.92, + "content": "\\hat { \\theta } _ { t } ( \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 539, + 505, + 553 + ], + "score": 1.0, + "content": "to perform well on the source domain. This naturally leads", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 550, + 268, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 268, + 565 + ], + "score": 1.0, + "content": "to the objective of Cycle Self-Training:", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34.5, + "bbox_fs": [ + 104, + 516, + 506, + 565 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 196, + 567, + 414, + 588 + ], + "lines": [ + { + "bbox": [ + 196, + 567, + 414, + 588 + ], + "spans": [ + { + "bbox": [ + 196, + 567, + 414, + 588 + ], + "score": 0.91, + "content": "\\operatorname* { m i n i m i z e } _ { \\theta _ { s } , \\phi } L _ { \\mathrm { C y c l e } } ( \\theta _ { s } , \\phi ) : = L _ { \\hat { P } } ( \\theta _ { s } , \\phi ) + L _ { \\hat { P } } ( \\hat { \\theta } _ { t } ( \\phi ) , \\phi ) .", + "type": "interline_equation", + "image_path": "ed81524779eb8a44184f8a5fa701e5693bc66a771d5cf2175c8b352bbc8f7bc8.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 196, + 567, + 414, + 588 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 590, + 506, + 728 + ], + "lines": [ + { + "bbox": [ + 106, + 590, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 106, + 591, + 405, + 604 + ], + "score": 1.0, + "content": "Bi-level Optimization. The objective in equation 5 relies on the solution", + "type": "text" + }, + { + "bbox": [ + 405, + 590, + 428, + 603 + ], + "score": 0.92, + "content": "\\hat { \\theta } _ { t } ( \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 591, + 505, + 604 + ], + "score": 1.0, + "content": "to the objective in", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 602, + 506, + 615 + ], + "spans": [ + { + "bbox": [ + 106, + 602, + 506, + 615 + ], + "score": 1.0, + "content": "equation 4. Thus, CST formulates a bi-level optimization problem. In the inner loop we generate", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 612, + 506, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 506, + 626 + ], + "score": 1.0, + "content": "target pseudo-labels with the source classifier (equation 3), and train a target classifier with target", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 623, + 506, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 436, + 637 + ], + "score": 1.0, + "content": "pseudo-labels (equation 4). After each inner loop, we update the feature extractor", + "type": "text" + }, + { + "bbox": [ + 437, + 624, + 444, + 636 + ], + "score": 0.86, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 623, + 506, + 637 + ], + "score": 1.0, + "content": "for one step in", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 635, + 506, + 647 + ], + "spans": [ + { + "bbox": [ + 106, + 635, + 506, + 647 + ], + "score": 1.0, + "content": "the outer loop (equation 5), and start a new inner loop again. However, since the inner loop of the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 646, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 646, + 381, + 658 + ], + "score": 1.0, + "content": "optimization in equation 4 only involves the light-weight linear head", + "type": "text" + }, + { + "bbox": [ + 381, + 646, + 390, + 657 + ], + "score": 0.87, + "content": "\\theta _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 646, + 506, + 658 + ], + "score": 1.0, + "content": ", we propose to calculate the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 657, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 180, + 671 + ], + "score": 1.0, + "content": "analytical form of", + "type": "text" + }, + { + "bbox": [ + 180, + 657, + 203, + 671 + ], + "score": 0.92, + "content": "\\hat { \\theta } _ { t } ( \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 658, + 410, + 671 + ], + "score": 1.0, + "content": "and directly back-propagate to the feature extractor", + "type": "text" + }, + { + "bbox": [ + 410, + 659, + 417, + 670 + ], + "score": 0.85, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 658, + 505, + 671 + ], + "score": 1.0, + "content": "instead of calculating", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 668, + 506, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 506, + 682 + ], + "score": 1.0, + "content": "the second-order derivatives as in MAML [18]. The resulting framework is as fast as training two", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 682, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 277, + 694 + ], + "score": 1.0, + "content": "heads jointly. Also note that the solution", + "type": "text" + }, + { + "bbox": [ + 277, + 682, + 299, + 694 + ], + "score": 0.93, + "content": "\\hat { \\theta } _ { t } ( \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 682, + 339, + 694 + ], + "score": 1.0, + "content": "relies on", + "type": "text" + }, + { + "bbox": [ + 340, + 683, + 349, + 693 + ], + "score": 0.86, + "content": "\\theta _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 682, + 428, + 694 + ], + "score": 1.0, + "content": "implicitly through", + "type": "text" + }, + { + "bbox": [ + 428, + 682, + 437, + 693 + ], + "score": 0.85, + "content": "y ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 682, + 505, + 694 + ], + "score": 1.0, + "content": ". However, both", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 693, + 506, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 693, + 420, + 705 + ], + "score": 1.0, + "content": "standard self-training and our implementation use label sharpening, making", + "type": "text" + }, + { + "bbox": [ + 420, + 694, + 429, + 705 + ], + "score": 0.86, + "content": "y ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 693, + 506, + 705 + ], + "score": 1.0, + "content": "not differentiable.", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 704, + 506, + 719 + ], + "spans": [ + { + "bbox": [ + 105, + 704, + 383, + 719 + ], + "score": 1.0, + "content": "Thus we follow vanilla self-training and do not consider the gradient of", + "type": "text" + }, + { + "bbox": [ + 384, + 705, + 406, + 718 + ], + "score": 0.93, + "content": "\\hat { \\theta } _ { t } ( \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 704, + 429, + 719 + ], + "score": 1.0, + "content": "w.r.t.", + "type": "text" + }, + { + "bbox": [ + 429, + 705, + 438, + 717 + ], + "score": 0.87, + "content": "y ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 704, + 506, + 719 + ], + "score": 1.0, + "content": "in the outer loop", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 716, + 506, + 729 + ], + "spans": [ + { + "bbox": [ + 105, + 716, + 506, + 729 + ], + "score": 1.0, + "content": "optimization. We defer the derivation and implementation of bi-level optimization to Appendix B.2.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 590, + 506, + 729 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 72, + 256, + 84 + ], + "lines": [ + { + "bbox": [ + 105, + 70, + 257, + 87 + ], + "spans": [ + { + "bbox": [ + 105, + 70, + 257, + 87 + ], + "score": 1.0, + "content": "3.2 Tsallis Entropy Minimization", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 87, + 505, + 131 + ], + "lines": [ + { + "bbox": [ + 106, + 87, + 505, + 100 + ], + "spans": [ + { + "bbox": [ + 106, + 87, + 505, + 100 + ], + "score": 1.0, + "content": "Gibbs entropy is widely used by existing semi-supervised learning methods to regularize the model", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 99, + 505, + 110 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 505, + 110 + ], + "score": 1.0, + "content": "output and minimize the uncertainty of predictions on unlabeled data [24]. In this work, we generalize", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 109, + 505, + 122 + ], + "spans": [ + { + "bbox": [ + 105, + 109, + 505, + 122 + ], + "score": 1.0, + "content": "Gibbs entropy to Tsallis entropy [62] in information theory. Suppose the softmax output of a model", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 118, + 311, + 133 + ], + "spans": [ + { + "bbox": [ + 104, + 118, + 115, + 133 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 116, + 120, + 149, + 132 + ], + "score": 0.92, + "content": "\\boldsymbol { y } \\in \\mathbb { R } ^ { K }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 118, + 187, + 133 + ], + "score": 1.0, + "content": ", then the", + "type": "text" + }, + { + "bbox": [ + 187, + 122, + 195, + 130 + ], + "score": 0.79, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 118, + 311, + 133 + ], + "score": 1.0, + "content": "-Tsallis entropy is defined as", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "interline_equation", + "bbox": [ + 240, + 129, + 370, + 154 + ], + "lines": [ + { + "bbox": [ + 240, + 129, + 370, + 154 + ], + "spans": [ + { + "bbox": [ + 240, + 129, + 370, + 154 + ], + "score": 0.94, + "content": "S _ { \\alpha } ( y ) = \\frac { 1 } { \\alpha - 1 } \\left( 1 - \\sum y _ { [ i ] } ^ { \\alpha } \\right) ,", + "type": "interline_equation", + "image_path": "b95e1c346e23f4b85a1a6f60a6af5ce0f86164604ee0f7976ebba75830a25b7b.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 240, + 129, + 370, + 154 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 156, + 506, + 182 + ], + "lines": [ + { + "bbox": [ + 105, + 155, + 506, + 171 + ], + "spans": [ + { + "bbox": [ + 105, + 155, + 134, + 171 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 157, + 163, + 167 + ], + "score": 0.9, + "content": "\\alpha > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 155, + 299, + 171 + ], + "score": 1.0, + "content": "is the entropic-index. Note that", + "type": "text" + }, + { + "bbox": [ + 299, + 156, + 443, + 170 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\operatorname* { l i m } _ { \\alpha \\to 1 } S _ { \\alpha } ( y ) = \\sum _ { i } - y _ { [ i ] } \\mathrm { l o g } ( y _ { [ i ] } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 155, + 506, + 171 + ], + "score": 1.0, + "content": "which exactly", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 165, + 462, + 186 + ], + "spans": [ + { + "bbox": [ + 104, + 165, + 245, + 186 + ], + "score": 1.0, + "content": "recovers the Gibbs entropy. When", + "type": "text" + }, + { + "bbox": [ + 245, + 169, + 271, + 180 + ], + "score": 0.86, + "content": "\\alpha = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 165, + 274, + 186 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 275, + 169, + 300, + 181 + ], + "score": 0.89, + "content": "S _ { \\alpha } ( y )", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 165, + 411, + 186 + ], + "score": 1.0, + "content": "becomes the Gini impurity", + "type": "text" + }, + { + "bbox": [ + 411, + 169, + 457, + 184 + ], + "score": 0.91, + "content": "1 - \\textstyle \\sum _ { i } y _ { [ i ] } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 165, + 462, + 186 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 106, + 187, + 505, + 199 + ], + "lines": [ + { + "bbox": [ + 106, + 186, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 505, + 200 + ], + "score": 1.0, + "content": "We propose to control the uncertainty of target pseudo-labels based on Tsallis entropy minimization:", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 225, + 201, + 385, + 218 + ], + "lines": [ + { + "bbox": [ + 225, + 201, + 385, + 218 + ], + "spans": [ + { + "bbox": [ + 225, + 201, + 385, + 218 + ], + "score": 0.91, + "content": "L _ { \\widehat { Q } , \\mathrm { T s a l l i s } , \\alpha } ( \\theta , \\phi ) : = \\mathbb { E } _ { \\boldsymbol { x } \\sim \\widehat { Q } } S _ { \\alpha } ( f _ { \\theta , \\phi } ( \\boldsymbol { x } ) ) .", + "type": "interline_equation", + "image_path": "9217f3dc045a29db80f7156064abccd6aedaffed583742fa94bbd6774795f66a.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 225, + 201, + 385, + 218 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 225, + 325, + 324 + ], + "lines": [ + { + "bbox": [ + 106, + 225, + 327, + 237 + ], + "spans": [ + { + "bbox": [ + 106, + 225, + 327, + 237 + ], + "score": 1.0, + "content": "Figure 3 shows the change of Tsallis entropy with differ-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 236, + 326, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 187, + 249 + ], + "score": 1.0, + "content": "ent entropic-indices", + "type": "text" + }, + { + "bbox": [ + 187, + 238, + 195, + 246 + ], + "score": 0.78, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 236, + 326, + 249 + ], + "score": 1.0, + "content": "for binary problems. Intuitively,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 247, + 326, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 140, + 259 + ], + "score": 1.0, + "content": "smaller", + "type": "text" + }, + { + "bbox": [ + 140, + 249, + 147, + 257 + ], + "score": 0.74, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 247, + 326, + 259 + ], + "score": 1.0, + "content": "exerts more penalization on uncertain pre-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 258, + 326, + 270 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 185, + 270 + ], + "score": 1.0, + "content": "dictions and larger", + "type": "text" + }, + { + "bbox": [ + 186, + 260, + 194, + 268 + ], + "score": 0.77, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 258, + 284, + 270 + ], + "score": 1.0, + "content": "allows several scores", + "type": "text" + }, + { + "bbox": [ + 284, + 259, + 293, + 270 + ], + "score": 0.84, + "content": "y _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 258, + 326, + 270 + ], + "score": 1.0, + "content": "’s to be", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 268, + 326, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 326, + 281 + ], + "score": 1.0, + "content": "similar. This is critical in self-training since an overly", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 280, + 326, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 129, + 291 + ], + "score": 1.0, + "content": "small", + "type": "text" + }, + { + "bbox": [ + 130, + 281, + 137, + 290 + ], + "score": 0.75, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 280, + 326, + 291 + ], + "score": 1.0, + "content": "(as in Gibbs entropy) will make the incorrect di-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 290, + 325, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 325, + 302 + ], + "score": 1.0, + "content": "mension of pseudo-labels close to 1 and have no chance", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 302, + 325, + 314 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 325, + 314 + ], + "score": 1.0, + "content": "to be corrected throughout training. In Section 5.4, we", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 312, + 289, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 289, + 325 + ], + "score": 1.0, + "content": "further verify this property with experiments.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 14 + }, + { + "type": "image", + "bbox": [ + 334, + 227, + 500, + 308 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 334, + 227, + 500, + 308 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 334, + 227, + 500, + 308 + ], + "spans": [ + { + "bbox": [ + 334, + 227, + 500, + 308 + ], + "score": 0.965, + "type": "image", + "image_path": "1ee6c84356d7e7a52e7c51e6a8539defd26596a9b539b8488d28b38233853582.jpg" + } + ] + } + ], + "index": 21.5, + "virtual_lines": [ + { + "bbox": [ + 334, + 227, + 500, + 240.5 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 334, + 240.5, + 500, + 254.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 334, + 254.0, + 500, + 267.5 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 334, + 267.5, + 500, + 281.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 334, + 281.0, + 500, + 294.5 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 334, + 294.5, + 500, + 308.0 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 334, + 310, + 503, + 321 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 332, + 308, + 502, + 322 + ], + "spans": [ + { + "bbox": [ + 332, + 308, + 495, + 322 + ], + "score": 1.0, + "content": "Figure 3: Tsallis entropy vs. entropic-index", + "type": "text" + }, + { + "bbox": [ + 495, + 312, + 502, + 319 + ], + "score": 0.56, + "content": "\\alpha", + "type": "inline_equation" + } + ], + "index": 25 + } + ], + "index": 25 + } + ], + "index": 23.25 + }, + { + "type": "text", + "bbox": [ + 106, + 329, + 506, + 451 + ], + "lines": [ + { + "bbox": [ + 105, + 329, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 505, + 342 + ], + "score": 1.0, + "content": "An important improvement of the Tsallis entropy over Gibbs entropy is that it can choose the suitable", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 338, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 104, + 338, + 505, + 353 + ], + "score": 1.0, + "content": "measure of uncertainty for different systems to avoid over-confidence caused by overly penalizing", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 350, + 505, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 350, + 367, + 364 + ], + "score": 1.0, + "content": "the uncertain pseudo-labels. To automatically find the suitable", + "type": "text" + }, + { + "bbox": [ + 367, + 353, + 375, + 361 + ], + "score": 0.72, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 350, + 505, + 364 + ], + "score": 1.0, + "content": ", we adopt a similar strategy as", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 361, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 384, + 374 + ], + "score": 1.0, + "content": "Section 3.1. The intuition is that if we use the suitable entropic-index", + "type": "text" + }, + { + "bbox": [ + 384, + 364, + 392, + 371 + ], + "score": 0.77, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 361, + 505, + 374 + ], + "score": 1.0, + "content": "to train the source classifier", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 372, + 506, + 386 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 124, + 385 + ], + "score": 0.9, + "content": "\\theta _ { s , \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 124, + 372, + 273, + 386 + ], + "score": 1.0, + "content": ", the target pseudo-labels generated by", + "type": "text" + }, + { + "bbox": [ + 273, + 373, + 291, + 385 + ], + "score": 0.92, + "content": "\\theta _ { s , \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 372, + 506, + 386 + ], + "score": 1.0, + "content": "will contain desirable knowledge of the source dataset,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 384, + 506, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 192, + 396 + ], + "score": 1.0, + "content": "i.e. a target classifier", + "type": "text" + }, + { + "bbox": [ + 192, + 384, + 209, + 396 + ], + "score": 0.92, + "content": "\\theta _ { t , \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 384, + 506, + 396 + ], + "score": 1.0, + "content": "trained with these pseudo-labels will perform well on the source domain.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 395, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 299, + 411 + ], + "score": 1.0, + "content": "Therefore, we semi-supervisedly train a classifier", + "type": "text" + }, + { + "bbox": [ + 299, + 395, + 316, + 408 + ], + "score": 0.92, + "content": "\\widehat { \\theta } _ { s , \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 395, + 435, + 411 + ], + "score": 1.0, + "content": "on the source domain with the", + "type": "text" + }, + { + "bbox": [ + 435, + 398, + 443, + 407 + ], + "score": 0.8, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 395, + 505, + 411 + ], + "score": 1.0, + "content": "-Tsallis entropy", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 408, + 507, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 162, + 427 + ], + "score": 1.0, + "content": "regularization", + "type": "text" + }, + { + "bbox": [ + 163, + 410, + 206, + 425 + ], + "score": 0.91, + "content": "L _ { \\widehat { Q } , \\mathrm { T s a l l i s } , \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 408, + 301, + 427 + ], + "score": 1.0, + "content": "on the target domain as:", + "type": "text" + }, + { + "bbox": [ + 302, + 409, + 480, + 424 + ], + "score": 0.91, + "content": "\\hat { \\theta } _ { s , \\alpha } = \\arg \\operatorname* { m i n } _ { \\theta } L _ { \\widehat { P } } ( \\theta , \\phi ) + L _ { \\widehat { Q } , \\mathrm { T s a l l i s } , \\alpha } ( \\theta , \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 408, + 507, + 427 + ], + "score": 1.0, + "content": ", from", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 424, + 506, + 438 + ], + "spans": [ + { + "bbox": [ + 106, + 425, + 384, + 438 + ], + "score": 1.0, + "content": "which we obtain the target pseudo-labels. Then we train another head", + "type": "text" + }, + { + "bbox": [ + 384, + 424, + 401, + 438 + ], + "score": 0.92, + "content": "\\widehat { \\theta } _ { t , \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 425, + 506, + 438 + ], + "score": 1.0, + "content": "with target pseudo-labels.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 437, + 406, + 451 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 196, + 451 + ], + "score": 1.0, + "content": "We automatically find", + "type": "text" + }, + { + "bbox": [ + 196, + 441, + 204, + 449 + ], + "score": 0.76, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 439, + 309, + 451 + ], + "score": 1.0, + "content": "by minimizing the loss of", + "type": "text" + }, + { + "bbox": [ + 309, + 437, + 326, + 451 + ], + "score": 0.92, + "content": "\\widehat { \\theta } _ { t , \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 439, + 406, + 451 + ], + "score": 1.0, + "content": "on the source data:", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 30.5 + }, + { + "type": "interline_equation", + "bbox": [ + 253, + 454, + 358, + 478 + ], + "lines": [ + { + "bbox": [ + 253, + 454, + 358, + 478 + ], + "spans": [ + { + "bbox": [ + 253, + 454, + 358, + 478 + ], + "score": 0.94, + "content": "\\hat { \\alpha } = \\underset { \\alpha \\in [ 1 , 2 ] } { \\arg \\operatorname* { m i n } } L _ { \\widehat { P } } ( \\widehat { \\theta } _ { t , \\alpha } , \\phi )", + "type": "interline_equation", + "image_path": "8049a6e65f36582e37ae51ea79dc307021193480cbdf85b180862acbd25d47dc.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 253, + 454, + 358, + 478 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 480, + 504, + 504 + ], + "lines": [ + { + "bbox": [ + 106, + 480, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 363, + 493 + ], + "score": 1.0, + "content": "To solve equation 10, we discretize the feasible region [1, 2] of", + "type": "text" + }, + { + "bbox": [ + 364, + 483, + 372, + 491 + ], + "score": 0.78, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 480, + 505, + 493 + ], + "score": 1.0, + "content": "and use discrete optimization to", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 493, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 273, + 504 + ], + "score": 1.0, + "content": "lower computational cost. We also update", + "type": "text" + }, + { + "bbox": [ + 273, + 495, + 281, + 502 + ], + "score": 0.79, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 493, + 505, + 504 + ], + "score": 1.0, + "content": "at the start of each epoch, since we found more frequent", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + }, + { + "type": "title", + "bbox": [ + 107, + 522, + 268, + 533 + ], + "lines": [ + { + "bbox": [ + 105, + 519, + 270, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 270, + 537 + ], + "score": 1.0, + "content": "Algorithm 1 Cycle Self-Training (CST)", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 109, + 536, + 504, + 672 + ], + "lines": [ + { + "bbox": [ + 110, + 536, + 307, + 550 + ], + "spans": [ + { + "bbox": [ + 110, + 536, + 212, + 550 + ], + "score": 1.0, + "content": "1: Input: source dataset", + "type": "text" + }, + { + "bbox": [ + 212, + 536, + 222, + 548 + ], + "score": 0.82, + "content": "\\widehat { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 536, + 294, + 550 + ], + "score": 1.0, + "content": "and target dataset", + "type": "text" + }, + { + "bbox": [ + 295, + 536, + 304, + 550 + ], + "score": 0.82, + "content": "\\widehat { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 536, + 307, + 550 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 111, + 549, + 251, + 560 + ], + "spans": [ + { + "bbox": [ + 111, + 550, + 121, + 560 + ], + "score": 1.0, + "content": "2:", + "type": "text" + }, + { + "bbox": [ + 122, + 549, + 163, + 560 + ], + "score": 1.0, + "content": "for epoch", + "type": "text" + }, + { + "bbox": [ + 164, + 550, + 182, + 559 + ], + "score": 0.85, + "content": "= 0", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 549, + 251, + 560 + ], + "score": 1.0, + "content": "to MaxEpoch do", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 111, + 560, + 333, + 572 + ], + "spans": [ + { + "bbox": [ + 111, + 560, + 121, + 571 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 133, + 560, + 160, + 572 + ], + "score": 1.0, + "content": "Select", + "type": "text" + }, + { + "bbox": [ + 160, + 560, + 168, + 570 + ], + "score": 0.83, + "content": "\\hat { \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 560, + 333, + 572 + ], + "score": 1.0, + "content": "as equation 10 at the start of each epoch.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 110, + 570, + 236, + 582 + ], + "spans": [ + { + "bbox": [ + 110, + 571, + 121, + 582 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 132, + 570, + 148, + 582 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 148, + 571, + 172, + 581 + ], + "score": 0.9, + "content": "t = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 570, + 236, + 582 + ], + "score": 1.0, + "content": "to MaxIter do", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 110, + 581, + 205, + 594 + ], + "spans": [ + { + "bbox": [ + 110, + 582, + 121, + 594 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 142, + 581, + 205, + 594 + ], + "score": 1.0, + "content": "Forward Step", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 110, + 591, + 499, + 606 + ], + "spans": [ + { + "bbox": [ + 110, + 593, + 121, + 604 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 142, + 591, + 343, + 606 + ], + "score": 1.0, + "content": "Generate pseudo-labels on the target domain with", + "type": "text" + }, + { + "bbox": [ + 344, + 593, + 351, + 604 + ], + "score": 0.85, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 591, + 369, + 606 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 369, + 593, + 379, + 604 + ], + "score": 0.71, + "content": "\\theta _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 592, + 495, + 606 + ], + "score": 0.84, + "content": "{ \\mathrm { ~ \\mu ~ } } _ { 3 } \\colon y ^ { \\prime } = \\arg \\operatorname* { m a x } _ { i } \\{ f _ { \\theta _ { s } , \\phi } ( x ) _ { [ i ] } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 496, + 591, + 499, + 606 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 110, + 602, + 201, + 617 + ], + "spans": [ + { + "bbox": [ + 110, + 604, + 121, + 615 + ], + "score": 1.0, + "content": "7:", + "type": "text" + }, + { + "bbox": [ + 142, + 602, + 201, + 617 + ], + "score": 1.0, + "content": "Reverse Step", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 110, + 614, + 464, + 628 + ], + "spans": [ + { + "bbox": [ + 110, + 615, + 122, + 628 + ], + "score": 1.0, + "content": "8:", + "type": "text" + }, + { + "bbox": [ + 142, + 615, + 220, + 628 + ], + "score": 1.0, + "content": "Train a target head", + "type": "text" + }, + { + "bbox": [ + 220, + 614, + 243, + 628 + ], + "score": 0.93, + "content": "\\hat { \\theta } _ { t } ( \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 615, + 347, + 628 + ], + "score": 1.0, + "content": "with target pseudo-labels", + "type": "text" + }, + { + "bbox": [ + 347, + 616, + 356, + 628 + ], + "score": 0.88, + "content": "y ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 615, + 452, + 628 + ], + "score": 1.0, + "content": "on the feature extractor", + "type": "text" + }, + { + "bbox": [ + 453, + 617, + 460, + 628 + ], + "score": 0.83, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 615, + 464, + 628 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 247, + 629, + 398, + 649 + ], + "spans": [ + { + "bbox": [ + 247, + 629, + 398, + 649 + ], + "score": 0.91, + "content": "\\hat { \\theta } _ { t } ( \\phi ) = \\underset { \\theta } { \\arg \\operatorname* { m i n } } \\mathbb { E } _ { x \\sim \\hat { Q } } \\ell ( f _ { \\theta , \\phi } ( x ) , y ^ { \\prime } ) .", + "type": "inline_equation", + "image_path": "106aa58274092a3458dc458ba58eebfdcde592dd31e1a2a8cda246a73b646193.jpg" + } + ], + "index": 48 + }, + { + "bbox": [ + 110, + 646, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 110, + 648, + 121, + 660 + ], + "score": 1.0, + "content": "9:", + "type": "text" + }, + { + "bbox": [ + 143, + 647, + 259, + 661 + ], + "score": 1.0, + "content": "Update the feature extractor", + "type": "text" + }, + { + "bbox": [ + 260, + 649, + 267, + 659 + ], + "score": 0.85, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 647, + 351, + 661 + ], + "score": 1.0, + "content": "and the source head", + "type": "text" + }, + { + "bbox": [ + 351, + 649, + 361, + 659 + ], + "score": 0.84, + "content": "\\theta _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 647, + 397, + 661 + ], + "score": 1.0, + "content": "to make", + "type": "text" + }, + { + "bbox": [ + 398, + 646, + 420, + 660 + ], + "score": 0.93, + "content": "\\hat { \\theta } _ { t } ( \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 647, + 505, + 661 + ], + "score": 1.0, + "content": "perform well on the", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 142, + 659, + 430, + 671 + ], + "spans": [ + { + "bbox": [ + 142, + 659, + 273, + 671 + ], + "score": 1.0, + "content": "source dataset and minimize the", + "type": "text" + }, + { + "bbox": [ + 274, + 660, + 281, + 669 + ], + "score": 0.85, + "content": "\\hat { \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 659, + 430, + 671 + ], + "score": 1.0, + "content": "-Tsallis entropy on the target dataset:", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 45 + }, + { + "type": "interline_equation", + "bbox": [ + 195, + 671, + 452, + 706 + ], + "lines": [ + { + "bbox": [ + 195, + 671, + 452, + 706 + ], + "spans": [ + { + "bbox": [ + 195, + 671, + 452, + 706 + ], + "score": 0.9, + "content": "\\begin{array} { r l } & { \\phi \\phi - \\eta \\nabla _ { \\phi } [ L _ { \\widehat { P } } ( \\theta _ { s } , \\phi ) + L _ { \\widehat { P } } ( \\widehat { \\theta } _ { t } ( \\phi ) , \\phi ) + L _ { \\widehat { Q } , \\mathrm { T s a l l i s } , \\widehat { \\alpha } } ( \\theta _ { s } , \\phi ) ] . } \\\\ & { \\qquad \\theta _ { s } \\theta _ { s } - \\eta \\nabla _ { \\theta _ { s } } [ L _ { \\widehat { P } } ( \\theta _ { s } , \\phi ) + L _ { \\widehat { Q } , \\mathrm { T s a l l i s } , \\widehat { \\alpha } } ( \\theta _ { s } , \\phi ) ] . } \\end{array}", + "type": "interline_equation", + "image_path": "6d875ecdfd62ea38ad6b27593a76ee5f7927e127b3756c92fd9a5c61070856d5.jpg" + } + ] + } + ], + "index": 52, + "virtual_lines": [ + { + "bbox": [ + 195, + 671, + 452, + 682.6666666666666 + ], + "spans": [], + "index": 51 + }, + { + "bbox": [ + 195, + 682.6666666666666, + 452, + 694.3333333333333 + ], + "spans": [], + "index": 52 + }, + { + "bbox": [ + 195, + 694.3333333333333, + 452, + 705.9999999999999 + ], + "spans": [], + "index": 54 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 695, + 166, + 717 + ], + "lines": [ + { + "bbox": [ + 106, + 695, + 168, + 707 + ], + "spans": [ + { + "bbox": [ + 106, + 695, + 123, + 707 + ], + "score": 1.0, + "content": "10:", + "type": "text" + }, + { + "bbox": [ + 131, + 695, + 168, + 707 + ], + "score": 1.0, + "content": "end for", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 106, + 705, + 158, + 718 + ], + "spans": [ + { + "bbox": [ + 106, + 705, + 158, + 718 + ], + "score": 1.0, + "content": "11: end for", + "type": "text" + } + ], + "index": 55 + } + ], + "index": 54.0 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 72, + 256, + 84 + ], + "lines": [ + { + "bbox": [ + 105, + 70, + 257, + 87 + ], + "spans": [ + { + "bbox": [ + 105, + 70, + 257, + 87 + ], + "score": 1.0, + "content": "3.2 Tsallis Entropy Minimization", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 87, + 505, + 131 + ], + "lines": [ + { + "bbox": [ + 106, + 87, + 505, + 100 + ], + "spans": [ + { + "bbox": [ + 106, + 87, + 505, + 100 + ], + "score": 1.0, + "content": "Gibbs entropy is widely used by existing semi-supervised learning methods to regularize the model", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 99, + 505, + 110 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 505, + 110 + ], + "score": 1.0, + "content": "output and minimize the uncertainty of predictions on unlabeled data [24]. In this work, we generalize", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 109, + 505, + 122 + ], + "spans": [ + { + "bbox": [ + 105, + 109, + 505, + 122 + ], + "score": 1.0, + "content": "Gibbs entropy to Tsallis entropy [62] in information theory. Suppose the softmax output of a model", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 118, + 311, + 133 + ], + "spans": [ + { + "bbox": [ + 104, + 118, + 115, + 133 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 116, + 120, + 149, + 132 + ], + "score": 0.92, + "content": "\\boldsymbol { y } \\in \\mathbb { R } ^ { K }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 118, + 187, + 133 + ], + "score": 1.0, + "content": ", then the", + "type": "text" + }, + { + "bbox": [ + 187, + 122, + 195, + 130 + ], + "score": 0.79, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 118, + 311, + 133 + ], + "score": 1.0, + "content": "-Tsallis entropy is defined as", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5, + "bbox_fs": [ + 104, + 87, + 505, + 133 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 240, + 129, + 370, + 154 + ], + "lines": [ + { + "bbox": [ + 240, + 129, + 370, + 154 + ], + "spans": [ + { + "bbox": [ + 240, + 129, + 370, + 154 + ], + "score": 0.94, + "content": "S _ { \\alpha } ( y ) = \\frac { 1 } { \\alpha - 1 } \\left( 1 - \\sum y _ { [ i ] } ^ { \\alpha } \\right) ,", + "type": "interline_equation", + "image_path": "b95e1c346e23f4b85a1a6f60a6af5ce0f86164604ee0f7976ebba75830a25b7b.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 240, + 129, + 370, + 154 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 156, + 506, + 182 + ], + "lines": [ + { + "bbox": [ + 105, + 155, + 506, + 171 + ], + "spans": [ + { + "bbox": [ + 105, + 155, + 134, + 171 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 157, + 163, + 167 + ], + "score": 0.9, + "content": "\\alpha > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 155, + 299, + 171 + ], + "score": 1.0, + "content": "is the entropic-index. Note that", + "type": "text" + }, + { + "bbox": [ + 299, + 156, + 443, + 170 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\operatorname* { l i m } _ { \\alpha \\to 1 } S _ { \\alpha } ( y ) = \\sum _ { i } - y _ { [ i ] } \\mathrm { l o g } ( y _ { [ i ] } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 155, + 506, + 171 + ], + "score": 1.0, + "content": "which exactly", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 165, + 462, + 186 + ], + "spans": [ + { + "bbox": [ + 104, + 165, + 245, + 186 + ], + "score": 1.0, + "content": "recovers the Gibbs entropy. When", + "type": "text" + }, + { + "bbox": [ + 245, + 169, + 271, + 180 + ], + "score": 0.86, + "content": "\\alpha = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 165, + 274, + 186 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 275, + 169, + 300, + 181 + ], + "score": 0.89, + "content": "S _ { \\alpha } ( y )", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 165, + 411, + 186 + ], + "score": 1.0, + "content": "becomes the Gini impurity", + "type": "text" + }, + { + "bbox": [ + 411, + 169, + 457, + 184 + ], + "score": 0.91, + "content": "1 - \\textstyle \\sum _ { i } y _ { [ i ] } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 165, + 462, + 186 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 104, + 155, + 506, + 186 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 187, + 505, + 199 + ], + "lines": [ + { + "bbox": [ + 106, + 186, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 505, + 200 + ], + "score": 1.0, + "content": "We propose to control the uncertainty of target pseudo-labels based on Tsallis entropy minimization:", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 106, + 186, + 505, + 200 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 225, + 201, + 385, + 218 + ], + "lines": [ + { + "bbox": [ + 225, + 201, + 385, + 218 + ], + "spans": [ + { + "bbox": [ + 225, + 201, + 385, + 218 + ], + "score": 0.91, + "content": "L _ { \\widehat { Q } , \\mathrm { T s a l l i s } , \\alpha } ( \\theta , \\phi ) : = \\mathbb { E } _ { \\boldsymbol { x } \\sim \\widehat { Q } } S _ { \\alpha } ( f _ { \\theta , \\phi } ( \\boldsymbol { x } ) ) .", + "type": "interline_equation", + "image_path": "9217f3dc045a29db80f7156064abccd6aedaffed583742fa94bbd6774795f66a.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 225, + 201, + 385, + 218 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 225, + 325, + 324 + ], + "lines": [ + { + "bbox": [ + 106, + 225, + 327, + 237 + ], + "spans": [ + { + "bbox": [ + 106, + 225, + 327, + 237 + ], + "score": 1.0, + "content": "Figure 3 shows the change of Tsallis entropy with differ-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 236, + 326, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 187, + 249 + ], + "score": 1.0, + "content": "ent entropic-indices", + "type": "text" + }, + { + "bbox": [ + 187, + 238, + 195, + 246 + ], + "score": 0.78, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 236, + 326, + 249 + ], + "score": 1.0, + "content": "for binary problems. Intuitively,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 247, + 326, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 140, + 259 + ], + "score": 1.0, + "content": "smaller", + "type": "text" + }, + { + "bbox": [ + 140, + 249, + 147, + 257 + ], + "score": 0.74, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 247, + 326, + 259 + ], + "score": 1.0, + "content": "exerts more penalization on uncertain pre-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 258, + 326, + 270 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 185, + 270 + ], + "score": 1.0, + "content": "dictions and larger", + "type": "text" + }, + { + "bbox": [ + 186, + 260, + 194, + 268 + ], + "score": 0.77, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 258, + 284, + 270 + ], + "score": 1.0, + "content": "allows several scores", + "type": "text" + }, + { + "bbox": [ + 284, + 259, + 293, + 270 + ], + "score": 0.84, + "content": "y _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 258, + 326, + 270 + ], + "score": 1.0, + "content": "’s to be", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 268, + 326, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 326, + 281 + ], + "score": 1.0, + "content": "similar. This is critical in self-training since an overly", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 280, + 326, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 129, + 291 + ], + "score": 1.0, + "content": "small", + "type": "text" + }, + { + "bbox": [ + 130, + 281, + 137, + 290 + ], + "score": 0.75, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 280, + 326, + 291 + ], + "score": 1.0, + "content": "(as in Gibbs entropy) will make the incorrect di-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 290, + 325, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 325, + 302 + ], + "score": 1.0, + "content": "mension of pseudo-labels close to 1 and have no chance", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 302, + 325, + 314 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 325, + 314 + ], + "score": 1.0, + "content": "to be corrected throughout training. In Section 5.4, we", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 312, + 289, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 289, + 325 + ], + "score": 1.0, + "content": "further verify this property with experiments.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 225, + 327, + 325 + ] + }, + { + "type": "image", + "bbox": [ + 334, + 227, + 500, + 308 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 334, + 227, + 500, + 308 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 334, + 227, + 500, + 308 + ], + "spans": [ + { + "bbox": [ + 334, + 227, + 500, + 308 + ], + "score": 0.965, + "type": "image", + "image_path": "1ee6c84356d7e7a52e7c51e6a8539defd26596a9b539b8488d28b38233853582.jpg" + } + ] + } + ], + "index": 21.5, + "virtual_lines": [ + { + "bbox": [ + 334, + 227, + 500, + 240.5 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 334, + 240.5, + 500, + 254.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 334, + 254.0, + 500, + 267.5 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 334, + 267.5, + 500, + 281.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 334, + 281.0, + 500, + 294.5 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 334, + 294.5, + 500, + 308.0 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 334, + 310, + 503, + 321 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 332, + 308, + 502, + 322 + ], + "spans": [ + { + "bbox": [ + 332, + 308, + 495, + 322 + ], + "score": 1.0, + "content": "Figure 3: Tsallis entropy vs. entropic-index", + "type": "text" + }, + { + "bbox": [ + 495, + 312, + 502, + 319 + ], + "score": 0.56, + "content": "\\alpha", + "type": "inline_equation" + } + ], + "index": 25 + } + ], + "index": 25 + } + ], + "index": 23.25 + }, + { + "type": "text", + "bbox": [ + 106, + 329, + 506, + 451 + ], + "lines": [ + { + "bbox": [ + 105, + 329, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 505, + 342 + ], + "score": 1.0, + "content": "An important improvement of the Tsallis entropy over Gibbs entropy is that it can choose the suitable", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 338, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 104, + 338, + 505, + 353 + ], + "score": 1.0, + "content": "measure of uncertainty for different systems to avoid over-confidence caused by overly penalizing", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 350, + 505, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 350, + 367, + 364 + ], + "score": 1.0, + "content": "the uncertain pseudo-labels. To automatically find the suitable", + "type": "text" + }, + { + "bbox": [ + 367, + 353, + 375, + 361 + ], + "score": 0.72, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 350, + 505, + 364 + ], + "score": 1.0, + "content": ", we adopt a similar strategy as", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 361, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 384, + 374 + ], + "score": 1.0, + "content": "Section 3.1. The intuition is that if we use the suitable entropic-index", + "type": "text" + }, + { + "bbox": [ + 384, + 364, + 392, + 371 + ], + "score": 0.77, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 361, + 505, + 374 + ], + "score": 1.0, + "content": "to train the source classifier", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 372, + 506, + 386 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 124, + 385 + ], + "score": 0.9, + "content": "\\theta _ { s , \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 124, + 372, + 273, + 386 + ], + "score": 1.0, + "content": ", the target pseudo-labels generated by", + "type": "text" + }, + { + "bbox": [ + 273, + 373, + 291, + 385 + ], + "score": 0.92, + "content": "\\theta _ { s , \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 372, + 506, + 386 + ], + "score": 1.0, + "content": "will contain desirable knowledge of the source dataset,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 384, + 506, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 192, + 396 + ], + "score": 1.0, + "content": "i.e. a target classifier", + "type": "text" + }, + { + "bbox": [ + 192, + 384, + 209, + 396 + ], + "score": 0.92, + "content": "\\theta _ { t , \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 384, + 506, + 396 + ], + "score": 1.0, + "content": "trained with these pseudo-labels will perform well on the source domain.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 395, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 299, + 411 + ], + "score": 1.0, + "content": "Therefore, we semi-supervisedly train a classifier", + "type": "text" + }, + { + "bbox": [ + 299, + 395, + 316, + 408 + ], + "score": 0.92, + "content": "\\widehat { \\theta } _ { s , \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 395, + 435, + 411 + ], + "score": 1.0, + "content": "on the source domain with the", + "type": "text" + }, + { + "bbox": [ + 435, + 398, + 443, + 407 + ], + "score": 0.8, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 395, + 505, + 411 + ], + "score": 1.0, + "content": "-Tsallis entropy", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 408, + 507, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 162, + 427 + ], + "score": 1.0, + "content": "regularization", + "type": "text" + }, + { + "bbox": [ + 163, + 410, + 206, + 425 + ], + "score": 0.91, + "content": "L _ { \\widehat { Q } , \\mathrm { T s a l l i s } , \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 408, + 301, + 427 + ], + "score": 1.0, + "content": "on the target domain as:", + "type": "text" + }, + { + "bbox": [ + 302, + 409, + 480, + 424 + ], + "score": 0.91, + "content": "\\hat { \\theta } _ { s , \\alpha } = \\arg \\operatorname* { m i n } _ { \\theta } L _ { \\widehat { P } } ( \\theta , \\phi ) + L _ { \\widehat { Q } , \\mathrm { T s a l l i s } , \\alpha } ( \\theta , \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 408, + 507, + 427 + ], + "score": 1.0, + "content": ", from", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 424, + 506, + 438 + ], + "spans": [ + { + "bbox": [ + 106, + 425, + 384, + 438 + ], + "score": 1.0, + "content": "which we obtain the target pseudo-labels. Then we train another head", + "type": "text" + }, + { + "bbox": [ + 384, + 424, + 401, + 438 + ], + "score": 0.92, + "content": "\\widehat { \\theta } _ { t , \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 425, + 506, + 438 + ], + "score": 1.0, + "content": "with target pseudo-labels.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 437, + 406, + 451 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 196, + 451 + ], + "score": 1.0, + "content": "We automatically find", + "type": "text" + }, + { + "bbox": [ + 196, + 441, + 204, + 449 + ], + "score": 0.76, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 439, + 309, + 451 + ], + "score": 1.0, + "content": "by minimizing the loss of", + "type": "text" + }, + { + "bbox": [ + 309, + 437, + 326, + 451 + ], + "score": 0.92, + "content": "\\widehat { \\theta } _ { t , \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 439, + 406, + 451 + ], + "score": 1.0, + "content": "on the source data:", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 30.5, + "bbox_fs": [ + 104, + 329, + 507, + 451 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 253, + 454, + 358, + 478 + ], + "lines": [ + { + "bbox": [ + 253, + 454, + 358, + 478 + ], + "spans": [ + { + "bbox": [ + 253, + 454, + 358, + 478 + ], + "score": 0.94, + "content": "\\hat { \\alpha } = \\underset { \\alpha \\in [ 1 , 2 ] } { \\arg \\operatorname* { m i n } } L _ { \\widehat { P } } ( \\widehat { \\theta } _ { t , \\alpha } , \\phi )", + "type": "interline_equation", + "image_path": "8049a6e65f36582e37ae51ea79dc307021193480cbdf85b180862acbd25d47dc.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 253, + 454, + 358, + 478 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 480, + 504, + 504 + ], + "lines": [ + { + "bbox": [ + 106, + 480, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 363, + 493 + ], + "score": 1.0, + "content": "To solve equation 10, we discretize the feasible region [1, 2] of", + "type": "text" + }, + { + "bbox": [ + 364, + 483, + 372, + 491 + ], + "score": 0.78, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 480, + 505, + 493 + ], + "score": 1.0, + "content": "and use discrete optimization to", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 493, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 273, + 504 + ], + "score": 1.0, + "content": "lower computational cost. We also update", + "type": "text" + }, + { + "bbox": [ + 273, + 495, + 281, + 502 + ], + "score": 0.79, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 493, + 505, + 504 + ], + "score": 1.0, + "content": "at the start of each epoch, since we found more frequent", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5, + "bbox_fs": [ + 106, + 480, + 505, + 504 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 522, + 268, + 533 + ], + "lines": [ + { + "bbox": [ + 105, + 519, + 270, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 270, + 537 + ], + "score": 1.0, + "content": "Algorithm 1 Cycle Self-Training (CST)", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "index", + "bbox": [ + 109, + 536, + 504, + 672 + ], + "lines": [ + { + "bbox": [ + 110, + 536, + 307, + 550 + ], + "spans": [ + { + "bbox": [ + 110, + 536, + 212, + 550 + ], + "score": 1.0, + "content": "1: Input: source dataset", + "type": "text" + }, + { + "bbox": [ + 212, + 536, + 222, + 548 + ], + "score": 0.82, + "content": "\\widehat { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 536, + 294, + 550 + ], + "score": 1.0, + "content": "and target dataset", + "type": "text" + }, + { + "bbox": [ + 295, + 536, + 304, + 550 + ], + "score": 0.82, + "content": "\\widehat { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 536, + 307, + 550 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 549, + 251, + 560 + ], + "spans": [ + { + "bbox": [ + 111, + 550, + 121, + 560 + ], + "score": 1.0, + "content": "2:", + "type": "text" + }, + { + "bbox": [ + 122, + 549, + 163, + 560 + ], + "score": 1.0, + "content": "for epoch", + "type": "text" + }, + { + "bbox": [ + 164, + 550, + 182, + 559 + ], + "score": 0.85, + "content": "= 0", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 549, + 251, + 560 + ], + "score": 1.0, + "content": "to MaxEpoch do", + "type": "text" + } + ], + "index": 41, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 560, + 333, + 572 + ], + "spans": [ + { + "bbox": [ + 111, + 560, + 121, + 571 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 133, + 560, + 160, + 572 + ], + "score": 1.0, + "content": "Select", + "type": "text" + }, + { + "bbox": [ + 160, + 560, + 168, + 570 + ], + "score": 0.83, + "content": "\\hat { \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 560, + 333, + 572 + ], + "score": 1.0, + "content": "as equation 10 at the start of each epoch.", + "type": "text" + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 570, + 236, + 582 + ], + "spans": [ + { + "bbox": [ + 110, + 571, + 121, + 582 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 132, + 570, + 148, + 582 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 148, + 571, + 172, + 581 + ], + "score": 0.9, + "content": "t = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 570, + 236, + 582 + ], + "score": 1.0, + "content": "to MaxIter do", + "type": "text" + } + ], + "index": 43, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 581, + 205, + 594 + ], + "spans": [ + { + "bbox": [ + 110, + 582, + 121, + 594 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 142, + 581, + 205, + 594 + ], + "score": 1.0, + "content": "Forward Step", + "type": "text" + } + ], + "index": 44, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 591, + 499, + 606 + ], + "spans": [ + { + "bbox": [ + 110, + 593, + 121, + 604 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 142, + 591, + 343, + 606 + ], + "score": 1.0, + "content": "Generate pseudo-labels on the target domain with", + "type": "text" + }, + { + "bbox": [ + 344, + 593, + 351, + 604 + ], + "score": 0.85, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 591, + 369, + 606 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 369, + 593, + 379, + 604 + ], + "score": 0.71, + "content": "\\theta _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 592, + 495, + 606 + ], + "score": 0.84, + "content": "{ \\mathrm { ~ \\mu ~ } } _ { 3 } \\colon y ^ { \\prime } = \\arg \\operatorname* { m a x } _ { i } \\{ f _ { \\theta _ { s } , \\phi } ( x ) _ { [ i ] } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 496, + 591, + 499, + 606 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 45, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 602, + 201, + 617 + ], + "spans": [ + { + "bbox": [ + 110, + 604, + 121, + 615 + ], + "score": 1.0, + "content": "7:", + "type": "text" + }, + { + "bbox": [ + 142, + 602, + 201, + 617 + ], + "score": 1.0, + "content": "Reverse Step", + "type": "text" + } + ], + "index": 46, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 614, + 464, + 628 + ], + "spans": [ + { + "bbox": [ + 110, + 615, + 122, + 628 + ], + "score": 1.0, + "content": "8:", + "type": "text" + }, + { + "bbox": [ + 142, + 615, + 220, + 628 + ], + "score": 1.0, + "content": "Train a target head", + "type": "text" + }, + { + "bbox": [ + 220, + 614, + 243, + 628 + ], + "score": 0.93, + "content": "\\hat { \\theta } _ { t } ( \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 615, + 347, + 628 + ], + "score": 1.0, + "content": "with target pseudo-labels", + "type": "text" + }, + { + "bbox": [ + 347, + 616, + 356, + 628 + ], + "score": 0.88, + "content": "y ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 615, + 452, + 628 + ], + "score": 1.0, + "content": "on the feature extractor", + "type": "text" + }, + { + "bbox": [ + 453, + 617, + 460, + 628 + ], + "score": 0.83, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 615, + 464, + 628 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 47, + "is_list_start_line": true + }, + { + "bbox": [ + 247, + 629, + 398, + 649 + ], + "spans": [ + { + "bbox": [ + 247, + 629, + 398, + 649 + ], + "score": 0.91, + "content": "\\hat { \\theta } _ { t } ( \\phi ) = \\underset { \\theta } { \\arg \\operatorname* { m i n } } \\mathbb { E } _ { x \\sim \\hat { Q } } \\ell ( f _ { \\theta , \\phi } ( x ) , y ^ { \\prime } ) .", + "type": "inline_equation", + "image_path": "106aa58274092a3458dc458ba58eebfdcde592dd31e1a2a8cda246a73b646193.jpg" + } + ], + "index": 48, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 646, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 110, + 648, + 121, + 660 + ], + "score": 1.0, + "content": "9:", + "type": "text" + }, + { + "bbox": [ + 143, + 647, + 259, + 661 + ], + "score": 1.0, + "content": "Update the feature extractor", + "type": "text" + }, + { + "bbox": [ + 260, + 649, + 267, + 659 + ], + "score": 0.85, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 647, + 351, + 661 + ], + "score": 1.0, + "content": "and the source head", + "type": "text" + }, + { + "bbox": [ + 351, + 649, + 361, + 659 + ], + "score": 0.84, + "content": "\\theta _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 647, + 397, + 661 + ], + "score": 1.0, + "content": "to make", + "type": "text" + }, + { + "bbox": [ + 398, + 646, + 420, + 660 + ], + "score": 0.93, + "content": "\\hat { \\theta } _ { t } ( \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 647, + 505, + 661 + ], + "score": 1.0, + "content": "perform well on the", + "type": "text" + } + ], + "index": 49, + "is_list_start_line": true + }, + { + "bbox": [ + 142, + 659, + 430, + 671 + ], + "spans": [ + { + "bbox": [ + 142, + 659, + 273, + 671 + ], + "score": 1.0, + "content": "source dataset and minimize the", + "type": "text" + }, + { + "bbox": [ + 274, + 660, + 281, + 669 + ], + "score": 0.85, + "content": "\\hat { \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 659, + 430, + 671 + ], + "score": 1.0, + "content": "-Tsallis entropy on the target dataset:", + "type": "text" + } + ], + "index": 50, + "is_list_start_line": true + } + ], + "index": 45, + "bbox_fs": [ + 110, + 536, + 505, + 671 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 195, + 671, + 452, + 706 + ], + "lines": [ + { + "bbox": [ + 195, + 671, + 452, + 706 + ], + "spans": [ + { + "bbox": [ + 195, + 671, + 452, + 706 + ], + "score": 0.9, + "content": "\\begin{array} { r l } & { \\phi \\phi - \\eta \\nabla _ { \\phi } [ L _ { \\widehat { P } } ( \\theta _ { s } , \\phi ) + L _ { \\widehat { P } } ( \\widehat { \\theta } _ { t } ( \\phi ) , \\phi ) + L _ { \\widehat { Q } , \\mathrm { T s a l l i s } , \\widehat { \\alpha } } ( \\theta _ { s } , \\phi ) ] . } \\\\ & { \\qquad \\theta _ { s } \\theta _ { s } - \\eta \\nabla _ { \\theta _ { s } } [ L _ { \\widehat { P } } ( \\theta _ { s } , \\phi ) + L _ { \\widehat { Q } , \\mathrm { T s a l l i s } , \\widehat { \\alpha } } ( \\theta _ { s } , \\phi ) ] . } \\end{array}", + "type": "interline_equation", + "image_path": "6d875ecdfd62ea38ad6b27593a76ee5f7927e127b3756c92fd9a5c61070856d5.jpg" + } + ] + } + ], + "index": 52, + "virtual_lines": [ + { + "bbox": [ + 195, + 671, + 452, + 682.6666666666666 + ], + "spans": [], + "index": 51 + }, + { + "bbox": [ + 195, + 682.6666666666666, + 452, + 694.3333333333333 + ], + "spans": [], + "index": 52 + }, + { + "bbox": [ + 195, + 694.3333333333333, + 452, + 705.9999999999999 + ], + "spans": [], + "index": 54 + } + ] + }, + { + "type": "index", + "bbox": [ + 107, + 695, + 166, + 717 + ], + "lines": [ + { + "bbox": [ + 106, + 695, + 168, + 707 + ], + "spans": [ + { + "bbox": [ + 106, + 695, + 123, + 707 + ], + "score": 1.0, + "content": "10:", + "type": "text" + }, + { + "bbox": [ + 131, + 695, + 168, + 707 + ], + "score": 1.0, + "content": "end for", + "type": "text" + } + ], + "index": 53, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 705, + 158, + 718 + ], + "spans": [ + { + "bbox": [ + 106, + 705, + 158, + 718 + ], + "score": 1.0, + "content": "11: end for", + "type": "text" + } + ], + "index": 55, + "is_list_start_line": true + } + ], + "index": 54.0, + "bbox_fs": [ + 106, + 695, + 168, + 718 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 72, + 504, + 97 + ], + "lines": [ + { + "bbox": [ + 106, + 72, + 505, + 86 + ], + "spans": [ + { + "bbox": [ + 106, + 72, + 505, + 86 + ], + "score": 1.0, + "content": "update leads to no performance gain. Details are deferred to Appendix B.3. Finally, with the optimal", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 81, + 480, + 101 + ], + "spans": [ + { + "bbox": [ + 107, + 84, + 114, + 93 + ], + "score": 0.81, + "content": "\\hat { \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 81, + 189, + 101 + ], + "score": 1.0, + "content": "found, we add the", + "type": "text" + }, + { + "bbox": [ + 189, + 84, + 197, + 93 + ], + "score": 0.84, + "content": "\\hat { \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 81, + 337, + 101 + ], + "score": 1.0, + "content": "-Tsallis entropy minimization term", + "type": "text" + }, + { + "bbox": [ + 338, + 84, + 381, + 98 + ], + "score": 0.91, + "content": "L _ { \\widehat { Q } , \\mathrm { T s a l l i s } , \\widehat { \\alpha } }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 81, + 480, + 101 + ], + "score": 1.0, + "content": "to the overall objective:", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 216, + 102, + 394, + 122 + ], + "lines": [ + { + "bbox": [ + 216, + 102, + 394, + 122 + ], + "spans": [ + { + "bbox": [ + 216, + 102, + 394, + 122 + ], + "score": 0.91, + "content": "\\operatorname* { m i n i m i z e } _ { \\theta _ { s } , \\phi } L _ { \\mathrm { C y c l e } } ( \\theta _ { s } , \\phi ) + L _ { \\hat { Q } , \\mathrm { T s a l l i s } , \\hat { \\alpha } } ( \\theta _ { s } , \\phi ) .", + "type": "interline_equation", + "image_path": "2cceee179cc3a3be90b0ab3de021cb3447406ac386ba4aec8ca271ad95f039c1.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 216, + 102, + 394, + 122 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 126, + 491, + 138 + ], + "lines": [ + { + "bbox": [ + 105, + 124, + 492, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 124, + 492, + 140 + ], + "score": 1.0, + "content": "In summary, Algorithm 1 depicts the complete training procedure of Cycle Self-Training (CST).", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "title", + "bbox": [ + 107, + 147, + 231, + 161 + ], + "lines": [ + { + "bbox": [ + 105, + 146, + 231, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 146, + 231, + 163 + ], + "score": 1.0, + "content": "4 Theoretical Analysis", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 167, + 506, + 223 + ], + "lines": [ + { + "bbox": [ + 106, + 167, + 505, + 180 + ], + "spans": [ + { + "bbox": [ + 106, + 167, + 505, + 180 + ], + "score": 1.0, + "content": "We analyze the properties of CST theoretically. First, we prove that the minimizer of the CST loss", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 107, + 178, + 506, + 191 + ], + "spans": [ + { + "bbox": [ + 107, + 178, + 157, + 190 + ], + "score": 0.92, + "content": "L _ { \\mathrm { C S T } } ( f _ { s } , f _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 178, + 270, + 191 + ], + "score": 1.0, + "content": "will lead to small target loss", + "type": "text" + }, + { + "bbox": [ + 270, + 178, + 307, + 190 + ], + "score": 0.92, + "content": "\\mathrm { E r r } _ { Q } ( f _ { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 178, + 506, + 191 + ], + "score": 1.0, + "content": "under a simple but realistic expansion assumption.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 188, + 505, + 203 + ], + "spans": [ + { + "bbox": [ + 105, + 188, + 505, + 203 + ], + "score": 1.0, + "content": "Then, we further demonstrate a concrete instantiation where cycle self-training provably recovers the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 199, + 506, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 506, + 214 + ], + "score": 1.0, + "content": "target ground truth, but both feature adaptation and standard self-training fail. Due to space limit, we", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 211, + 380, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 211, + 369, + 223 + ], + "score": 1.0, + "content": "state the main results here and defer all proof details to Appendix", + "type": "text" + }, + { + "bbox": [ + 369, + 212, + 377, + 221 + ], + "score": 0.65, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 211, + 380, + 223 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7 + }, + { + "type": "title", + "bbox": [ + 106, + 228, + 366, + 241 + ], + "lines": [ + { + "bbox": [ + 105, + 227, + 367, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 367, + 244 + ], + "score": 1.0, + "content": "4.1 CST Provably Works under the Expansion Assumption", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 245, + 505, + 315 + ], + "lines": [ + { + "bbox": [ + 104, + 242, + 504, + 261 + ], + "spans": [ + { + "bbox": [ + 104, + 242, + 172, + 261 + ], + "score": 1.0, + "content": "We start from a", + "type": "text" + }, + { + "bbox": [ + 172, + 246, + 182, + 256 + ], + "score": 0.82, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 242, + 291, + 261 + ], + "score": 1.0, + "content": "-way classification model,", + "type": "text" + }, + { + "bbox": [ + 291, + 245, + 381, + 258 + ], + "score": 0.92, + "content": "f : \\mathcal { X } \\to [ 0 , 1 ] ^ { K } \\in \\mathcal { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 242, + 400, + 261 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 400, + 244, + 504, + 258 + ], + "score": 0.9, + "content": "{ \\tilde { f } } ( x ) : = \\arg \\operatorname* { m a x } _ { i } f ( x ) _ { [ i ] }", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 257, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 106, + 257, + 249, + 268 + ], + "score": 1.0, + "content": "denotes the prediction. Denote by", + "type": "text" + }, + { + "bbox": [ + 250, + 257, + 261, + 268 + ], + "score": 0.87, + "content": "P _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 257, + 387, + 268 + ], + "score": 1.0, + "content": "the conditional distribution of", + "type": "text" + }, + { + "bbox": [ + 388, + 258, + 397, + 267 + ], + "score": 0.82, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 257, + 423, + 268 + ], + "score": 1.0, + "content": "given", + "type": "text" + }, + { + "bbox": [ + 423, + 258, + 448, + 268 + ], + "score": 0.89, + "content": "y = i", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 257, + 505, + 268 + ], + "score": 1.0, + "content": ". Assume the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 267, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 155, + 280 + ], + "score": 1.0, + "content": "supports of", + "type": "text" + }, + { + "bbox": [ + 155, + 268, + 166, + 279 + ], + "score": 0.86, + "content": "P _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 267, + 185, + 280 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 185, + 268, + 196, + 279 + ], + "score": 0.82, + "content": "P _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 267, + 261, + 280 + ], + "score": 1.0, + "content": "are disjoint for", + "type": "text" + }, + { + "bbox": [ + 261, + 268, + 285, + 279 + ], + "score": 0.9, + "content": "i \\neq j", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 267, + 405, + 280 + ], + "score": 1.0, + "content": ". The definition is similar for", + "type": "text" + }, + { + "bbox": [ + 406, + 268, + 418, + 279 + ], + "score": 0.88, + "content": "Q _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 267, + 506, + 280 + ], + "score": 1.0, + "content": ". We further Assume", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 107, + 277, + 506, + 292 + ], + "spans": [ + { + "bbox": [ + 107, + 279, + 197, + 290 + ], + "score": 0.89, + "content": "P ( y = i ) = Q ( y = i )", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 277, + 236, + 292 + ], + "score": 1.0, + "content": ". For any", + "type": "text" + }, + { + "bbox": [ + 237, + 279, + 264, + 289 + ], + "score": 0.87, + "content": "x \\in \\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 277, + 268, + 292 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 268, + 279, + 293, + 290 + ], + "score": 0.87, + "content": "\\mathcal { N } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 277, + 440, + 292 + ], + "score": 1.0, + "content": "is defined as the neighboring set of", + "type": "text" + }, + { + "bbox": [ + 440, + 281, + 447, + 289 + ], + "score": 0.75, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 277, + 506, + 292 + ], + "score": 1.0, + "content": "with a proper", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 289, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 134, + 303 + ], + "score": 1.0, + "content": "metric", + "type": "text" + }, + { + "bbox": [ + 134, + 290, + 158, + 302 + ], + "score": 0.52, + "content": "d ( \\cdot , \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 290, + 276, + 302 + ], + "score": 0.8, + "content": "\\vert , \\mathcal { N } ( x ) = \\{ x ^ { \\prime } : d ( x , x ^ { \\prime } ) \\leq \\xi \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 289, + 280, + 303 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 281, + 289, + 369, + 302 + ], + "score": 0.91, + "content": "{ \\mathcal { N } } ( A ) : = \\cup _ { x \\in A } { \\mathcal { N } } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 289, + 506, + 303 + ], + "score": 1.0, + "content": ". Denote the expected error on the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 300, + 318, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 176, + 317 + ], + "score": 1.0, + "content": "target domain by", + "type": "text" + }, + { + "bbox": [ + 177, + 302, + 313, + 315 + ], + "score": 0.91, + "content": "\\mathrm { E r r } _ { Q } ( f ) : = \\mathbb { E } _ { ( x , y ) \\sim Q } \\mathbb { I } ( \\tilde { f } ( x ) \\neq y )", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 300, + 318, + 317 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 107, + 318, + 504, + 352 + ], + "lines": [ + { + "bbox": [ + 105, + 318, + 506, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 506, + 331 + ], + "score": 1.0, + "content": "We study the CST algorithm under the expansion assumption of the mixture distribution [66, 11].", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 330, + 505, + 341 + ], + "spans": [ + { + "bbox": [ + 106, + 330, + 385, + 341 + ], + "score": 1.0, + "content": "Intuitively, this assumption indicates that the conditional distributions", + "type": "text" + }, + { + "bbox": [ + 386, + 330, + 397, + 340 + ], + "score": 0.88, + "content": "P _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 330, + 415, + 341 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 415, + 330, + 427, + 341 + ], + "score": 0.89, + "content": "Q _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 330, + 505, + 341 + ], + "score": 1.0, + "content": "are closely located", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 341, + 492, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 341, + 492, + 353 + ], + "score": 1.0, + "content": "and regularly shaped, enabling knowledge transfer from the source domain to the target domain.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 354, + 505, + 394 + ], + "lines": [ + { + "bbox": [ + 105, + 353, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 161, + 367 + ], + "score": 1.0, + "content": "Definition 1", + "type": "text" + }, + { + "bbox": [ + 162, + 354, + 183, + 367 + ], + "score": 0.85, + "content": "[ q , \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 353, + 325, + 367 + ], + "score": 1.0, + "content": "-constant expansion [66]). We say", + "type": "text" + }, + { + "bbox": [ + 325, + 355, + 334, + 365 + ], + "score": 0.79, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 353, + 352, + 367 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 352, + 355, + 361, + 366 + ], + "score": 0.82, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 353, + 390, + 367 + ], + "score": 1.0, + "content": "satisfy", + "type": "text" + }, + { + "bbox": [ + 390, + 355, + 412, + 367 + ], + "score": 0.89, + "content": "( q , \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 353, + 505, + 367 + ], + "score": 1.0, + "content": "-constant expansion for", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 361, + 507, + 383 + ], + "spans": [ + { + "bbox": [ + 104, + 361, + 167, + 383 + ], + "score": 1.0, + "content": "some constant", + "type": "text" + }, + { + "bbox": [ + 167, + 366, + 215, + 378 + ], + "score": 0.91, + "content": "q , \\epsilon \\in ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 361, + 272, + 383 + ], + "score": 1.0, + "content": ", if for any set", + "type": "text" + }, + { + "bbox": [ + 273, + 366, + 302, + 376 + ], + "score": 0.9, + "content": "A \\in { \\mathcal { X } }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 361, + 338, + 383 + ], + "score": 1.0, + "content": "and any", + "type": "text" + }, + { + "bbox": [ + 338, + 366, + 369, + 378 + ], + "score": 0.92, + "content": "i \\in [ K ]", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 361, + 391, + 383 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 392, + 366, + 487, + 380 + ], + "score": 0.93, + "content": "{ \\textstyle \\frac { 1 } { 2 } } > P _ { \\frac { 1 } { 2 } ( P _ { i } + Q _ { i } ) } ( A ) > q", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 361, + 507, + 383 + ], + "score": 1.0, + "content": ", we", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 378, + 327, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 128, + 394 + ], + "score": 1.0, + "content": "have", + "type": "text" + }, + { + "bbox": [ + 128, + 379, + 324, + 394 + ], + "score": 0.89, + "content": "P _ { \\frac { 1 } { 2 } ( P _ { i } + Q _ { i } ) } ( { \\mathcal { N } } ( A ) \\backslash A ) > \\operatorname* { m i n } \\{ \\epsilon , P _ { \\frac { 1 } { 2 } ( P _ { i } + Q _ { i } ) } ( A ) \\} .", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 378, + 327, + 394 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 400, + 506, + 486 + ], + "lines": [ + { + "bbox": [ + 105, + 400, + 506, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 506, + 414 + ], + "score": 1.0, + "content": "Based on this expansion assumption, we consider a robustness-constrained version of CST. Later", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 411, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 447, + 425 + ], + "score": 1.0, + "content": "we will show that the robustness is closely related to the uncertainty. Denote by", + "type": "text" + }, + { + "bbox": [ + 448, + 412, + 458, + 423 + ], + "score": 0.87, + "content": "f _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 411, + 505, + 425 + ], + "score": 1.0, + "content": "the source", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 421, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 104, + 421, + 150, + 439 + ], + "score": 1.0, + "content": "model and", + "type": "text" + }, + { + "bbox": [ + 150, + 423, + 160, + 435 + ], + "score": 0.86, + "content": "f _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 421, + 379, + 439 + ], + "score": 1.0, + "content": "the model trained on the target with pseudo-labels. Let", + "type": "text" + }, + { + "bbox": [ + 379, + 423, + 505, + 437 + ], + "score": 0.9, + "content": "R ( f _ { t } ) : = P _ { \\frac { 1 } { 2 } ( P + Q ) } ( \\{ x : \\exists x ^ { \\prime } \\in", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 435, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 436, + 203, + 450 + ], + "score": 0.86, + "content": "\\mathcal { N } ( x ) , \\tilde { f } _ { t } ( x ) \\neq \\tilde { f } _ { t } ( x ^ { \\prime } ) \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 435, + 328, + 452 + ], + "score": 1.0, + "content": "represent the robustness [66] of", + "type": "text" + }, + { + "bbox": [ + 328, + 438, + 338, + 450 + ], + "score": 0.88, + "content": "f _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 435, + 350, + 452 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 351, + 439, + 360, + 448 + ], + "score": 0.82, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 435, + 376, + 452 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 376, + 438, + 385, + 450 + ], + "score": 0.83, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 435, + 424, + 452 + ], + "score": 1.0, + "content": ". Suppose", + "type": "text" + }, + { + "bbox": [ + 425, + 437, + 505, + 451 + ], + "score": 0.91, + "content": "\\mathbb { E } _ { ( x , y ) \\sim Q } \\mathbb { I } ( \\tilde { f } _ { s } ( x ) \\neq", + "type": "inline_equation" + } + ], + "index": 26 + }, + { + "bbox": [ + 107, + 449, + 506, + 465 + ], + "spans": [ + { + "bbox": [ + 107, + 451, + 152, + 464 + ], + "score": 0.93, + "content": "\\tilde { f } _ { t } ( x ) ) \\leq c", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 449, + 170, + 465 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 171, + 452, + 214, + 464 + ], + "score": 0.92, + "content": "R ( f _ { t } ) \\leq \\rho", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 449, + 382, + 465 + ], + "score": 1.0, + "content": ". The following theorem states that when", + "type": "text" + }, + { + "bbox": [ + 383, + 452, + 393, + 464 + ], + "score": 0.88, + "content": "f _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 449, + 411, + 465 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 412, + 452, + 421, + 463 + ], + "score": 0.87, + "content": "f _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 449, + 506, + 465 + ], + "score": 1.0, + "content": "behave similarly on", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 462, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 177, + 475 + ], + "score": 1.0, + "content": "the target domain", + "type": "text" + }, + { + "bbox": [ + 177, + 464, + 186, + 474 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 462, + 204, + 475 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 204, + 464, + 214, + 474 + ], + "score": 0.88, + "content": "f _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 462, + 506, + 475 + ], + "score": 1.0, + "content": "is robust to local changes in input, the minimizer of the cycle source error", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 473, + 362, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 143, + 486 + ], + "score": 0.93, + "content": "\\mathrm { E r r } _ { P } ( f _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 473, + 253, + 487 + ], + "score": 1.0, + "content": "will guarantee low error of", + "type": "text" + }, + { + "bbox": [ + 254, + 474, + 264, + 486 + ], + "score": 0.89, + "content": "f _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 473, + 349, + 487 + ], + "score": 1.0, + "content": "on the target domain", + "type": "text" + }, + { + "bbox": [ + 350, + 474, + 358, + 485 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 473, + 362, + 487 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 489, + 506, + 516 + ], + "lines": [ + { + "bbox": [ + 105, + 488, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 284, + 505 + ], + "score": 1.0, + "content": "Theorem 1. Suppose Definition 1 holds for", + "type": "text" + }, + { + "bbox": [ + 284, + 491, + 294, + 500 + ], + "score": 0.81, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 488, + 312, + 505 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 312, + 491, + 321, + 502 + ], + "score": 0.78, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 488, + 359, + 505 + ], + "score": 1.0, + "content": ". For any", + "type": "text" + }, + { + "bbox": [ + 359, + 491, + 382, + 502 + ], + "score": 0.92, + "content": "f _ { s } , f _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 488, + 424, + 505 + ], + "score": 1.0, + "content": "satisfying", + "type": "text" + }, + { + "bbox": [ + 425, + 488, + 506, + 504 + ], + "score": 0.92, + "content": "\\mathbb { E } _ { ( x , y ) \\sim Q } \\mathbb { I } ( \\tilde { f } _ { s } ( x ) \\neq", + "type": "inline_equation" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 502, + 457, + 518 + ], + "spans": [ + { + "bbox": [ + 107, + 502, + 151, + 516 + ], + "score": 0.91, + "content": "\\tilde { f } _ { t } ( x ) ) \\leq c", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 502, + 170, + 518 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 170, + 504, + 213, + 516 + ], + "score": 0.92, + "content": "R ( f _ { t } ) \\leq \\rho _ { : }", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 502, + 302, + 518 + ], + "score": 1.0, + "content": ", the expected error of", + "type": "text" + }, + { + "bbox": [ + 302, + 505, + 312, + 516 + ], + "score": 0.88, + "content": "f _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 502, + 399, + 518 + ], + "score": 1.0, + "content": "on the target domain", + "type": "text" + }, + { + "bbox": [ + 399, + 505, + 408, + 515 + ], + "score": 0.84, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 502, + 457, + 518 + ], + "score": 1.0, + "content": "is bounded,", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "interline_equation", + "bbox": [ + 213, + 520, + 397, + 544 + ], + "lines": [ + { + "bbox": [ + 213, + 520, + 397, + 544 + ], + "spans": [ + { + "bbox": [ + 213, + 520, + 397, + 544 + ], + "score": 0.92, + "content": "\\mathrm { E r r } _ { Q } ( f _ { s } ) \\le \\mathrm { E r r } _ { P } ( f _ { t } ) + c + 2 q + \\frac { \\rho } { \\mathrm { m i n } \\{ \\epsilon , q \\} } .", + "type": "interline_equation", + "image_path": "3767b419c5d7590bcb91c5aa576cdb2e8a221e8b675b0cb2270ca20aa270faad.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 213, + 520, + 397, + 544 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 552, + 506, + 664 + ], + "lines": [ + { + "bbox": [ + 105, + 551, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 506, + 567 + ], + "score": 1.0, + "content": "To further relate the expected error with the CST training objective and obtain finite-sample guar-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 564, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 283, + 578 + ], + "score": 1.0, + "content": "antee, we use the multi-class margin loss:", + "type": "text" + }, + { + "bbox": [ + 284, + 564, + 423, + 577 + ], + "score": 0.91, + "content": "l _ { \\gamma } ( f ( x ) , y ) : = \\bar { \\psi _ { \\gamma } } ( - { \\cal M } ( f ( x ) , y ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 564, + 456, + 578 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 457, + 565, + 505, + 576 + ], + "score": 0.88, + "content": "\\mathcal { M } ( v , y ) =", + "type": "inline_equation" + } + ], + "index": 34 + }, + { + "bbox": [ + 107, + 575, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 107, + 577, + 191, + 588 + ], + "score": 0.88, + "content": "v _ { [ y ] } - \\operatorname* { m a x } _ { y ^ { \\prime } \\ne y } v _ { [ y ^ { \\prime } ] }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 575, + 212, + 589 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 212, + 576, + 225, + 587 + ], + "score": 0.89, + "content": "\\psi _ { \\gamma }", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 575, + 465, + 589 + ], + "score": 1.0, + "content": "is the ramp function. We then extend the margin loss:", + "type": "text" + }, + { + "bbox": [ + 465, + 576, + 505, + 587 + ], + "score": 0.88, + "content": "\\mathcal { M } ( v ) =", + "type": "inline_equation" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 587, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 220, + 601 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\operatorname* { m a x } _ { y } \\big ( v _ { [ y ] } - \\operatorname* { m a x } _ { y ^ { \\prime } \\neq y } v _ { [ y ^ { \\prime } ] } \\big ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 587, + 506, + 601 + ], + "score": 1.0, + "content": "(The difference between the largest and the second largest scores in", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 600, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 603, + 115, + 612 + ], + "score": 0.67, + "content": "v )", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 600, + 137, + 614 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 138, + 600, + 314, + 613 + ], + "score": 0.89, + "content": "\\dot { l } _ { \\gamma } ( f _ { t } ( x ) , f _ { s } ( x ) ) : = \\psi _ { \\gamma } ( - \\mathcal { M } ( f _ { t } ( x ) , \\tilde { f } _ { s } ( x ) ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 600, + 387, + 614 + ], + "score": 1.0, + "content": ". Further suppose", + "type": "text" + }, + { + "bbox": [ + 387, + 601, + 401, + 614 + ], + "score": 0.9, + "content": "f _ { [ i ] }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 600, + 411, + 614 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 411, + 601, + 424, + 614 + ], + "score": 0.88, + "content": "L _ { f }", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 600, + 506, + 614 + ], + "score": 1.0, + "content": "-Lipschitz w.r.t. the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 612, + 506, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 136, + 626 + ], + "score": 1.0, + "content": "metric", + "type": "text" + }, + { + "bbox": [ + 136, + 614, + 160, + 625 + ], + "score": 0.91, + "content": "d ( \\cdot , \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 612, + 180, + 626 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 180, + 614, + 309, + 626 + ], + "score": 0.87, + "content": "\\tau : = 1 - 2 L _ { f } \\xi \\operatorname* { m i n } \\{ \\epsilon , q \\} > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 612, + 506, + 626 + ], + "score": 1.0, + "content": ". Consider the following training objective for", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 621, + 508, + 642 + ], + "spans": [ + { + "bbox": [ + 104, + 621, + 178, + 642 + ], + "score": 1.0, + "content": "CST, denoted by", + "type": "text" + }, + { + "bbox": [ + 178, + 624, + 228, + 636 + ], + "score": 0.91, + "content": "L _ { \\mathrm { C S T } } ( f _ { s } , f _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 621, + 261, + 642 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 262, + 624, + 401, + 638 + ], + "score": 0.9, + "content": "\\mathcal { L } _ { \\widehat { P } , \\gamma } ( f _ { t } ) : = \\mathbb { E } _ { ( x , y ) \\sim \\widehat { P } } l _ { \\gamma } ( f _ { t } ( x ) , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 621, + 508, + 642 + ], + "score": 1.0, + "content": "corresponds to the cycle", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 102, + 634, + 508, + 656 + ], + "spans": [ + { + "bbox": [ + 102, + 634, + 208, + 656 + ], + "score": 1.0, + "content": "source loss in equation 5,", + "type": "text" + }, + { + "bbox": [ + 208, + 638, + 376, + 653 + ], + "score": 0.9, + "content": "L _ { \\widehat { Q } , \\gamma } ( f _ { t } , f _ { s } ) : = \\mathbb { E } _ { ( x , y ) \\sim \\widehat { Q } } l _ { \\gamma } ( f _ { t } ( x ) , f _ { s } ( x ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 634, + 508, + 656 + ], + "score": 1.0, + "content": "is consistent with the target loss", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 650, + 485, + 664 + ], + "spans": [ + { + "bbox": [ + 106, + 650, + 181, + 664 + ], + "score": 1.0, + "content": "in equation 4, and", + "type": "text" + }, + { + "bbox": [ + 181, + 651, + 223, + 663 + ], + "score": 0.93, + "content": "\\mathcal { M } ( f _ { t } ( x ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 650, + 485, + 664 + ], + "score": 1.0, + "content": "is closely related to the uncertainty of predictions in equation 11.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 37 + }, + { + "type": "interline_equation", + "bbox": [ + 143, + 667, + 467, + 695 + ], + "lines": [ + { + "bbox": [ + 143, + 667, + 467, + 695 + ], + "spans": [ + { + "bbox": [ + 143, + 667, + 467, + 695 + ], + "score": 0.91, + "content": "\\operatorname* { m i n } L _ { \\mathrm { C S T } } ( f _ { s } , f _ { t } ) : = L _ { \\widehat { P } , \\gamma } ( f _ { t } ) + L _ { \\widehat { Q } , \\gamma } ( f _ { t } , f _ { s } ) + \\frac { 1 - \\mathbb { E } _ { ( x , y ) \\sim \\frac { 1 } { 2 } ( \\widehat { P } + \\widehat { Q } ) } \\mathcal { M } ( f _ { t } ( x ) ) } { \\tau } .", + "type": "interline_equation", + "image_path": "c6d24ce0adbf8cbbf84bc22d55ac6324f6f73dadd0fed6d9251d5b91d46526cc.jpg" + } + ] + } + ], + "index": 42, + "virtual_lines": [ + { + "bbox": [ + 143, + 667, + 467, + 695 + ], + "spans": [], + "index": 42 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 699, + 504, + 723 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 407, + 713 + ], + "score": 1.0, + "content": "The following theorem shows that the minimizer of the training objective", + "type": "text" + }, + { + "bbox": [ + 407, + 699, + 457, + 712 + ], + "score": 0.93, + "content": "L _ { \\mathrm { C S T } } ( f _ { s } , f _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 698, + 505, + 713 + ], + "score": 1.0, + "content": "guarantees", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 710, + 310, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 201, + 723 + ], + "score": 1.0, + "content": "low population error of", + "type": "text" + }, + { + "bbox": [ + 202, + 711, + 212, + 722 + ], + "score": 0.88, + "content": "f _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 710, + 298, + 723 + ], + "score": 1.0, + "content": "on the target domain", + "type": "text" + }, + { + "bbox": [ + 298, + 713, + 306, + 722 + ], + "score": 0.88, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 710, + 310, + 723 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 310, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 310, + 752 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 72, + 504, + 97 + ], + "lines": [ + { + "bbox": [ + 106, + 72, + 505, + 86 + ], + "spans": [ + { + "bbox": [ + 106, + 72, + 505, + 86 + ], + "score": 1.0, + "content": "update leads to no performance gain. Details are deferred to Appendix B.3. Finally, with the optimal", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 81, + 480, + 101 + ], + "spans": [ + { + "bbox": [ + 107, + 84, + 114, + 93 + ], + "score": 0.81, + "content": "\\hat { \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 81, + 189, + 101 + ], + "score": 1.0, + "content": "found, we add the", + "type": "text" + }, + { + "bbox": [ + 189, + 84, + 197, + 93 + ], + "score": 0.84, + "content": "\\hat { \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 81, + 337, + 101 + ], + "score": 1.0, + "content": "-Tsallis entropy minimization term", + "type": "text" + }, + { + "bbox": [ + 338, + 84, + 381, + 98 + ], + "score": 0.91, + "content": "L _ { \\widehat { Q } , \\mathrm { T s a l l i s } , \\widehat { \\alpha } }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 81, + 480, + 101 + ], + "score": 1.0, + "content": "to the overall objective:", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 106, + 72, + 505, + 101 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 216, + 102, + 394, + 122 + ], + "lines": [ + { + "bbox": [ + 216, + 102, + 394, + 122 + ], + "spans": [ + { + "bbox": [ + 216, + 102, + 394, + 122 + ], + "score": 0.91, + "content": "\\operatorname* { m i n i m i z e } _ { \\theta _ { s } , \\phi } L _ { \\mathrm { C y c l e } } ( \\theta _ { s } , \\phi ) + L _ { \\hat { Q } , \\mathrm { T s a l l i s } , \\hat { \\alpha } } ( \\theta _ { s } , \\phi ) .", + "type": "interline_equation", + "image_path": "2cceee179cc3a3be90b0ab3de021cb3447406ac386ba4aec8ca271ad95f039c1.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 216, + 102, + 394, + 122 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 126, + 491, + 138 + ], + "lines": [ + { + "bbox": [ + 105, + 124, + 492, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 124, + 492, + 140 + ], + "score": 1.0, + "content": "In summary, Algorithm 1 depicts the complete training procedure of Cycle Self-Training (CST).", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 124, + 492, + 140 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 147, + 231, + 161 + ], + "lines": [ + { + "bbox": [ + 105, + 146, + 231, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 146, + 231, + 163 + ], + "score": 1.0, + "content": "4 Theoretical Analysis", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 167, + 506, + 223 + ], + "lines": [ + { + "bbox": [ + 106, + 167, + 505, + 180 + ], + "spans": [ + { + "bbox": [ + 106, + 167, + 505, + 180 + ], + "score": 1.0, + "content": "We analyze the properties of CST theoretically. First, we prove that the minimizer of the CST loss", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 107, + 178, + 506, + 191 + ], + "spans": [ + { + "bbox": [ + 107, + 178, + 157, + 190 + ], + "score": 0.92, + "content": "L _ { \\mathrm { C S T } } ( f _ { s } , f _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 178, + 270, + 191 + ], + "score": 1.0, + "content": "will lead to small target loss", + "type": "text" + }, + { + "bbox": [ + 270, + 178, + 307, + 190 + ], + "score": 0.92, + "content": "\\mathrm { E r r } _ { Q } ( f _ { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 178, + 506, + 191 + ], + "score": 1.0, + "content": "under a simple but realistic expansion assumption.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 188, + 505, + 203 + ], + "spans": [ + { + "bbox": [ + 105, + 188, + 505, + 203 + ], + "score": 1.0, + "content": "Then, we further demonstrate a concrete instantiation where cycle self-training provably recovers the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 199, + 506, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 506, + 214 + ], + "score": 1.0, + "content": "target ground truth, but both feature adaptation and standard self-training fail. Due to space limit, we", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 211, + 380, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 211, + 369, + 223 + ], + "score": 1.0, + "content": "state the main results here and defer all proof details to Appendix", + "type": "text" + }, + { + "bbox": [ + 369, + 212, + 377, + 221 + ], + "score": 0.65, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 211, + 380, + 223 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 167, + 506, + 223 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 228, + 366, + 241 + ], + "lines": [ + { + "bbox": [ + 105, + 227, + 367, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 367, + 244 + ], + "score": 1.0, + "content": "4.1 CST Provably Works under the Expansion Assumption", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 245, + 505, + 315 + ], + "lines": [ + { + "bbox": [ + 104, + 242, + 504, + 261 + ], + "spans": [ + { + "bbox": [ + 104, + 242, + 172, + 261 + ], + "score": 1.0, + "content": "We start from a", + "type": "text" + }, + { + "bbox": [ + 172, + 246, + 182, + 256 + ], + "score": 0.82, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 242, + 291, + 261 + ], + "score": 1.0, + "content": "-way classification model,", + "type": "text" + }, + { + "bbox": [ + 291, + 245, + 381, + 258 + ], + "score": 0.92, + "content": "f : \\mathcal { X } \\to [ 0 , 1 ] ^ { K } \\in \\mathcal { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 242, + 400, + 261 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 400, + 244, + 504, + 258 + ], + "score": 0.9, + "content": "{ \\tilde { f } } ( x ) : = \\arg \\operatorname* { m a x } _ { i } f ( x ) _ { [ i ] }", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 257, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 106, + 257, + 249, + 268 + ], + "score": 1.0, + "content": "denotes the prediction. Denote by", + "type": "text" + }, + { + "bbox": [ + 250, + 257, + 261, + 268 + ], + "score": 0.87, + "content": "P _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 257, + 387, + 268 + ], + "score": 1.0, + "content": "the conditional distribution of", + "type": "text" + }, + { + "bbox": [ + 388, + 258, + 397, + 267 + ], + "score": 0.82, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 257, + 423, + 268 + ], + "score": 1.0, + "content": "given", + "type": "text" + }, + { + "bbox": [ + 423, + 258, + 448, + 268 + ], + "score": 0.89, + "content": "y = i", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 257, + 505, + 268 + ], + "score": 1.0, + "content": ". Assume the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 267, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 155, + 280 + ], + "score": 1.0, + "content": "supports of", + "type": "text" + }, + { + "bbox": [ + 155, + 268, + 166, + 279 + ], + "score": 0.86, + "content": "P _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 267, + 185, + 280 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 185, + 268, + 196, + 279 + ], + "score": 0.82, + "content": "P _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 267, + 261, + 280 + ], + "score": 1.0, + "content": "are disjoint for", + "type": "text" + }, + { + "bbox": [ + 261, + 268, + 285, + 279 + ], + "score": 0.9, + "content": "i \\neq j", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 267, + 405, + 280 + ], + "score": 1.0, + "content": ". The definition is similar for", + "type": "text" + }, + { + "bbox": [ + 406, + 268, + 418, + 279 + ], + "score": 0.88, + "content": "Q _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 267, + 506, + 280 + ], + "score": 1.0, + "content": ". We further Assume", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 107, + 277, + 506, + 292 + ], + "spans": [ + { + "bbox": [ + 107, + 279, + 197, + 290 + ], + "score": 0.89, + "content": "P ( y = i ) = Q ( y = i )", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 277, + 236, + 292 + ], + "score": 1.0, + "content": ". For any", + "type": "text" + }, + { + "bbox": [ + 237, + 279, + 264, + 289 + ], + "score": 0.87, + "content": "x \\in \\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 277, + 268, + 292 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 268, + 279, + 293, + 290 + ], + "score": 0.87, + "content": "\\mathcal { N } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 277, + 440, + 292 + ], + "score": 1.0, + "content": "is defined as the neighboring set of", + "type": "text" + }, + { + "bbox": [ + 440, + 281, + 447, + 289 + ], + "score": 0.75, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 277, + 506, + 292 + ], + "score": 1.0, + "content": "with a proper", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 289, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 134, + 303 + ], + "score": 1.0, + "content": "metric", + "type": "text" + }, + { + "bbox": [ + 134, + 290, + 158, + 302 + ], + "score": 0.52, + "content": "d ( \\cdot , \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 290, + 276, + 302 + ], + "score": 0.8, + "content": "\\vert , \\mathcal { N } ( x ) = \\{ x ^ { \\prime } : d ( x , x ^ { \\prime } ) \\leq \\xi \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 289, + 280, + 303 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 281, + 289, + 369, + 302 + ], + "score": 0.91, + "content": "{ \\mathcal { N } } ( A ) : = \\cup _ { x \\in A } { \\mathcal { N } } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 289, + 506, + 303 + ], + "score": 1.0, + "content": ". Denote the expected error on the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 300, + 318, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 176, + 317 + ], + "score": 1.0, + "content": "target domain by", + "type": "text" + }, + { + "bbox": [ + 177, + 302, + 313, + 315 + ], + "score": 0.91, + "content": "\\mathrm { E r r } _ { Q } ( f ) : = \\mathbb { E } _ { ( x , y ) \\sim Q } \\mathbb { I } ( \\tilde { f } ( x ) \\neq y )", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 300, + 318, + 317 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13.5, + "bbox_fs": [ + 104, + 242, + 506, + 317 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 318, + 504, + 352 + ], + "lines": [ + { + "bbox": [ + 105, + 318, + 506, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 506, + 331 + ], + "score": 1.0, + "content": "We study the CST algorithm under the expansion assumption of the mixture distribution [66, 11].", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 330, + 505, + 341 + ], + "spans": [ + { + "bbox": [ + 106, + 330, + 385, + 341 + ], + "score": 1.0, + "content": "Intuitively, this assumption indicates that the conditional distributions", + "type": "text" + }, + { + "bbox": [ + 386, + 330, + 397, + 340 + ], + "score": 0.88, + "content": "P _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 330, + 415, + 341 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 415, + 330, + 427, + 341 + ], + "score": 0.89, + "content": "Q _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 330, + 505, + 341 + ], + "score": 1.0, + "content": "are closely located", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 341, + 492, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 341, + 492, + 353 + ], + "score": 1.0, + "content": "and regularly shaped, enabling knowledge transfer from the source domain to the target domain.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 318, + 506, + 353 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 354, + 505, + 394 + ], + "lines": [ + { + "bbox": [ + 105, + 353, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 161, + 367 + ], + "score": 1.0, + "content": "Definition 1", + "type": "text" + }, + { + "bbox": [ + 162, + 354, + 183, + 367 + ], + "score": 0.85, + "content": "[ q , \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 353, + 325, + 367 + ], + "score": 1.0, + "content": "-constant expansion [66]). We say", + "type": "text" + }, + { + "bbox": [ + 325, + 355, + 334, + 365 + ], + "score": 0.79, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 353, + 352, + 367 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 352, + 355, + 361, + 366 + ], + "score": 0.82, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 353, + 390, + 367 + ], + "score": 1.0, + "content": "satisfy", + "type": "text" + }, + { + "bbox": [ + 390, + 355, + 412, + 367 + ], + "score": 0.89, + "content": "( q , \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 353, + 505, + 367 + ], + "score": 1.0, + "content": "-constant expansion for", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 361, + 507, + 383 + ], + "spans": [ + { + "bbox": [ + 104, + 361, + 167, + 383 + ], + "score": 1.0, + "content": "some constant", + "type": "text" + }, + { + "bbox": [ + 167, + 366, + 215, + 378 + ], + "score": 0.91, + "content": "q , \\epsilon \\in ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 361, + 272, + 383 + ], + "score": 1.0, + "content": ", if for any set", + "type": "text" + }, + { + "bbox": [ + 273, + 366, + 302, + 376 + ], + "score": 0.9, + "content": "A \\in { \\mathcal { X } }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 361, + 338, + 383 + ], + "score": 1.0, + "content": "and any", + "type": "text" + }, + { + "bbox": [ + 338, + 366, + 369, + 378 + ], + "score": 0.92, + "content": "i \\in [ K ]", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 361, + 391, + 383 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 392, + 366, + 487, + 380 + ], + "score": 0.93, + "content": "{ \\textstyle \\frac { 1 } { 2 } } > P _ { \\frac { 1 } { 2 } ( P _ { i } + Q _ { i } ) } ( A ) > q", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 361, + 507, + 383 + ], + "score": 1.0, + "content": ", we", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 378, + 327, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 128, + 394 + ], + "score": 1.0, + "content": "have", + "type": "text" + }, + { + "bbox": [ + 128, + 379, + 324, + 394 + ], + "score": 0.89, + "content": "P _ { \\frac { 1 } { 2 } ( P _ { i } + Q _ { i } ) } ( { \\mathcal { N } } ( A ) \\backslash A ) > \\operatorname* { m i n } \\{ \\epsilon , P _ { \\frac { 1 } { 2 } ( P _ { i } + Q _ { i } ) } ( A ) \\} .", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 378, + 327, + 394 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21, + "bbox_fs": [ + 104, + 353, + 507, + 394 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 400, + 506, + 486 + ], + "lines": [ + { + "bbox": [ + 105, + 400, + 506, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 506, + 414 + ], + "score": 1.0, + "content": "Based on this expansion assumption, we consider a robustness-constrained version of CST. Later", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 411, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 447, + 425 + ], + "score": 1.0, + "content": "we will show that the robustness is closely related to the uncertainty. Denote by", + "type": "text" + }, + { + "bbox": [ + 448, + 412, + 458, + 423 + ], + "score": 0.87, + "content": "f _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 411, + 505, + 425 + ], + "score": 1.0, + "content": "the source", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 421, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 104, + 421, + 150, + 439 + ], + "score": 1.0, + "content": "model and", + "type": "text" + }, + { + "bbox": [ + 150, + 423, + 160, + 435 + ], + "score": 0.86, + "content": "f _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 421, + 379, + 439 + ], + "score": 1.0, + "content": "the model trained on the target with pseudo-labels. Let", + "type": "text" + }, + { + "bbox": [ + 379, + 423, + 505, + 437 + ], + "score": 0.9, + "content": "R ( f _ { t } ) : = P _ { \\frac { 1 } { 2 } ( P + Q ) } ( \\{ x : \\exists x ^ { \\prime } \\in", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 435, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 436, + 203, + 450 + ], + "score": 0.86, + "content": "\\mathcal { N } ( x ) , \\tilde { f } _ { t } ( x ) \\neq \\tilde { f } _ { t } ( x ^ { \\prime } ) \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 435, + 328, + 452 + ], + "score": 1.0, + "content": "represent the robustness [66] of", + "type": "text" + }, + { + "bbox": [ + 328, + 438, + 338, + 450 + ], + "score": 0.88, + "content": "f _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 435, + 350, + 452 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 351, + 439, + 360, + 448 + ], + "score": 0.82, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 435, + 376, + 452 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 376, + 438, + 385, + 450 + ], + "score": 0.83, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 435, + 424, + 452 + ], + "score": 1.0, + "content": ". Suppose", + "type": "text" + }, + { + "bbox": [ + 425, + 437, + 505, + 451 + ], + "score": 0.91, + "content": "\\mathbb { E } _ { ( x , y ) \\sim Q } \\mathbb { I } ( \\tilde { f } _ { s } ( x ) \\neq", + "type": "inline_equation" + } + ], + "index": 26 + }, + { + "bbox": [ + 107, + 449, + 506, + 465 + ], + "spans": [ + { + "bbox": [ + 107, + 451, + 152, + 464 + ], + "score": 0.93, + "content": "\\tilde { f } _ { t } ( x ) ) \\leq c", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 449, + 170, + 465 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 171, + 452, + 214, + 464 + ], + "score": 0.92, + "content": "R ( f _ { t } ) \\leq \\rho", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 449, + 382, + 465 + ], + "score": 1.0, + "content": ". The following theorem states that when", + "type": "text" + }, + { + "bbox": [ + 383, + 452, + 393, + 464 + ], + "score": 0.88, + "content": "f _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 449, + 411, + 465 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 412, + 452, + 421, + 463 + ], + "score": 0.87, + "content": "f _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 449, + 506, + 465 + ], + "score": 1.0, + "content": "behave similarly on", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 462, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 177, + 475 + ], + "score": 1.0, + "content": "the target domain", + "type": "text" + }, + { + "bbox": [ + 177, + 464, + 186, + 474 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 462, + 204, + 475 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 204, + 464, + 214, + 474 + ], + "score": 0.88, + "content": "f _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 462, + 506, + 475 + ], + "score": 1.0, + "content": "is robust to local changes in input, the minimizer of the cycle source error", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 473, + 362, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 143, + 486 + ], + "score": 0.93, + "content": "\\mathrm { E r r } _ { P } ( f _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 473, + 253, + 487 + ], + "score": 1.0, + "content": "will guarantee low error of", + "type": "text" + }, + { + "bbox": [ + 254, + 474, + 264, + 486 + ], + "score": 0.89, + "content": "f _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 473, + 349, + 487 + ], + "score": 1.0, + "content": "on the target domain", + "type": "text" + }, + { + "bbox": [ + 350, + 474, + 358, + 485 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 473, + 362, + 487 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26, + "bbox_fs": [ + 104, + 400, + 506, + 487 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 489, + 506, + 516 + ], + "lines": [ + { + "bbox": [ + 105, + 488, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 284, + 505 + ], + "score": 1.0, + "content": "Theorem 1. Suppose Definition 1 holds for", + "type": "text" + }, + { + "bbox": [ + 284, + 491, + 294, + 500 + ], + "score": 0.81, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 488, + 312, + 505 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 312, + 491, + 321, + 502 + ], + "score": 0.78, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 488, + 359, + 505 + ], + "score": 1.0, + "content": ". For any", + "type": "text" + }, + { + "bbox": [ + 359, + 491, + 382, + 502 + ], + "score": 0.92, + "content": "f _ { s } , f _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 488, + 424, + 505 + ], + "score": 1.0, + "content": "satisfying", + "type": "text" + }, + { + "bbox": [ + 425, + 488, + 506, + 504 + ], + "score": 0.92, + "content": "\\mathbb { E } _ { ( x , y ) \\sim Q } \\mathbb { I } ( \\tilde { f } _ { s } ( x ) \\neq", + "type": "inline_equation" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 502, + 457, + 518 + ], + "spans": [ + { + "bbox": [ + 107, + 502, + 151, + 516 + ], + "score": 0.91, + "content": "\\tilde { f } _ { t } ( x ) ) \\leq c", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 502, + 170, + 518 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 170, + 504, + 213, + 516 + ], + "score": 0.92, + "content": "R ( f _ { t } ) \\leq \\rho _ { : }", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 502, + 302, + 518 + ], + "score": 1.0, + "content": ", the expected error of", + "type": "text" + }, + { + "bbox": [ + 302, + 505, + 312, + 516 + ], + "score": 0.88, + "content": "f _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 502, + 399, + 518 + ], + "score": 1.0, + "content": "on the target domain", + "type": "text" + }, + { + "bbox": [ + 399, + 505, + 408, + 515 + ], + "score": 0.84, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 502, + 457, + 518 + ], + "score": 1.0, + "content": "is bounded,", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 488, + 506, + 518 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 213, + 520, + 397, + 544 + ], + "lines": [ + { + "bbox": [ + 213, + 520, + 397, + 544 + ], + "spans": [ + { + "bbox": [ + 213, + 520, + 397, + 544 + ], + "score": 0.92, + "content": "\\mathrm { E r r } _ { Q } ( f _ { s } ) \\le \\mathrm { E r r } _ { P } ( f _ { t } ) + c + 2 q + \\frac { \\rho } { \\mathrm { m i n } \\{ \\epsilon , q \\} } .", + "type": "interline_equation", + "image_path": "3767b419c5d7590bcb91c5aa576cdb2e8a221e8b675b0cb2270ca20aa270faad.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 213, + 520, + 397, + 544 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 552, + 506, + 664 + ], + "lines": [ + { + "bbox": [ + 105, + 551, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 506, + 567 + ], + "score": 1.0, + "content": "To further relate the expected error with the CST training objective and obtain finite-sample guar-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 564, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 283, + 578 + ], + "score": 1.0, + "content": "antee, we use the multi-class margin loss:", + "type": "text" + }, + { + "bbox": [ + 284, + 564, + 423, + 577 + ], + "score": 0.91, + "content": "l _ { \\gamma } ( f ( x ) , y ) : = \\bar { \\psi _ { \\gamma } } ( - { \\cal M } ( f ( x ) , y ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 564, + 456, + 578 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 457, + 565, + 505, + 576 + ], + "score": 0.88, + "content": "\\mathcal { M } ( v , y ) =", + "type": "inline_equation" + } + ], + "index": 34 + }, + { + "bbox": [ + 107, + 575, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 107, + 577, + 191, + 588 + ], + "score": 0.88, + "content": "v _ { [ y ] } - \\operatorname* { m a x } _ { y ^ { \\prime } \\ne y } v _ { [ y ^ { \\prime } ] }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 575, + 212, + 589 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 212, + 576, + 225, + 587 + ], + "score": 0.89, + "content": "\\psi _ { \\gamma }", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 575, + 465, + 589 + ], + "score": 1.0, + "content": "is the ramp function. We then extend the margin loss:", + "type": "text" + }, + { + "bbox": [ + 465, + 576, + 505, + 587 + ], + "score": 0.88, + "content": "\\mathcal { M } ( v ) =", + "type": "inline_equation" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 587, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 220, + 601 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\operatorname* { m a x } _ { y } \\big ( v _ { [ y ] } - \\operatorname* { m a x } _ { y ^ { \\prime } \\neq y } v _ { [ y ^ { \\prime } ] } \\big ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 587, + 506, + 601 + ], + "score": 1.0, + "content": "(The difference between the largest and the second largest scores in", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 600, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 603, + 115, + 612 + ], + "score": 0.67, + "content": "v )", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 600, + 137, + 614 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 138, + 600, + 314, + 613 + ], + "score": 0.89, + "content": "\\dot { l } _ { \\gamma } ( f _ { t } ( x ) , f _ { s } ( x ) ) : = \\psi _ { \\gamma } ( - \\mathcal { M } ( f _ { t } ( x ) , \\tilde { f } _ { s } ( x ) ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 600, + 387, + 614 + ], + "score": 1.0, + "content": ". Further suppose", + "type": "text" + }, + { + "bbox": [ + 387, + 601, + 401, + 614 + ], + "score": 0.9, + "content": "f _ { [ i ] }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 600, + 411, + 614 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 411, + 601, + 424, + 614 + ], + "score": 0.88, + "content": "L _ { f }", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 600, + 506, + 614 + ], + "score": 1.0, + "content": "-Lipschitz w.r.t. the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 612, + 506, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 136, + 626 + ], + "score": 1.0, + "content": "metric", + "type": "text" + }, + { + "bbox": [ + 136, + 614, + 160, + 625 + ], + "score": 0.91, + "content": "d ( \\cdot , \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 612, + 180, + 626 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 180, + 614, + 309, + 626 + ], + "score": 0.87, + "content": "\\tau : = 1 - 2 L _ { f } \\xi \\operatorname* { m i n } \\{ \\epsilon , q \\} > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 612, + 506, + 626 + ], + "score": 1.0, + "content": ". Consider the following training objective for", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 621, + 508, + 642 + ], + "spans": [ + { + "bbox": [ + 104, + 621, + 178, + 642 + ], + "score": 1.0, + "content": "CST, denoted by", + "type": "text" + }, + { + "bbox": [ + 178, + 624, + 228, + 636 + ], + "score": 0.91, + "content": "L _ { \\mathrm { C S T } } ( f _ { s } , f _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 621, + 261, + 642 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 262, + 624, + 401, + 638 + ], + "score": 0.9, + "content": "\\mathcal { L } _ { \\widehat { P } , \\gamma } ( f _ { t } ) : = \\mathbb { E } _ { ( x , y ) \\sim \\widehat { P } } l _ { \\gamma } ( f _ { t } ( x ) , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 621, + 508, + 642 + ], + "score": 1.0, + "content": "corresponds to the cycle", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 102, + 634, + 508, + 656 + ], + "spans": [ + { + "bbox": [ + 102, + 634, + 208, + 656 + ], + "score": 1.0, + "content": "source loss in equation 5,", + "type": "text" + }, + { + "bbox": [ + 208, + 638, + 376, + 653 + ], + "score": 0.9, + "content": "L _ { \\widehat { Q } , \\gamma } ( f _ { t } , f _ { s } ) : = \\mathbb { E } _ { ( x , y ) \\sim \\widehat { Q } } l _ { \\gamma } ( f _ { t } ( x ) , f _ { s } ( x ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 634, + 508, + 656 + ], + "score": 1.0, + "content": "is consistent with the target loss", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 650, + 485, + 664 + ], + "spans": [ + { + "bbox": [ + 106, + 650, + 181, + 664 + ], + "score": 1.0, + "content": "in equation 4, and", + "type": "text" + }, + { + "bbox": [ + 181, + 651, + 223, + 663 + ], + "score": 0.93, + "content": "\\mathcal { M } ( f _ { t } ( x ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 650, + 485, + 664 + ], + "score": 1.0, + "content": "is closely related to the uncertainty of predictions in equation 11.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 37, + "bbox_fs": [ + 102, + 551, + 508, + 664 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 143, + 667, + 467, + 695 + ], + "lines": [ + { + "bbox": [ + 143, + 667, + 467, + 695 + ], + "spans": [ + { + "bbox": [ + 143, + 667, + 467, + 695 + ], + "score": 0.91, + "content": "\\operatorname* { m i n } L _ { \\mathrm { C S T } } ( f _ { s } , f _ { t } ) : = L _ { \\widehat { P } , \\gamma } ( f _ { t } ) + L _ { \\widehat { Q } , \\gamma } ( f _ { t } , f _ { s } ) + \\frac { 1 - \\mathbb { E } _ { ( x , y ) \\sim \\frac { 1 } { 2 } ( \\widehat { P } + \\widehat { Q } ) } \\mathcal { M } ( f _ { t } ( x ) ) } { \\tau } .", + "type": "interline_equation", + "image_path": "c6d24ce0adbf8cbbf84bc22d55ac6324f6f73dadd0fed6d9251d5b91d46526cc.jpg" + } + ] + } + ], + "index": 42, + "virtual_lines": [ + { + "bbox": [ + 143, + 667, + 467, + 695 + ], + "spans": [], + "index": 42 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 699, + 504, + 723 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 407, + 713 + ], + "score": 1.0, + "content": "The following theorem shows that the minimizer of the training objective", + "type": "text" + }, + { + "bbox": [ + 407, + 699, + 457, + 712 + ], + "score": 0.93, + "content": "L _ { \\mathrm { C S T } } ( f _ { s } , f _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 698, + 505, + 713 + ], + "score": 1.0, + "content": "guarantees", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 710, + 310, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 201, + 723 + ], + "score": 1.0, + "content": "low population error of", + "type": "text" + }, + { + "bbox": [ + 202, + 711, + 212, + 722 + ], + "score": 0.88, + "content": "f _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 710, + 298, + 723 + ], + "score": 1.0, + "content": "on the target domain", + "type": "text" + }, + { + "bbox": [ + 298, + 713, + 306, + 722 + ], + "score": 0.88, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 710, + 310, + 723 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 698, + 505, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 70, + 504, + 99 + ], + "lines": [ + { + "bbox": [ + 106, + 70, + 506, + 86 + ], + "spans": [ + { + "bbox": [ + 106, + 70, + 159, + 86 + ], + "score": 1.0, + "content": "Theorem 2.", + "type": "text" + }, + { + "bbox": [ + 159, + 70, + 194, + 86 + ], + "score": 0.92, + "content": " { \\widehat { \\mathcal { R } } } ( \\mathcal { F } | _ { { \\widehat { P } } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 70, + 450, + 86 + ], + "score": 1.0, + "content": "denotes the empirical Rademacher complexity of function class", + "type": "text" + }, + { + "bbox": [ + 451, + 73, + 460, + 83 + ], + "score": 0.81, + "content": "\\mathcal { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 70, + 506, + 86 + ], + "score": 1.0, + "content": "on dataset", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 84, + 435, + 101 + ], + "spans": [ + { + "bbox": [ + 107, + 84, + 115, + 97 + ], + "score": 0.8, + "content": "\\widehat { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 84, + 235, + 101 + ], + "score": 1.0, + "content": ". For any solution of equation", + "type": "text" + }, + { + "bbox": [ + 236, + 87, + 247, + 97 + ], + "score": 0.29, + "content": "^ { 1 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 84, + 265, + 101 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 265, + 87, + 290, + 99 + ], + "score": 0.89, + "content": "\\gamma > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 84, + 407, + 101 + ], + "score": 1.0, + "content": ", with probability larger than", + "type": "text" + }, + { + "bbox": [ + 407, + 87, + 430, + 97 + ], + "score": 0.83, + "content": "1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 84, + 435, + 101 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 107, + 100, + 505, + 163 + ], + "lines": [ + { + "bbox": [ + 111, + 100, + 502, + 126 + ], + "spans": [ + { + "bbox": [ + 111, + 100, + 502, + 126 + ], + "score": 0.88, + "content": "\\mathrm { E r r } _ { Q } ( f _ { s } ) \\leq L _ { \\mathrm { C S T } } ( f _ { s } , f _ { t } ) + 2 q + \\frac { 4 K } { \\gamma } \\left[ \\widehat { R } ( \\mathcal { F } | _ { \\widehat { P } } ) + \\widehat { \\mathcal { R } } ( \\tilde { \\mathcal { F } } \\times \\mathcal { F } | _ { \\widehat { Q } } ) \\right] + \\frac { 2 } { \\tau } \\left[ \\widehat { R } ( \\mathcal { F } | _ { \\widehat { P } } ) + \\widehat { \\mathcal { R } } ( \\mathcal { F } | _ { \\widehat { Q } } ) \\right] + \\zeta ,", + "type": "inline_equation", + "image_path": "abf9e262a5e3b34a673b2e52b628f0724588d731fe9feb3ec08c87557ddb72ed.jpg" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 128, + 506, + 148 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 133, + 148 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 129, + 306, + 148 + ], + "score": 0.9, + "content": "\\zeta = O \\left( \\sqrt { \\log ( 1 / \\delta ) / n _ { s } } + \\sqrt { \\log ( 1 / \\delta ) / n _ { t } } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 128, + 389, + 148 + ], + "score": 1.0, + "content": "is a low-order term.", + "type": "text" + }, + { + "bbox": [ + 389, + 131, + 419, + 144 + ], + "score": 0.91, + "content": "\\tilde { \\mathcal { F } } \\times \\mathcal { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 128, + 506, + 148 + ], + "score": 1.0, + "content": "refers to the function", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 145, + 256, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 145, + 129, + 164 + ], + "score": 1.0, + "content": "class", + "type": "text" + }, + { + "bbox": [ + 129, + 147, + 251, + 162 + ], + "score": 0.86, + "content": "\\{ x f ( \\overleftarrow { x } ) _ { [ \\tilde { f } ^ { \\prime } ( x ) ] } : f , f ^ { \\prime } \\in \\mathcal { F } \\} _ { }", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 145, + 256, + 164 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 106, + 168, + 506, + 224 + ], + "lines": [ + { + "bbox": [ + 105, + 167, + 506, + 181 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 506, + 181 + ], + "score": 1.0, + "content": "Main insights. Theorem 2 justifies CST under the expansion assumption. The generalization error", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 179, + 506, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 179, + 172, + 194 + ], + "score": 1.0, + "content": "of the classifier", + "type": "text" + }, + { + "bbox": [ + 172, + 180, + 182, + 191 + ], + "score": 0.89, + "content": "f _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 179, + 435, + 194 + ], + "score": 1.0, + "content": "on the target domain is bounded with the CST loss objective", + "type": "text" + }, + { + "bbox": [ + 435, + 180, + 486, + 192 + ], + "score": 0.93, + "content": "L _ { \\mathrm { C S T } } ( f _ { s } , f _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 179, + 506, + 194 + ], + "score": 1.0, + "content": ", the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 191, + 506, + 203 + ], + "spans": [ + { + "bbox": [ + 106, + 191, + 280, + 203 + ], + "score": 1.0, + "content": "intrinsic property of the data distribution", + "type": "text" + }, + { + "bbox": [ + 280, + 193, + 286, + 202 + ], + "score": 0.73, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 191, + 506, + 203 + ], + "score": 1.0, + "content": ", and the complexity of the function classes. In our", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 200, + 506, + 215 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 150, + 215 + ], + "score": 1.0, + "content": "algorithm,", + "type": "text" + }, + { + "bbox": [ + 151, + 201, + 201, + 213 + ], + "score": 0.93, + "content": "\\bar { L _ { \\mathrm { C S T } } } ( f _ { s } , f _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 200, + 367, + 215 + ], + "score": 1.0, + "content": "is minimized by the neural networks and", + "type": "text" + }, + { + "bbox": [ + 367, + 203, + 373, + 213 + ], + "score": 0.8, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 200, + 506, + 215 + ], + "score": 1.0, + "content": "is a constant. The complexity of", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 212, + 358, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 358, + 226 + ], + "score": 1.0, + "content": "the function class can be controlled with proper regularization.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7 + }, + { + "type": "title", + "bbox": [ + 106, + 233, + 398, + 245 + ], + "lines": [ + { + "bbox": [ + 105, + 231, + 398, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 398, + 248 + ], + "score": 1.0, + "content": "4.2 Hard Case for Feature Adaptation and Standard Self-Training", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 105, + 250, + 504, + 295 + ], + "lines": [ + { + "bbox": [ + 105, + 249, + 504, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 372, + 263 + ], + "score": 1.0, + "content": "To gain more insight, we study UDA in a quadratic neural network", + "type": "text" + }, + { + "bbox": [ + 372, + 249, + 464, + 262 + ], + "score": 0.93, + "content": "f _ { \\theta , \\phi } ( x ) = \\theta ^ { \\top } ( \\phi ^ { \\top } x ) ^ { \\odot 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 249, + 495, + 263 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 495, + 251, + 504, + 261 + ], + "score": 0.8, + "content": "\\odot", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 261, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 505, + 273 + ], + "score": 1.0, + "content": "is element-wise power. In UDA, the source can have multiple solutions but we aim to learn the one", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 272, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 375, + 285 + ], + "score": 1.0, + "content": "working on the target [34]. We design the underlying distributions", + "type": "text" + }, + { + "bbox": [ + 375, + 274, + 381, + 284 + ], + "score": 0.8, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 272, + 399, + 285 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 399, + 274, + 406, + 284 + ], + "score": 0.81, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 272, + 505, + 285 + ], + "score": 1.0, + "content": "in Table 6 to reflect this.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 283, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 283, + 200, + 296 + ], + "score": 1.0, + "content": "Consider the following", + "type": "text" + }, + { + "bbox": [ + 201, + 284, + 210, + 293 + ], + "score": 0.82, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 283, + 227, + 296 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 228, + 284, + 237, + 295 + ], + "score": 0.6, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 283, + 240, + 296 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 241, + 284, + 257, + 296 + ], + "score": 0.49, + "content": "x _ { [ 1 ] }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 283, + 275, + 296 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 275, + 285, + 291, + 296 + ], + "score": 0.88, + "content": "x _ { [ 2 ] }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 283, + 433, + 296 + ], + "score": 1.0, + "content": "are sampled i.i.d. from distribution", + "type": "text" + }, + { + "bbox": [ + 433, + 285, + 440, + 294 + ], + "score": 0.8, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 283, + 453, + 296 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 454, + 284, + 462, + 293 + ], + "score": 0.82, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 283, + 505, + 296 + ], + "score": 1.0, + "content": ", and from", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5 + }, + { + "type": "table", + "bbox": [ + 386, + 312, + 504, + 353 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 387, + 301, + 504, + 311 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 386, + 299, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 386, + 299, + 473, + 313 + ], + "score": 1.0, + "content": "Table 1: The design of", + "type": "text" + }, + { + "bbox": [ + 473, + 303, + 479, + 311 + ], + "score": 0.76, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 299, + 495, + 313 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 496, + 303, + 501, + 311 + ], + "score": 0.67, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 299, + 505, + 313 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "table_body", + "bbox": [ + 386, + 312, + 504, + 353 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 386, + 312, + 504, + 353 + ], + "spans": [ + { + "bbox": [ + 386, + 312, + 504, + 353 + ], + "score": 0.966, + "html": "
Distribution-1+10
Source p[0.050.050.90
Target q0.250.250.50
", + "type": "table", + "image_path": "dec7d5c5c265fa3517e125f23204bae6b6328a41a793093a8f16e95e56e7c393.jpg" + } + ] + } + ], + "index": 19.0, + "virtual_lines": [ + { + "bbox": [ + 386, + 312, + 504, + 332.5 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 386, + 332.5, + 504, + 353.0 + ], + "spans": [], + "index": 20 + } + ] + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 106, + 300, + 380, + 362 + ], + "lines": [ + { + "bbox": [ + 107, + 300, + 380, + 314 + ], + "spans": [ + { + "bbox": [ + 107, + 303, + 113, + 312 + ], + "score": 0.72, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 300, + 127, + 314 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 128, + 301, + 136, + 312 + ], + "score": 0.8, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 300, + 159, + 314 + ], + "score": 1.0, + "content": ". For", + "type": "text" + }, + { + "bbox": [ + 159, + 300, + 198, + 312 + ], + "score": 0.86, + "content": "i \\in [ 3 , d ]", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 300, + 202, + 314 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 202, + 302, + 256, + 314 + ], + "score": 0.84, + "content": "x _ { [ i ] } = \\sigma _ { i } x _ { [ 2 ] }", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 300, + 271, + 314 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 271, + 301, + 280, + 311 + ], + "score": 0.81, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 300, + 299, + 314 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 299, + 303, + 353, + 314 + ], + "score": 0.9, + "content": "x _ { [ i ] } = \\sigma _ { i } x _ { [ 1 ] }", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 300, + 367, + 314 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 368, + 301, + 377, + 312 + ], + "score": 0.81, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 300, + 380, + 314 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 107, + 312, + 381, + 325 + ], + "spans": [ + { + "bbox": [ + 107, + 313, + 155, + 324 + ], + "score": 0.87, + "content": "\\sigma _ { i } \\in \\{ \\pm 1 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 312, + 381, + 325 + ], + "score": 1.0, + "content": "are i.i.d. and uniform. We also assume realizability:", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 102, + 322, + 379, + 356 + ], + "spans": [ + { + "bbox": [ + 102, + 327, + 132, + 356 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 107, + 323, + 168, + 338 + ], + "score": 0.91, + "content": "y = x _ { [ 1 ] } ^ { 2 } - x _ { [ 2 ] } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 338, + 169, + 349 + ], + "score": 0.91, + "content": "i \\in [ 2 , d ]", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 322, + 317, + 339 + ], + "score": 1.0, + "content": "for both source and target. Note that", + "type": "text" + }, + { + "bbox": [ + 170, + 327, + 233, + 356 + ], + "score": 1.0, + "content": "are solutions to", + "type": "text" + }, + { + "bbox": [ + 233, + 338, + 243, + 347 + ], + "score": 0.81, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 327, + 277, + 356 + ], + "score": 1.0, + "content": "but only", + "type": "text" + }, + { + "bbox": [ + 278, + 336, + 339, + 352 + ], + "score": 0.93, + "content": "y = x _ { [ 1 ] } ^ { 2 } - x _ { [ 2 ] } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 322, + 378, + 338 + ], + "score": 0.92, + "content": "y = x _ { [ 1 ] } ^ { 2 } - x _ { [ i ] } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 327, + 379, + 356 + ], + "score": 1.0, + "content": "[1] \u0000 [i]works on", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 107, + 350, + 315, + 363 + ], + "spans": [ + { + "bbox": [ + 107, + 351, + 115, + 362 + ], + "score": 0.79, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 350, + 315, + 363 + ], + "score": 1.0, + "content": ". We visualize this specialized setting in Figure 4.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18.0 + }, + { + "type": "image", + "bbox": [ + 120, + 373, + 483, + 443 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 120, + 373, + 483, + 443 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 120, + 373, + 483, + 443 + ], + "spans": [ + { + "bbox": [ + 120, + 373, + 483, + 443 + ], + "score": 0.961, + "type": "image", + "image_path": "c5b098da78c5868e7858cc364d018d8dfcb55a8acb4b0000cd134653d0e02a42.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 120, + 373, + 483, + 396.3333333333333 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 120, + 396.3333333333333, + 483, + 419.66666666666663 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 120, + 419.66666666666663, + 483, + 442.99999999999994 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 448, + 507, + 509 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 448, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 228, + 460 + ], + "score": 1.0, + "content": "Figure 4: The hard case where", + "type": "text" + }, + { + "bbox": [ + 228, + 449, + 252, + 459 + ], + "score": 0.89, + "content": "d = 3", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 448, + 311, + 460 + ], + "score": 1.0, + "content": ". Green dots for", + "type": "text" + }, + { + "bbox": [ + 311, + 450, + 334, + 459 + ], + "score": 0.91, + "content": "y = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 448, + 382, + 460 + ], + "score": 1.0, + "content": ", red dots for", + "type": "text" + }, + { + "bbox": [ + 382, + 450, + 405, + 459 + ], + "score": 0.9, + "content": "y = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 448, + 473, + 460 + ], + "score": 1.0, + "content": ", and blue dots for", + "type": "text" + }, + { + "bbox": [ + 473, + 450, + 503, + 459 + ], + "score": 0.91, + "content": "y = - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 448, + 506, + 460 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 457, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 414, + 473 + ], + "score": 1.0, + "content": "The grey curve is the classification boundary of different features. The good feature", + "type": "text" + }, + { + "bbox": [ + 415, + 458, + 454, + 471 + ], + "score": 0.94, + "content": "x _ { [ 1 ] } ^ { 2 } - x _ { [ 2 ] } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 457, + 506, + 473 + ], + "score": 1.0, + "content": "works on the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 470, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 343, + 484 + ], + "score": 1.0, + "content": "target domain (shown in (a) and (c)), whereas the spurious feature", + "type": "text" + }, + { + "bbox": [ + 343, + 470, + 383, + 484 + ], + "score": 0.94, + "content": "x _ { [ 1 ] } ^ { 2 } - x _ { [ 3 ] } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 470, + 506, + 484 + ], + "score": 1.0, + "content": "only works on the source domain", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 479, + 507, + 510 + ], + "spans": [ + { + "bbox": [ + 104, + 479, + 171, + 510 + ], + "score": 1.0, + "content": "(shown in (b) andwhile CST learns", + "type": "text" + }, + { + "bbox": [ + 210, + 479, + 464, + 510 + ], + "score": 1.0, + "content": "tion 4.2, we show that feature adaptation and standard self-training learn .", + "type": "text" + }, + { + "bbox": [ + 465, + 482, + 502, + 496 + ], + "score": 0.93, + "content": "x _ { [ 1 ] } ^ { 2 } - x _ { [ 3 ] } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 479, + 507, + 510 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 171, + 495, + 210, + 508 + ], + "spans": [ + { + "bbox": [ + 171, + 495, + 210, + 508 + ], + "score": 0.93, + "content": "x _ { [ 1 ] } ^ { 2 } - x _ { [ 2 ] } ^ { 2 }", + "type": "inline_equation" + } + ], + "index": 29 + } + ], + "index": 27 + } + ], + "index": 25.0 + }, + { + "type": "text", + "bbox": [ + 106, + 515, + 506, + 608 + ], + "lines": [ + { + "bbox": [ + 106, + 515, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 515, + 505, + 527 + ], + "score": 1.0, + "content": "To make the features more tractable, we study the norm-constrained version of the algorithms (details", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 526, + 507, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 526, + 507, + 539 + ], + "score": 1.0, + "content": "are deferred to Section A.3.2). We compare the features learned by feature adaptation, standard self-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 103, + 533, + 504, + 555 + ], + "spans": [ + { + "bbox": [ + 103, + 533, + 444, + 555 + ], + "score": 1.0, + "content": "training, and CST. Intuitively, feature adaptation fails because the ideal target solution", + "type": "text" + }, + { + "bbox": [ + 444, + 537, + 504, + 552 + ], + "score": 0.94, + "content": "y = x _ { [ 1 ] } ^ { 2 } - x _ { [ 2 ] } ^ { 2 }", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 546, + 510, + 568 + ], + "spans": [ + { + "bbox": [ + 104, + 549, + 421, + 567 + ], + "score": 1.0, + "content": "has larger distance in the feature space than other spurious solutions y = x2[1]", + "type": "text" + }, + { + "bbox": [ + 384, + 550, + 443, + 566 + ], + "score": 0.94, + "content": "y = x _ { [ 1 ] } ^ { 2 } - x _ { [ i ] } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 546, + 510, + 568 + ], + "score": 1.0, + "content": "\u0000 x2[i] . Standard self-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 564, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 505, + 576 + ], + "score": 1.0, + "content": "training also fails since it will choose randomly among all solutions. In comparison, CST can recover", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 576, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 505, + 587 + ], + "score": 1.0, + "content": "the ground truth, because it can distinguish the spurious solution resulting in bad pseudo-labels. A", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 585, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 506, + 598 + ], + "score": 1.0, + "content": "classifier trained with those pseudo-labels cannot work on the source domain in turn. This intuition is", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 597, + 309, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 597, + 309, + 609 + ], + "score": 1.0, + "content": "rigorously justified in the following two theorems.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 106, + 610, + 505, + 622 + ], + "lines": [ + { + "bbox": [ + 105, + 608, + 507, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 176, + 624 + ], + "score": 1.0, + "content": "Theorem 3. For", + "type": "text" + }, + { + "bbox": [ + 176, + 610, + 223, + 622 + ], + "score": 0.91, + "content": "\\epsilon \\in ( 0 , 0 . 5 )", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 608, + 507, + 624 + ], + "score": 1.0, + "content": ", the following statements hold for feature adaptation and self-training:", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 108, + 626, + 505, + 654 + ], + "lines": [ + { + "bbox": [ + 106, + 625, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 625, + 180, + 640 + ], + "score": 1.0, + "content": "• For failure rate", + "type": "text" + }, + { + "bbox": [ + 180, + 627, + 204, + 638 + ], + "score": 0.9, + "content": "\\xi > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 625, + 299, + 640 + ], + "score": 1.0, + "content": ", and target dataset size", + "type": "text" + }, + { + "bbox": [ + 299, + 626, + 359, + 641 + ], + "score": 0.94, + "content": "n _ { t } > \\Theta ( \\log { \\frac { 1 } { \\xi } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 625, + 461, + 640 + ], + "score": 1.0, + "content": ", with probability at least", + "type": "text" + }, + { + "bbox": [ + 461, + 627, + 484, + 638 + ], + "score": 0.88, + "content": "1 - \\xi", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 625, + 505, + 640 + ], + "score": 1.0, + "content": "over", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 640, + 468, + 655 + ], + "spans": [ + { + "bbox": [ + 115, + 640, + 279, + 655 + ], + "score": 1.0, + "content": "the sampling of target data, the solution", + "type": "text" + }, + { + "bbox": [ + 279, + 640, + 320, + 654 + ], + "score": 0.9, + "content": "( \\hat { \\theta } _ { \\mathrm { F A } } , \\hat { \\phi } _ { \\mathrm { F A } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 640, + 468, + 655 + ], + "score": 1.0, + "content": "found by feature adaptation satisfies", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + }, + { + "type": "interline_equation", + "bbox": [ + 269, + 662, + 351, + 678 + ], + "lines": [ + { + "bbox": [ + 269, + 662, + 351, + 678 + ], + "spans": [ + { + "bbox": [ + 269, + 662, + 351, + 678 + ], + "score": 0.93, + "content": "\\mathrm { E r r } _ { Q } ( \\hat { \\theta } _ { \\mathrm { F A } } , \\hat { \\phi } _ { \\mathrm { F A } } ) \\geq \\epsilon .", + "type": "interline_equation", + "image_path": "afe6482f8253d3cdc0a14cb5eb569c010b4413eaf5d99d1cc896456d1e87bf37.jpg" + } + ] + } + ], + "index": 41, + "virtual_lines": [ + { + "bbox": [ + 269, + 662, + 351, + 678 + ], + "spans": [], + "index": 41 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 685, + 480, + 701 + ], + "lines": [ + { + "bbox": [ + 102, + 682, + 482, + 705 + ], + "spans": [ + { + "bbox": [ + 102, + 682, + 215, + 705 + ], + "score": 1.0, + "content": "• With probability at least", + "type": "text" + }, + { + "bbox": [ + 216, + 687, + 250, + 702 + ], + "score": 0.93, + "content": "1 - { \\frac { 1 } { d - 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 682, + 304, + 705 + ], + "score": 1.0, + "content": ", the solution", + "type": "text" + }, + { + "bbox": [ + 304, + 686, + 344, + 700 + ], + "score": 0.92, + "content": "( \\hat { \\theta } _ { \\mathrm { S T } } , \\hat { \\phi } _ { \\mathrm { S T } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 682, + 482, + 705 + ], + "score": 1.0, + "content": "of standard self-training satisfies", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "interline_equation", + "bbox": [ + 270, + 708, + 351, + 723 + ], + "lines": [ + { + "bbox": [ + 270, + 708, + 351, + 723 + ], + "spans": [ + { + "bbox": [ + 270, + 708, + 351, + 723 + ], + "score": 0.93, + "content": "\\mathrm { E r r } _ { Q } ( \\hat { \\theta } _ { \\mathrm { S T } } , \\hat { \\phi } _ { \\mathrm { S T } } ) \\geq \\epsilon .", + "type": "interline_equation", + "image_path": "fd18edd7a8a42cef00255f76e999ade6cbb72cc6851eacd590e343946e6c4f62.jpg" + } + ] + } + ], + "index": 43, + "virtual_lines": [ + { + "bbox": [ + 270, + 708, + 351, + 723 + ], + "spans": [], + "index": 43 + } + ] + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 70, + 504, + 99 + ], + "lines": [ + { + "bbox": [ + 106, + 70, + 506, + 86 + ], + "spans": [ + { + "bbox": [ + 106, + 70, + 159, + 86 + ], + "score": 1.0, + "content": "Theorem 2.", + "type": "text" + }, + { + "bbox": [ + 159, + 70, + 194, + 86 + ], + "score": 0.92, + "content": " { \\widehat { \\mathcal { R } } } ( \\mathcal { F } | _ { { \\widehat { P } } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 70, + 450, + 86 + ], + "score": 1.0, + "content": "denotes the empirical Rademacher complexity of function class", + "type": "text" + }, + { + "bbox": [ + 451, + 73, + 460, + 83 + ], + "score": 0.81, + "content": "\\mathcal { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 70, + 506, + 86 + ], + "score": 1.0, + "content": "on dataset", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 84, + 435, + 101 + ], + "spans": [ + { + "bbox": [ + 107, + 84, + 115, + 97 + ], + "score": 0.8, + "content": "\\widehat { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 84, + 235, + 101 + ], + "score": 1.0, + "content": ". For any solution of equation", + "type": "text" + }, + { + "bbox": [ + 236, + 87, + 247, + 97 + ], + "score": 0.29, + "content": "^ { 1 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 84, + 265, + 101 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 265, + 87, + 290, + 99 + ], + "score": 0.89, + "content": "\\gamma > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 84, + 407, + 101 + ], + "score": 1.0, + "content": ", with probability larger than", + "type": "text" + }, + { + "bbox": [ + 407, + 87, + 430, + 97 + ], + "score": 0.83, + "content": "1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 84, + 435, + 101 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 106, + 70, + 506, + 101 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 100, + 505, + 163 + ], + "lines": [ + { + "bbox": [ + 111, + 100, + 502, + 126 + ], + "spans": [ + { + "bbox": [ + 111, + 100, + 502, + 126 + ], + "score": 0.88, + "content": "\\mathrm { E r r } _ { Q } ( f _ { s } ) \\leq L _ { \\mathrm { C S T } } ( f _ { s } , f _ { t } ) + 2 q + \\frac { 4 K } { \\gamma } \\left[ \\widehat { R } ( \\mathcal { F } | _ { \\widehat { P } } ) + \\widehat { \\mathcal { R } } ( \\tilde { \\mathcal { F } } \\times \\mathcal { F } | _ { \\widehat { Q } } ) \\right] + \\frac { 2 } { \\tau } \\left[ \\widehat { R } ( \\mathcal { F } | _ { \\widehat { P } } ) + \\widehat { \\mathcal { R } } ( \\mathcal { F } | _ { \\widehat { Q } } ) \\right] + \\zeta ,", + "type": "inline_equation", + "image_path": "abf9e262a5e3b34a673b2e52b628f0724588d731fe9feb3ec08c87557ddb72ed.jpg" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 128, + 506, + 148 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 133, + 148 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 129, + 306, + 148 + ], + "score": 0.9, + "content": "\\zeta = O \\left( \\sqrt { \\log ( 1 / \\delta ) / n _ { s } } + \\sqrt { \\log ( 1 / \\delta ) / n _ { t } } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 128, + 389, + 148 + ], + "score": 1.0, + "content": "is a low-order term.", + "type": "text" + }, + { + "bbox": [ + 389, + 131, + 419, + 144 + ], + "score": 0.91, + "content": "\\tilde { \\mathcal { F } } \\times \\mathcal { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 128, + 506, + 148 + ], + "score": 1.0, + "content": "refers to the function", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 145, + 256, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 145, + 129, + 164 + ], + "score": 1.0, + "content": "class", + "type": "text" + }, + { + "bbox": [ + 129, + 147, + 251, + 162 + ], + "score": 0.86, + "content": "\\{ x f ( \\overleftarrow { x } ) _ { [ \\tilde { f } ^ { \\prime } ( x ) ] } : f , f ^ { \\prime } \\in \\mathcal { F } \\} _ { }", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 145, + 256, + 164 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 100, + 506, + 164 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 168, + 506, + 224 + ], + "lines": [ + { + "bbox": [ + 105, + 167, + 506, + 181 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 506, + 181 + ], + "score": 1.0, + "content": "Main insights. Theorem 2 justifies CST under the expansion assumption. The generalization error", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 179, + 506, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 179, + 172, + 194 + ], + "score": 1.0, + "content": "of the classifier", + "type": "text" + }, + { + "bbox": [ + 172, + 180, + 182, + 191 + ], + "score": 0.89, + "content": "f _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 179, + 435, + 194 + ], + "score": 1.0, + "content": "on the target domain is bounded with the CST loss objective", + "type": "text" + }, + { + "bbox": [ + 435, + 180, + 486, + 192 + ], + "score": 0.93, + "content": "L _ { \\mathrm { C S T } } ( f _ { s } , f _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 179, + 506, + 194 + ], + "score": 1.0, + "content": ", the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 191, + 506, + 203 + ], + "spans": [ + { + "bbox": [ + 106, + 191, + 280, + 203 + ], + "score": 1.0, + "content": "intrinsic property of the data distribution", + "type": "text" + }, + { + "bbox": [ + 280, + 193, + 286, + 202 + ], + "score": 0.73, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 191, + 506, + 203 + ], + "score": 1.0, + "content": ", and the complexity of the function classes. In our", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 200, + 506, + 215 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 150, + 215 + ], + "score": 1.0, + "content": "algorithm,", + "type": "text" + }, + { + "bbox": [ + 151, + 201, + 201, + 213 + ], + "score": 0.93, + "content": "\\bar { L _ { \\mathrm { C S T } } } ( f _ { s } , f _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 200, + 367, + 215 + ], + "score": 1.0, + "content": "is minimized by the neural networks and", + "type": "text" + }, + { + "bbox": [ + 367, + 203, + 373, + 213 + ], + "score": 0.8, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 200, + 506, + 215 + ], + "score": 1.0, + "content": "is a constant. The complexity of", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 212, + 358, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 358, + 226 + ], + "score": 1.0, + "content": "the function class can be controlled with proper regularization.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 167, + 506, + 226 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 233, + 398, + 245 + ], + "lines": [ + { + "bbox": [ + 105, + 231, + 398, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 398, + 248 + ], + "score": 1.0, + "content": "4.2 Hard Case for Feature Adaptation and Standard Self-Training", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 105, + 250, + 504, + 295 + ], + "lines": [ + { + "bbox": [ + 105, + 249, + 504, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 372, + 263 + ], + "score": 1.0, + "content": "To gain more insight, we study UDA in a quadratic neural network", + "type": "text" + }, + { + "bbox": [ + 372, + 249, + 464, + 262 + ], + "score": 0.93, + "content": "f _ { \\theta , \\phi } ( x ) = \\theta ^ { \\top } ( \\phi ^ { \\top } x ) ^ { \\odot 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 249, + 495, + 263 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 495, + 251, + 504, + 261 + ], + "score": 0.8, + "content": "\\odot", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 261, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 505, + 273 + ], + "score": 1.0, + "content": "is element-wise power. In UDA, the source can have multiple solutions but we aim to learn the one", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 272, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 375, + 285 + ], + "score": 1.0, + "content": "working on the target [34]. We design the underlying distributions", + "type": "text" + }, + { + "bbox": [ + 375, + 274, + 381, + 284 + ], + "score": 0.8, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 272, + 399, + 285 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 399, + 274, + 406, + 284 + ], + "score": 0.81, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 272, + 505, + 285 + ], + "score": 1.0, + "content": "in Table 6 to reflect this.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 283, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 283, + 200, + 296 + ], + "score": 1.0, + "content": "Consider the following", + "type": "text" + }, + { + "bbox": [ + 201, + 284, + 210, + 293 + ], + "score": 0.82, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 283, + 227, + 296 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 228, + 284, + 237, + 295 + ], + "score": 0.6, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 283, + 240, + 296 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 241, + 284, + 257, + 296 + ], + "score": 0.49, + "content": "x _ { [ 1 ] }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 283, + 275, + 296 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 275, + 285, + 291, + 296 + ], + "score": 0.88, + "content": "x _ { [ 2 ] }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 283, + 433, + 296 + ], + "score": 1.0, + "content": "are sampled i.i.d. from distribution", + "type": "text" + }, + { + "bbox": [ + 433, + 285, + 440, + 294 + ], + "score": 0.8, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 283, + 453, + 296 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 454, + 284, + 462, + 293 + ], + "score": 0.82, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 283, + 505, + 296 + ], + "score": 1.0, + "content": ", and from", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 107, + 300, + 380, + 314 + ], + "spans": [ + { + "bbox": [ + 107, + 303, + 113, + 312 + ], + "score": 0.72, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 300, + 127, + 314 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 128, + 301, + 136, + 312 + ], + "score": 0.8, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 300, + 159, + 314 + ], + "score": 1.0, + "content": ". For", + "type": "text" + }, + { + "bbox": [ + 159, + 300, + 198, + 312 + ], + "score": 0.86, + "content": "i \\in [ 3 , d ]", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 300, + 202, + 314 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 202, + 302, + 256, + 314 + ], + "score": 0.84, + "content": "x _ { [ i ] } = \\sigma _ { i } x _ { [ 2 ] }", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 300, + 271, + 314 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 271, + 301, + 280, + 311 + ], + "score": 0.81, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 300, + 299, + 314 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 299, + 303, + 353, + 314 + ], + "score": 0.9, + "content": "x _ { [ i ] } = \\sigma _ { i } x _ { [ 1 ] }", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 300, + 367, + 314 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 368, + 301, + 377, + 312 + ], + "score": 0.81, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 300, + 380, + 314 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 107, + 312, + 381, + 325 + ], + "spans": [ + { + "bbox": [ + 107, + 313, + 155, + 324 + ], + "score": 0.87, + "content": "\\sigma _ { i } \\in \\{ \\pm 1 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 312, + 381, + 325 + ], + "score": 1.0, + "content": "are i.i.d. and uniform. We also assume realizability:", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 102, + 322, + 379, + 356 + ], + "spans": [ + { + "bbox": [ + 102, + 327, + 132, + 356 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 107, + 323, + 168, + 338 + ], + "score": 0.91, + "content": "y = x _ { [ 1 ] } ^ { 2 } - x _ { [ 2 ] } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 338, + 169, + 349 + ], + "score": 0.91, + "content": "i \\in [ 2 , d ]", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 322, + 317, + 339 + ], + "score": 1.0, + "content": "for both source and target. Note that", + "type": "text" + }, + { + "bbox": [ + 170, + 327, + 233, + 356 + ], + "score": 1.0, + "content": "are solutions to", + "type": "text" + }, + { + "bbox": [ + 233, + 338, + 243, + 347 + ], + "score": 0.81, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 327, + 277, + 356 + ], + "score": 1.0, + "content": "but only", + "type": "text" + }, + { + "bbox": [ + 278, + 336, + 339, + 352 + ], + "score": 0.93, + "content": "y = x _ { [ 1 ] } ^ { 2 } - x _ { [ 2 ] } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 322, + 378, + 338 + ], + "score": 0.92, + "content": "y = x _ { [ 1 ] } ^ { 2 } - x _ { [ i ] } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 327, + 379, + 356 + ], + "score": 1.0, + "content": "[1] \u0000 [i]works on", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 107, + 350, + 315, + 363 + ], + "spans": [ + { + "bbox": [ + 107, + 351, + 115, + 362 + ], + "score": 0.79, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 350, + 315, + 363 + ], + "score": 1.0, + "content": ". We visualize this specialized setting in Figure 4.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 249, + 505, + 296 + ] + }, + { + "type": "table", + "bbox": [ + 386, + 312, + 504, + 353 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 387, + 301, + 504, + 311 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 386, + 299, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 386, + 299, + 473, + 313 + ], + "score": 1.0, + "content": "Table 1: The design of", + "type": "text" + }, + { + "bbox": [ + 473, + 303, + 479, + 311 + ], + "score": 0.76, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 299, + 495, + 313 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 496, + 303, + 501, + 311 + ], + "score": 0.67, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 299, + 505, + 313 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "table_body", + "bbox": [ + 386, + 312, + 504, + 353 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 386, + 312, + 504, + 353 + ], + "spans": [ + { + "bbox": [ + 386, + 312, + 504, + 353 + ], + "score": 0.966, + "html": "
Distribution-1+10
Source p[0.050.050.90
Target q0.250.250.50
", + "type": "table", + "image_path": "dec7d5c5c265fa3517e125f23204bae6b6328a41a793093a8f16e95e56e7c393.jpg" + } + ] + } + ], + "index": 19.0, + "virtual_lines": [ + { + "bbox": [ + 386, + 312, + 504, + 332.5 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 386, + 332.5, + 504, + 353.0 + ], + "spans": [], + "index": 20 + } + ] + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 106, + 300, + 380, + 362 + ], + "lines": [], + "index": 18.0, + "bbox_fs": [ + 102, + 300, + 381, + 363 + ], + "lines_deleted": true + }, + { + "type": "image", + "bbox": [ + 120, + 373, + 483, + 443 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 120, + 373, + 483, + 443 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 120, + 373, + 483, + 443 + ], + "spans": [ + { + "bbox": [ + 120, + 373, + 483, + 443 + ], + "score": 0.961, + "type": "image", + "image_path": "c5b098da78c5868e7858cc364d018d8dfcb55a8acb4b0000cd134653d0e02a42.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 120, + 373, + 483, + 396.3333333333333 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 120, + 396.3333333333333, + 483, + 419.66666666666663 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 120, + 419.66666666666663, + 483, + 442.99999999999994 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 448, + 507, + 509 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 448, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 228, + 460 + ], + "score": 1.0, + "content": "Figure 4: The hard case where", + "type": "text" + }, + { + "bbox": [ + 228, + 449, + 252, + 459 + ], + "score": 0.89, + "content": "d = 3", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 448, + 311, + 460 + ], + "score": 1.0, + "content": ". Green dots for", + "type": "text" + }, + { + "bbox": [ + 311, + 450, + 334, + 459 + ], + "score": 0.91, + "content": "y = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 448, + 382, + 460 + ], + "score": 1.0, + "content": ", red dots for", + "type": "text" + }, + { + "bbox": [ + 382, + 450, + 405, + 459 + ], + "score": 0.9, + "content": "y = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 448, + 473, + 460 + ], + "score": 1.0, + "content": ", and blue dots for", + "type": "text" + }, + { + "bbox": [ + 473, + 450, + 503, + 459 + ], + "score": 0.91, + "content": "y = - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 448, + 506, + 460 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 457, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 414, + 473 + ], + "score": 1.0, + "content": "The grey curve is the classification boundary of different features. The good feature", + "type": "text" + }, + { + "bbox": [ + 415, + 458, + 454, + 471 + ], + "score": 0.94, + "content": "x _ { [ 1 ] } ^ { 2 } - x _ { [ 2 ] } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 457, + 506, + 473 + ], + "score": 1.0, + "content": "works on the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 470, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 343, + 484 + ], + "score": 1.0, + "content": "target domain (shown in (a) and (c)), whereas the spurious feature", + "type": "text" + }, + { + "bbox": [ + 343, + 470, + 383, + 484 + ], + "score": 0.94, + "content": "x _ { [ 1 ] } ^ { 2 } - x _ { [ 3 ] } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 470, + 506, + 484 + ], + "score": 1.0, + "content": "only works on the source domain", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 479, + 507, + 510 + ], + "spans": [ + { + "bbox": [ + 104, + 479, + 171, + 510 + ], + "score": 1.0, + "content": "(shown in (b) andwhile CST learns", + "type": "text" + }, + { + "bbox": [ + 210, + 479, + 464, + 510 + ], + "score": 1.0, + "content": "tion 4.2, we show that feature adaptation and standard self-training learn .", + "type": "text" + }, + { + "bbox": [ + 465, + 482, + 502, + 496 + ], + "score": 0.93, + "content": "x _ { [ 1 ] } ^ { 2 } - x _ { [ 3 ] } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 479, + 507, + 510 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 171, + 495, + 210, + 508 + ], + "spans": [ + { + "bbox": [ + 171, + 495, + 210, + 508 + ], + "score": 0.93, + "content": "x _ { [ 1 ] } ^ { 2 } - x _ { [ 2 ] } ^ { 2 }", + "type": "inline_equation" + } + ], + "index": 29 + } + ], + "index": 27 + } + ], + "index": 25.0 + }, + { + "type": "text", + "bbox": [ + 106, + 515, + 506, + 608 + ], + "lines": [ + { + "bbox": [ + 106, + 515, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 515, + 505, + 527 + ], + "score": 1.0, + "content": "To make the features more tractable, we study the norm-constrained version of the algorithms (details", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 526, + 507, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 526, + 507, + 539 + ], + "score": 1.0, + "content": "are deferred to Section A.3.2). We compare the features learned by feature adaptation, standard self-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 103, + 533, + 504, + 555 + ], + "spans": [ + { + "bbox": [ + 103, + 533, + 444, + 555 + ], + "score": 1.0, + "content": "training, and CST. Intuitively, feature adaptation fails because the ideal target solution", + "type": "text" + }, + { + "bbox": [ + 444, + 537, + 504, + 552 + ], + "score": 0.94, + "content": "y = x _ { [ 1 ] } ^ { 2 } - x _ { [ 2 ] } ^ { 2 }", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 546, + 510, + 568 + ], + "spans": [ + { + "bbox": [ + 104, + 549, + 421, + 567 + ], + "score": 1.0, + "content": "has larger distance in the feature space than other spurious solutions y = x2[1]", + "type": "text" + }, + { + "bbox": [ + 384, + 550, + 443, + 566 + ], + "score": 0.94, + "content": "y = x _ { [ 1 ] } ^ { 2 } - x _ { [ i ] } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 546, + 510, + 568 + ], + "score": 1.0, + "content": "\u0000 x2[i] . Standard self-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 564, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 505, + 576 + ], + "score": 1.0, + "content": "training also fails since it will choose randomly among all solutions. In comparison, CST can recover", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 576, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 505, + 587 + ], + "score": 1.0, + "content": "the ground truth, because it can distinguish the spurious solution resulting in bad pseudo-labels. A", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 585, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 506, + 598 + ], + "score": 1.0, + "content": "classifier trained with those pseudo-labels cannot work on the source domain in turn. This intuition is", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 597, + 309, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 597, + 309, + 609 + ], + "score": 1.0, + "content": "rigorously justified in the following two theorems.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 33.5, + "bbox_fs": [ + 103, + 515, + 510, + 609 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 610, + 505, + 622 + ], + "lines": [ + { + "bbox": [ + 105, + 608, + 507, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 176, + 624 + ], + "score": 1.0, + "content": "Theorem 3. For", + "type": "text" + }, + { + "bbox": [ + 176, + 610, + 223, + 622 + ], + "score": 0.91, + "content": "\\epsilon \\in ( 0 , 0 . 5 )", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 608, + 507, + 624 + ], + "score": 1.0, + "content": ", the following statements hold for feature adaptation and self-training:", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 608, + 507, + 624 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 626, + 505, + 654 + ], + "lines": [ + { + "bbox": [ + 106, + 625, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 625, + 180, + 640 + ], + "score": 1.0, + "content": "• For failure rate", + "type": "text" + }, + { + "bbox": [ + 180, + 627, + 204, + 638 + ], + "score": 0.9, + "content": "\\xi > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 625, + 299, + 640 + ], + "score": 1.0, + "content": ", and target dataset size", + "type": "text" + }, + { + "bbox": [ + 299, + 626, + 359, + 641 + ], + "score": 0.94, + "content": "n _ { t } > \\Theta ( \\log { \\frac { 1 } { \\xi } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 625, + 461, + 640 + ], + "score": 1.0, + "content": ", with probability at least", + "type": "text" + }, + { + "bbox": [ + 461, + 627, + 484, + 638 + ], + "score": 0.88, + "content": "1 - \\xi", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 625, + 505, + 640 + ], + "score": 1.0, + "content": "over", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 640, + 468, + 655 + ], + "spans": [ + { + "bbox": [ + 115, + 640, + 279, + 655 + ], + "score": 1.0, + "content": "the sampling of target data, the solution", + "type": "text" + }, + { + "bbox": [ + 279, + 640, + 320, + 654 + ], + "score": 0.9, + "content": "( \\hat { \\theta } _ { \\mathrm { F A } } , \\hat { \\phi } _ { \\mathrm { F A } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 640, + 468, + 655 + ], + "score": 1.0, + "content": "found by feature adaptation satisfies", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 106, + 625, + 505, + 655 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 269, + 662, + 351, + 678 + ], + "lines": [ + { + "bbox": [ + 269, + 662, + 351, + 678 + ], + "spans": [ + { + "bbox": [ + 269, + 662, + 351, + 678 + ], + "score": 0.93, + "content": "\\mathrm { E r r } _ { Q } ( \\hat { \\theta } _ { \\mathrm { F A } } , \\hat { \\phi } _ { \\mathrm { F A } } ) \\geq \\epsilon .", + "type": "interline_equation", + "image_path": "afe6482f8253d3cdc0a14cb5eb569c010b4413eaf5d99d1cc896456d1e87bf37.jpg" + } + ] + } + ], + "index": 41, + "virtual_lines": [ + { + "bbox": [ + 269, + 662, + 351, + 678 + ], + "spans": [], + "index": 41 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 685, + 480, + 701 + ], + "lines": [ + { + "bbox": [ + 102, + 682, + 482, + 705 + ], + "spans": [ + { + "bbox": [ + 102, + 682, + 215, + 705 + ], + "score": 1.0, + "content": "• With probability at least", + "type": "text" + }, + { + "bbox": [ + 216, + 687, + 250, + 702 + ], + "score": 0.93, + "content": "1 - { \\frac { 1 } { d - 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 682, + 304, + 705 + ], + "score": 1.0, + "content": ", the solution", + "type": "text" + }, + { + "bbox": [ + 304, + 686, + 344, + 700 + ], + "score": 0.92, + "content": "( \\hat { \\theta } _ { \\mathrm { S T } } , \\hat { \\phi } _ { \\mathrm { S T } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 682, + 482, + 705 + ], + "score": 1.0, + "content": "of standard self-training satisfies", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42, + "bbox_fs": [ + 102, + 682, + 482, + 705 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 270, + 708, + 351, + 723 + ], + "lines": [ + { + "bbox": [ + 270, + 708, + 351, + 723 + ], + "spans": [ + { + "bbox": [ + 270, + 708, + 351, + 723 + ], + "score": 0.93, + "content": "\\mathrm { E r r } _ { Q } ( \\hat { \\theta } _ { \\mathrm { S T } } , \\hat { \\phi } _ { \\mathrm { S T } } ) \\geq \\epsilon .", + "type": "interline_equation", + "image_path": "fd18edd7a8a42cef00255f76e999ade6cbb72cc6851eacd590e343946e6c4f62.jpg" + } + ] + } + ], + "index": 43, + "virtual_lines": [ + { + "bbox": [ + 270, + 708, + 351, + 723 + ], + "spans": [], + "index": 43 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 72, + 505, + 100 + ], + "lines": [ + { + "bbox": [ + 105, + 71, + 506, + 87 + ], + "spans": [ + { + "bbox": [ + 105, + 71, + 223, + 87 + ], + "score": 1.0, + "content": "Theorem 4. For failure rate", + "type": "text" + }, + { + "bbox": [ + 223, + 73, + 248, + 84 + ], + "score": 0.9, + "content": "\\xi > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 71, + 343, + 87 + ], + "score": 1.0, + "content": ", and target dataset size", + "type": "text" + }, + { + "bbox": [ + 343, + 72, + 403, + 87 + ], + "score": 0.93, + "content": "\\begin{array} { r } { n _ { t } > \\Theta ( \\log { \\frac { 1 } { \\xi } } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 71, + 506, + 87 + ], + "score": 1.0, + "content": ", with probability at least", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 86, + 452, + 101 + ], + "spans": [ + { + "bbox": [ + 106, + 87, + 129, + 100 + ], + "score": 0.83, + "content": "1 - \\xi ,", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 87, + 192, + 101 + ], + "score": 1.0, + "content": ", the solution of", + "type": "text" + }, + { + "bbox": [ + 193, + 86, + 262, + 100 + ], + "score": 0.9, + "content": "C S T ( \\hat { \\phi } _ { \\mathrm { C S T } } , \\hat { \\theta } _ { \\mathrm { C S T } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 87, + 452, + 101 + ], + "score": 1.0, + "content": "recovers the ground truth of the target dataset:", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 267, + 117, + 360, + 133 + ], + "lines": [ + { + "bbox": [ + 267, + 117, + 360, + 133 + ], + "spans": [ + { + "bbox": [ + 267, + 117, + 360, + 133 + ], + "score": 0.93, + "content": "\\mathrm { E r r } _ { Q } ( \\hat { \\theta } _ { \\mathrm { C S T } } , \\hat { \\phi } _ { \\mathrm { C S T } } ) = 0 .", + "type": "interline_equation", + "image_path": "a687f52493667af53742d40a8ef8dff8469302111c5c6a72746feb742d9f3911.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 267, + 117, + 360, + 133 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "title", + "bbox": [ + 107, + 140, + 191, + 154 + ], + "lines": [ + { + "bbox": [ + 104, + 139, + 193, + 157 + ], + "spans": [ + { + "bbox": [ + 104, + 139, + 193, + 157 + ], + "score": 1.0, + "content": "5 Experiments", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 108, + 160, + 505, + 193 + ], + "lines": [ + { + "bbox": [ + 105, + 159, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 506, + 173 + ], + "score": 1.0, + "content": "We test the performance of the proposed method on both vision and language datasets. Cycle Self-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 171, + 506, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 506, + 183 + ], + "score": 1.0, + "content": "Training (CST) consistently outperforms state-of-the-art feature adaptation and self-training methods.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 181, + 358, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 358, + 195 + ], + "score": 1.0, + "content": "Code is available at https://github.com/Liuhong99/CST.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "title", + "bbox": [ + 107, + 201, + 155, + 212 + ], + "lines": [ + { + "bbox": [ + 105, + 198, + 156, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 156, + 216 + ], + "score": 1.0, + "content": "5.1 Setup", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 216, + 505, + 282 + ], + "lines": [ + { + "bbox": [ + 106, + 216, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 106, + 216, + 506, + 228 + ], + "score": 1.0, + "content": "Datasets. We experiment on visual object recognition and linguistic sentiment classification tasks:", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 226, + 506, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 506, + 240 + ], + "score": 1.0, + "content": "Office-Home [64] has 65 classes from four kinds of environment with large domain gap: Artistic (Ar),", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 237, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 199, + 250 + ], + "score": 1.0, + "content": "Clip Art (Cl), Product", + "type": "text" + }, + { + "bbox": [ + 200, + 238, + 217, + 249 + ], + "score": 0.66, + "content": "( \\mathbf { P r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 237, + 506, + 250 + ], + "score": 1.0, + "content": ", and Real-World (Rw); VisDA-2017 [45] is a large-scale UDA dataset", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 248, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 415, + 261 + ], + "score": 1.0, + "content": "with two domains named Synthetic and Real. The datasets consist of over", + "type": "text" + }, + { + "bbox": [ + 415, + 249, + 437, + 259 + ], + "score": 0.47, + "content": "2 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 248, + 505, + 261 + ], + "score": 1.0, + "content": "images from 12", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 260, + 506, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 506, + 272 + ], + "score": 1.0, + "content": "categories of objects; Amazon Review [10] is a linguistic sentiment classification dataset of product", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 271, + 434, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 236, + 282 + ], + "score": 1.0, + "content": "reviews in four products: Books", + "type": "text" + }, + { + "bbox": [ + 236, + 271, + 250, + 282 + ], + "score": 0.31, + "content": "\\mathbf { ( B ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 271, + 416, + 282 + ], + "score": 1.0, + "content": ", DVDs (D), Electronics (E), and Kitchen", + "type": "text" + }, + { + "bbox": [ + 416, + 271, + 430, + 281 + ], + "score": 0.31, + "content": "\\mathbf { \\eta } ( \\mathbf { K } )", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 271, + 434, + 282 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 106, + 286, + 506, + 433 + ], + "lines": [ + { + "bbox": [ + 106, + 287, + 506, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 287, + 506, + 299 + ], + "score": 1.0, + "content": "Implementation. We use ResNet-50 [26] (pretrained on ImageNet [53]) as feature extractors for", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 298, + 506, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 506, + 310 + ], + "score": 1.0, + "content": "vision tasks, and BERT [16] for linguistic tasks. On VisDA-2017, we also provide results of ResNet-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 309, + 506, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 506, + 321 + ], + "score": 1.0, + "content": "101 to include more baselines. We use cross-entropy loss for classification on the source domain.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 320, + 506, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 321, + 228, + 335 + ], + "score": 1.0, + "content": "When training the target head", + "type": "text" + }, + { + "bbox": [ + 229, + 320, + 238, + 332 + ], + "score": 0.88, + "content": "\\widehat { \\theta } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 321, + 506, + 335 + ], + "score": 1.0, + "content": "and updating the feature extractor with CST, we use squared loss", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 333, + 506, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 235, + 346 + ], + "score": 1.0, + "content": "to get the analytical solution of", + "type": "text" + }, + { + "bbox": [ + 235, + 333, + 245, + 345 + ], + "score": 0.88, + "content": "\\widehat { \\theta } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 334, + 506, + 346 + ], + "score": 1.0, + "content": "directly and avoid calculating second order derivatives as meta-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 345, + 506, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 506, + 357 + ], + "score": 1.0, + "content": "learning [18]. Details on adapting squared loss to multi-class classification are deferred to Appendix B.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 355, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 271, + 369 + ], + "score": 1.0, + "content": "We adopt SGD with initial learning rate", + "type": "text" + }, + { + "bbox": [ + 271, + 356, + 322, + 367 + ], + "score": 0.92, + "content": "\\eta _ { 0 } = 2 e - 3", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 355, + 438, + 369 + ], + "score": 1.0, + "content": "for image classification and", + "type": "text" + }, + { + "bbox": [ + 438, + 356, + 490, + 367 + ], + "score": 0.91, + "content": "\\eta _ { 0 } = 5 e - 4", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 355, + 506, + 369 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 367, + 506, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 506, + 379 + ], + "score": 1.0, + "content": "sentiment classification. Following standard protocol in [26], we decay the learning rate by 0.1", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 377, + 506, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 506, + 390 + ], + "score": 1.0, + "content": "each 50 epochs until 150 epochs. We run all the tasks 3 times and report mean and deviation in", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 388, + 506, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 506, + 401 + ], + "score": 1.0, + "content": "top-1 accuracy. For VisDA-2017, we report the mean class accuracy. Following Theorem 2, we", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 399, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 347, + 412 + ], + "score": 1.0, + "content": "also enhance CST with sharpness-aware regularization [19]", + "type": "text" + }, + { + "bbox": [ + 347, + 400, + 397, + 411 + ], + "score": 0.63, + "content": "( \\mathbf { C S T + S A M } )", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 399, + 505, + 412 + ], + "score": 1.0, + "content": ", which help regularize the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 410, + 506, + 422 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 506, + 422 + ], + "score": 1.0, + "content": "Lipschitzness of the function class. Due to space limit, we report mean accuracies in Tables 2 and 3", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 421, + 286, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 286, + 434 + ], + "score": 1.0, + "content": "and defer standard deviation to Appendix C.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 20 + }, + { + "type": "title", + "bbox": [ + 107, + 440, + 170, + 451 + ], + "lines": [ + { + "bbox": [ + 105, + 439, + 171, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 171, + 453 + ], + "score": 1.0, + "content": "5.2 Baselines", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 109, + 458, + 503, + 492 + ], + "lines": [ + { + "bbox": [ + 106, + 457, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 106, + 457, + 505, + 471 + ], + "score": 1.0, + "content": "We compare with two lines of works in domain adaptation: feature adaptation and self-training. We", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 107, + 469, + 504, + 482 + ], + "spans": [ + { + "bbox": [ + 107, + 469, + 504, + 482 + ], + "score": 1.0, + "content": "also compare with more complex state-of-the-arts and create stronger baselines by combining feature", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 479, + 222, + 494 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 222, + 494 + ], + "score": 1.0, + "content": "adaptation and self-training.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 496, + 506, + 530 + ], + "lines": [ + { + "bbox": [ + 105, + 496, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 506, + 509 + ], + "score": 1.0, + "content": "Feature Adaptation: DANN [22], MCD [54], CDAN [37] (which improves DANN with pseudo-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 506, + 506, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 506, + 521 + ], + "score": 1.0, + "content": "label conditioning), MDD [73] (which improves previous domain adaptation with margin theory),", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 518, + 417, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 417, + 532 + ], + "score": 1.0, + "content": "Implicit Alignment (IA) [28] (which improves MDD to deal with label shift).", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 534, + 505, + 601 + ], + "lines": [ + { + "bbox": [ + 106, + 535, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 535, + 505, + 546 + ], + "score": 1.0, + "content": "Self-Training. We include VAT [40], MixMatch [8] and FixMatch [57] in the semi-supervised", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 546, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 546, + 506, + 558 + ], + "score": 1.0, + "content": "learning literature as self-training methods. We also compare with self-training methods for UDA:", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 556, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 506, + 569 + ], + "score": 1.0, + "content": "CBST [77], which considers class imbalance in standard self-training, and KLD [78], which improves", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 567, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 505, + 580 + ], + "score": 1.0, + "content": "CBST with label regularization. However, these methods involve tricks specified for convolutional", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 578, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 505, + 591 + ], + "score": 1.0, + "content": "networks. Thus, in sentiment classification tasks where we use BERT backbones, we compare with", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 590, + 437, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 338, + 601 + ], + "score": 1.0, + "content": "other consistency regularization baselines: VAT [40], VAT", + "type": "text" + }, + { + "bbox": [ + 339, + 591, + 345, + 599 + ], + "score": 0.26, + "content": "^ { \\cdot } +", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 590, + 437, + 601 + ], + "score": 1.0, + "content": "Entropy Minimization.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 106, + 605, + 504, + 628 + ], + "lines": [ + { + "bbox": [ + 105, + 605, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 191, + 618 + ], + "score": 1.0, + "content": "Feature Adaptation", + "type": "text" + }, + { + "bbox": [ + 192, + 607, + 200, + 616 + ], + "score": 0.73, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 605, + 505, + 618 + ], + "score": 1.0, + "content": "Self-Training. DIRT-T [56] combines DANN, VAT, and entropy minimiza-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 617, + 471, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 319, + 628 + ], + "score": 1.0, + "content": "tion. We also create more powerful baselines: CDAN", + "type": "text" + }, + { + "bbox": [ + 320, + 618, + 326, + 626 + ], + "score": 0.41, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 617, + 343, + 628 + ], + "score": 1.0, + "content": "VAT", + "type": "text" + }, + { + "bbox": [ + 344, + 618, + 350, + 626 + ], + "score": 0.26, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 617, + 424, + 628 + ], + "score": 1.0, + "content": "Entropy and MDD", + "type": "text" + }, + { + "bbox": [ + 424, + 618, + 430, + 626 + ], + "score": 0.34, + "content": "+", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 617, + 471, + 628 + ], + "score": 1.0, + "content": "Fixmatch.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 106, + 632, + 504, + 655 + ], + "lines": [ + { + "bbox": [ + 106, + 632, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 506, + 645 + ], + "score": 1.0, + "content": "Other SOTA. AFN [69] boosts transferability by large norm. STAR [38] aligns domains with stochas-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 643, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 506, + 657 + ], + "score": 1.0, + "content": "tic classifiers. SENTRY [48] selects confident examples with a committee of random augmentations.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5 + }, + { + "type": "title", + "bbox": [ + 106, + 663, + 162, + 674 + ], + "lines": [ + { + "bbox": [ + 106, + 662, + 162, + 675 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 162, + 675 + ], + "score": 1.0, + "content": "5.3 Results", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "text", + "bbox": [ + 108, + 678, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 678, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 505, + 689 + ], + "score": 1.0, + "content": "Results on 12 pairs of Office-Home tasks are shown in Table 2. When domain shift is large, standard", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 689, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 505, + 701 + ], + "score": 1.0, + "content": "self-training methods such as VAT and FixMatch suffer from the decay in pseudo-label quality. CST", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 700, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 506, + 712 + ], + "score": 1.0, + "content": "outperforms feature adaptation and self-training methods significantly in 9 out of 12 tasks. Note that", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 709, + 412, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 412, + 724 + ], + "score": 1.0, + "content": "CST does not involve manually setting confidence threshold or reweighting.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 46.5 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 742, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 740, + 310, + 752 + ], + "spans": [ + { + "bbox": [ + 301, + 740, + 310, + 752 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 12, + "width": 9 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 72, + 505, + 100 + ], + "lines": [ + { + "bbox": [ + 105, + 71, + 506, + 87 + ], + "spans": [ + { + "bbox": [ + 105, + 71, + 223, + 87 + ], + "score": 1.0, + "content": "Theorem 4. For failure rate", + "type": "text" + }, + { + "bbox": [ + 223, + 73, + 248, + 84 + ], + "score": 0.9, + "content": "\\xi > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 71, + 343, + 87 + ], + "score": 1.0, + "content": ", and target dataset size", + "type": "text" + }, + { + "bbox": [ + 343, + 72, + 403, + 87 + ], + "score": 0.93, + "content": "\\begin{array} { r } { n _ { t } > \\Theta ( \\log { \\frac { 1 } { \\xi } } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 71, + 506, + 87 + ], + "score": 1.0, + "content": ", with probability at least", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 86, + 452, + 101 + ], + "spans": [ + { + "bbox": [ + 106, + 87, + 129, + 100 + ], + "score": 0.83, + "content": "1 - \\xi ,", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 87, + 192, + 101 + ], + "score": 1.0, + "content": ", the solution of", + "type": "text" + }, + { + "bbox": [ + 193, + 86, + 262, + 100 + ], + "score": 0.9, + "content": "C S T ( \\hat { \\phi } _ { \\mathrm { C S T } } , \\hat { \\theta } _ { \\mathrm { C S T } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 87, + 452, + 101 + ], + "score": 1.0, + "content": "recovers the ground truth of the target dataset:", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 71, + 506, + 101 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 267, + 117, + 360, + 133 + ], + "lines": [ + { + "bbox": [ + 267, + 117, + 360, + 133 + ], + "spans": [ + { + "bbox": [ + 267, + 117, + 360, + 133 + ], + "score": 0.93, + "content": "\\mathrm { E r r } _ { Q } ( \\hat { \\theta } _ { \\mathrm { C S T } } , \\hat { \\phi } _ { \\mathrm { C S T } } ) = 0 .", + "type": "interline_equation", + "image_path": "a687f52493667af53742d40a8ef8dff8469302111c5c6a72746feb742d9f3911.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 267, + 117, + 360, + 133 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "title", + "bbox": [ + 107, + 140, + 191, + 154 + ], + "lines": [ + { + "bbox": [ + 104, + 139, + 193, + 157 + ], + "spans": [ + { + "bbox": [ + 104, + 139, + 193, + 157 + ], + "score": 1.0, + "content": "5 Experiments", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 108, + 160, + 505, + 193 + ], + "lines": [ + { + "bbox": [ + 105, + 159, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 506, + 173 + ], + "score": 1.0, + "content": "We test the performance of the proposed method on both vision and language datasets. Cycle Self-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 171, + 506, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 506, + 183 + ], + "score": 1.0, + "content": "Training (CST) consistently outperforms state-of-the-art feature adaptation and self-training methods.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 181, + 358, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 358, + 195 + ], + "score": 1.0, + "content": "Code is available at https://github.com/Liuhong99/CST.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 159, + 506, + 195 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 201, + 155, + 212 + ], + "lines": [ + { + "bbox": [ + 105, + 198, + 156, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 156, + 216 + ], + "score": 1.0, + "content": "5.1 Setup", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 216, + 505, + 282 + ], + "lines": [ + { + "bbox": [ + 106, + 216, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 106, + 216, + 506, + 228 + ], + "score": 1.0, + "content": "Datasets. We experiment on visual object recognition and linguistic sentiment classification tasks:", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 226, + 506, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 506, + 240 + ], + "score": 1.0, + "content": "Office-Home [64] has 65 classes from four kinds of environment with large domain gap: Artistic (Ar),", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 237, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 199, + 250 + ], + "score": 1.0, + "content": "Clip Art (Cl), Product", + "type": "text" + }, + { + "bbox": [ + 200, + 238, + 217, + 249 + ], + "score": 0.66, + "content": "( \\mathbf { P r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 237, + 506, + 250 + ], + "score": 1.0, + "content": ", and Real-World (Rw); VisDA-2017 [45] is a large-scale UDA dataset", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 248, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 415, + 261 + ], + "score": 1.0, + "content": "with two domains named Synthetic and Real. The datasets consist of over", + "type": "text" + }, + { + "bbox": [ + 415, + 249, + 437, + 259 + ], + "score": 0.47, + "content": "2 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 248, + 505, + 261 + ], + "score": 1.0, + "content": "images from 12", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 260, + 506, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 506, + 272 + ], + "score": 1.0, + "content": "categories of objects; Amazon Review [10] is a linguistic sentiment classification dataset of product", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 271, + 434, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 236, + 282 + ], + "score": 1.0, + "content": "reviews in four products: Books", + "type": "text" + }, + { + "bbox": [ + 236, + 271, + 250, + 282 + ], + "score": 0.31, + "content": "\\mathbf { ( B ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 271, + 416, + 282 + ], + "score": 1.0, + "content": ", DVDs (D), Electronics (E), and Kitchen", + "type": "text" + }, + { + "bbox": [ + 416, + 271, + 430, + 281 + ], + "score": 0.31, + "content": "\\mathbf { \\eta } ( \\mathbf { K } )", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 271, + 434, + 282 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 216, + 506, + 282 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 286, + 506, + 433 + ], + "lines": [ + { + "bbox": [ + 106, + 287, + 506, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 287, + 506, + 299 + ], + "score": 1.0, + "content": "Implementation. We use ResNet-50 [26] (pretrained on ImageNet [53]) as feature extractors for", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 298, + 506, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 506, + 310 + ], + "score": 1.0, + "content": "vision tasks, and BERT [16] for linguistic tasks. On VisDA-2017, we also provide results of ResNet-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 309, + 506, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 506, + 321 + ], + "score": 1.0, + "content": "101 to include more baselines. We use cross-entropy loss for classification on the source domain.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 320, + 506, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 321, + 228, + 335 + ], + "score": 1.0, + "content": "When training the target head", + "type": "text" + }, + { + "bbox": [ + 229, + 320, + 238, + 332 + ], + "score": 0.88, + "content": "\\widehat { \\theta } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 321, + 506, + 335 + ], + "score": 1.0, + "content": "and updating the feature extractor with CST, we use squared loss", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 333, + 506, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 235, + 346 + ], + "score": 1.0, + "content": "to get the analytical solution of", + "type": "text" + }, + { + "bbox": [ + 235, + 333, + 245, + 345 + ], + "score": 0.88, + "content": "\\widehat { \\theta } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 334, + 506, + 346 + ], + "score": 1.0, + "content": "directly and avoid calculating second order derivatives as meta-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 345, + 506, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 506, + 357 + ], + "score": 1.0, + "content": "learning [18]. Details on adapting squared loss to multi-class classification are deferred to Appendix B.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 355, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 271, + 369 + ], + "score": 1.0, + "content": "We adopt SGD with initial learning rate", + "type": "text" + }, + { + "bbox": [ + 271, + 356, + 322, + 367 + ], + "score": 0.92, + "content": "\\eta _ { 0 } = 2 e - 3", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 355, + 438, + 369 + ], + "score": 1.0, + "content": "for image classification and", + "type": "text" + }, + { + "bbox": [ + 438, + 356, + 490, + 367 + ], + "score": 0.91, + "content": "\\eta _ { 0 } = 5 e - 4", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 355, + 506, + 369 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 367, + 506, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 506, + 379 + ], + "score": 1.0, + "content": "sentiment classification. Following standard protocol in [26], we decay the learning rate by 0.1", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 377, + 506, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 506, + 390 + ], + "score": 1.0, + "content": "each 50 epochs until 150 epochs. We run all the tasks 3 times and report mean and deviation in", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 388, + 506, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 506, + 401 + ], + "score": 1.0, + "content": "top-1 accuracy. For VisDA-2017, we report the mean class accuracy. Following Theorem 2, we", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 399, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 347, + 412 + ], + "score": 1.0, + "content": "also enhance CST with sharpness-aware regularization [19]", + "type": "text" + }, + { + "bbox": [ + 347, + 400, + 397, + 411 + ], + "score": 0.63, + "content": "( \\mathbf { C S T + S A M } )", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 399, + 505, + 412 + ], + "score": 1.0, + "content": ", which help regularize the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 410, + 506, + 422 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 506, + 422 + ], + "score": 1.0, + "content": "Lipschitzness of the function class. Due to space limit, we report mean accuracies in Tables 2 and 3", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 421, + 286, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 286, + 434 + ], + "score": 1.0, + "content": "and defer standard deviation to Appendix C.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 287, + 506, + 434 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 440, + 170, + 451 + ], + "lines": [ + { + "bbox": [ + 105, + 439, + 171, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 171, + 453 + ], + "score": 1.0, + "content": "5.2 Baselines", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 109, + 458, + 503, + 492 + ], + "lines": [ + { + "bbox": [ + 106, + 457, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 106, + 457, + 505, + 471 + ], + "score": 1.0, + "content": "We compare with two lines of works in domain adaptation: feature adaptation and self-training. We", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 107, + 469, + 504, + 482 + ], + "spans": [ + { + "bbox": [ + 107, + 469, + 504, + 482 + ], + "score": 1.0, + "content": "also compare with more complex state-of-the-arts and create stronger baselines by combining feature", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 479, + 222, + 494 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 222, + 494 + ], + "score": 1.0, + "content": "adaptation and self-training.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29, + "bbox_fs": [ + 106, + 457, + 505, + 494 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 496, + 506, + 530 + ], + "lines": [ + { + "bbox": [ + 105, + 496, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 506, + 509 + ], + "score": 1.0, + "content": "Feature Adaptation: DANN [22], MCD [54], CDAN [37] (which improves DANN with pseudo-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 506, + 506, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 506, + 521 + ], + "score": 1.0, + "content": "label conditioning), MDD [73] (which improves previous domain adaptation with margin theory),", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 518, + 417, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 417, + 532 + ], + "score": 1.0, + "content": "Implicit Alignment (IA) [28] (which improves MDD to deal with label shift).", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 496, + 506, + 532 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 534, + 505, + 601 + ], + "lines": [ + { + "bbox": [ + 106, + 535, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 535, + 505, + 546 + ], + "score": 1.0, + "content": "Self-Training. We include VAT [40], MixMatch [8] and FixMatch [57] in the semi-supervised", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 546, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 546, + 506, + 558 + ], + "score": 1.0, + "content": "learning literature as self-training methods. We also compare with self-training methods for UDA:", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 556, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 506, + 569 + ], + "score": 1.0, + "content": "CBST [77], which considers class imbalance in standard self-training, and KLD [78], which improves", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 567, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 505, + 580 + ], + "score": 1.0, + "content": "CBST with label regularization. However, these methods involve tricks specified for convolutional", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 578, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 505, + 591 + ], + "score": 1.0, + "content": "networks. Thus, in sentiment classification tasks where we use BERT backbones, we compare with", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 590, + 437, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 338, + 601 + ], + "score": 1.0, + "content": "other consistency regularization baselines: VAT [40], VAT", + "type": "text" + }, + { + "bbox": [ + 339, + 591, + 345, + 599 + ], + "score": 0.26, + "content": "^ { \\cdot } +", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 590, + 437, + 601 + ], + "score": 1.0, + "content": "Entropy Minimization.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 535, + 506, + 601 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 605, + 504, + 628 + ], + "lines": [ + { + "bbox": [ + 105, + 605, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 191, + 618 + ], + "score": 1.0, + "content": "Feature Adaptation", + "type": "text" + }, + { + "bbox": [ + 192, + 607, + 200, + 616 + ], + "score": 0.73, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 605, + 505, + 618 + ], + "score": 1.0, + "content": "Self-Training. DIRT-T [56] combines DANN, VAT, and entropy minimiza-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 617, + 471, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 319, + 628 + ], + "score": 1.0, + "content": "tion. We also create more powerful baselines: CDAN", + "type": "text" + }, + { + "bbox": [ + 320, + 618, + 326, + 626 + ], + "score": 0.41, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 617, + 343, + 628 + ], + "score": 1.0, + "content": "VAT", + "type": "text" + }, + { + "bbox": [ + 344, + 618, + 350, + 626 + ], + "score": 0.26, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 617, + 424, + 628 + ], + "score": 1.0, + "content": "Entropy and MDD", + "type": "text" + }, + { + "bbox": [ + 424, + 618, + 430, + 626 + ], + "score": 0.34, + "content": "+", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 617, + 471, + 628 + ], + "score": 1.0, + "content": "Fixmatch.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 605, + 505, + 628 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 632, + 504, + 655 + ], + "lines": [ + { + "bbox": [ + 106, + 632, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 506, + 645 + ], + "score": 1.0, + "content": "Other SOTA. AFN [69] boosts transferability by large norm. STAR [38] aligns domains with stochas-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 643, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 506, + 657 + ], + "score": 1.0, + "content": "tic classifiers. SENTRY [48] selects confident examples with a committee of random augmentations.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 632, + 506, + 657 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 663, + 162, + 674 + ], + "lines": [ + { + "bbox": [ + 106, + 662, + 162, + 675 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 162, + 675 + ], + "score": 1.0, + "content": "5.3 Results", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "text", + "bbox": [ + 108, + 678, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 678, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 505, + 689 + ], + "score": 1.0, + "content": "Results on 12 pairs of Office-Home tasks are shown in Table 2. When domain shift is large, standard", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 689, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 505, + 701 + ], + "score": 1.0, + "content": "self-training methods such as VAT and FixMatch suffer from the decay in pseudo-label quality. CST", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 700, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 506, + 712 + ], + "score": 1.0, + "content": "outperforms feature adaptation and self-training methods significantly in 9 out of 12 tasks. Note that", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 709, + 412, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 412, + 724 + ], + "score": 1.0, + "content": "CST does not involve manually setting confidence threshold or reweighting.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 46.5, + "bbox_fs": [ + 105, + 678, + 506, + 724 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 107, + 83, + 505, + 190 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 119, + 71, + 486, + 83 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 122, + 70, + 488, + 85 + ], + "spans": [ + { + "bbox": [ + 122, + 70, + 199, + 85 + ], + "score": 1.0, + "content": "Table 2: Accuracy", + "type": "text" + }, + { + "bbox": [ + 200, + 72, + 215, + 82 + ], + "score": 0.71, + "content": "( \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 70, + 488, + 85 + ], + "score": 1.0, + "content": "on Office-Home for unsupervised domain adaptation (ResNet-50).", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 107, + 83, + 505, + 190 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 83, + 505, + 190 + ], + "spans": [ + { + "bbox": [ + 107, + 83, + 505, + 190 + ], + "score": 0.978, + "html": "
Method|Ar-Cl Ar-Pr Ar-Rw Cl-Ar Cl-Pr Cl-Rw Pr-Ar Pr-CIPr-Rw Rw-Ar Rw-Cl Rw-Pr|Avg.
DANN [22]45.659.370.147.058.560.946.143.768.563.251.876.857.6
CDAN [37]50.770.676.057.670.070.057.450.977.370.956.781.665.8
CDAN+VAT+Entropy52.271.576.461.170.367.859.554.478.673.259.082.767.3
FixMatch [57]51.874.280.163.573.861.364.751.480.073.356.881.767.7
MDD [73]54.973.777.860.071.471.861.253.678.172.560.282.368.1
MDD+IA [28]56.277.979.264.473.174.464.254.279.971.258.183.169.5
SENTRY [48]61.877.480.166.371.674.766.863.080.974.066.384.172.2
CST59.079.683.468.477.176.768.956.483.075.362.285.1|73.0
", + "type": "table", + "image_path": "eb42d296b2f1285d0c7b99e47a1d81c9ac4a636562d148c0779058e73bc8001b.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 107, + 83, + 505, + 118.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 118.66666666666666, + 505, + 154.33333333333331 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 107, + 154.33333333333331, + 505, + 189.99999999999997 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "table", + "bbox": [ + 106, + 213, + 504, + 299 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 112, + 200, + 494, + 212 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 117, + 200, + 494, + 213 + ], + "spans": [ + { + "bbox": [ + 117, + 200, + 192, + 213 + ], + "score": 1.0, + "content": "Table 3: Accuracy", + "type": "text" + }, + { + "bbox": [ + 193, + 201, + 209, + 212 + ], + "score": 0.75, + "content": "( \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 200, + 494, + 213 + ], + "score": 1.0, + "content": "on Multi-Domain Sentiment Dataset for domain adaptation with BERT.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "table_body", + "bbox": [ + 106, + 213, + 504, + 299 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 213, + 504, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 504, + 299 + ], + "score": 0.974, + "html": "
MethodB-DB-EB-KD-BD-ED-KE-BE-DE-KK-BK-DK-EAvg.
Source-only89.788.490.990.188.590.286.988.591.587.687.391.289.2
DANN [22]90.289.590.991.090.690.287.187.592.887.887.693.289.9
VAT[40]90.691.091.790.890.892.087.286.992.686.987.792.990.1
VAT+Entropy90.491.391.591.091.192.487.586.392.486.587.593.190.1
MDD [73]90.490.491.890.290.991.087.586.392.589.087.992.190.0
CST91.592.992.691.992.693.590.289.493.887.988.393.591.5
", + "type": "table", + "image_path": "064187228bcfd5fa0d44b25d3abd40425be164827f67f87214f6fccf6617bc69.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 106, + 213, + 504, + 241.66666666666666 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 241.66666666666666, + 504, + 270.3333333333333 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 106, + 270.3333333333333, + 504, + 299.0 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 5.0 + }, + { + "type": "text", + "bbox": [ + 107, + 326, + 505, + 370 + ], + "lines": [ + { + "bbox": [ + 104, + 325, + 507, + 339 + ], + "spans": [ + { + "bbox": [ + 104, + 325, + 507, + 339 + ], + "score": 1.0, + "content": "Table 4 shows the results on VisDA-2017. CST surpasses state-of-the-arts with ResNet-50 and ResNet-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 336, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 505, + 351 + ], + "score": 1.0, + "content": "101 backbones. We also combine feature adaptation and self-training (DIRT-T, CDAN+VAT+entropy", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 348, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 147, + 361 + ], + "score": 1.0, + "content": "and MDD", + "type": "text" + }, + { + "bbox": [ + 148, + 350, + 154, + 358 + ], + "score": 0.38, + "content": "^ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 348, + 505, + 361 + ], + "score": 1.0, + "content": "FixMatch) to test if feature adaptation alleviates the negative effect of domain shift in", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 359, + 480, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 359, + 480, + 371 + ], + "score": 1.0, + "content": "standard self-training. Results indicate that CST is a better solution than simple combination.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 106, + 375, + 505, + 420 + ], + "lines": [ + { + "bbox": [ + 105, + 375, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 505, + 388 + ], + "score": 1.0, + "content": "While most traditional self-training methods include techniques specified for ConvNets such as", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 386, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 505, + 398 + ], + "score": 1.0, + "content": "Mixup [72], CST is a universal method and can directly work on sentiment classification by simply", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 398, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 505, + 410 + ], + "score": 1.0, + "content": "replacing the head and training objective of BERT [16]. In Table 3, most feature adaptation baselines", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 408, + 507, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 507, + 421 + ], + "score": 1.0, + "content": "improve over source only marginally, but CST outperforms all baselines on most tasks significantly.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5 + }, + { + "type": "title", + "bbox": [ + 107, + 434, + 166, + 446 + ], + "lines": [ + { + "bbox": [ + 105, + 433, + 168, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 168, + 447 + ], + "score": 1.0, + "content": "5.4 Analysis", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 451, + 334, + 540 + ], + "lines": [ + { + "bbox": [ + 106, + 451, + 334, + 463 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 334, + 463 + ], + "score": 1.0, + "content": "Ablation Study. We study the role of each part of CST", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 462, + 335, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 335, + 474 + ], + "score": 1.0, + "content": "in self-training. CST w/o Tsallis removes the Tsallis en-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 473, + 334, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 129, + 487 + ], + "score": 1.0, + "content": "tropy", + "type": "text" + }, + { + "bbox": [ + 129, + 474, + 164, + 486 + ], + "score": 0.91, + "content": "L _ { \\mathrm { T s a l l i s } , \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 473, + 186, + 487 + ], + "score": 1.0, + "content": ". CST", + "type": "text" + }, + { + "bbox": [ + 187, + 475, + 193, + 483 + ], + "score": 0.27, + "content": "+", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 473, + 334, + 487 + ], + "score": 1.0, + "content": "Entropy replaces the Tsallis entropy", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 483, + 334, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 288, + 497 + ], + "score": 1.0, + "content": "with standard entropy. FixMatch+Tsallis adds", + "type": "text" + }, + { + "bbox": [ + 288, + 485, + 322, + 496 + ], + "score": 0.92, + "content": "L _ { \\mathrm { T s a l l i s } , \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 483, + 334, + 497 + ], + "score": 1.0, + "content": "to", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 495, + 335, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 335, + 507 + ], + "score": 1.0, + "content": "standard self-training. Observations are shown in Table 5.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 505, + 334, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 132, + 517 + ], + "score": 0.48, + "content": "\\mathrm { C S T + l }", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 505, + 201, + 519 + ], + "score": 1.0, + "content": "Entropy performs", + "type": "text" + }, + { + "bbox": [ + 201, + 506, + 224, + 517 + ], + "score": 0.88, + "content": "3 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 505, + 334, + 519 + ], + "score": 1.0, + "content": "worse than CST, indicating", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 516, + 335, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 335, + 529 + ], + "score": 1.0, + "content": "that Tsallis entropy is a better regularization for pseudo-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 528, + 334, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 284, + 540 + ], + "score": 1.0, + "content": "labels than standard entropy. CST performs", + "type": "text" + }, + { + "bbox": [ + 285, + 528, + 307, + 539 + ], + "score": 0.88, + "content": "5 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 528, + 334, + 540 + ], + "score": 1.0, + "content": "better", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 22.5 + }, + { + "type": "table", + "bbox": [ + 341, + 460, + 504, + 537 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 357, + 450, + 487, + 459 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 357, + 449, + 488, + 461 + ], + "spans": [ + { + "bbox": [ + 357, + 449, + 488, + 461 + ], + "score": 1.0, + "content": "Table 5: Ablation on VisDA-2017.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "table_body", + "bbox": [ + 341, + 460, + 504, + 537 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 341, + 460, + 504, + 537 + ], + "spans": [ + { + "bbox": [ + 341, + 460, + 504, + 537 + ], + "score": 0.971, + "html": "
MethodAccuracy ↑|drv↓
FixMatch [57]74.5 ± 0.20.22
Fixmatch+Tsallis76.3 ± 0.80.15
CST w/o Tsallis72.0 ± 0.40.16
CST+Entropy76.2 ± 0.60.20
CST79.9 ± 0.50.12
", + "type": "table", + "image_path": "1f009038872b5ecebb92230a8969f0c1c81ac204407dd1ce16149601336c7a75.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 341, + 460, + 504, + 475.4 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 341, + 475.4, + 504, + 490.79999999999995 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 341, + 490.79999999999995, + 504, + 506.19999999999993 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 341, + 506.19999999999993, + 504, + 521.5999999999999 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 341, + 521.5999999999999, + 504, + 536.9999999999999 + ], + "spans": [], + "index": 30 + } + ] + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 107, + 540, + 504, + 583 + ], + "lines": [ + { + "bbox": [ + 106, + 539, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 539, + 506, + 551 + ], + "score": 1.0, + "content": "than FixMatch, indicating that CST is better adapted to domain shift than standard self-training. While", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 549, + 506, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 305, + 562 + ], + "score": 1.0, + "content": "FixMatch+Tsallis outperforms FixMatch, it is still", + "type": "text" + }, + { + "bbox": [ + 305, + 550, + 328, + 561 + ], + "score": 0.88, + "content": "3 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 549, + 506, + 562 + ], + "score": 1.0, + "content": "behind CST, with much larger total variation", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 561, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 142, + 573 + ], + "score": 1.0, + "content": "distance", + "type": "text" + }, + { + "bbox": [ + 143, + 561, + 159, + 572 + ], + "score": 0.88, + "content": "d _ { \\mathrm { T V } }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 561, + 505, + 573 + ], + "score": 1.0, + "content": "between pseudo-labels and ground-truths, indicating that CST makes pseudo-labels", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 572, + 349, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 349, + 584 + ], + "score": 1.0, + "content": "more reliable than standard self-training under domain shift.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 106, + 587, + 505, + 654 + ], + "lines": [ + { + "bbox": [ + 106, + 587, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 505, + 600 + ], + "score": 1.0, + "content": "Quality of Pseudo-labels. We visualize the error of pseudo-labels during training on VisDA-2017 in", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 597, + 507, + 613 + ], + "spans": [ + { + "bbox": [ + 104, + 597, + 286, + 613 + ], + "score": 1.0, + "content": "Figure 5 (Left). The error of target classifier", + "type": "text" + }, + { + "bbox": [ + 286, + 599, + 296, + 610 + ], + "score": 0.86, + "content": "\\theta _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 597, + 507, + 613 + ], + "score": 1.0, + "content": "on the source domain decreases quickly in training,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 609, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 288, + 623 + ], + "score": 1.0, + "content": "when both the error of pseudo-labels (error of", + "type": "text" + }, + { + "bbox": [ + 288, + 610, + 298, + 621 + ], + "score": 0.87, + "content": "\\theta _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 609, + 311, + 623 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 312, + 610, + 321, + 621 + ], + "score": 0.8, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 609, + 505, + 623 + ], + "score": 1.0, + "content": ") and the total variation (TV) distance between", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 621, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 506, + 633 + ], + "score": 1.0, + "content": "pseudo-labels and ground-truths continue to decay, indicating that CST gradually refines pseudo-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 631, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 505, + 644 + ], + "score": 1.0, + "content": "labels. This forms a clear contrast to standard self-training as visualized in Figure 2 (Middle), where", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 641, + 363, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 156, + 656 + ], + "score": 1.0, + "content": "the distance", + "type": "text" + }, + { + "bbox": [ + 156, + 643, + 172, + 654 + ], + "score": 0.86, + "content": "d _ { \\mathrm { T V } }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 641, + 363, + 656 + ], + "score": 1.0, + "content": "remains nearly unchanged throughout training.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 107, + 659, + 505, + 725 + ], + "lines": [ + { + "bbox": [ + 106, + 658, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 106, + 658, + 505, + 671 + ], + "score": 1.0, + "content": "Comparison of Gibbs entropy and Tsallis entropy. We compare the pseudo-labels learned with", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 670, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 298, + 683 + ], + "score": 1.0, + "content": "standard Gibbs entropy and Tsallis entropy on", + "type": "text" + }, + { + "bbox": [ + 298, + 670, + 330, + 681 + ], + "score": 0.8, + "content": "\\mathbf { A r { } C l }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 670, + 505, + 683 + ], + "score": 1.0, + "content": "with ResNet-50 at epoch 40. We compute", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 680, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 506, + 693 + ], + "score": 1.0, + "content": "the difference between the largest and the second largest softmax scores of each target example and", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 692, + 506, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 692, + 506, + 704 + ], + "score": 1.0, + "content": "plot the histogram in Figure 5 (Right). Gibbs entropy makes the largest softmax output close to 1,", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 701, + 506, + 717 + ], + "spans": [ + { + "bbox": [ + 105, + 701, + 506, + 717 + ], + "score": 1.0, + "content": "indicating over-confidence. In this case, if the prediction is wrong, it can be hard to correct it using", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 714, + 507, + 726 + ], + "spans": [ + { + "bbox": [ + 105, + 714, + 507, + 726 + ], + "score": 1.0, + "content": "self-training. In contrast, Tsallis entropy allows the largest and the second largest scores to be similar.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 43.5 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 107, + 83, + 505, + 190 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 119, + 71, + 486, + 83 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 122, + 70, + 488, + 85 + ], + "spans": [ + { + "bbox": [ + 122, + 70, + 199, + 85 + ], + "score": 1.0, + "content": "Table 2: Accuracy", + "type": "text" + }, + { + "bbox": [ + 200, + 72, + 215, + 82 + ], + "score": 0.71, + "content": "( \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 70, + 488, + 85 + ], + "score": 1.0, + "content": "on Office-Home for unsupervised domain adaptation (ResNet-50).", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 107, + 83, + 505, + 190 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 83, + 505, + 190 + ], + "spans": [ + { + "bbox": [ + 107, + 83, + 505, + 190 + ], + "score": 0.978, + "html": "
Method|Ar-Cl Ar-Pr Ar-Rw Cl-Ar Cl-Pr Cl-Rw Pr-Ar Pr-CIPr-Rw Rw-Ar Rw-Cl Rw-Pr|Avg.
DANN [22]45.659.370.147.058.560.946.143.768.563.251.876.857.6
CDAN [37]50.770.676.057.670.070.057.450.977.370.956.781.665.8
CDAN+VAT+Entropy52.271.576.461.170.367.859.554.478.673.259.082.767.3
FixMatch [57]51.874.280.163.573.861.364.751.480.073.356.881.767.7
MDD [73]54.973.777.860.071.471.861.253.678.172.560.282.368.1
MDD+IA [28]56.277.979.264.473.174.464.254.279.971.258.183.169.5
SENTRY [48]61.877.480.166.371.674.766.863.080.974.066.384.172.2
CST59.079.683.468.477.176.768.956.483.075.362.285.1|73.0
", + "type": "table", + "image_path": "eb42d296b2f1285d0c7b99e47a1d81c9ac4a636562d148c0779058e73bc8001b.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 107, + 83, + 505, + 118.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 118.66666666666666, + 505, + 154.33333333333331 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 107, + 154.33333333333331, + 505, + 189.99999999999997 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "table", + "bbox": [ + 106, + 213, + 504, + 299 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 112, + 200, + 494, + 212 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 117, + 200, + 494, + 213 + ], + "spans": [ + { + "bbox": [ + 117, + 200, + 192, + 213 + ], + "score": 1.0, + "content": "Table 3: Accuracy", + "type": "text" + }, + { + "bbox": [ + 193, + 201, + 209, + 212 + ], + "score": 0.75, + "content": "( \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 200, + 494, + 213 + ], + "score": 1.0, + "content": "on Multi-Domain Sentiment Dataset for domain adaptation with BERT.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "table_body", + "bbox": [ + 106, + 213, + 504, + 299 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 213, + 504, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 504, + 299 + ], + "score": 0.974, + "html": "
MethodB-DB-EB-KD-BD-ED-KE-BE-DE-KK-BK-DK-EAvg.
Source-only89.788.490.990.188.590.286.988.591.587.687.391.289.2
DANN [22]90.289.590.991.090.690.287.187.592.887.887.693.289.9
VAT[40]90.691.091.790.890.892.087.286.992.686.987.792.990.1
VAT+Entropy90.491.391.591.091.192.487.586.392.486.587.593.190.1
MDD [73]90.490.491.890.290.991.087.586.392.589.087.992.190.0
CST91.592.992.691.992.693.590.289.493.887.988.393.591.5
", + "type": "table", + "image_path": "064187228bcfd5fa0d44b25d3abd40425be164827f67f87214f6fccf6617bc69.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 106, + 213, + 504, + 241.66666666666666 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 241.66666666666666, + 504, + 270.3333333333333 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 106, + 270.3333333333333, + 504, + 299.0 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 5.0 + }, + { + "type": "text", + "bbox": [ + 107, + 326, + 505, + 370 + ], + "lines": [ + { + "bbox": [ + 104, + 325, + 507, + 339 + ], + "spans": [ + { + "bbox": [ + 104, + 325, + 507, + 339 + ], + "score": 1.0, + "content": "Table 4 shows the results on VisDA-2017. CST surpasses state-of-the-arts with ResNet-50 and ResNet-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 336, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 505, + 351 + ], + "score": 1.0, + "content": "101 backbones. We also combine feature adaptation and self-training (DIRT-T, CDAN+VAT+entropy", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 348, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 147, + 361 + ], + "score": 1.0, + "content": "and MDD", + "type": "text" + }, + { + "bbox": [ + 148, + 350, + 154, + 358 + ], + "score": 0.38, + "content": "^ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 348, + 505, + 361 + ], + "score": 1.0, + "content": "FixMatch) to test if feature adaptation alleviates the negative effect of domain shift in", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 359, + 480, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 359, + 480, + 371 + ], + "score": 1.0, + "content": "standard self-training. Results indicate that CST is a better solution than simple combination.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5, + "bbox_fs": [ + 104, + 325, + 507, + 371 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 375, + 505, + 420 + ], + "lines": [ + { + "bbox": [ + 105, + 375, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 505, + 388 + ], + "score": 1.0, + "content": "While most traditional self-training methods include techniques specified for ConvNets such as", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 386, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 505, + 398 + ], + "score": 1.0, + "content": "Mixup [72], CST is a universal method and can directly work on sentiment classification by simply", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 398, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 505, + 410 + ], + "score": 1.0, + "content": "replacing the head and training objective of BERT [16]. In Table 3, most feature adaptation baselines", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 408, + 507, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 507, + 421 + ], + "score": 1.0, + "content": "improve over source only marginally, but CST outperforms all baselines on most tasks significantly.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 375, + 507, + 421 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 434, + 166, + 446 + ], + "lines": [ + { + "bbox": [ + 105, + 433, + 168, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 168, + 447 + ], + "score": 1.0, + "content": "5.4 Analysis", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 451, + 334, + 540 + ], + "lines": [ + { + "bbox": [ + 106, + 451, + 334, + 463 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 334, + 463 + ], + "score": 1.0, + "content": "Ablation Study. We study the role of each part of CST", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 462, + 335, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 335, + 474 + ], + "score": 1.0, + "content": "in self-training. CST w/o Tsallis removes the Tsallis en-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 473, + 334, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 129, + 487 + ], + "score": 1.0, + "content": "tropy", + "type": "text" + }, + { + "bbox": [ + 129, + 474, + 164, + 486 + ], + "score": 0.91, + "content": "L _ { \\mathrm { T s a l l i s } , \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 473, + 186, + 487 + ], + "score": 1.0, + "content": ". CST", + "type": "text" + }, + { + "bbox": [ + 187, + 475, + 193, + 483 + ], + "score": 0.27, + "content": "+", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 473, + 334, + 487 + ], + "score": 1.0, + "content": "Entropy replaces the Tsallis entropy", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 483, + 334, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 288, + 497 + ], + "score": 1.0, + "content": "with standard entropy. FixMatch+Tsallis adds", + "type": "text" + }, + { + "bbox": [ + 288, + 485, + 322, + 496 + ], + "score": 0.92, + "content": "L _ { \\mathrm { T s a l l i s } , \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 483, + 334, + 497 + ], + "score": 1.0, + "content": "to", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 495, + 335, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 335, + 507 + ], + "score": 1.0, + "content": "standard self-training. Observations are shown in Table 5.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 505, + 334, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 132, + 517 + ], + "score": 0.48, + "content": "\\mathrm { C S T + l }", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 505, + 201, + 519 + ], + "score": 1.0, + "content": "Entropy performs", + "type": "text" + }, + { + "bbox": [ + 201, + 506, + 224, + 517 + ], + "score": 0.88, + "content": "3 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 505, + 334, + 519 + ], + "score": 1.0, + "content": "worse than CST, indicating", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 516, + 335, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 335, + 529 + ], + "score": 1.0, + "content": "that Tsallis entropy is a better regularization for pseudo-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 528, + 334, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 284, + 540 + ], + "score": 1.0, + "content": "labels than standard entropy. CST performs", + "type": "text" + }, + { + "bbox": [ + 285, + 528, + 307, + 539 + ], + "score": 0.88, + "content": "5 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 528, + 334, + 540 + ], + "score": 1.0, + "content": "better", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 539, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 539, + 506, + 551 + ], + "score": 1.0, + "content": "than FixMatch, indicating that CST is better adapted to domain shift than standard self-training. While", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 549, + 506, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 305, + 562 + ], + "score": 1.0, + "content": "FixMatch+Tsallis outperforms FixMatch, it is still", + "type": "text" + }, + { + "bbox": [ + 305, + 550, + 328, + 561 + ], + "score": 0.88, + "content": "3 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 549, + 506, + 562 + ], + "score": 1.0, + "content": "behind CST, with much larger total variation", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 561, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 142, + 573 + ], + "score": 1.0, + "content": "distance", + "type": "text" + }, + { + "bbox": [ + 143, + 561, + 159, + 572 + ], + "score": 0.88, + "content": "d _ { \\mathrm { T V } }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 561, + 505, + 573 + ], + "score": 1.0, + "content": "between pseudo-labels and ground-truths, indicating that CST makes pseudo-labels", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 572, + 349, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 349, + 584 + ], + "score": 1.0, + "content": "more reliable than standard self-training under domain shift.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 451, + 335, + 540 + ] + }, + { + "type": "table", + "bbox": [ + 341, + 460, + 504, + 537 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 357, + 450, + 487, + 459 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 357, + 449, + 488, + 461 + ], + "spans": [ + { + "bbox": [ + 357, + 449, + 488, + 461 + ], + "score": 1.0, + "content": "Table 5: Ablation on VisDA-2017.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "table_body", + "bbox": [ + 341, + 460, + 504, + 537 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 341, + 460, + 504, + 537 + ], + "spans": [ + { + "bbox": [ + 341, + 460, + 504, + 537 + ], + "score": 0.971, + "html": "
MethodAccuracy ↑|drv↓
FixMatch [57]74.5 ± 0.20.22
Fixmatch+Tsallis76.3 ± 0.80.15
CST w/o Tsallis72.0 ± 0.40.16
CST+Entropy76.2 ± 0.60.20
CST79.9 ± 0.50.12
", + "type": "table", + "image_path": "1f009038872b5ecebb92230a8969f0c1c81ac204407dd1ce16149601336c7a75.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 341, + 460, + 504, + 475.4 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 341, + 475.4, + 504, + 490.79999999999995 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 341, + 490.79999999999995, + 504, + 506.19999999999993 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 341, + 506.19999999999993, + 504, + 521.5999999999999 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 341, + 521.5999999999999, + 504, + 536.9999999999999 + ], + "spans": [], + "index": 30 + } + ] + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 107, + 540, + 504, + 583 + ], + "lines": [], + "index": 32.5, + "bbox_fs": [ + 105, + 539, + 506, + 584 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 587, + 505, + 654 + ], + "lines": [ + { + "bbox": [ + 106, + 587, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 505, + 600 + ], + "score": 1.0, + "content": "Quality of Pseudo-labels. We visualize the error of pseudo-labels during training on VisDA-2017 in", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 597, + 507, + 613 + ], + "spans": [ + { + "bbox": [ + 104, + 597, + 286, + 613 + ], + "score": 1.0, + "content": "Figure 5 (Left). The error of target classifier", + "type": "text" + }, + { + "bbox": [ + 286, + 599, + 296, + 610 + ], + "score": 0.86, + "content": "\\theta _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 597, + 507, + 613 + ], + "score": 1.0, + "content": "on the source domain decreases quickly in training,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 609, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 288, + 623 + ], + "score": 1.0, + "content": "when both the error of pseudo-labels (error of", + "type": "text" + }, + { + "bbox": [ + 288, + 610, + 298, + 621 + ], + "score": 0.87, + "content": "\\theta _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 609, + 311, + 623 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 312, + 610, + 321, + 621 + ], + "score": 0.8, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 609, + 505, + 623 + ], + "score": 1.0, + "content": ") and the total variation (TV) distance between", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 621, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 506, + 633 + ], + "score": 1.0, + "content": "pseudo-labels and ground-truths continue to decay, indicating that CST gradually refines pseudo-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 631, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 505, + 644 + ], + "score": 1.0, + "content": "labels. This forms a clear contrast to standard self-training as visualized in Figure 2 (Middle), where", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 641, + 363, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 156, + 656 + ], + "score": 1.0, + "content": "the distance", + "type": "text" + }, + { + "bbox": [ + 156, + 643, + 172, + 654 + ], + "score": 0.86, + "content": "d _ { \\mathrm { T V } }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 641, + 363, + 656 + ], + "score": 1.0, + "content": "remains nearly unchanged throughout training.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37.5, + "bbox_fs": [ + 104, + 587, + 507, + 656 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 659, + 505, + 725 + ], + "lines": [ + { + "bbox": [ + 106, + 658, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 106, + 658, + 505, + 671 + ], + "score": 1.0, + "content": "Comparison of Gibbs entropy and Tsallis entropy. We compare the pseudo-labels learned with", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 670, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 298, + 683 + ], + "score": 1.0, + "content": "standard Gibbs entropy and Tsallis entropy on", + "type": "text" + }, + { + "bbox": [ + 298, + 670, + 330, + 681 + ], + "score": 0.8, + "content": "\\mathbf { A r { } C l }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 670, + 505, + 683 + ], + "score": 1.0, + "content": "with ResNet-50 at epoch 40. We compute", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 680, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 506, + 693 + ], + "score": 1.0, + "content": "the difference between the largest and the second largest softmax scores of each target example and", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 692, + 506, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 692, + 506, + 704 + ], + "score": 1.0, + "content": "plot the histogram in Figure 5 (Right). Gibbs entropy makes the largest softmax output close to 1,", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 701, + 506, + 717 + ], + "spans": [ + { + "bbox": [ + 105, + 701, + 506, + 717 + ], + "score": 1.0, + "content": "indicating over-confidence. In this case, if the prediction is wrong, it can be hard to correct it using", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 714, + 507, + 726 + ], + "spans": [ + { + "bbox": [ + 105, + 714, + 507, + 726 + ], + "score": 1.0, + "content": "self-training. In contrast, Tsallis entropy allows the largest and the second largest scores to be similar.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 658, + 507, + 726 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 107, + 72, + 504, + 188 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 124, + 59, + 483, + 70 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 127, + 58, + 484, + 72 + ], + "spans": [ + { + "bbox": [ + 127, + 58, + 253, + 72 + ], + "score": 1.0, + "content": "Table 4: Mean Class Accuracy", + "type": "text" + }, + { + "bbox": [ + 253, + 59, + 269, + 70 + ], + "score": 0.73, + "content": "( \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 58, + 484, + 72 + ], + "score": 1.0, + "content": "for unsupervised domain adaptation on VisDA-2017.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 107, + 72, + 504, + 188 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 72, + 504, + 188 + ], + "spans": [ + { + "bbox": [ + 107, + 72, + 504, + 188 + ], + "score": 0.947, + "html": "
MethodResNet-50ResNet-101MethodResNet-50ResNet-101
DANN [22]69.379.5CBST[77]176.4 ± 0.9
VAT [40]68.0±0.373.4 ± 0.5KLD [78]178.1 ± 0.2
DIRT-T [56]68.2 ± 0.377.2 ± 0.5MDD[73]74.681.6 ± 0.3
MCD [54]69.277.7AFN [69]176.1
CDAN [37]70.080.1MDD+IA [28]75.81
CDAN+VAT+Entropy76.5 ± 0.580.4± 0.7MDD+FixMatch77.8 ± 0.382.4 ± 0.4
MixMatch69.3 ± 0.477.0 ± 0.5STAR [38]182.7
FixMatch [57]74.5 ± 0.279.5 ± 0.3SENTRY [48]76.71
CST79.9 ± 0.584.8± 0.6CST+SAM80.6 ± 0.586.5 ± 0.7
", + "type": "table", + "image_path": "3398ef4904b4c447ef21ebadb24014f266b754a7009178d7c7d1a7ef77df12da.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 107, + 72, + 504, + 110.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 110.66666666666666, + 504, + 149.33333333333331 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 107, + 149.33333333333331, + 504, + 187.99999999999997 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "image", + "bbox": [ + 119, + 195, + 489, + 279 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 119, + 195, + 489, + 279 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 119, + 195, + 489, + 279 + ], + "spans": [ + { + "bbox": [ + 119, + 195, + 489, + 279 + ], + "score": 0.935, + "type": "image", + "image_path": "b438078399476e8bc688a6c6252f161f15cda1ea9f72241d501cd24f973a4fac.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 119, + 195, + 489, + 223.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 119, + 223.0, + 489, + 251.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 119, + 251.0, + 489, + 279.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 282, + 504, + 314 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 282, + 504, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 495, + 294 + ], + "score": 1.0, + "content": "Figure 5: Analysis. Left: Error of pseudo-labels and reverse pseudo-labels. The error of target classifier", + "type": "text" + }, + { + "bbox": [ + 495, + 283, + 504, + 293 + ], + "score": 0.83, + "content": "\\theta _ { t }", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 293, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 505, + 304 + ], + "score": 1.0, + "content": "on the source domain decreases, indicating the quality of pseudo-labels is refined. Right: Histograms of the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 303, + 499, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 499, + 315 + ], + "score": 1.0, + "content": "difference between the largest and the second largest softmax scores. Tsallis entropy avoids over-confidence.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + } + ], + "index": 6.5 + }, + { + "type": "title", + "bbox": [ + 107, + 320, + 197, + 334 + ], + "lines": [ + { + "bbox": [ + 105, + 318, + 199, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 199, + 335 + ], + "score": 1.0, + "content": "6 Related Work", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 340, + 505, + 450 + ], + "lines": [ + { + "bbox": [ + 106, + 339, + 506, + 352 + ], + "spans": [ + { + "bbox": [ + 106, + 339, + 506, + 352 + ], + "score": 1.0, + "content": "Self-Training. Self-training is a mainstream technique for semi-supervised learning [13]. In this", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 351, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 505, + 363 + ], + "score": 1.0, + "content": "work, we focus on pseudo-labeling [52, 31, 2], which uses unlabeled data by training on pseudo-labels", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 361, + 506, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 506, + 375 + ], + "score": 1.0, + "content": "generated by a source model. Other lines of work study consistency regularization [4, 51, 55, 40].", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 371, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 506, + 387 + ], + "score": 1.0, + "content": "Recent works demonstrate the power of such methods [67, 57, 23]. Equipped with proper training", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "score": 1.0, + "content": "techniques, these methods can achieve comparable results as standard training that uses much more", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 394, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 505, + 407 + ], + "score": 1.0, + "content": "labeled examples [17]. Zoph et al. [76] compare self-training to pre-training and joint training. Vu", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 405, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 505, + 417 + ], + "score": 1.0, + "content": "et al. [65], Mukherjee & Awadallah [42] show that task-level self-training works well in few-shot", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 415, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 506, + 430 + ], + "score": 1.0, + "content": "learning. These methods are tailored to semi-supervised learning or general representation learning", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 428, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 428, + 505, + 439 + ], + "score": 1.0, + "content": "and do not take domain shift into consideration explicitly. Wei et al. [66], Frei et al. [20] provide the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 437, + 430, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 430, + 451 + ], + "score": 1.0, + "content": "first nice theoretical analysis of self-training based on the expansion assumption.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 107, + 455, + 505, + 564 + ], + "lines": [ + { + "bbox": [ + 105, + 453, + 506, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 506, + 467 + ], + "score": 1.0, + "content": "Domain Adaptation. Inspired by the generalization error bound of Ben-David et al. [7], Long et al.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 466, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 505, + 477 + ], + "score": 1.0, + "content": "[34], Zellinger et al. [71] minimize distance measures between source and target distributions to learn", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 477, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 505, + 488 + ], + "score": 1.0, + "content": "domain-invariant features. Ganin et al. [22] (DANN) proposed to approximate the domain distance", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 486, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 505, + 500 + ], + "score": 1.0, + "content": "by adversarial learning. Follow-up works proposed various improvement upon DANN [63, 54, 37,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 497, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 506, + 510 + ], + "score": 1.0, + "content": "73, 28]. Popular as they are, failure cases exist in situation like label shift [74, 32], shift in support of", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 508, + 506, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 506, + 521 + ], + "score": 1.0, + "content": "domains [29], and large discrepancy between source and target [33]. Another line of works try to", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 518, + 506, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 506, + 533 + ], + "score": 1.0, + "content": "address domain adaptation with self-training. Shu et al. [56] improves DANN with VAT and entropy", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 531, + 506, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 506, + 543 + ], + "score": 1.0, + "content": "minimization. French et al. [21], Zou et al. [78], Li et al. [32] incorporated various semi-supervised", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 541, + 506, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 506, + 554 + ], + "score": 1.0, + "content": "learning techniques to boost domain adaptation performance. Kumar et al. [30], Chen et al. [15] and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 552, + 507, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 507, + 565 + ], + "score": 1.0, + "content": "Cai et al. [11] showed self-training provably works in domain adaptation under certain assumptions.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 25.5 + }, + { + "type": "title", + "bbox": [ + 107, + 574, + 183, + 587 + ], + "lines": [ + { + "bbox": [ + 104, + 572, + 185, + 590 + ], + "spans": [ + { + "bbox": [ + 104, + 572, + 185, + 590 + ], + "score": 1.0, + "content": "7 Conclusion", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 594, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 593, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 593, + 505, + 606 + ], + "score": 1.0, + "content": "We propose cycle self-training in place of standard self-training to explicitly address the distribution", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 604, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 617 + ], + "score": 1.0, + "content": "shift in domain adaptation. We show that our method provably works under the expansion assumption", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 616, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 616, + 505, + 627 + ], + "score": 1.0, + "content": "and demonstrate hard cases for feature adaptation and standard self-training. Self-training (or pseudo-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 625, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 506, + 639 + ], + "score": 1.0, + "content": "labeling) is only one line of works in the semi-supervised learning literature. Future work can delve", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 637, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 505, + 650 + ], + "score": 1.0, + "content": "into the behaviors of other semi-supervised learning techniques including consistency regularization", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 647, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 647, + 505, + 661 + ], + "score": 1.0, + "content": "and data augmentation under distribution shift, and exploit them extensively for domain adaptation.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34.5 + }, + { + "type": "title", + "bbox": [ + 107, + 669, + 207, + 683 + ], + "lines": [ + { + "bbox": [ + 106, + 668, + 208, + 686 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 208, + 686 + ], + "score": 1.0, + "content": "Acknowledgements", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 108, + 689, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 688, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 701 + ], + "score": 1.0, + "content": "This work was supported by the National Natural Science Foundation of China under Grants 62022050", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 699, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 713 + ], + "score": 1.0, + "content": "and 62021002, Beijing Nova Program under Grant Z201100006820041, China’s Ministry of Industry", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 711, + 464, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 464, + 723 + ], + "score": 1.0, + "content": "and Information Technology, the MOE Innovation Plan and the BNRist Innovation Fund.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 301, + 742, + 311, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 107, + 72, + 504, + 188 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 124, + 59, + 483, + 70 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 127, + 58, + 484, + 72 + ], + "spans": [ + { + "bbox": [ + 127, + 58, + 253, + 72 + ], + "score": 1.0, + "content": "Table 4: Mean Class Accuracy", + "type": "text" + }, + { + "bbox": [ + 253, + 59, + 269, + 70 + ], + "score": 0.73, + "content": "( \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 58, + 484, + 72 + ], + "score": 1.0, + "content": "for unsupervised domain adaptation on VisDA-2017.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 107, + 72, + 504, + 188 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 72, + 504, + 188 + ], + "spans": [ + { + "bbox": [ + 107, + 72, + 504, + 188 + ], + "score": 0.947, + "html": "
MethodResNet-50ResNet-101MethodResNet-50ResNet-101
DANN [22]69.379.5CBST[77]176.4 ± 0.9
VAT [40]68.0±0.373.4 ± 0.5KLD [78]178.1 ± 0.2
DIRT-T [56]68.2 ± 0.377.2 ± 0.5MDD[73]74.681.6 ± 0.3
MCD [54]69.277.7AFN [69]176.1
CDAN [37]70.080.1MDD+IA [28]75.81
CDAN+VAT+Entropy76.5 ± 0.580.4± 0.7MDD+FixMatch77.8 ± 0.382.4 ± 0.4
MixMatch69.3 ± 0.477.0 ± 0.5STAR [38]182.7
FixMatch [57]74.5 ± 0.279.5 ± 0.3SENTRY [48]76.71
CST79.9 ± 0.584.8± 0.6CST+SAM80.6 ± 0.586.5 ± 0.7
", + "type": "table", + "image_path": "3398ef4904b4c447ef21ebadb24014f266b754a7009178d7c7d1a7ef77df12da.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 107, + 72, + 504, + 110.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 110.66666666666666, + 504, + 149.33333333333331 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 107, + 149.33333333333331, + 504, + 187.99999999999997 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "image", + "bbox": [ + 119, + 195, + 489, + 279 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 119, + 195, + 489, + 279 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 119, + 195, + 489, + 279 + ], + "spans": [ + { + "bbox": [ + 119, + 195, + 489, + 279 + ], + "score": 0.935, + "type": "image", + "image_path": "b438078399476e8bc688a6c6252f161f15cda1ea9f72241d501cd24f973a4fac.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 119, + 195, + 489, + 223.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 119, + 223.0, + 489, + 251.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 119, + 251.0, + 489, + 279.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 282, + 504, + 314 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 282, + 504, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 495, + 294 + ], + "score": 1.0, + "content": "Figure 5: Analysis. Left: Error of pseudo-labels and reverse pseudo-labels. The error of target classifier", + "type": "text" + }, + { + "bbox": [ + 495, + 283, + 504, + 293 + ], + "score": 0.83, + "content": "\\theta _ { t }", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 293, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 505, + 304 + ], + "score": 1.0, + "content": "on the source domain decreases, indicating the quality of pseudo-labels is refined. Right: Histograms of the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 303, + 499, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 499, + 315 + ], + "score": 1.0, + "content": "difference between the largest and the second largest softmax scores. Tsallis entropy avoids over-confidence.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + } + ], + "index": 6.5 + }, + { + "type": "title", + "bbox": [ + 107, + 320, + 197, + 334 + ], + "lines": [ + { + "bbox": [ + 105, + 318, + 199, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 199, + 335 + ], + "score": 1.0, + "content": "6 Related Work", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 340, + 505, + 450 + ], + "lines": [ + { + "bbox": [ + 106, + 339, + 506, + 352 + ], + "spans": [ + { + "bbox": [ + 106, + 339, + 506, + 352 + ], + "score": 1.0, + "content": "Self-Training. Self-training is a mainstream technique for semi-supervised learning [13]. In this", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 351, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 505, + 363 + ], + "score": 1.0, + "content": "work, we focus on pseudo-labeling [52, 31, 2], which uses unlabeled data by training on pseudo-labels", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 361, + 506, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 506, + 375 + ], + "score": 1.0, + "content": "generated by a source model. Other lines of work study consistency regularization [4, 51, 55, 40].", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 371, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 506, + 387 + ], + "score": 1.0, + "content": "Recent works demonstrate the power of such methods [67, 57, 23]. Equipped with proper training", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "score": 1.0, + "content": "techniques, these methods can achieve comparable results as standard training that uses much more", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 394, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 505, + 407 + ], + "score": 1.0, + "content": "labeled examples [17]. Zoph et al. [76] compare self-training to pre-training and joint training. Vu", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 405, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 505, + 417 + ], + "score": 1.0, + "content": "et al. [65], Mukherjee & Awadallah [42] show that task-level self-training works well in few-shot", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 415, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 506, + 430 + ], + "score": 1.0, + "content": "learning. These methods are tailored to semi-supervised learning or general representation learning", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 428, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 428, + 505, + 439 + ], + "score": 1.0, + "content": "and do not take domain shift into consideration explicitly. Wei et al. [66], Frei et al. [20] provide the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 437, + 430, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 430, + 451 + ], + "score": 1.0, + "content": "first nice theoretical analysis of self-training based on the expansion assumption.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 339, + 506, + 451 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 455, + 505, + 564 + ], + "lines": [ + { + "bbox": [ + 105, + 453, + 506, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 506, + 467 + ], + "score": 1.0, + "content": "Domain Adaptation. Inspired by the generalization error bound of Ben-David et al. [7], Long et al.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 466, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 505, + 477 + ], + "score": 1.0, + "content": "[34], Zellinger et al. [71] minimize distance measures between source and target distributions to learn", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 477, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 505, + 488 + ], + "score": 1.0, + "content": "domain-invariant features. Ganin et al. [22] (DANN) proposed to approximate the domain distance", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 486, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 505, + 500 + ], + "score": 1.0, + "content": "by adversarial learning. Follow-up works proposed various improvement upon DANN [63, 54, 37,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 497, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 506, + 510 + ], + "score": 1.0, + "content": "73, 28]. Popular as they are, failure cases exist in situation like label shift [74, 32], shift in support of", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 508, + 506, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 506, + 521 + ], + "score": 1.0, + "content": "domains [29], and large discrepancy between source and target [33]. Another line of works try to", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 518, + 506, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 506, + 533 + ], + "score": 1.0, + "content": "address domain adaptation with self-training. Shu et al. [56] improves DANN with VAT and entropy", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 531, + 506, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 506, + 543 + ], + "score": 1.0, + "content": "minimization. French et al. [21], Zou et al. [78], Li et al. [32] incorporated various semi-supervised", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 541, + 506, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 506, + 554 + ], + "score": 1.0, + "content": "learning techniques to boost domain adaptation performance. Kumar et al. [30], Chen et al. [15] and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 552, + 507, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 507, + 565 + ], + "score": 1.0, + "content": "Cai et al. [11] showed self-training provably works in domain adaptation under certain assumptions.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 453, + 507, + 565 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 574, + 183, + 587 + ], + "lines": [ + { + "bbox": [ + 104, + 572, + 185, + 590 + ], + "spans": [ + { + "bbox": [ + 104, + 572, + 185, + 590 + ], + "score": 1.0, + "content": "7 Conclusion", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 594, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 593, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 593, + 505, + 606 + ], + "score": 1.0, + "content": "We propose cycle self-training in place of standard self-training to explicitly address the distribution", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 604, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 617 + ], + "score": 1.0, + "content": "shift in domain adaptation. We show that our method provably works under the expansion assumption", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 616, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 616, + 505, + 627 + ], + "score": 1.0, + "content": "and demonstrate hard cases for feature adaptation and standard self-training. Self-training (or pseudo-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 625, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 506, + 639 + ], + "score": 1.0, + "content": "labeling) is only one line of works in the semi-supervised learning literature. Future work can delve", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 637, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 505, + 650 + ], + "score": 1.0, + "content": "into the behaviors of other semi-supervised learning techniques including consistency regularization", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 647, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 647, + 505, + 661 + ], + "score": 1.0, + "content": "and data augmentation under distribution shift, and exploit them extensively for domain adaptation.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 593, + 506, + 661 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 669, + 207, + 683 + ], + "lines": [ + { + "bbox": [ + 106, + 668, + 208, + 686 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 208, + 686 + ], + "score": 1.0, + "content": "Acknowledgements", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 108, + 689, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 688, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 701 + ], + "score": 1.0, + "content": "This work was supported by the National Natural Science Foundation of China under Grants 62022050", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 699, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 713 + ], + "score": 1.0, + "content": "and 62021002, Beijing Nova Program under Grant Z201100006820041, China’s Ministry of Industry", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 711, + 464, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 464, + 723 + ], + "score": 1.0, + "content": "and Information Technology, the MOE Innovation Plan and the BNRist Innovation Fund.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 688, + 505, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 71, + 164, + 84 + ], + "lines": [ + { + "bbox": [ + 106, + 70, + 165, + 86 + ], + "spans": [ + { + "bbox": [ + 106, + 70, + 165, + 86 + ], + "score": 1.0, + "content": "References", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 105, + 90, + 508, + 726 + ], + "lines": [ + { + "bbox": [ + 110, + 90, + 506, + 104 + ], + "spans": [ + { + "bbox": [ + 110, + 90, + 506, + 104 + ], + "score": 1.0, + "content": "[1] Albadawy, E. A., Saha, A., and Mazurowski, M. A. Deep learning for segmentation of brain", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 127, + 102, + 481, + 115 + ], + "spans": [ + { + "bbox": [ + 127, + 102, + 481, + 115 + ], + "score": 1.0, + "content": "tumors: Impact of cross-institutional training and testing. Medical Physics, 45(3), 2018.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 110, + 120, + 506, + 136 + ], + "spans": [ + { + "bbox": [ + 110, + 120, + 506, + 136 + ], + "score": 1.0, + "content": "[2] Arazo, E., Ortego, D., Albert, P., O’Connor, N. E., and McGuinness, K. Pseudo-labeling and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 126, + 132, + 460, + 145 + ], + "spans": [ + { + "bbox": [ + 126, + 132, + 460, + 145 + ], + "score": 1.0, + "content": "confirmation bias in deep semi-supervised learning. CoRR, abs/1908.02983, 2019.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 109, + 150, + 507, + 167 + ], + "spans": [ + { + "bbox": [ + 109, + 150, + 507, + 167 + ], + "score": 1.0, + "content": "[3] Arora, S., Du, S. S., Hu, W., Li, Z., Salakhutdinov, R. R., and Wang, R. On exact computation", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 126, + 162, + 405, + 176 + ], + "spans": [ + { + "bbox": [ + 126, + 162, + 405, + 176 + ], + "score": 1.0, + "content": "with an infinitely wide neural net. In NeurIPS, pp. 8141–8150. 2019.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 110, + 181, + 506, + 194 + ], + "spans": [ + { + "bbox": [ + 110, + 181, + 506, + 194 + ], + "score": 1.0, + "content": "[4] Bachman, P., Alsharif, O., and Precup, D. Learning with pseudo-ensembles. In NeurIPS,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 127, + 192, + 264, + 205 + ], + "spans": [ + { + "bbox": [ + 127, + 192, + 264, + 205 + ], + "score": 1.0, + "content": "volume 27, pp. 3365–3373, 2014.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 110, + 213, + 506, + 226 + ], + "spans": [ + { + "bbox": [ + 110, + 213, + 506, + 226 + ], + "score": 1.0, + "content": "[5] Bartlett, P. L. and Mendelson, S. Rademacher and gaussian complexities: Risk bounds and", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 127, + 225, + 325, + 236 + ], + "spans": [ + { + "bbox": [ + 127, + 225, + 325, + 236 + ], + "score": 1.0, + "content": "structural results. JMLR, 3(Nov):463–482, 2002.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 110, + 242, + 507, + 257 + ], + "spans": [ + { + "bbox": [ + 110, + 242, + 507, + 257 + ], + "score": 1.0, + "content": "[6] Ben-David, S. and Urner, R. On the hardness of domain adaptation and the utility of unlabeled", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 126, + 253, + 304, + 268 + ], + "spans": [ + { + "bbox": [ + 126, + 253, + 304, + 268 + ], + "score": 1.0, + "content": "target samples. In ALT, pp. 139–153, 2012.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 110, + 272, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 110, + 272, + 506, + 288 + ], + "score": 1.0, + "content": "[7] Ben-David, S., Blitzer, J., Crammer, K., Kulesza, A., Pereira, F., and Vaughan, J. W. A theory", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 127, + 285, + 448, + 298 + ], + "spans": [ + { + "bbox": [ + 127, + 285, + 448, + 298 + ], + "score": 1.0, + "content": "of learning from different domains. Machine Learning, 79(1-2):151–175, 2010.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 110, + 304, + 506, + 317 + ], + "spans": [ + { + "bbox": [ + 110, + 304, + 506, + 317 + ], + "score": 1.0, + "content": "[8] Berthelot, D., Carlini, N., Goodfellow, I., Papernot, N., Oliver, A., and Raffel, C. Mixmatch: A", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 126, + 314, + 477, + 329 + ], + "spans": [ + { + "bbox": [ + 126, + 314, + 477, + 329 + ], + "score": 1.0, + "content": "holistic approach to semi-supervised learning. arXiv preprint arXiv:1905.02249, 2019.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 110, + 333, + 507, + 348 + ], + "spans": [ + { + "bbox": [ + 110, + 333, + 507, + 348 + ], + "score": 1.0, + "content": "[9] Bertinetto, L., Henriques, J. F., Torr, P., and Vedaldi, A. Meta-learning with differentiable", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 127, + 346, + 275, + 357 + ], + "spans": [ + { + "bbox": [ + 127, + 346, + 275, + 357 + ], + "score": 1.0, + "content": "closed-form solvers. In ICLR, 2019.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 364, + 507, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 507, + 379 + ], + "score": 1.0, + "content": "[10] Blitzer, J., Dredze, M., and Pereira, F. Biographies, Bollywood, boom-boxes and blenders:", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 127, + 376, + 434, + 389 + ], + "spans": [ + { + "bbox": [ + 127, + 376, + 434, + 389 + ], + "score": 1.0, + "content": "Domain adaptation for sentiment classification. In ACL, pp. 440–447, 2007.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 394, + 507, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 507, + 409 + ], + "score": 1.0, + "content": "[11] Cai, T., Gao, R., Lee, J. D., and Lei, Q. A theory of label propagation for subpopulation shift,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 126, + 405, + 155, + 419 + ], + "spans": [ + { + "bbox": [ + 126, + 405, + 155, + 419 + ], + "score": 1.0, + "content": "2021.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 425, + 443, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 443, + 439 + ], + "score": 1.0, + "content": "[12] Carlini, N. Poisoning the unlabeled dataset of semi-supervised learning, 2021.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 444, + 507, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 507, + 460 + ], + "score": 1.0, + "content": "[13] Chapelle, O., Scholkopf, B., and Zien, A. ¨ Semi-supervised learning. MIT press Cambridge,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 127, + 456, + 154, + 470 + ], + "spans": [ + { + "bbox": [ + 127, + 456, + 154, + 470 + ], + "score": 1.0, + "content": "2006.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 476, + 506, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 506, + 489 + ], + "score": 1.0, + "content": "[14] Chen, C., Xie, W., Huang, W., Rong, Y., Ding, X., Huang, Y., Xu, T., and Huang, J. Progressive", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 127, + 486, + 470, + 499 + ], + "spans": [ + { + "bbox": [ + 127, + 486, + 470, + 499 + ], + "score": 1.0, + "content": "feature alignment for unsupervised domain adaptation. In CVPR, pp. 627–636, 2019.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 505, + 507, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 507, + 521 + ], + "score": 1.0, + "content": "[15] Chen, Y., Wei, C., Kumar, A., and Ma, T. Self-training avoids using spurious features under", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 127, + 517, + 334, + 531 + ], + "spans": [ + { + "bbox": [ + 127, + 517, + 334, + 531 + ], + "score": 1.0, + "content": "domain shift. In NeurIPS, pp. 21061–21071, 2020.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 536, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 505, + 549 + ], + "score": 1.0, + "content": "[16] Devlin, J., Chang, M.-W., Lee, K., and Toutanova, K. BERT: Pre-training of deep bidirectional", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 127, + 547, + 431, + 560 + ], + "spans": [ + { + "bbox": [ + 127, + 547, + 431, + 560 + ], + "score": 1.0, + "content": "transformers for language understanding. In NAACL, pp. 4171–4186, 2019.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 566, + 507, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 507, + 582 + ], + "score": 1.0, + "content": "[17] Du, J., Grave, E., Gunel, B., Chaudhary, V., Celebi, O., Auli, M., Stoyanov, V., and Conneau,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 125, + 577, + 507, + 594 + ], + "spans": [ + { + "bbox": [ + 125, + 577, + 507, + 594 + ], + "score": 1.0, + "content": "A. Self-training improves pre-training for natural language understanding. In NAACL, pp.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 127, + 588, + 203, + 601 + ], + "spans": [ + { + "bbox": [ + 127, + 588, + 203, + 601 + ], + "score": 1.0, + "content": "5408–5418, 2021.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 605, + 507, + 624 + ], + "spans": [ + { + "bbox": [ + 104, + 605, + 507, + 624 + ], + "score": 1.0, + "content": "[18] Finn, C., Abbeel, P., and Levine, S. Model-agnostic meta-learning for fast adaptation of deep", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 127, + 619, + 301, + 633 + ], + "spans": [ + { + "bbox": [ + 127, + 619, + 301, + 633 + ], + "score": 1.0, + "content": "networks. In ICML, pp. 1126–1135, 2017.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 637, + 507, + 652 + ], + "spans": [ + { + "bbox": [ + 104, + 637, + 507, + 652 + ], + "score": 1.0, + "content": "[19] Foret, P., Kleiner, A., Mobahi, H., and Neyshabur, B. Sharpness-aware minimization for", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 127, + 650, + 340, + 663 + ], + "spans": [ + { + "bbox": [ + 127, + 650, + 340, + 663 + ], + "score": 1.0, + "content": "efficiently improving generalization. In ICLR, 2021.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 668, + 507, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 507, + 684 + ], + "score": 1.0, + "content": "[20] Frei, S., Zou, D., Chen, Z., and Gu, Q. Self-training converts weak learners to strong learners in", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 127, + 680, + 360, + 694 + ], + "spans": [ + { + "bbox": [ + 127, + 680, + 360, + 694 + ], + "score": 1.0, + "content": "mixture models. arXiv preprint arXiv:2106.13805, 2021.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 700, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 506, + 713 + ], + "score": 1.0, + "content": "[21] French, G., Mackiewicz, M., and Fisher, M. Self-ensembling for visual domain adaptation. In", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 127, + 711, + 180, + 724 + ], + "spans": [ + { + "bbox": [ + 127, + 711, + 180, + 724 + ], + "score": 1.0, + "content": "ICLR, 2018.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 21.5 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 311, + 751 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 312, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 312, + 754 + ], + "score": 1.0, + "content": "11", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 71, + 164, + 84 + ], + "lines": [ + { + "bbox": [ + 106, + 70, + 165, + 86 + ], + "spans": [ + { + "bbox": [ + 106, + 70, + 165, + 86 + ], + "score": 1.0, + "content": "References", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "list", + "bbox": [ + 105, + 90, + 508, + 726 + ], + "lines": [ + { + "bbox": [ + 110, + 90, + 506, + 104 + ], + "spans": [ + { + "bbox": [ + 110, + 90, + 506, + 104 + ], + "score": 1.0, + "content": "[1] Albadawy, E. A., Saha, A., and Mazurowski, M. A. Deep learning for segmentation of brain", + "type": "text" + } + ], + "index": 1, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 102, + 481, + 115 + ], + "spans": [ + { + "bbox": [ + 127, + 102, + 481, + 115 + ], + "score": 1.0, + "content": "tumors: Impact of cross-institutional training and testing. Medical Physics, 45(3), 2018.", + "type": "text" + } + ], + "index": 2, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 120, + 506, + 136 + ], + "spans": [ + { + "bbox": [ + 110, + 120, + 506, + 136 + ], + "score": 1.0, + "content": "[2] Arazo, E., Ortego, D., Albert, P., O’Connor, N. E., and McGuinness, K. Pseudo-labeling and", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 132, + 460, + 145 + ], + "spans": [ + { + "bbox": [ + 126, + 132, + 460, + 145 + ], + "score": 1.0, + "content": "confirmation bias in deep semi-supervised learning. CoRR, abs/1908.02983, 2019.", + "type": "text" + } + ], + "index": 4, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 150, + 507, + 167 + ], + "spans": [ + { + "bbox": [ + 109, + 150, + 507, + 167 + ], + "score": 1.0, + "content": "[3] Arora, S., Du, S. S., Hu, W., Li, Z., Salakhutdinov, R. R., and Wang, R. On exact computation", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 162, + 405, + 176 + ], + "spans": [ + { + "bbox": [ + 126, + 162, + 405, + 176 + ], + "score": 1.0, + "content": "with an infinitely wide neural net. In NeurIPS, pp. 8141–8150. 2019.", + "type": "text" + } + ], + "index": 6, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 181, + 506, + 194 + ], + "spans": [ + { + "bbox": [ + 110, + 181, + 506, + 194 + ], + "score": 1.0, + "content": "[4] Bachman, P., Alsharif, O., and Precup, D. Learning with pseudo-ensembles. In NeurIPS,", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 192, + 264, + 205 + ], + "spans": [ + { + "bbox": [ + 127, + 192, + 264, + 205 + ], + "score": 1.0, + "content": "volume 27, pp. 3365–3373, 2014.", + "type": "text" + } + ], + "index": 8, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 213, + 506, + 226 + ], + "spans": [ + { + "bbox": [ + 110, + 213, + 506, + 226 + ], + "score": 1.0, + "content": "[5] Bartlett, P. L. and Mendelson, S. Rademacher and gaussian complexities: Risk bounds and", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 225, + 325, + 236 + ], + "spans": [ + { + "bbox": [ + 127, + 225, + 325, + 236 + ], + "score": 1.0, + "content": "structural results. JMLR, 3(Nov):463–482, 2002.", + "type": "text" + } + ], + "index": 10, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 242, + 507, + 257 + ], + "spans": [ + { + "bbox": [ + 110, + 242, + 507, + 257 + ], + "score": 1.0, + "content": "[6] Ben-David, S. and Urner, R. On the hardness of domain adaptation and the utility of unlabeled", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 253, + 304, + 268 + ], + "spans": [ + { + "bbox": [ + 126, + 253, + 304, + 268 + ], + "score": 1.0, + "content": "target samples. In ALT, pp. 139–153, 2012.", + "type": "text" + } + ], + "index": 12, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 272, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 110, + 272, + 506, + 288 + ], + "score": 1.0, + "content": "[7] Ben-David, S., Blitzer, J., Crammer, K., Kulesza, A., Pereira, F., and Vaughan, J. W. A theory", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 285, + 448, + 298 + ], + "spans": [ + { + "bbox": [ + 127, + 285, + 448, + 298 + ], + "score": 1.0, + "content": "of learning from different domains. Machine Learning, 79(1-2):151–175, 2010.", + "type": "text" + } + ], + "index": 14, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 304, + 506, + 317 + ], + "spans": [ + { + "bbox": [ + 110, + 304, + 506, + 317 + ], + "score": 1.0, + "content": "[8] Berthelot, D., Carlini, N., Goodfellow, I., Papernot, N., Oliver, A., and Raffel, C. Mixmatch: A", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 314, + 477, + 329 + ], + "spans": [ + { + "bbox": [ + 126, + 314, + 477, + 329 + ], + "score": 1.0, + "content": "holistic approach to semi-supervised learning. arXiv preprint arXiv:1905.02249, 2019.", + "type": "text" + } + ], + "index": 16, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 333, + 507, + 348 + ], + "spans": [ + { + "bbox": [ + 110, + 333, + 507, + 348 + ], + "score": 1.0, + "content": "[9] Bertinetto, L., Henriques, J. F., Torr, P., and Vedaldi, A. Meta-learning with differentiable", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 346, + 275, + 357 + ], + "spans": [ + { + "bbox": [ + 127, + 346, + 275, + 357 + ], + "score": 1.0, + "content": "closed-form solvers. In ICLR, 2019.", + "type": "text" + } + ], + "index": 18, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 364, + 507, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 507, + 379 + ], + "score": 1.0, + "content": "[10] Blitzer, J., Dredze, M., and Pereira, F. Biographies, Bollywood, boom-boxes and blenders:", + "type": "text" + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 376, + 434, + 389 + ], + "spans": [ + { + "bbox": [ + 127, + 376, + 434, + 389 + ], + "score": 1.0, + "content": "Domain adaptation for sentiment classification. In ACL, pp. 440–447, 2007.", + "type": "text" + } + ], + "index": 20, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 394, + 507, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 507, + 409 + ], + "score": 1.0, + "content": "[11] Cai, T., Gao, R., Lee, J. D., and Lei, Q. A theory of label propagation for subpopulation shift,", + "type": "text" + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 405, + 155, + 419 + ], + "spans": [ + { + "bbox": [ + 126, + 405, + 155, + 419 + ], + "score": 1.0, + "content": "2021.", + "type": "text" + } + ], + "index": 22, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 425, + 443, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 443, + 439 + ], + "score": 1.0, + "content": "[12] Carlini, N. Poisoning the unlabeled dataset of semi-supervised learning, 2021.", + "type": "text" + } + ], + "index": 23, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 444, + 507, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 507, + 460 + ], + "score": 1.0, + "content": "[13] Chapelle, O., Scholkopf, B., and Zien, A. ¨ Semi-supervised learning. MIT press Cambridge,", + "type": "text" + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 456, + 154, + 470 + ], + "spans": [ + { + "bbox": [ + 127, + 456, + 154, + 470 + ], + "score": 1.0, + "content": "2006.", + "type": "text" + } + ], + "index": 25, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 476, + 506, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 506, + 489 + ], + "score": 1.0, + "content": "[14] Chen, C., Xie, W., Huang, W., Rong, Y., Ding, X., Huang, Y., Xu, T., and Huang, J. Progressive", + "type": "text" + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 486, + 470, + 499 + ], + "spans": [ + { + "bbox": [ + 127, + 486, + 470, + 499 + ], + "score": 1.0, + "content": "feature alignment for unsupervised domain adaptation. In CVPR, pp. 627–636, 2019.", + "type": "text" + } + ], + "index": 27, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 505, + 507, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 507, + 521 + ], + "score": 1.0, + "content": "[15] Chen, Y., Wei, C., Kumar, A., and Ma, T. Self-training avoids using spurious features under", + "type": "text" + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 517, + 334, + 531 + ], + "spans": [ + { + "bbox": [ + 127, + 517, + 334, + 531 + ], + "score": 1.0, + "content": "domain shift. In NeurIPS, pp. 21061–21071, 2020.", + "type": "text" + } + ], + "index": 29, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 536, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 505, + 549 + ], + "score": 1.0, + "content": "[16] Devlin, J., Chang, M.-W., Lee, K., and Toutanova, K. BERT: Pre-training of deep bidirectional", + "type": "text" + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 547, + 431, + 560 + ], + "spans": [ + { + "bbox": [ + 127, + 547, + 431, + 560 + ], + "score": 1.0, + "content": "transformers for language understanding. In NAACL, pp. 4171–4186, 2019.", + "type": "text" + } + ], + "index": 31, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 566, + 507, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 507, + 582 + ], + "score": 1.0, + "content": "[17] Du, J., Grave, E., Gunel, B., Chaudhary, V., Celebi, O., Auli, M., Stoyanov, V., and Conneau,", + "type": "text" + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 577, + 507, + 594 + ], + "spans": [ + { + "bbox": [ + 125, + 577, + 507, + 594 + ], + "score": 1.0, + "content": "A. Self-training improves pre-training for natural language understanding. In NAACL, pp.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 127, + 588, + 203, + 601 + ], + "spans": [ + { + "bbox": [ + 127, + 588, + 203, + 601 + ], + "score": 1.0, + "content": "5408–5418, 2021.", + "type": "text" + } + ], + "index": 34, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 605, + 507, + 624 + ], + "spans": [ + { + "bbox": [ + 104, + 605, + 507, + 624 + ], + "score": 1.0, + "content": "[18] Finn, C., Abbeel, P., and Levine, S. Model-agnostic meta-learning for fast adaptation of deep", + "type": "text" + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 619, + 301, + 633 + ], + "spans": [ + { + "bbox": [ + 127, + 619, + 301, + 633 + ], + "score": 1.0, + "content": "networks. In ICML, pp. 1126–1135, 2017.", + "type": "text" + } + ], + "index": 36, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 637, + 507, + 652 + ], + "spans": [ + { + "bbox": [ + 104, + 637, + 507, + 652 + ], + "score": 1.0, + "content": "[19] Foret, P., Kleiner, A., Mobahi, H., and Neyshabur, B. Sharpness-aware minimization for", + "type": "text" + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 650, + 340, + 663 + ], + "spans": [ + { + "bbox": [ + 127, + 650, + 340, + 663 + ], + "score": 1.0, + "content": "efficiently improving generalization. In ICLR, 2021.", + "type": "text" + } + ], + "index": 38, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 668, + 507, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 507, + 684 + ], + "score": 1.0, + "content": "[20] Frei, S., Zou, D., Chen, Z., and Gu, Q. Self-training converts weak learners to strong learners in", + "type": "text" + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 680, + 360, + 694 + ], + "spans": [ + { + "bbox": [ + 127, + 680, + 360, + 694 + ], + "score": 1.0, + "content": "mixture models. arXiv preprint arXiv:2106.13805, 2021.", + "type": "text" + } + ], + "index": 40, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 700, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 506, + 713 + ], + "score": 1.0, + "content": "[21] French, G., Mackiewicz, M., and Fisher, M. Self-ensembling for visual domain adaptation. In", + "type": "text" + } + ], + "index": 41, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 711, + 180, + 724 + ], + "spans": [ + { + "bbox": [ + 127, + 711, + 180, + 724 + ], + "score": 1.0, + "content": "ICLR, 2018.", + "type": "text" + } + ], + "index": 42, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 73, + 507, + 86 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 507, + 86 + ], + "score": 1.0, + "content": "[22] Ganin, Y., Ustinova, E., Ajakan, H., Germain, P., Larochelle, H., Marchand, M., and Lempitsky,", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 83, + 464, + 97 + ], + "spans": [ + { + "bbox": [ + 127, + 83, + 464, + 97 + ], + "score": 1.0, + "content": "V. Domain-adversarial training of neural networks. JMLR, 17(1):2096–2030, 2016.", + "type": "text", + "cross_page": true + } + ], + "index": 1, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 101, + 507, + 120 + ], + "spans": [ + { + "bbox": [ + 104, + 101, + 507, + 120 + ], + "score": 1.0, + "content": "[23] Ghiasi, G., Zoph, B., Cubuk, E. D., Le, Q. V., and Lin, T.-Y. Multi-task self-training for learning", + "type": "text", + "cross_page": true + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 114, + 356, + 129 + ], + "spans": [ + { + "bbox": [ + 125, + 114, + 356, + 129 + ], + "score": 1.0, + "content": "general representations. In ICCV, pp. 8856–8865, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 3, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 134, + 506, + 148 + ], + "spans": [ + { + "bbox": [ + 106, + 134, + 506, + 148 + ], + "score": 1.0, + "content": "[24] Grandvalet, Y. and Bengio, Y. Semi-supervised learning by entropy minimization. In NeurIPS,", + "type": "text", + "cross_page": true + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 146, + 207, + 158 + ], + "spans": [ + { + "bbox": [ + 125, + 146, + 207, + 158 + ], + "score": 1.0, + "content": "pp. 529–536, 2004.", + "type": "text", + "cross_page": true + } + ], + "index": 5, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 164, + 507, + 180 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 507, + 180 + ], + "score": 1.0, + "content": "[25] Guo, C., Pleiss, G., Sun, Y., and Weinberger, K. Q. On calibration of modern neural networks.", + "type": "text", + "cross_page": true + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 176, + 258, + 189 + ], + "spans": [ + { + "bbox": [ + 126, + 176, + 258, + 189 + ], + "score": 1.0, + "content": "In ICML, pp. 1321–1330, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 7, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 196, + 507, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 507, + 210 + ], + "score": 1.0, + "content": "[26] He, K., Zhang, X., Ren, S., and Sun, J. Deep residual learning for image recognition. In CVPR,", + "type": "text", + "cross_page": true + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 207, + 209, + 221 + ], + "spans": [ + { + "bbox": [ + 125, + 207, + 209, + 221 + ], + "score": 1.0, + "content": "pp. 770–778, 2016.", + "type": "text", + "cross_page": true + } + ], + "index": 9, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 227, + 507, + 241 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 507, + 241 + ], + "score": 1.0, + "content": "[27] Hoffman, J., Tzeng, E., Park, T., Zhu, J., Isola, P., Saenko, K., Efros, A. A., and Darrell, T.", + "type": "text", + "cross_page": true + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 239, + 488, + 252 + ], + "spans": [ + { + "bbox": [ + 127, + 239, + 488, + 252 + ], + "score": 1.0, + "content": "Cycada: Cycle-consistent adversarial domain adaptation. In ICML, pp. 1994–2003, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 11, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 257, + 507, + 272 + ], + "spans": [ + { + "bbox": [ + 104, + 257, + 507, + 272 + ], + "score": 1.0, + "content": "[28] Jiang, X., Lao, Q., Matwin, S., and Havaei, M. Implicit class-conditioned domain alignment for", + "type": "text", + "cross_page": true + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 270, + 392, + 283 + ], + "spans": [ + { + "bbox": [ + 127, + 270, + 392, + 283 + ], + "score": 1.0, + "content": "unsupervised domain adaptation. In ICML, pp. 4816–4827, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 13, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 289, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 506, + 303 + ], + "score": 1.0, + "content": "[29] Johansson, F. D., Sontag, D., and Ranganath, R. Support and invertibility in domain-invariant", + "type": "text", + "cross_page": true + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 299, + 328, + 314 + ], + "spans": [ + { + "bbox": [ + 125, + 299, + 328, + 314 + ], + "score": 1.0, + "content": "representations. In AISTATS, pp. 527–536, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 15, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 319, + 507, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 507, + 334 + ], + "score": 1.0, + "content": "[30] Kumar, A., Ma, T., and Liang, P. Understanding self-training for gradual domain adaptation. In", + "type": "text", + "cross_page": true + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 331, + 247, + 344 + ], + "spans": [ + { + "bbox": [ + 127, + 331, + 247, + 344 + ], + "score": 1.0, + "content": "ICML, pp. 5468–5479, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 17, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 349, + 506, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 506, + 365 + ], + "score": 1.0, + "content": "[31] Lee, D.-H. Pseudo-label : The simple and efficient semi-supervised learning method for deep", + "type": "text", + "cross_page": true + } + ], + "index": 18, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 362, + 500, + 375 + ], + "spans": [ + { + "bbox": [ + 126, + 362, + 500, + 375 + ], + "score": 1.0, + "content": "neural networks. ICML Workshop: Challenges in Representation Learning (WREPL), 2013.", + "type": "text", + "cross_page": true + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 381, + 507, + 396 + ], + "spans": [ + { + "bbox": [ + 104, + 381, + 507, + 396 + ], + "score": 1.0, + "content": "[32] Li, B., Wang, Y., Che, T., Zhang, S., Zhao, S., Xu, P., Zhou, W., Bengio, Y., and Keutzer, K.", + "type": "text", + "cross_page": true + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 392, + 497, + 406 + ], + "spans": [ + { + "bbox": [ + 127, + 392, + 497, + 406 + ], + "score": 1.0, + "content": "Rethinking distributional matching based domain adaptation. ArXiv, abs/2006.13352, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 412, + 507, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 507, + 427 + ], + "score": 1.0, + "content": "[33] Liu, H., Long, M., Wang, J., and Jordan, M. Transferable adversarial training: A general", + "type": "text", + "cross_page": true + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 423, + 458, + 439 + ], + "spans": [ + { + "bbox": [ + 127, + 423, + 458, + 439 + ], + "score": 1.0, + "content": "approach to adapting deep classifiers. In ICML, volume 97, pp. 4013–4022, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 23, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 442, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 104, + 442, + 506, + 459 + ], + "score": 1.0, + "content": "[34] Long, M., Cao, Y., Wang, J., and Jordan, M. I. Learning transferable features with deep", + "type": "text", + "cross_page": true + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 455, + 330, + 468 + ], + "spans": [ + { + "bbox": [ + 127, + 455, + 330, + 468 + ], + "score": 1.0, + "content": "adaptation networks. In ICML, pp. 97–105, 2015.", + "type": "text", + "cross_page": true + } + ], + "index": 25, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 474, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 505, + 487 + ], + "score": 1.0, + "content": "[35] Long, M., Zhu, H., Wang, J., and Jordan, M. I. Unsupervised domain adaptation with residual", + "type": "text", + "cross_page": true + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 485, + 334, + 499 + ], + "spans": [ + { + "bbox": [ + 127, + 485, + 334, + 499 + ], + "score": 1.0, + "content": "transfer networks. In NeurIPS, pp. 136–144, 2016.", + "type": "text", + "cross_page": true + } + ], + "index": 27, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 505, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 505, + 519 + ], + "score": 1.0, + "content": "[36] Long, M., Zhu, H., Wang, J., and Jordan, M. I. Deep transfer learning with joint adaptation", + "type": "text", + "cross_page": true + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 517, + 301, + 530 + ], + "spans": [ + { + "bbox": [ + 126, + 517, + 301, + 530 + ], + "score": 1.0, + "content": "networks. In ICML, pp. 2208–2217, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 29, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 536, + 506, + 550 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 506, + 550 + ], + "score": 1.0, + "content": "[37] Long, M., Cao, Z., Wang, J., and Jordan, M. I. Conditional adversarial domain adaptation. In", + "type": "text", + "cross_page": true + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 548, + 257, + 560 + ], + "spans": [ + { + "bbox": [ + 127, + 548, + 257, + 560 + ], + "score": 1.0, + "content": "NeurIPS, pp. 1640–1650. 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 31, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 567, + 506, + 580 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 506, + 580 + ], + "score": 1.0, + "content": "[38] Lu, Z., Yang, Y., Zhu, X., Liu, C., Song, Y.-Z., and Xiang, T. Stochastic classifiers for", + "type": "text", + "cross_page": true + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 578, + 393, + 592 + ], + "spans": [ + { + "bbox": [ + 127, + 578, + 393, + 592 + ], + "score": 1.0, + "content": "unsupervised domain adaptation. In CVPR, pp. 9111–9120, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 33, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 598, + 436, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 598, + 436, + 612 + ], + "score": 1.0, + "content": "[39] Mey, A. and Loog, M. A soft-labeled self-training approach. In ICPR, 2016.", + "type": "text", + "cross_page": true + } + ], + "index": 34, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 617, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 506, + 632 + ], + "score": 1.0, + "content": "[40] Miyato, T., Maeda, S., Ishii, S., and Koyama, M. Virtual adversarial training: A regularization", + "type": "text", + "cross_page": true + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 630, + 400, + 643 + ], + "spans": [ + { + "bbox": [ + 127, + 630, + 400, + 643 + ], + "score": 1.0, + "content": "method for supervised and semi-supervised learning. TPAMI, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 36, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 647, + 507, + 664 + ], + "spans": [ + { + "bbox": [ + 104, + 647, + 507, + 664 + ], + "score": 1.0, + "content": "[41] Mohri, M., Rostamizadeh, A., and Talwalkar, A. Foundations of machine learning. MIT press,", + "type": "text", + "cross_page": true + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 659, + 155, + 673 + ], + "spans": [ + { + "bbox": [ + 126, + 659, + 155, + 673 + ], + "score": 1.0, + "content": "2018.", + "type": "text", + "cross_page": true + } + ], + "index": 38, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 679, + 507, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 507, + 695 + ], + "score": 1.0, + "content": "[42] Mukherjee, S. and Awadallah, A. Uncertainty-aware self-training for few-shot text classification.", + "type": "text", + "cross_page": true + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 690, + 326, + 704 + ], + "spans": [ + { + "bbox": [ + 126, + 690, + 326, + 704 + ], + "score": 1.0, + "content": "In NeurIPS, volume 33, pp. 21199–21212, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 40, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 711, + 480, + 725 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 480, + 725 + ], + "score": 1.0, + "content": "[43] Pan, S. J. and Yang, Q. A survey on transfer learning. TKDE, 22(10):1345–1359, 2010.", + "type": "text", + "cross_page": true + } + ], + "index": 41, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 73, + 505, + 85 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 505, + 85 + ], + "score": 1.0, + "content": "[44] Paszke, A., Gross, S., Massa, F., Lerer, A., Bradbury, J., Chanan, G., Killeen, T., Lin, Z.,", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 128, + 84, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 128, + 84, + 506, + 96 + ], + "score": 1.0, + "content": "Gimelshein, N., Antiga, L., Desmaison, A., Kopf, A., Yang, E., DeVito, Z., Raison, M., Tejani,", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 126, + 94, + 506, + 108 + ], + "spans": [ + { + "bbox": [ + 126, + 94, + 506, + 108 + ], + "score": 1.0, + "content": "A., Chilamkurthy, S., Steiner, B., Fang, L., Bai, J., and Chintala, S. Pytorch: An imperative", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 127, + 106, + 502, + 118 + ], + "spans": [ + { + "bbox": [ + 127, + 106, + 502, + 118 + ], + "score": 1.0, + "content": "style, high-performance deep learning library. In NeurIPS, volume 32, pp. 8026–8037, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 126, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 126, + 505, + 138 + ], + "score": 1.0, + "content": "[45] Peng, X., Usman, B., Kaushik, N., Hoffman, J., Wang, D., and Saenko, K. Visda: The visual", + "type": "text", + "cross_page": true + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 136, + 372, + 150 + ], + "spans": [ + { + "bbox": [ + 127, + 136, + 372, + 150 + ], + "score": 1.0, + "content": "domain adaptation challenge. CoRR, abs/1710.06924, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 5, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 155, + 506, + 169 + ], + "spans": [ + { + "bbox": [ + 104, + 155, + 506, + 169 + ], + "score": 1.0, + "content": "[46] Peng, X., Bai, Q., Xia, X., Huang, Z., Saenko, K., and Wang, B. Moment matching for", + "type": "text", + "cross_page": true + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 167, + 390, + 181 + ], + "spans": [ + { + "bbox": [ + 127, + 167, + 390, + 181 + ], + "score": 1.0, + "content": "multi-source domain adaptation. In ICCV, pp. 1406–1415, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 7, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 186, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 506, + 200 + ], + "score": 1.0, + "content": "[47] Prabhu, V., Khare, S., Kartik, D., and Hoffman, J. Sentry: Selective entropy optimization via", + "type": "text", + "cross_page": true + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 198, + 394, + 210 + ], + "spans": [ + { + "bbox": [ + 125, + 198, + 394, + 210 + ], + "score": 1.0, + "content": "committee consistency for unsupervised domain adaptation, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 9, + "is_list_end_line": true + }, + { + "bbox": [ + 103, + 215, + 507, + 232 + ], + "spans": [ + { + "bbox": [ + 103, + 215, + 507, + 232 + ], + "score": 1.0, + "content": "[48] Prabhu, V., Khare, S., Kartik, D., and Hoffman, J. Sentry: Selective entropy optimization via", + "type": "text", + "cross_page": true + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 228, + 506, + 242 + ], + "spans": [ + { + "bbox": [ + 126, + 228, + 506, + 242 + ], + "score": 1.0, + "content": "committee consistency for unsupervised domain adaptation. In ICCV, pp. 8558–8567, October", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 126, + 236, + 156, + 253 + ], + "spans": [ + { + "bbox": [ + 126, + 236, + 156, + 253 + ], + "score": 1.0, + "content": "2021.", + "type": "text", + "cross_page": true + } + ], + "index": 12, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 258, + 507, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 507, + 272 + ], + "score": 1.0, + "content": "[49] Qu, X., Zou, Z., Cheng, Y., Yang, Y., and Zhou, P. Adversarial category alignment network for", + "type": "text", + "cross_page": true + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 270, + 354, + 282 + ], + "spans": [ + { + "bbox": [ + 127, + 270, + 354, + 282 + ], + "score": 1.0, + "content": "cross-domain sentiment classification. In NAACL, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 14, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 288, + 507, + 304 + ], + "spans": [ + { + "bbox": [ + 104, + 288, + 507, + 304 + ], + "score": 1.0, + "content": "[50] Quionero-Candela, J., Sugiyama, M., Schwaighofer, A., and Lawrence, N. D. Dataset Shift in", + "type": "text", + "cross_page": true + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 300, + 299, + 314 + ], + "spans": [ + { + "bbox": [ + 126, + 300, + 299, + 314 + ], + "score": 1.0, + "content": "Machine Learning. The MIT Press, 2009.", + "type": "text", + "cross_page": true + } + ], + "index": 16, + "is_list_end_line": true + }, + { + "bbox": [ + 103, + 317, + 507, + 335 + ], + "spans": [ + { + "bbox": [ + 103, + 317, + 507, + 335 + ], + "score": 1.0, + "content": "[51] Rasmus, A., Berglund, M., Honkala, M., Valpola, H., and Raiko, T. Semi-supervised learning", + "type": "text", + "cross_page": true + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 330, + 406, + 343 + ], + "spans": [ + { + "bbox": [ + 126, + 330, + 406, + 343 + ], + "score": 1.0, + "content": "with ladder networks. In NeurIPS, volume 28, pp. 3546–3554, 2015.", + "type": "text", + "cross_page": true + } + ], + "index": 18, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 350, + 506, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 350, + 506, + 364 + ], + "score": 1.0, + "content": "[52] Rosenberg, C., Hebert, M., and Schneiderman, H. Semi-supervised self-training of object", + "type": "text", + "cross_page": true + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 361, + 357, + 375 + ], + "spans": [ + { + "bbox": [ + 126, + 361, + 357, + 375 + ], + "score": 1.0, + "content": "detection models. In WACV, volume 1, pp. 29–36, 2005.", + "type": "text", + "cross_page": true + } + ], + "index": 20, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 380, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 506, + 394 + ], + "score": 1.0, + "content": "[53] Russakovsky, O., Deng, J., Su, H., Krause, J., Satheesh, S., Ma, S., Huang, Z., Karpathy,", + "type": "text", + "cross_page": true + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 392, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 127, + 392, + 505, + 406 + ], + "score": 1.0, + "content": "A., Khosla, A., Bernstein, M., Berg, A. C., and Fei-Fei, L. ImageNet Large Scale Visual", + "type": "text", + "cross_page": true + } + ], + "index": 22 + }, + { + "bbox": [ + 128, + 403, + 345, + 415 + ], + "spans": [ + { + "bbox": [ + 128, + 403, + 345, + 415 + ], + "score": 1.0, + "content": "Recognition Challenge. IJCV, 115(3):211–252, 2015.", + "type": "text", + "cross_page": true + } + ], + "index": 23, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 422, + 506, + 436 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 506, + 436 + ], + "score": 1.0, + "content": "[54] Saito, K., Watanabe, K., Ushiku, Y., and Harada, T. Maximum classifier discrepancy for", + "type": "text", + "cross_page": true + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 433, + 394, + 447 + ], + "spans": [ + { + "bbox": [ + 127, + 433, + 394, + 447 + ], + "score": 1.0, + "content": "unsupervised domain adaptation. In CVPR, pp. 3723–3732, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 25, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 452, + 507, + 467 + ], + "spans": [ + { + "bbox": [ + 104, + 452, + 507, + 467 + ], + "score": 1.0, + "content": "[55] Sajjadi, M., Javanmardi, M., and Tasdizen, T. Regularization with stochastic transformations", + "type": "text", + "cross_page": true + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 464, + 505, + 476 + ], + "spans": [ + { + "bbox": [ + 127, + 464, + 505, + 476 + ], + "score": 1.0, + "content": "and perturbations for deep semi-supervised learning. In NeurIPS, volume 29, pp. 1163–1171,", + "type": "text", + "cross_page": true + } + ], + "index": 27 + }, + { + "bbox": [ + 126, + 474, + 155, + 488 + ], + "spans": [ + { + "bbox": [ + 126, + 474, + 155, + 488 + ], + "score": 1.0, + "content": "2016.", + "type": "text", + "cross_page": true + } + ], + "index": 28, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 494, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 494, + 506, + 508 + ], + "score": 1.0, + "content": "[56] Shu, R., Bui, H., Narui, H., and Ermon, S. A DIRT-t approach to unsupervised domain", + "type": "text", + "cross_page": true + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 505, + 239, + 518 + ], + "spans": [ + { + "bbox": [ + 125, + 505, + 239, + 518 + ], + "score": 1.0, + "content": "adaptation. In ICLR, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 30, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 525, + 506, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 506, + 539 + ], + "score": 1.0, + "content": "[57] Sohn, K., Berthelot, D., Carlini, N., Zhang, Z., Zhang, H., Raffel, C. A., Cubuk, E. D., Kurakin,", + "type": "text", + "cross_page": true + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 536, + 506, + 550 + ], + "spans": [ + { + "bbox": [ + 126, + 536, + 506, + 550 + ], + "score": 1.0, + "content": "A., and Li, C.-L. Fixmatch: Simplifying semi-supervised learning with consistency and", + "type": "text", + "cross_page": true + } + ], + "index": 32 + }, + { + "bbox": [ + 127, + 548, + 253, + 560 + ], + "spans": [ + { + "bbox": [ + 127, + 548, + 253, + 560 + ], + "score": 1.0, + "content": "confidence. In NeurIPS, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 33, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 567, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 506, + 579 + ], + "score": 1.0, + "content": "[58] Szegedy, C., Zaremba, W., Sutskever, I., Bruna, J., Erhan, D., Goodfellow, I., and Fergus, R.", + "type": "text", + "cross_page": true + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 577, + 356, + 591 + ], + "spans": [ + { + "bbox": [ + 126, + 577, + 356, + 591 + ], + "score": 1.0, + "content": "Intriguing properties of neural networks. In ICLR, 2014.", + "type": "text", + "cross_page": true + } + ], + "index": 35, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 597, + 506, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 506, + 611 + ], + "score": 1.0, + "content": "[59] Talagrand, M. Upper and lower bounds for stochastic processes: modern methods and classical", + "type": "text", + "cross_page": true + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 608, + 393, + 623 + ], + "spans": [ + { + "bbox": [ + 126, + 608, + 393, + 623 + ], + "score": 1.0, + "content": "problems, volume 60. Springer Science & Business Media, 2014.", + "type": "text", + "cross_page": true + } + ], + "index": 37, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 626, + 507, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 507, + 642 + ], + "score": 1.0, + "content": "[60] Tan, S., Peng, X., and Saenko, K. Class-imbalanced domain adaptation: An empirical odyssey.", + "type": "text", + "cross_page": true + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 638, + 238, + 652 + ], + "spans": [ + { + "bbox": [ + 127, + 638, + 238, + 652 + ], + "score": 1.0, + "content": "In ECCV Workshop, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 39, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 658, + 507, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 507, + 672 + ], + "score": 1.0, + "content": "[61] Tarvainen, A. and Valpola, H. Mean teachers are better role models: Weight-averaged con-", + "type": "text", + "cross_page": true + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 666, + 508, + 686 + ], + "spans": [ + { + "bbox": [ + 126, + 666, + 508, + 686 + ], + "score": 1.0, + "content": "sistency targets improve semi-supervised deep learning results. In NeurIPS, volume 30, pp.", + "type": "text", + "cross_page": true + } + ], + "index": 41 + }, + { + "bbox": [ + 127, + 681, + 204, + 693 + ], + "spans": [ + { + "bbox": [ + 127, + 681, + 204, + 693 + ], + "score": 1.0, + "content": "1195–1204, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 42, + "is_list_end_line": true + }, + { + "bbox": [ + 103, + 698, + 507, + 715 + ], + "spans": [ + { + "bbox": [ + 103, + 698, + 507, + 715 + ], + "score": 1.0, + "content": "[62] Tsallis, C. Possible generalization of boltzmann-gibbs statistics. Journal of Statistical Physics,", + "type": "text", + "cross_page": true + } + ], + "index": 43, + "is_list_start_line": true + }, + { + "bbox": [ + 128, + 711, + 225, + 723 + ], + "spans": [ + { + "bbox": [ + 128, + 711, + 225, + 723 + ], + "score": 1.0, + "content": "52(1-2):479–487, 1988.", + "type": "text", + "cross_page": true + } + ], + "index": 44, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 72, + 505, + 86 + ], + "spans": [ + { + "bbox": [ + 106, + 72, + 505, + 86 + ], + "score": 1.0, + "content": "[63] Tzeng, E., Hoffman, J., Saenko, K., and Darrell, T. Adversarial discriminative domain adaptation.", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 83, + 258, + 96 + ], + "spans": [ + { + "bbox": [ + 126, + 83, + 258, + 96 + ], + "score": 1.0, + "content": "In CVPR, pp. 7167–7176, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 1, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 102, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 505, + 117 + ], + "score": 1.0, + "content": "[64] Venkateswara, H., Eusebio, J., Chakraborty, S., and Panchanathan, S. Deep hashing network for", + "type": "text", + "cross_page": true + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 114, + 394, + 127 + ], + "spans": [ + { + "bbox": [ + 127, + 114, + 394, + 127 + ], + "score": 1.0, + "content": "unsupervised domain adaptation. In CVPR, pp. 5018–5027, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 3, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 133, + 505, + 146 + ], + "spans": [ + { + "bbox": [ + 106, + 133, + 505, + 146 + ], + "score": 1.0, + "content": "[65] Vu, T., Luong, M.-T., Le, Q. V., Simon, G., and Iyyer, M. Strata: Self-training with task", + "type": "text", + "cross_page": true + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 143, + 463, + 157 + ], + "spans": [ + { + "bbox": [ + 126, + 143, + 463, + 157 + ], + "score": 1.0, + "content": "augmentation for better few-shot learning. arXiv preprint arXiv:2109.06270, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 5, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 161, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 161, + 505, + 177 + ], + "score": 1.0, + "content": "[66] Wei, C., Shen, K., Yining, C., and Ma, T. Theoretical analysis of self-training with deep", + "type": "text", + "cross_page": true + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 173, + 306, + 186 + ], + "spans": [ + { + "bbox": [ + 127, + 173, + 306, + 186 + ], + "score": 1.0, + "content": "networks on unlabeled data. In ICLR, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 7, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 191, + 505, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 505, + 207 + ], + "score": 1.0, + "content": "[67] Xie, Q., Luong, M. T., Hovy, E., and Le, Q. V. Self-training with noisy student improves", + "type": "text", + "cross_page": true + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 203, + 290, + 216 + ], + "spans": [ + { + "bbox": [ + 127, + 203, + 290, + 216 + ], + "score": 1.0, + "content": "imagenet classification. In CVPR, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 9, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 221, + 506, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 506, + 236 + ], + "score": 1.0, + "content": "[68] Xie, S. M., Kumar, A., Jones, R., Khani, F., Ma, T., and Liang, P. In-n-out: Pre-training and", + "type": "text", + "cross_page": true + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 233, + 492, + 246 + ], + "spans": [ + { + "bbox": [ + 127, + 233, + 492, + 246 + ], + "score": 1.0, + "content": "self-training using auxiliary information for out-of-distribution robustness. In ICLR, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 11, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 251, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 506, + 266 + ], + "score": 1.0, + "content": "[69] Xu, R., Li, G., Yang, J., and Lin, L. Larger norm more transferable: An adaptive feature norm", + "type": "text", + "cross_page": true + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 263, + 380, + 276 + ], + "spans": [ + { + "bbox": [ + 127, + 263, + 380, + 276 + ], + "score": 1.0, + "content": "approach for unsupervised domain adaptation. In ICCV, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 13, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 281, + 506, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 506, + 295 + ], + "score": 1.0, + "content": "[70] Yosinski, J., Clune, J., Bengio, Y., and Lipson, H. How transferable are features in deep neural", + "type": "text", + "cross_page": true + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 293, + 313, + 306 + ], + "spans": [ + { + "bbox": [ + 127, + 293, + 313, + 306 + ], + "score": 1.0, + "content": "networks? In NeurIPS, pp. 3320–3328. 2014.", + "type": "text", + "cross_page": true + } + ], + "index": 15, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 312, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 505, + 325 + ], + "score": 1.0, + "content": "[71] Zellinger, W., Grubinger, T., Lughofer, E., Natschlager, T., and Saminger-Platz, S. Central ¨", + "type": "text", + "cross_page": true + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 322, + 489, + 335 + ], + "spans": [ + { + "bbox": [ + 127, + 322, + 489, + 335 + ], + "score": 1.0, + "content": "moment discrepancy (CMD) for domain-invariant representation learning. In ICLR, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 17, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 341, + 506, + 354 + ], + "spans": [ + { + "bbox": [ + 106, + 341, + 506, + 354 + ], + "score": 1.0, + "content": "[72] Zhang, H., Cisse, M., Dauphin, Y. N., and Lopez-Paz, D. mixup: Beyond empirical risk", + "type": "text", + "cross_page": true + } + ], + "index": 18, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 353, + 249, + 364 + ], + "spans": [ + { + "bbox": [ + 127, + 353, + 249, + 364 + ], + "score": 1.0, + "content": "minimization. In ICLR, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 19, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 370, + 504, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 370, + 504, + 384 + ], + "score": 1.0, + "content": "[73] Zhang, Y., Liu, T., Long, M., and Jordan, M. Bridging theory and algorithm for domain", + "type": "text", + "cross_page": true + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 381, + 305, + 395 + ], + "spans": [ + { + "bbox": [ + 127, + 381, + 305, + 395 + ], + "score": 1.0, + "content": "adaptation. In ICML, pp. 7404–7413, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 21, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 401, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 505, + 414 + ], + "score": 1.0, + "content": "[74] Zhao, H., Combes, R. T. D., Zhang, K., and Gordon, G. On learning invariant representations", + "type": "text", + "cross_page": true + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 411, + 399, + 425 + ], + "spans": [ + { + "bbox": [ + 126, + 411, + 399, + 425 + ], + "score": 1.0, + "content": "for domain adaptation. In ICML, volume 97, pp. 7523–7532, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 23, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 430, + 507, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 507, + 445 + ], + "score": 1.0, + "content": "[75] Ziser, Y. and Reichart, R. Pivot based language modeling for improved neural domain adaptation.", + "type": "text", + "cross_page": true + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 441, + 264, + 454 + ], + "spans": [ + { + "bbox": [ + 126, + 441, + 264, + 454 + ], + "score": 1.0, + "content": "In NAACL, pp. 1241–1251, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 25, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 458, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 104, + 458, + 506, + 475 + ], + "score": 1.0, + "content": "[76] Zoph, B., Ghiasi, G., Lin, T.-Y., Cui, Y., Liu, H., Cubuk, E. D., and Le, Q. Rethinking", + "type": "text", + "cross_page": true + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 471, + 437, + 485 + ], + "spans": [ + { + "bbox": [ + 126, + 471, + 437, + 485 + ], + "score": 1.0, + "content": "pre-training and self-training. In NeurIPS, volume 33, pp. 3833–3845, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 27, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 488, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 506, + 505 + ], + "score": 1.0, + "content": "[77] Zou, Y., Yu, Z., Vijaya Kumar, B. V. K., and Wang, J. Unsupervised domain adaptation for", + "type": "text", + "cross_page": true + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 500, + 473, + 515 + ], + "spans": [ + { + "bbox": [ + 126, + 500, + 473, + 515 + ], + "score": 1.0, + "content": "semantic segmentation via class-balanced self-training. In ECCV, pp. 297–313, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 29, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 518, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 506, + 534 + ], + "score": 1.0, + "content": "[78] Zou, Y., Yu, Z., Liu, X., Kumar, B. V., and Wang, J. Confidence regularized self-training. In", + "type": "text", + "cross_page": true + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 530, + 216, + 543 + ], + "spans": [ + { + "bbox": [ + 127, + 530, + 216, + 543 + ], + "score": 1.0, + "content": "ICCV, October 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 31, + "is_list_end_line": true + } + ], + "index": 21.5, + "bbox_fs": [ + 104, + 90, + 507, + 724 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 73, + 507, + 723 + ], + "lines": [ + { + "bbox": [ + 106, + 73, + 507, + 86 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 507, + 86 + ], + "score": 1.0, + "content": "[22] Ganin, Y., Ustinova, E., Ajakan, H., Germain, P., Larochelle, H., Marchand, M., and Lempitsky,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 127, + 83, + 464, + 97 + ], + "spans": [ + { + "bbox": [ + 127, + 83, + 464, + 97 + ], + "score": 1.0, + "content": "V. Domain-adversarial training of neural networks. JMLR, 17(1):2096–2030, 2016.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 104, + 101, + 507, + 120 + ], + "spans": [ + { + "bbox": [ + 104, + 101, + 507, + 120 + ], + "score": 1.0, + "content": "[23] Ghiasi, G., Zoph, B., Cubuk, E. D., Le, Q. V., and Lin, T.-Y. Multi-task self-training for learning", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 125, + 114, + 356, + 129 + ], + "spans": [ + { + "bbox": [ + 125, + 114, + 356, + 129 + ], + "score": 1.0, + "content": "general representations. In ICCV, pp. 8856–8865, 2021.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 134, + 506, + 148 + ], + "spans": [ + { + "bbox": [ + 106, + 134, + 506, + 148 + ], + "score": 1.0, + "content": "[24] Grandvalet, Y. and Bengio, Y. Semi-supervised learning by entropy minimization. In NeurIPS,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 125, + 146, + 207, + 158 + ], + "spans": [ + { + "bbox": [ + 125, + 146, + 207, + 158 + ], + "score": 1.0, + "content": "pp. 529–536, 2004.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 164, + 507, + 180 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 507, + 180 + ], + "score": 1.0, + "content": "[25] Guo, C., Pleiss, G., Sun, Y., and Weinberger, K. Q. On calibration of modern neural networks.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 126, + 176, + 258, + 189 + ], + "spans": [ + { + "bbox": [ + 126, + 176, + 258, + 189 + ], + "score": 1.0, + "content": "In ICML, pp. 1321–1330, 2017.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 196, + 507, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 507, + 210 + ], + "score": 1.0, + "content": "[26] He, K., Zhang, X., Ren, S., and Sun, J. Deep residual learning for image recognition. In CVPR,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 125, + 207, + 209, + 221 + ], + "spans": [ + { + "bbox": [ + 125, + 207, + 209, + 221 + ], + "score": 1.0, + "content": "pp. 770–778, 2016.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 227, + 507, + 241 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 507, + 241 + ], + "score": 1.0, + "content": "[27] Hoffman, J., Tzeng, E., Park, T., Zhu, J., Isola, P., Saenko, K., Efros, A. A., and Darrell, T.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 127, + 239, + 488, + 252 + ], + "spans": [ + { + "bbox": [ + 127, + 239, + 488, + 252 + ], + "score": 1.0, + "content": "Cycada: Cycle-consistent adversarial domain adaptation. In ICML, pp. 1994–2003, 2018.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 257, + 507, + 272 + ], + "spans": [ + { + "bbox": [ + 104, + 257, + 507, + 272 + ], + "score": 1.0, + "content": "[28] Jiang, X., Lao, Q., Matwin, S., and Havaei, M. Implicit class-conditioned domain alignment for", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 127, + 270, + 392, + 283 + ], + "spans": [ + { + "bbox": [ + 127, + 270, + 392, + 283 + ], + "score": 1.0, + "content": "unsupervised domain adaptation. In ICML, pp. 4816–4827, 2020.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 289, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 506, + 303 + ], + "score": 1.0, + "content": "[29] Johansson, F. D., Sontag, D., and Ranganath, R. Support and invertibility in domain-invariant", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 125, + 299, + 328, + 314 + ], + "spans": [ + { + "bbox": [ + 125, + 299, + 328, + 314 + ], + "score": 1.0, + "content": "representations. In AISTATS, pp. 527–536, 2019.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 319, + 507, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 507, + 334 + ], + "score": 1.0, + "content": "[30] Kumar, A., Ma, T., and Liang, P. Understanding self-training for gradual domain adaptation. In", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 127, + 331, + 247, + 344 + ], + "spans": [ + { + "bbox": [ + 127, + 331, + 247, + 344 + ], + "score": 1.0, + "content": "ICML, pp. 5468–5479, 2020.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 349, + 506, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 506, + 365 + ], + "score": 1.0, + "content": "[31] Lee, D.-H. Pseudo-label : The simple and efficient semi-supervised learning method for deep", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 126, + 362, + 500, + 375 + ], + "spans": [ + { + "bbox": [ + 126, + 362, + 500, + 375 + ], + "score": 1.0, + "content": "neural networks. ICML Workshop: Challenges in Representation Learning (WREPL), 2013.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 381, + 507, + 396 + ], + "spans": [ + { + "bbox": [ + 104, + 381, + 507, + 396 + ], + "score": 1.0, + "content": "[32] Li, B., Wang, Y., Che, T., Zhang, S., Zhao, S., Xu, P., Zhou, W., Bengio, Y., and Keutzer, K.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 127, + 392, + 497, + 406 + ], + "spans": [ + { + "bbox": [ + 127, + 392, + 497, + 406 + ], + "score": 1.0, + "content": "Rethinking distributional matching based domain adaptation. ArXiv, abs/2006.13352, 2020.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 412, + 507, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 507, + 427 + ], + "score": 1.0, + "content": "[33] Liu, H., Long, M., Wang, J., and Jordan, M. Transferable adversarial training: A general", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 127, + 423, + 458, + 439 + ], + "spans": [ + { + "bbox": [ + 127, + 423, + 458, + 439 + ], + "score": 1.0, + "content": "approach to adapting deep classifiers. In ICML, volume 97, pp. 4013–4022, 2019.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 442, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 104, + 442, + 506, + 459 + ], + "score": 1.0, + "content": "[34] Long, M., Cao, Y., Wang, J., and Jordan, M. I. Learning transferable features with deep", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 127, + 455, + 330, + 468 + ], + "spans": [ + { + "bbox": [ + 127, + 455, + 330, + 468 + ], + "score": 1.0, + "content": "adaptation networks. In ICML, pp. 97–105, 2015.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 474, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 505, + 487 + ], + "score": 1.0, + "content": "[35] Long, M., Zhu, H., Wang, J., and Jordan, M. I. Unsupervised domain adaptation with residual", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 127, + 485, + 334, + 499 + ], + "spans": [ + { + "bbox": [ + 127, + 485, + 334, + 499 + ], + "score": 1.0, + "content": "transfer networks. In NeurIPS, pp. 136–144, 2016.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 505, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 505, + 519 + ], + "score": 1.0, + "content": "[36] Long, M., Zhu, H., Wang, J., and Jordan, M. I. Deep transfer learning with joint adaptation", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 126, + 517, + 301, + 530 + ], + "spans": [ + { + "bbox": [ + 126, + 517, + 301, + 530 + ], + "score": 1.0, + "content": "networks. In ICML, pp. 2208–2217, 2017.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 536, + 506, + 550 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 506, + 550 + ], + "score": 1.0, + "content": "[37] Long, M., Cao, Z., Wang, J., and Jordan, M. I. Conditional adversarial domain adaptation. In", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 127, + 548, + 257, + 560 + ], + "spans": [ + { + "bbox": [ + 127, + 548, + 257, + 560 + ], + "score": 1.0, + "content": "NeurIPS, pp. 1640–1650. 2018.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 567, + 506, + 580 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 506, + 580 + ], + "score": 1.0, + "content": "[38] Lu, Z., Yang, Y., Zhu, X., Liu, C., Song, Y.-Z., and Xiang, T. Stochastic classifiers for", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 127, + 578, + 393, + 592 + ], + "spans": [ + { + "bbox": [ + 127, + 578, + 393, + 592 + ], + "score": 1.0, + "content": "unsupervised domain adaptation. In CVPR, pp. 9111–9120, 2020.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 598, + 436, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 598, + 436, + 612 + ], + "score": 1.0, + "content": "[39] Mey, A. and Loog, M. A soft-labeled self-training approach. In ICPR, 2016.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 617, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 506, + 632 + ], + "score": 1.0, + "content": "[40] Miyato, T., Maeda, S., Ishii, S., and Koyama, M. Virtual adversarial training: A regularization", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 127, + 630, + 400, + 643 + ], + "spans": [ + { + "bbox": [ + 127, + 630, + 400, + 643 + ], + "score": 1.0, + "content": "method for supervised and semi-supervised learning. TPAMI, 2018.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 647, + 507, + 664 + ], + "spans": [ + { + "bbox": [ + 104, + 647, + 507, + 664 + ], + "score": 1.0, + "content": "[41] Mohri, M., Rostamizadeh, A., and Talwalkar, A. Foundations of machine learning. MIT press,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 126, + 659, + 155, + 673 + ], + "spans": [ + { + "bbox": [ + 126, + 659, + 155, + 673 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 679, + 507, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 507, + 695 + ], + "score": 1.0, + "content": "[42] Mukherjee, S. and Awadallah, A. Uncertainty-aware self-training for few-shot text classification.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 126, + 690, + 326, + 704 + ], + "spans": [ + { + "bbox": [ + 126, + 690, + 326, + 704 + ], + "score": 1.0, + "content": "In NeurIPS, volume 33, pp. 21199–21212, 2020.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 711, + 480, + 725 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 480, + 725 + ], + "score": 1.0, + "content": "[43] Pan, S. J. and Yang, Q. A survey on transfer learning. TKDE, 22(10):1345–1359, 2010.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 20.5 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 311, + 751 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 105, + 73, + 507, + 723 + ], + "lines": [], + "index": 20.5, + "bbox_fs": [ + 104, + 73, + 507, + 725 + ], + "lines_deleted": true + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 54, + 507, + 729 + ], + "lines": [ + { + "bbox": [ + 106, + 73, + 505, + 85 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 505, + 85 + ], + "score": 1.0, + "content": "[44] Paszke, A., Gross, S., Massa, F., Lerer, A., Bradbury, J., Chanan, G., Killeen, T., Lin, Z.,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 128, + 84, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 128, + 84, + 506, + 96 + ], + "score": 1.0, + "content": "Gimelshein, N., Antiga, L., Desmaison, A., Kopf, A., Yang, E., DeVito, Z., Raison, M., Tejani,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 126, + 94, + 506, + 108 + ], + "spans": [ + { + "bbox": [ + 126, + 94, + 506, + 108 + ], + "score": 1.0, + "content": "A., Chilamkurthy, S., Steiner, B., Fang, L., Bai, J., and Chintala, S. Pytorch: An imperative", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 127, + 106, + 502, + 118 + ], + "spans": [ + { + "bbox": [ + 127, + 106, + 502, + 118 + ], + "score": 1.0, + "content": "style, high-performance deep learning library. In NeurIPS, volume 32, pp. 8026–8037, 2019.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 126, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 126, + 505, + 138 + ], + "score": 1.0, + "content": "[45] Peng, X., Usman, B., Kaushik, N., Hoffman, J., Wang, D., and Saenko, K. Visda: The visual", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 127, + 136, + 372, + 150 + ], + "spans": [ + { + "bbox": [ + 127, + 136, + 372, + 150 + ], + "score": 1.0, + "content": "domain adaptation challenge. CoRR, abs/1710.06924, 2017.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 155, + 506, + 169 + ], + "spans": [ + { + "bbox": [ + 104, + 155, + 506, + 169 + ], + "score": 1.0, + "content": "[46] Peng, X., Bai, Q., Xia, X., Huang, Z., Saenko, K., and Wang, B. Moment matching for", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 127, + 167, + 390, + 181 + ], + "spans": [ + { + "bbox": [ + 127, + 167, + 390, + 181 + ], + "score": 1.0, + "content": "multi-source domain adaptation. In ICCV, pp. 1406–1415, 2019.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 186, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 506, + 200 + ], + "score": 1.0, + "content": "[47] Prabhu, V., Khare, S., Kartik, D., and Hoffman, J. Sentry: Selective entropy optimization via", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 125, + 198, + 394, + 210 + ], + "spans": [ + { + "bbox": [ + 125, + 198, + 394, + 210 + ], + "score": 1.0, + "content": "committee consistency for unsupervised domain adaptation, 2020.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 103, + 215, + 507, + 232 + ], + "spans": [ + { + "bbox": [ + 103, + 215, + 507, + 232 + ], + "score": 1.0, + "content": "[48] Prabhu, V., Khare, S., Kartik, D., and Hoffman, J. Sentry: Selective entropy optimization via", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 126, + 228, + 506, + 242 + ], + "spans": [ + { + "bbox": [ + 126, + 228, + 506, + 242 + ], + "score": 1.0, + "content": "committee consistency for unsupervised domain adaptation. In ICCV, pp. 8558–8567, October", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 126, + 236, + 156, + 253 + ], + "spans": [ + { + "bbox": [ + 126, + 236, + 156, + 253 + ], + "score": 1.0, + "content": "2021.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 258, + 507, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 507, + 272 + ], + "score": 1.0, + "content": "[49] Qu, X., Zou, Z., Cheng, Y., Yang, Y., and Zhou, P. Adversarial category alignment network for", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 127, + 270, + 354, + 282 + ], + "spans": [ + { + "bbox": [ + 127, + 270, + 354, + 282 + ], + "score": 1.0, + "content": "cross-domain sentiment classification. In NAACL, 2019.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 288, + 507, + 304 + ], + "spans": [ + { + "bbox": [ + 104, + 288, + 507, + 304 + ], + "score": 1.0, + "content": "[50] Quionero-Candela, J., Sugiyama, M., Schwaighofer, A., and Lawrence, N. D. Dataset Shift in", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 126, + 300, + 299, + 314 + ], + "spans": [ + { + "bbox": [ + 126, + 300, + 299, + 314 + ], + "score": 1.0, + "content": "Machine Learning. The MIT Press, 2009.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 103, + 317, + 507, + 335 + ], + "spans": [ + { + "bbox": [ + 103, + 317, + 507, + 335 + ], + "score": 1.0, + "content": "[51] Rasmus, A., Berglund, M., Honkala, M., Valpola, H., and Raiko, T. Semi-supervised learning", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 126, + 330, + 406, + 343 + ], + "spans": [ + { + "bbox": [ + 126, + 330, + 406, + 343 + ], + "score": 1.0, + "content": "with ladder networks. In NeurIPS, volume 28, pp. 3546–3554, 2015.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 350, + 506, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 350, + 506, + 364 + ], + "score": 1.0, + "content": "[52] Rosenberg, C., Hebert, M., and Schneiderman, H. Semi-supervised self-training of object", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 126, + 361, + 357, + 375 + ], + "spans": [ + { + "bbox": [ + 126, + 361, + 357, + 375 + ], + "score": 1.0, + "content": "detection models. In WACV, volume 1, pp. 29–36, 2005.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 380, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 506, + 394 + ], + "score": 1.0, + "content": "[53] Russakovsky, O., Deng, J., Su, H., Krause, J., Satheesh, S., Ma, S., Huang, Z., Karpathy,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 127, + 392, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 127, + 392, + 505, + 406 + ], + "score": 1.0, + "content": "A., Khosla, A., Bernstein, M., Berg, A. C., and Fei-Fei, L. ImageNet Large Scale Visual", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 128, + 403, + 345, + 415 + ], + "spans": [ + { + "bbox": [ + 128, + 403, + 345, + 415 + ], + "score": 1.0, + "content": "Recognition Challenge. IJCV, 115(3):211–252, 2015.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 422, + 506, + 436 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 506, + 436 + ], + "score": 1.0, + "content": "[54] Saito, K., Watanabe, K., Ushiku, Y., and Harada, T. Maximum classifier discrepancy for", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 127, + 433, + 394, + 447 + ], + "spans": [ + { + "bbox": [ + 127, + 433, + 394, + 447 + ], + "score": 1.0, + "content": "unsupervised domain adaptation. In CVPR, pp. 3723–3732, 2018.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 452, + 507, + 467 + ], + "spans": [ + { + "bbox": [ + 104, + 452, + 507, + 467 + ], + "score": 1.0, + "content": "[55] Sajjadi, M., Javanmardi, M., and Tasdizen, T. Regularization with stochastic transformations", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 127, + 464, + 505, + 476 + ], + "spans": [ + { + "bbox": [ + 127, + 464, + 505, + 476 + ], + "score": 1.0, + "content": "and perturbations for deep semi-supervised learning. In NeurIPS, volume 29, pp. 1163–1171,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 126, + 474, + 155, + 488 + ], + "spans": [ + { + "bbox": [ + 126, + 474, + 155, + 488 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 494, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 494, + 506, + 508 + ], + "score": 1.0, + "content": "[56] Shu, R., Bui, H., Narui, H., and Ermon, S. A DIRT-t approach to unsupervised domain", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 125, + 505, + 239, + 518 + ], + "spans": [ + { + "bbox": [ + 125, + 505, + 239, + 518 + ], + "score": 1.0, + "content": "adaptation. In ICLR, 2018.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 525, + 506, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 506, + 539 + ], + "score": 1.0, + "content": "[57] Sohn, K., Berthelot, D., Carlini, N., Zhang, Z., Zhang, H., Raffel, C. A., Cubuk, E. D., Kurakin,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 126, + 536, + 506, + 550 + ], + "spans": [ + { + "bbox": [ + 126, + 536, + 506, + 550 + ], + "score": 1.0, + "content": "A., and Li, C.-L. Fixmatch: Simplifying semi-supervised learning with consistency and", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 127, + 548, + 253, + 560 + ], + "spans": [ + { + "bbox": [ + 127, + 548, + 253, + 560 + ], + "score": 1.0, + "content": "confidence. In NeurIPS, 2020.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 567, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 506, + 579 + ], + "score": 1.0, + "content": "[58] Szegedy, C., Zaremba, W., Sutskever, I., Bruna, J., Erhan, D., Goodfellow, I., and Fergus, R.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 126, + 577, + 356, + 591 + ], + "spans": [ + { + "bbox": [ + 126, + 577, + 356, + 591 + ], + "score": 1.0, + "content": "Intriguing properties of neural networks. In ICLR, 2014.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 597, + 506, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 506, + 611 + ], + "score": 1.0, + "content": "[59] Talagrand, M. Upper and lower bounds for stochastic processes: modern methods and classical", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 126, + 608, + 393, + 623 + ], + "spans": [ + { + "bbox": [ + 126, + 608, + 393, + 623 + ], + "score": 1.0, + "content": "problems, volume 60. Springer Science & Business Media, 2014.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 626, + 507, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 507, + 642 + ], + "score": 1.0, + "content": "[60] Tan, S., Peng, X., and Saenko, K. Class-imbalanced domain adaptation: An empirical odyssey.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 127, + 638, + 238, + 652 + ], + "spans": [ + { + "bbox": [ + 127, + 638, + 238, + 652 + ], + "score": 1.0, + "content": "In ECCV Workshop, 2020.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 658, + 507, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 507, + 672 + ], + "score": 1.0, + "content": "[61] Tarvainen, A. and Valpola, H. Mean teachers are better role models: Weight-averaged con-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 126, + 666, + 508, + 686 + ], + "spans": [ + { + "bbox": [ + 126, + 666, + 508, + 686 + ], + "score": 1.0, + "content": "sistency targets improve semi-supervised deep learning results. In NeurIPS, volume 30, pp.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 127, + 681, + 204, + 693 + ], + "spans": [ + { + "bbox": [ + 127, + 681, + 204, + 693 + ], + "score": 1.0, + "content": "1195–1204, 2017.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 103, + 698, + 507, + 715 + ], + "spans": [ + { + "bbox": [ + 103, + 698, + 507, + 715 + ], + "score": 1.0, + "content": "[62] Tsallis, C. Possible generalization of boltzmann-gibbs statistics. Journal of Statistical Physics,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 128, + 711, + 225, + 723 + ], + "spans": [ + { + "bbox": [ + 128, + 711, + 225, + 723 + ], + "score": 1.0, + "content": "52(1-2):479–487, 1988.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 22 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 311, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 105, + 54, + 507, + 729 + ], + "lines": [], + "index": 22, + "bbox_fs": [ + 103, + 73, + 508, + 723 + ], + "lines_deleted": true + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 70, + 507, + 546 + ], + "lines": [ + { + "bbox": [ + 106, + 72, + 505, + 86 + ], + "spans": [ + { + "bbox": [ + 106, + 72, + 505, + 86 + ], + "score": 1.0, + "content": "[63] Tzeng, E., Hoffman, J., Saenko, K., and Darrell, T. Adversarial discriminative domain adaptation.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 126, + 83, + 258, + 96 + ], + "spans": [ + { + "bbox": [ + 126, + 83, + 258, + 96 + ], + "score": 1.0, + "content": "In CVPR, pp. 7167–7176, 2017.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 102, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 505, + 117 + ], + "score": 1.0, + "content": "[64] Venkateswara, H., Eusebio, J., Chakraborty, S., and Panchanathan, S. Deep hashing network for", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 127, + 114, + 394, + 127 + ], + "spans": [ + { + "bbox": [ + 127, + 114, + 394, + 127 + ], + "score": 1.0, + "content": "unsupervised domain adaptation. In CVPR, pp. 5018–5027, 2017.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 133, + 505, + 146 + ], + "spans": [ + { + "bbox": [ + 106, + 133, + 505, + 146 + ], + "score": 1.0, + "content": "[65] Vu, T., Luong, M.-T., Le, Q. V., Simon, G., and Iyyer, M. Strata: Self-training with task", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 126, + 143, + 463, + 157 + ], + "spans": [ + { + "bbox": [ + 126, + 143, + 463, + 157 + ], + "score": 1.0, + "content": "augmentation for better few-shot learning. arXiv preprint arXiv:2109.06270, 2021.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 161, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 161, + 505, + 177 + ], + "score": 1.0, + "content": "[66] Wei, C., Shen, K., Yining, C., and Ma, T. Theoretical analysis of self-training with deep", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 127, + 173, + 306, + 186 + ], + "spans": [ + { + "bbox": [ + 127, + 173, + 306, + 186 + ], + "score": 1.0, + "content": "networks on unlabeled data. In ICLR, 2021.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 191, + 505, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 505, + 207 + ], + "score": 1.0, + "content": "[67] Xie, Q., Luong, M. T., Hovy, E., and Le, Q. V. Self-training with noisy student improves", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 127, + 203, + 290, + 216 + ], + "spans": [ + { + "bbox": [ + 127, + 203, + 290, + 216 + ], + "score": 1.0, + "content": "imagenet classification. In CVPR, 2020.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 221, + 506, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 506, + 236 + ], + "score": 1.0, + "content": "[68] Xie, S. M., Kumar, A., Jones, R., Khani, F., Ma, T., and Liang, P. In-n-out: Pre-training and", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 127, + 233, + 492, + 246 + ], + "spans": [ + { + "bbox": [ + 127, + 233, + 492, + 246 + ], + "score": 1.0, + "content": "self-training using auxiliary information for out-of-distribution robustness. In ICLR, 2021.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 251, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 506, + 266 + ], + "score": 1.0, + "content": "[69] Xu, R., Li, G., Yang, J., and Lin, L. Larger norm more transferable: An adaptive feature norm", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 127, + 263, + 380, + 276 + ], + "spans": [ + { + "bbox": [ + 127, + 263, + 380, + 276 + ], + "score": 1.0, + "content": "approach for unsupervised domain adaptation. In ICCV, 2019.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 281, + 506, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 506, + 295 + ], + "score": 1.0, + "content": "[70] Yosinski, J., Clune, J., Bengio, Y., and Lipson, H. How transferable are features in deep neural", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 127, + 293, + 313, + 306 + ], + "spans": [ + { + "bbox": [ + 127, + 293, + 313, + 306 + ], + "score": 1.0, + "content": "networks? In NeurIPS, pp. 3320–3328. 2014.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 312, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 505, + 325 + ], + "score": 1.0, + "content": "[71] Zellinger, W., Grubinger, T., Lughofer, E., Natschlager, T., and Saminger-Platz, S. Central ¨", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 127, + 322, + 489, + 335 + ], + "spans": [ + { + "bbox": [ + 127, + 322, + 489, + 335 + ], + "score": 1.0, + "content": "moment discrepancy (CMD) for domain-invariant representation learning. In ICLR, 2017.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 341, + 506, + 354 + ], + "spans": [ + { + "bbox": [ + 106, + 341, + 506, + 354 + ], + "score": 1.0, + "content": "[72] Zhang, H., Cisse, M., Dauphin, Y. N., and Lopez-Paz, D. mixup: Beyond empirical risk", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 127, + 353, + 249, + 364 + ], + "spans": [ + { + "bbox": [ + 127, + 353, + 249, + 364 + ], + "score": 1.0, + "content": "minimization. In ICLR, 2018.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 370, + 504, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 370, + 504, + 384 + ], + "score": 1.0, + "content": "[73] Zhang, Y., Liu, T., Long, M., and Jordan, M. Bridging theory and algorithm for domain", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 127, + 381, + 305, + 395 + ], + "spans": [ + { + "bbox": [ + 127, + 381, + 305, + 395 + ], + "score": 1.0, + "content": "adaptation. In ICML, pp. 7404–7413, 2019.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 401, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 505, + 414 + ], + "score": 1.0, + "content": "[74] Zhao, H., Combes, R. T. D., Zhang, K., and Gordon, G. On learning invariant representations", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 126, + 411, + 399, + 425 + ], + "spans": [ + { + "bbox": [ + 126, + 411, + 399, + 425 + ], + "score": 1.0, + "content": "for domain adaptation. In ICML, volume 97, pp. 7523–7532, 2019.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 430, + 507, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 507, + 445 + ], + "score": 1.0, + "content": "[75] Ziser, Y. and Reichart, R. Pivot based language modeling for improved neural domain adaptation.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 126, + 441, + 264, + 454 + ], + "spans": [ + { + "bbox": [ + 126, + 441, + 264, + 454 + ], + "score": 1.0, + "content": "In NAACL, pp. 1241–1251, 2018.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 458, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 104, + 458, + 506, + 475 + ], + "score": 1.0, + "content": "[76] Zoph, B., Ghiasi, G., Lin, T.-Y., Cui, Y., Liu, H., Cubuk, E. D., and Le, Q. Rethinking", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 126, + 471, + 437, + 485 + ], + "spans": [ + { + "bbox": [ + 126, + 471, + 437, + 485 + ], + "score": 1.0, + "content": "pre-training and self-training. In NeurIPS, volume 33, pp. 3833–3845, 2020.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 488, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 506, + 505 + ], + "score": 1.0, + "content": "[77] Zou, Y., Yu, Z., Vijaya Kumar, B. V. K., and Wang, J. Unsupervised domain adaptation for", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 126, + 500, + 473, + 515 + ], + "spans": [ + { + "bbox": [ + 126, + 500, + 473, + 515 + ], + "score": 1.0, + "content": "semantic segmentation via class-balanced self-training. In ECCV, pp. 297–313, 2018.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 518, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 506, + 534 + ], + "score": 1.0, + "content": "[78] Zou, Y., Yu, Z., Liu, X., Kumar, B. V., and Wang, J. Confidence regularized self-training. In", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 127, + 530, + 216, + 543 + ], + "spans": [ + { + "bbox": [ + 127, + 530, + 216, + 543 + ], + "score": 1.0, + "content": "ICCV, October 2019.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 15.5 + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 311, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "score": 1.0, + "content": "14", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 105, + 70, + 507, + 546 + ], + "lines": [], + "index": 15.5, + "bbox_fs": [ + 104, + 72, + 507, + 543 + ], + "lines_deleted": true + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/-iu9-C_lan/-iu9-C_lan_model.json b/parse/train/-iu9-C_lan/-iu9-C_lan_model.json new file mode 100644 index 0000000000000000000000000000000000000000..b0050e2c5b7bebabf4fa08b02685e2eab0d7fc75 --- /dev/null +++ b/parse/train/-iu9-C_lan/-iu9-C_lan_model.json @@ -0,0 +1,23282 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 397, + 714, + 1304, + 714, + 1304, + 1261, + 397, + 1261 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1523, + 1403, + 1523, + 1403, + 1706, + 298, + 1706 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1356, + 1403, + 1356, + 1403, + 1509, + 298, + 1509 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1719, + 1405, + 1719, + 1405, + 1934, + 298, + 1934 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 318, + 445, + 669, + 445, + 669, + 567, + 318, + 567 + ], + "score": 0.939 + }, + { + "category_id": 1, + "poly": [ + 702, + 445, + 1017, + 445, + 1017, + 567, + 702, + 567 + ], + "score": 0.937 + }, + { + "category_id": 0, + "poly": [ + 400, + 271, + 1299, + 271, + 1299, + 327, + 400, + 327 + ], + "score": 0.922 + }, + { + "category_id": 2, + "poly": [ + 329, + 1955, + 1100, + 1955, + 1100, + 1984, + 329, + 1984 + ], + "score": 0.916 + }, + { + "category_id": 1, + "poly": [ + 1052, + 445, + 1380, + 445, + 1380, + 568, + 1052, + 568 + ], + "score": 0.915 + }, + { + "category_id": 0, + "poly": [ + 299, + 1301, + 530, + 1301, + 530, + 1338, + 299, + 1338 + ], + "score": 0.908 + }, + { + "category_id": 0, + "poly": [ + 788, + 645, + 913, + 645, + 913, + 681, + 788, + 681 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 298, + 2033, + 1070, + 2033, + 1070, + 2062, + 298, + 2062 + ], + "score": 0.894 + }, + { + "category_id": 15, + "poly": [ + 400.0, + 266.0, + 1302.0, + 266.0, + 1302.0, + 332.0, + 400.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1948.0, + 1103.0, + 1948.0, + 1103.0, + 1991.0, + 328.0, + 1991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1297.0, + 536.0, + 1297.0, + 536.0, + 1344.0, + 292.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 782.0, + 642.0, + 920.0, + 642.0, + 920.0, + 686.0, + 782.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2028.0, + 1074.0, + 2028.0, + 1074.0, + 2066.0, + 294.0, + 2066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 714.0, + 1307.0, + 714.0, + 1307.0, + 750.0, + 393.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 746.0, + 1305.0, + 746.0, + 1305.0, + 779.0, + 394.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 775.0, + 1307.0, + 775.0, + 1307.0, + 810.0, + 393.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 807.0, + 1307.0, + 807.0, + 1307.0, + 840.0, + 394.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 836.0, + 1307.0, + 836.0, + 1307.0, + 869.0, + 394.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 865.0, + 1305.0, + 865.0, + 1305.0, + 901.0, + 394.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 895.0, + 1306.0, + 895.0, + 1306.0, + 933.0, + 394.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 928.0, + 1305.0, + 928.0, + 1305.0, + 961.0, + 395.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 957.0, + 1306.0, + 957.0, + 1306.0, + 996.0, + 392.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 988.0, + 1306.0, + 988.0, + 1306.0, + 1024.0, + 393.0, + 1024.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 1016.0, + 1305.0, + 1016.0, + 1305.0, + 1055.0, + 391.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1048.0, + 1306.0, + 1048.0, + 1306.0, + 1083.0, + 393.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1078.0, + 1308.0, + 1078.0, + 1308.0, + 1113.0, + 394.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1110.0, + 1309.0, + 1110.0, + 1309.0, + 1143.0, + 394.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1136.0, + 1307.0, + 1136.0, + 1307.0, + 1175.0, + 392.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1171.0, + 1305.0, + 1171.0, + 1305.0, + 1204.0, + 395.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1199.0, + 1304.0, + 1199.0, + 1304.0, + 1234.0, + 394.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1229.0, + 1296.0, + 1229.0, + 1296.0, + 1264.0, + 393.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1522.0, + 1404.0, + 1522.0, + 1404.0, + 1558.0, + 294.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1550.0, + 1407.0, + 1550.0, + 1407.0, + 1588.0, + 293.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1583.0, + 1405.0, + 1583.0, + 1405.0, + 1618.0, + 294.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1615.0, + 1404.0, + 1615.0, + 1404.0, + 1650.0, + 294.0, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1642.0, + 1407.0, + 1642.0, + 1407.0, + 1679.0, + 293.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1671.0, + 1330.0, + 1671.0, + 1330.0, + 1711.0, + 293.0, + 1711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1356.0, + 1404.0, + 1356.0, + 1404.0, + 1389.0, + 297.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1385.0, + 1405.0, + 1385.0, + 1405.0, + 1421.0, + 293.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1414.0, + 1404.0, + 1414.0, + 1404.0, + 1451.0, + 294.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1440.0, + 1407.0, + 1440.0, + 1407.0, + 1488.0, + 292.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1476.0, + 1276.0, + 1476.0, + 1276.0, + 1513.0, + 294.0, + 1513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1718.0, + 1406.0, + 1718.0, + 1406.0, + 1756.0, + 295.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1749.0, + 1408.0, + 1749.0, + 1408.0, + 1787.0, + 293.0, + 1787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1782.0, + 1405.0, + 1782.0, + 1405.0, + 1814.0, + 293.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1808.0, + 1406.0, + 1808.0, + 1406.0, + 1849.0, + 292.0, + 1849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1841.0, + 1405.0, + 1841.0, + 1405.0, + 1876.0, + 295.0, + 1876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1871.0, + 1408.0, + 1871.0, + 1408.0, + 1905.0, + 295.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1903.0, + 1405.0, + 1903.0, + 1405.0, + 1937.0, + 296.0, + 1937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 435.0, + 442.0, + 559.0, + 442.0, + 559.0, + 480.0, + 435.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 470.0, + 673.0, + 470.0, + 673.0, + 512.0, + 315.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 504.0, + 611.0, + 504.0, + 611.0, + 541.0, + 375.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 537.0, + 636.0, + 537.0, + 636.0, + 571.0, + 352.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 440.0, + 952.0, + 440.0, + 952.0, + 481.0, + 768.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 475.0, + 1019.0, + 475.0, + 1019.0, + 506.0, + 702.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 743.0, + 505.0, + 975.0, + 505.0, + 975.0, + 540.0, + 743.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 540.0, + 1012.0, + 540.0, + 1012.0, + 569.0, + 705.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1110.0, + 443.0, + 1328.0, + 443.0, + 1328.0, + 481.0, + 1110.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 475.0, + 1375.0, + 475.0, + 1375.0, + 506.0, + 1057.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 503.0, + 1332.0, + 503.0, + 1332.0, + 540.0, + 1097.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 538.0, + 1383.0, + 538.0, + 1383.0, + 570.0, + 1048.0, + 570.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 955, + 1405, + 955, + 1405, + 1322, + 298, + 1322 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 697, + 1404, + 697, + 1404, + 942, + 297, + 942 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1335, + 1404, + 1335, + 1404, + 1489, + 298, + 1489 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 296, + 1589, + 1406, + 1589, + 1406, + 1792, + 296, + 1792 + ], + "score": 0.977 + }, + { + "category_id": 3, + "poly": [ + 358, + 194, + 1343, + 194, + 1343, + 460, + 358, + 460 + ], + "score": 0.968 + }, + { + "category_id": 4, + "poly": [ + 297, + 470, + 1406, + 470, + 1406, + 583, + 297, + 583 + ], + "score": 0.962 + }, + { + "category_id": 1, + "poly": [ + 298, + 621, + 1398, + 621, + 1398, + 685, + 298, + 685 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 678, + 1942, + 1020, + 1942, + 1020, + 1997, + 678, + 1997 + ], + "score": 0.934 + }, + { + "category_id": 1, + "poly": [ + 293, + 1849, + 1402, + 1849, + 1402, + 1917, + 293, + 1917 + ], + "score": 0.933 + }, + { + "category_id": 0, + "poly": [ + 299, + 1527, + 543, + 1527, + 543, + 1566, + 299, + 1566 + ], + "score": 0.918 + }, + { + "category_id": 1, + "poly": [ + 296, + 1801, + 1404, + 1801, + 1404, + 1835, + 296, + 1835 + ], + "score": 0.903 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1952, + 1400, + 1952, + 1400, + 1981, + 1366, + 1981 + ], + "score": 0.878 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2085, + 841, + 2085 + ], + "score": 0.746 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2085, + 841, + 2085 + ], + "score": 0.18 + }, + { + "category_id": 14, + "poly": [ + 678, + 1941, + 1022, + 1941, + 1022, + 2001, + 678, + 2001 + ], + "score": 0.93, + "latex": "\\operatorname* { m i n } _ { \\theta , \\phi } L _ { \\widehat { P } } ( \\theta , \\phi ) + d ( h _ { \\sharp } \\widehat { P } , h _ { \\sharp } \\widehat { Q } ) ." + }, + { + "category_id": 13, + "poly": [ + 774, + 1756, + 877, + 1756, + 877, + 1793, + 774, + 1793 + ], + "score": 0.93, + "latex": "{ \\cal L } _ { \\widehat { P } } ( \\theta , \\phi )" + }, + { + "category_id": 13, + "poly": [ + 940, + 1887, + 1062, + 1887, + 1062, + 1918, + 940, + 1918 + ], + "score": 0.93, + "latex": "\\mathcal { Z } = h ( \\mathcal { X } )" + }, + { + "category_id": 13, + "poly": [ + 340, + 1717, + 578, + 1717, + 578, + 1752, + 340, + 1752 + ], + "score": 0.93, + "latex": "\\bar { f } _ { \\theta , \\phi } ( x ) = g _ { \\theta } ( h _ { \\phi } ( x ) )" + }, + { + "category_id": 13, + "poly": [ + 813, + 1719, + 875, + 1719, + 875, + 1751, + 813, + 1751 + ], + "score": 0.92, + "latex": "\\ell ( \\cdot , \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1652, + 499, + 1652, + 499, + 1691, + 298, + 1691 + ], + "score": 0.91, + "latex": "\\widehat { P } = \\{ x _ { i } ^ { s } , y _ { i } ^ { s } \\} _ { i = 1 } ^ { n _ { s } }" + }, + { + "category_id": 13, + "poly": [ + 970, + 1652, + 1130, + 1652, + 1130, + 1691, + 970, + 1691 + ], + "score": 0.91, + "latex": "\\widehat { Q } = \\{ x _ { i } ^ { t } \\} _ { i = 1 } ^ { n _ { t } }" + }, + { + "category_id": 13, + "poly": [ + 780, + 1623, + 867, + 1623, + 867, + 1652, + 780, + 1652 + ], + "score": 0.9, + "latex": "\\mathcal { X } \\times \\mathcal { V }" + }, + { + "category_id": 13, + "poly": [ + 1009, + 1718, + 1404, + 1718, + 1404, + 1754, + 1009, + 1754 + ], + "score": 0.9, + "latex": "L _ { P } ( \\theta , \\phi ) : = \\mathbb { E } _ { ( x , y ) \\sim P } \\ell ( f _ { \\theta , \\phi } ( x ) , y )" + }, + { + "category_id": 13, + "poly": [ + 616, + 1689, + 649, + 1689, + 649, + 1721, + 616, + 1721 + ], + "score": 0.89, + "latex": "h _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 835, + 1690, + 854, + 1690, + 854, + 1719, + 835, + 1719 + ], + "score": 0.86, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 1323, + 1753, + 1346, + 1753, + 1346, + 1784, + 1323, + 1784 + ], + "score": 0.85, + "latex": "\\widehat { P }" + }, + { + "category_id": 13, + "poly": [ + 729, + 1855, + 748, + 1855, + 748, + 1886, + 729, + 1886 + ], + "score": 0.85, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 1000, + 1850, + 1023, + 1850, + 1023, + 1881, + 1000, + 1881 + ], + "score": 0.84, + "latex": "\\widehat { P }" + }, + { + "category_id": 13, + "poly": [ + 437, + 1622, + 463, + 1622, + 463, + 1653, + 437, + 1653 + ], + "score": 0.84, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 652, + 1661, + 682, + 1661, + 682, + 1688, + 652, + 1688 + ], + "score": 0.84, + "latex": "n _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1114, + 1626, + 1146, + 1626, + 1146, + 1652, + 1114, + 1652 + ], + "score": 0.84, + "latex": "n _ { s }" + }, + { + "category_id": 13, + "poly": [ + 1234, + 1593, + 1259, + 1593, + 1259, + 1619, + 1234, + 1619 + ], + "score": 0.83, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 1381, + 1658, + 1401, + 1658, + 1401, + 1689, + 1381, + 1689 + ], + "score": 0.83, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 1202, + 1657, + 1227, + 1657, + 1227, + 1689, + 1202, + 1689 + ], + "score": 0.82, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 539, + 1759, + 562, + 1759, + 562, + 1785, + 539, + 1785 + ], + "score": 0.81, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 571, + 1658, + 596, + 1658, + 596, + 1685, + 571, + 1685 + ], + "score": 0.81, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 1167, + 1693, + 1195, + 1693, + 1195, + 1719, + 1167, + 1719 + ], + "score": 0.8, + "latex": "g _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 1381, + 1691, + 1397, + 1691, + 1397, + 1716, + 1381, + 1716 + ], + "score": 0.79, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 1179, + 440, + 1197, + 440, + 1197, + 459, + 1179, + 459 + ], + "score": 0.33, + "latex": "\\theta _ { s }" + }, + { + "category_id": 15, + "poly": [ + 485.0, + 192.0, + 696.0, + 192.0, + 696.0, + 227.0, + 485.0, + 227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1010.0, + 191.0, + 1191.0, + 191.0, + 1191.0, + 229.0, + 1010.0, + 229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1284.0, + 210.0, + 1343.0, + 210.0, + 1343.0, + 242.0, + 1284.0, + 242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 225.0, + 1063.0, + 225.0, + 1063.0, + 250.0, + 954.0, + 250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1073.0, + 223.0, + 1116.0, + 223.0, + 1116.0, + 265.0, + 1073.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 224.0, + 1271.0, + 224.0, + 1271.0, + 259.0, + 1170.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 231.0, + 1338.0, + 231.0, + 1338.0, + 258.0, + 1289.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 279.0, + 445.0, + 279.0, + 445.0, + 318.0, + 361.0, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 587.0, + 273.0, + 823.0, + 273.0, + 823.0, + 316.0, + 587.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 270.0, + 931.0, + 270.0, + 931.0, + 317.0, + 845.0, + 317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1029.0, + 268.0, + 1061.0, + 268.0, + 1061.0, + 293.0, + 1029.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1074.0, + 271.0, + 1114.0, + 271.0, + 1114.0, + 310.0, + 1074.0, + 310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 273.0, + 1273.0, + 273.0, + 1273.0, + 309.0, + 1130.0, + 309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1286.0, + 257.0, + 1346.0, + 257.0, + 1346.0, + 308.0, + 1286.0, + 308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 479.0, + 304.0, + 518.0, + 304.0, + 518.0, + 343.0, + 479.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 544.0, + 309.0, + 576.0, + 309.0, + 576.0, + 337.0, + 544.0, + 337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 771.0, + 290.0, + 817.0, + 290.0, + 817.0, + 321.0, + 771.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1294.0, + 298.0, + 1338.0, + 298.0, + 1338.0, + 325.0, + 1294.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 324.0, + 449.0, + 324.0, + 449.0, + 366.0, + 360.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 641.0, + 326.0, + 827.0, + 326.0, + 827.0, + 370.0, + 641.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 321.0, + 933.0, + 321.0, + 933.0, + 363.0, + 843.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 334.0, + 1066.0, + 334.0, + 1066.0, + 368.0, + 1028.0, + 368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1074.0, + 322.0, + 1165.0, + 322.0, + 1165.0, + 360.0, + 1074.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 377.0, + 594.0, + 377.0, + 594.0, + 399.0, + 465.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 945.0, + 367.0, + 1115.0, + 367.0, + 1115.0, + 419.0, + 945.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 375.0, + 1165.0, + 375.0, + 1165.0, + 402.0, + 1132.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1168.0, + 372.0, + 1269.0, + 372.0, + 1269.0, + 406.0, + 1168.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 368.0, + 1342.0, + 368.0, + 1342.0, + 414.0, + 1283.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 417.0, + 462.0, + 417.0, + 462.0, + 440.0, + 368.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 414.0, + 643.0, + 414.0, + 643.0, + 443.0, + 498.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 411.0, + 782.0, + 411.0, + 782.0, + 444.0, + 728.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 417.0, + 940.0, + 417.0, + 940.0, + 440.0, + 857.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 415.0, + 1061.0, + 415.0, + 1061.0, + 444.0, + 971.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1248.0, + 414.0, + 1304.0, + 414.0, + 1304.0, + 441.0, + 1248.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 432.0, + 802.0, + 432.0, + 802.0, + 462.0, + 712.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 976.0, + 435.0, + 1056.0, + 435.0, + 1056.0, + 464.0, + 976.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1081.0, + 436.0, + 1178.0, + 436.0, + 1178.0, + 462.0, + 1081.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1198.0, + 436.0, + 1201.0, + 436.0, + 1201.0, + 462.0, + 1198.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1231.0, + 432.0, + 1323.0, + 432.0, + 1323.0, + 466.0, + 1231.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 302.5, + 996.0, + 302.5, + 996.0, + 335.0, + 968.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 405.5, + 728.0, + 405.5, + 728.0, + 434.0, + 695.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.25, + 406.0, + 1253.25, + 406.0, + 1253.25, + 434.5, + 1214.25, + 434.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.25, + 415.0, + 1185.25, + 415.0, + 1185.25, + 441.5, + 1066.25, + 441.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 468.0, + 1407.0, + 468.0, + 1407.0, + 504.0, + 295.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 496.0, + 1406.0, + 496.0, + 1406.0, + 532.0, + 294.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 523.0, + 1406.0, + 523.0, + 1406.0, + 560.0, + 295.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 549.0, + 1320.0, + 549.0, + 1320.0, + 589.0, + 294.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1522.0, + 547.0, + 1522.0, + 547.0, + 1574.0, + 290.0, + 1574.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": [ + 838.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2093.0, + 838.0, + 2093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 956.0, + 1406.0, + 956.0, + 1406.0, + 990.0, + 296.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 985.0, + 1407.0, + 985.0, + 1407.0, + 1023.0, + 293.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1019.0, + 1403.0, + 1019.0, + 1403.0, + 1050.0, + 296.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1049.0, + 1405.0, + 1049.0, + 1405.0, + 1083.0, + 295.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1078.0, + 1405.0, + 1078.0, + 1405.0, + 1112.0, + 295.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1107.0, + 1406.0, + 1107.0, + 1406.0, + 1145.0, + 293.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1140.0, + 1406.0, + 1140.0, + 1406.0, + 1174.0, + 295.0, + 1174.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1169.0, + 1405.0, + 1169.0, + 1405.0, + 1203.0, + 295.0, + 1203.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1199.0, + 1407.0, + 1199.0, + 1407.0, + 1233.0, + 295.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1231.0, + 1406.0, + 1231.0, + 1406.0, + 1264.0, + 292.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1260.0, + 1408.0, + 1260.0, + 1408.0, + 1293.0, + 293.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1287.0, + 1408.0, + 1287.0, + 1408.0, + 1326.0, + 295.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 699.0, + 1404.0, + 699.0, + 1404.0, + 732.0, + 295.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 730.0, + 1405.0, + 730.0, + 1405.0, + 763.0, + 295.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 758.0, + 1406.0, + 758.0, + 1406.0, + 794.0, + 294.0, + 794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 790.0, + 1404.0, + 790.0, + 1404.0, + 823.0, + 295.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 821.0, + 1404.0, + 821.0, + 1404.0, + 854.0, + 295.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 847.0, + 1405.0, + 847.0, + 1405.0, + 887.0, + 292.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 883.0, + 1404.0, + 883.0, + 1404.0, + 913.0, + 296.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 907.0, + 983.0, + 907.0, + 983.0, + 948.0, + 292.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1335.0, + 1405.0, + 1335.0, + 1405.0, + 1368.0, + 297.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1366.0, + 1404.0, + 1366.0, + 1404.0, + 1399.0, + 297.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1396.0, + 1404.0, + 1396.0, + 1404.0, + 1429.0, + 296.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1421.0, + 1405.0, + 1421.0, + 1405.0, + 1468.0, + 292.0, + 1468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1456.0, + 1386.0, + 1456.0, + 1386.0, + 1493.0, + 294.0, + 1493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1591.0, + 1233.0, + 1591.0, + 1233.0, + 1624.0, + 294.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1260.0, + 1591.0, + 1406.0, + 1591.0, + 1406.0, + 1624.0, + 1260.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1618.0, + 436.0, + 1618.0, + 436.0, + 1656.0, + 293.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 1618.0, + 779.0, + 1618.0, + 779.0, + 1656.0, + 464.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 1618.0, + 1113.0, + 1618.0, + 1113.0, + 1656.0, + 868.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1147.0, + 1618.0, + 1407.0, + 1618.0, + 1407.0, + 1656.0, + 1147.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1642.0, + 297.0, + 1642.0, + 297.0, + 1707.0, + 289.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 500.0, + 1642.0, + 570.0, + 1642.0, + 570.0, + 1707.0, + 500.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 1642.0, + 651.0, + 1642.0, + 651.0, + 1707.0, + 597.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 683.0, + 1642.0, + 969.0, + 1642.0, + 969.0, + 1707.0, + 683.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 1642.0, + 1201.0, + 1642.0, + 1201.0, + 1707.0, + 1131.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1228.0, + 1642.0, + 1380.0, + 1642.0, + 1380.0, + 1707.0, + 1228.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1642.0, + 1416.0, + 1642.0, + 1416.0, + 1707.0, + 1402.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1686.0, + 615.0, + 1686.0, + 615.0, + 1721.0, + 291.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 1686.0, + 834.0, + 1686.0, + 834.0, + 1721.0, + 650.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 1686.0, + 1166.0, + 1686.0, + 1166.0, + 1721.0, + 855.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1196.0, + 1686.0, + 1380.0, + 1686.0, + 1380.0, + 1721.0, + 1196.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 1686.0, + 1408.0, + 1686.0, + 1408.0, + 1721.0, + 1398.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1713.0, + 339.0, + 1713.0, + 339.0, + 1757.0, + 290.0, + 1757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 1713.0, + 812.0, + 1713.0, + 812.0, + 1757.0, + 579.0, + 1757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 1713.0, + 1008.0, + 1713.0, + 1008.0, + 1757.0, + 876.0, + 1757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1405.0, + 1713.0, + 1408.0, + 1713.0, + 1408.0, + 1757.0, + 1405.0, + 1757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1753.0, + 538.0, + 1753.0, + 538.0, + 1792.0, + 293.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 1753.0, + 773.0, + 1753.0, + 773.0, + 1792.0, + 563.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 1753.0, + 1322.0, + 1753.0, + 1322.0, + 1792.0, + 878.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1347.0, + 1753.0, + 1359.0, + 1753.0, + 1359.0, + 1792.0, + 1347.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 621.0, + 1403.0, + 621.0, + 1403.0, + 657.0, + 295.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 654.0, + 1253.0, + 654.0, + 1253.0, + 686.0, + 297.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1846.0, + 728.0, + 1846.0, + 728.0, + 1890.0, + 292.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 1846.0, + 999.0, + 1846.0, + 999.0, + 1890.0, + 749.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1024.0, + 1846.0, + 1405.0, + 1846.0, + 1405.0, + 1890.0, + 1024.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1883.0, + 939.0, + 1883.0, + 939.0, + 1920.0, + 293.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 1883.0, + 1073.0, + 1883.0, + 1073.0, + 1920.0, + 1063.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1797.0, + 1407.0, + 1797.0, + 1407.0, + 1840.0, + 294.0, + 1840.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1277, + 1405, + 1277, + 1405, + 1613, + 297, + 1613 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 740, + 1404, + 740, + 1404, + 909, + 297, + 909 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 1625, + 1405, + 1625, + 1405, + 1872, + 297, + 1872 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 1884, + 1403, + 1884, + 1403, + 2008, + 299, + 2008 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 986, + 1405, + 986, + 1405, + 1079, + 299, + 1079 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 1141, + 1405, + 1141, + 1405, + 1264, + 297, + 1264 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 597, + 1404, + 597, + 1404, + 727, + 298, + 727 + ], + "score": 0.966 + }, + { + "category_id": 4, + "poly": [ + 299, + 493, + 1406, + 493, + 1406, + 578, + 299, + 578 + ], + "score": 0.963 + }, + { + "category_id": 3, + "poly": [ + 346, + 215, + 1345, + 215, + 1345, + 474, + 346, + 474 + ], + "score": 0.959 + }, + { + "category_id": 8, + "poly": [ + 525, + 919, + 1171, + 919, + 1171, + 972, + 525, + 972 + ], + "score": 0.932 + }, + { + "category_id": 0, + "poly": [ + 299, + 1099, + 813, + 1099, + 813, + 1132, + 299, + 1132 + ], + "score": 0.927 + }, + { + "category_id": 9, + "poly": [ + 1366, + 925, + 1400, + 925, + 1400, + 954, + 1366, + 954 + ], + "score": 0.864 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 858, + 2061, + 858, + 2085, + 841, + 2085 + ], + "score": 0.653 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2085, + 841, + 2085 + ], + "score": 0.391 + }, + { + "category_id": 13, + "poly": [ + 648, + 1685, + 963, + 1685, + 963, + 1722, + 648, + 1722 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { d _ { \\mathrm { T V } } ( c , \\dot { c ^ { \\prime } } ) = \\frac { 1 } { 2 } \\sum _ { i } \\| c _ { i } - c _ { i } ^ { \\prime } \\| } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 365, + 598, + 418, + 598, + 418, + 638, + 365, + 638 + ], + "score": 0.93, + "latex": "h _ { \\sharp } \\widehat { P }" + }, + { + "category_id": 14, + "poly": [ + 526, + 920, + 1173, + 920, + 1173, + 974, + 526, + 974 + ], + "score": 0.91, + "latex": "\\operatorname* { m i n } _ { \\theta , \\phi } L _ { \\widehat { P } } ( \\theta , \\phi ) + \\mathbb { E } _ { x \\sim \\widehat { Q } } \\ell ( f _ { \\theta , \\phi } ( x ) , \\arg \\operatorname* { m a x } _ { i } \\{ f _ { \\theta , \\phi _ { s } } ( x ) _ { [ i ] } \\} ) ." + }, + { + "category_id": 13, + "poly": [ + 513, + 667, + 588, + 667, + 588, + 697, + 513, + 697 + ], + "score": 0.91, + "latex": "d _ { \\mathcal { H } \\Delta \\mathcal { H } }" + }, + { + "category_id": 13, + "poly": [ + 953, + 603, + 1020, + 603, + 1020, + 637, + 953, + 637 + ], + "score": 0.9, + "latex": "d ( \\cdot , \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 1095, + 1780, + 1140, + 1780, + 1140, + 1809, + 1095, + 1809 + ], + "score": 0.89, + "latex": "d _ { \\mathrm { T V } }" + }, + { + "category_id": 13, + "poly": [ + 830, + 1049, + 861, + 1049, + 861, + 1078, + 830, + 1078 + ], + "score": 0.89, + "latex": "\\phi _ { s }" + }, + { + "category_id": 13, + "poly": [ + 944, + 638, + 1010, + 638, + 1010, + 667, + 944, + 667 + ], + "score": 0.88, + "latex": "d _ { \\mathrm { M M D } }" + }, + { + "category_id": 13, + "poly": [ + 1220, + 1749, + 1264, + 1749, + 1264, + 1779, + 1220, + 1779 + ], + "score": 0.88, + "latex": "d _ { \\mathrm { T V } }" + }, + { + "category_id": 13, + "poly": [ + 751, + 1048, + 779, + 1048, + 779, + 1077, + 751, + 1077 + ], + "score": 0.88, + "latex": "\\theta _ { s }" + }, + { + "category_id": 13, + "poly": [ + 497, + 847, + 525, + 847, + 525, + 879, + 497, + 879 + ], + "score": 0.88, + "latex": "f _ { s }" + }, + { + "category_id": 13, + "poly": [ + 537, + 808, + 565, + 808, + 565, + 840, + 537, + 840 + ], + "score": 0.88, + "latex": "f _ { s }" + }, + { + "category_id": 13, + "poly": [ + 437, + 1749, + 482, + 1749, + 482, + 1780, + 437, + 1780 + ], + "score": 0.87, + "latex": "d _ { \\mathrm { T V } }" + }, + { + "category_id": 13, + "poly": [ + 870, + 598, + 895, + 598, + 895, + 633, + 870, + 633 + ], + "score": 0.86, + "latex": "\\widehat { P }" + }, + { + "category_id": 13, + "poly": [ + 751, + 840, + 776, + 840, + 776, + 878, + 751, + 878 + ], + "score": 0.86, + "latex": "\\widehat { Q }" + }, + { + "category_id": 13, + "poly": [ + 989, + 1048, + 1009, + 1048, + 1009, + 1078, + 989, + 1078 + ], + "score": 0.86, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 1047, + 1692, + 1072, + 1692, + 1072, + 1718, + 1047, + 1718 + ], + "score": 0.85, + "latex": "c _ { i }" + }, + { + "category_id": 13, + "poly": [ + 830, + 803, + 1073, + 803, + 1073, + 843, + 830, + 843 + ], + "score": 0.84, + "latex": ": \\mathrm { m i n } _ { \\theta _ { s } , \\phi _ { s } } L _ { \\widehat { P } } ( \\theta _ { s } , \\phi _ { s } )" + }, + { + "category_id": 13, + "poly": [ + 921, + 1049, + 938, + 1049, + 938, + 1074, + 921, + 1074 + ], + "score": 0.83, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 337, + 666, + 411, + 666, + 411, + 695, + 337, + 695 + ], + "score": 0.81, + "latex": "\\mathcal { H } \\Delta \\mathcal { H }" + }, + { + "category_id": 13, + "poly": [ + 805, + 801, + 830, + 801, + 830, + 836, + 805, + 836 + ], + "score": 0.72, + "latex": "\\widehat { P }" + }, + { + "category_id": 13, + "poly": [ + 1287, + 1690, + 1300, + 1690, + 1300, + 1715, + 1287, + 1715 + ], + "score": 0.58, + "latex": "i" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 490.0, + 1404.0, + 490.0, + 1404.0, + 525.0, + 294.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 519.0, + 1406.0, + 519.0, + 1406.0, + 554.0, + 293.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 551.0, + 1013.0, + 551.0, + 1013.0, + 579.0, + 297.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 214.0, + 752.0, + 214.0, + 752.0, + 232.0, + 728.0, + 232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 232.0, + 372.0, + 232.0, + 372.0, + 244.0, + 362.0, + 244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 226.0, + 655.0, + 226.0, + 655.0, + 244.0, + 556.0, + 244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 895.0, + 230.0, + 1092.0, + 230.0, + 1092.0, + 251.0, + 895.0, + 251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 244.0, + 375.0, + 244.0, + 375.0, + 276.0, + 350.0, + 276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 557.0, + 239.0, + 628.0, + 239.0, + 628.0, + 266.0, + 557.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 249.0, + 1068.0, + 249.0, + 1068.0, + 273.0, + 891.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1203.0, + 238.0, + 1224.0, + 238.0, + 1224.0, + 315.0, + 1203.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 278.0, + 373.0, + 278.0, + 373.0, + 288.0, + 362.0, + 288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 310.0, + 655.0, + 310.0, + 655.0, + 328.0, + 556.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 261.0, + 752.0, + 261.0, + 752.0, + 325.0, + 728.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 266.0, + 1127.0, + 266.0, + 1127.0, + 287.0, + 896.0, + 287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1267.0, + 281.0, + 1342.0, + 281.0, + 1342.0, + 339.0, + 1267.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 328.0, + 375.0, + 328.0, + 375.0, + 360.0, + 350.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 557.0, + 323.0, + 628.0, + 323.0, + 628.0, + 349.0, + 557.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1240.0, + 333.0, + 1319.0, + 333.0, + 1319.0, + 351.0, + 1240.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 356.0, + 752.0, + 356.0, + 752.0, + 373.0, + 728.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 411.0, + 376.0, + 411.0, + 376.0, + 444.0, + 349.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 394.0, + 655.0, + 394.0, + 655.0, + 434.0, + 556.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 403.0, + 750.0, + 403.0, + 750.0, + 420.0, + 728.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 432.0, + 976.0, + 432.0, + 976.0, + 459.0, + 907.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1203.0, + 364.0, + 1224.0, + 364.0, + 1224.0, + 442.0, + 1203.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1261.0, + 397.0, + 1346.0, + 397.0, + 1346.0, + 469.0, + 1261.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 450.0, + 752.0, + 450.0, + 752.0, + 467.0, + 728.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 760.0, + 458.0, + 773.0, + 458.0, + 773.0, + 472.0, + 760.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 457.0, + 825.0, + 457.0, + 825.0, + 474.0, + 804.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 457.0, + 872.0, + 457.0, + 872.0, + 474.0, + 851.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 457.0, + 919.0, + 457.0, + 919.0, + 474.0, + 898.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 944.0, + 457.0, + 966.0, + 457.0, + 966.0, + 474.0, + 944.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 457.0, + 1016.0, + 457.0, + 1016.0, + 474.0, + 990.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 457.0, + 1063.0, + 457.0, + 1063.0, + 474.0, + 1037.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1084.0, + 457.0, + 1110.0, + 457.0, + 1110.0, + 474.0, + 1084.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1243.0, + 461.0, + 1316.0, + 461.0, + 1316.0, + 476.0, + 1243.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 311.5, + 800.0, + 311.5, + 800.0, + 324.5, + 786.0, + 324.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1094.0, + 817.0, + 1094.0, + 817.0, + 1139.0, + 293.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2058.0, + 860.0, + 2058.0, + 860.0, + 2089.0, + 839.0, + 2089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2091.0, + 838.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1278.0, + 1406.0, + 1278.0, + 1406.0, + 1312.0, + 295.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1309.0, + 1405.0, + 1309.0, + 1405.0, + 1343.0, + 294.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1337.0, + 1406.0, + 1337.0, + 1406.0, + 1374.0, + 294.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1368.0, + 1408.0, + 1368.0, + 1408.0, + 1404.0, + 291.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1399.0, + 1407.0, + 1399.0, + 1407.0, + 1434.0, + 295.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1430.0, + 1406.0, + 1430.0, + 1406.0, + 1465.0, + 295.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1457.0, + 1406.0, + 1457.0, + 1406.0, + 1496.0, + 294.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1490.0, + 1407.0, + 1490.0, + 1407.0, + 1525.0, + 292.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1521.0, + 1407.0, + 1521.0, + 1407.0, + 1555.0, + 295.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1550.0, + 1406.0, + 1550.0, + 1406.0, + 1586.0, + 294.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1581.0, + 886.0, + 1581.0, + 886.0, + 1615.0, + 294.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 739.0, + 1405.0, + 739.0, + 1405.0, + 776.0, + 294.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 768.0, + 1406.0, + 768.0, + 1406.0, + 808.0, + 292.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 803.0, + 536.0, + 803.0, + 536.0, + 845.0, + 292.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 803.0, + 804.0, + 803.0, + 804.0, + 845.0, + 566.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1074.0, + 803.0, + 1406.0, + 803.0, + 1406.0, + 845.0, + 1074.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 842.0, + 496.0, + 842.0, + 496.0, + 882.0, + 292.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 526.0, + 842.0, + 750.0, + 842.0, + 750.0, + 882.0, + 526.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 842.0, + 1405.0, + 842.0, + 1405.0, + 882.0, + 777.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 876.0, + 1406.0, + 876.0, + 1406.0, + 910.0, + 295.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1623.0, + 1408.0, + 1623.0, + 1408.0, + 1662.0, + 295.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1656.0, + 1408.0, + 1656.0, + 1408.0, + 1692.0, + 294.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1685.0, + 647.0, + 1685.0, + 647.0, + 1726.0, + 292.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 1685.0, + 1046.0, + 1685.0, + 1046.0, + 1726.0, + 964.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1073.0, + 1685.0, + 1286.0, + 1685.0, + 1286.0, + 1726.0, + 1073.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1301.0, + 1685.0, + 1407.0, + 1685.0, + 1407.0, + 1726.0, + 1301.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1718.0, + 1405.0, + 1718.0, + 1405.0, + 1752.0, + 295.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1747.0, + 436.0, + 1747.0, + 436.0, + 1783.0, + 294.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 1747.0, + 1219.0, + 1747.0, + 1219.0, + 1783.0, + 483.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1265.0, + 1747.0, + 1405.0, + 1747.0, + 1405.0, + 1783.0, + 1265.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1779.0, + 1094.0, + 1779.0, + 1094.0, + 1812.0, + 295.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1141.0, + 1779.0, + 1405.0, + 1779.0, + 1405.0, + 1812.0, + 1141.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1805.0, + 1406.0, + 1805.0, + 1406.0, + 1846.0, + 292.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1840.0, + 1203.0, + 1840.0, + 1203.0, + 1874.0, + 295.0, + 1874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1883.0, + 1407.0, + 1883.0, + 1407.0, + 1919.0, + 294.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1916.0, + 1404.0, + 1916.0, + 1404.0, + 1948.0, + 295.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1945.0, + 1405.0, + 1945.0, + 1405.0, + 1981.0, + 294.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1974.0, + 1404.0, + 1974.0, + 1404.0, + 2013.0, + 293.0, + 2013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 983.0, + 1406.0, + 983.0, + 1406.0, + 1022.0, + 292.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1017.0, + 1405.0, + 1017.0, + 1405.0, + 1051.0, + 295.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1046.0, + 750.0, + 1046.0, + 750.0, + 1083.0, + 294.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 1046.0, + 829.0, + 1046.0, + 829.0, + 1083.0, + 780.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 1046.0, + 920.0, + 1046.0, + 920.0, + 1083.0, + 862.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 1046.0, + 988.0, + 1046.0, + 988.0, + 1083.0, + 939.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1010.0, + 1046.0, + 1289.0, + 1046.0, + 1289.0, + 1083.0, + 1010.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1140.0, + 1408.0, + 1140.0, + 1408.0, + 1176.0, + 295.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1169.0, + 1406.0, + 1169.0, + 1406.0, + 1209.0, + 292.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1201.0, + 1405.0, + 1201.0, + 1405.0, + 1236.0, + 294.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1232.0, + 1390.0, + 1232.0, + 1390.0, + 1264.0, + 295.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 601.0, + 364.0, + 601.0, + 364.0, + 638.0, + 294.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 601.0, + 869.0, + 601.0, + 869.0, + 638.0, + 419.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 601.0, + 952.0, + 601.0, + 952.0, + 638.0, + 896.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 601.0, + 1408.0, + 601.0, + 1408.0, + 638.0, + 1021.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 633.0, + 943.0, + 633.0, + 943.0, + 670.0, + 293.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 633.0, + 1406.0, + 633.0, + 1406.0, + 670.0, + 1011.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 662.0, + 336.0, + 662.0, + 336.0, + 702.0, + 292.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 412.0, + 662.0, + 512.0, + 662.0, + 512.0, + 702.0, + 412.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 662.0, + 1406.0, + 662.0, + 1406.0, + 702.0, + 589.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 693.0, + 1394.0, + 693.0, + 1394.0, + 730.0, + 294.0, + 730.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 730, + 1405, + 730, + 1405, + 1042, + 297, + 1042 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 296, + 1641, + 1406, + 1641, + 1406, + 2023, + 296, + 2023 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 1053, + 1405, + 1053, + 1405, + 1269, + 297, + 1269 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 296, + 1435, + 1405, + 1435, + 1405, + 1566, + 296, + 1566 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 202, + 1405, + 202, + 1405, + 357, + 298, + 357 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 437, + 1404, + 437, + 1404, + 531, + 298, + 531 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 1280, + 1399, + 1280, + 1399, + 1351, + 297, + 1351 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 295, + 586, + 1401, + 586, + 1401, + 648, + 295, + 648 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 693, + 659, + 1004, + 659, + 1004, + 715, + 693, + 715 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 638, + 1366, + 1059, + 1366, + 1059, + 1420, + 638, + 1420 + ], + "score": 0.941 + }, + { + "category_id": 8, + "poly": [ + 548, + 1579, + 1151, + 1579, + 1151, + 1630, + 548, + 1630 + ], + "score": 0.936 + }, + { + "category_id": 0, + "poly": [ + 298, + 543, + 595, + 543, + 595, + 577, + 298, + 577 + ], + "score": 0.931 + }, + { + "category_id": 0, + "poly": [ + 298, + 384, + 492, + 384, + 492, + 423, + 298, + 423 + ], + "score": 0.918 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1373, + 1400, + 1373, + 1400, + 1402, + 1366, + 1402 + ], + "score": 0.885 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1586, + 1400, + 1586, + 1400, + 1615, + 1366, + 1615 + ], + "score": 0.874 + }, + { + "category_id": 9, + "poly": [ + 1366, + 666, + 1400, + 666, + 1400, + 695, + 1366, + 695 + ], + "score": 0.87 + }, + { + "category_id": 2, + "poly": [ + 841, + 2062, + 858, + 2062, + 858, + 2084, + 841, + 2084 + ], + "score": 0.77 + }, + { + "category_id": 14, + "poly": [ + 693, + 659, + 1003, + 659, + 1003, + 716, + 693, + 716 + ], + "score": 0.94, + "latex": "y ^ { \\prime } = \\arg \\operatorname* { m a x } _ { i } \\{ f _ { \\theta _ { s } , \\phi } ( x ) _ { [ i ] } \\} ," + }, + { + "category_id": 14, + "poly": [ + 637, + 1364, + 1063, + 1364, + 1063, + 1423, + 637, + 1423 + ], + "score": 0.94, + "latex": "\\hat { \\theta } _ { t } ( \\phi ) = \\underset { \\theta } { \\arg \\operatorname* { m i n } } \\mathbb { E } _ { \\boldsymbol { x } \\sim \\hat { \\boldsymbol { Q } } } \\ell ( f _ { \\theta , \\phi } ( \\boldsymbol { x } ) , y ^ { \\prime } ) ." + }, + { + "category_id": 13, + "poly": [ + 536, + 1313, + 599, + 1313, + 599, + 1352, + 536, + 1352 + ], + "score": 0.93, + "latex": "\\hat { \\theta } _ { t } ( \\phi )" + }, + { + "category_id": 13, + "poly": [ + 771, + 1895, + 833, + 1895, + 833, + 1929, + 771, + 1929 + ], + "score": 0.93, + "latex": "\\hat { \\theta } _ { t } ( \\phi )" + }, + { + "category_id": 13, + "poly": [ + 1067, + 1960, + 1129, + 1960, + 1129, + 1995, + 1067, + 1995 + ], + "score": 0.93, + "latex": "\\hat { \\theta } _ { t } ( \\phi )" + }, + { + "category_id": 13, + "poly": [ + 502, + 1825, + 565, + 1825, + 565, + 1864, + 502, + 1864 + ], + "score": 0.92, + "latex": "\\hat { \\theta } _ { t } ( \\phi )" + }, + { + "category_id": 13, + "poly": [ + 1127, + 1639, + 1190, + 1639, + 1190, + 1677, + 1127, + 1677 + ], + "score": 0.92, + "latex": "\\hat { \\theta } _ { t } ( \\phi )" + }, + { + "category_id": 13, + "poly": [ + 683, + 1497, + 746, + 1497, + 746, + 1535, + 683, + 1535 + ], + "score": 0.92, + "latex": "\\hat { \\theta } _ { t } ( \\phi )" + }, + { + "category_id": 14, + "poly": [ + 545, + 1576, + 1151, + 1576, + 1151, + 1636, + 545, + 1636 + ], + "score": 0.91, + "latex": "\\operatorname* { m i n i m i z e } _ { \\theta _ { s } , \\phi } L _ { \\mathrm { C y c l e } } ( \\theta _ { s } , \\phi ) : = L _ { \\hat { P } } ( \\theta _ { s } , \\phi ) + L _ { \\hat { P } } ( \\hat { \\theta } _ { t } ( \\phi ) , \\phi ) ." + }, + { + "category_id": 13, + "poly": [ + 1142, + 588, + 1170, + 588, + 1170, + 617, + 1142, + 617 + ], + "score": 0.88, + "latex": "\\theta _ { s }" + }, + { + "category_id": 13, + "poly": [ + 1374, + 1316, + 1397, + 1316, + 1397, + 1351, + 1374, + 1351 + ], + "score": 0.88, + "latex": "\\widehat { Q }" + }, + { + "category_id": 13, + "poly": [ + 1100, + 1284, + 1128, + 1284, + 1128, + 1313, + 1100, + 1313 + ], + "score": 0.88, + "latex": "\\theta _ { s }" + }, + { + "category_id": 13, + "poly": [ + 1193, + 1961, + 1219, + 1961, + 1219, + 1994, + 1193, + 1994 + ], + "score": 0.87, + "latex": "y ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 696, + 1283, + 722, + 1283, + 722, + 1315, + 696, + 1315 + ], + "score": 0.87, + "latex": "y ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1060, + 1796, + 1085, + 1796, + 1085, + 1826, + 1060, + 1826 + ], + "score": 0.87, + "latex": "\\theta _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1169, + 1928, + 1194, + 1928, + 1194, + 1959, + 1169, + 1959 + ], + "score": 0.86, + "latex": "y ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 859, + 1469, + 879, + 1469, + 879, + 1499, + 859, + 1499 + ], + "score": 0.86, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 909, + 1320, + 928, + 1320, + 928, + 1351, + 909, + 1351 + ], + "score": 0.86, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 1214, + 1736, + 1234, + 1736, + 1234, + 1767, + 1214, + 1767 + ], + "score": 0.86, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 642, + 731, + 668, + 731, + 668, + 768, + 642, + 768 + ], + "score": 0.86, + "latex": "\\widehat { Q }" + }, + { + "category_id": 13, + "poly": [ + 945, + 1899, + 971, + 1899, + 971, + 1926, + 945, + 1926 + ], + "score": 0.86, + "latex": "\\theta _ { s }" + }, + { + "category_id": 13, + "poly": [ + 549, + 619, + 569, + 619, + 569, + 648, + 549, + 648 + ], + "score": 0.85, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 1140, + 1832, + 1159, + 1832, + 1159, + 1862, + 1140, + 1862 + ], + "score": 0.85, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 1190, + 1895, + 1215, + 1895, + 1215, + 1927, + 1190, + 1927 + ], + "score": 0.85, + "latex": "y ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 395, + 743, + 414, + 743, + 414, + 764, + 395, + 764 + ], + "score": 0.74, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 652, + 294, + 782, + 294, + 782, + 325, + 652, + 325 + ], + "score": 0.55, + "latex": "( \\mathrm { A U C } { = } 0 . 8 9 )" + }, + { + "category_id": 13, + "poly": [ + 1264, + 325, + 1391, + 325, + 1391, + 355, + 1264, + 355 + ], + "score": 0.51, + "latex": "\\mathrm { \\Delta A U C { = } 0 . 7 8 }" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 536.0, + 599.0, + 536.0, + 599.0, + 586.0, + 291.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 377.0, + 497.0, + 377.0, + 497.0, + 432.0, + 288.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2059.0, + 862.0, + 2059.0, + 862.0, + 2091.0, + 838.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 733.0, + 394.0, + 733.0, + 394.0, + 771.0, + 294.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 733.0, + 641.0, + 733.0, + 641.0, + 771.0, + 415.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 669.0, + 733.0, + 1406.0, + 733.0, + 1406.0, + 771.0, + 669.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 768.0, + 1405.0, + 768.0, + 1405.0, + 801.0, + 292.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 797.0, + 1405.0, + 797.0, + 1405.0, + 833.0, + 295.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 828.0, + 1403.0, + 828.0, + 1403.0, + 863.0, + 294.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 859.0, + 1403.0, + 859.0, + 1403.0, + 891.0, + 295.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 889.0, + 1406.0, + 889.0, + 1406.0, + 925.0, + 294.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 914.0, + 1410.0, + 914.0, + 1410.0, + 957.0, + 291.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 948.0, + 1407.0, + 948.0, + 1407.0, + 984.0, + 295.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 981.0, + 1402.0, + 981.0, + 1402.0, + 1013.0, + 295.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1006.0, + 1232.0, + 1006.0, + 1232.0, + 1048.0, + 291.0, + 1048.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1642.0, + 1126.0, + 1642.0, + 1126.0, + 1678.0, + 295.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 1642.0, + 1404.0, + 1642.0, + 1404.0, + 1678.0, + 1191.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1674.0, + 1406.0, + 1674.0, + 1406.0, + 1709.0, + 295.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1701.0, + 1406.0, + 1701.0, + 1406.0, + 1740.0, + 294.0, + 1740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1733.0, + 1213.0, + 1733.0, + 1213.0, + 1772.0, + 293.0, + 1772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1235.0, + 1733.0, + 1407.0, + 1733.0, + 1407.0, + 1772.0, + 1235.0, + 1772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1764.0, + 1406.0, + 1764.0, + 1406.0, + 1799.0, + 295.0, + 1799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1796.0, + 1059.0, + 1796.0, + 1059.0, + 1828.0, + 295.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1086.0, + 1796.0, + 1406.0, + 1796.0, + 1406.0, + 1828.0, + 1086.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1828.0, + 501.0, + 1828.0, + 501.0, + 1866.0, + 293.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 1828.0, + 1139.0, + 1828.0, + 1139.0, + 1866.0, + 566.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 1828.0, + 1404.0, + 1828.0, + 1404.0, + 1866.0, + 1160.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1858.0, + 1406.0, + 1858.0, + 1406.0, + 1896.0, + 294.0, + 1896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1895.0, + 770.0, + 1895.0, + 770.0, + 1930.0, + 294.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 834.0, + 1895.0, + 944.0, + 1895.0, + 944.0, + 1930.0, + 834.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 972.0, + 1895.0, + 1189.0, + 1895.0, + 1189.0, + 1930.0, + 972.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 1895.0, + 1404.0, + 1895.0, + 1404.0, + 1930.0, + 1216.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1926.0, + 1168.0, + 1926.0, + 1168.0, + 1961.0, + 294.0, + 1961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 1926.0, + 1407.0, + 1926.0, + 1407.0, + 1961.0, + 1195.0, + 1961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1957.0, + 1066.0, + 1957.0, + 1066.0, + 1999.0, + 293.0, + 1999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 1957.0, + 1192.0, + 1957.0, + 1192.0, + 1999.0, + 1130.0, + 1999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1220.0, + 1957.0, + 1406.0, + 1957.0, + 1406.0, + 1999.0, + 1220.0, + 1999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1990.0, + 1407.0, + 1990.0, + 1407.0, + 2027.0, + 294.0, + 2027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1050.0, + 1408.0, + 1050.0, + 1408.0, + 1093.0, + 294.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1087.0, + 1403.0, + 1087.0, + 1403.0, + 1118.0, + 296.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1115.0, + 1405.0, + 1115.0, + 1405.0, + 1149.0, + 294.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1145.0, + 1406.0, + 1145.0, + 1406.0, + 1179.0, + 291.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1176.0, + 1408.0, + 1176.0, + 1408.0, + 1212.0, + 292.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1207.0, + 1406.0, + 1207.0, + 1406.0, + 1241.0, + 294.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1236.0, + 1376.0, + 1236.0, + 1376.0, + 1272.0, + 292.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1436.0, + 1407.0, + 1436.0, + 1407.0, + 1469.0, + 295.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1466.0, + 858.0, + 1466.0, + 858.0, + 1499.0, + 294.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 1466.0, + 1405.0, + 1466.0, + 1405.0, + 1499.0, + 880.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1499.0, + 682.0, + 1499.0, + 682.0, + 1537.0, + 291.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 1499.0, + 1405.0, + 1499.0, + 1405.0, + 1537.0, + 747.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1528.0, + 747.0, + 1528.0, + 747.0, + 1570.0, + 292.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 204.0, + 1405.0, + 204.0, + 1405.0, + 237.0, + 296.0, + 237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 232.0, + 1403.0, + 232.0, + 1403.0, + 268.0, + 296.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 262.0, + 1405.0, + 262.0, + 1405.0, + 299.0, + 293.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 293.0, + 651.0, + 293.0, + 651.0, + 329.0, + 293.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 293.0, + 1406.0, + 293.0, + 1406.0, + 329.0, + 783.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 323.0, + 1263.0, + 323.0, + 1263.0, + 359.0, + 293.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1392.0, + 323.0, + 1408.0, + 323.0, + 1408.0, + 359.0, + 1392.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 437.0, + 1407.0, + 437.0, + 1407.0, + 473.0, + 293.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 468.0, + 1404.0, + 468.0, + 1404.0, + 505.0, + 293.0, + 505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 499.0, + 1262.0, + 499.0, + 1262.0, + 535.0, + 293.0, + 535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1279.0, + 695.0, + 1279.0, + 695.0, + 1318.0, + 295.0, + 1318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.0, + 1279.0, + 1099.0, + 1279.0, + 1099.0, + 1318.0, + 723.0, + 1318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 1279.0, + 1408.0, + 1279.0, + 1408.0, + 1318.0, + 1129.0, + 1318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1314.0, + 535.0, + 1314.0, + 535.0, + 1356.0, + 293.0, + 1356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 1314.0, + 908.0, + 1314.0, + 908.0, + 1356.0, + 600.0, + 1356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 1314.0, + 1373.0, + 1314.0, + 1373.0, + 1356.0, + 929.0, + 1356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 1314.0, + 1404.0, + 1314.0, + 1404.0, + 1356.0, + 1398.0, + 1356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 585.0, + 1141.0, + 585.0, + 1141.0, + 621.0, + 297.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 585.0, + 1405.0, + 585.0, + 1405.0, + 621.0, + 1171.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 616.0, + 548.0, + 616.0, + 548.0, + 651.0, + 297.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 570.0, + 616.0, + 1405.0, + 616.0, + 1405.0, + 651.0, + 570.0, + 651.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 914, + 1407, + 914, + 1407, + 1254, + 296, + 1254 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 244, + 1404, + 244, + 1404, + 366, + 297, + 366 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 626, + 905, + 626, + 905, + 902, + 297, + 902 + ], + "score": 0.974 + }, + { + "category_id": 3, + "poly": [ + 928, + 633, + 1389, + 633, + 1389, + 858, + 928, + 858 + ], + "score": 0.965 + }, + { + "category_id": 8, + "poly": [ + 669, + 366, + 1029, + 366, + 1029, + 428, + 669, + 428 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 299, + 1336, + 1402, + 1336, + 1402, + 1401, + 299, + 1401 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 705, + 1265, + 994, + 1265, + 994, + 1327, + 705, + 1327 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 299, + 435, + 1406, + 435, + 1406, + 508, + 299, + 508 + ], + "score": 0.944 + }, + { + "category_id": 0, + "poly": [ + 298, + 202, + 713, + 202, + 713, + 236, + 298, + 236 + ], + "score": 0.925 + }, + { + "category_id": 8, + "poly": [ + 628, + 561, + 1069, + 561, + 1069, + 606, + 628, + 606 + ], + "score": 0.921 + }, + { + "category_id": 4, + "poly": [ + 930, + 863, + 1399, + 863, + 1399, + 892, + 930, + 892 + ], + "score": 0.912 + }, + { + "category_id": 1, + "poly": [ + 296, + 521, + 1403, + 521, + 1403, + 554, + 296, + 554 + ], + "score": 0.91 + }, + { + "category_id": 8, + "poly": [ + 617, + 1916, + 1175, + 1916, + 1175, + 1958, + 617, + 1958 + ], + "score": 0.908 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1271, + 1399, + 1271, + 1399, + 1301, + 1352, + 1301 + ], + "score": 0.892 + }, + { + "category_id": 9, + "poly": [ + 1366, + 381, + 1400, + 381, + 1400, + 410, + 1366, + 410 + ], + "score": 0.881 + }, + { + "category_id": 8, + "poly": [ + 543, + 1868, + 1256, + 1868, + 1256, + 1911, + 543, + 1911 + ], + "score": 0.865 + }, + { + "category_id": 0, + "poly": [ + 298, + 1450, + 746, + 1450, + 746, + 1483, + 298, + 1483 + ], + "score": 0.859 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1920, + 1400, + 1920, + 1400, + 1948, + 1365, + 1948 + ], + "score": 0.851 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1874, + 1400, + 1874, + 1400, + 1904, + 1366, + 1904 + ], + "score": 0.843 + }, + { + "category_id": 1, + "poly": [ + 305, + 1491, + 1400, + 1491, + 1400, + 1869, + 305, + 1869 + ], + "score": 0.814 + }, + { + "category_id": 9, + "poly": [ + 1365, + 566, + 1400, + 566, + 1400, + 595, + 1365, + 595 + ], + "score": 0.813 + }, + { + "category_id": 2, + "poly": [ + 840, + 2061, + 859, + 2061, + 859, + 2085, + 840, + 2085 + ], + "score": 0.748 + }, + { + "category_id": 8, + "poly": [ + 688, + 1750, + 1111, + 1750, + 1111, + 1797, + 688, + 1797 + ], + "score": 0.232 + }, + { + "category_id": 1, + "poly": [ + 299, + 1932, + 462, + 1932, + 462, + 1994, + 299, + 1994 + ], + "score": 0.216 + }, + { + "category_id": 14, + "poly": [ + 668, + 361, + 1029, + 361, + 1029, + 428, + 668, + 428 + ], + "score": 0.94, + "latex": "S _ { \\alpha } ( y ) = \\frac { 1 } { \\alpha - 1 } \\left( 1 - \\sum y _ { [ i ] } ^ { \\alpha } \\right) ," + }, + { + "category_id": 14, + "poly": [ + 705, + 1262, + 995, + 1262, + 995, + 1328, + 705, + 1328 + ], + "score": 0.94, + "latex": "\\hat { \\alpha } = \\underset { \\alpha \\in [ 1 , 2 ] } { \\arg \\operatorname* { m i n } } L _ { \\widehat { P } } ( \\widehat { \\theta } _ { t , \\alpha } , \\phi )" + }, + { + "category_id": 13, + "poly": [ + 613, + 1708, + 677, + 1708, + 677, + 1746, + 613, + 1746 + ], + "score": 0.93, + "latex": "\\hat { \\theta } _ { t } ( \\phi )" + }, + { + "category_id": 13, + "poly": [ + 1106, + 1796, + 1169, + 1796, + 1169, + 1834, + 1106, + 1834 + ], + "score": 0.93, + "latex": "\\hat { \\theta } _ { t } ( \\phi )" + }, + { + "category_id": 13, + "poly": [ + 861, + 1215, + 908, + 1215, + 908, + 1255, + 861, + 1255 + ], + "score": 0.92, + "latex": "\\widehat { \\theta } _ { t , \\alpha }" + }, + { + "category_id": 13, + "poly": [ + 323, + 334, + 414, + 334, + 414, + 367, + 323, + 367 + ], + "score": 0.92, + "latex": "\\boldsymbol { y } \\in \\mathbb { R } ^ { K }" + }, + { + "category_id": 13, + "poly": [ + 832, + 1098, + 880, + 1098, + 880, + 1136, + 832, + 1136 + ], + "score": 0.92, + "latex": "\\widehat { \\theta } _ { s , \\alpha }" + }, + { + "category_id": 13, + "poly": [ + 761, + 1037, + 810, + 1037, + 810, + 1070, + 761, + 1070 + ], + "score": 0.92, + "latex": "\\theta _ { s , \\alpha }" + }, + { + "category_id": 13, + "poly": [ + 536, + 1068, + 583, + 1068, + 583, + 1100, + 536, + 1100 + ], + "score": 0.92, + "latex": "\\theta _ { t , \\alpha }" + }, + { + "category_id": 13, + "poly": [ + 1069, + 1179, + 1116, + 1179, + 1116, + 1218, + 1069, + 1218 + ], + "score": 0.92, + "latex": "\\widehat { \\theta } _ { t , \\alpha }" + }, + { + "category_id": 14, + "poly": [ + 627, + 561, + 1071, + 561, + 1071, + 606, + 627, + 606 + ], + "score": 0.91, + "latex": "L _ { \\widehat { Q } , \\mathrm { T s a l l i s } , \\alpha } ( \\theta , \\phi ) : = \\mathbb { E } _ { \\boldsymbol { x } \\sim \\widehat { Q } } S _ { \\alpha } ( f _ { \\theta , \\phi } ( \\boldsymbol { x } ) ) ." + }, + { + "category_id": 13, + "poly": [ + 832, + 434, + 1233, + 434, + 1233, + 473, + 832, + 473 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\operatorname* { l i m } _ { \\alpha \\to 1 } S _ { \\alpha } ( y ) = \\sum _ { i } - y _ { [ i ] } \\mathrm { l o g } ( y _ { [ i ] } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1144, + 471, + 1271, + 471, + 1271, + 513, + 1144, + 513 + ], + "score": 0.91, + "latex": "1 - \\textstyle \\sum _ { i } y _ { [ i ] } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 839, + 1138, + 1336, + 1138, + 1336, + 1180, + 839, + 1180 + ], + "score": 0.91, + "latex": "\\hat { \\theta } _ { s , \\alpha } = \\arg \\operatorname* { m i n } _ { \\theta } L _ { \\widehat { P } } ( \\theta , \\phi ) + L _ { \\widehat { Q } , \\mathrm { T s a l l i s } , \\alpha } ( \\theta , \\phi )" + }, + { + "category_id": 13, + "poly": [ + 453, + 1141, + 573, + 1141, + 573, + 1181, + 453, + 1181 + ], + "score": 0.91, + "latex": "L _ { \\widehat { Q } , \\mathrm { T s a l l i s } , \\alpha }" + }, + { + "category_id": 14, + "poly": [ + 687, + 1748, + 1108, + 1748, + 1108, + 1805, + 687, + 1805 + ], + "score": 0.91, + "latex": "\\hat { \\theta } _ { t } ( \\phi ) = \\underset { \\theta } { \\arg \\operatorname* { m i n } } \\mathbb { E } _ { x \\sim \\hat { Q } } \\ell ( f _ { \\theta , \\phi } ( x ) , y ^ { \\prime } ) ." + }, + { + "category_id": 13, + "poly": [ + 297, + 1036, + 346, + 1036, + 346, + 1070, + 297, + 1070 + ], + "score": 0.9, + "latex": "\\theta _ { s , \\alpha }" + }, + { + "category_id": 13, + "poly": [ + 413, + 1588, + 478, + 1588, + 478, + 1615, + 413, + 1615 + ], + "score": 0.9, + "latex": "t = 0" + }, + { + "category_id": 13, + "poly": [ + 374, + 438, + 455, + 438, + 455, + 466, + 374, + 466 + ], + "score": 0.9, + "latex": "\\alpha > 0" + }, + { + "category_id": 14, + "poly": [ + 542, + 1864, + 1258, + 1864, + 1258, + 1962, + 542, + 1962 + ], + "score": 0.9, + "latex": "\\begin{array} { r l } & { \\phi \\phi - \\eta \\nabla _ { \\phi } [ L _ { \\widehat { P } } ( \\theta _ { s } , \\phi ) + L _ { \\widehat { P } } ( \\widehat { \\theta } _ { t } ( \\phi ) , \\phi ) + L _ { \\widehat { Q } , \\mathrm { T s a l l i s } , \\widehat { \\alpha } } ( \\theta _ { s } , \\phi ) ] . } \\\\ & { \\qquad \\theta _ { s } \\theta _ { s } - \\eta \\nabla _ { \\theta _ { s } } [ L _ { \\widehat { P } } ( \\theta _ { s } , \\phi ) + L _ { \\widehat { Q } , \\mathrm { T s a l l i s } , \\widehat { \\alpha } } ( \\theta _ { s } , \\phi ) ] . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 764, + 470, + 835, + 470, + 835, + 505, + 764, + 505 + ], + "score": 0.89, + "latex": "S _ { \\alpha } ( y )" + }, + { + "category_id": 13, + "poly": [ + 966, + 1713, + 991, + 1713, + 991, + 1745, + 966, + 1745 + ], + "score": 0.88, + "latex": "y ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 682, + 472, + 754, + 472, + 754, + 501, + 682, + 501 + ], + "score": 0.86, + "latex": "\\alpha = 2" + }, + { + "category_id": 13, + "poly": [ + 762, + 1834, + 783, + 1834, + 783, + 1859, + 762, + 1859 + ], + "score": 0.85, + "latex": "\\hat { \\alpha }" + }, + { + "category_id": 13, + "poly": [ + 723, + 1804, + 743, + 1804, + 743, + 1833, + 723, + 1833 + ], + "score": 0.85, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 456, + 1528, + 507, + 1528, + 507, + 1555, + 456, + 1555 + ], + "score": 0.85, + "latex": "= 0" + }, + { + "category_id": 13, + "poly": [ + 956, + 1649, + 977, + 1649, + 977, + 1679, + 956, + 1679 + ], + "score": 0.85, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 1047, + 1646, + 1377, + 1646, + 1377, + 1684, + 1047, + 1684 + ], + "score": 0.84, + "latex": "{ \\mathrm { ~ \\mu ~ } } _ { 3 } \\colon y ^ { \\prime } = \\arg \\operatorname* { m a x } _ { i } \\{ f _ { \\theta _ { s } , \\phi } ( x ) _ { [ i ] } \\}" + }, + { + "category_id": 13, + "poly": [ + 977, + 1803, + 1004, + 1803, + 1004, + 1832, + 977, + 1832 + ], + "score": 0.84, + "latex": "\\theta _ { s }" + }, + { + "category_id": 13, + "poly": [ + 790, + 721, + 816, + 721, + 816, + 750, + 790, + 750 + ], + "score": 0.84, + "latex": "y _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1259, + 1714, + 1279, + 1714, + 1279, + 1745, + 1259, + 1745 + ], + "score": 0.83, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 446, + 1558, + 468, + 1558, + 468, + 1584, + 446, + 1584 + ], + "score": 0.83, + "latex": "\\hat { \\alpha }" + }, + { + "category_id": 13, + "poly": [ + 820, + 1489, + 845, + 1489, + 845, + 1528, + 820, + 1528 + ], + "score": 0.82, + "latex": "\\widehat { Q }" + }, + { + "category_id": 13, + "poly": [ + 591, + 1489, + 617, + 1489, + 617, + 1523, + 591, + 1523 + ], + "score": 0.82, + "latex": "\\widehat { P }" + }, + { + "category_id": 13, + "poly": [ + 1211, + 1107, + 1232, + 1107, + 1232, + 1131, + 1211, + 1131 + ], + "score": 0.8, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 522, + 339, + 543, + 339, + 543, + 363, + 522, + 363 + ], + "score": 0.79, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 761, + 1375, + 782, + 1375, + 782, + 1396, + 761, + 1396 + ], + "score": 0.79, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 1012, + 1343, + 1034, + 1343, + 1034, + 1365, + 1012, + 1365 + ], + "score": 0.78, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 522, + 663, + 544, + 663, + 544, + 685, + 522, + 685 + ], + "score": 0.78, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 1069, + 1012, + 1091, + 1012, + 1091, + 1033, + 1069, + 1033 + ], + "score": 0.77, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 517, + 723, + 539, + 723, + 539, + 746, + 517, + 746 + ], + "score": 0.77, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 547, + 1225, + 568, + 1225, + 568, + 1248, + 547, + 1248 + ], + "score": 0.76, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 362, + 783, + 383, + 783, + 383, + 806, + 362, + 806 + ], + "score": 0.75, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 390, + 693, + 411, + 693, + 411, + 715, + 390, + 715 + ], + "score": 0.74, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 1021, + 981, + 1043, + 981, + 1043, + 1003, + 1021, + 1003 + ], + "score": 0.72, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 1026, + 1648, + 1054, + 1648, + 1054, + 1678, + 1026, + 1678 + ], + "score": 0.71, + "latex": "\\theta _ { s }" + }, + { + "category_id": 13, + "poly": [ + 1376, + 868, + 1396, + 868, + 1396, + 887, + 1376, + 887 + ], + "score": 0.56, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 1116, + 803, + 1163, + 803, + 1163, + 820, + 1116, + 820 + ], + "score": 0.27, + "latex": "\\alpha = 2 . 0" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 633.0, + 968.0, + 633.0, + 968.0, + 658.0, + 940.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 655.0, + 970.0, + 655.0, + 970.0, + 684.0, + 939.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 659.0, + 986.0, + 659.0, + 986.0, + 799.0, + 926.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 707.0, + 969.0, + 707.0, + 969.0, + 731.0, + 940.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 732.0, + 970.0, + 732.0, + 970.0, + 760.0, + 939.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 754.0, + 971.0, + 754.0, + 971.0, + 785.0, + 940.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1112.0, + 745.0, + 1273.0, + 745.0, + 1273.0, + 789.0, + 1112.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 783.0, + 968.0, + 783.0, + 968.0, + 808.0, + 940.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1113.0, + 782.0, + 1168.0, + 782.0, + 1168.0, + 806.0, + 1113.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 808.0, + 970.0, + 808.0, + 970.0, + 832.0, + 940.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1112.0, + 799.0, + 1115.0, + 799.0, + 1115.0, + 825.0, + 1112.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1164.0, + 799.0, + 1247.0, + 799.0, + 1247.0, + 825.0, + 1164.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 827.0, + 998.0, + 827.0, + 998.0, + 846.0, + 971.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 825.0, + 1076.0, + 825.0, + 1076.0, + 847.0, + 1046.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 825.0, + 1154.0, + 825.0, + 1154.0, + 847.0, + 1123.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1199.0, + 825.0, + 1230.0, + 825.0, + 1230.0, + 848.0, + 1199.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1278.0, + 827.0, + 1306.0, + 827.0, + 1306.0, + 846.0, + 1278.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1357.0, + 827.0, + 1383.0, + 827.0, + 1383.0, + 846.0, + 1357.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 835.0, + 1219.0, + 835.0, + 1219.0, + 864.0, + 1133.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 197.0, + 716.0, + 197.0, + 716.0, + 243.0, + 292.0, + 243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 924.0, + 858.0, + 1375.0, + 858.0, + 1375.0, + 897.0, + 924.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 858.0, + 1404.0, + 858.0, + 1404.0, + 897.0, + 1397.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1444.0, + 751.0, + 1444.0, + 751.0, + 1492.0, + 292.0, + 1492.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": [ + 294.0, + 915.0, + 1405.0, + 915.0, + 1405.0, + 950.0, + 294.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 941.0, + 1405.0, + 941.0, + 1405.0, + 983.0, + 291.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 973.0, + 1020.0, + 973.0, + 1020.0, + 1012.0, + 294.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 973.0, + 1405.0, + 973.0, + 1405.0, + 1012.0, + 1044.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1004.0, + 1068.0, + 1004.0, + 1068.0, + 1039.0, + 295.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 1004.0, + 1404.0, + 1004.0, + 1404.0, + 1039.0, + 1092.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1034.0, + 760.0, + 1034.0, + 760.0, + 1073.0, + 347.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 811.0, + 1034.0, + 1408.0, + 1034.0, + 1408.0, + 1073.0, + 811.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1067.0, + 535.0, + 1067.0, + 535.0, + 1100.0, + 293.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 1067.0, + 1408.0, + 1067.0, + 1408.0, + 1100.0, + 584.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1099.0, + 831.0, + 1099.0, + 831.0, + 1142.0, + 293.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 1099.0, + 1210.0, + 1099.0, + 1210.0, + 1142.0, + 881.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1233.0, + 1099.0, + 1405.0, + 1099.0, + 1405.0, + 1142.0, + 1233.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1134.0, + 452.0, + 1134.0, + 452.0, + 1188.0, + 292.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 1134.0, + 838.0, + 1134.0, + 838.0, + 1188.0, + 574.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1337.0, + 1134.0, + 1410.0, + 1134.0, + 1410.0, + 1188.0, + 1337.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1183.0, + 1068.0, + 1183.0, + 1068.0, + 1218.0, + 295.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1117.0, + 1183.0, + 1407.0, + 1183.0, + 1407.0, + 1218.0, + 1117.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1220.0, + 546.0, + 1220.0, + 546.0, + 1255.0, + 295.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 569.0, + 1220.0, + 860.0, + 1220.0, + 860.0, + 1255.0, + 569.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 1220.0, + 1128.0, + 1220.0, + 1128.0, + 1255.0, + 909.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 244.0, + 1405.0, + 244.0, + 1405.0, + 280.0, + 295.0, + 280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 276.0, + 1404.0, + 276.0, + 1404.0, + 308.0, + 295.0, + 308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 303.0, + 1405.0, + 303.0, + 1405.0, + 341.0, + 294.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 330.0, + 322.0, + 330.0, + 322.0, + 371.0, + 291.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 330.0, + 521.0, + 330.0, + 521.0, + 371.0, + 415.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 544.0, + 330.0, + 866.0, + 330.0, + 866.0, + 371.0, + 544.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 627.0, + 909.0, + 627.0, + 909.0, + 660.0, + 295.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 656.0, + 521.0, + 656.0, + 521.0, + 692.0, + 293.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 656.0, + 907.0, + 656.0, + 907.0, + 692.0, + 545.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 688.0, + 389.0, + 688.0, + 389.0, + 720.0, + 294.0, + 720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 412.0, + 688.0, + 908.0, + 688.0, + 908.0, + 720.0, + 412.0, + 720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 717.0, + 516.0, + 717.0, + 516.0, + 750.0, + 295.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 717.0, + 789.0, + 717.0, + 789.0, + 750.0, + 540.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 717.0, + 906.0, + 717.0, + 906.0, + 750.0, + 817.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 746.0, + 906.0, + 746.0, + 906.0, + 782.0, + 294.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 779.0, + 361.0, + 779.0, + 361.0, + 809.0, + 294.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 779.0, + 907.0, + 779.0, + 907.0, + 809.0, + 384.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 808.0, + 905.0, + 808.0, + 905.0, + 841.0, + 294.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 839.0, + 904.0, + 839.0, + 904.0, + 873.0, + 294.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 868.0, + 804.0, + 868.0, + 804.0, + 904.0, + 295.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1336.0, + 1011.0, + 1336.0, + 1011.0, + 1372.0, + 295.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 1336.0, + 1404.0, + 1336.0, + 1404.0, + 1372.0, + 1035.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1370.0, + 760.0, + 1370.0, + 760.0, + 1402.0, + 297.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 1370.0, + 1403.0, + 1370.0, + 1403.0, + 1402.0, + 783.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 431.0, + 373.0, + 431.0, + 373.0, + 477.0, + 293.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 431.0, + 831.0, + 431.0, + 831.0, + 477.0, + 456.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1234.0, + 431.0, + 1406.0, + 431.0, + 1406.0, + 477.0, + 1234.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 459.0, + 681.0, + 459.0, + 681.0, + 518.0, + 291.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 459.0, + 763.0, + 459.0, + 763.0, + 518.0, + 755.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 459.0, + 1143.0, + 459.0, + 1143.0, + 518.0, + 836.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 459.0, + 1285.0, + 459.0, + 1285.0, + 518.0, + 1272.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 518.0, + 1405.0, + 518.0, + 1405.0, + 557.0, + 295.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 1491.0, + 590.0, + 1491.0, + 590.0, + 1529.0, + 306.0, + 1529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 1491.0, + 819.0, + 1491.0, + 819.0, + 1529.0, + 618.0, + 1529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 1491.0, + 855.0, + 1491.0, + 855.0, + 1529.0, + 846.0, + 1529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 1529.0, + 338.0, + 1529.0, + 338.0, + 1556.0, + 311.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 1527.0, + 455.0, + 1527.0, + 455.0, + 1558.0, + 340.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 1527.0, + 698.0, + 1527.0, + 698.0, + 1558.0, + 508.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 1557.0, + 338.0, + 1557.0, + 338.0, + 1588.0, + 309.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 1556.0, + 445.0, + 1556.0, + 445.0, + 1590.0, + 370.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 1556.0, + 926.0, + 1556.0, + 926.0, + 1590.0, + 469.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1587.0, + 338.0, + 1587.0, + 338.0, + 1618.0, + 307.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 1584.0, + 412.0, + 1584.0, + 412.0, + 1619.0, + 368.0, + 1619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 479.0, + 1584.0, + 656.0, + 1584.0, + 656.0, + 1619.0, + 479.0, + 1619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1617.0, + 338.0, + 1617.0, + 338.0, + 1650.0, + 307.0, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 1615.0, + 570.0, + 1615.0, + 570.0, + 1652.0, + 397.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1648.0, + 338.0, + 1648.0, + 338.0, + 1680.0, + 307.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1644.0, + 955.0, + 1644.0, + 955.0, + 1685.0, + 396.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 1644.0, + 1025.0, + 1644.0, + 1025.0, + 1685.0, + 978.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1378.0, + 1644.0, + 1387.0, + 1644.0, + 1387.0, + 1685.0, + 1378.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1678.0, + 338.0, + 1678.0, + 338.0, + 1711.0, + 307.0, + 1711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1673.0, + 559.0, + 1673.0, + 559.0, + 1714.0, + 396.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 1711.0, + 341.0, + 1711.0, + 341.0, + 1747.0, + 306.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 1709.0, + 612.0, + 1709.0, + 612.0, + 1747.0, + 397.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 1709.0, + 965.0, + 1709.0, + 965.0, + 1747.0, + 678.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.0, + 1709.0, + 1258.0, + 1709.0, + 1258.0, + 1747.0, + 992.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1280.0, + 1709.0, + 1291.0, + 1709.0, + 1291.0, + 1747.0, + 1280.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 1747.0, + 1115.0, + 1747.0, + 1115.0, + 1795.0, + 1109.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1801.0, + 338.0, + 1801.0, + 338.0, + 1834.0, + 307.0, + 1834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 1798.0, + 722.0, + 1798.0, + 722.0, + 1837.0, + 398.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 744.0, + 1798.0, + 976.0, + 1798.0, + 976.0, + 1837.0, + 744.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 1798.0, + 1105.0, + 1798.0, + 1105.0, + 1837.0, + 1005.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 1798.0, + 1404.0, + 1798.0, + 1404.0, + 1837.0, + 1170.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 1831.0, + 761.0, + 1831.0, + 761.0, + 1865.0, + 397.0, + 1865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 1831.0, + 1196.0, + 1831.0, + 1196.0, + 1865.0, + 784.0, + 1865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1931.0, + 342.0, + 1931.0, + 342.0, + 1964.0, + 296.0, + 1964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1931.0, + 467.0, + 1931.0, + 467.0, + 1964.0, + 365.0, + 1964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1960.0, + 440.0, + 1960.0, + 440.0, + 1995.0, + 295.0, + 1995.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1536, + 1406, + 1536, + 1406, + 1845, + 296, + 1845 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 296, + 681, + 1405, + 681, + 1405, + 877, + 296, + 877 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 295, + 1113, + 1406, + 1113, + 1406, + 1351, + 295, + 1351 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 296, + 464, + 1407, + 464, + 1407, + 621, + 296, + 621 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 296, + 986, + 1405, + 986, + 1405, + 1095, + 296, + 1095 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 299, + 886, + 1402, + 886, + 1402, + 980, + 299, + 980 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 293, + 201, + 1402, + 201, + 1402, + 271, + 293, + 271 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 294, + 1944, + 1402, + 1944, + 1402, + 2009, + 294, + 2009 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 592, + 1447, + 1102, + 1447, + 1102, + 1514, + 592, + 1514 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 296, + 1361, + 1406, + 1361, + 1406, + 1435, + 296, + 1435 + ], + "score": 0.944 + }, + { + "category_id": 0, + "poly": [ + 296, + 636, + 1019, + 636, + 1019, + 671, + 296, + 671 + ], + "score": 0.932 + }, + { + "category_id": 8, + "poly": [ + 398, + 1858, + 1298, + 1858, + 1298, + 1930, + 398, + 1930 + ], + "score": 0.931 + }, + { + "category_id": 0, + "poly": [ + 298, + 410, + 643, + 410, + 643, + 449, + 298, + 449 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 289, + 351, + 1364, + 351, + 1364, + 385, + 289, + 385 + ], + "score": 0.922 + }, + { + "category_id": 9, + "poly": [ + 1352, + 288, + 1400, + 288, + 1400, + 319, + 1352, + 319 + ], + "score": 0.901 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1459, + 1400, + 1459, + 1400, + 1490, + 1351, + 1490 + ], + "score": 0.895 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1886, + 1400, + 1886, + 1400, + 1916, + 1352, + 1916 + ], + "score": 0.882 + }, + { + "category_id": 2, + "poly": [ + 840, + 2061, + 859, + 2061, + 859, + 2086, + 840, + 2086 + ], + "score": 0.744 + }, + { + "category_id": 8, + "poly": [ + 608, + 284, + 1092, + 284, + 1092, + 334, + 608, + 334 + ], + "score": 0.702 + }, + { + "category_id": 2, + "poly": [ + 840, + 2061, + 859, + 2061, + 859, + 2086, + 840, + 2086 + ], + "score": 0.137 + }, + { + "category_id": 8, + "poly": [ + 602, + 284, + 1096, + 284, + 1096, + 334, + 602, + 334 + ], + "score": 0.119 + }, + { + "category_id": 13, + "poly": [ + 1089, + 1018, + 1354, + 1018, + 1354, + 1058, + 1089, + 1058 + ], + "score": 0.93, + "latex": "{ \\textstyle \\frac { 1 } { 2 } } > P _ { \\frac { 1 } { 2 } ( P _ { i } + Q _ { i } ) } ( A ) > q" + }, + { + "category_id": 13, + "poly": [ + 1132, + 1944, + 1272, + 1944, + 1272, + 1979, + 1132, + 1979 + ], + "score": 0.93, + "latex": "L _ { \\mathrm { C S T } } ( f _ { s } , f _ { t } )" + }, + { + "category_id": 13, + "poly": [ + 297, + 1317, + 399, + 1317, + 399, + 1351, + 297, + 1351 + ], + "score": 0.93, + "latex": "\\mathrm { E r r } _ { P } ( f _ { t } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1253, + 423, + 1253, + 423, + 1290, + 298, + 1290 + ], + "score": 0.93, + "latex": "\\tilde { f } _ { t } ( x ) ) \\leq c" + }, + { + "category_id": 13, + "poly": [ + 504, + 1810, + 620, + 1810, + 620, + 1844, + 504, + 1844 + ], + "score": 0.93, + "latex": "\\mathcal { M } ( f _ { t } ( x ) )" + }, + { + "category_id": 13, + "poly": [ + 751, + 497, + 854, + 497, + 854, + 530, + 751, + 530 + ], + "score": 0.92, + "latex": "\\mathrm { E r r } _ { Q } ( f _ { s } )" + }, + { + "category_id": 14, + "poly": [ + 593, + 1446, + 1105, + 1446, + 1105, + 1513, + 593, + 1513 + ], + "score": 0.92, + "latex": "\\mathrm { E r r } _ { Q } ( f _ { s } ) \\le \\mathrm { E r r } _ { P } ( f _ { t } ) + c + 2 q + \\frac { \\rho } { \\mathrm { m i n } \\{ \\epsilon , q \\} } ." + }, + { + "category_id": 13, + "poly": [ + 810, + 681, + 1059, + 681, + 1059, + 717, + 810, + 717 + ], + "score": 0.92, + "latex": "f : \\mathcal { X } \\to [ 0 , 1 ] ^ { K } \\in \\mathcal { F }" + }, + { + "category_id": 13, + "poly": [ + 298, + 497, + 438, + 497, + 438, + 530, + 298, + 530 + ], + "score": 0.92, + "latex": "L _ { \\mathrm { C S T } } ( f _ { s } , f _ { t } )" + }, + { + "category_id": 13, + "poly": [ + 1181, + 1358, + 1407, + 1358, + 1407, + 1400, + 1181, + 1400 + ], + "score": 0.92, + "latex": "\\mathbb { E } _ { ( x , y ) \\sim Q } \\mathbb { I } ( \\tilde { f } _ { s } ( x ) \\neq" + }, + { + "category_id": 13, + "poly": [ + 940, + 1019, + 1026, + 1019, + 1026, + 1051, + 940, + 1051 + ], + "score": 0.92, + "latex": "i \\in [ K ]" + }, + { + "category_id": 13, + "poly": [ + 474, + 1400, + 594, + 1400, + 594, + 1435, + 474, + 1435 + ], + "score": 0.92, + "latex": "R ( f _ { t } ) \\leq \\rho _ { : }" + }, + { + "category_id": 13, + "poly": [ + 475, + 1256, + 596, + 1256, + 596, + 1289, + 475, + 1289 + ], + "score": 0.92, + "latex": "R ( f _ { t } ) \\leq \\rho" + }, + { + "category_id": 13, + "poly": [ + 999, + 1364, + 1063, + 1364, + 1063, + 1397, + 999, + 1397 + ], + "score": 0.92, + "latex": "f _ { s } , f _ { t }" + }, + { + "category_id": 14, + "poly": [ + 602, + 284, + 1095, + 284, + 1095, + 340, + 602, + 340 + ], + "score": 0.91, + "latex": "\\operatorname* { m i n i m i z e } _ { \\theta _ { s } , \\phi } L _ { \\mathrm { C y c l e } } ( \\theta _ { s } , \\phi ) + L _ { \\hat { Q } , \\mathrm { T s a l l i s } , \\hat { \\alpha } } ( \\theta _ { s } , \\phi ) ." + }, + { + "category_id": 13, + "poly": [ + 497, + 1736, + 636, + 1736, + 636, + 1769, + 497, + 1769 + ], + "score": 0.91, + "latex": "L _ { \\mathrm { C S T } } ( f _ { s } , f _ { t } )" + }, + { + "category_id": 14, + "poly": [ + 399, + 1855, + 1299, + 1855, + 1299, + 1933, + 399, + 1933 + ], + "score": 0.91, + "latex": "\\operatorname* { m i n } L _ { \\mathrm { C S T } } ( f _ { s } , f _ { t } ) : = L _ { \\widehat { P } , \\gamma } ( f _ { t } ) + L _ { \\widehat { Q } , \\gamma } ( f _ { t } , f _ { s } ) + \\frac { 1 - \\mathbb { E } _ { ( x , y ) \\sim \\frac { 1 } { 2 } ( \\widehat { P } + \\widehat { Q } ) } \\mathcal { M } ( f _ { t } ( x ) ) } { \\tau } ." + }, + { + "category_id": 13, + "poly": [ + 465, + 1018, + 598, + 1018, + 598, + 1051, + 465, + 1051 + ], + "score": 0.91, + "latex": "q , \\epsilon \\in ( 0 , 1 )" + }, + { + "category_id": 13, + "poly": [ + 379, + 1706, + 446, + 1706, + 446, + 1738, + 379, + 1738 + ], + "score": 0.91, + "latex": "d ( \\cdot , \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 1181, + 1215, + 1404, + 1215, + 1404, + 1255, + 1181, + 1255 + ], + "score": 0.91, + "latex": "\\mathbb { E } _ { ( x , y ) \\sim Q } \\mathbb { I } ( \\tilde { f } _ { s } ( x ) \\neq" + }, + { + "category_id": 13, + "poly": [ + 789, + 1569, + 1177, + 1569, + 1177, + 1604, + 789, + 1604 + ], + "score": 0.91, + "latex": "l _ { \\gamma } ( f ( x ) , y ) : = \\bar { \\psi _ { \\gamma } } ( - { \\cal M } ( f ( x ) , y ) )" + }, + { + "category_id": 13, + "poly": [ + 939, + 235, + 1059, + 235, + 1059, + 273, + 939, + 273 + ], + "score": 0.91, + "latex": "L _ { \\widehat { Q } , \\mathrm { T s a l l i s } , \\widehat { \\alpha } }" + }, + { + "category_id": 13, + "poly": [ + 781, + 805, + 1025, + 805, + 1025, + 839, + 781, + 839 + ], + "score": 0.91, + "latex": "{ \\mathcal { N } } ( A ) : = \\cup _ { x \\in A } { \\mathcal { N } } ( x )" + }, + { + "category_id": 13, + "poly": [ + 492, + 839, + 871, + 839, + 871, + 877, + 492, + 877 + ], + "score": 0.91, + "latex": "\\mathrm { E r r } _ { Q } ( f ) : = \\mathbb { E } _ { ( x , y ) \\sim Q } \\mathbb { I } ( \\tilde { f } ( x ) \\neq y )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1397, + 421, + 1397, + 421, + 1435, + 298, + 1435 + ], + "score": 0.91, + "latex": "\\tilde { f } _ { t } ( x ) ) \\leq c" + }, + { + "category_id": 13, + "poly": [ + 1055, + 1176, + 1404, + 1176, + 1404, + 1216, + 1055, + 1216 + ], + "score": 0.9, + "latex": "R ( f _ { t } ) : = P _ { \\frac { 1 } { 2 } ( P + Q ) } ( \\{ x : \\exists x ^ { \\prime } \\in" + }, + { + "category_id": 13, + "poly": [ + 759, + 1019, + 840, + 1019, + 840, + 1046, + 759, + 1046 + ], + "score": 0.9, + "latex": "A \\in { \\mathcal { X } }" + }, + { + "category_id": 13, + "poly": [ + 1077, + 1672, + 1114, + 1672, + 1114, + 1707, + 1077, + 1707 + ], + "score": 0.9, + "latex": "f _ { [ i ] }" + }, + { + "category_id": 13, + "poly": [ + 727, + 746, + 792, + 746, + 792, + 776, + 727, + 776 + ], + "score": 0.9, + "latex": "i \\neq j" + }, + { + "category_id": 13, + "poly": [ + 579, + 1773, + 1047, + 1773, + 1047, + 1814, + 579, + 1814 + ], + "score": 0.9, + "latex": "L _ { \\widehat { Q } , \\gamma } ( f _ { t } , f _ { s } ) : = \\mathbb { E } _ { ( x , y ) \\sim \\widehat { Q } } l _ { \\gamma } ( f _ { t } ( x ) , f _ { s } ( x ) )" + }, + { + "category_id": 13, + "poly": [ + 728, + 1735, + 1115, + 1735, + 1115, + 1774, + 728, + 1774 + ], + "score": 0.9, + "latex": "\\mathcal { L } _ { \\widehat { P } , \\gamma } ( f _ { t } ) : = \\mathbb { E } _ { ( x , y ) \\sim \\widehat { P } } l _ { \\gamma } ( f _ { t } ( x ) , y )" + }, + { + "category_id": 13, + "poly": [ + 1113, + 679, + 1400, + 679, + 1400, + 719, + 1113, + 719 + ], + "score": 0.9, + "latex": "{ \\tilde { f } } ( x ) : = \\arg \\operatorname* { m a x } _ { i } f ( x ) _ { [ i ] }" + }, + { + "category_id": 13, + "poly": [ + 357, + 1053, + 900, + 1053, + 900, + 1096, + 357, + 1096 + ], + "score": 0.89, + "latex": "P _ { \\frac { 1 } { 2 } ( P _ { i } + Q _ { i } ) } ( { \\mathcal { N } } ( A ) \\backslash A ) > \\operatorname* { m i n } \\{ \\epsilon , P _ { \\frac { 1 } { 2 } ( P _ { i } + Q _ { i } ) } ( A ) \\} ." + }, + { + "category_id": 13, + "poly": [ + 1085, + 987, + 1145, + 987, + 1145, + 1020, + 1085, + 1020 + ], + "score": 0.89, + "latex": "( q , \\epsilon )" + }, + { + "category_id": 13, + "poly": [ + 298, + 775, + 549, + 775, + 549, + 808, + 298, + 808 + ], + "score": 0.89, + "latex": "P ( y = i ) = Q ( y = i )" + }, + { + "category_id": 13, + "poly": [ + 590, + 1601, + 627, + 1601, + 627, + 1633, + 590, + 1633 + ], + "score": 0.89, + "latex": "\\psi _ { \\gamma }" + }, + { + "category_id": 13, + "poly": [ + 706, + 1319, + 734, + 1319, + 734, + 1350, + 706, + 1350 + ], + "score": 0.89, + "latex": "f _ { s }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1636, + 613, + 1636, + 613, + 1670, + 297, + 1670 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { \\operatorname* { m a x } _ { y } \\big ( v _ { [ y ] } - \\operatorname* { m a x } _ { y ^ { \\prime } \\neq y } v _ { [ y ^ { \\prime } ] } \\big ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 384, + 1667, + 874, + 1667, + 874, + 1705, + 384, + 1705 + ], + "score": 0.89, + "latex": "\\dot { l } _ { \\gamma } ( f _ { t } ( x ) , f _ { s } ( x ) ) : = \\psi _ { \\gamma } ( - \\mathcal { M } ( f _ { t } ( x ) , \\tilde { f } _ { s } ( x ) ) )" + }, + { + "category_id": 13, + "poly": [ + 1154, + 918, + 1187, + 918, + 1187, + 948, + 1154, + 948 + ], + "score": 0.89, + "latex": "Q _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1177, + 718, + 1247, + 718, + 1247, + 746, + 1177, + 746 + ], + "score": 0.89, + "latex": "y = i" + }, + { + "category_id": 13, + "poly": [ + 562, + 1977, + 589, + 1977, + 589, + 2008, + 562, + 2008 + ], + "score": 0.88, + "latex": "f _ { s }" + }, + { + "category_id": 13, + "poly": [ + 913, + 1219, + 939, + 1219, + 939, + 1251, + 913, + 1251 + ], + "score": 0.88, + "latex": "f _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1128, + 746, + 1162, + 746, + 1162, + 776, + 1128, + 776 + ], + "score": 0.88, + "latex": "Q _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1293, + 1601, + 1403, + 1601, + 1403, + 1633, + 1293, + 1633 + ], + "score": 0.88, + "latex": "\\mathcal { M } ( v ) =" + }, + { + "category_id": 13, + "poly": [ + 1144, + 1672, + 1179, + 1672, + 1179, + 1706, + 1144, + 1706 + ], + "score": 0.88, + "latex": "L _ { f }" + }, + { + "category_id": 13, + "poly": [ + 1064, + 1257, + 1093, + 1257, + 1093, + 1289, + 1064, + 1289 + ], + "score": 0.88, + "latex": "f _ { s }" + }, + { + "category_id": 13, + "poly": [ + 1270, + 1570, + 1403, + 1570, + 1403, + 1601, + 1270, + 1601 + ], + "score": 0.88, + "latex": "\\mathcal { M } ( v , y ) =" + }, + { + "category_id": 13, + "poly": [ + 1073, + 918, + 1103, + 918, + 1103, + 947, + 1073, + 947 + ], + "score": 0.88, + "latex": "P _ { i }" + }, + { + "category_id": 13, + "poly": [ + 841, + 1403, + 869, + 1403, + 869, + 1434, + 841, + 1434 + ], + "score": 0.88, + "latex": "f _ { s }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1603, + 531, + 1603, + 531, + 1635, + 298, + 1635 + ], + "score": 0.88, + "latex": "v _ { [ y ] } - \\operatorname* { m a x } _ { y ^ { \\prime } \\ne y } v _ { [ y ^ { \\prime } ] }" + }, + { + "category_id": 13, + "poly": [ + 569, + 1289, + 595, + 1289, + 595, + 1318, + 569, + 1318 + ], + "score": 0.88, + "latex": "f _ { t }" + }, + { + "category_id": 13, + "poly": [ + 830, + 1982, + 852, + 1982, + 852, + 2008, + 830, + 2008 + ], + "score": 0.88, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 659, + 777, + 735, + 777, + 735, + 804, + 659, + 804 + ], + "score": 0.87, + "latex": "x \\in \\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 695, + 716, + 725, + 716, + 725, + 745, + 695, + 745 + ], + "score": 0.87, + "latex": "P _ { i }" + }, + { + "category_id": 13, + "poly": [ + 747, + 776, + 814, + 776, + 814, + 806, + 747, + 806 + ], + "score": 0.87, + "latex": "\\mathcal { N } ( x )" + }, + { + "category_id": 13, + "poly": [ + 1245, + 1147, + 1273, + 1147, + 1273, + 1177, + 1245, + 1177 + ], + "score": 0.87, + "latex": "f _ { s }" + }, + { + "category_id": 13, + "poly": [ + 1145, + 1257, + 1171, + 1257, + 1171, + 1288, + 1145, + 1288 + ], + "score": 0.87, + "latex": "f _ { t }" + }, + { + "category_id": 13, + "poly": [ + 501, + 1706, + 861, + 1706, + 861, + 1739, + 501, + 1739 + ], + "score": 0.87, + "latex": "\\tau : = 1 - 2 L _ { f } \\xi \\operatorname* { m i n } \\{ \\epsilon , q \\} > 0" + }, + { + "category_id": 13, + "poly": [ + 432, + 746, + 462, + 746, + 462, + 775, + 432, + 775 + ], + "score": 0.86, + "latex": "P _ { i }" + }, + { + "category_id": 13, + "poly": [ + 419, + 1177, + 445, + 1177, + 445, + 1209, + 419, + 1209 + ], + "score": 0.86, + "latex": "f _ { t }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1212, + 565, + 1212, + 565, + 1252, + 297, + 1252 + ], + "score": 0.86, + "latex": "\\mathcal { N } ( x ) , \\tilde { f } _ { t } ( x ) \\neq \\tilde { f } _ { t } ( x ^ { \\prime } ) \\} )" + }, + { + "category_id": 13, + "poly": [ + 973, + 1319, + 997, + 1319, + 997, + 1349, + 973, + 1349 + ], + "score": 0.85, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 494, + 1290, + 519, + 1290, + 519, + 1318, + 494, + 1318 + ], + "score": 0.85, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 450, + 986, + 511, + 986, + 511, + 1021, + 450, + 1021 + ], + "score": 0.85, + "latex": "[ q , \\epsilon )" + }, + { + "category_id": 13, + "poly": [ + 527, + 236, + 548, + 236, + 548, + 261, + 527, + 261 + ], + "score": 0.84, + "latex": "\\hat { \\alpha }" + }, + { + "category_id": 13, + "poly": [ + 1110, + 1403, + 1135, + 1403, + 1135, + 1433, + 1110, + 1433 + ], + "score": 0.84, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 1047, + 1219, + 1072, + 1219, + 1072, + 1251, + 1047, + 1251 + ], + "score": 0.83, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 975, + 1220, + 1000, + 1220, + 1000, + 1247, + 975, + 1247 + ], + "score": 0.82, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 1078, + 717, + 1104, + 717, + 1104, + 742, + 1078, + 742 + ], + "score": 0.82, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 980, + 988, + 1005, + 988, + 1005, + 1018, + 980, + 1018 + ], + "score": 0.82, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 480, + 686, + 508, + 686, + 508, + 712, + 480, + 712 + ], + "score": 0.82, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 515, + 746, + 547, + 746, + 547, + 776, + 515, + 776 + ], + "score": 0.82, + "latex": "P _ { j }" + }, + { + "category_id": 13, + "poly": [ + 298, + 236, + 318, + 236, + 318, + 261, + 298, + 261 + ], + "score": 0.81, + "latex": "\\hat { \\alpha }" + }, + { + "category_id": 13, + "poly": [ + 791, + 1365, + 817, + 1365, + 817, + 1391, + 791, + 1391 + ], + "score": 0.81, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 436, + 806, + 767, + 806, + 767, + 839, + 436, + 839 + ], + "score": 0.8, + "latex": "\\vert , \\mathcal { N } ( x ) = \\{ x ^ { \\prime } : d ( x , x ^ { \\prime } ) \\leq \\xi \\}" + }, + { + "category_id": 13, + "poly": [ + 905, + 988, + 930, + 988, + 930, + 1015, + 905, + 1015 + ], + "score": 0.79, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 869, + 1365, + 893, + 1365, + 893, + 1395, + 869, + 1395 + ], + "score": 0.78, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 1224, + 781, + 1243, + 781, + 1243, + 803, + 1224, + 803 + ], + "score": 0.75, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 297, + 1675, + 321, + 1675, + 321, + 1701, + 297, + 1701 + ], + "score": 0.67, + "latex": "v )" + }, + { + "category_id": 13, + "poly": [ + 1027, + 590, + 1048, + 590, + 1048, + 615, + 1027, + 615 + ], + "score": 0.65, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 374, + 808, + 440, + 808, + 440, + 839, + 374, + 839 + ], + "score": 0.52, + "latex": "d ( \\cdot , \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 1322, + 683, + 1400, + 683, + 1400, + 720, + 1322, + 720 + ], + "score": 0.36, + "latex": "f ( \\boldsymbol { x } ) _ { [ i ] }" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 633.0, + 1021.0, + 633.0, + 1021.0, + 680.0, + 292.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 407.0, + 644.0, + 407.0, + 644.0, + 455.0, + 292.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2060.0, + 862.0, + 2060.0, + 862.0, + 2090.0, + 840.0, + 2090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2060.0, + 862.0, + 2060.0, + 862.0, + 2090.0, + 840.0, + 2090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1533.0, + 1407.0, + 1533.0, + 1407.0, + 1575.0, + 293.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1567.0, + 788.0, + 1567.0, + 788.0, + 1606.0, + 293.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1178.0, + 1567.0, + 1269.0, + 1567.0, + 1269.0, + 1606.0, + 1178.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1599.0, + 297.0, + 1599.0, + 297.0, + 1638.0, + 291.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 1599.0, + 589.0, + 1599.0, + 589.0, + 1638.0, + 532.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 628.0, + 1599.0, + 1292.0, + 1599.0, + 1292.0, + 1638.0, + 628.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 1599.0, + 1407.0, + 1599.0, + 1407.0, + 1638.0, + 1404.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1632.0, + 296.0, + 1632.0, + 296.0, + 1670.0, + 291.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 1632.0, + 1407.0, + 1632.0, + 1407.0, + 1670.0, + 614.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1669.0, + 383.0, + 1669.0, + 383.0, + 1708.0, + 322.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 1669.0, + 1076.0, + 1669.0, + 1076.0, + 1708.0, + 875.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 1669.0, + 1143.0, + 1669.0, + 1143.0, + 1708.0, + 1115.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1180.0, + 1669.0, + 1406.0, + 1669.0, + 1406.0, + 1708.0, + 1180.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1701.0, + 378.0, + 1701.0, + 378.0, + 1740.0, + 293.0, + 1740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 1701.0, + 500.0, + 1701.0, + 500.0, + 1740.0, + 447.0, + 1740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 1701.0, + 1407.0, + 1701.0, + 1407.0, + 1740.0, + 862.0, + 1740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1726.0, + 496.0, + 1726.0, + 496.0, + 1784.0, + 289.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 637.0, + 1726.0, + 727.0, + 1726.0, + 727.0, + 1784.0, + 637.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1116.0, + 1726.0, + 1412.0, + 1726.0, + 1412.0, + 1784.0, + 1116.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 1762.0, + 578.0, + 1762.0, + 578.0, + 1823.0, + 286.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 1762.0, + 1412.0, + 1762.0, + 1412.0, + 1823.0, + 1048.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1807.0, + 503.0, + 1807.0, + 503.0, + 1846.0, + 295.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 1807.0, + 1349.0, + 1807.0, + 1349.0, + 1846.0, + 621.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 673.0, + 479.0, + 673.0, + 479.0, + 725.0, + 291.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 509.0, + 673.0, + 809.0, + 673.0, + 809.0, + 725.0, + 509.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 673.0, + 1112.0, + 673.0, + 1112.0, + 725.0, + 1060.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 673.0, + 1406.0, + 673.0, + 1406.0, + 725.0, + 1401.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 714.0, + 694.0, + 714.0, + 694.0, + 747.0, + 296.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 714.0, + 1077.0, + 714.0, + 1077.0, + 747.0, + 726.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 714.0, + 1176.0, + 714.0, + 1176.0, + 747.0, + 1105.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1248.0, + 714.0, + 1405.0, + 714.0, + 1405.0, + 747.0, + 1248.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 742.0, + 431.0, + 742.0, + 431.0, + 779.0, + 293.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 742.0, + 514.0, + 742.0, + 514.0, + 779.0, + 463.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 742.0, + 726.0, + 742.0, + 726.0, + 779.0, + 548.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 742.0, + 1127.0, + 742.0, + 1127.0, + 779.0, + 793.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1163.0, + 742.0, + 1406.0, + 742.0, + 1406.0, + 779.0, + 1163.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 772.0, + 297.0, + 772.0, + 297.0, + 813.0, + 294.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 772.0, + 658.0, + 772.0, + 658.0, + 813.0, + 550.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 736.0, + 772.0, + 746.0, + 772.0, + 746.0, + 813.0, + 736.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 815.0, + 772.0, + 1223.0, + 772.0, + 1223.0, + 813.0, + 815.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1244.0, + 772.0, + 1406.0, + 772.0, + 1406.0, + 813.0, + 1244.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 803.0, + 373.0, + 803.0, + 373.0, + 844.0, + 294.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 803.0, + 780.0, + 803.0, + 780.0, + 844.0, + 768.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1026.0, + 803.0, + 1406.0, + 803.0, + 1406.0, + 844.0, + 1026.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 836.0, + 491.0, + 836.0, + 491.0, + 881.0, + 294.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 836.0, + 885.0, + 836.0, + 885.0, + 881.0, + 872.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1112.0, + 1407.0, + 1112.0, + 1407.0, + 1150.0, + 293.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1144.0, + 1244.0, + 1144.0, + 1244.0, + 1181.0, + 294.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 1144.0, + 1404.0, + 1144.0, + 1404.0, + 1181.0, + 1274.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1171.0, + 418.0, + 1171.0, + 418.0, + 1220.0, + 290.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 446.0, + 1171.0, + 1054.0, + 1171.0, + 1054.0, + 1220.0, + 446.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1405.0, + 1171.0, + 1408.0, + 1171.0, + 1408.0, + 1220.0, + 1405.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1211.0, + 296.0, + 1211.0, + 296.0, + 1258.0, + 290.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 1211.0, + 912.0, + 1211.0, + 912.0, + 1258.0, + 566.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 1211.0, + 974.0, + 1211.0, + 974.0, + 1258.0, + 940.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1001.0, + 1211.0, + 1046.0, + 1211.0, + 1046.0, + 1258.0, + 1001.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1073.0, + 1211.0, + 1180.0, + 1211.0, + 1180.0, + 1258.0, + 1073.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1249.0, + 297.0, + 1249.0, + 297.0, + 1294.0, + 294.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 1249.0, + 474.0, + 1249.0, + 474.0, + 1294.0, + 424.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 1249.0, + 1063.0, + 1249.0, + 1063.0, + 1294.0, + 597.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1094.0, + 1249.0, + 1144.0, + 1249.0, + 1144.0, + 1294.0, + 1094.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 1249.0, + 1407.0, + 1249.0, + 1407.0, + 1294.0, + 1172.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1285.0, + 493.0, + 1285.0, + 493.0, + 1322.0, + 295.0, + 1322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 1285.0, + 568.0, + 1285.0, + 568.0, + 1322.0, + 520.0, + 1322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 596.0, + 1285.0, + 1406.0, + 1285.0, + 1406.0, + 1322.0, + 596.0, + 1322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 1314.0, + 705.0, + 1314.0, + 705.0, + 1353.0, + 400.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 735.0, + 1314.0, + 972.0, + 1314.0, + 972.0, + 1353.0, + 735.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 1314.0, + 1008.0, + 1314.0, + 1008.0, + 1353.0, + 998.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 466.0, + 1405.0, + 466.0, + 1405.0, + 500.0, + 296.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 439.0, + 496.0, + 750.0, + 496.0, + 750.0, + 533.0, + 439.0, + 533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 496.0, + 1407.0, + 496.0, + 1407.0, + 533.0, + 855.0, + 533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 524.0, + 1405.0, + 524.0, + 1405.0, + 564.0, + 293.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 553.0, + 1407.0, + 553.0, + 1407.0, + 596.0, + 293.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 588.0, + 1026.0, + 588.0, + 1026.0, + 621.0, + 294.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 588.0, + 1057.0, + 588.0, + 1057.0, + 621.0, + 1049.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 983.0, + 449.0, + 983.0, + 449.0, + 1022.0, + 294.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 512.0, + 983.0, + 904.0, + 983.0, + 904.0, + 1022.0, + 512.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 983.0, + 979.0, + 983.0, + 979.0, + 1022.0, + 931.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 983.0, + 1084.0, + 983.0, + 1084.0, + 1022.0, + 1006.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 983.0, + 1405.0, + 983.0, + 1405.0, + 1022.0, + 1146.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1004.0, + 464.0, + 1004.0, + 464.0, + 1065.0, + 289.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 1004.0, + 758.0, + 1004.0, + 758.0, + 1065.0, + 599.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 1004.0, + 939.0, + 1004.0, + 939.0, + 1065.0, + 841.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 1004.0, + 1088.0, + 1004.0, + 1088.0, + 1065.0, + 1027.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1355.0, + 1004.0, + 1410.0, + 1004.0, + 1410.0, + 1065.0, + 1355.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1051.0, + 356.0, + 1051.0, + 356.0, + 1097.0, + 294.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 1051.0, + 910.0, + 1051.0, + 910.0, + 1097.0, + 901.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 884.0, + 1406.0, + 884.0, + 1406.0, + 922.0, + 294.0, + 922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 918.0, + 1072.0, + 918.0, + 1072.0, + 949.0, + 297.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1104.0, + 918.0, + 1153.0, + 918.0, + 1153.0, + 949.0, + 1104.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 918.0, + 1403.0, + 918.0, + 1403.0, + 949.0, + 1188.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 949.0, + 1367.0, + 949.0, + 1367.0, + 983.0, + 295.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 201.0, + 1404.0, + 201.0, + 1404.0, + 239.0, + 295.0, + 239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 227.0, + 297.0, + 227.0, + 297.0, + 281.0, + 290.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 227.0, + 526.0, + 227.0, + 526.0, + 281.0, + 319.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 549.0, + 227.0, + 938.0, + 227.0, + 938.0, + 281.0, + 549.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 227.0, + 1335.0, + 227.0, + 1335.0, + 281.0, + 1060.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1939.0, + 1131.0, + 1939.0, + 1131.0, + 1983.0, + 292.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1273.0, + 1939.0, + 1405.0, + 1939.0, + 1405.0, + 1983.0, + 1273.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1974.0, + 561.0, + 1974.0, + 561.0, + 2010.0, + 296.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 590.0, + 1974.0, + 829.0, + 1974.0, + 829.0, + 2010.0, + 590.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 853.0, + 1974.0, + 862.0, + 1974.0, + 862.0, + 2010.0, + 853.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1357.0, + 790.0, + 1357.0, + 790.0, + 1403.0, + 293.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 1357.0, + 868.0, + 1357.0, + 868.0, + 1403.0, + 818.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 1357.0, + 998.0, + 1357.0, + 998.0, + 1403.0, + 894.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 1357.0, + 1180.0, + 1357.0, + 1180.0, + 1403.0, + 1064.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 422.0, + 1397.0, + 473.0, + 1397.0, + 473.0, + 1439.0, + 422.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 1397.0, + 840.0, + 1397.0, + 840.0, + 1439.0, + 595.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 1397.0, + 1109.0, + 1397.0, + 1109.0, + 1439.0, + 870.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1136.0, + 1397.0, + 1272.0, + 1397.0, + 1272.0, + 1439.0, + 1136.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 346.0, + 1369.0, + 346.0, + 1369.0, + 390.0, + 293.0, + 390.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 295, + 1431, + 1407, + 1431, + 1407, + 1690, + 295, + 1690 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 296, + 468, + 1406, + 468, + 1406, + 624, + 296, + 624 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 296, + 835, + 1056, + 835, + 1056, + 1007, + 296, + 1007 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 294, + 695, + 1400, + 695, + 1400, + 821, + 294, + 821 + ], + "score": 0.969 + }, + { + "category_id": 5, + "poly": [ + 1073, + 869, + 1402, + 869, + 1402, + 982, + 1073, + 982 + ], + "score": 0.966, + "html": "
Distribution-1+10
Source p[0.050.050.90
Target q0.250.250.50
" + }, + { + "category_id": 3, + "poly": [ + 334, + 1037, + 1343, + 1037, + 1343, + 1231, + 334, + 1231 + ], + "score": 0.961 + }, + { + "category_id": 4, + "poly": [ + 295, + 1247, + 1409, + 1247, + 1409, + 1414, + 295, + 1414 + ], + "score": 0.961 + }, + { + "category_id": 8, + "poly": [ + 748, + 1969, + 975, + 1969, + 975, + 2013, + 748, + 2013 + ], + "score": 0.935 + }, + { + "category_id": 0, + "poly": [ + 297, + 648, + 1106, + 648, + 1106, + 682, + 297, + 682 + ], + "score": 0.935 + }, + { + "category_id": 1, + "poly": [ + 293, + 1905, + 1335, + 1905, + 1335, + 1948, + 293, + 1948 + ], + "score": 0.93 + }, + { + "category_id": 8, + "poly": [ + 748, + 1842, + 975, + 1842, + 975, + 1886, + 748, + 1886 + ], + "score": 0.926 + }, + { + "category_id": 1, + "poly": [ + 301, + 1739, + 1403, + 1739, + 1403, + 1819, + 301, + 1819 + ], + "score": 0.915 + }, + { + "category_id": 1, + "poly": [ + 298, + 281, + 1403, + 281, + 1403, + 453, + 298, + 453 + ], + "score": 0.9 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1976, + 1401, + 1976, + 1401, + 2007, + 1351, + 2007 + ], + "score": 0.894 + }, + { + "category_id": 6, + "poly": [ + 1077, + 837, + 1401, + 837, + 1401, + 865, + 1077, + 865 + ], + "score": 0.888 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1849, + 1400, + 1849, + 1400, + 1879, + 1352, + 1879 + ], + "score": 0.886 + }, + { + "category_id": 1, + "poly": [ + 297, + 1695, + 1403, + 1695, + 1403, + 1730, + 297, + 1730 + ], + "score": 0.87 + }, + { + "category_id": 1, + "poly": [ + 295, + 197, + 1401, + 197, + 1401, + 276, + 295, + 276 + ], + "score": 0.847 + }, + { + "category_id": 2, + "poly": [ + 841, + 2060, + 859, + 2060, + 859, + 2085, + 841, + 2085 + ], + "score": 0.696 + }, + { + "category_id": 2, + "poly": [ + 841, + 2060, + 859, + 2060, + 859, + 2084, + 841, + 2084 + ], + "score": 0.352 + }, + { + "category_id": 13, + "poly": [ + 1067, + 1529, + 1232, + 1529, + 1232, + 1573, + 1067, + 1573 + ], + "score": 0.94, + "latex": "y = x _ { [ 1 ] } ^ { 2 } - x _ { [ i ] } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1153, + 1274, + 1263, + 1274, + 1263, + 1310, + 1153, + 1310 + ], + "score": 0.94, + "latex": "x _ { [ 1 ] } ^ { 2 } - x _ { [ 2 ] } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1235, + 1492, + 1400, + 1492, + 1400, + 1534, + 1235, + 1534 + ], + "score": 0.94, + "latex": "y = x _ { [ 1 ] } ^ { 2 } - x _ { [ 2 ] } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 955, + 1306, + 1065, + 1306, + 1065, + 1345, + 955, + 1345 + ], + "score": 0.94, + "latex": "x _ { [ 1 ] } ^ { 2 } - x _ { [ 3 ] } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 833, + 1739, + 998, + 1739, + 998, + 1783, + 833, + 1783 + ], + "score": 0.94, + "latex": "n _ { t } > \\Theta ( \\log { \\frac { 1 } { \\xi } } )" + }, + { + "category_id": 14, + "poly": [ + 748, + 1840, + 977, + 1840, + 977, + 1884, + 748, + 1884 + ], + "score": 0.93, + "latex": "\\mathrm { E r r } _ { Q } ( \\hat { \\theta } _ { \\mathrm { F A } } , \\hat { \\phi } _ { \\mathrm { F A } } ) \\geq \\epsilon ." + }, + { + "category_id": 13, + "poly": [ + 476, + 1375, + 585, + 1375, + 585, + 1413, + 476, + 1413 + ], + "score": 0.93, + "latex": "x _ { [ 1 ] } ^ { 2 } - x _ { [ 2 ] } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 773, + 936, + 943, + 936, + 943, + 979, + 773, + 979 + ], + "score": 0.93, + "latex": "y = x _ { [ 1 ] } ^ { 2 } - x _ { [ 2 ] } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 420, + 560, + 559, + 560, + 559, + 594, + 420, + 594 + ], + "score": 0.93, + "latex": "\\bar { L _ { \\mathrm { C S T } } } ( f _ { s } , f _ { t } )" + }, + { + "category_id": 13, + "poly": [ + 1292, + 1340, + 1397, + 1340, + 1397, + 1379, + 1292, + 1379 + ], + "score": 0.93, + "latex": "x _ { [ 1 ] } ^ { 2 } - x _ { [ 3 ] } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1035, + 693, + 1291, + 693, + 1291, + 730, + 1035, + 730 + ], + "score": 0.93, + "latex": "f _ { \\theta , \\phi } ( x ) = \\theta ^ { \\top } ( \\phi ^ { \\top } x ) ^ { \\odot 2 }" + }, + { + "category_id": 13, + "poly": [ + 1210, + 500, + 1350, + 500, + 1350, + 534, + 1210, + 534 + ], + "score": 0.93, + "latex": "L _ { \\mathrm { C S T } } ( f _ { s } , f _ { t } )" + }, + { + "category_id": 14, + "poly": [ + 750, + 1968, + 977, + 1968, + 977, + 2010, + 750, + 2010 + ], + "score": 0.93, + "latex": "\\mathrm { E r r } _ { Q } ( \\hat { \\theta } _ { \\mathrm { S T } } , \\hat { \\phi } _ { \\mathrm { S T } } ) \\geq \\epsilon ." + }, + { + "category_id": 13, + "poly": [ + 600, + 1909, + 695, + 1909, + 695, + 1950, + 600, + 1950 + ], + "score": 0.93, + "latex": "1 - { \\frac { 1 } { d - 1 } }" + }, + { + "category_id": 13, + "poly": [ + 444, + 197, + 541, + 197, + 541, + 239, + 444, + 239 + ], + "score": 0.92, + "latex": " { \\widehat { \\mathcal { R } } } ( \\mathcal { F } | _ { { \\widehat { P } } } )" + }, + { + "category_id": 13, + "poly": [ + 884, + 897, + 1050, + 897, + 1050, + 939, + 884, + 939 + ], + "score": 0.92, + "latex": "y = x _ { [ 1 ] } ^ { 2 } - x _ { [ i ] } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 846, + 1906, + 957, + 1906, + 957, + 1945, + 846, + 1945 + ], + "score": 0.92, + "latex": "( \\hat { \\theta } _ { \\mathrm { S T } } , \\hat { \\phi } _ { \\mathrm { S T } } )" + }, + { + "category_id": 13, + "poly": [ + 370, + 940, + 472, + 940, + 472, + 972, + 370, + 972 + ], + "score": 0.91, + "latex": "i \\in [ 2 , d ]" + }, + { + "category_id": 13, + "poly": [ + 491, + 1696, + 620, + 1696, + 620, + 1730, + 491, + 1730 + ], + "score": 0.91, + "latex": "\\epsilon \\in ( 0 , 0 . 5 )" + }, + { + "category_id": 13, + "poly": [ + 1083, + 365, + 1166, + 365, + 1166, + 400, + 1083, + 400 + ], + "score": 0.91, + "latex": "\\tilde { \\mathcal { F } } \\times \\mathcal { F }" + }, + { + "category_id": 13, + "poly": [ + 1315, + 1250, + 1398, + 1250, + 1398, + 1277, + 1315, + 1277 + ], + "score": 0.91, + "latex": "y = - 1" + }, + { + "category_id": 13, + "poly": [ + 865, + 1250, + 928, + 1250, + 928, + 1277, + 865, + 1277 + ], + "score": 0.91, + "latex": "y = 1" + }, + { + "category_id": 13, + "poly": [ + 298, + 899, + 467, + 899, + 467, + 939, + 298, + 939 + ], + "score": 0.91, + "latex": "y = x _ { [ 1 ] } ^ { 2 } - x _ { [ 2 ] } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1063, + 1250, + 1127, + 1250, + 1127, + 1277, + 1063, + 1277 + ], + "score": 0.9, + "latex": "y = 0" + }, + { + "category_id": 13, + "poly": [ + 501, + 1742, + 568, + 1742, + 568, + 1774, + 501, + 1774 + ], + "score": 0.9, + "latex": "\\xi > 0" + }, + { + "category_id": 13, + "poly": [ + 372, + 359, + 850, + 359, + 850, + 412, + 372, + 412 + ], + "score": 0.9, + "latex": "\\zeta = O \\left( \\sqrt { \\log ( 1 / \\delta ) / n _ { s } } + \\sqrt { \\log ( 1 / \\delta ) / n _ { t } } \\right)" + }, + { + "category_id": 13, + "poly": [ + 776, + 1779, + 889, + 1779, + 889, + 1818, + 776, + 1818 + ], + "score": 0.9, + "latex": "( \\hat { \\theta } _ { \\mathrm { F A } } , \\hat { \\phi } _ { \\mathrm { F A } } )" + }, + { + "category_id": 13, + "poly": [ + 833, + 842, + 981, + 842, + 981, + 873, + 833, + 873 + ], + "score": 0.9, + "latex": "x _ { [ i ] } = \\sigma _ { i } x _ { [ 1 ] }" + }, + { + "category_id": 13, + "poly": [ + 738, + 243, + 807, + 243, + 807, + 275, + 738, + 275 + ], + "score": 0.89, + "latex": "\\gamma > 0" + }, + { + "category_id": 13, + "poly": [ + 480, + 501, + 508, + 501, + 508, + 533, + 480, + 533 + ], + "score": 0.89, + "latex": "f _ { s }" + }, + { + "category_id": 13, + "poly": [ + 636, + 1249, + 700, + 1249, + 700, + 1275, + 636, + 1275 + ], + "score": 0.89, + "latex": "d = 3" + }, + { + "category_id": 14, + "poly": [ + 310, + 280, + 1397, + 280, + 1397, + 351, + 310, + 351 + ], + "score": 0.88, + "latex": "\\mathrm { E r r } _ { Q } ( f _ { s } ) \\leq L _ { \\mathrm { C S T } } ( f _ { s } , f _ { t } ) + 2 q + \\frac { 4 K } { \\gamma } \\left[ \\widehat { R } ( \\mathcal { F } | _ { \\widehat { P } } ) + \\widehat { \\mathcal { R } } ( \\tilde { \\mathcal { F } } \\times \\mathcal { F } | _ { \\widehat { Q } } ) \\right] + \\frac { 2 } { \\tau } \\left[ \\widehat { R } ( \\mathcal { F } | _ { \\widehat { P } } ) + \\widehat { \\mathcal { R } } ( \\mathcal { F } | _ { \\widehat { Q } } ) \\right] + \\zeta ," + }, + { + "category_id": 13, + "poly": [ + 765, + 792, + 809, + 792, + 809, + 824, + 765, + 824 + ], + "score": 0.88, + "latex": "x _ { [ 2 ] }" + }, + { + "category_id": 13, + "poly": [ + 1282, + 1742, + 1346, + 1742, + 1346, + 1774, + 1282, + 1774 + ], + "score": 0.88, + "latex": "1 - \\xi" + }, + { + "category_id": 13, + "poly": [ + 298, + 870, + 431, + 870, + 431, + 901, + 298, + 901 + ], + "score": 0.87, + "latex": "\\sigma _ { i } \\in \\{ \\pm 1 \\}" + }, + { + "category_id": 13, + "poly": [ + 360, + 411, + 699, + 411, + 699, + 452, + 360, + 452 + ], + "score": 0.86, + "latex": "\\{ x f ( \\overleftarrow { x } ) _ { [ \\tilde { f } ^ { \\prime } ( x ) ] } : f , f ^ { \\prime } \\in \\mathcal { F } \\} _ { }" + }, + { + "category_id": 13, + "poly": [ + 444, + 836, + 551, + 836, + 551, + 869, + 444, + 869 + ], + "score": 0.86, + "latex": "i \\in [ 3 , d ]" + }, + { + "category_id": 13, + "poly": [ + 563, + 839, + 712, + 839, + 712, + 873, + 563, + 873 + ], + "score": 0.84, + "latex": "x _ { [ i ] } = \\sigma _ { i } x _ { [ 2 ] }" + }, + { + "category_id": 13, + "poly": [ + 1133, + 243, + 1196, + 243, + 1196, + 272, + 1133, + 272 + ], + "score": 0.83, + "latex": "1 - \\delta" + }, + { + "category_id": 13, + "poly": [ + 559, + 789, + 584, + 789, + 584, + 815, + 559, + 815 + ], + "score": 0.82, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 1262, + 789, + 1286, + 789, + 1286, + 815, + 1262, + 815 + ], + "score": 0.82, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 754, + 838, + 779, + 838, + 779, + 865, + 754, + 865 + ], + "score": 0.81, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 649, + 940, + 675, + 940, + 675, + 966, + 649, + 966 + ], + "score": 0.81, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 1253, + 205, + 1280, + 205, + 1280, + 231, + 1253, + 231 + ], + "score": 0.81, + "latex": "\\mathcal { F }" + }, + { + "category_id": 13, + "poly": [ + 1111, + 762, + 1129, + 762, + 1129, + 789, + 1111, + 789 + ], + "score": 0.81, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 1023, + 838, + 1048, + 838, + 1048, + 868, + 1023, + 868 + ], + "score": 0.81, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 356, + 837, + 380, + 837, + 380, + 868, + 356, + 868 + ], + "score": 0.8, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 1205, + 793, + 1224, + 793, + 1224, + 819, + 1205, + 819 + ], + "score": 0.8, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 1021, + 566, + 1038, + 566, + 1038, + 592, + 1021, + 592 + ], + "score": 0.8, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 1376, + 699, + 1402, + 699, + 1402, + 726, + 1376, + 726 + ], + "score": 0.8, + "latex": "\\odot" + }, + { + "category_id": 13, + "poly": [ + 1043, + 763, + 1061, + 763, + 1061, + 789, + 1043, + 789 + ], + "score": 0.8, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 298, + 236, + 322, + 236, + 322, + 270, + 298, + 270 + ], + "score": 0.8, + "latex": "\\widehat { P }" + }, + { + "category_id": 13, + "poly": [ + 298, + 975, + 322, + 975, + 322, + 1007, + 298, + 1007 + ], + "score": 0.79, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 1316, + 842, + 1333, + 842, + 1333, + 865, + 1316, + 865 + ], + "score": 0.76, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 779, + 537, + 796, + 537, + 796, + 563, + 779, + 563 + ], + "score": 0.73, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 298, + 842, + 315, + 842, + 315, + 869, + 298, + 869 + ], + "score": 0.72, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 1378, + 842, + 1393, + 842, + 1393, + 866, + 1378, + 866 + ], + "score": 0.67, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 634, + 789, + 659, + 789, + 659, + 821, + 634, + 821 + ], + "score": 0.6, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 670, + 791, + 715, + 791, + 715, + 824, + 670, + 824 + ], + "score": 0.49, + "latex": "x _ { [ 1 ] }" + }, + { + "category_id": 13, + "poly": [ + 1151, + 949, + 1168, + 949, + 1168, + 974, + 1151, + 974 + ], + "score": 0.29, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 656, + 243, + 687, + 243, + 687, + 271, + 656, + 271 + ], + "score": 0.29, + "latex": "^ { 1 3 }" + }, + { + "category_id": 15, + "poly": [ + 427.0, + 1039.0, + 486.0, + 1039.0, + 486.0, + 1062.0, + 427.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 1039.0, + 754.0, + 1039.0, + 754.0, + 1062.0, + 695.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 1036.0, + 1005.0, + 1036.0, + 1005.0, + 1063.0, + 947.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.0, + 1035.0, + 1273.0, + 1035.0, + 1273.0, + 1066.0, + 1214.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 1090.0, + 467.0, + 1090.0, + 467.0, + 1100.0, + 456.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 500.0, + 1080.0, + 517.0, + 1080.0, + 517.0, + 1109.0, + 500.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 1087.0, + 689.0, + 1087.0, + 689.0, + 1104.0, + 676.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 1089.0, + 733.0, + 1089.0, + 733.0, + 1101.0, + 724.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 1088.0, + 782.0, + 1088.0, + 782.0, + 1104.0, + 768.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 1082.0, + 944.0, + 1082.0, + 944.0, + 1106.0, + 926.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 1087.0, + 984.0, + 1087.0, + 984.0, + 1095.0, + 975.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 1080.0, + 1035.0, + 1080.0, + 1035.0, + 1107.0, + 1018.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 1083.0, + 1210.0, + 1083.0, + 1210.0, + 1104.0, + 1192.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1284.0, + 1085.0, + 1302.0, + 1085.0, + 1302.0, + 1104.0, + 1284.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 1113.0, + 425.0, + 1113.0, + 425.0, + 1134.0, + 408.0, + 1134.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 1117.0, + 468.0, + 1117.0, + 468.0, + 1132.0, + 454.0, + 1132.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 1113.0, + 515.0, + 1113.0, + 515.0, + 1134.0, + 498.0, + 1134.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 1114.0, + 572.0, + 1114.0, + 572.0, + 1147.0, + 550.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.0, + 1101.0, + 638.0, + 1101.0, + 638.0, + 1136.0, + 616.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 679.0, + 1119.0, + 689.0, + 1119.0, + 689.0, + 1131.0, + 679.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 1118.0, + 736.0, + 1118.0, + 736.0, + 1133.0, + 722.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 1117.0, + 780.0, + 1117.0, + 780.0, + 1133.0, + 767.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 1116.0, + 942.0, + 1116.0, + 942.0, + 1131.0, + 927.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 1117.0, + 986.0, + 1117.0, + 986.0, + 1132.0, + 973.0, + 1132.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 1116.0, + 1031.0, + 1116.0, + 1031.0, + 1131.0, + 1018.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 1113.0, + 1091.0, + 1113.0, + 1091.0, + 1147.0, + 1070.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 1102.0, + 1156.0, + 1102.0, + 1156.0, + 1134.0, + 1134.0, + 1134.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.0, + 1116.0, + 1254.0, + 1116.0, + 1254.0, + 1134.0, + 1241.0, + 1134.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 1143.0, + 424.0, + 1143.0, + 424.0, + 1163.0, + 406.0, + 1163.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 1147.0, + 468.0, + 1147.0, + 468.0, + 1160.0, + 454.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 500.0, + 1145.0, + 514.0, + 1145.0, + 514.0, + 1163.0, + 500.0, + 1163.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 1141.0, + 693.0, + 1141.0, + 693.0, + 1168.0, + 675.0, + 1168.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.0, + 1144.0, + 736.0, + 1144.0, + 736.0, + 1164.0, + 723.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 1147.0, + 985.0, + 1147.0, + 985.0, + 1158.0, + 975.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 1145.0, + 1034.0, + 1145.0, + 1034.0, + 1160.0, + 1019.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 1140.0, + 1213.0, + 1140.0, + 1213.0, + 1167.0, + 1192.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 1141.0, + 1304.0, + 1141.0, + 1304.0, + 1166.0, + 1282.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 637.0, + 1178.0, + 647.0, + 1178.0, + 647.0, + 1189.0, + 637.0, + 1189.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1155.0, + 1178.0, + 1164.0, + 1178.0, + 1164.0, + 1188.0, + 1155.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 1201.0, + 419.0, + 1201.0, + 419.0, + 1234.0, + 382.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 1187.0, + 478.0, + 1187.0, + 478.0, + 1212.0, + 443.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 1202.0, + 685.0, + 1202.0, + 685.0, + 1234.0, + 647.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 710.0, + 1196.0, + 746.0, + 1196.0, + 746.0, + 1221.0, + 710.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 1201.0, + 938.0, + 1201.0, + 938.0, + 1234.0, + 902.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 1201.0, + 1210.0, + 1201.0, + 1210.0, + 1233.0, + 1172.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1229.0, + 1196.0, + 1265.0, + 1196.0, + 1265.0, + 1221.0, + 1229.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.75, + 1081.5, + 425.75, + 1081.5, + 425.75, + 1104.5, + 403.75, + 1104.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 1142.0, + 787.0, + 1142.0, + 787.0, + 1166.0, + 762.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.75, + 1147.5, + 935.75, + 1147.5, + 935.75, + 1157.5, + 931.75, + 1157.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 1187.5, + 360.0, + 1187.5, + 360.0, + 1207.0, + 343.0, + 1207.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 1186.0, + 879.0, + 1186.0, + 879.0, + 1207.0, + 861.0, + 1207.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.75, + 1185.5, + 993.75, + 1185.5, + 993.75, + 1211.5, + 964.75, + 1211.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.75, + 1186.0, + 645.75, + 1186.0, + 645.75, + 1202.5, + 601.75, + 1202.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.25, + 1185.5, + 1164.25, + 1185.5, + 1164.25, + 1202.0, + 1120.25, + 1202.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1247.0, + 635.0, + 1247.0, + 635.0, + 1280.0, + 296.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 701.0, + 1247.0, + 864.0, + 1247.0, + 864.0, + 1280.0, + 701.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 1247.0, + 1062.0, + 1247.0, + 1062.0, + 1280.0, + 929.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 1247.0, + 1314.0, + 1247.0, + 1314.0, + 1280.0, + 1128.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 1247.0, + 1407.0, + 1247.0, + 1407.0, + 1280.0, + 1399.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1271.0, + 1152.0, + 1271.0, + 1152.0, + 1314.0, + 292.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1264.0, + 1271.0, + 1408.0, + 1271.0, + 1408.0, + 1314.0, + 1264.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1307.0, + 954.0, + 1307.0, + 954.0, + 1347.0, + 292.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 1307.0, + 1408.0, + 1307.0, + 1408.0, + 1347.0, + 1066.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1333.0, + 475.0, + 1333.0, + 475.0, + 1418.0, + 290.0, + 1418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 1333.0, + 1291.0, + 1333.0, + 1291.0, + 1418.0, + 586.0, + 1418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 1333.0, + 1411.0, + 1333.0, + 1411.0, + 1418.0, + 1398.0, + 1418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.75, + 1375.0, + 524.75, + 1375.0, + 524.75, + 1413.0, + 292.75, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 643.0, + 1107.0, + 643.0, + 1107.0, + 689.0, + 293.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1073.0, + 831.0, + 1315.0, + 831.0, + 1315.0, + 871.0, + 1073.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1334.0, + 831.0, + 1377.0, + 831.0, + 1377.0, + 871.0, + 1334.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 831.0, + 1403.0, + 831.0, + 1403.0, + 871.0, + 1394.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2059.0, + 860.0, + 2059.0, + 860.0, + 2091.0, + 840.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2059.0, + 860.0, + 2059.0, + 860.0, + 2091.0, + 839.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1433.0, + 1404.0, + 1433.0, + 1404.0, + 1465.0, + 297.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1463.0, + 1409.0, + 1463.0, + 1409.0, + 1498.0, + 294.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1481.0, + 1234.0, + 1481.0, + 1234.0, + 1542.0, + 288.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1481.0, + 1406.0, + 1481.0, + 1406.0, + 1542.0, + 1401.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1568.0, + 1405.0, + 1568.0, + 1405.0, + 1602.0, + 294.0, + 1602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1600.0, + 1405.0, + 1600.0, + 1405.0, + 1632.0, + 297.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1627.0, + 1407.0, + 1627.0, + 1407.0, + 1663.0, + 293.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1659.0, + 860.0, + 1659.0, + 860.0, + 1694.0, + 296.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1525.0, + 1172.0, + 1525.0, + 1172.0, + 1576.0, + 290.0, + 1576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 1519.0, + 1418.0, + 1519.0, + 1418.0, + 1578.5, + 1173.0, + 1578.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1203.25, + 1535.5, + 1227.25, + 1535.5, + 1227.25, + 1547.0, + 1203.25, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 466.0, + 1407.0, + 466.0, + 1407.0, + 505.0, + 293.0, + 505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 498.0, + 479.0, + 498.0, + 479.0, + 539.0, + 293.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 509.0, + 498.0, + 1209.0, + 498.0, + 1209.0, + 539.0, + 509.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1351.0, + 498.0, + 1407.0, + 498.0, + 1407.0, + 539.0, + 1351.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 531.0, + 778.0, + 531.0, + 778.0, + 565.0, + 295.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 531.0, + 1406.0, + 531.0, + 1406.0, + 565.0, + 797.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 558.0, + 419.0, + 558.0, + 419.0, + 599.0, + 293.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 558.0, + 1020.0, + 558.0, + 1020.0, + 599.0, + 560.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 558.0, + 1408.0, + 558.0, + 1408.0, + 599.0, + 1039.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 589.0, + 996.0, + 589.0, + 996.0, + 629.0, + 294.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 834.0, + 297.0, + 834.0, + 297.0, + 874.0, + 294.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 834.0, + 355.0, + 834.0, + 355.0, + 874.0, + 316.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 834.0, + 443.0, + 834.0, + 443.0, + 874.0, + 381.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 834.0, + 562.0, + 834.0, + 562.0, + 874.0, + 552.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 834.0, + 753.0, + 834.0, + 753.0, + 874.0, + 713.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 834.0, + 832.0, + 834.0, + 832.0, + 874.0, + 780.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 982.0, + 834.0, + 1022.0, + 834.0, + 1022.0, + 874.0, + 982.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 834.0, + 1057.0, + 834.0, + 1057.0, + 874.0, + 1049.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 867.0, + 297.0, + 867.0, + 297.0, + 904.0, + 293.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 867.0, + 1059.0, + 867.0, + 1059.0, + 904.0, + 432.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 895.0, + 297.0, + 895.0, + 297.0, + 942.0, + 289.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 468.0, + 895.0, + 883.0, + 895.0, + 883.0, + 942.0, + 468.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 284.0, + 911.0, + 369.0, + 911.0, + 369.0, + 991.0, + 284.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 911.0, + 648.0, + 911.0, + 648.0, + 991.0, + 473.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 911.0, + 772.0, + 911.0, + 772.0, + 991.0, + 676.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 944.0, + 911.0, + 1054.0, + 911.0, + 1054.0, + 991.0, + 944.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 973.0, + 875.0, + 973.0, + 875.0, + 1010.0, + 323.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 976.0, + 899.0, + 1053.0, + 899.0, + 1053.0, + 942.0, + 976.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 693.0, + 1034.0, + 693.0, + 1034.0, + 732.0, + 292.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 693.0, + 1375.0, + 693.0, + 1375.0, + 732.0, + 1292.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 693.0, + 1406.0, + 693.0, + 1406.0, + 732.0, + 1403.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 727.0, + 1405.0, + 727.0, + 1405.0, + 760.0, + 294.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 757.0, + 1042.0, + 757.0, + 1042.0, + 793.0, + 294.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 757.0, + 1110.0, + 757.0, + 1110.0, + 793.0, + 1062.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 757.0, + 1405.0, + 757.0, + 1405.0, + 793.0, + 1130.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 787.0, + 558.0, + 787.0, + 558.0, + 824.0, + 294.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 585.0, + 787.0, + 633.0, + 787.0, + 633.0, + 824.0, + 585.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 787.0, + 669.0, + 787.0, + 669.0, + 824.0, + 660.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 787.0, + 764.0, + 787.0, + 764.0, + 824.0, + 716.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 810.0, + 787.0, + 1204.0, + 787.0, + 1204.0, + 824.0, + 810.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 787.0, + 1261.0, + 787.0, + 1261.0, + 824.0, + 1225.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1287.0, + 787.0, + 1405.0, + 787.0, + 1405.0, + 824.0, + 1287.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 1897.0, + 599.0, + 1897.0, + 599.0, + 1961.0, + 286.0, + 1961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 1897.0, + 845.0, + 1897.0, + 845.0, + 1961.0, + 696.0, + 1961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 1897.0, + 1341.0, + 1897.0, + 1341.0, + 1961.0, + 958.0, + 1961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1737.0, + 500.0, + 1737.0, + 500.0, + 1779.0, + 295.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 569.0, + 1737.0, + 832.0, + 1737.0, + 832.0, + 1779.0, + 569.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 1737.0, + 1281.0, + 1737.0, + 1281.0, + 1779.0, + 999.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1347.0, + 1737.0, + 1405.0, + 1737.0, + 1405.0, + 1779.0, + 1347.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1780.0, + 775.0, + 1780.0, + 775.0, + 1820.0, + 322.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 1780.0, + 1300.0, + 1780.0, + 1300.0, + 1820.0, + 890.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 289.0, + 309.0, + 289.0, + 309.0, + 339.0, + 297.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 277.0, + 1403.0, + 277.0, + 1403.0, + 349.0, + 1398.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 357.0, + 371.0, + 357.0, + 371.0, + 413.0, + 292.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 357.0, + 1082.0, + 357.0, + 1082.0, + 413.0, + 851.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1167.0, + 357.0, + 1408.0, + 357.0, + 1408.0, + 413.0, + 1167.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 403.0, + 359.0, + 403.0, + 359.0, + 457.0, + 293.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 403.0, + 713.0, + 403.0, + 713.0, + 457.0, + 700.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 281.0, + 722.0, + 281.0, + 722.0, + 316.0, + 678.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1690.0, + 490.0, + 1690.0, + 490.0, + 1736.0, + 294.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 1690.0, + 1409.0, + 1690.0, + 1409.0, + 1736.0, + 621.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 197.0, + 443.0, + 197.0, + 443.0, + 241.0, + 295.0, + 241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 197.0, + 1252.0, + 197.0, + 1252.0, + 241.0, + 542.0, + 241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1281.0, + 197.0, + 1406.0, + 197.0, + 1406.0, + 241.0, + 1281.0, + 241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 235.0, + 655.0, + 235.0, + 655.0, + 281.0, + 323.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 235.0, + 737.0, + 235.0, + 737.0, + 281.0, + 688.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 808.0, + 235.0, + 1132.0, + 235.0, + 1132.0, + 281.0, + 808.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1197.0, + 235.0, + 1209.0, + 235.0, + 1209.0, + 281.0, + 1197.0, + 281.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 797, + 1406, + 797, + 1406, + 1203, + 297, + 1203 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 1484, + 1404, + 1484, + 1404, + 1671, + 297, + 1671 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 601, + 1405, + 601, + 1405, + 784, + 298, + 784 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 300, + 1884, + 1403, + 1884, + 1403, + 2007, + 300, + 2007 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 303, + 1274, + 1398, + 1274, + 1398, + 1367, + 303, + 1367 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 300, + 446, + 1404, + 446, + 1404, + 538, + 300, + 538 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 297, + 1758, + 1402, + 1758, + 1402, + 1822, + 297, + 1822 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 296, + 1682, + 1401, + 1682, + 1401, + 1746, + 296, + 1746 + ], + "score": 0.941 + }, + { + "category_id": 1, + "poly": [ + 294, + 200, + 1403, + 200, + 1403, + 280, + 294, + 280 + ], + "score": 0.939 + }, + { + "category_id": 1, + "poly": [ + 297, + 1378, + 1406, + 1378, + 1406, + 1473, + 297, + 1473 + ], + "score": 0.93 + }, + { + "category_id": 0, + "poly": [ + 298, + 391, + 533, + 391, + 533, + 429, + 298, + 429 + ], + "score": 0.92 + }, + { + "category_id": 8, + "poly": [ + 746, + 329, + 1000, + 329, + 1000, + 370, + 746, + 370 + ], + "score": 0.919 + }, + { + "category_id": 0, + "poly": [ + 298, + 1224, + 474, + 1224, + 474, + 1255, + 298, + 1255 + ], + "score": 0.903 + }, + { + "category_id": 0, + "poly": [ + 297, + 1842, + 451, + 1842, + 451, + 1873, + 297, + 1873 + ], + "score": 0.9 + }, + { + "category_id": 9, + "poly": [ + 1352, + 335, + 1400, + 335, + 1400, + 365, + 1352, + 365 + ], + "score": 0.892 + }, + { + "category_id": 0, + "poly": [ + 298, + 559, + 433, + 559, + 433, + 591, + 298, + 591 + ], + "score": 0.892 + }, + { + "category_id": 2, + "poly": [ + 840, + 2062, + 858, + 2062, + 858, + 2085, + 840, + 2085 + ], + "score": 0.801 + }, + { + "category_id": 14, + "poly": [ + 744, + 325, + 1002, + 325, + 1002, + 370, + 744, + 370 + ], + "score": 0.93, + "latex": "\\mathrm { E r r } _ { Q } ( \\hat { \\theta } _ { \\mathrm { C S T } } , \\hat { \\phi } _ { \\mathrm { C S T } } ) = 0 ." + }, + { + "category_id": 13, + "poly": [ + 955, + 201, + 1120, + 201, + 1120, + 243, + 955, + 243 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { n _ { t } > \\Theta ( \\log { \\frac { 1 } { \\xi } } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 754, + 991, + 897, + 991, + 897, + 1021, + 754, + 1021 + ], + "score": 0.92, + "latex": "\\eta _ { 0 } = 2 e - 3" + }, + { + "category_id": 13, + "poly": [ + 1219, + 991, + 1362, + 991, + 1362, + 1022, + 1219, + 1022 + ], + "score": 0.91, + "latex": "\\eta _ { 0 } = 5 e - 4" + }, + { + "category_id": 13, + "poly": [ + 622, + 204, + 689, + 204, + 689, + 236, + 622, + 236 + ], + "score": 0.9, + "latex": "\\xi > 0" + }, + { + "category_id": 13, + "poly": [ + 537, + 240, + 729, + 240, + 729, + 279, + 537, + 279 + ], + "score": 0.9, + "latex": "C S T ( \\hat { \\phi } _ { \\mathrm { C S T } } , \\hat { \\theta } _ { \\mathrm { C S T } } )" + }, + { + "category_id": 13, + "poly": [ + 655, + 925, + 682, + 925, + 682, + 960, + 655, + 960 + ], + "score": 0.88, + "latex": "\\widehat { \\theta } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 637, + 889, + 663, + 889, + 663, + 924, + 637, + 924 + ], + "score": 0.88, + "latex": "\\widehat { \\theta } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 296, + 244, + 361, + 244, + 361, + 278, + 296, + 278 + ], + "score": 0.83, + "latex": "1 - \\xi ," + }, + { + "category_id": 13, + "poly": [ + 534, + 1687, + 558, + 1687, + 558, + 1712, + 534, + 1712 + ], + "score": 0.73, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 556, + 663, + 605, + 663, + 605, + 693, + 556, + 693 + ], + "score": 0.66, + "latex": "( \\mathbf { P r } )" + }, + { + "category_id": 13, + "poly": [ + 965, + 1112, + 1104, + 1112, + 1104, + 1142, + 965, + 1142 + ], + "score": 0.63, + "latex": "( \\mathbf { C S T + S A M } )" + }, + { + "category_id": 13, + "poly": [ + 1154, + 693, + 1215, + 693, + 1215, + 722, + 1154, + 722 + ], + "score": 0.47, + "latex": "2 0 0 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 889, + 1719, + 908, + 1719, + 908, + 1741, + 889, + 1741 + ], + "score": 0.41, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 1179, + 1719, + 1196, + 1719, + 1196, + 1741, + 1179, + 1741 + ], + "score": 0.34, + "latex": "+" + }, + { + "category_id": 13, + "poly": [ + 1157, + 754, + 1197, + 754, + 1197, + 783, + 1157, + 783 + ], + "score": 0.31, + "latex": "\\mathbf { \\eta } ( \\mathbf { K } )" + }, + { + "category_id": 13, + "poly": [ + 657, + 754, + 696, + 754, + 696, + 784, + 657, + 784 + ], + "score": 0.31, + "latex": "\\mathbf { ( B ) }" + }, + { + "category_id": 13, + "poly": [ + 942, + 1642, + 960, + 1642, + 960, + 1665, + 942, + 1665 + ], + "score": 0.26, + "latex": "^ { \\cdot } +" + }, + { + "category_id": 13, + "poly": [ + 956, + 1718, + 973, + 1718, + 973, + 1741, + 956, + 1741 + ], + "score": 0.26, + "latex": "^ +" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 388.0, + 537.0, + 388.0, + 537.0, + 437.0, + 290.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1220.0, + 476.0, + 1220.0, + 476.0, + 1260.0, + 293.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1840.0, + 452.0, + 1840.0, + 452.0, + 1877.0, + 295.0, + 1877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 552.0, + 436.0, + 552.0, + 436.0, + 601.0, + 293.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2090.0, + 838.0, + 2090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 798.0, + 1406.0, + 798.0, + 1406.0, + 832.0, + 295.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 828.0, + 1408.0, + 828.0, + 1408.0, + 863.0, + 294.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 859.0, + 1407.0, + 859.0, + 1407.0, + 893.0, + 294.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 893.0, + 636.0, + 893.0, + 636.0, + 931.0, + 294.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 893.0, + 1407.0, + 893.0, + 1407.0, + 931.0, + 664.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 928.0, + 654.0, + 928.0, + 654.0, + 962.0, + 294.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 683.0, + 928.0, + 1407.0, + 928.0, + 1407.0, + 962.0, + 683.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 960.0, + 1408.0, + 960.0, + 1408.0, + 994.0, + 294.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 987.0, + 753.0, + 987.0, + 753.0, + 1026.0, + 294.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 987.0, + 1218.0, + 987.0, + 1218.0, + 1026.0, + 898.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1363.0, + 987.0, + 1406.0, + 987.0, + 1406.0, + 1026.0, + 1363.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1021.0, + 1406.0, + 1021.0, + 1406.0, + 1055.0, + 294.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1049.0, + 1406.0, + 1049.0, + 1406.0, + 1085.0, + 294.0, + 1085.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1078.0, + 1406.0, + 1078.0, + 1406.0, + 1116.0, + 294.0, + 1116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1111.0, + 964.0, + 1111.0, + 964.0, + 1145.0, + 294.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 1111.0, + 1404.0, + 1111.0, + 1404.0, + 1145.0, + 1105.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1141.0, + 1406.0, + 1141.0, + 1406.0, + 1174.0, + 294.0, + 1174.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1172.0, + 795.0, + 1172.0, + 795.0, + 1206.0, + 295.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1487.0, + 1404.0, + 1487.0, + 1404.0, + 1519.0, + 296.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1519.0, + 1407.0, + 1519.0, + 1407.0, + 1551.0, + 295.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1545.0, + 1406.0, + 1545.0, + 1406.0, + 1583.0, + 294.0, + 1583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1576.0, + 1405.0, + 1576.0, + 1405.0, + 1612.0, + 295.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1608.0, + 1404.0, + 1608.0, + 1404.0, + 1644.0, + 294.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1640.0, + 941.0, + 1640.0, + 941.0, + 1672.0, + 296.0, + 1672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 1640.0, + 1215.0, + 1640.0, + 1215.0, + 1672.0, + 961.0, + 1672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 600.0, + 1408.0, + 600.0, + 1408.0, + 636.0, + 295.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 629.0, + 1408.0, + 629.0, + 1408.0, + 667.0, + 293.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 661.0, + 555.0, + 661.0, + 555.0, + 696.0, + 295.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 661.0, + 1407.0, + 661.0, + 1407.0, + 696.0, + 606.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 691.0, + 1153.0, + 691.0, + 1153.0, + 725.0, + 293.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 691.0, + 1405.0, + 691.0, + 1405.0, + 725.0, + 1216.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 723.0, + 1406.0, + 723.0, + 1406.0, + 757.0, + 293.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 754.0, + 656.0, + 754.0, + 656.0, + 786.0, + 295.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 754.0, + 1156.0, + 754.0, + 1156.0, + 786.0, + 697.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1198.0, + 754.0, + 1206.0, + 754.0, + 1206.0, + 786.0, + 1198.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1884.0, + 1403.0, + 1884.0, + 1403.0, + 1916.0, + 295.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1915.0, + 1405.0, + 1915.0, + 1405.0, + 1948.0, + 295.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1946.0, + 1407.0, + 1946.0, + 1407.0, + 1980.0, + 293.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1972.0, + 1146.0, + 1972.0, + 1146.0, + 2013.0, + 294.0, + 2013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1272.0, + 1403.0, + 1272.0, + 1403.0, + 1310.0, + 297.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1305.0, + 1402.0, + 1305.0, + 1402.0, + 1339.0, + 298.0, + 1339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1331.0, + 617.0, + 1331.0, + 617.0, + 1374.0, + 296.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 444.0, + 1408.0, + 444.0, + 1408.0, + 481.0, + 294.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 476.0, + 1408.0, + 476.0, + 1408.0, + 510.0, + 295.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 505.0, + 997.0, + 505.0, + 997.0, + 542.0, + 295.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1757.0, + 1406.0, + 1757.0, + 1406.0, + 1793.0, + 296.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1787.0, + 1407.0, + 1787.0, + 1407.0, + 1826.0, + 293.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1681.0, + 533.0, + 1681.0, + 533.0, + 1719.0, + 294.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 1681.0, + 1405.0, + 1681.0, + 1405.0, + 1719.0, + 559.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1715.0, + 888.0, + 1715.0, + 888.0, + 1747.0, + 296.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 1715.0, + 955.0, + 1715.0, + 955.0, + 1747.0, + 909.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 1715.0, + 1178.0, + 1715.0, + 1178.0, + 1747.0, + 974.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1197.0, + 1715.0, + 1309.0, + 1715.0, + 1309.0, + 1747.0, + 1197.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 199.0, + 621.0, + 199.0, + 621.0, + 243.0, + 293.0, + 243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 199.0, + 954.0, + 199.0, + 954.0, + 243.0, + 690.0, + 243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 199.0, + 1406.0, + 199.0, + 1406.0, + 243.0, + 1121.0, + 243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 243.0, + 536.0, + 243.0, + 536.0, + 282.0, + 362.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 243.0, + 1257.0, + 243.0, + 1257.0, + 282.0, + 730.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1378.0, + 1407.0, + 1378.0, + 1407.0, + 1416.0, + 294.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1408.0, + 1407.0, + 1408.0, + 1407.0, + 1449.0, + 292.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1440.0, + 1160.0, + 1440.0, + 1160.0, + 1478.0, + 295.0, + 1478.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 298, + 233, + 1403, + 233, + 1403, + 529, + 298, + 529 + ], + "score": 0.978, + "html": "
Method|Ar-Cl Ar-Pr Ar-Rw Cl-Ar Cl-Pr Cl-Rw Pr-Ar Pr-CIPr-Rw Rw-Ar Rw-Cl Rw-Pr|Avg.
DANN [22]45.659.370.147.058.560.946.143.768.563.251.876.857.6
CDAN [37]50.770.676.057.670.070.057.450.977.370.956.781.665.8
CDAN+VAT+Entropy52.271.576.461.170.367.859.554.478.673.259.082.767.3
FixMatch [57]51.874.280.163.573.861.364.751.480.073.356.881.767.7
MDD [73]54.973.777.860.071.471.861.253.678.172.560.282.368.1
MDD+IA [28]56.277.979.264.473.174.464.254.279.971.258.183.169.5
SENTRY [48]61.877.480.166.371.674.766.863.080.974.066.384.172.2
CST59.079.683.468.477.176.768.956.483.075.362.285.1|73.0
" + }, + { + "category_id": 1, + "poly": [ + 299, + 1831, + 1404, + 1831, + 1404, + 2015, + 299, + 2015 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 1633, + 1405, + 1633, + 1405, + 1819, + 297, + 1819 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 906, + 1404, + 906, + 1404, + 1029, + 298, + 1029 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 1044, + 1404, + 1044, + 1404, + 1168, + 297, + 1168 + ], + "score": 0.975 + }, + { + "category_id": 5, + "poly": [ + 296, + 592, + 1402, + 592, + 1402, + 833, + 296, + 833 + ], + "score": 0.974, + "html": "
MethodB-DB-EB-KD-BD-ED-KE-BE-DE-KK-BK-DK-EAvg.
Source-only89.788.490.990.188.590.286.988.591.587.687.391.289.2
DANN [22]90.289.590.991.090.690.287.187.592.887.887.693.289.9
VAT[40]90.691.091.790.890.892.087.286.992.686.987.792.990.1
VAT+Entropy90.491.391.591.091.192.487.586.392.486.587.593.190.1
MDD [73]90.490.491.890.290.991.087.586.392.589.087.992.190.0
CST91.592.992.691.992.693.590.289.493.887.988.393.591.5
" + }, + { + "category_id": 5, + "poly": [ + 948, + 1278, + 1401, + 1278, + 1401, + 1492, + 948, + 1492 + ], + "score": 0.971, + "html": "
MethodAccuracy ↑|drv↓
FixMatch [57]74.5 ± 0.20.22
Fixmatch+Tsallis76.3 ± 0.80.15
CST w/o Tsallis72.0 ± 0.40.16
CST+Entropy76.2 ± 0.60.20
CST79.9 ± 0.50.12
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1255, + 929, + 1255, + 929, + 1500, + 298, + 1500 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 298, + 1500, + 1402, + 1500, + 1402, + 1621, + 298, + 1621 + ], + "score": 0.959 + }, + { + "category_id": 0, + "poly": [ + 298, + 1207, + 463, + 1207, + 463, + 1239, + 298, + 1239 + ], + "score": 0.898 + }, + { + "category_id": 6, + "poly": [ + 332, + 199, + 1352, + 199, + 1352, + 231, + 332, + 231 + ], + "score": 0.883 + }, + { + "category_id": 6, + "poly": [ + 312, + 558, + 1373, + 558, + 1373, + 589, + 312, + 589 + ], + "score": 0.883 + }, + { + "category_id": 6, + "poly": [ + 993, + 1251, + 1353, + 1251, + 1353, + 1277, + 993, + 1277 + ], + "score": 0.877 + }, + { + "category_id": 2, + "poly": [ + 840, + 2061, + 859, + 2061, + 859, + 2084, + 840, + 2084 + ], + "score": 0.797 + }, + { + "category_id": 13, + "poly": [ + 801, + 1348, + 896, + 1348, + 896, + 1379, + 801, + 1379 + ], + "score": 0.92, + "latex": "L _ { \\mathrm { T s a l l i s } , \\alpha }" + }, + { + "category_id": 13, + "poly": [ + 361, + 1318, + 456, + 1318, + 456, + 1350, + 361, + 1350 + ], + "score": 0.91, + "latex": "L _ { \\mathrm { T s a l l i s } , \\alpha }" + }, + { + "category_id": 13, + "poly": [ + 792, + 1468, + 854, + 1468, + 854, + 1498, + 792, + 1498 + ], + "score": 0.88, + "latex": "5 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 398, + 1559, + 443, + 1559, + 443, + 1590, + 398, + 1590 + ], + "score": 0.88, + "latex": "d _ { \\mathrm { T V } }" + }, + { + "category_id": 13, + "poly": [ + 561, + 1407, + 623, + 1407, + 623, + 1437, + 561, + 1437 + ], + "score": 0.88, + "latex": "3 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 849, + 1528, + 912, + 1528, + 912, + 1559, + 849, + 1559 + ], + "score": 0.88, + "latex": "3 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 801, + 1697, + 830, + 1697, + 830, + 1726, + 801, + 1726 + ], + "score": 0.87, + "latex": "\\theta _ { s }" + }, + { + "category_id": 13, + "poly": [ + 797, + 1666, + 823, + 1666, + 823, + 1696, + 797, + 1696 + ], + "score": 0.86, + "latex": "\\theta _ { t }" + }, + { + "category_id": 13, + "poly": [ + 436, + 1787, + 480, + 1787, + 480, + 1818, + 436, + 1818 + ], + "score": 0.86, + "latex": "d _ { \\mathrm { T V } }" + }, + { + "category_id": 13, + "poly": [ + 867, + 1697, + 893, + 1697, + 893, + 1727, + 867, + 1727 + ], + "score": 0.8, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 830, + 1863, + 918, + 1863, + 918, + 1892, + 830, + 1892 + ], + "score": 0.8, + "latex": "\\mathbf { A r { } C l }" + }, + { + "category_id": 13, + "poly": [ + 537, + 560, + 581, + 560, + 581, + 589, + 537, + 589 + ], + "score": 0.75, + "latex": "( \\% )" + }, + { + "category_id": 13, + "poly": [ + 556, + 201, + 599, + 201, + 599, + 230, + 556, + 230 + ], + "score": 0.71, + "latex": "( \\% )" + }, + { + "category_id": 13, + "poly": [ + 297, + 1408, + 368, + 1408, + 368, + 1437, + 297, + 1437 + ], + "score": 0.48, + "latex": "\\mathrm { C S T + l }" + }, + { + "category_id": 13, + "poly": [ + 412, + 973, + 430, + 973, + 430, + 995, + 412, + 995 + ], + "score": 0.38, + "latex": "^ { + }" + }, + { + "category_id": 13, + "poly": [ + 520, + 1321, + 537, + 1321, + 537, + 1343, + 520, + 1343 + ], + "score": 0.27, + "latex": "+" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1203.0, + 468.0, + 1203.0, + 468.0, + 1244.0, + 294.0, + 1244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 195.0, + 555.0, + 195.0, + 555.0, + 237.0, + 340.0, + 237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 195.0, + 1357.0, + 195.0, + 1357.0, + 237.0, + 600.0, + 237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 556.0, + 536.0, + 556.0, + 536.0, + 594.0, + 325.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 582.0, + 556.0, + 1373.0, + 556.0, + 1373.0, + 594.0, + 582.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.0, + 1249.0, + 1357.0, + 1249.0, + 1357.0, + 1282.0, + 992.0, + 1282.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": [ + 297.0, + 1830.0, + 1405.0, + 1830.0, + 1405.0, + 1866.0, + 297.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1862.0, + 829.0, + 1862.0, + 829.0, + 1898.0, + 294.0, + 1898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 1862.0, + 1405.0, + 1862.0, + 1405.0, + 1898.0, + 919.0, + 1898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1890.0, + 1406.0, + 1890.0, + 1406.0, + 1927.0, + 293.0, + 1927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1924.0, + 1408.0, + 1924.0, + 1408.0, + 1956.0, + 295.0, + 1956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1948.0, + 1408.0, + 1948.0, + 1408.0, + 1993.0, + 293.0, + 1993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1984.0, + 1409.0, + 1984.0, + 1409.0, + 2019.0, + 294.0, + 2019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1632.0, + 1403.0, + 1632.0, + 1403.0, + 1667.0, + 296.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1661.0, + 796.0, + 1661.0, + 796.0, + 1704.0, + 291.0, + 1704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 1661.0, + 1409.0, + 1661.0, + 1409.0, + 1704.0, + 824.0, + 1704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1693.0, + 800.0, + 1693.0, + 800.0, + 1731.0, + 292.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 1693.0, + 866.0, + 1693.0, + 866.0, + 1731.0, + 831.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 1693.0, + 1405.0, + 1693.0, + 1405.0, + 1731.0, + 894.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1726.0, + 1407.0, + 1726.0, + 1407.0, + 1760.0, + 292.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1754.0, + 1405.0, + 1754.0, + 1405.0, + 1791.0, + 292.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1783.0, + 435.0, + 1783.0, + 435.0, + 1824.0, + 294.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 481.0, + 1783.0, + 1010.0, + 1783.0, + 1010.0, + 1824.0, + 481.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 905.0, + 1409.0, + 905.0, + 1409.0, + 942.0, + 291.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 934.0, + 1405.0, + 934.0, + 1405.0, + 976.0, + 292.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 968.0, + 411.0, + 968.0, + 411.0, + 1004.0, + 294.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 431.0, + 968.0, + 1405.0, + 968.0, + 1405.0, + 1004.0, + 431.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 998.0, + 1335.0, + 998.0, + 1335.0, + 1033.0, + 295.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1043.0, + 1404.0, + 1043.0, + 1404.0, + 1078.0, + 294.0, + 1078.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": [ + 295.0, + 1106.0, + 1405.0, + 1106.0, + 1405.0, + 1139.0, + 295.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1135.0, + 1409.0, + 1135.0, + 1409.0, + 1171.0, + 294.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1255.0, + 928.0, + 1255.0, + 928.0, + 1288.0, + 297.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1285.0, + 931.0, + 1285.0, + 931.0, + 1319.0, + 296.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1316.0, + 360.0, + 1316.0, + 360.0, + 1353.0, + 295.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 1316.0, + 519.0, + 1316.0, + 519.0, + 1353.0, + 457.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 538.0, + 1316.0, + 929.0, + 1316.0, + 929.0, + 1353.0, + 538.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1343.0, + 800.0, + 1343.0, + 800.0, + 1381.0, + 294.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 1343.0, + 928.0, + 1343.0, + 928.0, + 1381.0, + 897.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1376.0, + 931.0, + 1376.0, + 931.0, + 1409.0, + 295.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 1403.0, + 560.0, + 1403.0, + 560.0, + 1443.0, + 369.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 1403.0, + 929.0, + 1403.0, + 929.0, + 1443.0, + 624.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1435.0, + 931.0, + 1435.0, + 931.0, + 1472.0, + 294.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1468.0, + 791.0, + 1468.0, + 791.0, + 1502.0, + 296.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 1468.0, + 929.0, + 1468.0, + 929.0, + 1502.0, + 855.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1498.0, + 1406.0, + 1498.0, + 1406.0, + 1531.0, + 296.0, + 1531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1527.0, + 848.0, + 1527.0, + 848.0, + 1562.0, + 293.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 1527.0, + 1406.0, + 1527.0, + 1406.0, + 1562.0, + 913.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1559.0, + 397.0, + 1559.0, + 397.0, + 1592.0, + 296.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 1559.0, + 1404.0, + 1559.0, + 1404.0, + 1592.0, + 444.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1590.0, + 970.0, + 1590.0, + 970.0, + 1623.0, + 294.0, + 1623.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1264, + 1404, + 1264, + 1404, + 1569, + 298, + 1569 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 945, + 1405, + 945, + 1405, + 1250, + 297, + 1250 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1650, + 1403, + 1650, + 1403, + 1834, + 298, + 1834 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 300, + 1915, + 1403, + 1915, + 1403, + 2007, + 300, + 2007 + ], + "score": 0.972 + }, + { + "category_id": 4, + "poly": [ + 298, + 786, + 1401, + 786, + 1401, + 873, + 298, + 873 + ], + "score": 0.95 + }, + { + "category_id": 5, + "poly": [ + 298, + 201, + 1402, + 201, + 1402, + 524, + 298, + 524 + ], + "score": 0.947, + "html": "
MethodResNet-50ResNet-101MethodResNet-50ResNet-101
DANN [22]69.379.5CBST[77]176.4 ± 0.9
VAT [40]68.0±0.373.4 ± 0.5KLD [78]178.1 ± 0.2
DIRT-T [56]68.2 ± 0.377.2 ± 0.5MDD[73]74.681.6 ± 0.3
MCD [54]69.277.7AFN [69]176.1
CDAN [37]70.080.1MDD+IA [28]75.81
CDAN+VAT+Entropy76.5 ± 0.580.4± 0.7MDD+FixMatch77.8 ± 0.382.4 ± 0.4
MixMatch69.3 ± 0.477.0 ± 0.5STAR [38]182.7
FixMatch [57]74.5 ± 0.279.5 ± 0.3SENTRY [48]76.71
CST79.9 ± 0.584.8± 0.6CST+SAM80.6 ± 0.586.5 ± 0.7
" + }, + { + "category_id": 3, + "poly": [ + 333, + 544, + 1360, + 544, + 1360, + 777, + 333, + 777 + ], + "score": 0.935 + }, + { + "category_id": 0, + "poly": [ + 298, + 891, + 549, + 891, + 549, + 928, + 298, + 928 + ], + "score": 0.917 + }, + { + "category_id": 0, + "poly": [ + 299, + 1861, + 576, + 1861, + 576, + 1898, + 299, + 1898 + ], + "score": 0.915 + }, + { + "category_id": 0, + "poly": [ + 298, + 1595, + 510, + 1595, + 510, + 1632, + 298, + 1632 + ], + "score": 0.906 + }, + { + "category_id": 6, + "poly": [ + 346, + 165, + 1342, + 165, + 1342, + 196, + 346, + 196 + ], + "score": 0.903 + }, + { + "category_id": 2, + "poly": [ + 837, + 2062, + 865, + 2062, + 865, + 2085, + 837, + 2085 + ], + "score": 0.852 + }, + { + "category_id": 13, + "poly": [ + 1376, + 787, + 1400, + 787, + 1400, + 814, + 1376, + 814 + ], + "score": 0.83, + "latex": "\\theta _ { t }" + }, + { + "category_id": 13, + "poly": [ + 653, + 561, + 675, + 561, + 675, + 583, + 653, + 583 + ], + "score": 0.81, + "latex": "\\theta _ { s }" + }, + { + "category_id": 13, + "poly": [ + 630, + 586, + 651, + 586, + 651, + 608, + 630, + 608 + ], + "score": 0.78, + "latex": "\\theta _ { t }" + }, + { + "category_id": 13, + "poly": [ + 704, + 166, + 748, + 166, + 748, + 195, + 704, + 195 + ], + "score": 0.73, + "latex": "( \\% )" + }, + { + "category_id": 13, + "poly": [ + 764, + 561, + 782, + 561, + 782, + 582, + 764, + 582 + ], + "score": 0.48, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 744, + 586, + 761, + 586, + 761, + 606, + 744, + 606 + ], + "score": 0.44, + "latex": "P" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 784.0, + 1375.0, + 784.0, + 1375.0, + 819.0, + 294.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 814.0, + 1405.0, + 814.0, + 1405.0, + 847.0, + 294.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 842.0, + 1387.0, + 842.0, + 1387.0, + 875.0, + 294.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 566.0, + 385.0, + 566.0, + 385.0, + 587.0, + 357.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 507.0, + 554.0, + 652.0, + 554.0, + 652.0, + 587.0, + 507.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 554.0, + 763.0, + 554.0, + 763.0, + 587.0, + 676.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 554.0, + 787.0, + 554.0, + 787.0, + 587.0, + 783.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 570.0, + 912.0, + 570.0, + 912.0, + 580.0, + 904.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 554.0, + 1112.0, + 554.0, + 1112.0, + 589.0, + 974.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 597.0, + 385.0, + 597.0, + 385.0, + 662.0, + 337.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 507.0, + 582.0, + 629.0, + 582.0, + 629.0, + 657.0, + 507.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 652.0, + 582.0, + 743.0, + 582.0, + 743.0, + 657.0, + 652.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 582.0, + 811.0, + 582.0, + 811.0, + 657.0, + 762.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 607.0, + 912.0, + 607.0, + 912.0, + 697.0, + 877.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 580.0, + 1116.0, + 580.0, + 1116.0, + 615.0, + 973.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 650.0, + 363.0, + 650.0, + 363.0, + 676.0, + 337.0, + 676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 656.0, + 385.0, + 656.0, + 385.0, + 677.0, + 357.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 681.0, + 912.0, + 681.0, + 912.0, + 692.0, + 903.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 688.0, + 384.0, + 688.0, + 384.0, + 707.0, + 359.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 717.0, + 385.0, + 717.0, + 385.0, + 739.0, + 358.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 905.0, + 719.0, + 913.0, + 719.0, + 913.0, + 730.0, + 905.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 729.0, + 628.0, + 729.0, + 628.0, + 757.0, + 551.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 748.0, + 384.0, + 748.0, + 384.0, + 767.0, + 359.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 762.0, + 410.0, + 762.0, + 410.0, + 776.0, + 396.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 760.0, + 472.0, + 760.0, + 472.0, + 778.0, + 449.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 760.0, + 530.0, + 760.0, + 530.0, + 778.0, + 505.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 760.0, + 587.0, + 760.0, + 587.0, + 778.0, + 562.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 760.0, + 645.0, + 760.0, + 645.0, + 778.0, + 621.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 759.0, + 706.0, + 759.0, + 706.0, + 780.0, + 674.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.0, + 759.0, + 763.0, + 759.0, + 763.0, + 780.0, + 731.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 789.0, + 759.0, + 819.0, + 759.0, + 819.0, + 780.0, + 789.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 754.0, + 916.0, + 754.0, + 916.0, + 769.0, + 903.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 923.0, + 761.0, + 947.0, + 761.0, + 947.0, + 778.0, + 923.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 761.0, + 1026.0, + 761.0, + 1026.0, + 778.0, + 1003.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 761.0, + 1106.0, + 761.0, + 1106.0, + 778.0, + 1082.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1161.0, + 761.0, + 1186.0, + 761.0, + 1186.0, + 778.0, + 1161.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.0, + 761.0, + 1264.0, + 761.0, + 1264.0, + 778.0, + 1241.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1321.0, + 761.0, + 1345.0, + 761.0, + 1345.0, + 778.0, + 1321.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 886.0, + 553.0, + 886.0, + 553.0, + 933.0, + 292.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1856.0, + 579.0, + 1856.0, + 579.0, + 1906.0, + 295.0, + 1906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1590.0, + 514.0, + 1590.0, + 514.0, + 1640.0, + 291.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 162.0, + 703.0, + 162.0, + 703.0, + 200.0, + 353.0, + 200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 162.0, + 1346.0, + 162.0, + 1346.0, + 200.0, + 749.0, + 200.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": [ + 293.0, + 1261.0, + 1408.0, + 1261.0, + 1408.0, + 1299.0, + 293.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1295.0, + 1405.0, + 1295.0, + 1405.0, + 1327.0, + 296.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1325.0, + 1404.0, + 1325.0, + 1404.0, + 1357.0, + 296.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1351.0, + 1405.0, + 1351.0, + 1405.0, + 1389.0, + 293.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1382.0, + 1406.0, + 1382.0, + 1406.0, + 1419.0, + 293.0, + 1419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1413.0, + 1406.0, + 1413.0, + 1406.0, + 1449.0, + 293.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1441.0, + 1406.0, + 1441.0, + 1406.0, + 1482.0, + 292.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1476.0, + 1406.0, + 1476.0, + 1406.0, + 1511.0, + 294.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1505.0, + 1406.0, + 1505.0, + 1406.0, + 1539.0, + 293.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1534.0, + 1409.0, + 1534.0, + 1409.0, + 1571.0, + 293.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 944.0, + 1406.0, + 944.0, + 1406.0, + 980.0, + 295.0, + 980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 975.0, + 1405.0, + 975.0, + 1405.0, + 1010.0, + 295.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1004.0, + 1408.0, + 1004.0, + 1408.0, + 1043.0, + 292.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1032.0, + 1406.0, + 1032.0, + 1406.0, + 1075.0, + 292.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1065.0, + 1405.0, + 1065.0, + 1405.0, + 1101.0, + 292.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1095.0, + 1405.0, + 1095.0, + 1405.0, + 1133.0, + 292.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1125.0, + 1405.0, + 1125.0, + 1405.0, + 1161.0, + 294.0, + 1161.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1153.0, + 1406.0, + 1153.0, + 1406.0, + 1196.0, + 292.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1190.0, + 1403.0, + 1190.0, + 1403.0, + 1222.0, + 296.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1216.0, + 1196.0, + 1216.0, + 1196.0, + 1254.0, + 294.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1649.0, + 1405.0, + 1649.0, + 1405.0, + 1685.0, + 296.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1680.0, + 1404.0, + 1680.0, + 1404.0, + 1714.0, + 294.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1712.0, + 1405.0, + 1712.0, + 1405.0, + 1743.0, + 296.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1738.0, + 1407.0, + 1738.0, + 1407.0, + 1775.0, + 293.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1770.0, + 1405.0, + 1770.0, + 1405.0, + 1807.0, + 293.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1799.0, + 1404.0, + 1799.0, + 1404.0, + 1837.0, + 293.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1913.0, + 1405.0, + 1913.0, + 1405.0, + 1949.0, + 295.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1944.0, + 1404.0, + 1944.0, + 1404.0, + 1983.0, + 293.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1975.0, + 1291.0, + 1975.0, + 1291.0, + 2009.0, + 295.0, + 2009.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 293, + 251, + 1412, + 251, + 1412, + 2018, + 293, + 2018 + ], + "score": 0.945 + }, + { + "category_id": 0, + "poly": [ + 298, + 199, + 456, + 199, + 456, + 235, + 298, + 235 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 835, + 2060, + 864, + 2060, + 864, + 2087, + 835, + 2087 + ], + "score": 0.833 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 197.0, + 460.0, + 197.0, + 460.0, + 240.0, + 295.0, + 240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2058.0, + 869.0, + 2058.0, + 869.0, + 2097.0, + 831.0, + 2097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 250.0, + 1407.0, + 250.0, + 1407.0, + 290.0, + 306.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 285.0, + 1338.0, + 285.0, + 1338.0, + 322.0, + 353.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 335.0, + 1407.0, + 335.0, + 1407.0, + 378.0, + 308.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 368.0, + 1279.0, + 368.0, + 1279.0, + 405.0, + 352.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 417.0, + 1409.0, + 417.0, + 1409.0, + 464.0, + 304.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 452.0, + 1127.0, + 452.0, + 1127.0, + 489.0, + 352.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 504.0, + 1407.0, + 504.0, + 1407.0, + 541.0, + 308.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 536.0, + 734.0, + 536.0, + 734.0, + 572.0, + 353.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 592.0, + 1407.0, + 592.0, + 1407.0, + 629.0, + 308.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 625.0, + 904.0, + 625.0, + 904.0, + 656.0, + 355.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 674.0, + 1409.0, + 674.0, + 1409.0, + 716.0, + 306.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 703.0, + 847.0, + 703.0, + 847.0, + 746.0, + 352.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 757.0, + 1407.0, + 757.0, + 1407.0, + 802.0, + 306.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 792.0, + 1247.0, + 792.0, + 1247.0, + 829.0, + 353.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 845.0, + 1407.0, + 845.0, + 1407.0, + 882.0, + 306.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 874.0, + 1327.0, + 874.0, + 1327.0, + 915.0, + 350.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 926.0, + 1409.0, + 926.0, + 1409.0, + 969.0, + 308.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 963.0, + 765.0, + 963.0, + 765.0, + 994.0, + 355.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1012.0, + 1411.0, + 1012.0, + 1411.0, + 1055.0, + 293.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1045.0, + 1207.0, + 1045.0, + 1207.0, + 1082.0, + 353.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1096.0, + 1411.0, + 1096.0, + 1411.0, + 1138.0, + 293.0, + 1138.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1127.0, + 433.0, + 1127.0, + 433.0, + 1166.0, + 352.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1183.0, + 1233.0, + 1183.0, + 1233.0, + 1220.0, + 292.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1236.0, + 1409.0, + 1236.0, + 1409.0, + 1278.0, + 293.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1267.0, + 430.0, + 1267.0, + 430.0, + 1306.0, + 353.0, + 1306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1323.0, + 1407.0, + 1323.0, + 1407.0, + 1360.0, + 294.0, + 1360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 1350.0, + 1306.0, + 1350.0, + 1306.0, + 1387.0, + 355.0, + 1387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1405.0, + 1409.0, + 1405.0, + 1409.0, + 1448.0, + 293.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1438.0, + 929.0, + 1438.0, + 929.0, + 1475.0, + 353.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1490.0, + 1403.0, + 1490.0, + 1403.0, + 1527.0, + 294.0, + 1527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1522.0, + 1199.0, + 1522.0, + 1199.0, + 1558.0, + 353.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1574.0, + 1409.0, + 1574.0, + 1409.0, + 1617.0, + 293.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1603.0, + 1409.0, + 1603.0, + 1409.0, + 1650.0, + 348.0, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1634.0, + 565.0, + 1634.0, + 565.0, + 1671.0, + 353.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1683.0, + 1409.0, + 1683.0, + 1409.0, + 1736.0, + 289.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1722.0, + 837.0, + 1722.0, + 837.0, + 1759.0, + 353.0, + 1759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1772.0, + 1409.0, + 1772.0, + 1409.0, + 1813.0, + 291.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1807.0, + 946.0, + 1807.0, + 946.0, + 1844.0, + 353.0, + 1844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1858.0, + 1409.0, + 1858.0, + 1409.0, + 1901.0, + 294.0, + 1901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1891.0, + 1001.0, + 1891.0, + 1001.0, + 1928.0, + 353.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1945.0, + 1407.0, + 1945.0, + 1407.0, + 1982.0, + 294.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1975.0, + 502.0, + 1975.0, + 502.0, + 2012.0, + 353.0, + 2012.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 293, + 204, + 1411, + 204, + 1411, + 2010, + 293, + 2010 + ], + "score": 0.926 + }, + { + "category_id": 2, + "poly": [ + 835, + 2060, + 866, + 2060, + 866, + 2087, + 835, + 2087 + ], + "score": 0.829 + }, + { + "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": [ + 295.0, + 204.0, + 1409.0, + 204.0, + 1409.0, + 241.0, + 295.0, + 241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 233.0, + 1289.0, + 233.0, + 1289.0, + 271.0, + 353.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 283.0, + 1409.0, + 283.0, + 1409.0, + 335.0, + 289.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 319.0, + 990.0, + 319.0, + 990.0, + 360.0, + 349.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 374.0, + 1407.0, + 374.0, + 1407.0, + 412.0, + 295.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 407.0, + 577.0, + 407.0, + 577.0, + 440.0, + 349.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 458.0, + 1411.0, + 458.0, + 1411.0, + 501.0, + 293.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 490.0, + 718.0, + 490.0, + 718.0, + 527.0, + 351.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 547.0, + 1409.0, + 547.0, + 1409.0, + 585.0, + 295.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 575.0, + 583.0, + 575.0, + 583.0, + 614.0, + 349.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 632.0, + 1411.0, + 632.0, + 1411.0, + 670.0, + 295.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 664.0, + 1357.0, + 664.0, + 1357.0, + 702.0, + 355.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 716.0, + 1409.0, + 716.0, + 1409.0, + 758.0, + 291.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 750.0, + 1090.0, + 750.0, + 1090.0, + 787.0, + 355.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 805.0, + 1407.0, + 805.0, + 1407.0, + 843.0, + 295.0, + 843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 833.0, + 912.0, + 833.0, + 912.0, + 873.0, + 349.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 887.0, + 1409.0, + 887.0, + 1409.0, + 930.0, + 293.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 920.0, + 688.0, + 920.0, + 688.0, + 958.0, + 353.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 972.0, + 1407.0, + 972.0, + 1407.0, + 1016.0, + 293.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1008.0, + 1389.0, + 1008.0, + 1389.0, + 1043.0, + 351.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1059.0, + 1411.0, + 1059.0, + 1411.0, + 1101.0, + 291.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1091.0, + 1381.0, + 1091.0, + 1381.0, + 1129.0, + 353.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1145.0, + 1409.0, + 1145.0, + 1409.0, + 1188.0, + 293.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1176.0, + 1273.0, + 1176.0, + 1273.0, + 1220.0, + 353.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1230.0, + 1407.0, + 1230.0, + 1407.0, + 1276.0, + 291.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1264.0, + 918.0, + 1264.0, + 918.0, + 1302.0, + 353.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1317.0, + 1405.0, + 1317.0, + 1405.0, + 1355.0, + 295.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1349.0, + 930.0, + 1349.0, + 930.0, + 1387.0, + 353.0, + 1387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1405.0, + 1405.0, + 1405.0, + 1405.0, + 1443.0, + 295.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1437.0, + 838.0, + 1437.0, + 838.0, + 1474.0, + 351.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1490.0, + 1407.0, + 1490.0, + 1407.0, + 1528.0, + 295.0, + 1528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1524.0, + 714.0, + 1524.0, + 714.0, + 1556.0, + 353.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1576.0, + 1407.0, + 1576.0, + 1407.0, + 1613.0, + 295.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 1607.0, + 1094.0, + 1607.0, + 1094.0, + 1645.0, + 355.0, + 1645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1663.0, + 1213.0, + 1663.0, + 1213.0, + 1701.0, + 295.0, + 1701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1715.0, + 1407.0, + 1715.0, + 1407.0, + 1758.0, + 293.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1750.0, + 1112.0, + 1750.0, + 1112.0, + 1788.0, + 353.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1798.0, + 1409.0, + 1798.0, + 1409.0, + 1846.0, + 289.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1832.0, + 431.0, + 1832.0, + 431.0, + 1871.0, + 351.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1887.0, + 1411.0, + 1887.0, + 1411.0, + 1931.0, + 293.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1919.0, + 906.0, + 1919.0, + 906.0, + 1957.0, + 351.0, + 1957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1977.0, + 1335.0, + 1977.0, + 1335.0, + 2014.0, + 295.0, + 2014.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 294, + 152, + 1410, + 152, + 1410, + 2026, + 294, + 2026 + ], + "score": 0.806 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 865, + 2061, + 865, + 2086, + 836, + 2086 + ], + "score": 0.761 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 865, + 2061, + 865, + 2086, + 836, + 2086 + ], + "score": 0.297 + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 870.0, + 2058.0, + 870.0, + 2096.0, + 832.0, + 2096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 870.0, + 2058.0, + 870.0, + 2096.0, + 832.0, + 2096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 205.0, + 1405.0, + 205.0, + 1405.0, + 238.0, + 295.0, + 238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 236.0, + 1407.0, + 236.0, + 1407.0, + 269.0, + 356.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 262.0, + 1407.0, + 262.0, + 1407.0, + 301.0, + 352.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 297.0, + 1395.0, + 297.0, + 1395.0, + 330.0, + 354.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 351.0, + 1405.0, + 351.0, + 1405.0, + 384.0, + 297.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 380.0, + 1034.0, + 380.0, + 1034.0, + 419.0, + 354.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 431.0, + 1407.0, + 431.0, + 1407.0, + 472.0, + 290.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 464.0, + 1084.0, + 464.0, + 1084.0, + 503.0, + 354.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 517.0, + 1407.0, + 517.0, + 1407.0, + 556.0, + 295.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 550.0, + 1097.0, + 550.0, + 1097.0, + 585.0, + 349.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 598.0, + 1409.0, + 598.0, + 1409.0, + 645.0, + 288.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 635.0, + 1407.0, + 635.0, + 1407.0, + 674.0, + 352.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 658.0, + 435.0, + 658.0, + 435.0, + 705.0, + 352.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 719.0, + 1409.0, + 719.0, + 1409.0, + 758.0, + 295.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 752.0, + 985.0, + 752.0, + 985.0, + 785.0, + 354.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 801.0, + 1409.0, + 801.0, + 1409.0, + 846.0, + 290.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 834.0, + 831.0, + 834.0, + 831.0, + 873.0, + 352.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 883.0, + 1409.0, + 883.0, + 1409.0, + 933.0, + 288.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 918.0, + 1128.0, + 918.0, + 1128.0, + 955.0, + 352.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 974.0, + 1407.0, + 974.0, + 1407.0, + 1013.0, + 293.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1005.0, + 993.0, + 1005.0, + 993.0, + 1044.0, + 352.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1058.0, + 1407.0, + 1058.0, + 1407.0, + 1097.0, + 295.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1089.0, + 1405.0, + 1089.0, + 1405.0, + 1128.0, + 354.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1122.0, + 960.0, + 1122.0, + 960.0, + 1155.0, + 356.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1173.0, + 1407.0, + 1173.0, + 1407.0, + 1212.0, + 295.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1204.0, + 1095.0, + 1204.0, + 1095.0, + 1243.0, + 354.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1256.0, + 1409.0, + 1256.0, + 1409.0, + 1299.0, + 290.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1291.0, + 1405.0, + 1291.0, + 1405.0, + 1323.0, + 354.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1317.0, + 432.0, + 1317.0, + 432.0, + 1358.0, + 352.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1373.0, + 1407.0, + 1373.0, + 1407.0, + 1412.0, + 295.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1404.0, + 664.0, + 1404.0, + 664.0, + 1441.0, + 349.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1459.0, + 1407.0, + 1459.0, + 1407.0, + 1498.0, + 293.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1490.0, + 1407.0, + 1490.0, + 1407.0, + 1529.0, + 352.0, + 1529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1523.0, + 704.0, + 1523.0, + 704.0, + 1556.0, + 354.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1576.0, + 1407.0, + 1576.0, + 1407.0, + 1609.0, + 297.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1605.0, + 991.0, + 1605.0, + 991.0, + 1642.0, + 352.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1659.0, + 1407.0, + 1659.0, + 1407.0, + 1698.0, + 293.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1691.0, + 1093.0, + 1691.0, + 1093.0, + 1731.0, + 350.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1741.0, + 1409.0, + 1741.0, + 1409.0, + 1784.0, + 293.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1774.0, + 662.0, + 1774.0, + 662.0, + 1813.0, + 354.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1829.0, + 1409.0, + 1829.0, + 1409.0, + 1868.0, + 293.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1852.0, + 1412.0, + 1852.0, + 1412.0, + 1907.0, + 350.0, + 1907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1893.0, + 567.0, + 1893.0, + 567.0, + 1926.0, + 354.0, + 1926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1940.0, + 1411.0, + 1940.0, + 1411.0, + 1988.0, + 288.0, + 1988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1977.0, + 626.0, + 1977.0, + 626.0, + 2010.0, + 356.0, + 2010.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 292, + 196, + 1409, + 196, + 1409, + 1517, + 292, + 1517 + ], + "score": 0.946 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 865, + 2061, + 865, + 2086, + 836, + 2086 + ], + "score": 0.77 + }, + { + "category_id": 2, + "poly": [ + 835, + 2061, + 865, + 2061, + 865, + 2086, + 835, + 2086 + ], + "score": 0.19 + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 871.0, + 2058.0, + 871.0, + 2096.0, + 832.0, + 2096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 870.0, + 2058.0, + 870.0, + 2097.0, + 832.0, + 2097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 202.0, + 1405.0, + 202.0, + 1405.0, + 239.0, + 295.0, + 239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 232.0, + 717.0, + 232.0, + 717.0, + 269.0, + 352.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 284.0, + 1405.0, + 284.0, + 1405.0, + 325.0, + 293.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 318.0, + 1095.0, + 318.0, + 1095.0, + 355.0, + 355.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 370.0, + 1405.0, + 370.0, + 1405.0, + 407.0, + 295.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 398.0, + 1288.0, + 398.0, + 1288.0, + 438.0, + 352.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 448.0, + 1403.0, + 448.0, + 1403.0, + 492.0, + 292.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 482.0, + 852.0, + 482.0, + 852.0, + 519.0, + 353.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 532.0, + 1405.0, + 532.0, + 1405.0, + 575.0, + 292.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 565.0, + 808.0, + 565.0, + 808.0, + 602.0, + 355.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 615.0, + 1406.0, + 615.0, + 1406.0, + 657.0, + 293.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 648.0, + 1367.0, + 648.0, + 1367.0, + 685.0, + 353.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 698.0, + 1406.0, + 698.0, + 1406.0, + 740.0, + 293.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 731.0, + 1057.0, + 731.0, + 1057.0, + 769.0, + 353.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 781.0, + 1406.0, + 781.0, + 1406.0, + 822.0, + 293.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 814.0, + 871.0, + 814.0, + 871.0, + 851.0, + 355.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 867.0, + 1405.0, + 867.0, + 1405.0, + 904.0, + 295.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 896.0, + 1361.0, + 896.0, + 1361.0, + 933.0, + 355.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 948.0, + 1406.0, + 948.0, + 1406.0, + 985.0, + 295.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 981.0, + 694.0, + 981.0, + 694.0, + 1013.0, + 355.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1030.0, + 1402.0, + 1030.0, + 1402.0, + 1067.0, + 295.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1061.0, + 849.0, + 1061.0, + 849.0, + 1098.0, + 353.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1114.0, + 1405.0, + 1114.0, + 1405.0, + 1151.0, + 295.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1142.0, + 1111.0, + 1142.0, + 1111.0, + 1182.0, + 352.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1195.0, + 1409.0, + 1195.0, + 1409.0, + 1237.0, + 293.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1225.0, + 735.0, + 1225.0, + 735.0, + 1262.0, + 352.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1274.0, + 1406.0, + 1274.0, + 1406.0, + 1321.0, + 290.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1309.0, + 1215.0, + 1309.0, + 1215.0, + 1348.0, + 350.0, + 1348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1358.0, + 1406.0, + 1358.0, + 1406.0, + 1403.0, + 292.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1391.0, + 1314.0, + 1391.0, + 1314.0, + 1431.0, + 352.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1441.0, + 1406.0, + 1441.0, + 1406.0, + 1486.0, + 292.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1474.0, + 600.0, + 1474.0, + 600.0, + 1511.0, + 353.0, + 1511.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/3hGNqpI4WS/images/130499bcf5e465aeeb59cee68e4a26cc2b0724c07bdd0d5ddaf94eaa44e62ee8.jpg b/parse/train/3hGNqpI4WS/images/130499bcf5e465aeeb59cee68e4a26cc2b0724c07bdd0d5ddaf94eaa44e62ee8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3e79ffab2ed9e053b0539c14e749a792dd2a8929 --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/130499bcf5e465aeeb59cee68e4a26cc2b0724c07bdd0d5ddaf94eaa44e62ee8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59492af3f9d85b8dcf575ce859470bbc566cd6523cd2aa571be714441d2988e5 +size 50438 diff --git a/parse/train/3hGNqpI4WS/images/1486e0d667bf2f8e17e0cefd8e07b39e41c2baf506d7618fd466feb8080a194d.jpg b/parse/train/3hGNqpI4WS/images/1486e0d667bf2f8e17e0cefd8e07b39e41c2baf506d7618fd466feb8080a194d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..71b7d91374108d337c4c1ec65b32e1a032c229fc --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/1486e0d667bf2f8e17e0cefd8e07b39e41c2baf506d7618fd466feb8080a194d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec34c1fdf6a6f42c3a6c7c1aedfa9ff88ae9ee59f647daf7f39a61cfb72d824c +size 4621 diff --git a/parse/train/3hGNqpI4WS/images/22074d9a93978e2e7c0e5f01935d55d8e4c33f912df142778c7e453a465f0dca.jpg b/parse/train/3hGNqpI4WS/images/22074d9a93978e2e7c0e5f01935d55d8e4c33f912df142778c7e453a465f0dca.jpg new file mode 100644 index 0000000000000000000000000000000000000000..af7c65d977127f33c3dca527d164bc84281db10c --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/22074d9a93978e2e7c0e5f01935d55d8e4c33f912df142778c7e453a465f0dca.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83ef45d6c7e5d19900df428db5ddcf0c1856c9bb1f7933380a01ba90f81c3bec +size 38603 diff --git a/parse/train/3hGNqpI4WS/images/28f2399f44d1d36e1e311585fa4505b5585f6ceb535df8d77fee6acdc89a6c43.jpg b/parse/train/3hGNqpI4WS/images/28f2399f44d1d36e1e311585fa4505b5585f6ceb535df8d77fee6acdc89a6c43.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4fcf6e8550828d1c0a4263660a169405b8845a5c --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/28f2399f44d1d36e1e311585fa4505b5585f6ceb535df8d77fee6acdc89a6c43.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3cdc734ce35f6e10685e820b8c8abef66cb6e68e8e7522c62439081ca04d4e5 +size 6071 diff --git a/parse/train/3hGNqpI4WS/images/2dc726091fb37dcc6a4987593fc89d0964cd16c8650d4f3f0031be344dce1213.jpg b/parse/train/3hGNqpI4WS/images/2dc726091fb37dcc6a4987593fc89d0964cd16c8650d4f3f0031be344dce1213.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c25845216d81f075a419b2ce7b5417286459369c --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/2dc726091fb37dcc6a4987593fc89d0964cd16c8650d4f3f0031be344dce1213.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75061c9360b4d0e039eb18764eacb71024c90339a6c26a5dd24776ea97277553 +size 18904 diff --git a/parse/train/3hGNqpI4WS/images/31dde696c0594367a80d70f9fc4587080fb5a3e4444ebb5e37b594bb636d18eb.jpg b/parse/train/3hGNqpI4WS/images/31dde696c0594367a80d70f9fc4587080fb5a3e4444ebb5e37b594bb636d18eb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8d4ff7bac1885ccf0522ef197dd5d7d1caabeef8 --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/31dde696c0594367a80d70f9fc4587080fb5a3e4444ebb5e37b594bb636d18eb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:087d2be2ce4902b87b7dc7938779989063b7a6a3060f979097a5c7d05030012c +size 102716 diff --git a/parse/train/3hGNqpI4WS/images/380b79685657ca35961a182d8249d87b52383e893929db691d571c0225df1788.jpg b/parse/train/3hGNqpI4WS/images/380b79685657ca35961a182d8249d87b52383e893929db691d571c0225df1788.jpg new file mode 100644 index 0000000000000000000000000000000000000000..413e9ba447d1f5e5c05b52b8592ba580f895b825 --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/380b79685657ca35961a182d8249d87b52383e893929db691d571c0225df1788.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:968e119cb9d5f89fa2f34359f96948853758866ff42ca93b8b1b7ec6aa9f8be2 +size 128976 diff --git a/parse/train/3hGNqpI4WS/images/398fcde4eaed74b5a84d11c3a19eb0c34bd1dd1bba4a64a1aaccbee32ce8a45e.jpg b/parse/train/3hGNqpI4WS/images/398fcde4eaed74b5a84d11c3a19eb0c34bd1dd1bba4a64a1aaccbee32ce8a45e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d3ef14f6d7144a7953c40d838e391a7d3159b29 --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/398fcde4eaed74b5a84d11c3a19eb0c34bd1dd1bba4a64a1aaccbee32ce8a45e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:983b55608bdc3ad03d10c5c55fa1d69169e52603ca2a7520aa236b8f46c545d2 +size 5676 diff --git a/parse/train/3hGNqpI4WS/images/3efb47f42995fa78d09c7030250bb993ff41c7fa338cfb246aaf3d62b47b7b86.jpg b/parse/train/3hGNqpI4WS/images/3efb47f42995fa78d09c7030250bb993ff41c7fa338cfb246aaf3d62b47b7b86.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b8694cd9c1d0fe387008965219b450b016699d92 --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/3efb47f42995fa78d09c7030250bb993ff41c7fa338cfb246aaf3d62b47b7b86.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75c25b5a8365ca4870eca61129edd87e237caa3b0795897bde06777a15dfd553 +size 54397 diff --git a/parse/train/3hGNqpI4WS/images/4755817929bd8db982519e32692cfd6b1d33c3aabe852221237d9bf32a39226b.jpg b/parse/train/3hGNqpI4WS/images/4755817929bd8db982519e32692cfd6b1d33c3aabe852221237d9bf32a39226b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..af4840f0ababc71bac33642c970ba623fa10bc0b --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/4755817929bd8db982519e32692cfd6b1d33c3aabe852221237d9bf32a39226b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92ac24b7989f840b7e2ab9bb843dd85f1f35c0a8ad0df688fc75d9109ac26b0b +size 49460 diff --git a/parse/train/3hGNqpI4WS/images/510a7a6f4c53ed1fd9bf08aa7d02a389c968aa539179d59d749e976e7870b259.jpg b/parse/train/3hGNqpI4WS/images/510a7a6f4c53ed1fd9bf08aa7d02a389c968aa539179d59d749e976e7870b259.jpg new file mode 100644 index 0000000000000000000000000000000000000000..66f4f48464810e45a1715300afe5e1c905ef129f --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/510a7a6f4c53ed1fd9bf08aa7d02a389c968aa539179d59d749e976e7870b259.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd45afd4bf82e0a6c95c6b97a79eef85ed8b1994f1cb49f5e76a13e46923608c +size 20163 diff --git a/parse/train/3hGNqpI4WS/images/5bde77e082d02bae1f8f57063a505c8389660c84c3e31f5bf115066a97eec5d1.jpg b/parse/train/3hGNqpI4WS/images/5bde77e082d02bae1f8f57063a505c8389660c84c3e31f5bf115066a97eec5d1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..52abbbb32a2961aa5e4b6b2384cc5daa704167f3 --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/5bde77e082d02bae1f8f57063a505c8389660c84c3e31f5bf115066a97eec5d1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26aceb688291eb9314038dd26a2ac0e141be4bdc286eb8ff3a303e2cd4900570 +size 41776 diff --git a/parse/train/3hGNqpI4WS/images/6a0b7f3bfe2cb62d53bb5b1256c8a3eb377aa3e705d405e2f33cc4f47577999d.jpg b/parse/train/3hGNqpI4WS/images/6a0b7f3bfe2cb62d53bb5b1256c8a3eb377aa3e705d405e2f33cc4f47577999d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..914417dc3a809048d546e41e379cb5593b125794 --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/6a0b7f3bfe2cb62d53bb5b1256c8a3eb377aa3e705d405e2f33cc4f47577999d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e814375efde224bc8443f64885549f7ac80655671255ee44023b68348193ba47 +size 57546 diff --git a/parse/train/3hGNqpI4WS/images/6a1cb8fc593fa991de860c81499864a36dc243a21b814426030744b691e27217.jpg b/parse/train/3hGNqpI4WS/images/6a1cb8fc593fa991de860c81499864a36dc243a21b814426030744b691e27217.jpg new file mode 100644 index 0000000000000000000000000000000000000000..46009f33784ed64bcd2ad09f82491cc3238748a9 --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/6a1cb8fc593fa991de860c81499864a36dc243a21b814426030744b691e27217.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c56739453d34e255f06f2397c8c878d8e7420a0bb3a8084d79785989692c91d5 +size 97683 diff --git a/parse/train/3hGNqpI4WS/images/7fcc04ad00beb4079f7af7b1ac686011f5d205f51c984d1fda920384d2e971df.jpg b/parse/train/3hGNqpI4WS/images/7fcc04ad00beb4079f7af7b1ac686011f5d205f51c984d1fda920384d2e971df.jpg new file mode 100644 index 0000000000000000000000000000000000000000..367f21c8fa2964fb74ad4c5618abb22dfe7fdc4e --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/7fcc04ad00beb4079f7af7b1ac686011f5d205f51c984d1fda920384d2e971df.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7b96a64934af6124d56a18272ea5271360e6ce9fa57d1fcb1fe765476fb1356 +size 4968 diff --git a/parse/train/3hGNqpI4WS/images/88aced6a34cb4f97ea91ae388e1e86d3382eadf9999fc3997ee8d8ad4d836b10.jpg b/parse/train/3hGNqpI4WS/images/88aced6a34cb4f97ea91ae388e1e86d3382eadf9999fc3997ee8d8ad4d836b10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..606dec4a310632cde2907b9b1be4af74e9bf5f67 --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/88aced6a34cb4f97ea91ae388e1e86d3382eadf9999fc3997ee8d8ad4d836b10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c756c7e0ba2c6d72f466146bb6942db471a630b1e7eb3c2326de6272d1379a2 +size 54181 diff --git a/parse/train/3hGNqpI4WS/images/8af682036a9c8970146000e325dfec08320cd1c07d20dafde4f6238f0d1bf694.jpg b/parse/train/3hGNqpI4WS/images/8af682036a9c8970146000e325dfec08320cd1c07d20dafde4f6238f0d1bf694.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1212fe99c6071c1e4c0cbb360e1188f963a9c9f1 --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/8af682036a9c8970146000e325dfec08320cd1c07d20dafde4f6238f0d1bf694.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:875ba1074a9d726f54b5ee8fb2a018978a69395944d136acfc3527c9ed6b47b6 +size 16133 diff --git a/parse/train/3hGNqpI4WS/images/8ccdfa3eb115b464fecd2fe3267fdfdd209a81219d9b0a18cf587294a3b2cc52.jpg b/parse/train/3hGNqpI4WS/images/8ccdfa3eb115b464fecd2fe3267fdfdd209a81219d9b0a18cf587294a3b2cc52.jpg new file mode 100644 index 0000000000000000000000000000000000000000..16e7bd928c9ae0640986585ee2af7e243f841a2e --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/8ccdfa3eb115b464fecd2fe3267fdfdd209a81219d9b0a18cf587294a3b2cc52.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d8f6537069f6680aeca6b2d8d6bdf2f8b949e6ce1688f0d89a0fa0058928737 +size 9794 diff --git a/parse/train/3hGNqpI4WS/images/a5420d75a03349ea446e7f88e19e3708dd033674ec3b139281345a003d9b9ae8.jpg b/parse/train/3hGNqpI4WS/images/a5420d75a03349ea446e7f88e19e3708dd033674ec3b139281345a003d9b9ae8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c7d6e1691879e31582cb1e8654a2bf4b030f1d75 --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/a5420d75a03349ea446e7f88e19e3708dd033674ec3b139281345a003d9b9ae8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77ecbe1c97432dadda501ae8669dc1d83c00de04538b9cdf5f5bdbaf9da6cc86 +size 47438 diff --git a/parse/train/3hGNqpI4WS/images/a5c60f6d4dc2d15f32b77b3fe51506190ea36462050828690ddcd22320f35c19.jpg b/parse/train/3hGNqpI4WS/images/a5c60f6d4dc2d15f32b77b3fe51506190ea36462050828690ddcd22320f35c19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..30227640d1d99cb1323a81a52fb7c292ac8a68a2 --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/a5c60f6d4dc2d15f32b77b3fe51506190ea36462050828690ddcd22320f35c19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f766862aad507d389161e0a448c41f114ef9bb66298beee34be933f707800f47 +size 48468 diff --git a/parse/train/3hGNqpI4WS/images/aa87fc6f3057155c6737ed593a8a5dafd8d078ffdb95066df40607dddf37e869.jpg b/parse/train/3hGNqpI4WS/images/aa87fc6f3057155c6737ed593a8a5dafd8d078ffdb95066df40607dddf37e869.jpg new file mode 100644 index 0000000000000000000000000000000000000000..915b4c7ed4231077407297338b27995bc3b51cc7 --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/aa87fc6f3057155c6737ed593a8a5dafd8d078ffdb95066df40607dddf37e869.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:312f84569b41352c195e76f28a5ccb8f3dade9de3281aacff72df7ab9e8a26c5 +size 21888 diff --git a/parse/train/3hGNqpI4WS/images/acece41c73ec2f834ca9cf9b6bd7fc9f42921e41dec46df584818bce145a09d4.jpg b/parse/train/3hGNqpI4WS/images/acece41c73ec2f834ca9cf9b6bd7fc9f42921e41dec46df584818bce145a09d4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..46fc1ca1f668f63a1428e4bbe9cb5fdc232d37fa --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/acece41c73ec2f834ca9cf9b6bd7fc9f42921e41dec46df584818bce145a09d4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:657ffe7797e6e513f9a23e0a8df7b18dd7354de15e3e7e16dd57e5ff8dc821a1 +size 7167 diff --git a/parse/train/3hGNqpI4WS/images/adbda65b070ce562bc17233c93098a26063b412526439385966fa8c83b1bd933.jpg b/parse/train/3hGNqpI4WS/images/adbda65b070ce562bc17233c93098a26063b412526439385966fa8c83b1bd933.jpg new file mode 100644 index 0000000000000000000000000000000000000000..31a89434bde92a4b9a2a1a5635624a34af17c81f --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/adbda65b070ce562bc17233c93098a26063b412526439385966fa8c83b1bd933.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a583d7c572d1280091ba5bea843a7ba6b64cfffef44557050142970a922342c +size 9159 diff --git a/parse/train/3hGNqpI4WS/images/aefe5703a6af1bb98f484da513d1f7861b5ff52440d53d4cfceab98875c791d8.jpg b/parse/train/3hGNqpI4WS/images/aefe5703a6af1bb98f484da513d1f7861b5ff52440d53d4cfceab98875c791d8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9511fd710700402009951a18d8377b5862255e25 --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/aefe5703a6af1bb98f484da513d1f7861b5ff52440d53d4cfceab98875c791d8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f4ba129781032c7dad2a4382d92a2cc34498648f461b1ef23fe559efea93f45 +size 46539 diff --git a/parse/train/3hGNqpI4WS/images/b5e14c327508062c360ef17f8d7d6f8358413758c78deda33a2faba939bb6d82.jpg b/parse/train/3hGNqpI4WS/images/b5e14c327508062c360ef17f8d7d6f8358413758c78deda33a2faba939bb6d82.jpg new file mode 100644 index 0000000000000000000000000000000000000000..38c56ccc61a770034cee8ccf2b0114756392473c --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/b5e14c327508062c360ef17f8d7d6f8358413758c78deda33a2faba939bb6d82.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dd79c19f1c889e083ced78784a752ba138d68e8bdee31c43cb979bd996d7e57 +size 51239 diff --git a/parse/train/3hGNqpI4WS/images/b92db87a8488301afcc0d533a6528c154563a870085080d2776b335a16c289e9.jpg b/parse/train/3hGNqpI4WS/images/b92db87a8488301afcc0d533a6528c154563a870085080d2776b335a16c289e9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dc72912e06f5f091bc05f78d72361c17dc591fd3 --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/b92db87a8488301afcc0d533a6528c154563a870085080d2776b335a16c289e9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66dad7652ee07e4d934c20ccf8333e2ebb5a8d4fd4ec5a688bcc3d78169bcf48 +size 50862 diff --git a/parse/train/3hGNqpI4WS/images/c2f2c3d72e588942d1f90e27679108d3e13e651aa575885e47b8e07354fb2315.jpg b/parse/train/3hGNqpI4WS/images/c2f2c3d72e588942d1f90e27679108d3e13e651aa575885e47b8e07354fb2315.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f679f4816d0de30929072a8da533cd26acaf30b5 --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/c2f2c3d72e588942d1f90e27679108d3e13e651aa575885e47b8e07354fb2315.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ec500991c96b351d5a6885a5f9cb296fa0f79a7fda0d6b706c352883f7cd994 +size 13779 diff --git a/parse/train/3hGNqpI4WS/images/c3dfc3126e61a5575c4040b8e48f97532d206a09c9889e721728d3fd7fd2dcf6.jpg b/parse/train/3hGNqpI4WS/images/c3dfc3126e61a5575c4040b8e48f97532d206a09c9889e721728d3fd7fd2dcf6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9efa83ba1c07262003305def38463e7925148449 --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/c3dfc3126e61a5575c4040b8e48f97532d206a09c9889e721728d3fd7fd2dcf6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:570492f00fc5e2413877d23adbf747cac8dcdfd172e8d64fae2c29ceea8dc4d5 +size 34823 diff --git a/parse/train/3hGNqpI4WS/images/c5d8d3e93857b4772c71f9250ddb7e71a41d48a084aa8ff5d13896dcd60f0009.jpg b/parse/train/3hGNqpI4WS/images/c5d8d3e93857b4772c71f9250ddb7e71a41d48a084aa8ff5d13896dcd60f0009.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b09d815a1e3e0ad65f00e0a63792d9ca36d950d3 --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/c5d8d3e93857b4772c71f9250ddb7e71a41d48a084aa8ff5d13896dcd60f0009.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edfeaa8f7b4fcd0f80611a4ed33c72b484d0f040a6793487c0a6642d401db699 +size 122894 diff --git a/parse/train/3hGNqpI4WS/images/caaaeaae5c063a15f89b51e7364e62582bf4f0db0e551d24fb5de280da818a2c.jpg b/parse/train/3hGNqpI4WS/images/caaaeaae5c063a15f89b51e7364e62582bf4f0db0e551d24fb5de280da818a2c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b60bb056f4d12568b20fef5b845750d5e61b956a --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/caaaeaae5c063a15f89b51e7364e62582bf4f0db0e551d24fb5de280da818a2c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe65ba4f22377d4ef796ec1d1d39419a1881ea640a1b4c08a0bf49e4737304cb +size 86104 diff --git a/parse/train/3hGNqpI4WS/images/cc6a736a77029996a3131bc442a1cd7ba489b5215b67cb069131c1f6b0992f95.jpg b/parse/train/3hGNqpI4WS/images/cc6a736a77029996a3131bc442a1cd7ba489b5215b67cb069131c1f6b0992f95.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a5f92598f5c9b4c5ec2d07f431ea40d93dff979f --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/cc6a736a77029996a3131bc442a1cd7ba489b5215b67cb069131c1f6b0992f95.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63d3fb443b32817995caaab86f718bc46a457555e4ffd01e5937740fc2fd1858 +size 5488 diff --git a/parse/train/3hGNqpI4WS/images/cd03e1a355c462e8c51673a94646e5c30e546ca5516d39be57268f3f2d32018e.jpg b/parse/train/3hGNqpI4WS/images/cd03e1a355c462e8c51673a94646e5c30e546ca5516d39be57268f3f2d32018e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2ddcebd445be5617878e83191a1a05db3243c745 --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/cd03e1a355c462e8c51673a94646e5c30e546ca5516d39be57268f3f2d32018e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0e512c5dc69955a965b9197b5ed1dff0f15b0fde1d76cd15f22dfd42004d1d4 +size 7535 diff --git a/parse/train/3hGNqpI4WS/images/ce620e6424c73535e915a205c5e5502c596ac9ad74d58381048c4a153f0eb809.jpg b/parse/train/3hGNqpI4WS/images/ce620e6424c73535e915a205c5e5502c596ac9ad74d58381048c4a153f0eb809.jpg new file mode 100644 index 0000000000000000000000000000000000000000..071f64f1bbeeb8c3da006e466785b64675f141cd --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/ce620e6424c73535e915a205c5e5502c596ac9ad74d58381048c4a153f0eb809.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b1019a3726e5a3c1165112f247f76d9b1fb78698294a62524fdad56367237ff +size 16763 diff --git a/parse/train/3hGNqpI4WS/images/cef09bad5b8d3e3b5d0b86ce182a0c4eaca4c96fbcfb6f4abd7c8531617b6820.jpg b/parse/train/3hGNqpI4WS/images/cef09bad5b8d3e3b5d0b86ce182a0c4eaca4c96fbcfb6f4abd7c8531617b6820.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e811219ba003db80deaf92c38c17193ee722533d --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/cef09bad5b8d3e3b5d0b86ce182a0c4eaca4c96fbcfb6f4abd7c8531617b6820.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71e5c7aaa48fda235ffe1ff5c42a5aa553954cd61c71e2b3781fa609ebeb8ee1 +size 18421 diff --git a/parse/train/3hGNqpI4WS/images/d3126046e5e54a3a6f42fe5bd2e6226e1b66a423e4c630c85402fa980d756fdb.jpg b/parse/train/3hGNqpI4WS/images/d3126046e5e54a3a6f42fe5bd2e6226e1b66a423e4c630c85402fa980d756fdb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..04a7c011cf6e67371159f761f150383facac1123 --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/d3126046e5e54a3a6f42fe5bd2e6226e1b66a423e4c630c85402fa980d756fdb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa88c6897c2509f5cd0b818424d8188eac6fd66a6b9fe3938e9c86d4f50854ef +size 68950 diff --git a/parse/train/3hGNqpI4WS/images/d4b7db2b7c0236b75d1498e37817a81892cf444ccaaf33effb12564d6ca2dc21.jpg b/parse/train/3hGNqpI4WS/images/d4b7db2b7c0236b75d1498e37817a81892cf444ccaaf33effb12564d6ca2dc21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9a0023304844eadd5f9e060569a6d4974bfde93b --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/d4b7db2b7c0236b75d1498e37817a81892cf444ccaaf33effb12564d6ca2dc21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1852adf8ed302ca3e6ee73e02a031bacb2e822230f743c1f6031be4e7514afb6 +size 58477 diff --git a/parse/train/3hGNqpI4WS/images/d61ef7ba6dbba742a282990d7b12e361b9ee354446876eed6f9a57f566e8039b.jpg b/parse/train/3hGNqpI4WS/images/d61ef7ba6dbba742a282990d7b12e361b9ee354446876eed6f9a57f566e8039b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1538b254f258217c7c81dedc0227fdaca012be60 --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/d61ef7ba6dbba742a282990d7b12e361b9ee354446876eed6f9a57f566e8039b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61062f9a616f65cbbb06da5b745ce43b5c6883257e3228c0e8513b1ab133bbb5 +size 7823 diff --git a/parse/train/3hGNqpI4WS/images/d9bc704351f20f3bf3fe30910804c40f1535b0cbc6b7b20c34aaf8f4523b2285.jpg b/parse/train/3hGNqpI4WS/images/d9bc704351f20f3bf3fe30910804c40f1535b0cbc6b7b20c34aaf8f4523b2285.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c2d471bef12cd9b011b3ad2138c54afc0a2f3124 --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/d9bc704351f20f3bf3fe30910804c40f1535b0cbc6b7b20c34aaf8f4523b2285.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77856bffd519642fcb955bc03df384f26edc216227df73aa3c9c3bde4d2afcf9 +size 48632 diff --git a/parse/train/3hGNqpI4WS/images/da843c61732773303b62a35fa53a00983025285105e1b4d41a644d386b72b9a6.jpg b/parse/train/3hGNqpI4WS/images/da843c61732773303b62a35fa53a00983025285105e1b4d41a644d386b72b9a6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b39ea2bf46cef7f6ac0a9604af8325eaf5c167c0 --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/da843c61732773303b62a35fa53a00983025285105e1b4d41a644d386b72b9a6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f895a0f2f5b39caee827e9e28c53a9ac6e93fae70b9fa2e638b85f0d75d0aac7 +size 162549 diff --git a/parse/train/3hGNqpI4WS/images/dc340071f12361b39a5e91cdb583922019af7ff05d0a8d67d4402eec2d3f9721.jpg b/parse/train/3hGNqpI4WS/images/dc340071f12361b39a5e91cdb583922019af7ff05d0a8d67d4402eec2d3f9721.jpg new file mode 100644 index 0000000000000000000000000000000000000000..812230792227815073c9d9cba1caf667ab935f9e --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/dc340071f12361b39a5e91cdb583922019af7ff05d0a8d67d4402eec2d3f9721.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d56866cd80c517a45c417d0fe84cb8ea969c881ab2b6938a00d7e64da01a726 +size 8878 diff --git a/parse/train/3hGNqpI4WS/images/dc95e3b3e4427eee9f1dd8c199b2f4aa7b26ef0533ddc221497d05deb5fd6650.jpg b/parse/train/3hGNqpI4WS/images/dc95e3b3e4427eee9f1dd8c199b2f4aa7b26ef0533ddc221497d05deb5fd6650.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8c3dfd48775b079c97c07f4e1b4ae3ac1f29c04b --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/dc95e3b3e4427eee9f1dd8c199b2f4aa7b26ef0533ddc221497d05deb5fd6650.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cddd85c644c2ee49b97dd06d9f9a7a7944553b65648abf8074f1d5d632bc8f8 +size 5959 diff --git a/parse/train/3hGNqpI4WS/images/dd467a13475aaa5cb2f106904be422eee8725c7d1362d2167e7a9ddb7c8b3d1c.jpg b/parse/train/3hGNqpI4WS/images/dd467a13475aaa5cb2f106904be422eee8725c7d1362d2167e7a9ddb7c8b3d1c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0b45bbf147a013ac20f019d068adfec8dd2fea76 --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/dd467a13475aaa5cb2f106904be422eee8725c7d1362d2167e7a9ddb7c8b3d1c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:726e1791876994ba66bccebe4895e586fd8e8e6050e3c6a441785cfd61cec83b +size 86877 diff --git a/parse/train/3hGNqpI4WS/images/e336bd4ed3f1cc2665e6fc99ab776b4c797ca110856fae70c3856d98bed9c733.jpg b/parse/train/3hGNqpI4WS/images/e336bd4ed3f1cc2665e6fc99ab776b4c797ca110856fae70c3856d98bed9c733.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4bfe8385df88725134a4062c5b61f481e361d725 --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/e336bd4ed3f1cc2665e6fc99ab776b4c797ca110856fae70c3856d98bed9c733.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6b2461efa015a5129f0c227c23c437f32f76cecd2d4112d789aa65460542e35 +size 53325 diff --git a/parse/train/3hGNqpI4WS/images/e3aa31a1dfb8de492f2a7d1dd0ba0b09d7546b19b72131e2fcba0161b0bbc2a1.jpg b/parse/train/3hGNqpI4WS/images/e3aa31a1dfb8de492f2a7d1dd0ba0b09d7546b19b72131e2fcba0161b0bbc2a1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..17bead7a28bf38647a0827aee133911a3a1fcd64 --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/e3aa31a1dfb8de492f2a7d1dd0ba0b09d7546b19b72131e2fcba0161b0bbc2a1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3be4aabb5bdc75e0cb7e84af9181275883d9cb29fe813f7aeeca4501c14ebdc +size 57794 diff --git a/parse/train/3hGNqpI4WS/images/e4a79595f8df889828b941ec6d05aca10bd9f4d0a7a9a704b384c7c841649438.jpg b/parse/train/3hGNqpI4WS/images/e4a79595f8df889828b941ec6d05aca10bd9f4d0a7a9a704b384c7c841649438.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3eb1a4a09002994377f20d6eff789a6bf937d3bd --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/e4a79595f8df889828b941ec6d05aca10bd9f4d0a7a9a704b384c7c841649438.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c80e8c785d0a21331064209328b5fad946f7ae76438554a910065441538834a +size 38647 diff --git a/parse/train/3hGNqpI4WS/images/e7fbb1985511ad7e639f10932800c9a46a2e1ab41d3aa44609db46b5b84b8f7d.jpg b/parse/train/3hGNqpI4WS/images/e7fbb1985511ad7e639f10932800c9a46a2e1ab41d3aa44609db46b5b84b8f7d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fb448af53062c8352a23b54d3f7d49638ea72bb6 --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/e7fbb1985511ad7e639f10932800c9a46a2e1ab41d3aa44609db46b5b84b8f7d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdf3f489d9928259fb2051fc70c7c0272610c4e6229619a05977543f2754db36 +size 46159 diff --git a/parse/train/3hGNqpI4WS/images/e8bd3de5b194349afabaa366a65cff854f71e8cdf7495f71533961a224245881.jpg b/parse/train/3hGNqpI4WS/images/e8bd3de5b194349afabaa366a65cff854f71e8cdf7495f71533961a224245881.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7a5b6efe709a11084eb7b68296848b296109f43e --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/e8bd3de5b194349afabaa366a65cff854f71e8cdf7495f71533961a224245881.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ed6ffd2fe41bf8a4695f1eaa720912a147e2b8558078b60a90d4b52816105c1 +size 47584 diff --git a/parse/train/3hGNqpI4WS/images/ea8f638bbf7ff6349d977a1d93087eacd6ddcf16af53ed9bbe789657b09ce501.jpg b/parse/train/3hGNqpI4WS/images/ea8f638bbf7ff6349d977a1d93087eacd6ddcf16af53ed9bbe789657b09ce501.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8ed64dc54848a4449f49a260cae70b0c364f3408 --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/ea8f638bbf7ff6349d977a1d93087eacd6ddcf16af53ed9bbe789657b09ce501.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dbf68fe6a8c7057170b63b33e4629fff2e5363e86a17c8a382adcc5ddad8b14 +size 48707 diff --git a/parse/train/3hGNqpI4WS/images/f7f775ecb6dd3a924b4eb9058d7436ed3071014842ad90e854f68d8851a101b6.jpg b/parse/train/3hGNqpI4WS/images/f7f775ecb6dd3a924b4eb9058d7436ed3071014842ad90e854f68d8851a101b6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8286c0a2690cccbda39eaebebe3292e7890a860a --- /dev/null +++ b/parse/train/3hGNqpI4WS/images/f7f775ecb6dd3a924b4eb9058d7436ed3071014842ad90e854f68d8851a101b6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f542256826adb180fbc772df6164c19587432b57bc819429ef9c3d8351e4cc5 +size 50801 diff --git a/parse/train/5lhWG3Hj2By/images/006c916e6aa44e3f2e7084bb5f1b8b6152ce5f6280ca1dc70308b9825bb6b69a.jpg b/parse/train/5lhWG3Hj2By/images/006c916e6aa44e3f2e7084bb5f1b8b6152ce5f6280ca1dc70308b9825bb6b69a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..77b7461b6ff62fdddf6e50c5b8aa84205403da5f --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/006c916e6aa44e3f2e7084bb5f1b8b6152ce5f6280ca1dc70308b9825bb6b69a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:129c9bed558a94791e1c7db02461fddf2eb5ce5c4ccb6b0b8874b81b5101d829 +size 11238 diff --git a/parse/train/5lhWG3Hj2By/images/015332d8fafe829830e82eb0c93ddcc920deab96375a184141e68dbce4340e99.jpg b/parse/train/5lhWG3Hj2By/images/015332d8fafe829830e82eb0c93ddcc920deab96375a184141e68dbce4340e99.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9a78b2931f15f0eb7463bd6d169230c9d6db1a00 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/015332d8fafe829830e82eb0c93ddcc920deab96375a184141e68dbce4340e99.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4b8ec5e3b3d65f4b5711c88265912ff8e1b823fd12d8d529cf21ab0444eff94 +size 10159 diff --git a/parse/train/5lhWG3Hj2By/images/04eee5533ca998150e4445dbe9d5f77f1481f57f7d9bdd2933c5e1ba9ab54c9e.jpg b/parse/train/5lhWG3Hj2By/images/04eee5533ca998150e4445dbe9d5f77f1481f57f7d9bdd2933c5e1ba9ab54c9e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e5c2106f1cf1c39f9ece56ce4fa76a6d4f6ced13 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/04eee5533ca998150e4445dbe9d5f77f1481f57f7d9bdd2933c5e1ba9ab54c9e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daeb6eb84a1c75c56bc8b959f4fba9c92bdfef296cd5b7b764592cc5e65395c7 +size 15704 diff --git a/parse/train/5lhWG3Hj2By/images/0865b82fcb24f7bb0f214ef13da75eebf23c0e022796a04178963fa56a9900a9.jpg b/parse/train/5lhWG3Hj2By/images/0865b82fcb24f7bb0f214ef13da75eebf23c0e022796a04178963fa56a9900a9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d20ffed0db48dce618727177a43b067325b80d17 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/0865b82fcb24f7bb0f214ef13da75eebf23c0e022796a04178963fa56a9900a9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d65999ceae5355bae773f318b425345c3e576833265398e15b6406e9595914d +size 9615 diff --git a/parse/train/5lhWG3Hj2By/images/0c0ff0fb9262e4025f8d5d70dbbb3093579be4b74ca1ac6537eb81c9eaf7e4f2.jpg b/parse/train/5lhWG3Hj2By/images/0c0ff0fb9262e4025f8d5d70dbbb3093579be4b74ca1ac6537eb81c9eaf7e4f2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..33714ee3276e9be1d93f84feb8380b7679d56876 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/0c0ff0fb9262e4025f8d5d70dbbb3093579be4b74ca1ac6537eb81c9eaf7e4f2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bda27bf14faf3aac26d0d3dd4b9bd99f232e4160d9a83c9e0373b12f40a15fc1 +size 7093 diff --git a/parse/train/5lhWG3Hj2By/images/0d28132d07f134c1536014779b58b2d7a5be22b7a44e37988dbd172c51c32da0.jpg b/parse/train/5lhWG3Hj2By/images/0d28132d07f134c1536014779b58b2d7a5be22b7a44e37988dbd172c51c32da0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..32b5fcd3d7a92101f7c169af2d9c2439f2ff22ce --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/0d28132d07f134c1536014779b58b2d7a5be22b7a44e37988dbd172c51c32da0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6abef5ac8f4cbea7861aa872d6bb91acda7b5c84208cf6c69268d55c60e7528c +size 4960 diff --git a/parse/train/5lhWG3Hj2By/images/0f2d46ea079b2a1929b05667435762f73bdd01cf1985ab4be0e64549d1045edc.jpg b/parse/train/5lhWG3Hj2By/images/0f2d46ea079b2a1929b05667435762f73bdd01cf1985ab4be0e64549d1045edc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c991ff88632ef20f627be68d0200ae44d69aa099 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/0f2d46ea079b2a1929b05667435762f73bdd01cf1985ab4be0e64549d1045edc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d83b72a9d4782ac64d5facafd7edb71dbfd44b957641c9078914a544a591ff7 +size 37245 diff --git a/parse/train/5lhWG3Hj2By/images/102f8407dbd77b640e3d62e31446c4629c3ca787beee50f2a9ce85e8bd4cde0d.jpg b/parse/train/5lhWG3Hj2By/images/102f8407dbd77b640e3d62e31446c4629c3ca787beee50f2a9ce85e8bd4cde0d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f170ebe121ec011b8db1ac2cd8dddd0a53aa4350 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/102f8407dbd77b640e3d62e31446c4629c3ca787beee50f2a9ce85e8bd4cde0d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3f34347cf26043076625a42f6dd37d9c6cd620004a34423103b2f6eecb3ccc6 +size 2310 diff --git a/parse/train/5lhWG3Hj2By/images/105f39e82349046850aaff3dfe1722bbf6306df4f18945173b83001d61b7c37c.jpg b/parse/train/5lhWG3Hj2By/images/105f39e82349046850aaff3dfe1722bbf6306df4f18945173b83001d61b7c37c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d51819e2b962d790dfeecf8990eaa792c6199bf --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/105f39e82349046850aaff3dfe1722bbf6306df4f18945173b83001d61b7c37c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81497eefa1a73eef4c4b1aa090cd86ff55a6c101c87972f03516ac35b20de819 +size 6792 diff --git a/parse/train/5lhWG3Hj2By/images/130fa393e72b8965ae22aeeeaaabc2abde0b018dbce12193e66e829043f0bb9c.jpg b/parse/train/5lhWG3Hj2By/images/130fa393e72b8965ae22aeeeaaabc2abde0b018dbce12193e66e829043f0bb9c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0ff2ffca1762e1ebd39a746d2e6ac1408ce83cb3 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/130fa393e72b8965ae22aeeeaaabc2abde0b018dbce12193e66e829043f0bb9c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed832e4d0bb089e27ca7c78dd8e1eab0dcdaec723601d00c64e6aeb1cbe0ed45 +size 4716 diff --git a/parse/train/5lhWG3Hj2By/images/13930e5f63223641baa6ff160f92973b622291ef523106d287d15bb942a427e4.jpg b/parse/train/5lhWG3Hj2By/images/13930e5f63223641baa6ff160f92973b622291ef523106d287d15bb942a427e4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4fdf107873bedde08bdd641b7326f8662cdf086a --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/13930e5f63223641baa6ff160f92973b622291ef523106d287d15bb942a427e4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:286d3e46ab0f3d5ebc631b9286878a639ddfac1a16554c6f6b99a28da05cb934 +size 6339 diff --git a/parse/train/5lhWG3Hj2By/images/17a7a052e7dd77c48948991cd50b447b2d043e965332cba7a22206a9ff669496.jpg b/parse/train/5lhWG3Hj2By/images/17a7a052e7dd77c48948991cd50b447b2d043e965332cba7a22206a9ff669496.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9db65a10ef5b34eecb6e6815880e0d7656e3a1cb --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/17a7a052e7dd77c48948991cd50b447b2d043e965332cba7a22206a9ff669496.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f86d8a82a4a9c4b61490187cf3e4949f4aa6a43f00d65e17849e927e49f76b3 +size 9179 diff --git a/parse/train/5lhWG3Hj2By/images/17f5b62735d8183618eb6f355316b57f303649f87114f3fd53df64d7f59310fc.jpg b/parse/train/5lhWG3Hj2By/images/17f5b62735d8183618eb6f355316b57f303649f87114f3fd53df64d7f59310fc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cddc9cd5f95bd1ca9cefb003f8287309629b7bad --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/17f5b62735d8183618eb6f355316b57f303649f87114f3fd53df64d7f59310fc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b5461715b12b6d2732ad7271d1196dff06c2f072b3a0dfa6f109e5382203481 +size 7558 diff --git a/parse/train/5lhWG3Hj2By/images/1840c4a1176ae29cab8f6a9b757ce46f02be868abfe8bb13e9e30e3f19b1c173.jpg b/parse/train/5lhWG3Hj2By/images/1840c4a1176ae29cab8f6a9b757ce46f02be868abfe8bb13e9e30e3f19b1c173.jpg new file mode 100644 index 0000000000000000000000000000000000000000..135d25d65b18b0e97494f4e640060da5c92ee8d6 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/1840c4a1176ae29cab8f6a9b757ce46f02be868abfe8bb13e9e30e3f19b1c173.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67b8b7c1c1471d7375f2fb3c440c1e9c6c960cc97fea77daa07abb3222f8cb97 +size 7421 diff --git a/parse/train/5lhWG3Hj2By/images/1b5b713f6c9aa78791a8658426c77336df5f2102ca148a33b79e5874bf473564.jpg b/parse/train/5lhWG3Hj2By/images/1b5b713f6c9aa78791a8658426c77336df5f2102ca148a33b79e5874bf473564.jpg new file mode 100644 index 0000000000000000000000000000000000000000..71c4932d3936ffaf8b03261a4bc8dd164e3aea63 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/1b5b713f6c9aa78791a8658426c77336df5f2102ca148a33b79e5874bf473564.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:269801762f399e4761b0f5ef6a37ac8fd286dafb4ef4d9111b8d023ce02cf86e +size 8327 diff --git a/parse/train/5lhWG3Hj2By/images/1c85a085718996c8f652f8c57f77df06206273849015d0d665db6040fe176ced.jpg b/parse/train/5lhWG3Hj2By/images/1c85a085718996c8f652f8c57f77df06206273849015d0d665db6040fe176ced.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1a05bd4473527d99438e20d46f3b4faea5faf658 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/1c85a085718996c8f652f8c57f77df06206273849015d0d665db6040fe176ced.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0c9a714da3ff8bdfa8bed285a936ebaf58cc803aa1c035935b14adc7001e574 +size 30320 diff --git a/parse/train/5lhWG3Hj2By/images/23e82f508fc9b29ff4a64f8c1fe6a40af203881ef190e2a952e36ddcab1ff041.jpg b/parse/train/5lhWG3Hj2By/images/23e82f508fc9b29ff4a64f8c1fe6a40af203881ef190e2a952e36ddcab1ff041.jpg new file mode 100644 index 0000000000000000000000000000000000000000..88e3acdb30f14ee21e79237685681e753fd29cb4 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/23e82f508fc9b29ff4a64f8c1fe6a40af203881ef190e2a952e36ddcab1ff041.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:135eee00e649b44fbfcad72ee80f213076924dd469536d1a1f37d1b4d86bce92 +size 73732 diff --git a/parse/train/5lhWG3Hj2By/images/262b1bc8ca82aada97d446ab74830a66b6ffa7b715fca40f158fc456249e5574.jpg b/parse/train/5lhWG3Hj2By/images/262b1bc8ca82aada97d446ab74830a66b6ffa7b715fca40f158fc456249e5574.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7ab86b93305e5a2cc31e72c13f2190d28694331c --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/262b1bc8ca82aada97d446ab74830a66b6ffa7b715fca40f158fc456249e5574.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a632abc7eeb15dd46ee1a6e0f40f823265c490639eb717916c3fb7ceb16de94e +size 9250 diff --git a/parse/train/5lhWG3Hj2By/images/2fc37bb7d1166f00f579cacdaaaffe284e9de2698396e08da329a95e91ec9a0f.jpg b/parse/train/5lhWG3Hj2By/images/2fc37bb7d1166f00f579cacdaaaffe284e9de2698396e08da329a95e91ec9a0f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ed03a6b30bea035d5d116aa09f26e10ba5d68b93 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/2fc37bb7d1166f00f579cacdaaaffe284e9de2698396e08da329a95e91ec9a0f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b7dfe03090032000794093fd71410b1c6aec6ee942e6b3703a2504b7e500b51 +size 17974 diff --git a/parse/train/5lhWG3Hj2By/images/327caa118ff8e20b0479168ef76aba00e5b6f9934a76834fab62aaae42a05112.jpg b/parse/train/5lhWG3Hj2By/images/327caa118ff8e20b0479168ef76aba00e5b6f9934a76834fab62aaae42a05112.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d7e47414dc6f1c8f3a902149a47a41533233c96a --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/327caa118ff8e20b0479168ef76aba00e5b6f9934a76834fab62aaae42a05112.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48304e68edb804872dc705a5bde4b54dc729122f88ca7f57c49d6d78e3c99674 +size 10579 diff --git a/parse/train/5lhWG3Hj2By/images/3471aa46da3809380ae6b45d7581a172501a115d82052055660cc50f4a284252.jpg b/parse/train/5lhWG3Hj2By/images/3471aa46da3809380ae6b45d7581a172501a115d82052055660cc50f4a284252.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8bb680170c2bc15c1ae4e04a059b1ee3ec39d3b4 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/3471aa46da3809380ae6b45d7581a172501a115d82052055660cc50f4a284252.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77c51b9f97dc0ce6adb0e2ef248bdc82c1e2b4c8bbc96c58464992ce09cfb185 +size 3964 diff --git a/parse/train/5lhWG3Hj2By/images/37dce3723583ccc06c542c623af625d62363b1e3f907ad04e75993cb8385377f.jpg b/parse/train/5lhWG3Hj2By/images/37dce3723583ccc06c542c623af625d62363b1e3f907ad04e75993cb8385377f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ca3e6cb199a2a367f244b69cbbba818ea29b9d44 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/37dce3723583ccc06c542c623af625d62363b1e3f907ad04e75993cb8385377f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:737a37aac49f942e344c04d7dcd53647bd80e0b5873592eeea62b8989e7b81f6 +size 10275 diff --git a/parse/train/5lhWG3Hj2By/images/3b275e2e79c4c19ee14c3f19e4948d70aa7b23d8e2ef5260ef3d67a00641eb3c.jpg b/parse/train/5lhWG3Hj2By/images/3b275e2e79c4c19ee14c3f19e4948d70aa7b23d8e2ef5260ef3d67a00641eb3c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..32ebcb0f532bdc498e18bc9d566ad2375c4c8529 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/3b275e2e79c4c19ee14c3f19e4948d70aa7b23d8e2ef5260ef3d67a00641eb3c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f143074b32c35cee0c68c2573cd0f474f958186e5e9b0b5685f5c0aa7b024de +size 62591 diff --git a/parse/train/5lhWG3Hj2By/images/3c83e4a640084c657b082dd0cfda0bfa926265db6428b1a1d906189719b65f19.jpg b/parse/train/5lhWG3Hj2By/images/3c83e4a640084c657b082dd0cfda0bfa926265db6428b1a1d906189719b65f19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9b28719d6889624c3be067f66ab39507ad164e86 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/3c83e4a640084c657b082dd0cfda0bfa926265db6428b1a1d906189719b65f19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4f82b3a132d39bca64e9b7507698faeae8d477cc3a8120c8cfb1803126e153b +size 12154 diff --git a/parse/train/5lhWG3Hj2By/images/3efadf62d08a9208a681c130241b0cf69133a8eb7455ea91392329a55cc73a4e.jpg b/parse/train/5lhWG3Hj2By/images/3efadf62d08a9208a681c130241b0cf69133a8eb7455ea91392329a55cc73a4e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0ab230087c04c4fc6ad155080381162b78b7c33f --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/3efadf62d08a9208a681c130241b0cf69133a8eb7455ea91392329a55cc73a4e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea1bdf4820f221419de48aef34e6d04f5fb25018138e5fcbbc5566727054213f +size 25413 diff --git a/parse/train/5lhWG3Hj2By/images/3fe3143ebfdfdd30e8fa43c366879b0dda87003aaffc368cef9db022a25feb55.jpg b/parse/train/5lhWG3Hj2By/images/3fe3143ebfdfdd30e8fa43c366879b0dda87003aaffc368cef9db022a25feb55.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2504d12fed188c7251f19229da133f0123fb1382 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/3fe3143ebfdfdd30e8fa43c366879b0dda87003aaffc368cef9db022a25feb55.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db86f8e4be967829d7258c40c9b8a2c75632e157a03673470adb89946c2ed647 +size 11878 diff --git a/parse/train/5lhWG3Hj2By/images/457e5d845a391badabf2d8d4a6aebe55b2dc5c3e2a44184b0a5d1365e76ad86b.jpg b/parse/train/5lhWG3Hj2By/images/457e5d845a391badabf2d8d4a6aebe55b2dc5c3e2a44184b0a5d1365e76ad86b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..79e070a34366145f41e3ba4165d7e6e78360ec8f --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/457e5d845a391badabf2d8d4a6aebe55b2dc5c3e2a44184b0a5d1365e76ad86b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07b1f44d712ba011a505c2176599456d2fdc747e11edd416f8834b29c97b8376 +size 5862 diff --git a/parse/train/5lhWG3Hj2By/images/4719f9c5f957cdb5adfc502f13e6122d2d743c7236ecded73ee9524dc3d5aa61.jpg b/parse/train/5lhWG3Hj2By/images/4719f9c5f957cdb5adfc502f13e6122d2d743c7236ecded73ee9524dc3d5aa61.jpg new file mode 100644 index 0000000000000000000000000000000000000000..919ecf831d7a7f41306005ded2c1019196d18885 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/4719f9c5f957cdb5adfc502f13e6122d2d743c7236ecded73ee9524dc3d5aa61.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:328a2e868194fe70b21949d262f0ce7f0c433ec7d5d61d16054667c02384edf1 +size 9505 diff --git a/parse/train/5lhWG3Hj2By/images/47f49fe98aa55a337da078ce1fc28dc5d434e1f3e2dda0773378a94f01937e18.jpg b/parse/train/5lhWG3Hj2By/images/47f49fe98aa55a337da078ce1fc28dc5d434e1f3e2dda0773378a94f01937e18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f55cd3f19b3826069e248e5d4056a31e7832c7b8 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/47f49fe98aa55a337da078ce1fc28dc5d434e1f3e2dda0773378a94f01937e18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e59dd99ce1fd50b023b8a2b9ac7b0d8fc21d4b79f5ec7c7e0f2ef0afbd58abe +size 6988 diff --git a/parse/train/5lhWG3Hj2By/images/4807a8447feb7e3a5cf3256b694ed99d0089d173a3c96e25d1d9182f05730214.jpg b/parse/train/5lhWG3Hj2By/images/4807a8447feb7e3a5cf3256b694ed99d0089d173a3c96e25d1d9182f05730214.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cbc85b3b35be9ae78fe0293d97e9c3c073bacf3e --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/4807a8447feb7e3a5cf3256b694ed99d0089d173a3c96e25d1d9182f05730214.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:790f538083358db850d3cd6da2db49871e00bef2c8076479ae371c34fcfcf268 +size 4471 diff --git a/parse/train/5lhWG3Hj2By/images/4b13f5d9232e9222f57e5058bab33f3e09e931ab0c7e5f5f9536f5561eda51a3.jpg b/parse/train/5lhWG3Hj2By/images/4b13f5d9232e9222f57e5058bab33f3e09e931ab0c7e5f5f9536f5561eda51a3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6eb97f285af10fe67d50174d72e9a55b014d3112 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/4b13f5d9232e9222f57e5058bab33f3e09e931ab0c7e5f5f9536f5561eda51a3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf2d2ec7eb9080d6a4779b2c5b0f67ebb802c81152023a9ed7c6df2e09d4e864 +size 10221 diff --git a/parse/train/5lhWG3Hj2By/images/4f0c20f728ab78066e903c1763f56794e4fceac4fe30111795f665fabf420cc8.jpg b/parse/train/5lhWG3Hj2By/images/4f0c20f728ab78066e903c1763f56794e4fceac4fe30111795f665fabf420cc8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aea4b66e3ec58f141cadefd713b4fd14c63c8cae --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/4f0c20f728ab78066e903c1763f56794e4fceac4fe30111795f665fabf420cc8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fba526b82d463a4a1ab22728868b215b8dee6f2c929cd428a5ce6bd610f3d9e +size 5947 diff --git a/parse/train/5lhWG3Hj2By/images/55ff48206846fd79c22f84c7910fc74b566e391ab0bf34cc86c22c952f2d89b1.jpg b/parse/train/5lhWG3Hj2By/images/55ff48206846fd79c22f84c7910fc74b566e391ab0bf34cc86c22c952f2d89b1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b88df9c8e2031fbfcfddba709f62d10242c7625b --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/55ff48206846fd79c22f84c7910fc74b566e391ab0bf34cc86c22c952f2d89b1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c626dba494b2daa828059defbdd3698f75dee50836720f7b3ab805048ea2f86c +size 13200 diff --git a/parse/train/5lhWG3Hj2By/images/5b9602fe788f130a5053b8482a80017599180e9b4c814c26168c8a3eddd523cb.jpg b/parse/train/5lhWG3Hj2By/images/5b9602fe788f130a5053b8482a80017599180e9b4c814c26168c8a3eddd523cb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..03117be168640d5ad41897abb99073aae2f363f9 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/5b9602fe788f130a5053b8482a80017599180e9b4c814c26168c8a3eddd523cb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e798c8483ed311a04470119c34e9420007b6c9b03b8c1f31c0bf3fe5137ee87a +size 6530 diff --git a/parse/train/5lhWG3Hj2By/images/5b9dfe977e4c591d52b1364773e83e313c6b2afcd96069954dc1652cde8af4ba.jpg b/parse/train/5lhWG3Hj2By/images/5b9dfe977e4c591d52b1364773e83e313c6b2afcd96069954dc1652cde8af4ba.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5101b4162faae7321b6d4881545c13c54bdaead3 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/5b9dfe977e4c591d52b1364773e83e313c6b2afcd96069954dc1652cde8af4ba.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e18cabcb542f4e92b25ae647e8c87e6e402943ec80fd734b9c7cf519099460e8 +size 42228 diff --git a/parse/train/5lhWG3Hj2By/images/5e272f0083fa5428a9852d0de9952c8a257d6010709503cb97fbeb4854ec03a9.jpg b/parse/train/5lhWG3Hj2By/images/5e272f0083fa5428a9852d0de9952c8a257d6010709503cb97fbeb4854ec03a9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..47f71e845a12ca8576c629d42e743ac696830b6a --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/5e272f0083fa5428a9852d0de9952c8a257d6010709503cb97fbeb4854ec03a9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e3ed6a25b0b68323c17e97e71c6a295cd624d0d90b90c88199a63a81c0c6814 +size 4944 diff --git a/parse/train/5lhWG3Hj2By/images/5edeed403ce5348727a912c31368b9302ae2499eb820a95a3d7a6a136fcaceaa.jpg b/parse/train/5lhWG3Hj2By/images/5edeed403ce5348727a912c31368b9302ae2499eb820a95a3d7a6a136fcaceaa.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d784af940c6674d88bf2a15cfec69e85e35a0464 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/5edeed403ce5348727a912c31368b9302ae2499eb820a95a3d7a6a136fcaceaa.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0d3935cf76d9061f6254fab273bc980c00f1e185b28b55410b4e3d17ca4c662 +size 3711 diff --git a/parse/train/5lhWG3Hj2By/images/5feb76dbcb285e5e334a47bc0b4670b2be13b8e21e01a84b3232e8453b0f6168.jpg b/parse/train/5lhWG3Hj2By/images/5feb76dbcb285e5e334a47bc0b4670b2be13b8e21e01a84b3232e8453b0f6168.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f1c9996795e13f713dc4d46c248e989ed42d88e9 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/5feb76dbcb285e5e334a47bc0b4670b2be13b8e21e01a84b3232e8453b0f6168.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70d1a665edaf1feeee0e0b6c9608abb77b223d20572fadd3f5281c0a2ca2f427 +size 14149 diff --git a/parse/train/5lhWG3Hj2By/images/6143bd314f9e5d65dc0cacd00c00df38cf58deb9318481af9a0f6dead037e3af.jpg b/parse/train/5lhWG3Hj2By/images/6143bd314f9e5d65dc0cacd00c00df38cf58deb9318481af9a0f6dead037e3af.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d88635d8894ab5714b35a887b224d5aec576f7f5 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/6143bd314f9e5d65dc0cacd00c00df38cf58deb9318481af9a0f6dead037e3af.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f83f73d1146aa48e60de4a6f1bc5967d809a8e35c0965c4d5f4fd7ec3030fa8 +size 8719 diff --git a/parse/train/5lhWG3Hj2By/images/63bacd5eaa54a5ea84e745f5a6fd9457136d41347716a9bdb114732e3fe4087d.jpg b/parse/train/5lhWG3Hj2By/images/63bacd5eaa54a5ea84e745f5a6fd9457136d41347716a9bdb114732e3fe4087d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..36a61b346d379756f454cee2f37ec27df2d57022 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/63bacd5eaa54a5ea84e745f5a6fd9457136d41347716a9bdb114732e3fe4087d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5937752f029ad64943f09c77f81d626da4fc8a0d9e4ac8d7c118569915426289 +size 152271 diff --git a/parse/train/5lhWG3Hj2By/images/64b6b9b37cdd658bec0ae860817a4371044bac8e7bc9314ae072e7f183e2d046.jpg b/parse/train/5lhWG3Hj2By/images/64b6b9b37cdd658bec0ae860817a4371044bac8e7bc9314ae072e7f183e2d046.jpg new file mode 100644 index 0000000000000000000000000000000000000000..882d345ff766fe0cd23d6717f7db319c38ff8c98 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/64b6b9b37cdd658bec0ae860817a4371044bac8e7bc9314ae072e7f183e2d046.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:952391692ba65770aaa8f4b8ada0a496e11eb31f50988830eda6a271d0400d68 +size 19190 diff --git a/parse/train/5lhWG3Hj2By/images/64c2cafd7d019e056ce33716b02370897ac2d52e16c58f1870a906efebe358ea.jpg b/parse/train/5lhWG3Hj2By/images/64c2cafd7d019e056ce33716b02370897ac2d52e16c58f1870a906efebe358ea.jpg new file mode 100644 index 0000000000000000000000000000000000000000..473b72718e78d551a9522fe6b93e7cf688ed528a --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/64c2cafd7d019e056ce33716b02370897ac2d52e16c58f1870a906efebe358ea.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbcd357f84df904c60eafc8e153070f01926812db2c0b2fcf47f294b0c2a7741 +size 103204 diff --git a/parse/train/5lhWG3Hj2By/images/669f9d39213272bbd12896201a07a38c547b391fab8b629e5e2322104ae35590.jpg b/parse/train/5lhWG3Hj2By/images/669f9d39213272bbd12896201a07a38c547b391fab8b629e5e2322104ae35590.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c0d3436c5d66cd6d42a8b0df2086ef2410eff680 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/669f9d39213272bbd12896201a07a38c547b391fab8b629e5e2322104ae35590.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:713db0979f111ebff9ce4e04d3ddbe4316ab1941f4f45bf0fa4b69b43b5023a3 +size 20078 diff --git a/parse/train/5lhWG3Hj2By/images/708f8c279d17372998d8117ce8d7f21e0b6ecad1c21af72048604cf87b9d6145.jpg b/parse/train/5lhWG3Hj2By/images/708f8c279d17372998d8117ce8d7f21e0b6ecad1c21af72048604cf87b9d6145.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6a27c0004df04029c5e16edbeec91977e0038749 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/708f8c279d17372998d8117ce8d7f21e0b6ecad1c21af72048604cf87b9d6145.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2d594ba3941b11d79284584bce269e6ac262751eb7edbfa9a7d75956d273bed +size 5651 diff --git a/parse/train/5lhWG3Hj2By/images/7f0e080089182c227a1e8060dc2862eeeca08242826995ad6b81ce2a61aadc1d.jpg b/parse/train/5lhWG3Hj2By/images/7f0e080089182c227a1e8060dc2862eeeca08242826995ad6b81ce2a61aadc1d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..362ad2df64fa3c0e8a0799bf4309545a9e77e4df --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/7f0e080089182c227a1e8060dc2862eeeca08242826995ad6b81ce2a61aadc1d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30c4abd349d5e88033822e7e1df5a79d6f0e1c012b684af9888de75a0eb92b6c +size 40673 diff --git a/parse/train/5lhWG3Hj2By/images/7fb3696ba0ff50463cdcc753ff6000132deae7955faf06191a0b54ffdd54dd44.jpg b/parse/train/5lhWG3Hj2By/images/7fb3696ba0ff50463cdcc753ff6000132deae7955faf06191a0b54ffdd54dd44.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d3da690d941044158e597fcc25872c2f08a64e18 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/7fb3696ba0ff50463cdcc753ff6000132deae7955faf06191a0b54ffdd54dd44.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b1cc8d582348dc2bbc66b94266824be13742fff8b9e36c179555d5859959c8a +size 3463 diff --git a/parse/train/5lhWG3Hj2By/images/81c21ea2f9b487aa97af6ab86d6ce6d5cb98213686851c2c205a38e936cfb130.jpg b/parse/train/5lhWG3Hj2By/images/81c21ea2f9b487aa97af6ab86d6ce6d5cb98213686851c2c205a38e936cfb130.jpg new file mode 100644 index 0000000000000000000000000000000000000000..082cc682df8fda1a7697ce23abfc2031eeee5e73 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/81c21ea2f9b487aa97af6ab86d6ce6d5cb98213686851c2c205a38e936cfb130.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25e7116d50c5ce5d37172ffedf2ac65d4c549068e50b58d379a178df0aa5daa6 +size 8950 diff --git a/parse/train/5lhWG3Hj2By/images/853fc9b7b94064b60691c9070e5abad7cc786bde1a95847b90dbf44737189ddd.jpg b/parse/train/5lhWG3Hj2By/images/853fc9b7b94064b60691c9070e5abad7cc786bde1a95847b90dbf44737189ddd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e535e3b6499b87793b8d31f1040a80752fc97916 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/853fc9b7b94064b60691c9070e5abad7cc786bde1a95847b90dbf44737189ddd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b83f45b151de7a3784fd69e4868568963bf03baaeb840f49ffd838ef9c369cd +size 6457 diff --git a/parse/train/5lhWG3Hj2By/images/8b3fc4f316a669f2496724b447cb1000fb3327174fa6a52beac05c9127b4365f.jpg b/parse/train/5lhWG3Hj2By/images/8b3fc4f316a669f2496724b447cb1000fb3327174fa6a52beac05c9127b4365f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..40be49f536b9cb009b0eeb05022d98c45c0ed269 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/8b3fc4f316a669f2496724b447cb1000fb3327174fa6a52beac05c9127b4365f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7a3c62f345f8512fbc473fc62e7c7a464bcfce1690e080b9bde507e226944f2 +size 9501 diff --git a/parse/train/5lhWG3Hj2By/images/91c3c21bb31e24f940952922b5b2f4d7cc7c48d69e97480b80172726d124ed81.jpg b/parse/train/5lhWG3Hj2By/images/91c3c21bb31e24f940952922b5b2f4d7cc7c48d69e97480b80172726d124ed81.jpg new file mode 100644 index 0000000000000000000000000000000000000000..65986822b2ded976ebb8f503be8613c37fcef772 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/91c3c21bb31e24f940952922b5b2f4d7cc7c48d69e97480b80172726d124ed81.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef0236b4975e2abda66920af9f4ee694af72f596ebfe948a030b09d0e049dbcd +size 9690 diff --git a/parse/train/5lhWG3Hj2By/images/930cc7e1d6a5f8b333b3f8b4e591b73013faddc5344912d258ce0c18b2cb6b4e.jpg b/parse/train/5lhWG3Hj2By/images/930cc7e1d6a5f8b333b3f8b4e591b73013faddc5344912d258ce0c18b2cb6b4e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d277388c86f197fd1b13786b6cfa694d7bde64f --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/930cc7e1d6a5f8b333b3f8b4e591b73013faddc5344912d258ce0c18b2cb6b4e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c27e8649ac6b151cdb66346447eeed80ee721eeaec35a7594a187f771b18ab4 +size 10297 diff --git a/parse/train/5lhWG3Hj2By/images/9d62341ff751c2daa11db318c2588b9ed12259687916b4bac4a7cc6b484548b2.jpg b/parse/train/5lhWG3Hj2By/images/9d62341ff751c2daa11db318c2588b9ed12259687916b4bac4a7cc6b484548b2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d42f20cb638703a76a280de2b7b4923c1f0c3c79 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/9d62341ff751c2daa11db318c2588b9ed12259687916b4bac4a7cc6b484548b2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3f82f906c4ecb624c425eae35896d9642895f546977f3c286fddfc271ac59c4 +size 6572 diff --git a/parse/train/5lhWG3Hj2By/images/9f5dfb76fe9f089395f38065ba1a1308ac4153bb86b39eb55b8aa015a5285bc8.jpg b/parse/train/5lhWG3Hj2By/images/9f5dfb76fe9f089395f38065ba1a1308ac4153bb86b39eb55b8aa015a5285bc8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d6ca42f662ff7ead503c29a7f579f99b02823553 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/9f5dfb76fe9f089395f38065ba1a1308ac4153bb86b39eb55b8aa015a5285bc8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c91f62fa30439fb0d7632fbb24f649bc6dfac19d7ef1f5aa8985ae01d1ae5e2 +size 12386 diff --git a/parse/train/5lhWG3Hj2By/images/9fc125a0fd48c0b0ad88d5c40bdd44d2cbbabe8e409a829924033db780b4888a.jpg b/parse/train/5lhWG3Hj2By/images/9fc125a0fd48c0b0ad88d5c40bdd44d2cbbabe8e409a829924033db780b4888a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0aa75e2a274a69e58b0c91628ffca79cc575f3c9 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/9fc125a0fd48c0b0ad88d5c40bdd44d2cbbabe8e409a829924033db780b4888a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9bcd60082502810ee3f7e5a9ffffc73d4966aca1d2b205072590b1f0ac331b0 +size 7664 diff --git a/parse/train/5lhWG3Hj2By/images/a1763ebfa9210d193cae24287f1eefa71c4f3a39f85b684672f497256262e575.jpg b/parse/train/5lhWG3Hj2By/images/a1763ebfa9210d193cae24287f1eefa71c4f3a39f85b684672f497256262e575.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1352812c6d1734bc7200ce29cd95ee658a020266 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/a1763ebfa9210d193cae24287f1eefa71c4f3a39f85b684672f497256262e575.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6c45db358e45f555caf78abe8ef58e0bda1e2ba06c21ddc33ca87bd470ff587 +size 69145 diff --git a/parse/train/5lhWG3Hj2By/images/a183db729b45ef740b2bec94ea45a9f9d010fd8aa48467c2cc90d93c3479a4a8.jpg b/parse/train/5lhWG3Hj2By/images/a183db729b45ef740b2bec94ea45a9f9d010fd8aa48467c2cc90d93c3479a4a8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f2ce3563a32de838f6c477c55dd88f41a065c6a7 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/a183db729b45ef740b2bec94ea45a9f9d010fd8aa48467c2cc90d93c3479a4a8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb9b441729f25d259188a7ae237ea193fd63dacb01a8d044008a06703289709b +size 3214 diff --git a/parse/train/5lhWG3Hj2By/images/a4f577c904e56a6c4877a82b7a948d87fa1deefff189e09971484cbe49e6d330.jpg b/parse/train/5lhWG3Hj2By/images/a4f577c904e56a6c4877a82b7a948d87fa1deefff189e09971484cbe49e6d330.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e5b65a4664057947fb3a20a32deddbd0444fcab3 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/a4f577c904e56a6c4877a82b7a948d87fa1deefff189e09971484cbe49e6d330.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe40a2d1c6fcf3a59b7c478cee95a33ada33eab74f654926eba5192ab3cbdf0 +size 6228 diff --git a/parse/train/5lhWG3Hj2By/images/a87cae5a28873da9fd0e94a499c6c43f53cc351f6769a37b7863e4843fa890ab.jpg b/parse/train/5lhWG3Hj2By/images/a87cae5a28873da9fd0e94a499c6c43f53cc351f6769a37b7863e4843fa890ab.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9d11a2a0ed5c45b7e6e5090f03984e31cf1e0680 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/a87cae5a28873da9fd0e94a499c6c43f53cc351f6769a37b7863e4843fa890ab.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b5c9dfd54307fe367bcc79bd1763fa00129b7201ceb8ba2b4a4c08e2d32b20b +size 2393 diff --git a/parse/train/5lhWG3Hj2By/images/a9c2d7495be6da2feda31b5607e19c6b42184452de0387d1c3c8fa3ec0cf58b8.jpg b/parse/train/5lhWG3Hj2By/images/a9c2d7495be6da2feda31b5607e19c6b42184452de0387d1c3c8fa3ec0cf58b8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6803ad1e8a3788ce2d3b09e67d8b5a3328d83ede --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/a9c2d7495be6da2feda31b5607e19c6b42184452de0387d1c3c8fa3ec0cf58b8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea49a195ad9b80b54c8191559953d5d907770b7d3b647629d70af3dfbe5dfa2e +size 9404 diff --git a/parse/train/5lhWG3Hj2By/images/aca7c9cd4a8dccd13f178d163449f9ae4454a1472c4d0c98486154b90f33723a.jpg b/parse/train/5lhWG3Hj2By/images/aca7c9cd4a8dccd13f178d163449f9ae4454a1472c4d0c98486154b90f33723a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b5e7ef0098f8250b0b7c96839521f75b61d03b0e --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/aca7c9cd4a8dccd13f178d163449f9ae4454a1472c4d0c98486154b90f33723a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5a20c41fd2cc07b7778e41106927d61ad438efcf22b7efead315d1ca0e091b2 +size 10747 diff --git a/parse/train/5lhWG3Hj2By/images/ae7a23b66408956281d1b8401a96e71f5af81dbd9836e1c5ed059fa3a724f22c.jpg b/parse/train/5lhWG3Hj2By/images/ae7a23b66408956281d1b8401a96e71f5af81dbd9836e1c5ed059fa3a724f22c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d9c6d26b74359a6a97153de5ed89d4dfc12d3a59 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/ae7a23b66408956281d1b8401a96e71f5af81dbd9836e1c5ed059fa3a724f22c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53342c3ebfb4afb4d0801717313773ac61b56d78f5e4d8290734c0bab45bf1f6 +size 11245 diff --git a/parse/train/5lhWG3Hj2By/images/af84a5dad90aacebd2eb6e8029f8ddd8c001c7822851a85995f4574ee92f5414.jpg b/parse/train/5lhWG3Hj2By/images/af84a5dad90aacebd2eb6e8029f8ddd8c001c7822851a85995f4574ee92f5414.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9e79b6bd8505cb41af6367458f0f3076421f8f7b --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/af84a5dad90aacebd2eb6e8029f8ddd8c001c7822851a85995f4574ee92f5414.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3073a302422e8a47b85dfa6d564bf47f0eaccb742228beed49631187be4c786f +size 9804 diff --git a/parse/train/5lhWG3Hj2By/images/b05a3ca39399a6e9d8cdb65779f272e309dc423cf4a2ea3597b903118b24e728.jpg b/parse/train/5lhWG3Hj2By/images/b05a3ca39399a6e9d8cdb65779f272e309dc423cf4a2ea3597b903118b24e728.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aa6be204d7ad3f8923a1f19cd444950a60cd01a4 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/b05a3ca39399a6e9d8cdb65779f272e309dc423cf4a2ea3597b903118b24e728.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:239a91eb048810e8a563c5f15bb1b37258bea577306cd55e4eb6bf7b4e0d5248 +size 5400 diff --git a/parse/train/5lhWG3Hj2By/images/b19cf64fa85e4924addd0ad5d1e5efeee924281605198c505de474c5865d076a.jpg b/parse/train/5lhWG3Hj2By/images/b19cf64fa85e4924addd0ad5d1e5efeee924281605198c505de474c5865d076a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e2de18441aaf30f872b4c712f9f72d944691eec --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/b19cf64fa85e4924addd0ad5d1e5efeee924281605198c505de474c5865d076a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1197102c875431b95bd9da88f658bab4b7ced6c8bf30714a1e0f0a705b5e6ca +size 7660 diff --git a/parse/train/5lhWG3Hj2By/images/b1f01c5d8e1b676893d53ebee964f91316e7d4ae284e793549a84278c4f6c9d8.jpg b/parse/train/5lhWG3Hj2By/images/b1f01c5d8e1b676893d53ebee964f91316e7d4ae284e793549a84278c4f6c9d8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e67c80c71601f96d5a69a3c3afb371147e93d756 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/b1f01c5d8e1b676893d53ebee964f91316e7d4ae284e793549a84278c4f6c9d8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d869eca09a5fbd3372966e1d7eb8637bcded966b2855a264094f34d4a16259f8 +size 11213 diff --git a/parse/train/5lhWG3Hj2By/images/b20045491d5664cd7fdb821b4d99a80e38311ab4fd5e3dfa0a4449420efdb049.jpg b/parse/train/5lhWG3Hj2By/images/b20045491d5664cd7fdb821b4d99a80e38311ab4fd5e3dfa0a4449420efdb049.jpg new file mode 100644 index 0000000000000000000000000000000000000000..91c857b60414d7e6fd66ecd2edc483c54f2df6a8 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/b20045491d5664cd7fdb821b4d99a80e38311ab4fd5e3dfa0a4449420efdb049.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3de57b3ee6422bbd37c6a2975fc8245e93847cc5e5fb4c9e8cbc1bedabe525ea +size 8534 diff --git a/parse/train/5lhWG3Hj2By/images/b7d024ff53c43f997ab41f22bad1db63a09f77fb6b4c61c51c9f407f974e49c8.jpg b/parse/train/5lhWG3Hj2By/images/b7d024ff53c43f997ab41f22bad1db63a09f77fb6b4c61c51c9f407f974e49c8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b553e7bd7645633062ad46ebee890148ad133b2b --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/b7d024ff53c43f997ab41f22bad1db63a09f77fb6b4c61c51c9f407f974e49c8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a85dcbfcc3d9bedf97d65228789bf622250d2f2e9d1bb7295abe9e461d6fcfc7 +size 4234 diff --git a/parse/train/5lhWG3Hj2By/images/bf1578d2f525bbba8047ac0c9498311e8b6db8c5500752194787938af5e1b4a2.jpg b/parse/train/5lhWG3Hj2By/images/bf1578d2f525bbba8047ac0c9498311e8b6db8c5500752194787938af5e1b4a2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c1231bea17e03a0ec6a94d436ad2aa100d71fd56 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/bf1578d2f525bbba8047ac0c9498311e8b6db8c5500752194787938af5e1b4a2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:613cc2f01e36db6837d34ca824a657e8d0ce05b7f74525febe5438084b1b64f8 +size 3965 diff --git a/parse/train/5lhWG3Hj2By/images/c3b4324418ceec176f4b94fcbdc7f413f296512a73459f32f44685e32121f11f.jpg b/parse/train/5lhWG3Hj2By/images/c3b4324418ceec176f4b94fcbdc7f413f296512a73459f32f44685e32121f11f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..298b512cd99c1267d983d932fc7e4ac3d19247f1 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/c3b4324418ceec176f4b94fcbdc7f413f296512a73459f32f44685e32121f11f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:331fe5fcc3f80d5d34d2b0963c7adeb8dfe59766a2e30324e6516fdd7605da29 +size 72353 diff --git a/parse/train/5lhWG3Hj2By/images/c8689cf1d85180a80d93a8c5a751bbea3a49420a8a76fe6b6c8a78dda5004aa4.jpg b/parse/train/5lhWG3Hj2By/images/c8689cf1d85180a80d93a8c5a751bbea3a49420a8a76fe6b6c8a78dda5004aa4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8c4049c27f93c3f9642de815d4e39abca0ce148f --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/c8689cf1d85180a80d93a8c5a751bbea3a49420a8a76fe6b6c8a78dda5004aa4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6665221f2c2c60386e8a5fd08d7621978a533dfe572899f76856d359a12e710a +size 6447 diff --git a/parse/train/5lhWG3Hj2By/images/cc2116554b58429a716b9d3a18fe061650d79f318d4ecb293733a3427005e358.jpg b/parse/train/5lhWG3Hj2By/images/cc2116554b58429a716b9d3a18fe061650d79f318d4ecb293733a3427005e358.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e0a43dd59e151170dc663f927719f5d940c7892a --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/cc2116554b58429a716b9d3a18fe061650d79f318d4ecb293733a3427005e358.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27887f6e3ba3f642c33629b656a2960de8763bf4a0681a4f8e8d50d0e1d2463d +size 3824 diff --git a/parse/train/5lhWG3Hj2By/images/cf3382d40feed3ae88baaa679ccc365cce6969516cc3cd18775404219724f6f3.jpg b/parse/train/5lhWG3Hj2By/images/cf3382d40feed3ae88baaa679ccc365cce6969516cc3cd18775404219724f6f3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..47b1bf956209bcd6b110a7d0a32975f65f853aec --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/cf3382d40feed3ae88baaa679ccc365cce6969516cc3cd18775404219724f6f3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6434ba14f795d08d64a041e8a0b1f1b965de4e9cd36de2c6cdaf1cfb7b60b79 +size 22429 diff --git a/parse/train/5lhWG3Hj2By/images/d675ba7e9135e68f842b95e44d92714a863ea1adfb8f1ee732c9dc25276fd61e.jpg b/parse/train/5lhWG3Hj2By/images/d675ba7e9135e68f842b95e44d92714a863ea1adfb8f1ee732c9dc25276fd61e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b71b24bb595a96f5aaad3ca2329fbcd92514848c --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/d675ba7e9135e68f842b95e44d92714a863ea1adfb8f1ee732c9dc25276fd61e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31d24e451ff0c543da75470037379133722aa66122ca02bc10088ad29812a19f +size 12942 diff --git a/parse/train/5lhWG3Hj2By/images/d95e2cc165d5cecc4fc1c45fa182fcd008349f45d7fafad3e50e49318b335035.jpg b/parse/train/5lhWG3Hj2By/images/d95e2cc165d5cecc4fc1c45fa182fcd008349f45d7fafad3e50e49318b335035.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c11d67d580078dc03fe963c2e0a19af79a929f0 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/d95e2cc165d5cecc4fc1c45fa182fcd008349f45d7fafad3e50e49318b335035.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d05e355f6a59ee9840f8156e4f8f1ee7b2ae31f9bddd59b697f79faa417c76f +size 7357 diff --git a/parse/train/5lhWG3Hj2By/images/de4e52378d86f80641dd7c78aaf06cea148c9a3075e2151c1d6ac9222b8df526.jpg b/parse/train/5lhWG3Hj2By/images/de4e52378d86f80641dd7c78aaf06cea148c9a3075e2151c1d6ac9222b8df526.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cab0522d18054b2a09b44de532635101651cb416 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/de4e52378d86f80641dd7c78aaf06cea148c9a3075e2151c1d6ac9222b8df526.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15c41a09377ea4c350a1dcb82fa335048d78d777358965ff20c386aca9aeae36 +size 9398 diff --git a/parse/train/5lhWG3Hj2By/images/e26a58d9e296b26937551ed7ad3093a648223bbb721a7a5637c397716fe20d91.jpg b/parse/train/5lhWG3Hj2By/images/e26a58d9e296b26937551ed7ad3093a648223bbb721a7a5637c397716fe20d91.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b21c0d4158a26f27685f52519f572ef9bd4bd34f --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/e26a58d9e296b26937551ed7ad3093a648223bbb721a7a5637c397716fe20d91.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:635787f7e68974c5426894aa2173990aa930b3f74458f2c3157608179ccf6ea5 +size 9316 diff --git a/parse/train/5lhWG3Hj2By/images/e406f60566f48a41ebf0ad8f2b06bfe401df148aff20a600f2cb98e5e92d38b5.jpg b/parse/train/5lhWG3Hj2By/images/e406f60566f48a41ebf0ad8f2b06bfe401df148aff20a600f2cb98e5e92d38b5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c8b1aaa6b05e03db0f85086121a4fa674c920221 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/e406f60566f48a41ebf0ad8f2b06bfe401df148aff20a600f2cb98e5e92d38b5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:456fc21fa558173239ca4088f384aa1b87a77dbe4c4466a485ff7f6639f44795 +size 10601 diff --git a/parse/train/5lhWG3Hj2By/images/e49a2bed3a65083f25016973d9e37d9c44ef6044c8fc5ba2aa6238e60096eb73.jpg b/parse/train/5lhWG3Hj2By/images/e49a2bed3a65083f25016973d9e37d9c44ef6044c8fc5ba2aa6238e60096eb73.jpg new file mode 100644 index 0000000000000000000000000000000000000000..960a0e1e68ca057ece67457e94cd4e78a18d6ccc --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/e49a2bed3a65083f25016973d9e37d9c44ef6044c8fc5ba2aa6238e60096eb73.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccc4f40bf31c52c45d3587bc770ae1410f818f337898409fc811a1ac6ab402a4 +size 13162 diff --git a/parse/train/5lhWG3Hj2By/images/e6d45e43744571351f97ff39e9f810463824898fe3989e60bd2599d188f39cc4.jpg b/parse/train/5lhWG3Hj2By/images/e6d45e43744571351f97ff39e9f810463824898fe3989e60bd2599d188f39cc4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..218b8fb0eedb76be3b384f6d890a9bfb7560927f --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/e6d45e43744571351f97ff39e9f810463824898fe3989e60bd2599d188f39cc4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d320a17e9fbdbf29862bca02cd179dffe12184aaaef11da3c473dd2982034e5 +size 7178 diff --git a/parse/train/5lhWG3Hj2By/images/e7a09ee3a2bd4b2821bf19bd30de6b72e3beaf5ef44cfdf4c5d3972d9c6c9478.jpg b/parse/train/5lhWG3Hj2By/images/e7a09ee3a2bd4b2821bf19bd30de6b72e3beaf5ef44cfdf4c5d3972d9c6c9478.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3eb191e56ae75e958ef749a6f73d471d4509958f --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/e7a09ee3a2bd4b2821bf19bd30de6b72e3beaf5ef44cfdf4c5d3972d9c6c9478.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:538fe55a37c1dee69e8198eb6f911676ba5fb6d55bfaedbd120d567c4868de62 +size 3744 diff --git a/parse/train/5lhWG3Hj2By/images/e81263cd401e389f7c1ece5da9c1d34004a46516d30c78a07ca8fb38de2d28d6.jpg b/parse/train/5lhWG3Hj2By/images/e81263cd401e389f7c1ece5da9c1d34004a46516d30c78a07ca8fb38de2d28d6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..02e03b3f82da126c7e0085e0d5ac7e366f1de71e --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/e81263cd401e389f7c1ece5da9c1d34004a46516d30c78a07ca8fb38de2d28d6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2332eaa1bca0f32e4375b462f2311411424503c848eaceb273e7f4a2db8582c +size 10547 diff --git a/parse/train/5lhWG3Hj2By/images/e814128abe4965b4e99d55fc7c3a2a99000e81af33dddfb7d07245304f22f7b7.jpg b/parse/train/5lhWG3Hj2By/images/e814128abe4965b4e99d55fc7c3a2a99000e81af33dddfb7d07245304f22f7b7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4d51771155e70f13eac2fc3005b5f7da00f9e2d8 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/e814128abe4965b4e99d55fc7c3a2a99000e81af33dddfb7d07245304f22f7b7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6e06f6605a0c9e72f82b06c0ac6ff58aa7a706aa2fde4f0d7aa6a5816c08e80 +size 7554 diff --git a/parse/train/5lhWG3Hj2By/images/e89659b1b76c4c48713b27b705206535f60bff86e5e4a63b4da6a5745f857dea.jpg b/parse/train/5lhWG3Hj2By/images/e89659b1b76c4c48713b27b705206535f60bff86e5e4a63b4da6a5745f857dea.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9afe25122284a645c3442c5deeec942ab1a49606 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/e89659b1b76c4c48713b27b705206535f60bff86e5e4a63b4da6a5745f857dea.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94243d49ce9a446c7b071737b8b47f3c773ce2720a8dfbb75ae1252b2556e235 +size 15615 diff --git a/parse/train/5lhWG3Hj2By/images/e9b142f8f0387541836c98613a6f81a7737b780cc25def68080988ced657da36.jpg b/parse/train/5lhWG3Hj2By/images/e9b142f8f0387541836c98613a6f81a7737b780cc25def68080988ced657da36.jpg new file mode 100644 index 0000000000000000000000000000000000000000..61f48fb7a95f180f191370964e12bc39c5c09805 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/e9b142f8f0387541836c98613a6f81a7737b780cc25def68080988ced657da36.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2515e8a7e96f921616a10d25d9cb9b7947a28a4eb663d18f069c45cb156055c +size 15265 diff --git a/parse/train/5lhWG3Hj2By/images/ea0b35bb867cf3c3927bb87565c9677b08b1b9eda215c025d77acc8ca430eae5.jpg b/parse/train/5lhWG3Hj2By/images/ea0b35bb867cf3c3927bb87565c9677b08b1b9eda215c025d77acc8ca430eae5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..583fdb9195b9215b07604865d20b1c556be4cced --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/ea0b35bb867cf3c3927bb87565c9677b08b1b9eda215c025d77acc8ca430eae5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba3eeee102493d5fe3dff6bd155071f450a5292c773d029cc7fe2bef4f60a6d4 +size 5854 diff --git a/parse/train/5lhWG3Hj2By/images/ea3fa7817a81765c3b47756f35cf0104ef54d618507f6079a9c55a01a63e9981.jpg b/parse/train/5lhWG3Hj2By/images/ea3fa7817a81765c3b47756f35cf0104ef54d618507f6079a9c55a01a63e9981.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b66a907be1718ef95d17637774d1eb7ac636545d --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/ea3fa7817a81765c3b47756f35cf0104ef54d618507f6079a9c55a01a63e9981.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9842e4a0ce22c50981cf04a9e75f2e54b015d9e956ed59c8f2ca95625bd7b6ec +size 10115 diff --git a/parse/train/5lhWG3Hj2By/images/ed13969f6b527b674b36289235c9d4f940965a35bb4da86f32e08fbf66b3a371.jpg b/parse/train/5lhWG3Hj2By/images/ed13969f6b527b674b36289235c9d4f940965a35bb4da86f32e08fbf66b3a371.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c6761f42185666c7616c3290884eb8e7cd3726b7 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/ed13969f6b527b674b36289235c9d4f940965a35bb4da86f32e08fbf66b3a371.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb20fb1cb75eeeb60d2637ca55a73a1306abbe021dd82d33e93008d0fce013a4 +size 10334 diff --git a/parse/train/5lhWG3Hj2By/images/f49aef503226bbf09606ebf403760286d5a0a8fb1ee017dbedc88f67a2a31958.jpg b/parse/train/5lhWG3Hj2By/images/f49aef503226bbf09606ebf403760286d5a0a8fb1ee017dbedc88f67a2a31958.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f9fa0bc43432d910a4aa1cf1b25f66ffc5ac0d3a --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/f49aef503226bbf09606ebf403760286d5a0a8fb1ee017dbedc88f67a2a31958.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca906794bb0ebffbe528ecd88e2c05525040e0e8fa593c816f488db1478a9236 +size 6170 diff --git a/parse/train/5lhWG3Hj2By/images/f98dcb6d22d2855c4747653888a8e167180b0d0703b4266e47b74228276d525b.jpg b/parse/train/5lhWG3Hj2By/images/f98dcb6d22d2855c4747653888a8e167180b0d0703b4266e47b74228276d525b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fa88c5924225eedfebc6b415f4a14da140386f5e --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/f98dcb6d22d2855c4747653888a8e167180b0d0703b4266e47b74228276d525b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d175f28e6e9cbae7a27828768f596d51fdded462310814b4c284ad2a297893e +size 11782 diff --git a/parse/train/5lhWG3Hj2By/images/fc76d20aa6c73503a821d3dc999b63739eba78e99b230aca196cc8d25816937d.jpg b/parse/train/5lhWG3Hj2By/images/fc76d20aa6c73503a821d3dc999b63739eba78e99b230aca196cc8d25816937d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e4db42aecdeb2f28108eec2d78c90539bf87ea4 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/fc76d20aa6c73503a821d3dc999b63739eba78e99b230aca196cc8d25816937d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1d0991585a849f5cf79737ff66661910f2c3cbe344a38dbb8d260492f78bdff +size 5525 diff --git a/parse/train/5lhWG3Hj2By/images/ff893c55f8ea5f5c1145c706c52fd110c47661c1cfe1ecea4e2a17d3fb581837.jpg b/parse/train/5lhWG3Hj2By/images/ff893c55f8ea5f5c1145c706c52fd110c47661c1cfe1ecea4e2a17d3fb581837.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8176edc6836b9a960c67cc9fc78a9c49be858392 --- /dev/null +++ b/parse/train/5lhWG3Hj2By/images/ff893c55f8ea5f5c1145c706c52fd110c47661c1cfe1ecea4e2a17d3fb581837.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c12b87a05f9291536b0890b1917cfec7b78a7bca13e15b8c839fcda37f2020d8 +size 4981 diff --git a/parse/train/8E1-f3VhX1o/images/0d2aaf69c64c86c178015692f60fc12405e70f3fe47406334c840876a37b3349.jpg b/parse/train/8E1-f3VhX1o/images/0d2aaf69c64c86c178015692f60fc12405e70f3fe47406334c840876a37b3349.jpg new file mode 100644 index 0000000000000000000000000000000000000000..736b4e6d26c5014066cc73bb588cffea4a297fed --- /dev/null +++ b/parse/train/8E1-f3VhX1o/images/0d2aaf69c64c86c178015692f60fc12405e70f3fe47406334c840876a37b3349.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3027e5d760a1a52536bcb4e18c549ae9c37a37bedd3963ee2b3252b1e000ba1e +size 4390 diff --git a/parse/train/8E1-f3VhX1o/images/0f6e02ed78d2aa9d751916d79fc4e8dbd60862fa676af4040aba13c9f93ddcf5.jpg b/parse/train/8E1-f3VhX1o/images/0f6e02ed78d2aa9d751916d79fc4e8dbd60862fa676af4040aba13c9f93ddcf5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6210553c4183ca5cfc80a742cae18b48c24de262 --- /dev/null +++ b/parse/train/8E1-f3VhX1o/images/0f6e02ed78d2aa9d751916d79fc4e8dbd60862fa676af4040aba13c9f93ddcf5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f14155745e86b2112328bd4c1dca0ebfce07f9ded5cf882f759ebed488a9fb5 +size 22800 diff --git a/parse/train/8E1-f3VhX1o/images/255799fa1824022fb43a84e76ace3c08e780d5ba34e15491000f663c46b243df.jpg b/parse/train/8E1-f3VhX1o/images/255799fa1824022fb43a84e76ace3c08e780d5ba34e15491000f663c46b243df.jpg new file mode 100644 index 0000000000000000000000000000000000000000..574258032d7dda633dec1c548bf7e6d5e8b43e51 --- /dev/null +++ b/parse/train/8E1-f3VhX1o/images/255799fa1824022fb43a84e76ace3c08e780d5ba34e15491000f663c46b243df.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0888258d02795f0bed7b47e29e4282287e1de8204ba7aa52877825a868cd296 +size 4520 diff --git a/parse/train/8E1-f3VhX1o/images/33d54308ceaa2d0928e01c25718ddbc564b392056da4e30f558984d23f68bdcf.jpg b/parse/train/8E1-f3VhX1o/images/33d54308ceaa2d0928e01c25718ddbc564b392056da4e30f558984d23f68bdcf.jpg new file mode 100644 index 0000000000000000000000000000000000000000..98b0d9154e52d24d5da050f4d8ff38e04882de0b --- /dev/null +++ b/parse/train/8E1-f3VhX1o/images/33d54308ceaa2d0928e01c25718ddbc564b392056da4e30f558984d23f68bdcf.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c04c50de7aaf9d97773a16499dbddad6dfb952f571f75ed5165dcbed1c0616c6 +size 192602 diff --git a/parse/train/8E1-f3VhX1o/images/3b79b1d562f7b3225be643794aef1c379c24f0fd3d3d4e37c7f5f07bdba199e2.jpg b/parse/train/8E1-f3VhX1o/images/3b79b1d562f7b3225be643794aef1c379c24f0fd3d3d4e37c7f5f07bdba199e2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7fe9cc5efb5a50937191aa725edd02d52ea32bdd --- /dev/null +++ b/parse/train/8E1-f3VhX1o/images/3b79b1d562f7b3225be643794aef1c379c24f0fd3d3d4e37c7f5f07bdba199e2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bf7b44b31b3dbfd057df4d3c532e67360ef0ca88ce7745bcfe59c89872b9ab2 +size 15671 diff --git a/parse/train/8E1-f3VhX1o/images/45eace2c645f5ad6c7578b66ddcbdc77037879261e3f230c8c5a6890817b6590.jpg b/parse/train/8E1-f3VhX1o/images/45eace2c645f5ad6c7578b66ddcbdc77037879261e3f230c8c5a6890817b6590.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4030278586d661e9595d7df3e4c1529dd735dbec --- /dev/null +++ b/parse/train/8E1-f3VhX1o/images/45eace2c645f5ad6c7578b66ddcbdc77037879261e3f230c8c5a6890817b6590.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5c76da5112f1f3e0a32e59ceb1fa954f1670bfcfc00f09545b4183c58cac540 +size 8059 diff --git a/parse/train/8E1-f3VhX1o/images/697b06ae99e7276b0f59b6d64b4d8561bab15f3185b71e93abd92d424cbfdae0.jpg b/parse/train/8E1-f3VhX1o/images/697b06ae99e7276b0f59b6d64b4d8561bab15f3185b71e93abd92d424cbfdae0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ca811eccb5e02e92478f4fe741c0fca0a5c8e7b7 --- /dev/null +++ b/parse/train/8E1-f3VhX1o/images/697b06ae99e7276b0f59b6d64b4d8561bab15f3185b71e93abd92d424cbfdae0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e47e6c4cba3b40d86303316fc5017dc9b0c1151a9b86ac05d1a8d32baff371f5 +size 15498 diff --git a/parse/train/8E1-f3VhX1o/images/71253126fb597001f3b3e572d06652ffaacce2df49e0c5a618b700ff40a8cab7.jpg b/parse/train/8E1-f3VhX1o/images/71253126fb597001f3b3e572d06652ffaacce2df49e0c5a618b700ff40a8cab7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b9797e25140a271bd38acd9af8fa79514a0ef09 --- /dev/null +++ b/parse/train/8E1-f3VhX1o/images/71253126fb597001f3b3e572d06652ffaacce2df49e0c5a618b700ff40a8cab7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19fbf71fd42a628ef66640b74f77b28dfd1f6f26b493de8250b3a9e7f2a10df1 +size 51842 diff --git a/parse/train/8E1-f3VhX1o/images/71be56a135dd40a0d5b7b1e8e87bfbea2177d9fc288a69bf9354b5c9fb4f2edf.jpg b/parse/train/8E1-f3VhX1o/images/71be56a135dd40a0d5b7b1e8e87bfbea2177d9fc288a69bf9354b5c9fb4f2edf.jpg new file mode 100644 index 0000000000000000000000000000000000000000..865a9d34efbe3381de69877bc2b20efbc139d2f0 --- /dev/null +++ b/parse/train/8E1-f3VhX1o/images/71be56a135dd40a0d5b7b1e8e87bfbea2177d9fc288a69bf9354b5c9fb4f2edf.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f00bf072f97ed8318e4527bde9e746597c8024625757b9109d27a17adb2caba +size 120705 diff --git a/parse/train/8E1-f3VhX1o/images/7df60ec2065ea215b5d4787fecbd4515db6f3cabf279ac1125042ede69785974.jpg b/parse/train/8E1-f3VhX1o/images/7df60ec2065ea215b5d4787fecbd4515db6f3cabf279ac1125042ede69785974.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5cdf52263d86ad79dfaa1bd1c5a66996c82895e3 --- /dev/null +++ b/parse/train/8E1-f3VhX1o/images/7df60ec2065ea215b5d4787fecbd4515db6f3cabf279ac1125042ede69785974.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1967ebb1ca996ec2f15a83b1ec2c429c88ce5c0f40aee9af05b7fd69445ff06 +size 69140 diff --git a/parse/train/8E1-f3VhX1o/images/81739c660807e4466892d9ccb616060ed28627ea2ff4b2e2ae02d351decfd1bc.jpg b/parse/train/8E1-f3VhX1o/images/81739c660807e4466892d9ccb616060ed28627ea2ff4b2e2ae02d351decfd1bc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bf7e7280b5d5585f6927e02109b292bd80c8cdf5 --- /dev/null +++ b/parse/train/8E1-f3VhX1o/images/81739c660807e4466892d9ccb616060ed28627ea2ff4b2e2ae02d351decfd1bc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9a07290bfed907a3bf69e710d78f9952aba4e06c16748395debd597b0ccc7d2 +size 89624 diff --git a/parse/train/8E1-f3VhX1o/images/89a977dab6773a2c6b3f54b2eb345766c753f911b28851bbd6fc5d448d0648f2.jpg b/parse/train/8E1-f3VhX1o/images/89a977dab6773a2c6b3f54b2eb345766c753f911b28851bbd6fc5d448d0648f2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6a4184ee9e4d5e55552a87d0337c06535ae0af09 --- /dev/null +++ b/parse/train/8E1-f3VhX1o/images/89a977dab6773a2c6b3f54b2eb345766c753f911b28851bbd6fc5d448d0648f2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c057479a40d0eb41daa07df77fa3a4204528519ac3c760a8a6a6defa8473d0d6 +size 200742 diff --git a/parse/train/8E1-f3VhX1o/images/9be6918784275919560952a0e3ed4250d13b8975477fdb519c454de3f94af825.jpg b/parse/train/8E1-f3VhX1o/images/9be6918784275919560952a0e3ed4250d13b8975477fdb519c454de3f94af825.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1029516863179de4c8efe132029504aca85fa2a9 --- /dev/null +++ b/parse/train/8E1-f3VhX1o/images/9be6918784275919560952a0e3ed4250d13b8975477fdb519c454de3f94af825.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0444d3be34e2f46091197a18326c1391e0ea6a6e7adc9eb23fae7f45ec7dae9 +size 187737 diff --git a/parse/train/8E1-f3VhX1o/images/ab64c7aefe2caaf7d95fdaa71b9a1b3b7c01da13cdae7451dd82645a2da41d05.jpg b/parse/train/8E1-f3VhX1o/images/ab64c7aefe2caaf7d95fdaa71b9a1b3b7c01da13cdae7451dd82645a2da41d05.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ba554f44f6508398f45aca535d522925e3c9453d --- /dev/null +++ b/parse/train/8E1-f3VhX1o/images/ab64c7aefe2caaf7d95fdaa71b9a1b3b7c01da13cdae7451dd82645a2da41d05.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b6725f446232ae8feb64b1b96c86ab2c1b8cc0d94dc3c449d17cfa08063870a +size 122918 diff --git a/parse/train/8E1-f3VhX1o/images/ae4401bd99486047f0ec65953e8372cdf8136558e3e533c58b83aef7718de097.jpg b/parse/train/8E1-f3VhX1o/images/ae4401bd99486047f0ec65953e8372cdf8136558e3e533c58b83aef7718de097.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ec5a8c025a385974322809f26b272948bd511b9d --- /dev/null +++ b/parse/train/8E1-f3VhX1o/images/ae4401bd99486047f0ec65953e8372cdf8136558e3e533c58b83aef7718de097.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:541445da3b7283341e0b863607b6b59379323e5d5ddf89b4bc80c3568fc589c6 +size 68869 diff --git a/parse/train/8E1-f3VhX1o/images/af352a239fcab188cfc1782410ed022722c2dbcab839631b01da571d32e221d1.jpg b/parse/train/8E1-f3VhX1o/images/af352a239fcab188cfc1782410ed022722c2dbcab839631b01da571d32e221d1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2587fd8cfe0f1451e5307db4e8aa98361dae311e --- /dev/null +++ b/parse/train/8E1-f3VhX1o/images/af352a239fcab188cfc1782410ed022722c2dbcab839631b01da571d32e221d1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a666751a2b12a24112a7e364a7f4c9b7e71947d9e8faaa7254b62f5be3aa28cc +size 180779 diff --git a/parse/train/8E1-f3VhX1o/images/ba99b0b8475002b6ce86691c74d6800943824d47af7bbb58274b48ed27ec7969.jpg b/parse/train/8E1-f3VhX1o/images/ba99b0b8475002b6ce86691c74d6800943824d47af7bbb58274b48ed27ec7969.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a1df09865688824dc5e3bc60ff2e7fc0f67f2b51 --- /dev/null +++ b/parse/train/8E1-f3VhX1o/images/ba99b0b8475002b6ce86691c74d6800943824d47af7bbb58274b48ed27ec7969.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e5ef5b166d8f96bddd3fa640cc514566c23f3711730db62f74b87165e68cda2 +size 57367 diff --git a/parse/train/8E1-f3VhX1o/images/daf647c5486da9b0e1ceaaf81f47cb7eebbc021d75573d759481c86d2ffbe59c.jpg b/parse/train/8E1-f3VhX1o/images/daf647c5486da9b0e1ceaaf81f47cb7eebbc021d75573d759481c86d2ffbe59c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5cde45c4dc1cb37847cecfd7cb085ab4563f2621 --- /dev/null +++ b/parse/train/8E1-f3VhX1o/images/daf647c5486da9b0e1ceaaf81f47cb7eebbc021d75573d759481c86d2ffbe59c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cc2d9f21e00eb91303321572ed57724a3c42cc041464e68655f5f6a817d2db3 +size 59431 diff --git a/parse/train/8E1-f3VhX1o/images/dcc6517e36a7684deca22c982f0c90376adbac61a00873fad377053f51dbf39b.jpg b/parse/train/8E1-f3VhX1o/images/dcc6517e36a7684deca22c982f0c90376adbac61a00873fad377053f51dbf39b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b8ecc7dc2105848b13c488922c98a90db2140acf --- /dev/null +++ b/parse/train/8E1-f3VhX1o/images/dcc6517e36a7684deca22c982f0c90376adbac61a00873fad377053f51dbf39b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:060f6c85a4fc031727dc0c1f2a3b35d77cec5a6b3ae6ba128cc3e4a2df821b43 +size 6786 diff --git a/parse/train/8E1-f3VhX1o/images/e9bd92a6a0933675aeaa811e9da05eb05f7718640019ad16d460ae418068b077.jpg b/parse/train/8E1-f3VhX1o/images/e9bd92a6a0933675aeaa811e9da05eb05f7718640019ad16d460ae418068b077.jpg new file mode 100644 index 0000000000000000000000000000000000000000..61cb4ed047fa81cd377e639ce0c490dbc307aa3a --- /dev/null +++ b/parse/train/8E1-f3VhX1o/images/e9bd92a6a0933675aeaa811e9da05eb05f7718640019ad16d460ae418068b077.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77693cf14af0959c53f9d6033e447de7427444c7502ae0127c4f2c49f0b27e2f +size 175455 diff --git a/parse/train/BJeguTEKDB/images/06d79161797e38699636fe1c1908efa773f4f7ab54cf365289ace172d162349c.jpg b/parse/train/BJeguTEKDB/images/06d79161797e38699636fe1c1908efa773f4f7ab54cf365289ace172d162349c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..be5476077f5695a3bf6718930a4aca8bce008a74 --- /dev/null +++ b/parse/train/BJeguTEKDB/images/06d79161797e38699636fe1c1908efa773f4f7ab54cf365289ace172d162349c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d763872e627ab4b87b558ff31161fbbd212fa3b251be973168fd289f9a8a07ac +size 13713 diff --git a/parse/train/BJeguTEKDB/images/1345f12232f65a088371cf0d3ab38ee1051422ea33147dae6da25d7eec3cb058.jpg b/parse/train/BJeguTEKDB/images/1345f12232f65a088371cf0d3ab38ee1051422ea33147dae6da25d7eec3cb058.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fc36efc1b6a8bddb24237d5e95a2ba9b92e0ce21 --- /dev/null +++ b/parse/train/BJeguTEKDB/images/1345f12232f65a088371cf0d3ab38ee1051422ea33147dae6da25d7eec3cb058.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cdb7bf3846af44a9acd47ee0f5946c254f6487d6ddb91beb2288a2e2fe65932 +size 9228 diff --git a/parse/train/BJeguTEKDB/images/14312460533a3126bebbfbd271a6f22ebe6c20424aaca776ad6e6202897d36cc.jpg b/parse/train/BJeguTEKDB/images/14312460533a3126bebbfbd271a6f22ebe6c20424aaca776ad6e6202897d36cc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..38bd5c6c81612377d1ee3dcdfde01df7161d66d5 --- /dev/null +++ b/parse/train/BJeguTEKDB/images/14312460533a3126bebbfbd271a6f22ebe6c20424aaca776ad6e6202897d36cc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecad5b73d1eb7e776857dbab487bd43b1b61c60c4c671e982e8818c37d860005 +size 20789 diff --git a/parse/train/BJeguTEKDB/images/296b0149780c59fbe3de8611d3062fddfd22d0570098e9f18ab4175de04ed1bb.jpg b/parse/train/BJeguTEKDB/images/296b0149780c59fbe3de8611d3062fddfd22d0570098e9f18ab4175de04ed1bb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fccc489de19b51314c80cdb34cf40fcd019b4f37 --- /dev/null +++ b/parse/train/BJeguTEKDB/images/296b0149780c59fbe3de8611d3062fddfd22d0570098e9f18ab4175de04ed1bb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bd1849f79932f3cd7eb47c3c6adadb4c93336e1413c195260ea2994fea38525 +size 105363 diff --git a/parse/train/BJeguTEKDB/images/29b25bd834de38cecce82b1fb074427d94c4acb2d13a74602d83f9b4efe5ca7f.jpg b/parse/train/BJeguTEKDB/images/29b25bd834de38cecce82b1fb074427d94c4acb2d13a74602d83f9b4efe5ca7f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c94b20aede36e8d56556ed3733af372e32d0f42c --- /dev/null +++ b/parse/train/BJeguTEKDB/images/29b25bd834de38cecce82b1fb074427d94c4acb2d13a74602d83f9b4efe5ca7f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcb8abdb34573f700b774d7db11e63b28e3acbde601ecc288d06b36f116e0e9b +size 9392 diff --git a/parse/train/BJeguTEKDB/images/2e3bd338dd52284aac4c5ee2ddf09dc2068cdd9e4705202a8af4d52f642de1f8.jpg b/parse/train/BJeguTEKDB/images/2e3bd338dd52284aac4c5ee2ddf09dc2068cdd9e4705202a8af4d52f642de1f8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..52eb7258dea40d2dbb187088622406c63866dc7b --- /dev/null +++ b/parse/train/BJeguTEKDB/images/2e3bd338dd52284aac4c5ee2ddf09dc2068cdd9e4705202a8af4d52f642de1f8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:695cc6089d59470a7716187c45c7fe28c067a45ee274f3227c9ae760236c8e7a +size 21204 diff --git a/parse/train/BJeguTEKDB/images/36d34c1ae65918a9aa45fcc4e304d0d4bd29c1c10abdf2b6dde964ed0894f6d7.jpg b/parse/train/BJeguTEKDB/images/36d34c1ae65918a9aa45fcc4e304d0d4bd29c1c10abdf2b6dde964ed0894f6d7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..658c19c3ba54a723bd10e10a9ee68c12a7abc40b --- /dev/null +++ b/parse/train/BJeguTEKDB/images/36d34c1ae65918a9aa45fcc4e304d0d4bd29c1c10abdf2b6dde964ed0894f6d7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60d9771d83a42b757576a04410bd711bef672f25ee69708b4b9f6ca9025613f9 +size 28082 diff --git a/parse/train/BJeguTEKDB/images/3a340b01a8233f62340a8f60074af4ce268358631fedb550c89e26eb2750fc3f.jpg b/parse/train/BJeguTEKDB/images/3a340b01a8233f62340a8f60074af4ce268358631fedb550c89e26eb2750fc3f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..97d846c0ea6980463f71deb248c6b07020c98c1d --- /dev/null +++ b/parse/train/BJeguTEKDB/images/3a340b01a8233f62340a8f60074af4ce268358631fedb550c89e26eb2750fc3f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5eae1b1279282fa08d3a8049430854ac738297c153f00c9e4cd1c7100987d404 +size 190157 diff --git a/parse/train/BJeguTEKDB/images/471919737f1518d974ad45c529b0900241c65585eb7d1356f950f33ea94c7433.jpg b/parse/train/BJeguTEKDB/images/471919737f1518d974ad45c529b0900241c65585eb7d1356f950f33ea94c7433.jpg new file mode 100644 index 0000000000000000000000000000000000000000..26009ee6b443423d742d5831e6235c501d75f56b --- /dev/null +++ b/parse/train/BJeguTEKDB/images/471919737f1518d974ad45c529b0900241c65585eb7d1356f950f33ea94c7433.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ac1a0f8777542cade31511579b8416755c86b89036e2d8cacae88acfe080220 +size 15151 diff --git a/parse/train/BJeguTEKDB/images/57eb8211d2d0f4c1e630e1ba7f7058d1f01bf07613e8082d902ce647872a2654.jpg b/parse/train/BJeguTEKDB/images/57eb8211d2d0f4c1e630e1ba7f7058d1f01bf07613e8082d902ce647872a2654.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7f624c17c79d23cd7294e120f48544cf586d8420 --- /dev/null +++ b/parse/train/BJeguTEKDB/images/57eb8211d2d0f4c1e630e1ba7f7058d1f01bf07613e8082d902ce647872a2654.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f0e7f24f8ed14fb1fa8b7f2c148f42465cf11754add089dac5c04993d5e637c +size 12972 diff --git a/parse/train/BJeguTEKDB/images/69462f226b07cf7d2fd9d5e30fd740ea2b357cf636e4befde05f92161f5fa458.jpg b/parse/train/BJeguTEKDB/images/69462f226b07cf7d2fd9d5e30fd740ea2b357cf636e4befde05f92161f5fa458.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b9afbd953340c31216c1da425c575b8c104ab7af --- /dev/null +++ b/parse/train/BJeguTEKDB/images/69462f226b07cf7d2fd9d5e30fd740ea2b357cf636e4befde05f92161f5fa458.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ae76460c57c32f1366f03fbf49026a6e9347b1ea1c101340179d6e37de7a7a5 +size 266698 diff --git a/parse/train/BJeguTEKDB/images/6ec721b5e828dd98125d0ceed9345a22ace0e7f543a678149d00e410f3691f13.jpg b/parse/train/BJeguTEKDB/images/6ec721b5e828dd98125d0ceed9345a22ace0e7f543a678149d00e410f3691f13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c91fe63eae53e4c1a5fd329891e19e12f64a25a4 --- /dev/null +++ b/parse/train/BJeguTEKDB/images/6ec721b5e828dd98125d0ceed9345a22ace0e7f543a678149d00e410f3691f13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ae9028f5d394d117d328d66af850ea880c93e2c0ed6fc70256ddada8e789cad +size 7755 diff --git a/parse/train/BJeguTEKDB/images/70a6a5d3e58fae9f601e540a6b54ed308766bb4847425b5e0da3f297eb2bbeab.jpg b/parse/train/BJeguTEKDB/images/70a6a5d3e58fae9f601e540a6b54ed308766bb4847425b5e0da3f297eb2bbeab.jpg new file mode 100644 index 0000000000000000000000000000000000000000..86d6944e1a864d315b27059e89f0042286f5d9e4 --- /dev/null +++ b/parse/train/BJeguTEKDB/images/70a6a5d3e58fae9f601e540a6b54ed308766bb4847425b5e0da3f297eb2bbeab.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc5275dd35342d4174e52b6b81ba55de0280143c32f16dd2ccd03414bb27a7ad +size 20793 diff --git a/parse/train/BJeguTEKDB/images/7bdfd323411e0eae04ec5ea3025903ad1fe84d55c28f3c98f8747744c551442f.jpg b/parse/train/BJeguTEKDB/images/7bdfd323411e0eae04ec5ea3025903ad1fe84d55c28f3c98f8747744c551442f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1753aa2829b551df1dfb981b3e2a9f01ec4132fd --- /dev/null +++ b/parse/train/BJeguTEKDB/images/7bdfd323411e0eae04ec5ea3025903ad1fe84d55c28f3c98f8747744c551442f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75611988d5994f998a38e06c24c7a51483facda1038eaa2de7189a5a0440388c +size 10807 diff --git a/parse/train/BJeguTEKDB/images/93913c94218eb8f8ea147241f5e2c7dd6286847e228650afbf341769ea1aa1cd.jpg b/parse/train/BJeguTEKDB/images/93913c94218eb8f8ea147241f5e2c7dd6286847e228650afbf341769ea1aa1cd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8707e0ccbcd93c2651aa52f86c4ecd06d0e16ab8 --- /dev/null +++ b/parse/train/BJeguTEKDB/images/93913c94218eb8f8ea147241f5e2c7dd6286847e228650afbf341769ea1aa1cd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5330d34369157402cebe1484d2f363a89186a86c08301004e51c529c4380ab9b +size 10179 diff --git a/parse/train/BJeguTEKDB/images/968608d2dda9bc95dbde246a6c912269cf884923eceeafacca3526e93f2c89ba.jpg b/parse/train/BJeguTEKDB/images/968608d2dda9bc95dbde246a6c912269cf884923eceeafacca3526e93f2c89ba.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8f6abb34048eb34fac4f3716487949e65e59bfa7 --- /dev/null +++ b/parse/train/BJeguTEKDB/images/968608d2dda9bc95dbde246a6c912269cf884923eceeafacca3526e93f2c89ba.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebe59c4dba54c8a7e0b3fe7a1c9d7691b56bc451de65ea96fe8d0477a12949be +size 19849 diff --git a/parse/train/BJeguTEKDB/images/99ffda213944fa27d95151ff6b8a9854b571b9f576cd83c503c894b8b347aa24.jpg b/parse/train/BJeguTEKDB/images/99ffda213944fa27d95151ff6b8a9854b571b9f576cd83c503c894b8b347aa24.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2d92db224519bee415d09bba5fb7614ed7953467 --- /dev/null +++ b/parse/train/BJeguTEKDB/images/99ffda213944fa27d95151ff6b8a9854b571b9f576cd83c503c894b8b347aa24.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fdcd584f908994fd4d6c2fd12d57334883a7408e33a0c556023c3322f45e313 +size 12242 diff --git a/parse/train/BJeguTEKDB/images/a296cf9197750e96661a74e31fed648006b0d69f9d892b102965cac6c0c43a1e.jpg b/parse/train/BJeguTEKDB/images/a296cf9197750e96661a74e31fed648006b0d69f9d892b102965cac6c0c43a1e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1fe4c302c40e6fec817b72eaa432374ee9bb357a --- /dev/null +++ b/parse/train/BJeguTEKDB/images/a296cf9197750e96661a74e31fed648006b0d69f9d892b102965cac6c0c43a1e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b2a5951907a380606c38e739707ed48fa426f9d9e2de115300cfa35a8784535 +size 32850 diff --git a/parse/train/BJeguTEKDB/images/a60d57cead034df32ad85e88df5690729f86d3c6097a8f866eea49d8bdf34073.jpg b/parse/train/BJeguTEKDB/images/a60d57cead034df32ad85e88df5690729f86d3c6097a8f866eea49d8bdf34073.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ee47fe2f060a0549199d881e7a7968c22312dd34 --- /dev/null +++ b/parse/train/BJeguTEKDB/images/a60d57cead034df32ad85e88df5690729f86d3c6097a8f866eea49d8bdf34073.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:298092936650650584d22784dda18b4e5ae42ea896f6a9468c2ceb30c35649dc +size 16843 diff --git a/parse/train/BJeguTEKDB/images/a78833365a51ec80115d6ddda8d29e75fa9144f30df0ffa5eeafa62385f8716d.jpg b/parse/train/BJeguTEKDB/images/a78833365a51ec80115d6ddda8d29e75fa9144f30df0ffa5eeafa62385f8716d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..69e9bc1afee71edf91253f01548734d34e052e74 --- /dev/null +++ b/parse/train/BJeguTEKDB/images/a78833365a51ec80115d6ddda8d29e75fa9144f30df0ffa5eeafa62385f8716d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47d598f1e1603ca3708240b31dd6a530711e54af22ac680139dce5258d451302 +size 12268 diff --git a/parse/train/BJeguTEKDB/images/a8540698868851b628aba0663f818f6af6fcf21c1e7a67f8f16ab9906a1eaff9.jpg b/parse/train/BJeguTEKDB/images/a8540698868851b628aba0663f818f6af6fcf21c1e7a67f8f16ab9906a1eaff9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6bad09d9268dd150bea737e9f6029269809e0053 --- /dev/null +++ b/parse/train/BJeguTEKDB/images/a8540698868851b628aba0663f818f6af6fcf21c1e7a67f8f16ab9906a1eaff9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efbd03992490189edd2222bfe1e8d3c54a34217e598689e9ff1a2ef852c78d6c +size 51290 diff --git a/parse/train/BJeguTEKDB/images/aa181eef4b9d970146ca21829a8c1895e171064c54c44ead2871d881a98e9dc5.jpg b/parse/train/BJeguTEKDB/images/aa181eef4b9d970146ca21829a8c1895e171064c54c44ead2871d881a98e9dc5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..67877ad21e20ba6cec57d4c7b708c88a9a2cfff7 --- /dev/null +++ b/parse/train/BJeguTEKDB/images/aa181eef4b9d970146ca21829a8c1895e171064c54c44ead2871d881a98e9dc5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41326327c9ee03f582466fc02f1f0ae86e42d6db0186451acb57c97cd7a230ff +size 22719 diff --git a/parse/train/BJeguTEKDB/images/ae1a843fe49d44958fc96606702ed9ac311129b0564c6d20e19956b794d08d27.jpg b/parse/train/BJeguTEKDB/images/ae1a843fe49d44958fc96606702ed9ac311129b0564c6d20e19956b794d08d27.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7c740ca2495dfa36dd773d1c99d410d8d9e30ce8 --- /dev/null +++ b/parse/train/BJeguTEKDB/images/ae1a843fe49d44958fc96606702ed9ac311129b0564c6d20e19956b794d08d27.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5f0debf22d4bc28418b76a590540308f1e5e60474935e99afa92e776f7967b7 +size 20284 diff --git a/parse/train/BJeguTEKDB/images/b884ac4fbad4ebbf4e076899ca5792542c7d5937044c718d2264108b3ca3619f.jpg b/parse/train/BJeguTEKDB/images/b884ac4fbad4ebbf4e076899ca5792542c7d5937044c718d2264108b3ca3619f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..490f98b9cbbafc94457355064a3eb8a895b71b84 --- /dev/null +++ b/parse/train/BJeguTEKDB/images/b884ac4fbad4ebbf4e076899ca5792542c7d5937044c718d2264108b3ca3619f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e7d52d14164c2d03b8ef2e3516b400ef9279508f0c35a86767680cd00efd650 +size 7732 diff --git a/parse/train/BJeguTEKDB/images/d4d3c219fe648cef2349c56825348c51ed3e11c362a747c34dc4984b3cbb4ca7.jpg b/parse/train/BJeguTEKDB/images/d4d3c219fe648cef2349c56825348c51ed3e11c362a747c34dc4984b3cbb4ca7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..33c7255e10d698329a612da5489822e4768cdf07 --- /dev/null +++ b/parse/train/BJeguTEKDB/images/d4d3c219fe648cef2349c56825348c51ed3e11c362a747c34dc4984b3cbb4ca7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18403c16c1130f2e643de82c7e548eeeffe4df931d5bbb175ea62c8343779c0e +size 16037 diff --git a/parse/train/BJeguTEKDB/images/ded2b69e9798e07d85107a94ea231952300ad75a880033586f5a09f97f50fe5d.jpg b/parse/train/BJeguTEKDB/images/ded2b69e9798e07d85107a94ea231952300ad75a880033586f5a09f97f50fe5d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7143935eb8b1a8060d9ee201b658c65fd05c9661 --- /dev/null +++ b/parse/train/BJeguTEKDB/images/ded2b69e9798e07d85107a94ea231952300ad75a880033586f5a09f97f50fe5d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed9dfb98432d536eacc9f34c2e9bbf7c9ec216e406084182793740e37a142f09 +size 9969 diff --git a/parse/train/BJeguTEKDB/images/e8dc3bf7725fe0b44073a0c0daac15fa7f4a3e1a7785aaf13480bde989d31262.jpg b/parse/train/BJeguTEKDB/images/e8dc3bf7725fe0b44073a0c0daac15fa7f4a3e1a7785aaf13480bde989d31262.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a5f5c14635e2cda23b43335b6c83b85e8a3d301a --- /dev/null +++ b/parse/train/BJeguTEKDB/images/e8dc3bf7725fe0b44073a0c0daac15fa7f4a3e1a7785aaf13480bde989d31262.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28c4b4264f30b676ca8a36547ccbd2195697c60a9b33afabd3024e2884cf59b6 +size 16406 diff --git a/parse/train/BJeguTEKDB/images/effd065e05356f6b7c4bc2ae28aa54a81af2fee191239ad0f36840a4d7e7f691.jpg b/parse/train/BJeguTEKDB/images/effd065e05356f6b7c4bc2ae28aa54a81af2fee191239ad0f36840a4d7e7f691.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9795adc431a94728668f5400028131cadc32a287 --- /dev/null +++ b/parse/train/BJeguTEKDB/images/effd065e05356f6b7c4bc2ae28aa54a81af2fee191239ad0f36840a4d7e7f691.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53bc05a145ddc39f8895e16cfa98e8f04c1a57e230d8e591eb4894fefcef1e9d +size 20200 diff --git a/parse/train/BJeguTEKDB/images/f51994f140e9fb2e76eaa23286a7332318a4722523d3cdcc57c55f01ea3b2804.jpg b/parse/train/BJeguTEKDB/images/f51994f140e9fb2e76eaa23286a7332318a4722523d3cdcc57c55f01ea3b2804.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b6aacf866fb07cd075cdc618b470de7bc62a14e7 --- /dev/null +++ b/parse/train/BJeguTEKDB/images/f51994f140e9fb2e76eaa23286a7332318a4722523d3cdcc57c55f01ea3b2804.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59a7ca0d2611d69395a44d9a5c6b31991b02da0c1a438ae761f7320a66c7ccbb +size 312024 diff --git a/parse/train/BJeguTEKDB/images/f65a9a54acead7df4f69123e5baa526144934630020d1f273901f5e9aeba25c8.jpg b/parse/train/BJeguTEKDB/images/f65a9a54acead7df4f69123e5baa526144934630020d1f273901f5e9aeba25c8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d73e3005e8c099030e0dc6d11a031a8fdbbbd2ef --- /dev/null +++ b/parse/train/BJeguTEKDB/images/f65a9a54acead7df4f69123e5baa526144934630020d1f273901f5e9aeba25c8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e74c4af67bea764d9da4e53867cb34a4d4cdd9fbeff9c06ebb47c469d105f692 +size 16493 diff --git a/parse/train/BJeguTEKDB/images/f8cd0155bd1b4aaab504d322c10252d8e4658f50f8714459b620319429326400.jpg b/parse/train/BJeguTEKDB/images/f8cd0155bd1b4aaab504d322c10252d8e4658f50f8714459b620319429326400.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8ab9d6ca78a1077a10c02a24d0d430b3ea223a64 --- /dev/null +++ b/parse/train/BJeguTEKDB/images/f8cd0155bd1b4aaab504d322c10252d8e4658f50f8714459b620319429326400.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:add0ec1071639c50df50fdfd993d803bbc29fa557b837174a463d4f92a1c308c +size 20534 diff --git a/parse/train/BkSDMA36Z/images/15ee1e55605f089d9ad7f86f9861d1d45e7ccad4ff1e6f3664d6fe2e8c8e7cda.jpg b/parse/train/BkSDMA36Z/images/15ee1e55605f089d9ad7f86f9861d1d45e7ccad4ff1e6f3664d6fe2e8c8e7cda.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5559bbcfac614844dd5f2b9c08e610f03b753b96 --- /dev/null +++ b/parse/train/BkSDMA36Z/images/15ee1e55605f089d9ad7f86f9861d1d45e7ccad4ff1e6f3664d6fe2e8c8e7cda.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80235bf2e0dcf7154e8917d2be16e77596b02719b65db171fabd070944e7ccaa +size 71806 diff --git a/parse/train/BkSDMA36Z/images/26bf2ac5ba275e0e50ed5c8aacb7e8e54bc93b32801ff92fbb5a4121faf1f50a.jpg b/parse/train/BkSDMA36Z/images/26bf2ac5ba275e0e50ed5c8aacb7e8e54bc93b32801ff92fbb5a4121faf1f50a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..afa3d100588e3d0252d70c3128de331bc45daceb --- /dev/null +++ b/parse/train/BkSDMA36Z/images/26bf2ac5ba275e0e50ed5c8aacb7e8e54bc93b32801ff92fbb5a4121faf1f50a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc80a3f4c24ded97168b737fed56aa981e06d56ac572a9d33eb0121416c4e6b7 +size 6237 diff --git a/parse/train/BkSDMA36Z/images/2c19d24d525b5aafc3c95a1a74a09609372d978eceb8acbcd02b2e4846cd3b86.jpg b/parse/train/BkSDMA36Z/images/2c19d24d525b5aafc3c95a1a74a09609372d978eceb8acbcd02b2e4846cd3b86.jpg new file mode 100644 index 0000000000000000000000000000000000000000..111993058ff5be6ba6fd1ac23a0fa45981f50707 --- /dev/null +++ b/parse/train/BkSDMA36Z/images/2c19d24d525b5aafc3c95a1a74a09609372d978eceb8acbcd02b2e4846cd3b86.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c13453e8988e1e99b969ccb168cf19307cb472ee972cb9dba685e4b766f372ed +size 2877 diff --git a/parse/train/BkSDMA36Z/images/3694017565e63165bc0ec78d8d1db4c64061fe744dea14ffbfe20d8859d4c263.jpg b/parse/train/BkSDMA36Z/images/3694017565e63165bc0ec78d8d1db4c64061fe744dea14ffbfe20d8859d4c263.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8c046ca3a67d49abb41ca324c6bcc624e611722c --- /dev/null +++ b/parse/train/BkSDMA36Z/images/3694017565e63165bc0ec78d8d1db4c64061fe744dea14ffbfe20d8859d4c263.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3766e13b93d4e012a670d15cf6330284f015706822da9666cd06aa2f573640e5 +size 67660 diff --git a/parse/train/BkSDMA36Z/images/39bb20cd81b1b28e61ee38b0e0b72bd1dfaae8572c8dfc73a0815d0a845949ca.jpg b/parse/train/BkSDMA36Z/images/39bb20cd81b1b28e61ee38b0e0b72bd1dfaae8572c8dfc73a0815d0a845949ca.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d455ed4381602affb155b749c352bfb812e4d65 --- /dev/null +++ b/parse/train/BkSDMA36Z/images/39bb20cd81b1b28e61ee38b0e0b72bd1dfaae8572c8dfc73a0815d0a845949ca.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e60165652fd4f84db7510eb652fa51513526135e0512072f974d0e3d52d494e7 +size 35965 diff --git a/parse/train/BkSDMA36Z/images/43fbf8ef405eead8798654c8305313a3ef61a11bb2002bdd1daec43963e5986d.jpg b/parse/train/BkSDMA36Z/images/43fbf8ef405eead8798654c8305313a3ef61a11bb2002bdd1daec43963e5986d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b41d801904f415e32710f939ee687eacd8d6f928 --- /dev/null +++ b/parse/train/BkSDMA36Z/images/43fbf8ef405eead8798654c8305313a3ef61a11bb2002bdd1daec43963e5986d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9db13b0209863e13caae0b2c0c60c6836d2b65aac28b48bc55eb4c6b07f0077 +size 5453 diff --git a/parse/train/BkSDMA36Z/images/4a0a60d315cde0e9390177ea56c2e4e1eb05d45ed4e0c6c601c0b643c7c7d6e8.jpg b/parse/train/BkSDMA36Z/images/4a0a60d315cde0e9390177ea56c2e4e1eb05d45ed4e0c6c601c0b643c7c7d6e8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3c6e73ce67c9e4ea05779d8268eff7971b08d5aa --- /dev/null +++ b/parse/train/BkSDMA36Z/images/4a0a60d315cde0e9390177ea56c2e4e1eb05d45ed4e0c6c601c0b643c7c7d6e8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f2702a410c2d2e4a4c2b4d2aa389230e5d48f57b2c19e0d4de171a1c9c968ce +size 48553 diff --git a/parse/train/BkSDMA36Z/images/851d4fdfd2dd8c9354ebfbd907f234e2a8cc364ded839f86f4aa23193f6c0599.jpg b/parse/train/BkSDMA36Z/images/851d4fdfd2dd8c9354ebfbd907f234e2a8cc364ded839f86f4aa23193f6c0599.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6cd00581a32cb6b3dad4f6dc05ce9a325614c230 --- /dev/null +++ b/parse/train/BkSDMA36Z/images/851d4fdfd2dd8c9354ebfbd907f234e2a8cc364ded839f86f4aa23193f6c0599.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5adf39144b0c91cdfa511994977ce5a586200b42a637a278e0072ce5a045bbf +size 22690 diff --git a/parse/train/BkSDMA36Z/images/ae0c82de8dfce76f2770bd1e9d693b1c71160217f8930efc04d49ddca8b3e217.jpg b/parse/train/BkSDMA36Z/images/ae0c82de8dfce76f2770bd1e9d693b1c71160217f8930efc04d49ddca8b3e217.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9d70659ac03557d6351671100cd65055e2195f28 --- /dev/null +++ b/parse/train/BkSDMA36Z/images/ae0c82de8dfce76f2770bd1e9d693b1c71160217f8930efc04d49ddca8b3e217.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec85ecb0081cf6d001d5768cf7be9491040009ca158afaf3960b93b5576854c3 +size 35689 diff --git a/parse/train/BkSDMA36Z/images/c7344c3fadf72816e2973c847a64bdb9fa62b548521438748c2139c022e1a8d7.jpg b/parse/train/BkSDMA36Z/images/c7344c3fadf72816e2973c847a64bdb9fa62b548521438748c2139c022e1a8d7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fd3705e1ee9443ae828e126c4e6e888141541314 --- /dev/null +++ b/parse/train/BkSDMA36Z/images/c7344c3fadf72816e2973c847a64bdb9fa62b548521438748c2139c022e1a8d7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76360620e629fea677b62366dfe078f398619aa416a50561ba11afecbccc123c +size 125254 diff --git a/parse/train/BkSDMA36Z/images/cbb613170613bb105975169510719e7d281fcb6e107e0f198c3343b5e22f32c7.jpg b/parse/train/BkSDMA36Z/images/cbb613170613bb105975169510719e7d281fcb6e107e0f198c3343b5e22f32c7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b5d8bd6030af155f03bf0e6243e8feb490d27234 --- /dev/null +++ b/parse/train/BkSDMA36Z/images/cbb613170613bb105975169510719e7d281fcb6e107e0f198c3343b5e22f32c7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:404db546f8c7ccd7a53fffab7e72e3331405d453d753b04d5999cc579f009f95 +size 63870 diff --git a/parse/train/BkSDMA36Z/images/d80f79fd5893ceddc980a9e774ce57d694780e54d6e8c6922edb16fc33afb1b7.jpg b/parse/train/BkSDMA36Z/images/d80f79fd5893ceddc980a9e774ce57d694780e54d6e8c6922edb16fc33afb1b7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5b71daf40950c2c171a512ca29f396d36509cc70 --- /dev/null +++ b/parse/train/BkSDMA36Z/images/d80f79fd5893ceddc980a9e774ce57d694780e54d6e8c6922edb16fc33afb1b7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba36796094bc817d29d5c95ddd23c9b40b084e303998af3677f32ebbc26fabe7 +size 24815 diff --git a/parse/train/BkSDMA36Z/images/fe86b31badc2aa9e3f7d86684d4c170252376a733dad45baa1eea31e7637650d.jpg b/parse/train/BkSDMA36Z/images/fe86b31badc2aa9e3f7d86684d4c170252376a733dad45baa1eea31e7637650d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c8c183ddd52f4ef47781824270011e13250570b1 --- /dev/null +++ b/parse/train/BkSDMA36Z/images/fe86b31badc2aa9e3f7d86684d4c170252376a733dad45baa1eea31e7637650d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf492413e96750b755433224567d13317a51b55e67866fd07b8138762f3c045c +size 5304 diff --git a/parse/train/ByC7ww9le/images/1e08d92fcdcdcb4612cfc8a344544f32e1c03b71996f84931a70e6d731e7a783.jpg b/parse/train/ByC7ww9le/images/1e08d92fcdcdcb4612cfc8a344544f32e1c03b71996f84931a70e6d731e7a783.jpg new file mode 100644 index 0000000000000000000000000000000000000000..77eed9d2a56530abbd6b4acec8645b4fb083de9c --- /dev/null +++ b/parse/train/ByC7ww9le/images/1e08d92fcdcdcb4612cfc8a344544f32e1c03b71996f84931a70e6d731e7a783.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37fbdde05c5cbc9f748c144165845716e12fecdfa1b49b2ef9175f6cf474f168 +size 124985 diff --git a/parse/train/ByC7ww9le/images/2745f1e997fc7c77d598f00975f60d1aef2225ce169b2b4d4728c20044684904.jpg b/parse/train/ByC7ww9le/images/2745f1e997fc7c77d598f00975f60d1aef2225ce169b2b4d4728c20044684904.jpg new file mode 100644 index 0000000000000000000000000000000000000000..634d255c81b6eba82ac70028d49d6f1db011886d --- /dev/null +++ b/parse/train/ByC7ww9le/images/2745f1e997fc7c77d598f00975f60d1aef2225ce169b2b4d4728c20044684904.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fee2d95eee7db53c0edb0202fda087eba8a3ef4bccd614290451d153ccf49a21 +size 32880 diff --git a/parse/train/ByC7ww9le/images/2b53a112ee0c39aded391dee712421d6078d99ad25424f6d26c2802163f13eaf.jpg b/parse/train/ByC7ww9le/images/2b53a112ee0c39aded391dee712421d6078d99ad25424f6d26c2802163f13eaf.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f910285e5298fb266a04e87ff7ff0ac1230cba9f --- /dev/null +++ b/parse/train/ByC7ww9le/images/2b53a112ee0c39aded391dee712421d6078d99ad25424f6d26c2802163f13eaf.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a30819fc8c6e88011b50777784968633d8c27bd649e087e3a69e2508b2ef01c +size 2918 diff --git a/parse/train/ByC7ww9le/images/2bda7cc08ca20184c9dd2f7776ba0063ba8e71d48f6c8123f749f089080f9874.jpg b/parse/train/ByC7ww9le/images/2bda7cc08ca20184c9dd2f7776ba0063ba8e71d48f6c8123f749f089080f9874.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e4502b5809a0050c458e45b8b41e2208076c3028 --- /dev/null +++ b/parse/train/ByC7ww9le/images/2bda7cc08ca20184c9dd2f7776ba0063ba8e71d48f6c8123f749f089080f9874.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1303a8424fe039010b58242b687e46efeb0f9e7d32645c8ae831a32fc1cff4aa +size 5024 diff --git a/parse/train/ByC7ww9le/images/35303e12d200b6ebe304e88c74e84013ec500365fb64381d5e4d7d6f620b9df6.jpg b/parse/train/ByC7ww9le/images/35303e12d200b6ebe304e88c74e84013ec500365fb64381d5e4d7d6f620b9df6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f5938c9585a9444378626c213d1f4fb5ef36c55 --- /dev/null +++ b/parse/train/ByC7ww9le/images/35303e12d200b6ebe304e88c74e84013ec500365fb64381d5e4d7d6f620b9df6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbc10cc96ae42f9bd0c874677f775bc2cf9a5e2fe78bf57151cd458834624f91 +size 12421 diff --git a/parse/train/ByC7ww9le/images/3d40bd351af026f629f9cacb330837b022c4d0c1d9ab8ed13b6d474e7cdb411a.jpg b/parse/train/ByC7ww9le/images/3d40bd351af026f629f9cacb330837b022c4d0c1d9ab8ed13b6d474e7cdb411a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..03e8439aa733cf7f0d13ddf8b608b9cf69011133 --- /dev/null +++ b/parse/train/ByC7ww9le/images/3d40bd351af026f629f9cacb330837b022c4d0c1d9ab8ed13b6d474e7cdb411a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6382fc1477b265a45301aac5009b9fc4cef5646003c7117e64e061fe16b98cfb +size 5069 diff --git a/parse/train/ByC7ww9le/images/4a25b8273f36037ebd611825cf1990cec4dc4df993551c3f676718009d7fca5b.jpg b/parse/train/ByC7ww9le/images/4a25b8273f36037ebd611825cf1990cec4dc4df993551c3f676718009d7fca5b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e1502c9900d716d902333ddb71525a80f00dc3f8 --- /dev/null +++ b/parse/train/ByC7ww9le/images/4a25b8273f36037ebd611825cf1990cec4dc4df993551c3f676718009d7fca5b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a455ae5e47c52c083aaa02c351eb47766d5cb1d2a5e93b2dade9ed773ab67b3 +size 222469 diff --git a/parse/train/ByC7ww9le/images/5c69bcc35098be68af1a430bd4cb7dbc1fecdbf4ab8b68d54743d74cd3859f79.jpg b/parse/train/ByC7ww9le/images/5c69bcc35098be68af1a430bd4cb7dbc1fecdbf4ab8b68d54743d74cd3859f79.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f3ff966df745e51e33f2ae8ffd30c411246281d6 --- /dev/null +++ b/parse/train/ByC7ww9le/images/5c69bcc35098be68af1a430bd4cb7dbc1fecdbf4ab8b68d54743d74cd3859f79.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3dd1c1299786bb142e30bff9b6736ad189c051ca6c08c30afca4e0dd7f53e60 +size 5492 diff --git a/parse/train/ByC7ww9le/images/5c8936e2f39543c1538d4f7c684c5e78d08c0646e6073693b5ca4bc83415e80b.jpg b/parse/train/ByC7ww9le/images/5c8936e2f39543c1538d4f7c684c5e78d08c0646e6073693b5ca4bc83415e80b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6618025d12dc3191635c28a1ebb4a2d4dea9e37b --- /dev/null +++ b/parse/train/ByC7ww9le/images/5c8936e2f39543c1538d4f7c684c5e78d08c0646e6073693b5ca4bc83415e80b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d47474eec42a6011133db7916fc379ffac3dc83670748e12a39e3bdb9a477756 +size 196705 diff --git a/parse/train/ByC7ww9le/images/5fbe82f533094c85145ea099106cb95991607d24b32e7ddd6a941002c8b6ab14.jpg b/parse/train/ByC7ww9le/images/5fbe82f533094c85145ea099106cb95991607d24b32e7ddd6a941002c8b6ab14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6915cc89fdd60730ddb37d3d93903935e0ae6afa --- /dev/null +++ b/parse/train/ByC7ww9le/images/5fbe82f533094c85145ea099106cb95991607d24b32e7ddd6a941002c8b6ab14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:768eb7c80baf9fe81e75c24c33baa0926301a57e448eaca75ac05f1e13338e2e +size 135845 diff --git a/parse/train/ByC7ww9le/images/612204b4a493e4e6ad7548f7a46ce07e9418c499cd0449151d472e0148446f5f.jpg b/parse/train/ByC7ww9le/images/612204b4a493e4e6ad7548f7a46ce07e9418c499cd0449151d472e0148446f5f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fed6b3b7198a46d21e7d835ebe874de7b4ce0ec2 --- /dev/null +++ b/parse/train/ByC7ww9le/images/612204b4a493e4e6ad7548f7a46ce07e9418c499cd0449151d472e0148446f5f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23c464062a97474dfca58865a2ddc63e4879d1af20aa915c200455511cdbceaf +size 56285 diff --git a/parse/train/ByC7ww9le/images/6a31c5c001b680422b7d6aafeee5203c2e1e12300f556bf38b98a9f0280e2f71.jpg b/parse/train/ByC7ww9le/images/6a31c5c001b680422b7d6aafeee5203c2e1e12300f556bf38b98a9f0280e2f71.jpg new file mode 100644 index 0000000000000000000000000000000000000000..86189292ab10c05d67ab065282ee545a845637d8 --- /dev/null +++ b/parse/train/ByC7ww9le/images/6a31c5c001b680422b7d6aafeee5203c2e1e12300f556bf38b98a9f0280e2f71.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fa2da0649fe352873c847d5d216ac434c10505eddd6f1ac94e7330568e91d36 +size 4742 diff --git a/parse/train/ByC7ww9le/images/7a525619e51c23780d45b9a7021f18a63cee7243fd7e4bee1093ec968f13bce2.jpg b/parse/train/ByC7ww9le/images/7a525619e51c23780d45b9a7021f18a63cee7243fd7e4bee1093ec968f13bce2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..41fc5a749f08ef15aa6a7c6ee02bc19d7add5e11 --- /dev/null +++ b/parse/train/ByC7ww9le/images/7a525619e51c23780d45b9a7021f18a63cee7243fd7e4bee1093ec968f13bce2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee99fb46d9b3e090caba1350f60d1814ae94b9ed8365228757de1cc5c644503c +size 15457 diff --git a/parse/train/ByC7ww9le/images/7b655a2b41aad14dfeb2d35e01d31e0083bc112661b419140489d25d63616d5e.jpg b/parse/train/ByC7ww9le/images/7b655a2b41aad14dfeb2d35e01d31e0083bc112661b419140489d25d63616d5e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7ad2ce00c0f46c6eba1d1f9a5560a8789c5f5174 --- /dev/null +++ b/parse/train/ByC7ww9le/images/7b655a2b41aad14dfeb2d35e01d31e0083bc112661b419140489d25d63616d5e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a3a249721559df2ced79d913cff1a2e92e67804729451264cbb24b4f914be66 +size 127215 diff --git a/parse/train/ByC7ww9le/images/7b7cb14ec66eecc7d5221dbaa3b070d4c63fcafe7839f8dbcf502bea0dd90dc7.jpg b/parse/train/ByC7ww9le/images/7b7cb14ec66eecc7d5221dbaa3b070d4c63fcafe7839f8dbcf502bea0dd90dc7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ef20628b1a171f770b86a5e28daa65bf26c59d82 --- /dev/null +++ b/parse/train/ByC7ww9le/images/7b7cb14ec66eecc7d5221dbaa3b070d4c63fcafe7839f8dbcf502bea0dd90dc7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8aab5b0fae171caa3f354b0fdcfda6e46d1f265edffa2b8197838c152ffeefd9 +size 59058 diff --git a/parse/train/ByC7ww9le/images/8c2970ab69ca1c6706d4e79cc365694d00042fea242c32f6fb606982bd74807e.jpg b/parse/train/ByC7ww9le/images/8c2970ab69ca1c6706d4e79cc365694d00042fea242c32f6fb606982bd74807e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f6df4982a3542d7e63c2f58a7c0e5434a292da6d --- /dev/null +++ b/parse/train/ByC7ww9le/images/8c2970ab69ca1c6706d4e79cc365694d00042fea242c32f6fb606982bd74807e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee00402445c03bcb5b6e073b9c89f7e6dee8bff8b5ba9c935f5818143b25356e +size 12302 diff --git a/parse/train/ByC7ww9le/images/aad02463c0fedf6a70824602adf903d1fff0827b0c92885dcdc8d3417dc51591.jpg b/parse/train/ByC7ww9le/images/aad02463c0fedf6a70824602adf903d1fff0827b0c92885dcdc8d3417dc51591.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8ae42fe90bb49b7283f20e135fe6a5cb7862ffc8 --- /dev/null +++ b/parse/train/ByC7ww9le/images/aad02463c0fedf6a70824602adf903d1fff0827b0c92885dcdc8d3417dc51591.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb50b30212ef7f9598215f6d51e8ecbf1307e511de1fef4b9185c7c778280c44 +size 24930 diff --git a/parse/train/ByC7ww9le/images/b54c9eabaf2cfb70e6f9942a009c5b30d6b3c5e53c41a45f71514307ec4003ec.jpg b/parse/train/ByC7ww9le/images/b54c9eabaf2cfb70e6f9942a009c5b30d6b3c5e53c41a45f71514307ec4003ec.jpg new file mode 100644 index 0000000000000000000000000000000000000000..29168f5993aad02dd86ee350d1a791096d42af6c --- /dev/null +++ b/parse/train/ByC7ww9le/images/b54c9eabaf2cfb70e6f9942a009c5b30d6b3c5e53c41a45f71514307ec4003ec.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cc83f7eec4b9d5646a8aa4dd9a1c503ddfa14c539de793ce4d443c72686711d +size 6470 diff --git a/parse/train/ByC7ww9le/images/c1f66c1aa79eb2d4fe7c09b566a6b78148df32593e7806c2db3ed991658d7829.jpg b/parse/train/ByC7ww9le/images/c1f66c1aa79eb2d4fe7c09b566a6b78148df32593e7806c2db3ed991658d7829.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1622be96e0c5291bf0c358abb59166cb8a07d269 --- /dev/null +++ b/parse/train/ByC7ww9le/images/c1f66c1aa79eb2d4fe7c09b566a6b78148df32593e7806c2db3ed991658d7829.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:896aae43ee5d8f8d390bddbfb8c6bee96c3dcc5e401683a84027eb8b091e0a1c +size 6112 diff --git a/parse/train/ByC7ww9le/images/c76b54d069c446a577d193f3e4e7991307a9815e447eeaf69529984549fe539d.jpg b/parse/train/ByC7ww9le/images/c76b54d069c446a577d193f3e4e7991307a9815e447eeaf69529984549fe539d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3e80c7139ed8a65f283b40ae1e04b886d4246489 --- /dev/null +++ b/parse/train/ByC7ww9le/images/c76b54d069c446a577d193f3e4e7991307a9815e447eeaf69529984549fe539d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec6ef93269839a570a0c2e577277de53190f74887a471d4c330628b594fd2682 +size 18897 diff --git a/parse/train/ByC7ww9le/images/c8be4c487573afc71d590a3b723235da8f6bd144ebef356a786893ec5f627b32.jpg b/parse/train/ByC7ww9le/images/c8be4c487573afc71d590a3b723235da8f6bd144ebef356a786893ec5f627b32.jpg new file mode 100644 index 0000000000000000000000000000000000000000..956b37e78d9d3169d5c7df4555d68c811bb1e840 --- /dev/null +++ b/parse/train/ByC7ww9le/images/c8be4c487573afc71d590a3b723235da8f6bd144ebef356a786893ec5f627b32.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9a906983b667b46d6184ee00867bf7bddbc2f7d4e960c4f32cf96c8ac6f78ce +size 76010 diff --git a/parse/train/ByC7ww9le/images/cb93d0b8c285b8098298d11c8377beb8dea13fa379d403f59d98150719afc4c2.jpg b/parse/train/ByC7ww9le/images/cb93d0b8c285b8098298d11c8377beb8dea13fa379d403f59d98150719afc4c2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..435481abea5a20e04151159b2168d2d004ee5dc0 --- /dev/null +++ b/parse/train/ByC7ww9le/images/cb93d0b8c285b8098298d11c8377beb8dea13fa379d403f59d98150719afc4c2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e42725216002cc5c12eb7146c0121b77323b35bfc145ab671ed63d2b4fe92b7 +size 6440 diff --git a/parse/train/ByC7ww9le/images/cf5b6abdc7ed89a863d9f6c7b06ccd455538426890860b6ceea74c96c880c10a.jpg b/parse/train/ByC7ww9le/images/cf5b6abdc7ed89a863d9f6c7b06ccd455538426890860b6ceea74c96c880c10a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8c16777bae33d33e96a0a81c8c754ed64e84354c --- /dev/null +++ b/parse/train/ByC7ww9le/images/cf5b6abdc7ed89a863d9f6c7b06ccd455538426890860b6ceea74c96c880c10a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d402a68b1b903e3904e609e264f0086b51ac2820c40589105a05da9a4763cc0 +size 20740 diff --git a/parse/train/ByC7ww9le/images/d0cca07bb8163d14a796bc213dc59912b521bb4b485d6c47e59ae0830c053954.jpg b/parse/train/ByC7ww9le/images/d0cca07bb8163d14a796bc213dc59912b521bb4b485d6c47e59ae0830c053954.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2fb861066a0f4d36073f895def340c393ceb14bd --- /dev/null +++ b/parse/train/ByC7ww9le/images/d0cca07bb8163d14a796bc213dc59912b521bb4b485d6c47e59ae0830c053954.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b1474670c013b8db926261b8f9ef0e1636c42855a9197f433c1a104e8cf7fdc +size 18609 diff --git a/parse/train/ByC7ww9le/images/da79e56167ea45f43a99cc298820ad1427c0d4cc335951436f969b82dfa3a070.jpg b/parse/train/ByC7ww9le/images/da79e56167ea45f43a99cc298820ad1427c0d4cc335951436f969b82dfa3a070.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dcaa8e3784e3a2a9c788d4b3f086d5d775faecf6 --- /dev/null +++ b/parse/train/ByC7ww9le/images/da79e56167ea45f43a99cc298820ad1427c0d4cc335951436f969b82dfa3a070.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f906f5d36d34593f3290ce6beade1208e22f62c96f1107d52d88682a1940590 +size 14217 diff --git a/parse/train/ByC7ww9le/images/dcac266cd0111b767c6f604dadfa93e9478ad13210e7862e4fc0a7fbd0595157.jpg b/parse/train/ByC7ww9le/images/dcac266cd0111b767c6f604dadfa93e9478ad13210e7862e4fc0a7fbd0595157.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3cb39bd6c8e49cedbd2fcdb3df53e78d7c7bfa24 --- /dev/null +++ b/parse/train/ByC7ww9le/images/dcac266cd0111b767c6f604dadfa93e9478ad13210e7862e4fc0a7fbd0595157.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a32a255fc7edc8d02119f4b11a3eb90fd5b057fb238e06b16d9a5a01863fa9ef +size 49696 diff --git a/parse/train/ByC7ww9le/images/f2970bb498a60bf534378d87a96f1fde36b1c3928165c2aa77b7ca5bb4d95eef.jpg b/parse/train/ByC7ww9le/images/f2970bb498a60bf534378d87a96f1fde36b1c3928165c2aa77b7ca5bb4d95eef.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a31923f96cbd36f7bc0a50c793f9f12fba8beaa6 --- /dev/null +++ b/parse/train/ByC7ww9le/images/f2970bb498a60bf534378d87a96f1fde36b1c3928165c2aa77b7ca5bb4d95eef.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30b0ea59471adec2d97ad3df212e1354123ad38e2b1417620b761363bd6b01d8 +size 140281 diff --git a/parse/train/ByJHuTgA-/images/322d02964532e07888616d7b6b9dcd7d59c272da43824f2945c5f97e87d29136.jpg b/parse/train/ByJHuTgA-/images/322d02964532e07888616d7b6b9dcd7d59c272da43824f2945c5f97e87d29136.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4d0903fb656df5429ef627259745ecbd391ef9bb --- /dev/null +++ b/parse/train/ByJHuTgA-/images/322d02964532e07888616d7b6b9dcd7d59c272da43824f2945c5f97e87d29136.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31bab59f0dfebb5cd88e9f1b5cd6d4d86737ed4a0994710476e854ce857e6076 +size 62001 diff --git a/parse/train/ByJHuTgA-/images/40296253d9aad52534fd5a73ca9ac04bd6435ba547045accf5eeab30723da21a.jpg b/parse/train/ByJHuTgA-/images/40296253d9aad52534fd5a73ca9ac04bd6435ba547045accf5eeab30723da21a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fa3dffced49c4d833645b98debcfd582608bbc78 --- /dev/null +++ b/parse/train/ByJHuTgA-/images/40296253d9aad52534fd5a73ca9ac04bd6435ba547045accf5eeab30723da21a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:424767504379cb86f4802c3b1d6419f3a3951d237d0cc4fa3b2cb877ac46f75d +size 9301 diff --git a/parse/train/ByJHuTgA-/images/93f3c34b3bc34722c4c2660b142dc57c58a490e22130bd03e4c8b0c5ff60aa36.jpg b/parse/train/ByJHuTgA-/images/93f3c34b3bc34722c4c2660b142dc57c58a490e22130bd03e4c8b0c5ff60aa36.jpg new file mode 100644 index 0000000000000000000000000000000000000000..391bea2ea34c9f7c560ab48e0d59a8c52ab4dda7 --- /dev/null +++ b/parse/train/ByJHuTgA-/images/93f3c34b3bc34722c4c2660b142dc57c58a490e22130bd03e4c8b0c5ff60aa36.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0edbd0f23d32ec1f8a7f0bc54b1ea69bc88c6b8f8c30f8aae98e4c26bc2f4a4b +size 64965 diff --git a/parse/train/ByJHuTgA-/images/b00fb7be680cc3306daa277f84c3df8088ca5bf20affe653796613a50d530274.jpg b/parse/train/ByJHuTgA-/images/b00fb7be680cc3306daa277f84c3df8088ca5bf20affe653796613a50d530274.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d34f90127672b8aa05624e1e6c98700553c756e8 --- /dev/null +++ b/parse/train/ByJHuTgA-/images/b00fb7be680cc3306daa277f84c3df8088ca5bf20affe653796613a50d530274.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e42cdbc1af93bea6dde2ada89b0dcc9d957064e1a16aad2b48c92be82903954f +size 62249 diff --git a/parse/train/ByJHuTgA-/images/eb27a749bafbd9e099f54de030d1cde2859b97fb13d106358e065c6e094c20bc.jpg b/parse/train/ByJHuTgA-/images/eb27a749bafbd9e099f54de030d1cde2859b97fb13d106358e065c6e094c20bc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4f9cf1f9b6be09c498d9bdbb22e7f6a8e550d018 --- /dev/null +++ b/parse/train/ByJHuTgA-/images/eb27a749bafbd9e099f54de030d1cde2859b97fb13d106358e065c6e094c20bc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2051110c26cc822f7ec0d9dd6f316b397084716787a604c109e08851b13a5246 +size 78483 diff --git a/parse/train/ByJHuTgA-/images/eb7379d157cdc01f200e679d713c2374479d6c1a24ea6a64991bd147e3141cc8.jpg b/parse/train/ByJHuTgA-/images/eb7379d157cdc01f200e679d713c2374479d6c1a24ea6a64991bd147e3141cc8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..29c16adadf1613aa97e3c0956bc8a78396d3954d --- /dev/null +++ b/parse/train/ByJHuTgA-/images/eb7379d157cdc01f200e679d713c2374479d6c1a24ea6a64991bd147e3141cc8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c815a0812be807ddb2b64eeb1cd1cd955aebccf18b5f7f323801739c89bdbc4 +size 71386 diff --git a/parse/train/ByJHuTgA-/images/f81bf295401ea1f5d33b190a8279a379b919f6538c1f3652283719438ad90409.jpg b/parse/train/ByJHuTgA-/images/f81bf295401ea1f5d33b190a8279a379b919f6538c1f3652283719438ad90409.jpg new file mode 100644 index 0000000000000000000000000000000000000000..468c7d07d8636be3c38d4d4761ce27664e720e77 --- /dev/null +++ b/parse/train/ByJHuTgA-/images/f81bf295401ea1f5d33b190a8279a379b919f6538c1f3652283719438ad90409.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6414eb4bc2bd987240a98742e80a2004d1c6764cb414f2f36ddf26414b2d01a +size 55301 diff --git a/parse/train/ByeSdsC9Km/images/2ada6e4f5074df0eb476a060c43c70bcdaf5f85cce4687b1b49d4d68552be651.jpg b/parse/train/ByeSdsC9Km/images/2ada6e4f5074df0eb476a060c43c70bcdaf5f85cce4687b1b49d4d68552be651.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5cbd02699461648c7c32089602e3bfcd85bf5c0c --- /dev/null +++ b/parse/train/ByeSdsC9Km/images/2ada6e4f5074df0eb476a060c43c70bcdaf5f85cce4687b1b49d4d68552be651.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f07ec5486666580922b68cc894ef2ddc01d2db374991b7f3f26bf37c841e11c +size 20652 diff --git a/parse/train/ByeSdsC9Km/images/30af0e4ae4e8bc231fa8b4d222fc26e3ebeb7e32db5fcc6f9bdc30fbdb1a529e.jpg b/parse/train/ByeSdsC9Km/images/30af0e4ae4e8bc231fa8b4d222fc26e3ebeb7e32db5fcc6f9bdc30fbdb1a529e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ec517af1600ba6e17f1f3c5c3aacc62e7f1548d9 --- /dev/null +++ b/parse/train/ByeSdsC9Km/images/30af0e4ae4e8bc231fa8b4d222fc26e3ebeb7e32db5fcc6f9bdc30fbdb1a529e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21c15a282d971d662bb99bd18540aba402ac98ec84ef61ba3bb8490b3205e351 +size 52709 diff --git a/parse/train/ByeSdsC9Km/images/355aa60c9185cd75d6b6a18b73b967f6ed0eaddd8a357d1f8458d35c4561f9d8.jpg b/parse/train/ByeSdsC9Km/images/355aa60c9185cd75d6b6a18b73b967f6ed0eaddd8a357d1f8458d35c4561f9d8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f2b830a9286ce50823ae4eb948051bf2a8a35b4f --- /dev/null +++ b/parse/train/ByeSdsC9Km/images/355aa60c9185cd75d6b6a18b73b967f6ed0eaddd8a357d1f8458d35c4561f9d8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be40fe01f50f0afa1b34e0d1a2d2dc1764c65ce7b7bd83f43a9d3fab231cadd2 +size 20131 diff --git a/parse/train/ByeSdsC9Km/images/39189663b0200b4b7fb418498a34fda7fe00fd8b680ed94097c63311911af784.jpg b/parse/train/ByeSdsC9Km/images/39189663b0200b4b7fb418498a34fda7fe00fd8b680ed94097c63311911af784.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ff74af1aace23f6581475222dd73f963d104fd14 --- /dev/null +++ b/parse/train/ByeSdsC9Km/images/39189663b0200b4b7fb418498a34fda7fe00fd8b680ed94097c63311911af784.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a084b7c8e3306c011161b9e90aee8fa751433276db1eae91cbbbd4ef017e4ee3 +size 35662 diff --git a/parse/train/ByeSdsC9Km/images/5889e06f1272a3cbe821592b0d3cfbaf77d2aab473a3b2c79322aea6081bcef2.jpg b/parse/train/ByeSdsC9Km/images/5889e06f1272a3cbe821592b0d3cfbaf77d2aab473a3b2c79322aea6081bcef2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e1d2a6a92e8be9f4d37ee764b41bd5b498a02bed --- /dev/null +++ b/parse/train/ByeSdsC9Km/images/5889e06f1272a3cbe821592b0d3cfbaf77d2aab473a3b2c79322aea6081bcef2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:692cde565053d39de657239eb5947aa196c86251b48a04c3d26f59a93b913bcb +size 22251 diff --git a/parse/train/ByeSdsC9Km/images/5d5e38917455f1598af040a1769c8d15bedfe06295b4bb1711d885f5bcbba007.jpg b/parse/train/ByeSdsC9Km/images/5d5e38917455f1598af040a1769c8d15bedfe06295b4bb1711d885f5bcbba007.jpg new file mode 100644 index 0000000000000000000000000000000000000000..739bc62b920868f5bb4a95d31a54a0bf54befb76 --- /dev/null +++ b/parse/train/ByeSdsC9Km/images/5d5e38917455f1598af040a1769c8d15bedfe06295b4bb1711d885f5bcbba007.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ff8ee2f7766f5676feb34341ea2380f588ba5a9de80f974b6bdca2dacaabb76 +size 66238 diff --git a/parse/train/ByeSdsC9Km/images/7c1bcf07a05532ad70c152f3ba9ae1fd0a60a4b9471eff97af48c2059dbc7099.jpg b/parse/train/ByeSdsC9Km/images/7c1bcf07a05532ad70c152f3ba9ae1fd0a60a4b9471eff97af48c2059dbc7099.jpg new file mode 100644 index 0000000000000000000000000000000000000000..01fe145425bfb4337653fad50a55b1473c995a79 --- /dev/null +++ b/parse/train/ByeSdsC9Km/images/7c1bcf07a05532ad70c152f3ba9ae1fd0a60a4b9471eff97af48c2059dbc7099.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7188ff9f2bbd59b677dc26d102debaad99cda674a8ae62059a58d6d0ce5810af +size 50006 diff --git a/parse/train/ByeSdsC9Km/images/895e37d999f8a7adffb8406f7d1db11d1146682a171b39febe04adaf747a956d.jpg b/parse/train/ByeSdsC9Km/images/895e37d999f8a7adffb8406f7d1db11d1146682a171b39febe04adaf747a956d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bf99865f561b58563a53ff49e0d8888c15572e3b --- /dev/null +++ b/parse/train/ByeSdsC9Km/images/895e37d999f8a7adffb8406f7d1db11d1146682a171b39febe04adaf747a956d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73dc68a91bcc79c349a8cc0e2aab9597358f6bceb2f4a5ddbbef04d1d4c1fac1 +size 24115 diff --git a/parse/train/ByeSdsC9Km/images/a35e3cd15cb2be90e9d7c00eb5e3de8820437e502b78da2c93d1a8eb6c12aaec.jpg b/parse/train/ByeSdsC9Km/images/a35e3cd15cb2be90e9d7c00eb5e3de8820437e502b78da2c93d1a8eb6c12aaec.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7060fdafb378938d1d2484e3f0cef087cd5c186d --- /dev/null +++ b/parse/train/ByeSdsC9Km/images/a35e3cd15cb2be90e9d7c00eb5e3de8820437e502b78da2c93d1a8eb6c12aaec.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc8d9cd99c253f403beb7bfbf54de30aeaf99451a858f7df3f79abafc1a8a089 +size 72247 diff --git a/parse/train/ByeSdsC9Km/images/a8720edcb02b5a0aa7780ee57c5c5b415e2b55707ba55a2c1aaba528ab46766c.jpg b/parse/train/ByeSdsC9Km/images/a8720edcb02b5a0aa7780ee57c5c5b415e2b55707ba55a2c1aaba528ab46766c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4abe3a32484d381a64200834408ecf920ada51a0 --- /dev/null +++ b/parse/train/ByeSdsC9Km/images/a8720edcb02b5a0aa7780ee57c5c5b415e2b55707ba55a2c1aaba528ab46766c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:425e320c95f7b5575ed649d4925cd7de904c1b4a8c7457bd4b016874e10cd24f +size 45747 diff --git a/parse/train/ByeSdsC9Km/images/b57536a24e844ec7c041ff56eabf513104b3bea405d2f0efc1ab7f25d3f0daf9.jpg b/parse/train/ByeSdsC9Km/images/b57536a24e844ec7c041ff56eabf513104b3bea405d2f0efc1ab7f25d3f0daf9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ea6a68b43af2b58f7a67c2f3a7d4bcaed929f486 --- /dev/null +++ b/parse/train/ByeSdsC9Km/images/b57536a24e844ec7c041ff56eabf513104b3bea405d2f0efc1ab7f25d3f0daf9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab43780aad688031bbac7f7512c233be2b7eb9bed6a86648382cea0ed6fec389 +size 11586 diff --git a/parse/train/ByeSdsC9Km/images/cbfa827ae16bd4a77580ecd8a56b6be593666f81498fc976ee7e7e33bdb298ea.jpg b/parse/train/ByeSdsC9Km/images/cbfa827ae16bd4a77580ecd8a56b6be593666f81498fc976ee7e7e33bdb298ea.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d24063bdf1fab4ca860026ba1fcaca6a2cef8c05 --- /dev/null +++ b/parse/train/ByeSdsC9Km/images/cbfa827ae16bd4a77580ecd8a56b6be593666f81498fc976ee7e7e33bdb298ea.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc06f7a58feb264dbae1bd2a9b42cad4f1e9938f0619f0c2eec203f91cfc3a9a +size 22722 diff --git a/parse/train/ByeSdsC9Km/images/d7aad9d64cf23f65f53eb43bab580b91bcd2bf89c273cab89eb5b62d66f32a12.jpg b/parse/train/ByeSdsC9Km/images/d7aad9d64cf23f65f53eb43bab580b91bcd2bf89c273cab89eb5b62d66f32a12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c89706bbb729c567e5d87dc08c631eb2d4cb3b4c --- /dev/null +++ b/parse/train/ByeSdsC9Km/images/d7aad9d64cf23f65f53eb43bab580b91bcd2bf89c273cab89eb5b62d66f32a12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:113e870964c4d82f8d7f192793cf899854fed100c5da9556598037debaa44c94 +size 19756 diff --git a/parse/train/ByexElSYDr/images/00f9452926cb53a988031d18f11943baf6b317942123c1617606ba603236d706.jpg b/parse/train/ByexElSYDr/images/00f9452926cb53a988031d18f11943baf6b317942123c1617606ba603236d706.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a015a4ec7e82e6186e64acb3078751d0cb42c096 --- /dev/null +++ b/parse/train/ByexElSYDr/images/00f9452926cb53a988031d18f11943baf6b317942123c1617606ba603236d706.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57cffd31da395302fe6264302c6e8a88220c71bf72b8e30eec64ac0bc718585f +size 39287 diff --git a/parse/train/ByexElSYDr/images/02530075c747c2ef718e07f2688c332b1e2881dc721448f9d9ddd0420f525ab9.jpg b/parse/train/ByexElSYDr/images/02530075c747c2ef718e07f2688c332b1e2881dc721448f9d9ddd0420f525ab9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..82f378418d2f424b29b3bd223ec160d7d6d1cb26 --- /dev/null +++ b/parse/train/ByexElSYDr/images/02530075c747c2ef718e07f2688c332b1e2881dc721448f9d9ddd0420f525ab9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fc8b7e252f694b47acd64b10712bfef2bd8c6e697260162d108c071f0be74e8 +size 31103 diff --git a/parse/train/ByexElSYDr/images/0527b894cba232316f8086fc5450d788054c0843f79f2161ebe1c575d041b304.jpg b/parse/train/ByexElSYDr/images/0527b894cba232316f8086fc5450d788054c0843f79f2161ebe1c575d041b304.jpg new file mode 100644 index 0000000000000000000000000000000000000000..78a9bc7bac2ff2c913725064dc15ca204ceafd14 --- /dev/null +++ b/parse/train/ByexElSYDr/images/0527b894cba232316f8086fc5450d788054c0843f79f2161ebe1c575d041b304.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13ccb07db19e8e200384e809d5d10116f3a35ec051eb65d9e03f80173d74da22 +size 47750 diff --git a/parse/train/ByexElSYDr/images/069b326c65810dbbe07007bb35fc81d33c50785e9a044f105e72e2743fd5e9b1.jpg b/parse/train/ByexElSYDr/images/069b326c65810dbbe07007bb35fc81d33c50785e9a044f105e72e2743fd5e9b1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dc7305ab06ec8ae137797bf8e3a58b2c6e7b5162 --- /dev/null +++ b/parse/train/ByexElSYDr/images/069b326c65810dbbe07007bb35fc81d33c50785e9a044f105e72e2743fd5e9b1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2579f67f01c4ec793dd5ef0eca984c9daa9db2ba698ff7e5d739eb04c2b6df20 +size 15309 diff --git a/parse/train/ByexElSYDr/images/090ca015c5ee7d31202333be11a5346aa115cb7087cee632be32daa204236f7b.jpg b/parse/train/ByexElSYDr/images/090ca015c5ee7d31202333be11a5346aa115cb7087cee632be32daa204236f7b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..87d317994f7e2f391373bce181ee0c0cd1660ed3 --- /dev/null +++ b/parse/train/ByexElSYDr/images/090ca015c5ee7d31202333be11a5346aa115cb7087cee632be32daa204236f7b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:949e787cab0da4dc2b0b32a42fe8970f79466803134a31bc20d1f71c36a5a441 +size 10500 diff --git a/parse/train/ByexElSYDr/images/0f58f65a7ecc83968c5a0c5055158878e278d5e4618b567a460536972db82b47.jpg b/parse/train/ByexElSYDr/images/0f58f65a7ecc83968c5a0c5055158878e278d5e4618b567a460536972db82b47.jpg new file mode 100644 index 0000000000000000000000000000000000000000..09eeec18531c6687ce748257d5af14cf72440bf6 --- /dev/null +++ b/parse/train/ByexElSYDr/images/0f58f65a7ecc83968c5a0c5055158878e278d5e4618b567a460536972db82b47.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8482507c355568ca3ea3cb2815438d7ff9d3e574c164292dc4b8e169bc33a424 +size 10298 diff --git a/parse/train/ByexElSYDr/images/12b3dbdbe6228ee209556b1695c4eda4fb4f0d712a337ac6b6340f853323ee5b.jpg b/parse/train/ByexElSYDr/images/12b3dbdbe6228ee209556b1695c4eda4fb4f0d712a337ac6b6340f853323ee5b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1ad2a2b0682545bf8aec2f344e5aa94282d5a8ae --- /dev/null +++ b/parse/train/ByexElSYDr/images/12b3dbdbe6228ee209556b1695c4eda4fb4f0d712a337ac6b6340f853323ee5b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6515ff160368fa7aff0e20d544bd17e3c0fb30caaf976c659cd40a2aaf65ac16 +size 60662 diff --git a/parse/train/ByexElSYDr/images/141b603026bd9bdad3f90312d2e508d4f8d0c2314e10716a8c386ed09a22ca48.jpg b/parse/train/ByexElSYDr/images/141b603026bd9bdad3f90312d2e508d4f8d0c2314e10716a8c386ed09a22ca48.jpg new file mode 100644 index 0000000000000000000000000000000000000000..693ec483ac689c06b5c784aaf23b8a3d1976a89b --- /dev/null +++ b/parse/train/ByexElSYDr/images/141b603026bd9bdad3f90312d2e508d4f8d0c2314e10716a8c386ed09a22ca48.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4fe7815a56f8d6a8af651fc73a1e67aef7c7a2d66353052bcc2018a1f0910a6 +size 4601 diff --git a/parse/train/ByexElSYDr/images/1a69bc56327c784c039db3511f6ff525e3fffbd233df3a0aed535e0643cae01a.jpg b/parse/train/ByexElSYDr/images/1a69bc56327c784c039db3511f6ff525e3fffbd233df3a0aed535e0643cae01a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4181c84cb4fcf0f7b607475824bfd73fbbc08006 --- /dev/null +++ b/parse/train/ByexElSYDr/images/1a69bc56327c784c039db3511f6ff525e3fffbd233df3a0aed535e0643cae01a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb824d13e98d936dbf96bfb2b21ae5380c430227abc1547dd62bafab58b72889 +size 5533 diff --git a/parse/train/ByexElSYDr/images/1b2fa4d2aee039ac9a25893f673e14df83ba58f8ac6b961c6729d9d4898ae3b8.jpg b/parse/train/ByexElSYDr/images/1b2fa4d2aee039ac9a25893f673e14df83ba58f8ac6b961c6729d9d4898ae3b8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..718dd4b4f54f5befa98fb904620f34ffbaaf6452 --- /dev/null +++ b/parse/train/ByexElSYDr/images/1b2fa4d2aee039ac9a25893f673e14df83ba58f8ac6b961c6729d9d4898ae3b8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:495543224d7baf06fbed77cab572fa5abeac8177275fc04db720371219c013af +size 11245 diff --git a/parse/train/ByexElSYDr/images/1bcfa873cfbaa76bc2cd228e57031b46cd14b7ee2b2e2c37344d550b03beca98.jpg b/parse/train/ByexElSYDr/images/1bcfa873cfbaa76bc2cd228e57031b46cd14b7ee2b2e2c37344d550b03beca98.jpg new file mode 100644 index 0000000000000000000000000000000000000000..845c752a09a924ed54592313655e55dc2cb4cf3c --- /dev/null +++ b/parse/train/ByexElSYDr/images/1bcfa873cfbaa76bc2cd228e57031b46cd14b7ee2b2e2c37344d550b03beca98.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:003530271eb8cc295a971c732a6d7a18bacc5e4ec00d803f7924f9576d0a493e +size 7361 diff --git a/parse/train/ByexElSYDr/images/1cc6d0e06a5530a3acb8c3c1b2876a2f5905ed34c7b08187dcd6874506bd3940.jpg b/parse/train/ByexElSYDr/images/1cc6d0e06a5530a3acb8c3c1b2876a2f5905ed34c7b08187dcd6874506bd3940.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f536c8466d7238c7a48e8695ee19b9664a4e9032 --- /dev/null +++ b/parse/train/ByexElSYDr/images/1cc6d0e06a5530a3acb8c3c1b2876a2f5905ed34c7b08187dcd6874506bd3940.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ee434c24062b4619f364702d70cdb75aec562715a343e59544ff69c65557219 +size 5011 diff --git a/parse/train/ByexElSYDr/images/21ebf84a0d85de4d6cf86ab11b885f2436b963327fb483d45c57d3c0a3edfb6b.jpg b/parse/train/ByexElSYDr/images/21ebf84a0d85de4d6cf86ab11b885f2436b963327fb483d45c57d3c0a3edfb6b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3762c94722655aa72c588f4a0bd56959e9768405 --- /dev/null +++ b/parse/train/ByexElSYDr/images/21ebf84a0d85de4d6cf86ab11b885f2436b963327fb483d45c57d3c0a3edfb6b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37677862b89e76d14e51113ab6e0a1e6dad5b711fe9b0054ff2009f59d27e7d5 +size 6440 diff --git a/parse/train/ByexElSYDr/images/283b21537756f241663a4e26aae8425c2d987636c416aca049e83779f11be841.jpg b/parse/train/ByexElSYDr/images/283b21537756f241663a4e26aae8425c2d987636c416aca049e83779f11be841.jpg new file mode 100644 index 0000000000000000000000000000000000000000..16124194f29e1db0868254827283fdf445684cc4 --- /dev/null +++ b/parse/train/ByexElSYDr/images/283b21537756f241663a4e26aae8425c2d987636c416aca049e83779f11be841.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7563fbc78eba6575959b07bbe2ea7361c74f5853b7f1f78aeca538a3f429ce2 +size 52556 diff --git a/parse/train/ByexElSYDr/images/2c9bcfa112af00878debf3437b214c2eb1bed0353f4e35785d9618a9bcecb274.jpg b/parse/train/ByexElSYDr/images/2c9bcfa112af00878debf3437b214c2eb1bed0353f4e35785d9618a9bcecb274.jpg new file mode 100644 index 0000000000000000000000000000000000000000..08ac34cfa3e63d791ffd30f885123d895c5f82ad --- /dev/null +++ b/parse/train/ByexElSYDr/images/2c9bcfa112af00878debf3437b214c2eb1bed0353f4e35785d9618a9bcecb274.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c465e79615eb897df5039f570e4145c570631928df165092a01233efe24db9f9 +size 31722 diff --git a/parse/train/ByexElSYDr/images/2e4298e128e1e0045ebbe2f577ce1098705ab6788c3d0e7e186f47b8f565c631.jpg b/parse/train/ByexElSYDr/images/2e4298e128e1e0045ebbe2f577ce1098705ab6788c3d0e7e186f47b8f565c631.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7aff940c83c7351a151e9add19d4e7ab892871f2 --- /dev/null +++ b/parse/train/ByexElSYDr/images/2e4298e128e1e0045ebbe2f577ce1098705ab6788c3d0e7e186f47b8f565c631.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1244de8b406ad88d325381c319522f31d5f697b5c91ab005dea6746c1654b38 +size 62133 diff --git a/parse/train/ByexElSYDr/images/31b061bda98e3d08c0c1540df041e252c54a9e0c8a5d357277c5fe65e2aacefb.jpg b/parse/train/ByexElSYDr/images/31b061bda98e3d08c0c1540df041e252c54a9e0c8a5d357277c5fe65e2aacefb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..084881f3dfe9fb547a4f5f6903e4e9f057961228 --- /dev/null +++ b/parse/train/ByexElSYDr/images/31b061bda98e3d08c0c1540df041e252c54a9e0c8a5d357277c5fe65e2aacefb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93dce0459ae155aa572def28640b4c18e9429c30678e3499197687829ed62f2e +size 27415 diff --git a/parse/train/ByexElSYDr/images/350f0252a8da1985dbfe241e9a650ddf26f9a424c5f3441886181509920edf02.jpg b/parse/train/ByexElSYDr/images/350f0252a8da1985dbfe241e9a650ddf26f9a424c5f3441886181509920edf02.jpg new file mode 100644 index 0000000000000000000000000000000000000000..07af646aec6a6a4bb4686a1bb37c879250334f7a --- /dev/null +++ b/parse/train/ByexElSYDr/images/350f0252a8da1985dbfe241e9a650ddf26f9a424c5f3441886181509920edf02.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:467544fd9644377de0de13389e47442326bc938bd54b4cd6f169cb46ece3d1ce +size 21027 diff --git a/parse/train/ByexElSYDr/images/35e8863fafab94e80b9f9c868ef1e4aa2d998483b7ff7bf4e5ff9ca4fb6c3c9d.jpg b/parse/train/ByexElSYDr/images/35e8863fafab94e80b9f9c868ef1e4aa2d998483b7ff7bf4e5ff9ca4fb6c3c9d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f4543afcfed30cbde08804a22818f3cc5cb55fae --- /dev/null +++ b/parse/train/ByexElSYDr/images/35e8863fafab94e80b9f9c868ef1e4aa2d998483b7ff7bf4e5ff9ca4fb6c3c9d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3d534d0aa7ecfab4d425a26ccc13b3e0cc1cd3148f0d689bfd06c36e8604dce +size 4312 diff --git a/parse/train/ByexElSYDr/images/3932ec56dd0f2f9eefacfec7fe2bd3a68d8f680cf8021adbfea1751538bbcdca.jpg b/parse/train/ByexElSYDr/images/3932ec56dd0f2f9eefacfec7fe2bd3a68d8f680cf8021adbfea1751538bbcdca.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eede0b2e8a073b89b9107179f9160d4c3b62a8d1 --- /dev/null +++ b/parse/train/ByexElSYDr/images/3932ec56dd0f2f9eefacfec7fe2bd3a68d8f680cf8021adbfea1751538bbcdca.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ac5d3d712abfae1f945823b3f32dd100989c5dbad83cfd5a990cd161ceaa793 +size 23303 diff --git a/parse/train/ByexElSYDr/images/3c506c3235c528e2cb379b91f53a7fc20d55781fa872e3eb7d708c924628e314.jpg b/parse/train/ByexElSYDr/images/3c506c3235c528e2cb379b91f53a7fc20d55781fa872e3eb7d708c924628e314.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cd078c76f5027fa10ac7c0bc043f416a2f2b1ed4 --- /dev/null +++ b/parse/train/ByexElSYDr/images/3c506c3235c528e2cb379b91f53a7fc20d55781fa872e3eb7d708c924628e314.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e2f3db2686a7f28f4512745663b5703bd52a62da5a38852fad2a552d205fcf1 +size 49863 diff --git a/parse/train/ByexElSYDr/images/48320701e0c44fabd6d16d95411188651b116faf8def83aaf41eab5da0c09cd8.jpg b/parse/train/ByexElSYDr/images/48320701e0c44fabd6d16d95411188651b116faf8def83aaf41eab5da0c09cd8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..53872b9cd203e1200e081688e458be16854d478d --- /dev/null +++ b/parse/train/ByexElSYDr/images/48320701e0c44fabd6d16d95411188651b116faf8def83aaf41eab5da0c09cd8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87026611240e9e9d887dab17d1d9dfbbeaf805b0638624dc4a34b291d2ef7baa +size 57150 diff --git a/parse/train/ByexElSYDr/images/496f283720c5f461e591e3a5bbae0d7135652a1bea5f1422b315c042944bd649.jpg b/parse/train/ByexElSYDr/images/496f283720c5f461e591e3a5bbae0d7135652a1bea5f1422b315c042944bd649.jpg new file mode 100644 index 0000000000000000000000000000000000000000..88317818684497b0d76beee74d90b2b9250d0d4a --- /dev/null +++ b/parse/train/ByexElSYDr/images/496f283720c5f461e591e3a5bbae0d7135652a1bea5f1422b315c042944bd649.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:def9a4b7b0a3e4351bb3d8453a2e43533ff4102d8f93990f68654503693bd25f +size 80524 diff --git a/parse/train/ByexElSYDr/images/528b354dee15f60439671f0d13a7e6f9df078a8f117c65e73a8be316d4c8b5bb.jpg b/parse/train/ByexElSYDr/images/528b354dee15f60439671f0d13a7e6f9df078a8f117c65e73a8be316d4c8b5bb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..86795983189f9c0f1cc2f0d82f79a3a044ca06db --- /dev/null +++ b/parse/train/ByexElSYDr/images/528b354dee15f60439671f0d13a7e6f9df078a8f117c65e73a8be316d4c8b5bb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0808cf11ec66d495c2efd1030cd859c45c59dbb52eb2073942b927ad2fd1635 +size 6418 diff --git a/parse/train/ByexElSYDr/images/5a185227ae4fb7948ffc46be07a5157ffb8f99784e16775f2cbba5cc7376757a.jpg b/parse/train/ByexElSYDr/images/5a185227ae4fb7948ffc46be07a5157ffb8f99784e16775f2cbba5cc7376757a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ede54d91de3cb5fbfd3ca25c69bdabdf87a98474 --- /dev/null +++ b/parse/train/ByexElSYDr/images/5a185227ae4fb7948ffc46be07a5157ffb8f99784e16775f2cbba5cc7376757a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df524031c6cb3c47a280492919a4dfc93850aae510c56c9bddef1768ab439c11 +size 22551 diff --git a/parse/train/ByexElSYDr/images/5d089016584baace561acbe6ac8fbe4bef8469bb14ef2b5ec49191faee31538a.jpg b/parse/train/ByexElSYDr/images/5d089016584baace561acbe6ac8fbe4bef8469bb14ef2b5ec49191faee31538a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1ff1a2c7ff81db10f8b2b4868ae23d18b1e0793e --- /dev/null +++ b/parse/train/ByexElSYDr/images/5d089016584baace561acbe6ac8fbe4bef8469bb14ef2b5ec49191faee31538a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e7b44006a699e9e2693de8daeed829ee97a4b29bb3f35f064dea73dc2b591a4 +size 53465 diff --git a/parse/train/ByexElSYDr/images/5e18de7bd2b8eefab87a29b47e64d2ffd9ae1dfc37e7f81512cdad9cf39ed60f.jpg b/parse/train/ByexElSYDr/images/5e18de7bd2b8eefab87a29b47e64d2ffd9ae1dfc37e7f81512cdad9cf39ed60f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b74c7e12286516531db0bc0770bac5eee0b21fb7 --- /dev/null +++ b/parse/train/ByexElSYDr/images/5e18de7bd2b8eefab87a29b47e64d2ffd9ae1dfc37e7f81512cdad9cf39ed60f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff223175dea27ecef0367181dc1998f1b1bd2def735fb044987e3e582f4e7d6b +size 5911 diff --git a/parse/train/ByexElSYDr/images/6007f9332d10991715f3f7b39e6bce06104eeb94c3a2e2109149fedf441ad156.jpg b/parse/train/ByexElSYDr/images/6007f9332d10991715f3f7b39e6bce06104eeb94c3a2e2109149fedf441ad156.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0b47c8e4d50ac8c26d29d27353b3055a06843226 --- /dev/null +++ b/parse/train/ByexElSYDr/images/6007f9332d10991715f3f7b39e6bce06104eeb94c3a2e2109149fedf441ad156.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20851c230b99e5a9de57cdc1ddd2b0a2798ca6020fcfa9b6b61cc1837b64f213 +size 4610 diff --git a/parse/train/ByexElSYDr/images/6046d29e3b77c998e93706e0b43eb5cc425d113a4732b42a8ccb4f30aa1e8e16.jpg b/parse/train/ByexElSYDr/images/6046d29e3b77c998e93706e0b43eb5cc425d113a4732b42a8ccb4f30aa1e8e16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3e155a8f1e0062a44ac5970160dc12be83f1d1bc --- /dev/null +++ b/parse/train/ByexElSYDr/images/6046d29e3b77c998e93706e0b43eb5cc425d113a4732b42a8ccb4f30aa1e8e16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70fa81ac5cfe48e68642bd9b7761fc3664752f9424d4592e7c8afd03768351b5 +size 83026 diff --git a/parse/train/ByexElSYDr/images/657335d5db2a9139760ba6a5d79c13be65e647d745bc4e28d5447dd3c17d1144.jpg b/parse/train/ByexElSYDr/images/657335d5db2a9139760ba6a5d79c13be65e647d745bc4e28d5447dd3c17d1144.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a6f75c3c56146d5320a488c90a27d33be7f11b0b --- /dev/null +++ b/parse/train/ByexElSYDr/images/657335d5db2a9139760ba6a5d79c13be65e647d745bc4e28d5447dd3c17d1144.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d05c2cc3adfec1ff8167313f3bcc64524363e62511a8b403515dc23b179a42d1 +size 4591 diff --git a/parse/train/ByexElSYDr/images/684f057d5985b8aa254a72258b7a21d854443d3147c73b092be50395d3e167b0.jpg b/parse/train/ByexElSYDr/images/684f057d5985b8aa254a72258b7a21d854443d3147c73b092be50395d3e167b0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..11cee43b6ac79e80f5d3f6f26bd8e728b2ed996c --- /dev/null +++ b/parse/train/ByexElSYDr/images/684f057d5985b8aa254a72258b7a21d854443d3147c73b092be50395d3e167b0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc21f9a7ecdefc70736b89a913068975d74214282b265f5f29838419c1a4225d +size 5114 diff --git a/parse/train/ByexElSYDr/images/69239c6bdde974e2bf263eb547ed7b3c66d895d421d4fb9dd1f8011d3c0a6800.jpg b/parse/train/ByexElSYDr/images/69239c6bdde974e2bf263eb547ed7b3c66d895d421d4fb9dd1f8011d3c0a6800.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ba0452cfa5857b3aff474f5842a06673e850bb90 --- /dev/null +++ b/parse/train/ByexElSYDr/images/69239c6bdde974e2bf263eb547ed7b3c66d895d421d4fb9dd1f8011d3c0a6800.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b864bb93219b579fae8d54ae12dde318cb9634f84813e8996f467d7f8f9ef306 +size 6625 diff --git a/parse/train/ByexElSYDr/images/692b903942ba6c24e82906b3d3f18c80ec7a9809a3177f3fec85f14bc9346d05.jpg b/parse/train/ByexElSYDr/images/692b903942ba6c24e82906b3d3f18c80ec7a9809a3177f3fec85f14bc9346d05.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b034d98d0a8ce21a93217cf2a38b0bccbde7663 --- /dev/null +++ b/parse/train/ByexElSYDr/images/692b903942ba6c24e82906b3d3f18c80ec7a9809a3177f3fec85f14bc9346d05.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce1dc396bbe8f41bfc48bc7fc50b67998aec30c733fa403d76100e08d4c3b69e +size 10262 diff --git a/parse/train/ByexElSYDr/images/6d296c8cbb9c38dcb3ea6e2a4bf4821044ebe40098221038bcbe08557b66eb5e.jpg b/parse/train/ByexElSYDr/images/6d296c8cbb9c38dcb3ea6e2a4bf4821044ebe40098221038bcbe08557b66eb5e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c234d97078cfa17561eabdeb1874f24bd5637f7 --- /dev/null +++ b/parse/train/ByexElSYDr/images/6d296c8cbb9c38dcb3ea6e2a4bf4821044ebe40098221038bcbe08557b66eb5e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d69928996dcd2c3f92402ddde641e74eb6b327757ecab5b27d1bc521c661aa4b +size 7818 diff --git a/parse/train/ByexElSYDr/images/74bd146ecd872069ad55f3f27e23897edb0dd48872dc8bab29d31f75399b7cf4.jpg b/parse/train/ByexElSYDr/images/74bd146ecd872069ad55f3f27e23897edb0dd48872dc8bab29d31f75399b7cf4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dc75f81d2e61c6d9014cdd26d5b7a7aff6199d67 --- /dev/null +++ b/parse/train/ByexElSYDr/images/74bd146ecd872069ad55f3f27e23897edb0dd48872dc8bab29d31f75399b7cf4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40984cf1e234eac5017981df47241f4c4b72136a465bd2a3ce5544eb0fe94ebd +size 10278 diff --git a/parse/train/ByexElSYDr/images/7d1e66587cf1ccbcdab01f452af5c0bd4580dde4fd2f5e02e3770dee8ac1498e.jpg b/parse/train/ByexElSYDr/images/7d1e66587cf1ccbcdab01f452af5c0bd4580dde4fd2f5e02e3770dee8ac1498e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2af668f697d999e1b9b181df44cb4b95300dd484 --- /dev/null +++ b/parse/train/ByexElSYDr/images/7d1e66587cf1ccbcdab01f452af5c0bd4580dde4fd2f5e02e3770dee8ac1498e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:051250cffe4ed515e1ca9e0640fba0d52e5289088d216c2dd57206871d076050 +size 4288 diff --git a/parse/train/ByexElSYDr/images/7dc975752a493fe4d8681807adf46acd7dd0e92d501dc318ff5f2a37242ba6a9.jpg b/parse/train/ByexElSYDr/images/7dc975752a493fe4d8681807adf46acd7dd0e92d501dc318ff5f2a37242ba6a9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bb77f80afbddd874e62858c4f7d667ddb59e3136 --- /dev/null +++ b/parse/train/ByexElSYDr/images/7dc975752a493fe4d8681807adf46acd7dd0e92d501dc318ff5f2a37242ba6a9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01565c374f887134a9e24b323f111f5bb0a683219ef5411d43361d411b3c0792 +size 8559 diff --git a/parse/train/ByexElSYDr/images/89e4978ffdaf24c57a639d16b455306e05166752390b453fe5f26bc1fc2cd621.jpg b/parse/train/ByexElSYDr/images/89e4978ffdaf24c57a639d16b455306e05166752390b453fe5f26bc1fc2cd621.jpg new file mode 100644 index 0000000000000000000000000000000000000000..038e16d99f0e54e4a9546af382c2df2a28b15a81 --- /dev/null +++ b/parse/train/ByexElSYDr/images/89e4978ffdaf24c57a639d16b455306e05166752390b453fe5f26bc1fc2cd621.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6f19d77579c520eb402a209d7964209e86fc4b28de583ceb4732f45edaaf2cb +size 3584 diff --git a/parse/train/ByexElSYDr/images/8d2b8ae8b2dfcf60f0b4347b3563af2d39780945c47e5d26c0da22dbcb1337b8.jpg b/parse/train/ByexElSYDr/images/8d2b8ae8b2dfcf60f0b4347b3563af2d39780945c47e5d26c0da22dbcb1337b8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..70591fba1f1d18fc8e17c9b94bf0ba4d0e0a37d2 --- /dev/null +++ b/parse/train/ByexElSYDr/images/8d2b8ae8b2dfcf60f0b4347b3563af2d39780945c47e5d26c0da22dbcb1337b8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:679610aceecd22d188c4c6f6ec1551bcd8c9c54c17d71a8225d63ed8c20739e4 +size 24029 diff --git a/parse/train/ByexElSYDr/images/8e11a26558ae8a94b3a66443164dc41ca17627449ab23005c17334de7e8e55da.jpg b/parse/train/ByexElSYDr/images/8e11a26558ae8a94b3a66443164dc41ca17627449ab23005c17334de7e8e55da.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bd172a3c22a3d89bdc4011c0d6f8a20623432608 --- /dev/null +++ b/parse/train/ByexElSYDr/images/8e11a26558ae8a94b3a66443164dc41ca17627449ab23005c17334de7e8e55da.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52d310eb826531baff1d20e355cf57a9a2875864948dc015acafe04b5bf85d53 +size 12164 diff --git a/parse/train/ByexElSYDr/images/91438ba69dcee8b9f2e32992bcb2657146a7f1bdd72f7f962e1c979197cfae4e.jpg b/parse/train/ByexElSYDr/images/91438ba69dcee8b9f2e32992bcb2657146a7f1bdd72f7f962e1c979197cfae4e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..42f33e46480158fbdb3b8266b384b03b4ac72872 --- /dev/null +++ b/parse/train/ByexElSYDr/images/91438ba69dcee8b9f2e32992bcb2657146a7f1bdd72f7f962e1c979197cfae4e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8f90081e12d850142f543aa5624d4a8f90a53ed1cc18f4a4441fe514d0377d8 +size 79698 diff --git a/parse/train/ByexElSYDr/images/9294c08d29678924d8905c37742782743902e7b0c84db5fb0d6a532a4064b040.jpg b/parse/train/ByexElSYDr/images/9294c08d29678924d8905c37742782743902e7b0c84db5fb0d6a532a4064b040.jpg new file mode 100644 index 0000000000000000000000000000000000000000..33e27f2fd588569dd0671f6e1b46046f26dfe363 --- /dev/null +++ b/parse/train/ByexElSYDr/images/9294c08d29678924d8905c37742782743902e7b0c84db5fb0d6a532a4064b040.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f9e2512be847b87f0364125b03dc4b6b8e0d8b7d3d44ebd2ccccdda692f7144 +size 4612 diff --git a/parse/train/ByexElSYDr/images/a56e423689eb151b42addf985c73f1bc18fe6826aef6ead486f83b9103a706ed.jpg b/parse/train/ByexElSYDr/images/a56e423689eb151b42addf985c73f1bc18fe6826aef6ead486f83b9103a706ed.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0175787c34c43f2785ebd78c246593bf388de45b --- /dev/null +++ b/parse/train/ByexElSYDr/images/a56e423689eb151b42addf985c73f1bc18fe6826aef6ead486f83b9103a706ed.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1afbb8a62c49edd0837e02f2f039eca0bb7f0fc75d6a5ac68bd0cc9cb1af7e5 +size 25154 diff --git a/parse/train/ByexElSYDr/images/a72b02015751e10aa10fd82cadce7225ac3d10abc5274b52145e4c36fd175c67.jpg b/parse/train/ByexElSYDr/images/a72b02015751e10aa10fd82cadce7225ac3d10abc5274b52145e4c36fd175c67.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9239efe19e6ca6a2479754b61fb48b9365652bff --- /dev/null +++ b/parse/train/ByexElSYDr/images/a72b02015751e10aa10fd82cadce7225ac3d10abc5274b52145e4c36fd175c67.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:198fccd7e61924da4d83b3458753dfdfb8e292ee387de5c5f57f381d71c94919 +size 5755 diff --git a/parse/train/ByexElSYDr/images/ad2343311cc23a5a5fdfb835cdbdc68a13844cc1305f275f33406aa40e4c1d1e.jpg b/parse/train/ByexElSYDr/images/ad2343311cc23a5a5fdfb835cdbdc68a13844cc1305f275f33406aa40e4c1d1e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5b902fce7ce262d69b88e489c9b37403617f4f94 --- /dev/null +++ b/parse/train/ByexElSYDr/images/ad2343311cc23a5a5fdfb835cdbdc68a13844cc1305f275f33406aa40e4c1d1e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e07527e15f6021b09382e99c55c6a31b75460962afc31a196f7061883b01a2bb +size 88169 diff --git a/parse/train/ByexElSYDr/images/b2cc6c1fef158049820f2fe1cdb6a5948c492a6c8c01d0194a01ca109186b25c.jpg b/parse/train/ByexElSYDr/images/b2cc6c1fef158049820f2fe1cdb6a5948c492a6c8c01d0194a01ca109186b25c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aab9dfa8c43231bf1e3b7cf2ae75e3a6738f32a2 --- /dev/null +++ b/parse/train/ByexElSYDr/images/b2cc6c1fef158049820f2fe1cdb6a5948c492a6c8c01d0194a01ca109186b25c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8491758eb6bc48da22124f326e092da56371c6323ce663f9d620041a31e65ea3 +size 9179 diff --git a/parse/train/ByexElSYDr/images/b32cb21238c78ceecdd8ba7983a42a4f1066b27d8b6c24f3da2abb7898e6cd8a.jpg b/parse/train/ByexElSYDr/images/b32cb21238c78ceecdd8ba7983a42a4f1066b27d8b6c24f3da2abb7898e6cd8a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e9f858830f4da7fbf11fc720936f469689aec015 --- /dev/null +++ b/parse/train/ByexElSYDr/images/b32cb21238c78ceecdd8ba7983a42a4f1066b27d8b6c24f3da2abb7898e6cd8a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55afa77d6add047775f35c7c18ec022fb6b9efc03615274de31f66ada53f8bf0 +size 11551 diff --git a/parse/train/ByexElSYDr/images/b4a8a1cea89cedfd321560a20d35181d16cbaa4cb863524504b4a2b10028d86a.jpg b/parse/train/ByexElSYDr/images/b4a8a1cea89cedfd321560a20d35181d16cbaa4cb863524504b4a2b10028d86a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..76d0de74629c08b5e0a804e932b9ec182afd06c6 --- /dev/null +++ b/parse/train/ByexElSYDr/images/b4a8a1cea89cedfd321560a20d35181d16cbaa4cb863524504b4a2b10028d86a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da4db61ad62ebc5b89a2f1b2219b05d7a31883a88986e73ca574c439a998b148 +size 13388 diff --git a/parse/train/ByexElSYDr/images/c02c587f7f171aa443a8d2a8f0ce90413be9f91c8bcdb0919ba63729eed51d4e.jpg b/parse/train/ByexElSYDr/images/c02c587f7f171aa443a8d2a8f0ce90413be9f91c8bcdb0919ba63729eed51d4e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..66ca5fd7bf088814edbe818af7638aeac9a2274c --- /dev/null +++ b/parse/train/ByexElSYDr/images/c02c587f7f171aa443a8d2a8f0ce90413be9f91c8bcdb0919ba63729eed51d4e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f3df1dc37a3f603151c526b8f8b7b6dc9cf8f288f068905e25b5c7d3b921bd3 +size 12081 diff --git a/parse/train/ByexElSYDr/images/c7563698e6d7d749358bacd5cab38240d0a86257a4ebf12b9ba94896c43bd4cf.jpg b/parse/train/ByexElSYDr/images/c7563698e6d7d749358bacd5cab38240d0a86257a4ebf12b9ba94896c43bd4cf.jpg new file mode 100644 index 0000000000000000000000000000000000000000..179e5bdb24fc8881f85a4dfb9d7e82b7360c3845 --- /dev/null +++ b/parse/train/ByexElSYDr/images/c7563698e6d7d749358bacd5cab38240d0a86257a4ebf12b9ba94896c43bd4cf.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9e90fd1ddd28d6d19f04b492faee373ab8ab5a26aefb3b4ccd7eae30751ac47 +size 10358 diff --git a/parse/train/ByexElSYDr/images/cbdd8e69c018eaee9fc8d288b0f05b7463242d3ef00dba2874f79a545440d41b.jpg b/parse/train/ByexElSYDr/images/cbdd8e69c018eaee9fc8d288b0f05b7463242d3ef00dba2874f79a545440d41b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4ec62b8ef21d6ad5c31dc8459c55eb7c4eaa762a --- /dev/null +++ b/parse/train/ByexElSYDr/images/cbdd8e69c018eaee9fc8d288b0f05b7463242d3ef00dba2874f79a545440d41b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:890075df2d839077b8ec875385da67ea09d412f574ccdac70f7e8c5f7dd5c89b +size 30254 diff --git a/parse/train/ByexElSYDr/images/cdccaaeeac3a24099f76d52a7a1e865c479a9bdfbc7b1a85f2157e9219c4f5bc.jpg b/parse/train/ByexElSYDr/images/cdccaaeeac3a24099f76d52a7a1e865c479a9bdfbc7b1a85f2157e9219c4f5bc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3b3a2d6643774b130b1e3fb21e4d0a10d3b8ee10 --- /dev/null +++ b/parse/train/ByexElSYDr/images/cdccaaeeac3a24099f76d52a7a1e865c479a9bdfbc7b1a85f2157e9219c4f5bc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b70d48a3e6ee264571f113d661031a16225e400e9d544dd3247fd2053154710b +size 3638 diff --git a/parse/train/ByexElSYDr/images/d38d55fe1947c3ad7b6f060171a18fbe39be8a443bcfa86d3f56d7b399afcb01.jpg b/parse/train/ByexElSYDr/images/d38d55fe1947c3ad7b6f060171a18fbe39be8a443bcfa86d3f56d7b399afcb01.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d51d3e2d2129b012370eaaf0686504afbb50148a --- /dev/null +++ b/parse/train/ByexElSYDr/images/d38d55fe1947c3ad7b6f060171a18fbe39be8a443bcfa86d3f56d7b399afcb01.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:448acfae4b098375b052ec8007724ca9105e4adfb276cf279a080b628bbb551e +size 80913 diff --git a/parse/train/ByexElSYDr/images/d6b2ddf8943e072300ebeee41bc4d61961d36e1cb89b5140c84e9c436fb3707c.jpg b/parse/train/ByexElSYDr/images/d6b2ddf8943e072300ebeee41bc4d61961d36e1cb89b5140c84e9c436fb3707c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b1bc3859d03e1ab488c30400b46779e3682cc68b --- /dev/null +++ b/parse/train/ByexElSYDr/images/d6b2ddf8943e072300ebeee41bc4d61961d36e1cb89b5140c84e9c436fb3707c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd953a99df4b0c7230f90c7e5448e35fc3d9a587911d6768604ee1d737e532f5 +size 19266 diff --git a/parse/train/ByexElSYDr/images/dabc1caba9097e44172a7f10edb91ca1d84a3debdf80749a8a333ff34af2115a.jpg b/parse/train/ByexElSYDr/images/dabc1caba9097e44172a7f10edb91ca1d84a3debdf80749a8a333ff34af2115a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..89a0829f2d6f0e6648c05875e0443d16deb81dbf --- /dev/null +++ b/parse/train/ByexElSYDr/images/dabc1caba9097e44172a7f10edb91ca1d84a3debdf80749a8a333ff34af2115a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78d9c89a9e5c83c3ec2443b71c91e8fbae6f042b4e6acb2c87369dd987ff55f2 +size 3674 diff --git a/parse/train/ByexElSYDr/images/df723bc8ac04f768ad94d4b18a6d3e8597eabb31c2ccc095dc92071e90d58d16.jpg b/parse/train/ByexElSYDr/images/df723bc8ac04f768ad94d4b18a6d3e8597eabb31c2ccc095dc92071e90d58d16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eeed273ca1574cf644c67cfabbec8d791a06872b --- /dev/null +++ b/parse/train/ByexElSYDr/images/df723bc8ac04f768ad94d4b18a6d3e8597eabb31c2ccc095dc92071e90d58d16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99086b09c0637bc88cd03af7dc02209a6c644a134b772f3d03abf80e8cde6a3d +size 3745 diff --git a/parse/train/ByexElSYDr/images/e11d4a71da41f5a5392a7c53e8c26bdb8a0fefc7c8140a19cac52760f15d7e65.jpg b/parse/train/ByexElSYDr/images/e11d4a71da41f5a5392a7c53e8c26bdb8a0fefc7c8140a19cac52760f15d7e65.jpg new file mode 100644 index 0000000000000000000000000000000000000000..530a7f3b88e66f67e61546d687efbd22bff0c989 --- /dev/null +++ b/parse/train/ByexElSYDr/images/e11d4a71da41f5a5392a7c53e8c26bdb8a0fefc7c8140a19cac52760f15d7e65.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57c702aa8a87673a54fd9ab61e99705adf3934b24197778d9eacb221062b7803 +size 5218 diff --git a/parse/train/ByexElSYDr/images/e4a2a02a630423aafd10e0476c2862f661ed619c0d10ac55e866ffbad95c8f14.jpg b/parse/train/ByexElSYDr/images/e4a2a02a630423aafd10e0476c2862f661ed619c0d10ac55e866ffbad95c8f14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc3702b2533ba2b13c0e9f595c25feb951dbc93a --- /dev/null +++ b/parse/train/ByexElSYDr/images/e4a2a02a630423aafd10e0476c2862f661ed619c0d10ac55e866ffbad95c8f14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:050369fe2a673db99f423d31ad81b3cf6d3cd1dcd7afe271b2637ec29a1b2ad6 +size 9052 diff --git a/parse/train/ByexElSYDr/images/e66d426f66e23237b069a5753c5cbafa6dc9b07239edadb6489b3d2d17d1cbe1.jpg b/parse/train/ByexElSYDr/images/e66d426f66e23237b069a5753c5cbafa6dc9b07239edadb6489b3d2d17d1cbe1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..94532f1516e00e9a34c32535ead5678c96c093f1 --- /dev/null +++ b/parse/train/ByexElSYDr/images/e66d426f66e23237b069a5753c5cbafa6dc9b07239edadb6489b3d2d17d1cbe1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9db399b8ed228066f934035427fed541816b301124bfdc41749986eaa9c0c3d0 +size 5484 diff --git a/parse/train/ByexElSYDr/images/f110e68dbb22a0a82de1cb62d1fd7842091c93482dcf7f3f8430de21b3b96066.jpg b/parse/train/ByexElSYDr/images/f110e68dbb22a0a82de1cb62d1fd7842091c93482dcf7f3f8430de21b3b96066.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8c6e33fd7075f31f46d800f598b544000ab48ed5 --- /dev/null +++ b/parse/train/ByexElSYDr/images/f110e68dbb22a0a82de1cb62d1fd7842091c93482dcf7f3f8430de21b3b96066.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8ac5f2f923a568ac39b798af3416fb10a115af574c88c230359700a2ebd1bcb +size 36853 diff --git a/parse/train/ByexElSYDr/images/f85f37627d30c4fed6fa6e72a887347694a38a8977b8d30db6ce475f8cce1018.jpg b/parse/train/ByexElSYDr/images/f85f37627d30c4fed6fa6e72a887347694a38a8977b8d30db6ce475f8cce1018.jpg new file mode 100644 index 0000000000000000000000000000000000000000..491a6cca4566b49862f9cb963ae516ba5a563c19 --- /dev/null +++ b/parse/train/ByexElSYDr/images/f85f37627d30c4fed6fa6e72a887347694a38a8977b8d30db6ce475f8cce1018.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22025264c39098713564e5f71155ee54c6cdb5caae6ffbddf7dad4c3736ff0ff +size 9626 diff --git a/parse/train/CGFN_nV1ql/images/140e9778533fa00d85f0cbf04a7f924d478140c02bd0b764d5a8058f4b902d5d.jpg b/parse/train/CGFN_nV1ql/images/140e9778533fa00d85f0cbf04a7f924d478140c02bd0b764d5a8058f4b902d5d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bd91304c2d3a9e87526d6f9b23b059d884eb3188 --- /dev/null +++ b/parse/train/CGFN_nV1ql/images/140e9778533fa00d85f0cbf04a7f924d478140c02bd0b764d5a8058f4b902d5d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3d9b769217884e1ed918811a579e4ec0dd6281397afd91566914dabe804ed1d +size 4224 diff --git a/parse/train/CGFN_nV1ql/images/17cbaf3bc0c0241f4b4c555eff7c23510fbae1b714bc74220e5117554de38d48.jpg b/parse/train/CGFN_nV1ql/images/17cbaf3bc0c0241f4b4c555eff7c23510fbae1b714bc74220e5117554de38d48.jpg new file mode 100644 index 0000000000000000000000000000000000000000..36045b51ce8cfdaebb1a3b7e6b8602959f49a337 --- /dev/null +++ b/parse/train/CGFN_nV1ql/images/17cbaf3bc0c0241f4b4c555eff7c23510fbae1b714bc74220e5117554de38d48.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66b4038d92e95414d41c6f954954ed4ba7221e33ec28073067c3d5a7cb540a68 +size 40427 diff --git a/parse/train/CGFN_nV1ql/images/258a479afa848b55bc11081ce643fbccc1c6df42fb7881e28e3ba4917dd524cd.jpg b/parse/train/CGFN_nV1ql/images/258a479afa848b55bc11081ce643fbccc1c6df42fb7881e28e3ba4917dd524cd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4948fa5a37e0c78a1ef7f23e5fda0c09a62bb534 --- /dev/null +++ b/parse/train/CGFN_nV1ql/images/258a479afa848b55bc11081ce643fbccc1c6df42fb7881e28e3ba4917dd524cd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df999a523dca273062b37f7e25e8cc57c36df0ff8ef5bd21b3af7b67023f48b4 +size 56860 diff --git a/parse/train/CGFN_nV1ql/images/26daa5ffb38bf9f1cab4ee35f8b59eb8c80db08b72734cb992f60f581080fb60.jpg b/parse/train/CGFN_nV1ql/images/26daa5ffb38bf9f1cab4ee35f8b59eb8c80db08b72734cb992f60f581080fb60.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e4459da42084abb09e8322181afa80b2e8c3bbb6 --- /dev/null +++ b/parse/train/CGFN_nV1ql/images/26daa5ffb38bf9f1cab4ee35f8b59eb8c80db08b72734cb992f60f581080fb60.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e5ad3edc1e4bf4a039809d2cf38d2fb0e483bc0369fbf7f6f1dafe1d5b631d3 +size 26013 diff --git a/parse/train/CGFN_nV1ql/images/298c40f45176871a5c45d749a449e03d55efe7148d2e82ce9a206d5b085a6fcd.jpg b/parse/train/CGFN_nV1ql/images/298c40f45176871a5c45d749a449e03d55efe7148d2e82ce9a206d5b085a6fcd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ddca204fbabbc5bd69a53d0946552212f71d6f4 --- /dev/null +++ b/parse/train/CGFN_nV1ql/images/298c40f45176871a5c45d749a449e03d55efe7148d2e82ce9a206d5b085a6fcd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57eb8cff3bc3cce8cf1ff002080eefe4597de27bc4789092a5d4089bb2672c77 +size 14383 diff --git a/parse/train/CGFN_nV1ql/images/4b8e58ac6d446d602ff3d8334b74cf3d278039865d1b7f57219730137751e831.jpg b/parse/train/CGFN_nV1ql/images/4b8e58ac6d446d602ff3d8334b74cf3d278039865d1b7f57219730137751e831.jpg new file mode 100644 index 0000000000000000000000000000000000000000..79fb6792d81ea2563d797bbba9d25f22c7689baf --- /dev/null +++ b/parse/train/CGFN_nV1ql/images/4b8e58ac6d446d602ff3d8334b74cf3d278039865d1b7f57219730137751e831.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac50f08a900f4efa3236fd6ee1b62dcc68cc08ab2627e1a24bf9ddb28859bea6 +size 24621 diff --git a/parse/train/CGFN_nV1ql/images/5435da12536f1690632bc3ae9f1381dee158dbfd852dd400e54bf24b3cac2b9f.jpg b/parse/train/CGFN_nV1ql/images/5435da12536f1690632bc3ae9f1381dee158dbfd852dd400e54bf24b3cac2b9f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a1c3a527d1c9b3304f1c61ef1a510058af72eec4 --- /dev/null +++ b/parse/train/CGFN_nV1ql/images/5435da12536f1690632bc3ae9f1381dee158dbfd852dd400e54bf24b3cac2b9f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53e92d03ce3ab329f6829cc8135da81a35c555d927016129346712d5cfb35c3c +size 10272 diff --git a/parse/train/CGFN_nV1ql/images/6176ec827b7d0697c5ef83205c089f8232c9bfbfe329262cbae851cf39b3df79.jpg b/parse/train/CGFN_nV1ql/images/6176ec827b7d0697c5ef83205c089f8232c9bfbfe329262cbae851cf39b3df79.jpg new file mode 100644 index 0000000000000000000000000000000000000000..97ea7583ee8773d8f1501956ac5882650f7cb352 --- /dev/null +++ b/parse/train/CGFN_nV1ql/images/6176ec827b7d0697c5ef83205c089f8232c9bfbfe329262cbae851cf39b3df79.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c803b0947b852d10ec4a4b76b62672dba50fbea8c471a32347a7ef14fd6a9644 +size 38804 diff --git a/parse/train/CGFN_nV1ql/images/63bcb0ec78ed9321ff1048b68ebfe3ff03bd9e476884213da3d4517c1bc7ee3d.jpg b/parse/train/CGFN_nV1ql/images/63bcb0ec78ed9321ff1048b68ebfe3ff03bd9e476884213da3d4517c1bc7ee3d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9647efb08f10011fb26c8a7f503ca28f0a25305c --- /dev/null +++ b/parse/train/CGFN_nV1ql/images/63bcb0ec78ed9321ff1048b68ebfe3ff03bd9e476884213da3d4517c1bc7ee3d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9673e98c0e76496e901a22fd290e9bbf59f4ffad3d0f415cd4dc4650e94b839d +size 11221 diff --git a/parse/train/CGFN_nV1ql/images/650fa3d110c757c51bd5816919576387ca5e97e7e47e9826639887382164ddce.jpg b/parse/train/CGFN_nV1ql/images/650fa3d110c757c51bd5816919576387ca5e97e7e47e9826639887382164ddce.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4cf1bedea313c764aa1e27c1f29758928ebe9631 --- /dev/null +++ b/parse/train/CGFN_nV1ql/images/650fa3d110c757c51bd5816919576387ca5e97e7e47e9826639887382164ddce.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fbcdbed008a76899445c9be9c6c2577b4f66d965d4305a4e8af05d74845f0e2 +size 55298 diff --git a/parse/train/CGFN_nV1ql/images/77d5689fda722ad82f23fce643109631064942167e12205bbef5e39282facae5.jpg b/parse/train/CGFN_nV1ql/images/77d5689fda722ad82f23fce643109631064942167e12205bbef5e39282facae5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aca1460bd411ed3cdea7a8c66c2b0f255fff8c80 --- /dev/null +++ b/parse/train/CGFN_nV1ql/images/77d5689fda722ad82f23fce643109631064942167e12205bbef5e39282facae5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10f3d1fdc61670e93cd4582b5b840108ed183ec7378e1a6ced44bac36828e863 +size 15714 diff --git a/parse/train/CGFN_nV1ql/images/b10ec1e2c2611610781baea06023ce19aa543c850f920b7d0dee9134c88886a0.jpg b/parse/train/CGFN_nV1ql/images/b10ec1e2c2611610781baea06023ce19aa543c850f920b7d0dee9134c88886a0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b61fe45b39cbcad79427ea88b5c70d28a6ce702 --- /dev/null +++ b/parse/train/CGFN_nV1ql/images/b10ec1e2c2611610781baea06023ce19aa543c850f920b7d0dee9134c88886a0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:765da9b6a324be4ed46a799916a805697883e950de449a78a973d1b869a0178a +size 3499 diff --git a/parse/train/CGFN_nV1ql/images/c6130592affe905937e350dff836f4094bc6bf9dad7472a16b4b7d624e43fbdb.jpg b/parse/train/CGFN_nV1ql/images/c6130592affe905937e350dff836f4094bc6bf9dad7472a16b4b7d624e43fbdb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7c80013bc4f012eae00a94fa28dfb1574127943a --- /dev/null +++ b/parse/train/CGFN_nV1ql/images/c6130592affe905937e350dff836f4094bc6bf9dad7472a16b4b7d624e43fbdb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3985b34fc5e85653b8d6cad51f910619c618f101bd30bc16f7f78a83d90bf4f +size 204431 diff --git a/parse/train/CGFN_nV1ql/images/cbfba8b6504066babc85f97147c918ff06051fad774bb865095488b60dcedc0b.jpg b/parse/train/CGFN_nV1ql/images/cbfba8b6504066babc85f97147c918ff06051fad774bb865095488b60dcedc0b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2b5cc607e78e496a25c75a8884ac7b061cfc6ee1 --- /dev/null +++ b/parse/train/CGFN_nV1ql/images/cbfba8b6504066babc85f97147c918ff06051fad774bb865095488b60dcedc0b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6e1313b6d48bbccd7b7f29396fe6c39fe7b123c905e13e7b4604a8765f56115 +size 27348 diff --git a/parse/train/CGFN_nV1ql/images/d00bbc13704af7d74258b800af26f713a08cb94947d00f56e960fc3c1f786605.jpg b/parse/train/CGFN_nV1ql/images/d00bbc13704af7d74258b800af26f713a08cb94947d00f56e960fc3c1f786605.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f19b0846cc318ad47b3b26a41ff4db9c07075de9 --- /dev/null +++ b/parse/train/CGFN_nV1ql/images/d00bbc13704af7d74258b800af26f713a08cb94947d00f56e960fc3c1f786605.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ebfdbf4b3b6bedd110e17ce49ec84b4d346b407e8b314eae242e74a137cb7fc +size 15097 diff --git a/parse/train/CGFN_nV1ql/images/ef6245d28d6e5fe72286aed10af02936b934c22bae4b4a6aeddb69c0fa845c3b.jpg b/parse/train/CGFN_nV1ql/images/ef6245d28d6e5fe72286aed10af02936b934c22bae4b4a6aeddb69c0fa845c3b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4e2fa5e96e394fec497722ad1899d7acb0116646 --- /dev/null +++ b/parse/train/CGFN_nV1ql/images/ef6245d28d6e5fe72286aed10af02936b934c22bae4b4a6aeddb69c0fa845c3b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d29561529b79e65073ef7f205a6cd001b5a49d0f843c0d8076a2ef1938e4174b +size 101607 diff --git a/parse/train/CGFN_nV1ql/images/ff0ab9aa5d6d2e0ff69056bfa30b8b097798bd422544d0a80f135e4770ae02b1.jpg b/parse/train/CGFN_nV1ql/images/ff0ab9aa5d6d2e0ff69056bfa30b8b097798bd422544d0a80f135e4770ae02b1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a49ca9e8332dce954aebaebc385baec45aaaf9a9 --- /dev/null +++ b/parse/train/CGFN_nV1ql/images/ff0ab9aa5d6d2e0ff69056bfa30b8b097798bd422544d0a80f135e4770ae02b1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:effb5b07c917628fdb3f8c32d134358b8e8b989146d8fdb211f17d589e98fa43 +size 38034 diff --git a/parse/train/FGqiDsBUKL0/images/0b28f0fe9b7875b016a90db321daf950dc750138ad64d309b4132ae59a8c3cbc.jpg b/parse/train/FGqiDsBUKL0/images/0b28f0fe9b7875b016a90db321daf950dc750138ad64d309b4132ae59a8c3cbc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4e6e6d12891f13afe4fe78a827aff26bb1b075c8 --- /dev/null +++ b/parse/train/FGqiDsBUKL0/images/0b28f0fe9b7875b016a90db321daf950dc750138ad64d309b4132ae59a8c3cbc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:756bd4a8e09a843bd3eee49229e889282a8771334c66b3c0d19103ae3aea159f +size 9912 diff --git a/parse/train/FGqiDsBUKL0/images/310976135eabdf8cebf456057a5ad515fa02a2b29761fc3fa5851178959dee14.jpg b/parse/train/FGqiDsBUKL0/images/310976135eabdf8cebf456057a5ad515fa02a2b29761fc3fa5851178959dee14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..945eebf0add50768b1563ae46b9ee92c790124c6 --- /dev/null +++ b/parse/train/FGqiDsBUKL0/images/310976135eabdf8cebf456057a5ad515fa02a2b29761fc3fa5851178959dee14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32788f588674b83ccace1d82e5a22a49f33f06eaecde413939e3c377f925a82f +size 20199 diff --git a/parse/train/FGqiDsBUKL0/images/36391f593fd4d6af6520b22ad7fc8308d9925965bc50ee67ebb701b912595ef1.jpg b/parse/train/FGqiDsBUKL0/images/36391f593fd4d6af6520b22ad7fc8308d9925965bc50ee67ebb701b912595ef1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2b63f433b5ddd7b4f1331b519afb77186d9e68d9 --- /dev/null +++ b/parse/train/FGqiDsBUKL0/images/36391f593fd4d6af6520b22ad7fc8308d9925965bc50ee67ebb701b912595ef1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77249093911858e3c64de6f92488d536e1ed9751fb017107a5047d5963ec726d +size 17976 diff --git a/parse/train/FGqiDsBUKL0/images/43afa67a58b606713f80863f3fac2bb6358b26242b75d7b0d7d93fb0e9c088bd.jpg b/parse/train/FGqiDsBUKL0/images/43afa67a58b606713f80863f3fac2bb6358b26242b75d7b0d7d93fb0e9c088bd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..07eef02c4c0f2f620b49afa97a88acacc51f4172 --- /dev/null +++ b/parse/train/FGqiDsBUKL0/images/43afa67a58b606713f80863f3fac2bb6358b26242b75d7b0d7d93fb0e9c088bd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd9a5fe576e69e72ea5a744ecb807ea6b8f40b87f0eafcd853f74b5cbc658948 +size 72083 diff --git a/parse/train/FGqiDsBUKL0/images/742eab30414c8ea23b1a4b5a5836097ae6e5a13b1eef1083710ded571b6d14c2.jpg b/parse/train/FGqiDsBUKL0/images/742eab30414c8ea23b1a4b5a5836097ae6e5a13b1eef1083710ded571b6d14c2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..577eda932f6079160584742ad83cc4afacca9347 --- /dev/null +++ b/parse/train/FGqiDsBUKL0/images/742eab30414c8ea23b1a4b5a5836097ae6e5a13b1eef1083710ded571b6d14c2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbfa3409a3db520cd677cd5eb2c90ad964799b518d5046bf2105df203a7ae295 +size 60898 diff --git a/parse/train/FGqiDsBUKL0/images/7be3ca0c562c80879b2f9207e9131e544a4a3491394e9e6d2c755cabbea5d217.jpg b/parse/train/FGqiDsBUKL0/images/7be3ca0c562c80879b2f9207e9131e544a4a3491394e9e6d2c755cabbea5d217.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9f905584a826be39583421e4d8e6f7cf5dd299ff --- /dev/null +++ b/parse/train/FGqiDsBUKL0/images/7be3ca0c562c80879b2f9207e9131e544a4a3491394e9e6d2c755cabbea5d217.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4890a69ba121d3b49c10596338e08a8598f015463f93b79fd3bf7398dbf8b7bd +size 3658 diff --git a/parse/train/FGqiDsBUKL0/images/95377de2cc5cdfea13d6b0afd5468ea4fb5dd99cc6ec5abfe7c1b4772f0b441a.jpg b/parse/train/FGqiDsBUKL0/images/95377de2cc5cdfea13d6b0afd5468ea4fb5dd99cc6ec5abfe7c1b4772f0b441a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..93b0c000d4ac73d2cd030f789a51921ee9a97923 --- /dev/null +++ b/parse/train/FGqiDsBUKL0/images/95377de2cc5cdfea13d6b0afd5468ea4fb5dd99cc6ec5abfe7c1b4772f0b441a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38030ac0294b50a23e7759dfa5bb48da54e240eb1051092c4c7487779399ff26 +size 32924 diff --git a/parse/train/FGqiDsBUKL0/images/ae53b443528a15026b9ab3bbfcef88bb55b3c8d4dc12d255f8935fe612b39cc4.jpg b/parse/train/FGqiDsBUKL0/images/ae53b443528a15026b9ab3bbfcef88bb55b3c8d4dc12d255f8935fe612b39cc4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f6e400b4414aea65586194bbabb309b97c77b5d --- /dev/null +++ b/parse/train/FGqiDsBUKL0/images/ae53b443528a15026b9ab3bbfcef88bb55b3c8d4dc12d255f8935fe612b39cc4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18c1d14c8bb851e223cb924af975bf45513af66a690530542c95bf54ccc54fc9 +size 8926 diff --git a/parse/train/FGqiDsBUKL0/images/c35208d11687e2dbddab19514fbb685b8df08cb08856f76887b39fae5c61654a.jpg b/parse/train/FGqiDsBUKL0/images/c35208d11687e2dbddab19514fbb685b8df08cb08856f76887b39fae5c61654a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c8d1694297daeb94277974a23a18cb7b08953e72 --- /dev/null +++ b/parse/train/FGqiDsBUKL0/images/c35208d11687e2dbddab19514fbb685b8df08cb08856f76887b39fae5c61654a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bf09070c53a3bdf5434d15828f221d5e4988af25913e763a94b08df68fe23c3 +size 64594 diff --git a/parse/train/FGqiDsBUKL0/images/ce3e263b71d77d57e0dfb6fa524d92c9386c473612816fcef5af7532209d26bc.jpg b/parse/train/FGqiDsBUKL0/images/ce3e263b71d77d57e0dfb6fa524d92c9386c473612816fcef5af7532209d26bc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5b59ccbd81336184e8b0eb52104d22e8f8ef7917 --- /dev/null +++ b/parse/train/FGqiDsBUKL0/images/ce3e263b71d77d57e0dfb6fa524d92c9386c473612816fcef5af7532209d26bc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d09411f8e68afe81f76b2989d299b17129e5d469282bfdfc1d717cbc6bcb3f3b +size 25563 diff --git a/parse/train/FGqiDsBUKL0/images/d96c12e3de47d2b0ee343d4ff5e20069da5a32d429e47bec229ab8ae7fd09247.jpg b/parse/train/FGqiDsBUKL0/images/d96c12e3de47d2b0ee343d4ff5e20069da5a32d429e47bec229ab8ae7fd09247.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8260c9f8c3fa857994f4ebff29d2a1ecd18c6722 --- /dev/null +++ b/parse/train/FGqiDsBUKL0/images/d96c12e3de47d2b0ee343d4ff5e20069da5a32d429e47bec229ab8ae7fd09247.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:097997f1cb1ddb3f8e9e9ac40f2a0c6f03b3990b31a9c2026b8d9406ea9460ab +size 5429 diff --git a/parse/train/FGqiDsBUKL0/images/dc0f709372f5354c48ff13825940f30afc2f9af359d4a10dcec972efb8a8fc03.jpg b/parse/train/FGqiDsBUKL0/images/dc0f709372f5354c48ff13825940f30afc2f9af359d4a10dcec972efb8a8fc03.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5dc1304ba47bfbc27c208aded74f7bba1965ccb3 --- /dev/null +++ b/parse/train/FGqiDsBUKL0/images/dc0f709372f5354c48ff13825940f30afc2f9af359d4a10dcec972efb8a8fc03.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18fccdcddd526a2388691312de440c9849dc35402e0642bddaa898ca2a677ddc +size 65064 diff --git a/parse/train/FGqiDsBUKL0/images/e0030ea3503d762e409c6463bd6fa061ef78cdbde6dec264a66b1f9566107094.jpg b/parse/train/FGqiDsBUKL0/images/e0030ea3503d762e409c6463bd6fa061ef78cdbde6dec264a66b1f9566107094.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a3b4e5a5e8cdfc818f044f9577591203a2375a59 --- /dev/null +++ b/parse/train/FGqiDsBUKL0/images/e0030ea3503d762e409c6463bd6fa061ef78cdbde6dec264a66b1f9566107094.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e989f1b776c4c16c017be0f75bace4e517974a6f8b5ec8a25c94d00d07eb5e83 +size 215314 diff --git a/parse/train/H1edEyBKDS/images/0b929c164a33269f2a8fde0bfd7005bacd0bb518ef29604cb93f79a6bf446fca.jpg b/parse/train/H1edEyBKDS/images/0b929c164a33269f2a8fde0bfd7005bacd0bb518ef29604cb93f79a6bf446fca.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eaadb1e3e0238833a3d9ae381795db6bcbf3a89b --- /dev/null +++ b/parse/train/H1edEyBKDS/images/0b929c164a33269f2a8fde0bfd7005bacd0bb518ef29604cb93f79a6bf446fca.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37d7184a6d3a953a699f4b555cc69ccb813f563f3c6df78a2baee71b3ecc0e16 +size 4897 diff --git a/parse/train/H1edEyBKDS/images/0d2f6af4cb1e18812f749ce93c6381b7c2312924a6eb24b5a4081251d22939df.jpg b/parse/train/H1edEyBKDS/images/0d2f6af4cb1e18812f749ce93c6381b7c2312924a6eb24b5a4081251d22939df.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8529f43cd7228f8318fb699fcd223297b3a9a2bd --- /dev/null +++ b/parse/train/H1edEyBKDS/images/0d2f6af4cb1e18812f749ce93c6381b7c2312924a6eb24b5a4081251d22939df.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bec1f1c7d1992a47d8ecb6702e508450a486082d0d71030c3f18277e0bec148 +size 9373 diff --git a/parse/train/H1edEyBKDS/images/162fb26000fdf7084c283e9dadcadd621139edbaf8e3cf21f5aa84654be69f17.jpg b/parse/train/H1edEyBKDS/images/162fb26000fdf7084c283e9dadcadd621139edbaf8e3cf21f5aa84654be69f17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..40549278e86a61aa326e0e0d50c52bd9b46d0f5f --- /dev/null +++ b/parse/train/H1edEyBKDS/images/162fb26000fdf7084c283e9dadcadd621139edbaf8e3cf21f5aa84654be69f17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:419f6cc9d8fad58f3df955d017962e80f839fafad33f2fb36d1e9d2cd18edf33 +size 114659 diff --git a/parse/train/H1edEyBKDS/images/16a51e757b17edc9401eb05beb38a755eca463a3b1e1bdcea68cb7117f21d020.jpg b/parse/train/H1edEyBKDS/images/16a51e757b17edc9401eb05beb38a755eca463a3b1e1bdcea68cb7117f21d020.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c081e4fcc963ecd7bbc365d8904efe5b3e7c1085 --- /dev/null +++ b/parse/train/H1edEyBKDS/images/16a51e757b17edc9401eb05beb38a755eca463a3b1e1bdcea68cb7117f21d020.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2182129dbccf2a68208bc8fbcf8fa3b5c465b0573f14a66cd43ad00d718669f3 +size 5459 diff --git a/parse/train/H1edEyBKDS/images/22c383f85c65100cdd4859ee8ac97f8cac9e97832fa197e2087e6a549001d000.jpg b/parse/train/H1edEyBKDS/images/22c383f85c65100cdd4859ee8ac97f8cac9e97832fa197e2087e6a549001d000.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cdfdb2f1475ab34d79739a3759dd476fea7befab --- /dev/null +++ b/parse/train/H1edEyBKDS/images/22c383f85c65100cdd4859ee8ac97f8cac9e97832fa197e2087e6a549001d000.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e7d1bc12f92c8a41ecd16d73a732444e3791bce5b15ca51bbfaf881e75e308f +size 220906 diff --git a/parse/train/H1edEyBKDS/images/244c75d7c4314cd753843a4a628e2fe987d7d3c7ab75bb6136b0bb9af7937637.jpg b/parse/train/H1edEyBKDS/images/244c75d7c4314cd753843a4a628e2fe987d7d3c7ab75bb6136b0bb9af7937637.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2ffd6b212d6d92f9c1d848c89ca42dc11cc65229 --- /dev/null +++ b/parse/train/H1edEyBKDS/images/244c75d7c4314cd753843a4a628e2fe987d7d3c7ab75bb6136b0bb9af7937637.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:670b830b2ecd2f147c02a92dc96d4011d5c78e9d1992f048a3d218dd7219642a +size 248153 diff --git a/parse/train/H1edEyBKDS/images/2636b0433a83341f5a0858788d99edcd6ea50936d8ed893bd16e2e8ebeffd701.jpg b/parse/train/H1edEyBKDS/images/2636b0433a83341f5a0858788d99edcd6ea50936d8ed893bd16e2e8ebeffd701.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0848c7c347a5eda506eeb3d2adb5b47541b90221 --- /dev/null +++ b/parse/train/H1edEyBKDS/images/2636b0433a83341f5a0858788d99edcd6ea50936d8ed893bd16e2e8ebeffd701.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41f0750c66bb7d97ef649b545f95116189d26a6ec10db17500c7b2010620af49 +size 5288 diff --git a/parse/train/H1edEyBKDS/images/2a5250d9e8076a296dbb0a0d77b475097c43dca2d7796936b7608354a54d03da.jpg b/parse/train/H1edEyBKDS/images/2a5250d9e8076a296dbb0a0d77b475097c43dca2d7796936b7608354a54d03da.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dda4983b786731d2154e17a9fc2bf53ac096383b --- /dev/null +++ b/parse/train/H1edEyBKDS/images/2a5250d9e8076a296dbb0a0d77b475097c43dca2d7796936b7608354a54d03da.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:493034fc5f61cf4e6a31ea6b2f0f4a27cd7e7a5d67160dc5315d63799255b102 +size 118939 diff --git a/parse/train/H1edEyBKDS/images/2ee44e4de3414d8e6bd3ffe67a9d5f1c297924b95b39bd4d15f6c00b4cffaa57.jpg b/parse/train/H1edEyBKDS/images/2ee44e4de3414d8e6bd3ffe67a9d5f1c297924b95b39bd4d15f6c00b4cffaa57.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4bb7a02770a79158a3ce9ada4395591305454439 --- /dev/null +++ b/parse/train/H1edEyBKDS/images/2ee44e4de3414d8e6bd3ffe67a9d5f1c297924b95b39bd4d15f6c00b4cffaa57.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ed149ebbf2e64f0b2e18bfc1fb7dcb363bb692cc206252dca30ece41c8fdc7a +size 221505 diff --git a/parse/train/H1edEyBKDS/images/2ef35ff715a8784be27ea8f5c14235daf5aef10bf547b698ef939e0473e2ea40.jpg b/parse/train/H1edEyBKDS/images/2ef35ff715a8784be27ea8f5c14235daf5aef10bf547b698ef939e0473e2ea40.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7e0330c130a9dcbde3321f2c40967b964c29510b --- /dev/null +++ b/parse/train/H1edEyBKDS/images/2ef35ff715a8784be27ea8f5c14235daf5aef10bf547b698ef939e0473e2ea40.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35f2cf685c4ad860e3aaedf2f385ce763704bd34ce7e8f0f6c97fc9e22d72fa4 +size 33333 diff --git a/parse/train/H1edEyBKDS/images/32e9da57bdfe7490f02d98277ff9fc4150b05c8aa8c69d4bf5f523a019a099c5.jpg b/parse/train/H1edEyBKDS/images/32e9da57bdfe7490f02d98277ff9fc4150b05c8aa8c69d4bf5f523a019a099c5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..32e2576bc1e80f02184aba95057d73ba4908a43c --- /dev/null +++ b/parse/train/H1edEyBKDS/images/32e9da57bdfe7490f02d98277ff9fc4150b05c8aa8c69d4bf5f523a019a099c5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:562eeb1e8962e3ea7707bad8acddca537d5a95c231e26cd22a8eeb9b0c7987e5 +size 179519 diff --git a/parse/train/H1edEyBKDS/images/436cdd22f81085f22e756bb7039dd6a6089f290362b84339e74e2918a6bac123.jpg b/parse/train/H1edEyBKDS/images/436cdd22f81085f22e756bb7039dd6a6089f290362b84339e74e2918a6bac123.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b651dc5edc31ac307ede8b5b31d3eea33af29a26 --- /dev/null +++ b/parse/train/H1edEyBKDS/images/436cdd22f81085f22e756bb7039dd6a6089f290362b84339e74e2918a6bac123.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed30c8e52b5e3f83ef12ebea3cacd6d7064c93ce118cd5b3deb079328751906f +size 4038 diff --git a/parse/train/H1edEyBKDS/images/462c4e8749e4ee3f5c788ee7382418f5b4283d829b2135b1f24c7d0cd1f71946.jpg b/parse/train/H1edEyBKDS/images/462c4e8749e4ee3f5c788ee7382418f5b4283d829b2135b1f24c7d0cd1f71946.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9f0ac8cae1a22bba8b8e0266bbb577e2d012a2af --- /dev/null +++ b/parse/train/H1edEyBKDS/images/462c4e8749e4ee3f5c788ee7382418f5b4283d829b2135b1f24c7d0cd1f71946.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d94cdb33ea4818af02aac9e0388e421e2761268ce2f576ca47ffdaa15343536 +size 223610 diff --git a/parse/train/H1edEyBKDS/images/4c93876126639d87be56a76d7474382f4a21600a3f4b7a6ad0518a23b67eac72.jpg b/parse/train/H1edEyBKDS/images/4c93876126639d87be56a76d7474382f4a21600a3f4b7a6ad0518a23b67eac72.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8d44484f8ef00d9bd4d3248de9b95e1ac13cf309 --- /dev/null +++ b/parse/train/H1edEyBKDS/images/4c93876126639d87be56a76d7474382f4a21600a3f4b7a6ad0518a23b67eac72.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd89e53500000d472cb39d42d6c137d8f762278ed5a1fca296785ff9a1c93eab +size 3335 diff --git a/parse/train/H1edEyBKDS/images/4e7ae20404f3261e33cc30002a529a2c8b41aa2882977a4fd3b6985f09970cdc.jpg b/parse/train/H1edEyBKDS/images/4e7ae20404f3261e33cc30002a529a2c8b41aa2882977a4fd3b6985f09970cdc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..be349a21f848b3db3f38c8c9055111fd712e57dc --- /dev/null +++ b/parse/train/H1edEyBKDS/images/4e7ae20404f3261e33cc30002a529a2c8b41aa2882977a4fd3b6985f09970cdc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc2ffd7dc30b3cae4c13c8717cc760945ee4c0ed4a43eb235a09e6672db60081 +size 4384 diff --git a/parse/train/H1edEyBKDS/images/51e4d6a2ef9feeb18b5ade4e64c70d13bb0694eb1bf7159e09b8c20bb34b2a34.jpg b/parse/train/H1edEyBKDS/images/51e4d6a2ef9feeb18b5ade4e64c70d13bb0694eb1bf7159e09b8c20bb34b2a34.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e277a0c444f012f6f27db38a59660058ebe49e15 --- /dev/null +++ b/parse/train/H1edEyBKDS/images/51e4d6a2ef9feeb18b5ade4e64c70d13bb0694eb1bf7159e09b8c20bb34b2a34.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2787e671a26c3b69a35e673a36e4687a562c154d193a1cdc636d60cba5648f1 +size 166394 diff --git a/parse/train/H1edEyBKDS/images/55fb9d266e643482d564ed64526eab126d72267ceb6a86475e25d2daba35ce32.jpg b/parse/train/H1edEyBKDS/images/55fb9d266e643482d564ed64526eab126d72267ceb6a86475e25d2daba35ce32.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6ad74299fc67ae4259ebb94acdac4628c6bab8c7 --- /dev/null +++ b/parse/train/H1edEyBKDS/images/55fb9d266e643482d564ed64526eab126d72267ceb6a86475e25d2daba35ce32.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8724e07405d9af804d5413ec5439de11cb5fb6eea874232b18fdf88c6711b68d +size 57774 diff --git a/parse/train/H1edEyBKDS/images/6031901f740b926ce2dace00d3e62cb0f91a7f0ef59515115785ab3c11bb9783.jpg b/parse/train/H1edEyBKDS/images/6031901f740b926ce2dace00d3e62cb0f91a7f0ef59515115785ab3c11bb9783.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e43904efe00ecad979109b679301442381c04e7f --- /dev/null +++ b/parse/train/H1edEyBKDS/images/6031901f740b926ce2dace00d3e62cb0f91a7f0ef59515115785ab3c11bb9783.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:832cda4917215179fbc7d051b16e2b4e28fb03e37e5a0d5679fe2ddb9fe5bbea +size 176657 diff --git a/parse/train/H1edEyBKDS/images/69137b67d1c0ac5548cb1acddac6a296148ec978dba350ea426f0ab5e7be51a2.jpg b/parse/train/H1edEyBKDS/images/69137b67d1c0ac5548cb1acddac6a296148ec978dba350ea426f0ab5e7be51a2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bf04581ea9fcc632bf77d9bef8451ebed30a507b --- /dev/null +++ b/parse/train/H1edEyBKDS/images/69137b67d1c0ac5548cb1acddac6a296148ec978dba350ea426f0ab5e7be51a2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cbabdbb308e89a4114731c6dd978e409b02f299ff84bc810e915f5c3f29aaa0 +size 57814 diff --git a/parse/train/H1edEyBKDS/images/696e99e0491a8c922cb4a22eceb8821f39d9b864a8a1ba2f6837cf29618e8f62.jpg b/parse/train/H1edEyBKDS/images/696e99e0491a8c922cb4a22eceb8821f39d9b864a8a1ba2f6837cf29618e8f62.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b3cbaf48dcbc497f2277d9d2e3171ba4d8332cd1 --- /dev/null +++ b/parse/train/H1edEyBKDS/images/696e99e0491a8c922cb4a22eceb8821f39d9b864a8a1ba2f6837cf29618e8f62.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0044d0ff19066e39b3d4a5daba9d38ef074a916e3dfab534ecef5f310899b28 +size 128467 diff --git a/parse/train/H1edEyBKDS/images/863ebae73ac5adfd845baf17907368c261608ec92e1d41ba4c77ea0aecb47596.jpg b/parse/train/H1edEyBKDS/images/863ebae73ac5adfd845baf17907368c261608ec92e1d41ba4c77ea0aecb47596.jpg new file mode 100644 index 0000000000000000000000000000000000000000..15a80a943da54a5adb1f04ad3ddc599c879e6154 --- /dev/null +++ b/parse/train/H1edEyBKDS/images/863ebae73ac5adfd845baf17907368c261608ec92e1d41ba4c77ea0aecb47596.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6556d95740160f73415c99f72e946423cc30dc1ab236981f96950e71ca121902 +size 78934 diff --git a/parse/train/H1edEyBKDS/images/88052596d297065f197443a5dd9b3754c21dbab4b01cb50b9cc56dd10545de4d.jpg b/parse/train/H1edEyBKDS/images/88052596d297065f197443a5dd9b3754c21dbab4b01cb50b9cc56dd10545de4d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fcbc99a0c667ba54aa2108bcb94f97d742758503 --- /dev/null +++ b/parse/train/H1edEyBKDS/images/88052596d297065f197443a5dd9b3754c21dbab4b01cb50b9cc56dd10545de4d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e65b1983e66c0a58ebeb0172f4f44ddba085a0cd108db9adfeb629f845a3d8f1 +size 115188 diff --git a/parse/train/H1edEyBKDS/images/8846c094b8bc6f3c9a7bbbc126307699818644933f2cd0ada3fb395a1574cb15.jpg b/parse/train/H1edEyBKDS/images/8846c094b8bc6f3c9a7bbbc126307699818644933f2cd0ada3fb395a1574cb15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a917ab9392071be0f69f1c2322ef2f3f6e823a98 --- /dev/null +++ b/parse/train/H1edEyBKDS/images/8846c094b8bc6f3c9a7bbbc126307699818644933f2cd0ada3fb395a1574cb15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8e0d9dd573bdb0f1bf8512ff54f68eb4487d9d4b6631e00c5d7a28d6e7f6267 +size 113638 diff --git a/parse/train/H1edEyBKDS/images/8e6ceffd146860cf98364b3f9056dbd8cb4840baa20cbf6b5c0a6cf887f2314c.jpg b/parse/train/H1edEyBKDS/images/8e6ceffd146860cf98364b3f9056dbd8cb4840baa20cbf6b5c0a6cf887f2314c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..313eaeaca832e82849ff4c981d9a26469116b402 --- /dev/null +++ b/parse/train/H1edEyBKDS/images/8e6ceffd146860cf98364b3f9056dbd8cb4840baa20cbf6b5c0a6cf887f2314c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3750ed37198ebe55d3061a41e742c4b3dd5c43e5f41769919d7331c184e6df6d +size 71420 diff --git a/parse/train/H1edEyBKDS/images/908b4cedf9a8fe0e9cf64bb9791fc731abe2582a3d049ad6697db114f8f1bf61.jpg b/parse/train/H1edEyBKDS/images/908b4cedf9a8fe0e9cf64bb9791fc731abe2582a3d049ad6697db114f8f1bf61.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f7fdbeb7330df2e62c1266a4a6c4ebd797462fb --- /dev/null +++ b/parse/train/H1edEyBKDS/images/908b4cedf9a8fe0e9cf64bb9791fc731abe2582a3d049ad6697db114f8f1bf61.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e90ba32fca013b34de17f38095ac66a321e87fe60608621b8f195bbf0056c6d7 +size 68570 diff --git a/parse/train/H1edEyBKDS/images/9a507b0fff2be89051a8e2ff47e44390892129da756382f8d54ef7720f3eec34.jpg b/parse/train/H1edEyBKDS/images/9a507b0fff2be89051a8e2ff47e44390892129da756382f8d54ef7720f3eec34.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6e70cf34afd136dced0e71fa1fd81ee52b557c10 --- /dev/null +++ b/parse/train/H1edEyBKDS/images/9a507b0fff2be89051a8e2ff47e44390892129da756382f8d54ef7720f3eec34.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74cb6b8b0779f66930b5920a42bbbca7b2c27155c063e464571cd2d85994ed4b +size 139945 diff --git a/parse/train/H1edEyBKDS/images/9cb332edf95b8ee1db014c733a32568a7481a2751800b95d43819f4dcddb759e.jpg b/parse/train/H1edEyBKDS/images/9cb332edf95b8ee1db014c733a32568a7481a2751800b95d43819f4dcddb759e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..45beda0401ad2c7d88393bc9f665684f5f7b5647 --- /dev/null +++ b/parse/train/H1edEyBKDS/images/9cb332edf95b8ee1db014c733a32568a7481a2751800b95d43819f4dcddb759e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7adbc027095379b960cd2221274743e98bc9696fb563e4e782370fff2af1c0c4 +size 204739 diff --git a/parse/train/H1edEyBKDS/images/a57373590ed6c8ebb475d666044a6d2c159b15b7f1d9b627ebf0f97307d50708.jpg b/parse/train/H1edEyBKDS/images/a57373590ed6c8ebb475d666044a6d2c159b15b7f1d9b627ebf0f97307d50708.jpg new file mode 100644 index 0000000000000000000000000000000000000000..887acba61812229155acca51670073babf7ea1a4 --- /dev/null +++ b/parse/train/H1edEyBKDS/images/a57373590ed6c8ebb475d666044a6d2c159b15b7f1d9b627ebf0f97307d50708.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:254703355307667561c9b6883ab571b8f419e29de0393862688493c6566a9339 +size 63060 diff --git a/parse/train/H1edEyBKDS/images/aec1b2b7bcde70a52f0673c1e45c4559aa9c114210aff737879f871b026e471b.jpg b/parse/train/H1edEyBKDS/images/aec1b2b7bcde70a52f0673c1e45c4559aa9c114210aff737879f871b026e471b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ae7d09ac878bd1e45a736d75c463c4eef134e015 --- /dev/null +++ b/parse/train/H1edEyBKDS/images/aec1b2b7bcde70a52f0673c1e45c4559aa9c114210aff737879f871b026e471b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:532b845bb8ea5ec03f9fefe0054f4468285786137a6987599a07b9aae55d7982 +size 47024 diff --git a/parse/train/H1edEyBKDS/images/ba52cc5b66598f79e7bbbdaf9a399e7c734c155833c9cfdfef9ed10fd5d073ff.jpg b/parse/train/H1edEyBKDS/images/ba52cc5b66598f79e7bbbdaf9a399e7c734c155833c9cfdfef9ed10fd5d073ff.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b4c026db5914413809189bf2acb41dee1ada66e6 --- /dev/null +++ b/parse/train/H1edEyBKDS/images/ba52cc5b66598f79e7bbbdaf9a399e7c734c155833c9cfdfef9ed10fd5d073ff.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c4988a85b8403879ac1375150aa19d345310cca9bed6e32f2cf47a6da9b6fc8 +size 498239 diff --git a/parse/train/H1edEyBKDS/images/c1f9bcee9dad653f7060fd12b3b11d8f4b2fe2869bb80bcabf6219998bf40f40.jpg b/parse/train/H1edEyBKDS/images/c1f9bcee9dad653f7060fd12b3b11d8f4b2fe2869bb80bcabf6219998bf40f40.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a6a423d138b37f5f6f4d9d551d6c32bf2cf827a6 --- /dev/null +++ b/parse/train/H1edEyBKDS/images/c1f9bcee9dad653f7060fd12b3b11d8f4b2fe2869bb80bcabf6219998bf40f40.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55df7d1bf75c9948477b0edbcaec49c38e96000b60903351a772af341fdf1e8f +size 46922 diff --git a/parse/train/H1edEyBKDS/images/c724194541a4d1204a75ab6281e5a11d54c4c35c24617795ed0a26c7ee9ba14e.jpg b/parse/train/H1edEyBKDS/images/c724194541a4d1204a75ab6281e5a11d54c4c35c24617795ed0a26c7ee9ba14e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fef8c8efbac158326295216939b01402e149c144 --- /dev/null +++ b/parse/train/H1edEyBKDS/images/c724194541a4d1204a75ab6281e5a11d54c4c35c24617795ed0a26c7ee9ba14e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d531792bb60f6dec09422a46c8f51fcca83d7163df50d8bdcb7fbd2e67236486 +size 70747 diff --git a/parse/train/H1edEyBKDS/images/d31d917111fbb20d3b6d496e2de60b119b383d5c12967c090c4b6b44420f493f.jpg b/parse/train/H1edEyBKDS/images/d31d917111fbb20d3b6d496e2de60b119b383d5c12967c090c4b6b44420f493f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a58c764bbc185cf6e98bde25f5dd7c67dff258a2 --- /dev/null +++ b/parse/train/H1edEyBKDS/images/d31d917111fbb20d3b6d496e2de60b119b383d5c12967c090c4b6b44420f493f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b571b1ebc0ba74d025aec7dba42ce713d58bea74b5c8db574f33d97527a02f5 +size 161994 diff --git a/parse/train/H1edEyBKDS/images/d3b7edb310a44016f8526c68faf3340f0d4c7f783ee873bc7577d12ddd120d21.jpg b/parse/train/H1edEyBKDS/images/d3b7edb310a44016f8526c68faf3340f0d4c7f783ee873bc7577d12ddd120d21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..84e1dd25b54461774d2ec276dce2d4f7f9c55e05 --- /dev/null +++ b/parse/train/H1edEyBKDS/images/d3b7edb310a44016f8526c68faf3340f0d4c7f783ee873bc7577d12ddd120d21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24512f8fbca8bbb622147407ca74d3cde66eb144972cff899124db89547f241d +size 63840 diff --git a/parse/train/H1edEyBKDS/images/da42ef28196f033348b7b1d1e330e3b3f35d007c584a5edc6c5050957e876a84.jpg b/parse/train/H1edEyBKDS/images/da42ef28196f033348b7b1d1e330e3b3f35d007c584a5edc6c5050957e876a84.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e3118d0972c774b91b5f85c52f95de5879cd03ed --- /dev/null +++ b/parse/train/H1edEyBKDS/images/da42ef28196f033348b7b1d1e330e3b3f35d007c584a5edc6c5050957e876a84.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d90dd20d5b112763b1ca810010fe23c160bf34513fc3fe8589d8d129db3046a9 +size 7498 diff --git a/parse/train/H1edEyBKDS/images/e4bdf0b1741da78f51f4d9eedf11bc22fc4906afece07ac238cfc0f138e9df67.jpg b/parse/train/H1edEyBKDS/images/e4bdf0b1741da78f51f4d9eedf11bc22fc4906afece07ac238cfc0f138e9df67.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c1e936b4bc2636bd3f483dc206afdcb84fb69cd --- /dev/null +++ b/parse/train/H1edEyBKDS/images/e4bdf0b1741da78f51f4d9eedf11bc22fc4906afece07ac238cfc0f138e9df67.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:265a49cabb0318a3a31bd9396345badbafaea8c7e4dc562783bbd5d940c7fb7f +size 103968 diff --git a/parse/train/H1edEyBKDS/images/f881f6e7f05b34d6370b4d3b3963c7e85128bbfa441a30123b6d60cbc42e489b.jpg b/parse/train/H1edEyBKDS/images/f881f6e7f05b34d6370b4d3b3963c7e85128bbfa441a30123b6d60cbc42e489b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2aefeda8d7f85fb9f08c0ddb4a0a626c398fa317 --- /dev/null +++ b/parse/train/H1edEyBKDS/images/f881f6e7f05b34d6370b4d3b3963c7e85128bbfa441a30123b6d60cbc42e489b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:662aaeaf787305e501dca315edb7767c8032264f5e350760d853c76de345c811 +size 201098 diff --git a/parse/train/H1edEyBKDS/images/feedd11b681da8870b455eddfe27d050c6f3f39965175d2102222acd892e1dc5.jpg b/parse/train/H1edEyBKDS/images/feedd11b681da8870b455eddfe27d050c6f3f39965175d2102222acd892e1dc5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bcb15a0be0976785273ecc26b43e19ffb7dd0893 --- /dev/null +++ b/parse/train/H1edEyBKDS/images/feedd11b681da8870b455eddfe27d050c6f3f39965175d2102222acd892e1dc5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20e5f5b8fc49f4876c3f5f466f37e907cb5dc7f74919a0ccb6cd75804acdb431 +size 59487 diff --git a/parse/train/H1edEyBKDS/images/ff4390604e91dbddb0410b1044068b4449f555d30b6246464e7bebaf43b2fb13.jpg b/parse/train/H1edEyBKDS/images/ff4390604e91dbddb0410b1044068b4449f555d30b6246464e7bebaf43b2fb13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..68a31be2e1260fb3d35f092b5773121a74d9bfb7 --- /dev/null +++ b/parse/train/H1edEyBKDS/images/ff4390604e91dbddb0410b1044068b4449f555d30b6246464e7bebaf43b2fb13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a66d999e8a8a719a3a42dc67b15259ad7d788ac49c3e331715c3ca3f36f05cad +size 443449 diff --git a/parse/train/H1gL-2A9Ym/images/0072cf936b72a26218ba2729a695270a0013a7756cf97608c3cdfb41adef98a8.jpg b/parse/train/H1gL-2A9Ym/images/0072cf936b72a26218ba2729a695270a0013a7756cf97608c3cdfb41adef98a8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..18ebc9b09dbd4d7203ec2c1e057bc30271784fb8 --- /dev/null +++ b/parse/train/H1gL-2A9Ym/images/0072cf936b72a26218ba2729a695270a0013a7756cf97608c3cdfb41adef98a8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9885609ce23ae4713b465e2423ce7f9e796709622236293a65b5790a854e299e +size 46718 diff --git a/parse/train/H1gL-2A9Ym/images/0c1ef6e53578861dd5b1ffecd40f8b69aeab346389f9bbf3fae28a8a3613e8be.jpg b/parse/train/H1gL-2A9Ym/images/0c1ef6e53578861dd5b1ffecd40f8b69aeab346389f9bbf3fae28a8a3613e8be.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4063ca3f35136e24d4731cfa2ae3668c23cb4f7e --- /dev/null +++ b/parse/train/H1gL-2A9Ym/images/0c1ef6e53578861dd5b1ffecd40f8b69aeab346389f9bbf3fae28a8a3613e8be.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61484268db9d78427d00134fc67b2ea379e21c4d52a3fa105ec7868b6a0233b8 +size 17430 diff --git a/parse/train/H1gL-2A9Ym/images/1df3e15b9e80568ac6bbedbc6c5497b5b9982cec9d08137aa5b32a1273986c1f.jpg b/parse/train/H1gL-2A9Ym/images/1df3e15b9e80568ac6bbedbc6c5497b5b9982cec9d08137aa5b32a1273986c1f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..672a81346868d33e5dbffc94e861e03b7ea743a7 --- /dev/null +++ b/parse/train/H1gL-2A9Ym/images/1df3e15b9e80568ac6bbedbc6c5497b5b9982cec9d08137aa5b32a1273986c1f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b416ba7ba2fecd08aa1200b17297ff0f7df46efd2249de7a94a263050e1d3d40 +size 28840 diff --git a/parse/train/H1gL-2A9Ym/images/1df8384b8c518c6afc910dd05f6106d610cc2a21b25499d13f5e9dd02525da4f.jpg b/parse/train/H1gL-2A9Ym/images/1df8384b8c518c6afc910dd05f6106d610cc2a21b25499d13f5e9dd02525da4f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e096cfd1bd1250094299e6e4a5f286488d9b183e --- /dev/null +++ b/parse/train/H1gL-2A9Ym/images/1df8384b8c518c6afc910dd05f6106d610cc2a21b25499d13f5e9dd02525da4f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3e67f955ba1057e24ae0a59ab866fd6c2ca18a998387a5e2546f1f80a40a4ae +size 29050 diff --git a/parse/train/H1gL-2A9Ym/images/2a55d232ec3801c1dfe24455d46f4f3b2ba451800743466815f2ed67c6798bda.jpg b/parse/train/H1gL-2A9Ym/images/2a55d232ec3801c1dfe24455d46f4f3b2ba451800743466815f2ed67c6798bda.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e9166802670d2378c227b40fb60b802d76825a98 --- /dev/null +++ b/parse/train/H1gL-2A9Ym/images/2a55d232ec3801c1dfe24455d46f4f3b2ba451800743466815f2ed67c6798bda.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34a8be3ce68007ee260527a6ca4b6f4de4c37ec18e975f4f7035b79688b5a0d1 +size 3683 diff --git a/parse/train/H1gL-2A9Ym/images/2ca77a0438d85565dfbd33375f652c8cc3b1101eb60bceefdd54ecda12330734.jpg b/parse/train/H1gL-2A9Ym/images/2ca77a0438d85565dfbd33375f652c8cc3b1101eb60bceefdd54ecda12330734.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bccee44b6e9583aaba9cffd6418dd9816722f692 --- /dev/null +++ b/parse/train/H1gL-2A9Ym/images/2ca77a0438d85565dfbd33375f652c8cc3b1101eb60bceefdd54ecda12330734.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:104349fa01be1ffa4aee5b08b4f52b950f81aa2e539fd6174ce28da11d3ed8dd +size 6636 diff --git a/parse/train/H1gL-2A9Ym/images/2fd5099893deec0cdde802e9feb63de47fc5c089a3e5393abf3aaeca4685822b.jpg b/parse/train/H1gL-2A9Ym/images/2fd5099893deec0cdde802e9feb63de47fc5c089a3e5393abf3aaeca4685822b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ca2a8a33812c1db77b1e5c075cd97e3867ac1fb3 --- /dev/null +++ b/parse/train/H1gL-2A9Ym/images/2fd5099893deec0cdde802e9feb63de47fc5c089a3e5393abf3aaeca4685822b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ccc27e388540b05370c0ad0f17d18e7fe4a26ec3e02ca3ff6b4e66f9060fa1a +size 56028 diff --git a/parse/train/H1gL-2A9Ym/images/327146d4df4ef5cedcdb6de53aa0d9913e71f69e52f9ccc527ce49c6ad6e0926.jpg b/parse/train/H1gL-2A9Ym/images/327146d4df4ef5cedcdb6de53aa0d9913e71f69e52f9ccc527ce49c6ad6e0926.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bd270bb45348ab11a2787b711787dc117070ca2d --- /dev/null +++ b/parse/train/H1gL-2A9Ym/images/327146d4df4ef5cedcdb6de53aa0d9913e71f69e52f9ccc527ce49c6ad6e0926.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:771b851741b032b2ca5f1a0615ce36f1bc5056ec3b57829c00cdaf5f7e91e79c +size 7124 diff --git a/parse/train/H1gL-2A9Ym/images/345a40dc400f9132fe6fa440007a4ce1f551838991b5b87f4b091afde88da86e.jpg b/parse/train/H1gL-2A9Ym/images/345a40dc400f9132fe6fa440007a4ce1f551838991b5b87f4b091afde88da86e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7bd0edd9b600324772cdc9510409ec38da753c9d --- /dev/null +++ b/parse/train/H1gL-2A9Ym/images/345a40dc400f9132fe6fa440007a4ce1f551838991b5b87f4b091afde88da86e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfdd21b308cc04948697add7db265665960eb707212b3c4177216a3fc0e956f4 +size 11677 diff --git a/parse/train/H1gL-2A9Ym/images/36877412057a79dd8fa8927a78970b2eb40551f0a0805c0a6c8b6c39dc231e82.jpg b/parse/train/H1gL-2A9Ym/images/36877412057a79dd8fa8927a78970b2eb40551f0a0805c0a6c8b6c39dc231e82.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e2b30cb3c963615c9e3a943adeeef9ffba5fa445 --- /dev/null +++ b/parse/train/H1gL-2A9Ym/images/36877412057a79dd8fa8927a78970b2eb40551f0a0805c0a6c8b6c39dc231e82.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ad4abda484edef2a669035ad42372b214c996ef5cb7595d66bcae66be77b75d +size 4371 diff --git a/parse/train/H1gL-2A9Ym/images/450c3c6b12966fe24757d76c94f47567c73eff0ace75efe4410c70428228806c.jpg b/parse/train/H1gL-2A9Ym/images/450c3c6b12966fe24757d76c94f47567c73eff0ace75efe4410c70428228806c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..90ffc37fecba6285a87fe57e39141786ab6f8a69 --- /dev/null +++ b/parse/train/H1gL-2A9Ym/images/450c3c6b12966fe24757d76c94f47567c73eff0ace75efe4410c70428228806c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51f5e38f2235aff2422fe709864a48c02589af80314499cf9e8c8ac3be20fcc9 +size 56956 diff --git a/parse/train/H1gL-2A9Ym/images/50c3c5cb813b03bec49f4a66841a48a4d8f0c6bda9aad033c6007597101fe7b0.jpg b/parse/train/H1gL-2A9Ym/images/50c3c5cb813b03bec49f4a66841a48a4d8f0c6bda9aad033c6007597101fe7b0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e68f004fc47267524b6f591abd57cac3977a04db --- /dev/null +++ b/parse/train/H1gL-2A9Ym/images/50c3c5cb813b03bec49f4a66841a48a4d8f0c6bda9aad033c6007597101fe7b0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d7cd3c253704618b445838493d24b0b2a159bf5a92b844b969e19aa32b086cd +size 75969 diff --git a/parse/train/H1gL-2A9Ym/images/5389f5b7b8ef0d13b1c87be6e2841f435778ee204063bc1b91ca6aa3f22410a4.jpg b/parse/train/H1gL-2A9Ym/images/5389f5b7b8ef0d13b1c87be6e2841f435778ee204063bc1b91ca6aa3f22410a4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7306770ea7b5024bf39e7bd5b6380211bf8a6573 --- /dev/null +++ b/parse/train/H1gL-2A9Ym/images/5389f5b7b8ef0d13b1c87be6e2841f435778ee204063bc1b91ca6aa3f22410a4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6be15381a7085fd35218886f169f2c833f2f520db10c4af370ce451fbc216dc2 +size 27166 diff --git a/parse/train/H1gL-2A9Ym/images/56058b3b168be3ac08de72af6e10a058014132ca92e65177bfed43ca104f222a.jpg b/parse/train/H1gL-2A9Ym/images/56058b3b168be3ac08de72af6e10a058014132ca92e65177bfed43ca104f222a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9574dc246d8375c10fd0f32c702774e0fa731cb5 --- /dev/null +++ b/parse/train/H1gL-2A9Ym/images/56058b3b168be3ac08de72af6e10a058014132ca92e65177bfed43ca104f222a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a998bd328b4af3f87e4601ad0661f039a3ab9cad77ed864847d8fc32d94a587f +size 4465 diff --git a/parse/train/H1gL-2A9Ym/images/62154be5f91cc09d9d69baa2c807574a402caacda004d7ce1b31b0a43cf0d3ec.jpg b/parse/train/H1gL-2A9Ym/images/62154be5f91cc09d9d69baa2c807574a402caacda004d7ce1b31b0a43cf0d3ec.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a4bb1788d250a46bb1d6d393fbc43f12e47b3417 --- /dev/null +++ b/parse/train/H1gL-2A9Ym/images/62154be5f91cc09d9d69baa2c807574a402caacda004d7ce1b31b0a43cf0d3ec.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbd6c81ee28411b64d6d33224f07273e6534ed7f66030d981711cde6f508426c +size 32927 diff --git a/parse/train/H1gL-2A9Ym/images/62deb9b7b97bdabbc698dd47825aa1c31be99565ce8bbf2200f8f4cfbd5d284f.jpg b/parse/train/H1gL-2A9Ym/images/62deb9b7b97bdabbc698dd47825aa1c31be99565ce8bbf2200f8f4cfbd5d284f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0eae9d7b2d9337792a419dfbe91a96317bdb7dda --- /dev/null +++ b/parse/train/H1gL-2A9Ym/images/62deb9b7b97bdabbc698dd47825aa1c31be99565ce8bbf2200f8f4cfbd5d284f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7eaa59c164f05babc8fef97a3dc0f9d87004513e5986899aece297bafd0b4a3 +size 8394 diff --git a/parse/train/H1gL-2A9Ym/images/88566eae2ce6f160a22712efc36611a1a63fdd2342b12dae2ed67301a9c7b259.jpg b/parse/train/H1gL-2A9Ym/images/88566eae2ce6f160a22712efc36611a1a63fdd2342b12dae2ed67301a9c7b259.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3179068e30ccf691704fe04dd6aff2f63bbfec28 --- /dev/null +++ b/parse/train/H1gL-2A9Ym/images/88566eae2ce6f160a22712efc36611a1a63fdd2342b12dae2ed67301a9c7b259.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bcd4002164ea19991fa538be219bbd265c5380ac205e51266e9ad782cf7390e +size 29188 diff --git a/parse/train/H1gL-2A9Ym/images/921492bd3a768e4264889ce5758b459c61a0affc926c014b2bc32d88ec2e5e4c.jpg b/parse/train/H1gL-2A9Ym/images/921492bd3a768e4264889ce5758b459c61a0affc926c014b2bc32d88ec2e5e4c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2f8c8b7e57d5ee7935a6c2eb1ad60122d064639d --- /dev/null +++ b/parse/train/H1gL-2A9Ym/images/921492bd3a768e4264889ce5758b459c61a0affc926c014b2bc32d88ec2e5e4c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a694abb1132c0ebe31c51fc3b484761ac5a2917d57f6ee1db50356e682078d17 +size 19590 diff --git a/parse/train/H1gL-2A9Ym/images/922f154318507fafbeb2f3ed5f38a53906d5fadd66a576d6fed279871fc59744.jpg b/parse/train/H1gL-2A9Ym/images/922f154318507fafbeb2f3ed5f38a53906d5fadd66a576d6fed279871fc59744.jpg new file mode 100644 index 0000000000000000000000000000000000000000..933cc515bece5a978090de2daf766d5317d7f09e --- /dev/null +++ b/parse/train/H1gL-2A9Ym/images/922f154318507fafbeb2f3ed5f38a53906d5fadd66a576d6fed279871fc59744.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:847a64612d28d1896748c1e9a0b4585d6824df6e8d5589fc7c5339eb295f7ef5 +size 10947 diff --git a/parse/train/H1gL-2A9Ym/images/97478f5dbeec637506fb81f6d63e7bc17303dab521e5c1b780080f8ab5e41d8d.jpg b/parse/train/H1gL-2A9Ym/images/97478f5dbeec637506fb81f6d63e7bc17303dab521e5c1b780080f8ab5e41d8d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8159bd214d1bb26185278cb3886c28a043d7790b --- /dev/null +++ b/parse/train/H1gL-2A9Ym/images/97478f5dbeec637506fb81f6d63e7bc17303dab521e5c1b780080f8ab5e41d8d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b58bf8d75fa5031bba5c810187d599ee993961cf534aa149eeddbdf8d1fec81a +size 26779 diff --git a/parse/train/H1gL-2A9Ym/images/ad2ef76cbe4be7eb4a98e00e3da1d4e68f1dc6951624b6ed998fb0703566257d.jpg b/parse/train/H1gL-2A9Ym/images/ad2ef76cbe4be7eb4a98e00e3da1d4e68f1dc6951624b6ed998fb0703566257d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a4679f7a32cf7b4685be3d051a59149afd2cf149 --- /dev/null +++ b/parse/train/H1gL-2A9Ym/images/ad2ef76cbe4be7eb4a98e00e3da1d4e68f1dc6951624b6ed998fb0703566257d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12927cdabb0ae568c52eb9097573ef13240ca58e19507ce6ee12d4fc8c528b68 +size 3917 diff --git a/parse/train/H1gL-2A9Ym/images/b4aa525e1c873f19349a9967b8eab74ff37d89d4cc7d33d209b29d100026a523.jpg b/parse/train/H1gL-2A9Ym/images/b4aa525e1c873f19349a9967b8eab74ff37d89d4cc7d33d209b29d100026a523.jpg new file mode 100644 index 0000000000000000000000000000000000000000..013fbe09f1ac068b8283576949cb6bc22d8e5a98 --- /dev/null +++ b/parse/train/H1gL-2A9Ym/images/b4aa525e1c873f19349a9967b8eab74ff37d89d4cc7d33d209b29d100026a523.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c379b4111ca60ae7736a1c0ee9c0abb0e15518192637d5810b69f8a430ba66d2 +size 32790 diff --git a/parse/train/H1gL-2A9Ym/images/b5ef1be3d27841710cb335d16bfccf768880bcfa79885bfbb88b30e0d3582494.jpg b/parse/train/H1gL-2A9Ym/images/b5ef1be3d27841710cb335d16bfccf768880bcfa79885bfbb88b30e0d3582494.jpg new file mode 100644 index 0000000000000000000000000000000000000000..468e088603df5ca0c19ed4b2cfcd76b37cbdcfe7 --- /dev/null +++ b/parse/train/H1gL-2A9Ym/images/b5ef1be3d27841710cb335d16bfccf768880bcfa79885bfbb88b30e0d3582494.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a506fcc7788e0d5e88eee8bb16a48ed0ad8a887032aeef449a64279ca961508f +size 33299 diff --git a/parse/train/H1gL-2A9Ym/images/b6bdf5986377515ae3c6624ecda8334ce7a50a63c62823c27a17638c3d0d45dd.jpg b/parse/train/H1gL-2A9Ym/images/b6bdf5986377515ae3c6624ecda8334ce7a50a63c62823c27a17638c3d0d45dd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fb4fe9be79e8718aaa70d3dfc74865d28162f42e --- /dev/null +++ b/parse/train/H1gL-2A9Ym/images/b6bdf5986377515ae3c6624ecda8334ce7a50a63c62823c27a17638c3d0d45dd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fee444d50f25ab7d1aaaf7871f81c34f8d9bbf37b2e6fed7274cc15d6119abbf +size 55847 diff --git a/parse/train/H1gL-2A9Ym/images/c9a16536a4e516b2d58581e5824a4760c7222b772af1594436a217beb5a80ac1.jpg b/parse/train/H1gL-2A9Ym/images/c9a16536a4e516b2d58581e5824a4760c7222b772af1594436a217beb5a80ac1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b2d7b1fcb072aef441a5878a520f060b98e68348 --- /dev/null +++ b/parse/train/H1gL-2A9Ym/images/c9a16536a4e516b2d58581e5824a4760c7222b772af1594436a217beb5a80ac1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cb6c97b92f3bceb140254f542be5336174d21025d8cdecac631f523055aeabb +size 28930 diff --git a/parse/train/H1gL-2A9Ym/images/dd772eccfe4e8fb719bfcb306dc2425831eff18677efde174b6f43a5b6b8e331.jpg b/parse/train/H1gL-2A9Ym/images/dd772eccfe4e8fb719bfcb306dc2425831eff18677efde174b6f43a5b6b8e331.jpg new file mode 100644 index 0000000000000000000000000000000000000000..efed63c48c528445dd7d71c48857c27d3f0afaad --- /dev/null +++ b/parse/train/H1gL-2A9Ym/images/dd772eccfe4e8fb719bfcb306dc2425831eff18677efde174b6f43a5b6b8e331.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f0b4c0eea9fa8b7569c50ac0afb041742a4f290fa6fda771aac4823cd0ff829 +size 36597 diff --git a/parse/train/H1gL-2A9Ym/images/f5436eb85eb29bfa0226b787ea9e7661e7b18c50f0879781bcd8952e22d5f919.jpg b/parse/train/H1gL-2A9Ym/images/f5436eb85eb29bfa0226b787ea9e7661e7b18c50f0879781bcd8952e22d5f919.jpg new file mode 100644 index 0000000000000000000000000000000000000000..663abba63366e5c89772185567b13290e266591c --- /dev/null +++ b/parse/train/H1gL-2A9Ym/images/f5436eb85eb29bfa0226b787ea9e7661e7b18c50f0879781bcd8952e22d5f919.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1571750156eb02f08c2629a347b8cf8736e87a4dd2210299b72aeb45a7a60a43 +size 34741 diff --git a/parse/train/H1gfOiAqYm/images/299651e967994b41471a4155ad4a40177e027e0c11c8121f77ce1e4a25ab4a94.jpg b/parse/train/H1gfOiAqYm/images/299651e967994b41471a4155ad4a40177e027e0c11c8121f77ce1e4a25ab4a94.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4ea4fcc3cb9c45f492d19c2fab9c9c7d24430642 --- /dev/null +++ b/parse/train/H1gfOiAqYm/images/299651e967994b41471a4155ad4a40177e027e0c11c8121f77ce1e4a25ab4a94.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:160ff9bf160dc79d9492584c9e633112bd9f8c8b6945417b0863323f6f4d29ef +size 11149 diff --git a/parse/train/H1gfOiAqYm/images/2a832a6847006a886f8d9dac46b6d8f0576ce268dfbe66a1cc3726cf9dbce689.jpg b/parse/train/H1gfOiAqYm/images/2a832a6847006a886f8d9dac46b6d8f0576ce268dfbe66a1cc3726cf9dbce689.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0442abefbc96d4af330d2cd4e7bf201d6e527ec0 --- /dev/null +++ b/parse/train/H1gfOiAqYm/images/2a832a6847006a886f8d9dac46b6d8f0576ce268dfbe66a1cc3726cf9dbce689.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0c973c9e62613c6951a979cce37986f8bff6c12ee6bfe1d57e64e3639e91c98 +size 51936 diff --git a/parse/train/H1gfOiAqYm/images/2d75d0ca0442e8e5e00a24d12accbce1edd670089410062741452d11a9c1dc2b.jpg b/parse/train/H1gfOiAqYm/images/2d75d0ca0442e8e5e00a24d12accbce1edd670089410062741452d11a9c1dc2b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5b830c539150f13dd7ea0d03d00345de02697a17 --- /dev/null +++ b/parse/train/H1gfOiAqYm/images/2d75d0ca0442e8e5e00a24d12accbce1edd670089410062741452d11a9c1dc2b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fb6efc311981f8715f9d36858b530358376e32b2f49b6c5b1fd6efaf6e4e907 +size 11216 diff --git a/parse/train/H1gfOiAqYm/images/327e63a72b458b997363a02d7870daaf14607842b2f1c31eb72068393ca212c8.jpg b/parse/train/H1gfOiAqYm/images/327e63a72b458b997363a02d7870daaf14607842b2f1c31eb72068393ca212c8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..50ed52c7369aadba6e6ab0f89a5547c6050d7329 --- /dev/null +++ b/parse/train/H1gfOiAqYm/images/327e63a72b458b997363a02d7870daaf14607842b2f1c31eb72068393ca212c8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd19cc6b1a9ca6abc4f67852db0329f35831760cc603fbe09fb3ecc5d1daca07 +size 26880 diff --git a/parse/train/H1gfOiAqYm/images/32f09902e220c47c604ba8d3a01069aadae5303abebcecdb34ba70892aa1c8ac.jpg b/parse/train/H1gfOiAqYm/images/32f09902e220c47c604ba8d3a01069aadae5303abebcecdb34ba70892aa1c8ac.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ca73c8392b4228ffc4e658630d1172fa63387ff5 --- /dev/null +++ b/parse/train/H1gfOiAqYm/images/32f09902e220c47c604ba8d3a01069aadae5303abebcecdb34ba70892aa1c8ac.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:079f8c593f2c6d129a3c54d9299bb20feefbe502575b2242c1425a1d9ae51840 +size 48416 diff --git a/parse/train/H1gfOiAqYm/images/44f74dda4cd3b6af4551d35d8e06b6f93fd722e2c684da80a1a24965d15ffe7f.jpg b/parse/train/H1gfOiAqYm/images/44f74dda4cd3b6af4551d35d8e06b6f93fd722e2c684da80a1a24965d15ffe7f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..437fdb226a1d8e12eb4b791ec9a95cfc43d8e2ac --- /dev/null +++ b/parse/train/H1gfOiAqYm/images/44f74dda4cd3b6af4551d35d8e06b6f93fd722e2c684da80a1a24965d15ffe7f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d0d81ffe90879a15afdd2ee90888ca314c45469afc93ee1ca7e3f243fed0189 +size 64549 diff --git a/parse/train/H1gfOiAqYm/images/49485a0663e304746a1e655ae3a5252e4ddca86ce46702d68f80cdd0637c0307.jpg b/parse/train/H1gfOiAqYm/images/49485a0663e304746a1e655ae3a5252e4ddca86ce46702d68f80cdd0637c0307.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a7a1e59568db0e3636ab85c843895ed9f2c58777 --- /dev/null +++ b/parse/train/H1gfOiAqYm/images/49485a0663e304746a1e655ae3a5252e4ddca86ce46702d68f80cdd0637c0307.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0090695e00e47d1c29036ea0c54a79bb4ace4ae45f973be19b88dc8739bcbfa7 +size 5331 diff --git a/parse/train/H1gfOiAqYm/images/59edb037c2371344c27f4fbdd6e4256079091889d2384e3bc3ab216cfa901c1b.jpg b/parse/train/H1gfOiAqYm/images/59edb037c2371344c27f4fbdd6e4256079091889d2384e3bc3ab216cfa901c1b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2af6ff0b23ced21a5211572d9f7cda41685c894c --- /dev/null +++ b/parse/train/H1gfOiAqYm/images/59edb037c2371344c27f4fbdd6e4256079091889d2384e3bc3ab216cfa901c1b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8144ede816c1c33a152e95a13f4bc4fdc4b5edfa738fff7c921ec78dbebfd49 +size 4980 diff --git a/parse/train/H1gfOiAqYm/images/679ddd84edce925937f3501feb38dc8d8161444dd7474b5ad684651621edf06e.jpg b/parse/train/H1gfOiAqYm/images/679ddd84edce925937f3501feb38dc8d8161444dd7474b5ad684651621edf06e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1124001b773edbaa45477572d23df1a244cf08be --- /dev/null +++ b/parse/train/H1gfOiAqYm/images/679ddd84edce925937f3501feb38dc8d8161444dd7474b5ad684651621edf06e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ce97b58040dc015a9c17f18e2f59b02bd2cc49db2767fac8ac3d96533a01ff1 +size 52050 diff --git a/parse/train/H1gfOiAqYm/images/74686aa8f77217a6605b037ac57298ee0f1335756251dd8d721def6fd21f1909.jpg b/parse/train/H1gfOiAqYm/images/74686aa8f77217a6605b037ac57298ee0f1335756251dd8d721def6fd21f1909.jpg new file mode 100644 index 0000000000000000000000000000000000000000..10b1b0133aae5600577bcb60585734d8981e6d0b --- /dev/null +++ b/parse/train/H1gfOiAqYm/images/74686aa8f77217a6605b037ac57298ee0f1335756251dd8d721def6fd21f1909.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aef3789808869f1091d7bdb1c22e7cb229ecafec58ef6b837a0e4bd1c1f7ebc0 +size 36534 diff --git a/parse/train/H1gfOiAqYm/images/793e67803a5a65118ac4c0de17db567ca4a2427c1896ef7c463cc0d7ad06c055.jpg b/parse/train/H1gfOiAqYm/images/793e67803a5a65118ac4c0de17db567ca4a2427c1896ef7c463cc0d7ad06c055.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c7f0e0ab7c15090ab213b71bea6359fd71aa140e --- /dev/null +++ b/parse/train/H1gfOiAqYm/images/793e67803a5a65118ac4c0de17db567ca4a2427c1896ef7c463cc0d7ad06c055.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5840cd710eb127b3509b0bef984aae19803ec5bd0682913e4a8ca8353bbee97c +size 38749 diff --git a/parse/train/H1gfOiAqYm/images/7f128fa87d8574d66da07eaed785fc36c9ae386f1facfa03d76472ca7140c8bc.jpg b/parse/train/H1gfOiAqYm/images/7f128fa87d8574d66da07eaed785fc36c9ae386f1facfa03d76472ca7140c8bc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..22bb1423cc97e929ddae6dac88df0a564a65a8a6 --- /dev/null +++ b/parse/train/H1gfOiAqYm/images/7f128fa87d8574d66da07eaed785fc36c9ae386f1facfa03d76472ca7140c8bc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0395d9bd7583811e797bdfa3e5ae484d3949aeb82bfacdbf24b2d16b4f2557c7 +size 6807 diff --git a/parse/train/H1gfOiAqYm/images/855ba97830256ef48d0ed4055669307ce83130e0dc0ab6e0c157c497e6a73194.jpg b/parse/train/H1gfOiAqYm/images/855ba97830256ef48d0ed4055669307ce83130e0dc0ab6e0c157c497e6a73194.jpg new file mode 100644 index 0000000000000000000000000000000000000000..67373a84f27ae4651a78068ec3d57e95d4ca3657 --- /dev/null +++ b/parse/train/H1gfOiAqYm/images/855ba97830256ef48d0ed4055669307ce83130e0dc0ab6e0c157c497e6a73194.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbae0aa4aa1c45f34257177654ca151ec87c9dbf4133eef212a4f38831523bbb +size 8221 diff --git a/parse/train/H1gfOiAqYm/images/95718682fbe7ed5bb1fcef8f913d5a163dd5c4e0eb5a512edb9c5c7f18ae8406.jpg b/parse/train/H1gfOiAqYm/images/95718682fbe7ed5bb1fcef8f913d5a163dd5c4e0eb5a512edb9c5c7f18ae8406.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f4f87d760aca513a7f09778e779c2b0f31ee141d --- /dev/null +++ b/parse/train/H1gfOiAqYm/images/95718682fbe7ed5bb1fcef8f913d5a163dd5c4e0eb5a512edb9c5c7f18ae8406.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6df4948c96c33f232682a3518b7b16a6377c7ec028d9cfb2245c8e40833dd9f7 +size 33255 diff --git a/parse/train/H1gfOiAqYm/images/a025c814f0eb97d8ad956f0d6af4c01bccd17431bda1f280da2116b5587ed57b.jpg b/parse/train/H1gfOiAqYm/images/a025c814f0eb97d8ad956f0d6af4c01bccd17431bda1f280da2116b5587ed57b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b33c66b5026210309b6ee502977a94e0fed3eeb3 --- /dev/null +++ b/parse/train/H1gfOiAqYm/images/a025c814f0eb97d8ad956f0d6af4c01bccd17431bda1f280da2116b5587ed57b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81bc982e569f59d57499488f5c3476f5c433b0108a556dfbf413abc04e6a6cf8 +size 4081 diff --git a/parse/train/H1gfOiAqYm/images/a622a7b75fd2f29d77e542d7f80fca6c7856ae58b264c71e3aac90a4ed643f10.jpg b/parse/train/H1gfOiAqYm/images/a622a7b75fd2f29d77e542d7f80fca6c7856ae58b264c71e3aac90a4ed643f10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..da85dd79d934ec2c085bc64d96b8e56bc08af4c7 --- /dev/null +++ b/parse/train/H1gfOiAqYm/images/a622a7b75fd2f29d77e542d7f80fca6c7856ae58b264c71e3aac90a4ed643f10.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64c99341109bacfca9f729fd26dcd6047a05c6d5ba747fbd1831cc1ec5f5432b +size 4518 diff --git a/parse/train/H1gfOiAqYm/images/af49b3ac22d62bdb992f4c818d8acf99283e0cf93f8d2f0224d6ada79a87c500.jpg b/parse/train/H1gfOiAqYm/images/af49b3ac22d62bdb992f4c818d8acf99283e0cf93f8d2f0224d6ada79a87c500.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1ebf69ec74f544d15e7ca0906ea4f8e5de33e7b6 --- /dev/null +++ b/parse/train/H1gfOiAqYm/images/af49b3ac22d62bdb992f4c818d8acf99283e0cf93f8d2f0224d6ada79a87c500.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db33be30e8b6d496f1853633d4ef93da6270859285fa6d2df116fecc094af9aa +size 45594 diff --git a/parse/train/H1gfOiAqYm/images/eb231c0722259b127a05771031bae4360fa9ea6b4acff80eb2c265a18c791772.jpg b/parse/train/H1gfOiAqYm/images/eb231c0722259b127a05771031bae4360fa9ea6b4acff80eb2c265a18c791772.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d70ce7a954be35581828ea9e1fae571622d1072b --- /dev/null +++ b/parse/train/H1gfOiAqYm/images/eb231c0722259b127a05771031bae4360fa9ea6b4acff80eb2c265a18c791772.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84126c9f1702f5eb857ab1e83be8bf0940e97f5066b37e815ee5df2632a941e7 +size 31838 diff --git a/parse/train/H1gfOiAqYm/images/fb083c356dc62438e3813563a10787a8f51eccf8a1aa98e8ed763089c34059e4.jpg b/parse/train/H1gfOiAqYm/images/fb083c356dc62438e3813563a10787a8f51eccf8a1aa98e8ed763089c34059e4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8814d647b157f2997f1db1cb83442fa925110239 --- /dev/null +++ b/parse/train/H1gfOiAqYm/images/fb083c356dc62438e3813563a10787a8f51eccf8a1aa98e8ed763089c34059e4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:147dcede6f3fa81380b32d85b52c288b325ebbcfcdb94c28baf3b7bf81addaeb +size 17817 diff --git a/parse/train/H1vEXaxA-/images/03174d2e367e3ab1c1917d81e07eb837ce5cc419e08b2949f4f8fb86b74ec01c.jpg b/parse/train/H1vEXaxA-/images/03174d2e367e3ab1c1917d81e07eb837ce5cc419e08b2949f4f8fb86b74ec01c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c99d815e1e1b30b0ba2c027532f9b9edfbc2e1bb --- /dev/null +++ b/parse/train/H1vEXaxA-/images/03174d2e367e3ab1c1917d81e07eb837ce5cc419e08b2949f4f8fb86b74ec01c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ad865a76304cf1c0c791dc7209366c1a8be32e1654d03196146e0dc19acc531 +size 15129 diff --git a/parse/train/H1vEXaxA-/images/032fe94b50b3f28d5089d53e1692902eb63ec6cc6a62de8c72dbe55cd3a4c1ad.jpg b/parse/train/H1vEXaxA-/images/032fe94b50b3f28d5089d53e1692902eb63ec6cc6a62de8c72dbe55cd3a4c1ad.jpg new file mode 100644 index 0000000000000000000000000000000000000000..37bd5225d34e05d0dd2c2dd7e2f5a95fa04bdf4b --- /dev/null +++ b/parse/train/H1vEXaxA-/images/032fe94b50b3f28d5089d53e1692902eb63ec6cc6a62de8c72dbe55cd3a4c1ad.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f7092db3ac2934d70f97b1c7a9695c66d8f8c09a320db8802a9debc006816a2 +size 10852 diff --git a/parse/train/H1vEXaxA-/images/11608736fe8b18530ce46fb801b14d5b5fe0db16985ea70fc8b5e5ad98009a68.jpg b/parse/train/H1vEXaxA-/images/11608736fe8b18530ce46fb801b14d5b5fe0db16985ea70fc8b5e5ad98009a68.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d66db47a84ac72ab917faa80f8e61b6245239ada --- /dev/null +++ b/parse/train/H1vEXaxA-/images/11608736fe8b18530ce46fb801b14d5b5fe0db16985ea70fc8b5e5ad98009a68.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddd67141cb28c332abfcae082ba40a745d37990b78b005e36adb2bf79cba1b5d +size 83972 diff --git a/parse/train/H1vEXaxA-/images/1190db0935d3a19d3919f21c2b0b94ab613b1994684920eaa56b9ef049c0196c.jpg b/parse/train/H1vEXaxA-/images/1190db0935d3a19d3919f21c2b0b94ab613b1994684920eaa56b9ef049c0196c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e3ed0f2652bf71543e58806ce58007c624ee44b9 --- /dev/null +++ b/parse/train/H1vEXaxA-/images/1190db0935d3a19d3919f21c2b0b94ab613b1994684920eaa56b9ef049c0196c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1079d7347fa18268c3d98713937544a9fb400fff7e2f73f6dd1fcfb9f6e8a46 +size 17619 diff --git a/parse/train/H1vEXaxA-/images/1c74c530f3df0af70ecde81f36a56bd633ccf7f999c3e9ea1c204184382e0b5e.jpg b/parse/train/H1vEXaxA-/images/1c74c530f3df0af70ecde81f36a56bd633ccf7f999c3e9ea1c204184382e0b5e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c3649d79c9b195d935fbfb40fd940d38cda32ea6 --- /dev/null +++ b/parse/train/H1vEXaxA-/images/1c74c530f3df0af70ecde81f36a56bd633ccf7f999c3e9ea1c204184382e0b5e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b941e125953f533c6a0243b54b090b7f04d914cf84f0c5872f758a4be948df33 +size 114744 diff --git a/parse/train/H1vEXaxA-/images/334d78447657fc594e2af339940decb56fe0e5fa67538d72bbfe428f7d054f69.jpg b/parse/train/H1vEXaxA-/images/334d78447657fc594e2af339940decb56fe0e5fa67538d72bbfe428f7d054f69.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3e80239dd360ef8a441170cbf4b33ba7f0b9bfac --- /dev/null +++ b/parse/train/H1vEXaxA-/images/334d78447657fc594e2af339940decb56fe0e5fa67538d72bbfe428f7d054f69.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83e21bdfff163d8d1e3dca301c16c8140e811ec57307349f5e1698fb21854a62 +size 22407 diff --git a/parse/train/H1vEXaxA-/images/36ddeb601695a02af34c0478165a96925598a878ca77c914b81ab4c189b8b2ad.jpg b/parse/train/H1vEXaxA-/images/36ddeb601695a02af34c0478165a96925598a878ca77c914b81ab4c189b8b2ad.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7625c0dcdcae9a4d0ae1fb44e7632b7d4c1b2229 --- /dev/null +++ b/parse/train/H1vEXaxA-/images/36ddeb601695a02af34c0478165a96925598a878ca77c914b81ab4c189b8b2ad.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3451e32c6d259564e50fe91fe794117403ac52462508574bd40dfb665b95213b +size 4646 diff --git a/parse/train/H1vEXaxA-/images/3d1b2c885f8f9f441f62d1b7665e38df33e132a5be200f152dd3263ec417bd3d.jpg b/parse/train/H1vEXaxA-/images/3d1b2c885f8f9f441f62d1b7665e38df33e132a5be200f152dd3263ec417bd3d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2b43ac0cdfc3732f93bb6d55d6ab5167892377e9 --- /dev/null +++ b/parse/train/H1vEXaxA-/images/3d1b2c885f8f9f441f62d1b7665e38df33e132a5be200f152dd3263ec417bd3d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d9861832f97209eded8439cdef1010e65986f34bbe2b41f8966f6524016a483 +size 118097 diff --git a/parse/train/H1vEXaxA-/images/42ac9b9e0a4d0838974aa89bfe3f2f5ae9cd65898675b4141291040beafeed4f.jpg b/parse/train/H1vEXaxA-/images/42ac9b9e0a4d0838974aa89bfe3f2f5ae9cd65898675b4141291040beafeed4f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a4d4d238d5a4b1ecbf071ed845b66b13f9d0bbf0 --- /dev/null +++ b/parse/train/H1vEXaxA-/images/42ac9b9e0a4d0838974aa89bfe3f2f5ae9cd65898675b4141291040beafeed4f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1184c601839cfa3614d686dca2b598bb969778cb5629e47bf5bd480112e6635b +size 10211 diff --git a/parse/train/H1vEXaxA-/images/5b8dbdfac70a9609f20a5433f4d79caf326f67f077c280000101fced18647f12.jpg b/parse/train/H1vEXaxA-/images/5b8dbdfac70a9609f20a5433f4d79caf326f67f077c280000101fced18647f12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..89f30d3c328a953bd9d09295b18c5351f69dc574 --- /dev/null +++ b/parse/train/H1vEXaxA-/images/5b8dbdfac70a9609f20a5433f4d79caf326f67f077c280000101fced18647f12.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70a0f832859370adc34ab24733486f784572ee94ac9f2a4cc48a2661a47b5fbc +size 6507 diff --git a/parse/train/H1vEXaxA-/images/62053844a55599194692e9091a91b29fa718c1f7caa621791e75c697e383870d.jpg b/parse/train/H1vEXaxA-/images/62053844a55599194692e9091a91b29fa718c1f7caa621791e75c697e383870d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5394e8e130ffb1fe5dc51c40c690f85c77246104 --- /dev/null +++ b/parse/train/H1vEXaxA-/images/62053844a55599194692e9091a91b29fa718c1f7caa621791e75c697e383870d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70f3e20e59b1c36baa80f5f5088b2bdef148f8098db506038007314d76062498 +size 77305 diff --git a/parse/train/H1vEXaxA-/images/65d023ebe07a8a0fae680e5059a4cdb485f94a706a6ce08bcf42efc4ae0710e7.jpg b/parse/train/H1vEXaxA-/images/65d023ebe07a8a0fae680e5059a4cdb485f94a706a6ce08bcf42efc4ae0710e7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c110ebe3c17b78a2c49f7ba52040c110f765e0ab --- /dev/null +++ b/parse/train/H1vEXaxA-/images/65d023ebe07a8a0fae680e5059a4cdb485f94a706a6ce08bcf42efc4ae0710e7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:998703ab2da9f0ae272321823f9a58073bd95625b7455ff24e30d7070f3ec873 +size 6109 diff --git a/parse/train/H1vEXaxA-/images/6740918e4399b8d8a3eabd0458314605505e01fd42c730163c8995b214cd3a58.jpg b/parse/train/H1vEXaxA-/images/6740918e4399b8d8a3eabd0458314605505e01fd42c730163c8995b214cd3a58.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c3bc696a0f75b2214fe53ea59ba281f308cbc983 --- /dev/null +++ b/parse/train/H1vEXaxA-/images/6740918e4399b8d8a3eabd0458314605505e01fd42c730163c8995b214cd3a58.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37ee25308d4d1e8f0e62670883100c1ac3cb4d546839e2629ca1447739334a5c +size 79585 diff --git a/parse/train/H1vEXaxA-/images/681ac53f3cb3e67802920f7035cd3f95b359a6e27f134b18d3a7891c3b9ffa3d.jpg b/parse/train/H1vEXaxA-/images/681ac53f3cb3e67802920f7035cd3f95b359a6e27f134b18d3a7891c3b9ffa3d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ceb58482e06d85fcfa5d04bd8217122277d03b8f --- /dev/null +++ b/parse/train/H1vEXaxA-/images/681ac53f3cb3e67802920f7035cd3f95b359a6e27f134b18d3a7891c3b9ffa3d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66f97879df73dd33a7b4fdd43ab17fbe9f7760a1619c8c623a63b9ac3975886c +size 25768 diff --git a/parse/train/H1vEXaxA-/images/71b253b646af357fdfe40e3d015b506be039eba8243bdf68a5631a8f5285cf45.jpg b/parse/train/H1vEXaxA-/images/71b253b646af357fdfe40e3d015b506be039eba8243bdf68a5631a8f5285cf45.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0a6e61a8d43b1724c17a42bba20dadf4170ce94f --- /dev/null +++ b/parse/train/H1vEXaxA-/images/71b253b646af357fdfe40e3d015b506be039eba8243bdf68a5631a8f5285cf45.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21d18062022428b6248a6cecc7d15723067674a0d989ee40f97dd66791ef0eeb +size 76272 diff --git a/parse/train/H1vEXaxA-/images/89db8c45d18bf943a570b3a7d2c5c54717921914885c3ce24390b6f5ff42c89b.jpg b/parse/train/H1vEXaxA-/images/89db8c45d18bf943a570b3a7d2c5c54717921914885c3ce24390b6f5ff42c89b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c129b5d832ffda3c1365a89099c1bbb9a638d6f9 --- /dev/null +++ b/parse/train/H1vEXaxA-/images/89db8c45d18bf943a570b3a7d2c5c54717921914885c3ce24390b6f5ff42c89b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e8adc0470f822279a781d5cc0dcdc950f7fc509683e17e0828bf340c73095cb +size 13378 diff --git a/parse/train/H1vEXaxA-/images/99e30d4727a80dd0582917bee7d5300486f8fc7c1d188cc5c81514885d3723c5.jpg b/parse/train/H1vEXaxA-/images/99e30d4727a80dd0582917bee7d5300486f8fc7c1d188cc5c81514885d3723c5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..faf7200efa1d661d26cbbef850cdb89584a56f44 --- /dev/null +++ b/parse/train/H1vEXaxA-/images/99e30d4727a80dd0582917bee7d5300486f8fc7c1d188cc5c81514885d3723c5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0153ee7193a28817a2278184e35b8235e3b66444b6b05d9db52bd5b0dd1967e9 +size 41954 diff --git a/parse/train/H1vEXaxA-/images/9b70299e70c4f91b4931e1cb4dfed6e0bf7ec8a3a4b4482fafcab38e40ca1768.jpg b/parse/train/H1vEXaxA-/images/9b70299e70c4f91b4931e1cb4dfed6e0bf7ec8a3a4b4482fafcab38e40ca1768.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5bbb438dee73c1b31d9feb116eb804569dd7e6a2 --- /dev/null +++ b/parse/train/H1vEXaxA-/images/9b70299e70c4f91b4931e1cb4dfed6e0bf7ec8a3a4b4482fafcab38e40ca1768.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fe0720f9e07842674e251ce6350c99349e6eef7a1cc6e7c4a209a21b07857dc +size 25615 diff --git a/parse/train/H1vEXaxA-/images/a6109062c60994a5f2fcb4685751e4bffb23bfc21811c1599fe36f7f96512ef7.jpg b/parse/train/H1vEXaxA-/images/a6109062c60994a5f2fcb4685751e4bffb23bfc21811c1599fe36f7f96512ef7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d58123ecfba51ee52ee6a0c9394d024b32a5c22f --- /dev/null +++ b/parse/train/H1vEXaxA-/images/a6109062c60994a5f2fcb4685751e4bffb23bfc21811c1599fe36f7f96512ef7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74d78fce6f09bc0209e9284195298b5e6758485da02c59b3aa5d0376b3a26263 +size 8240 diff --git a/parse/train/H1vEXaxA-/images/b1d19509538de6203718a975ea7eb6bdc1feb356674e6bc1647aa42f208066df.jpg b/parse/train/H1vEXaxA-/images/b1d19509538de6203718a975ea7eb6bdc1feb356674e6bc1647aa42f208066df.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a14dc2d5b8d2f796a38d97ef549a9551a355eeca --- /dev/null +++ b/parse/train/H1vEXaxA-/images/b1d19509538de6203718a975ea7eb6bdc1feb356674e6bc1647aa42f208066df.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f81ec2c672e5f41d74cee378b64a31e9ef3be56615e56adeb4cc99fa3055ae2 +size 22602 diff --git a/parse/train/H1vEXaxA-/images/b91fbe3ca0233adf357277ff6e688be93d69026fa874f0de912a31763af80390.jpg b/parse/train/H1vEXaxA-/images/b91fbe3ca0233adf357277ff6e688be93d69026fa874f0de912a31763af80390.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2afbc0e834be446d26bff2eb534053353eb61103 --- /dev/null +++ b/parse/train/H1vEXaxA-/images/b91fbe3ca0233adf357277ff6e688be93d69026fa874f0de912a31763af80390.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8d82df8eb54d704f0ce47f4c02c43f8bdb06bae5d9fa573a233e3fdc5c4aa0d +size 12116 diff --git a/parse/train/H1vEXaxA-/images/d2fe0292fc76fb26e3dc993e6027581d87f048865c6cdbe82a6d6f5b5b586a3d.jpg b/parse/train/H1vEXaxA-/images/d2fe0292fc76fb26e3dc993e6027581d87f048865c6cdbe82a6d6f5b5b586a3d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..79bce736fe96290bf18f1bf53decd6d3d3a98b8f --- /dev/null +++ b/parse/train/H1vEXaxA-/images/d2fe0292fc76fb26e3dc993e6027581d87f048865c6cdbe82a6d6f5b5b586a3d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0554d956d8265c4ce902bb368d4dca86d6ad4b56e9ba7b03f7639f129f3a62f +size 60506 diff --git a/parse/train/H1vEXaxA-/images/e0d9502a310d495b8e4422e5e7079fbb48c6ab74fd5417d3d56bce5792b18f33.jpg b/parse/train/H1vEXaxA-/images/e0d9502a310d495b8e4422e5e7079fbb48c6ab74fd5417d3d56bce5792b18f33.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1ed84d3d10bf72a1b48c5705546e50ea59ab45ce --- /dev/null +++ b/parse/train/H1vEXaxA-/images/e0d9502a310d495b8e4422e5e7079fbb48c6ab74fd5417d3d56bce5792b18f33.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4f1b70d5e33a4d7c4a2b92ba1646d73415130b126a754de22d2d7631241f960 +size 10358 diff --git a/parse/train/H1vEXaxA-/images/e8067262d6d5c5d926de61450f3d79e027eca8e2ee21704e04ba4a4859c62dd4.jpg b/parse/train/H1vEXaxA-/images/e8067262d6d5c5d926de61450f3d79e027eca8e2ee21704e04ba4a4859c62dd4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9887a0b0ad38284473b82b11b8e4995a4009665c --- /dev/null +++ b/parse/train/H1vEXaxA-/images/e8067262d6d5c5d926de61450f3d79e027eca8e2ee21704e04ba4a4859c62dd4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04bb30f02eb2ed8636ed84024630bde10615802486aaf9709b1ee206094c9771 +size 30830 diff --git a/parse/train/H1vEXaxA-/images/f55d70a48a7c0202874339c4988fe3a345248b04b4950a134970866a4a077b82.jpg b/parse/train/H1vEXaxA-/images/f55d70a48a7c0202874339c4988fe3a345248b04b4950a134970866a4a077b82.jpg new file mode 100644 index 0000000000000000000000000000000000000000..89de0abb4ce12a0cb6552f85077a0e66fc6a5ba5 --- /dev/null +++ b/parse/train/H1vEXaxA-/images/f55d70a48a7c0202874339c4988fe3a345248b04b4950a134970866a4a077b82.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c09b6976df931d0cdfe985382c783b9356212602c231577d26a3fafbaaea9285 +size 63127 diff --git a/parse/train/H1vEXaxA-/images/fb44a27fbe8e2d070a5da63f6ba3bf0d8508bdbed8611c317e41f26463e7414f.jpg b/parse/train/H1vEXaxA-/images/fb44a27fbe8e2d070a5da63f6ba3bf0d8508bdbed8611c317e41f26463e7414f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ecc98f14ff1abb9899b3f8c4fcfde96f1d7d70ce --- /dev/null +++ b/parse/train/H1vEXaxA-/images/fb44a27fbe8e2d070a5da63f6ba3bf0d8508bdbed8611c317e41f26463e7414f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b003832da7d72edfd86e9338aac19c98ece6b38fbf4f2950651368e51e0e5758 +size 56943 diff --git a/parse/train/HJIoJWZCZ/HJIoJWZCZ.md b/parse/train/HJIoJWZCZ/HJIoJWZCZ.md new file mode 100644 index 0000000000000000000000000000000000000000..9003286cf1f8c92a5a7e9ef88da04f0925f05e8c --- /dev/null +++ b/parse/train/HJIoJWZCZ/HJIoJWZCZ.md @@ -0,0 +1,342 @@ +# ADVERSARIAL DROPOUT REGULARIZATION + +Kuniaki Saito1, Yoshitaka Ushiku1, Tatsuya Harada1,2, and Kate Saenko3 + +1The University of Tokyo, 2RIKEN, 3Boston University {k-saito,ushiku,harada}@mi.t.u-tokyo.ac.jp, saenko@bu.edu + +# ABSTRACT + +We present a domain adaptation method for transferring neural representations from label-rich source domains to unlabeled target domains. Recent adversarial methods proposed for this task learn to align features across domains by “fooling” a special domain classifier network. However, a drawback of this approach is that the domain classifier simply labels the generated features as in-domain or not, without considering the boundaries between classes. This means that ambiguous target features can be generated near class boundaries, reducing target classification accuracy. We propose a novel approach, Adversarial Dropout Regularization (ADR), which encourages the generator to output more discriminative features for the target domain. Our key idea is to replace the traditional domain critic with a critic that detects non-discriminative features by using dropout on the classifier network. The generator then learns to avoid these areas of the feature space and thus creates better features. We apply our ADR approach to the problem of unsupervised domain adaptation for image classification and semantic segmentation tasks, and demonstrate significant improvements over the state of the art. + +# 1 INTRODUCTION + +Transferring knowledge learned by deep neural networks from label-rich domains to new target domains is a challenging problem, especially when the source and target input distributions have different characteristics. Such domain shifts occurs in many practical applications. For example, while simulated driving images rendered by games provide a rich source of labeled data for semantic segmentation Richter et al. (2016), deep models trained on such source data do not transfer well to real target domains (Fig. 1(a-d)). When target-domain labels are unavailable for fine-tuning, unsupervised domain adaptation must be applied to improve the source model. + +Recent methods for unsupervised domain adaptation attempt to reduce the discrepancy between the source and target features via adversarial learning (Tzeng et al. (2014); Ganin $\&$ Lempitsky (2014)). They divide the base network into a feature encoder $G$ and classifier $C$ , and add a separate domain classifier (critic) network $D$ . The critic takes the features generated by $G$ and labels them as either source- or target-domain. The encoder $G$ is then trained with an additional adversarial loss that maximizes $D$ ’s mistakes and thus aligns features across domains. + +However, a major drawback of this approach is that the critic simply predicts the domain label of the generated point and does not consider category information. Thus the generator may create features that look like they came from the right domain, but are not discriminative. In particular, it can generate points close to class boundaries, as shown in Fig. 1(e), which are likely to be misclassified by the source model. We argue that to achieve good performance on the target data, the adaptation model must take the decision boundaries between classes into account while aligning features across domains (Fig. 1(f)). Moreover, since our setting is unsupervised adaptation, this must be accomplished without labels on target data. + +In this paper, we propose a novel adversarial alignment technique that overcomes the above limitation and preserves class boundaries. We make the following observation: if the critic could detect points near the decision boundary, then the generator would have to avoid these areas of the feature space in order to fool the critic. Thus the critic would force the generator to create more discriminative features. How can we obtain such a critic? If we alter the boundary of the classifier $C$ slightly and measure the change in the posterior class probability $p ( y | x )$ , where $y$ and $x$ denote class and input respectively, then samples near the decision boundary are likely to have the largest change. In fact, this posterior discrepancy is inversely proportional to the distance from the class boundary. We thus propose to maximize this posterior discrepancy to turn $C$ into a critic sensitive to nondiscriminative points. We call this technique Adversarial Dropout Regularization. Here, dropout is not used in the standard way, which is to regularize the main classifier and make it insensitive to noise. Instead, we use dropout in an adversarial way, to transform the classifier into a critic sensitive to noise. Compared to previous adversarial feature alignment methods, where the distributions $p ( x )$ are aligned globally, our method aligns target features away from decision boundaries, as illustrated in Fig.1(f). + +![](images/b6f4ca41441b05f1a91aeb791d5664cfbced0e867e90f0899d66085405d66cc1.jpg) +Figure 1: (a-d) An illustration of a deep model trained on simulated source training data failing to segment a real target domain image: (a) shows the target image, (b) is the ground truth segmentation into semantic categories (car, road, etc), (c) is the output of the unadapted source model, (d) is the improved segmentation obtained by our proposed ADR method. (e) Previous distribution matching methods do not consider the source decision boundary when aligning source and target feature points. (f) We propose to use the boundary information to achieve low-density separation of aligned points. + +Our ADR approach has several benefits. First, we train the generator $G$ with feedback from the classifier $C$ , in contrast to existing methods, which use an unrelated critic $D$ . Second, our method is general and straightforward to apply to a variety of domain adaptation problems, such as classification and semantic segmentation. Finally, since ADR is trained to align distributions, it is also applicable to semi-supervised learning and training of generative models, such as Generative Adversarial Networks (GANs) (Goodfellow et al. (2014a)). Through extensive experiments, we demonstrate the benefit of ADR over existing domain adaptation approaches, achieving state-of-the-art results in difficult domain shifts. We also show an application to semi-supervised learning using GANs in appendix. + +# 2 RELATED WORK + +Domain Adaptation. Recent unsupervised domain adaptation (UDA) methods for visual data aim to align the feature distributions of the source and target domains (Sun et al. (2016); Sun & Saenko (2016); Tzeng et al. (2014); Ganin et al. (2016); Long et al. (2015b); Yan et al. (2017); Long et al. (2017)). Such methods are motivated by theoretical results stating that minimizing the divergence between domains will lower the upper bound of the error on target domain (Ben-David et al. (2010)). Many works in deep learning utilize the technique of distribution matching in hidden layers of a network such as a CNN (Tzeng et al. (2014); Ganin et al. (2016); Long et al. (2015b)). However, they measure the domain divergence based on the hidden features of the network without considering the relationship between its decision boundary and the target features, as we do in this paper. + +Low-density Separation. Many semi-supervised learning (SSL) methods utilize the relationship between the decision boundary and unlabeled samples, a technique called low-density separation (Chapelle & Zien (2005); Joachims (1999)). By placing the boundary in the area where the unlabeled samples are sparse, these models aim to obtain discriminative representations. Our method aims to achieve low-density separation for deep domain adaptation and is related to entropy minimization for semi-supervised learning (Grandvalet & Bengio (2005)). (Long et al. (2016)) used entropy minimization in their approach to directly measure how far samples are from a decision boundary by calculating entropy of the classifier’s output. On the other hand, our method tries to achieve low-density separation by slightly moving the boundary and detecting target samples sensitive to the movement. As long as target samples features are robust to the movement, they will be allowed to exist relatively nearby the boundary compared to source samples, as Fig. 1 shows. + +In (Long et al. (2016)) entropy minimization is only a part of the overall approach. To compare our ADR approach to entropy minimization more directly, we use a new baseline method. To our knowledge, though this method has not been proposed by any previous work, it is easily achieved by modifying a method proposed by (Springenberg (2015)). For this baseline, we train a model that generates features to minimize the entropy of the output probability for target samples. The details of the baseline are provided in appendix. In short, the generator tries to minimize the entropy of the target samples, whereas the critic tries to maximize it. The entropy is directly measured by the output of the classifier. This baseline is similar to our approach in that the goal of the method is to achieve low-density separation. + +Dropout. Dropout is a method that prevents deep networks from overfitting (Srivastava et al. (2014)) by randomly dropping units from the neural network during training. Effectively, dropout samples from an exponential number of different thinned networks at training time, which prevents units from co-adapting too much. At test time, predictions are obtained by using the outputs of all neurons. If the thinned networks are able to classify the samples accurately, the full network will as well. In other words, dropout encourages the network to be robust to noise. In our work, we use dropout to regularize the feature generation network $G$ , but in an adversarial way. We train the critic $C$ to be sensitive to the noise caused by dropout and use $C$ to regularize $G$ so that it generates noise-robust features. To our knowledge, this use of dropout is completely different from existing methods. + +# 3 METHOD + +We assume that we have access to a labeled source image $\mathbf { x _ { s } }$ and a corresponding label $y _ { s }$ drawn from a set of labeled source images $\{ X _ { s } , Y _ { s } \}$ , as well as an unlabeled target image $\mathbf { x _ { t } }$ drawn from unlabeled target images $X _ { t }$ . We train a feature generation network $G$ , which takes inputs $\mathbf { x _ { s } }$ or $\mathbf { x _ { t } }$ , and a network $C$ that acts as both the main classifier and the critic. When acting as the classifier, $C$ takes features from $G$ and classifies them into $K$ classes, predicting a $K$ -dimensional vector of logits $\{ l _ { 1 } , l _ { 2 } , l _ { 3 } . . . l _ { K } \}$ . The logits are then converted to class probabilities by applying the softmax function. Namely, the probability that $\mathbf { x }$ is classified into class $j$ is denoted by $\begin{array} { r } { p ( y = j | \mathbf { x } ) = \frac { e x p ( l _ { j } ) } { \sum _ { k = 1 } ^ { K } e x p ( l _ { k } ) } } \end{array}$ . We use the notation $p ( \mathbf { y } \vert \mathbf { x } )$ to denote the $K$ -dimensional probabilistic output for input $\mathbf { x }$ . + +When $C$ is acting as the critic, we want it to detect the feature encodings of target samples near the decision boundary. We propose to make $C$ sensitive to such samples by slightly perturbing its decision boundary and measuring the change in the posterior class probability $p ( \mathbf { y } \vert \mathbf { x } )$ . This change is likely to be largest for samples near the decision boundary. The network $C$ is then trained to increase this change, while the feature generation network $G$ is trained to decrease it. Through this adversarial training, $G$ learns to ‘fool’ the critic and generate target features far away from the decision boundary, thus avoiding ambiguous features. The weights of $G$ can be initialized either by pre-training on some auxiliary dataset (e.g., ImageNet), or with random weights, while $C$ uses random initialization. In the next section, we show how we utilize dropout to perturb the boundary in the critic and measure sensitivity. We then show the training procedure of our method. Finally, we give some intuition behind adversarial dropout and improve our method based on this insight. + +# 3.1 CLASSIFIER SELECTION VIA DROPOUT + +Consider the standard training of a neural network using dropout. For every sample within a minibatch, each node of the network is removed with some probability, effectively selecting a different classifier for every sample during training. We harness this idea in a very simple way. + +We forward input features $G ( \bf x _ { t } )$ to $C$ twice, dropping different nodes each time and obtaining two different output vectors denoted as $C _ { 1 } ( G ( \mathbf { x _ { t } } ) )$ , $\bar { C } _ { 2 } \bar { ( \cal G ( x _ { t } ) ) }$ . In other words, we are selecting two different classifiers $C _ { 1 }$ and $C _ { 2 }$ from $C$ by dropout as in Fig. 2. In the figure, the corresponding posterior probabilities are indicated as $p _ { 1 } ( \mathbf { y } | \mathbf { x _ { t } } )$ , $p _ { 2 } ( \mathbf { y } \vert \mathbf { x _ { t } } )$ , abbreviated as $p _ { 1 }$ and $p _ { 2 }$ in the following discussion. In order to detect the change of predictions near the boundary, the critic tries to increase the difference between the predictions of $C _ { 1 }$ and $C _ { 2 }$ . This difference corresponds to $C$ ’s sensitivity to the noise caused by dropout. + +To measure the sensitivity $d ( p _ { 1 } , p _ { 2 } )$ between the two obtained probabilistic outputs, we use the symmetric Kullback Leibler (KL) divergence. Formally, the divergence is calculated as + +$$ +d ( p _ { 1 } , p _ { 2 } ) = { \frac { 1 } { 2 } } ( D _ { k l } ( p _ { 1 } | p _ { 2 } ) + D _ { k l } ( p _ { 2 } | p _ { 1 } ) ) +$$ + +![](images/5b7992174e2f2c0d5a92732e1d6cc79162abd221b22a4267b1f8758b2b378f90.jpg) +Figure 2: Overview of ADR. Left: We train $G$ , $C$ with classification loss on source and sample a critic consisting of two classifiers using dropout. The critic’s sensitivity is measured as the divergence between the class predictions of $C _ { 1 }$ and $C _ { 2 }$ on the same input. Right: Adversarial training iterates two steps: the critic tries to maximize the sensitivity while the generator tries to minimize it. + +where KL divergence between $p$ and $q$ is denoted as $D _ { k l } ( p | q )$ . + +# 3.2 TRAINING PROCEDURE + +In our approach, $C$ works as both critic and classifier. The following three requirements are imposed by our method: 1) $C$ and $G$ must classify source samples correctly to obtain discriminative features; 2) $C$ should maximize the sensitivity for target samples to detect the samples near the boundary; 3) $G$ should learn to minimize the sensitivity to move target samples away from the boundary. + +The training within the same mini-batch consists of the following three steps. + +Step 1, in this step, $C$ is trained as a classifier. $C$ and $G$ have to classify source samples correctly to obtain discriminative features. Thus, we update both networks’ parameters based on the following standard classification loss. Given source labels $y _ { s }$ and samples $\mathbf { x _ { s } }$ , the objective in this step is + +$$ +\underset { G , C } { \operatorname* { m i n } } L ( X _ { s } , Y _ { s } ) = - \mathbb { E } _ { ( \mathbf { x } _ { s } , y _ { s } ) \sim ( X _ { s } , Y _ { s } ) } \sum _ { k = 1 } ^ { K } \mathbb { 1 } _ { [ k = y _ { s } ] } \log C ( G ( \mathbf { x } _ { \mathbf { s } } ) ) _ { k } +$$ + +$C ( G ( \mathbf { x _ { s } } ) ) _ { k }$ returns the probability that the sample $\mathbf { x _ { s } }$ is assigned to class $k$ + +Step 2, in this step, $C$ is trained as a critic to detect target samples near the boundary. Two classifiers are sampled from $C$ for each target sample using dropout twice to obtain $p _ { 1 }$ and $p _ { 2 }$ . Then, $C$ ’s parameters are updated to maximize the sensitivity as measured by Eq. 1. Since $C$ should learn discriminative features for source samples, in addition to the sensitivity term, we add Eq. 2. We experimentally confirmed that this term is essential to obtain good performance. + +$$ +\operatorname* { m i n } _ { C } L ( X _ { s } , Y _ { s } ) - L _ { a d v } ( X _ { t } ) +$$ + +$$ +L _ { a d v } ( X _ { t } ) = \mathbb { E } _ { \mathbf { x _ { t } } \sim X _ { t } } [ d ( C _ { 1 } ( G ( \mathbf { x _ { t } } ) ) , C _ { 2 } ( G ( \mathbf { x _ { t } } ) ) ) ] +$$ + +$C _ { 1 }$ and $C _ { 2 }$ are sampled from $C$ randomly. + +Step 3, in order to obtain representations where target samples are placed far from the decision boundary, $G$ is trained to minimize sensitivity. Here we do not add the categorical loss for source samples as in Step 2, as the generator is able to obtain discriminative features without it. + +$$ +\operatorname* { m i n } _ { G } L _ { a d v } ( X _ { t } ) +$$ + +We update the parameters of $C$ and $G$ in every step following the defined objectives. We experimentally found it beneficial to repeat Step 3 $n$ times for each mini-batch. + +![](images/e236a8f1f63678aa39e6008db6475416d17c9cf2b19a9b860caab2ab1b9a4cd9.jpg) +Figure 3: (Best viewed in color) Toy Experiment. Top row: Model trained without adaptation. Columns 1-5 show the decision boundary obtained by keeping one neuron in the last hidden layer and removing the rest. Red points are source samples of class one, green points are class two. Black points are target samples. The yellow region indicates where the samples are classified as class one, cyan region class two. We see that the neurons do not learn very diverse features. Column 6 shows the boundary obtained by keeping all 5 neurons. Bottom row: Boundaries learned by the model adapted by our adversarial dropout method. Unlike the top row, here neurons 3,4,5 learn diverse features which result in diverse boundaries. + +# 3.3 INSIGHT AND IMPROVEMENT + +Our ADR approach encourages different neurons of the classifier to learn different characteristics of the input (see Sec. 4.1.) The output is the combination of shared and unshared nodes, therefore, to maximize the sensitivity, the unshared nodes must learn different features of target samples. As learning proceeds, each neuron in $C$ will capture different characteristics. At the same time, to minimize the sensitivity, $G$ learns to extract pure categorical information. If $G$ outputs features which are not related to categorical information, such as texture, slight contrast or difference of color, $C$ will utilize them to maximize sensitivity. + +The trained classifier will be sensitive to the perturbation of targets caused by dropout. We note that our approach is contrary to methods called adversarial example training (Goodfellow et al. (2014b); Miyato et al. (2016)) which train the classifier to be robust to adversarial examples. They utilize input noise which can deceive or change the output of the classifier, and incorporate it to obtain a good classifier. Our ADR method encourages the feature generator to obtain noise-robust target features. However, with regard to the classifier, it is trained to be sensitive to noise. To improve the final accuracy, we learn another classifier $C ^ { \prime }$ that is not trained to be sensitive to the noise. $C ^ { \prime }$ takes features generated by $G$ and is trained with classification loss on source samples. The loss of $C ^ { \prime }$ is not used to update $G$ . We compare the accuracy of $C$ and $C ^ { \prime }$ in experiments on image classification. + +# 4 EXPERIMENTS + +# 4.1 EXPERIMENT ON TOY DATA + +Experimental Setting. In this experiment, we observe the decision boundary obtained by each neuron to demonstrate that ADR encourages the neurons to learn different input characteristics. We use synthetic “two moons” data for this problem. Two dimensional samples from two classes are generated as source samples. Target samples are obtained by rotating the source samples. In our setting, the rotation was set to 30 degrees and data was generated with scikit-learn (Pedregosa et al. (2011)). We train a six-layered fully-connected network; the lower 3 layers are used as feature generator, and upper 3 layers are used as classifier. We used Batch Normalization (Ioffe & Szegedy (2015)) and ReLU as activation function. The number of neurons are [2,5,5] for feature generator, [5,5,2] for classifier. We visualize the boundary obtained from each neuron in the last layer by removing the output of all other neurons. + +Results. We show the learned boundary in Fig. 3. In the baseline model trained only with source samples (top row), two of five neurons do not seem to learn an effective boundary, and three neurons learn a similar boundary. On the other hand, in our method (bottom row), although two neurons do not seem to learn any meaningful boundary, three neurons learn distinctive boundaries, demonstrating greater diversity. Each neuron is trained to be sensitive to the noise caused by target samples. The final decision boundary (rightmost column) classifies most target samples correctly. The accuracy of our proposed method is $96 \%$ whereas the accuracy of the non-adapted model was $84 \%$ . + +![](images/739f2d31aa495e5a9d6c4fd7b45d22559c2abb1868aa853612bc7403b34eaae2.jpg) +Figure 4: Relationship between sensitivity loss on target (blue line), on source (yellow line), and accuracy (red: accuracy of $C ^ { \prime }$ , green: accuracy of $C$ ) during training on digits. + +# 4.2 UNSUPERVISED DOMAIN ADAPTATION FOR CLASSIFICATION + +Experiments on Digits Classification. We evaluate our model on adaptation between digits datasets. We use MNIST (LeCun et al. (1998)), SVHN (Netzer et al. (2011)) and USPS datasets and follow the protocol of unsupervised domain adaptation used by (Tzeng et al. (2017)). To extensively compare our method with previous methods, in adaptation from MNIST to USPS, we applied our method to a different protocol used in Bousmalis et al. (2017). We assume no labeled target samples and use fixed hyper-parameters for all experiments, unlike other works that use a target validation set (Saito et al. (2017)). The number of iterations for Step 3 was fixed at $n = 4$ . We used the same network architecture as in (Tzeng et al. (2017)), but inserted a Batch Normalization layer before the activation layer to stabilize the training. We used Adam (Kingma & Ba (2014)) for optimizer and set the learning rate to $2 . 0 \times 1 0 ^ { - 4 }$ , a value commonly reported in the GAN literature. We compare our approach to several existing methods and to the entropy minimization baseline (ENT) obtained by modifying (Springenberg (2015)). As we mentioned in Section 2, this is a model that generates features to minimize the entropy of the output probability for target samples. Due to space limitations, we provide a detailed explanation of this baseline in the appendix. + +Results in Table 1 demonstrate that ADR obtains better performance than existing methods. In particular, on the challenging adaptation task from SVHN to MNIST, our method achieves much better accuracy than previously reported. Fig. 4 shows the learning curve of each experiment. As sensitivity loss increases, the target accuracy improves. This means that as critic $C$ learns to detect the non-discriminative samples, feature generator $G$ learns to fool it, resulting in improved accuracy. In addition, we can see that the sensitivity of source samples increases too. As mentioned in Sec 3.3, the critic network should learn to capture features which are not very important for classification, such as texture or slight edges, and it seems to also capture such information in source samples. The accuracy of the classifier $C ^ { \prime }$ (denoted by red), which is trained not to be sensitive to the noise, is almost always better than the accuracy of the critic network. In adaptation from SVHN to MNIST (Fig. 5(c)), the accuracy of the critic often suffers as it becomes too sensitive to the noise caused by dropout. On the other hand, the accuracy shown by the red line is stable. Our ENT baseline shows good performance compared to other existing methods. This result indicates the effectiveness of methods based on entropy minimization. In Fig. 5, we compare our proposed method and ENT in terms of entropy of target samples. Our method clearly decreases the entropy, because target samples are moved away from the decision boundary. Yet, its behavior is different from ENT. Interestingly, the entropy is made smaller than ENT in case of adaptation from USPS to MNIST (Fig. 4(a)) though ENT directly minimizes the entropy and our method does not. On the SVHN to MNIST task (Fig. 4(c)), the entropy of ADR is larger than ENT, which indicates that our method places the target samples closer to the decision boundary than ENT does. + +Experiments on Object Classification. We next evaluate our method on fine-tuning a pretrained CNN. We use a new domain adaptation benchmark called the VisDA Challenge (Peng et al. (2017)) which focuses on the challenging task of adapting from synthetic to real images. The source domain consists of 152,409 synthetic 2D images from 12 object classes rendered from 3D models. The validation and test target domains consists of real images, which belong to the same classes. We used the validation domain (55,400 images) as our target domain in an unsupervised domain adaptation setting. + +![](images/177e15de1ac8fd6d27b034896b5372cb923b428390b94b1a14d9cc289b6a1b4f.jpg) +Figure 5: Comparison of entropy of ours (blue line) with ENT (yellow line). The entropy is calculated on target samples by using the output of the classifier. + +Table 1: Results on digits datasets. Please note that $^ \dagger$ means the result obtained using a few labeled target samples for validation. The reported accuracy of our method is obtained from $C ^ { \prime }$ . ENT is our proposed entropy minimization baseline, described in the appendix. MNIST(P1) and MNIST(P2) indicate different experimental settings used in Tzeng et al. (2017) and Bousmalis et al. (2017) respectively. + +
METHODSVHN to MNISTUSPS to MNISTMNIST(P1) to USPSMNIST(P2) to USPS
Source Only67.168.177.078.9
LTN (Sener et al. (2016))78.8-1-
ATDA (Saito et al. (2017))86.2†=1-
DSN (Bousmalis et al. (2016))82.7†91.3†
PixelDA (Bousmalis et al. (2017)1=-95.9†
DANN (Ganin & Lempitsky (2014))73.973.0±2.077.1±1.885.1†
DoC (Tzeng et al. (2014))68.1±0.366.5±3.379.1±0.51
ADDA (Tzeng et al. (2017))76.0±1.890.1±0.889.4±0.2-
CoGAN (Liu & Tuzel (2016))did not converge89.1±0.891.2±0.8=
DTN (Taigman et al. (2016))84.71-
ENT (Our proposed baseline) Ours94.9±4.11 95.0±1.8791.2±1.92 93.1±1.2793.7±0.54 93.2±2.4696.7±1.27 96.1±0.29
+ +We evaluate our model on fine-tuning networks pretrained on ImageNet (Deng et al. (2009)): ResNet101 (He et al. (2016)) and ResNext (Xie et al. (2016)). For the feature generator, we use the pretrained CNN after removing the top fully connected layer. For the classification network, we use a three-layered fully connected network. + +Table 2 shows that our method outperformed other distribution matching methods and our new baseline (ENT) in finetuning both networks by a large margin. ENT did not achieve better performance than existing methods, though improvement over the source only model was observed. Although this method performed well on digits, it does not work as well here, possibly because of the larger shift between very different domains. In the experiment on ResNext, after training $G$ and $C$ , we retrained a classifier $C ^ { ' }$ just on the features generated by $G$ due to GPU memory limitations, and observed improvement in both networks. + +Fig. 6 visualizes the target features obtained by $G$ with the pretrained model, model fine-tuned on source, and our ADR method. While the embedding of the source only model does not separate classes well due to domain shift, we can see clearly improved separation with ADR. + +Image Segmentation experiments. Next, we apply our method to adaptation for semantic image segmentation. Image segmentation is different from classification in that we classify each pixel in the image. To evaluate the performance on segmentation, the synthetic GTA5 (Richter et al. (2016)) dataset is used as source, and real CityScape (Cordts et al. (2016)) dataset is used as target. Previous work tackled this problem by matching distributions of each pixel’s feature in a middle layer of the network (Hoffman et al. (2016)). In this work, we apply ADR by calculating sensitivity between all pixels. The training procedure is exactly the same as in classification experiments. + +We use the ResNet50 pretrained on ImageNet, and utilize an FCN (Long et al. (2015a)) based network architecture. Further, we utilize the more recent Dilated Residual Networks (DRN) 105 layered model (Yu et al. (2017)), which outperforms ResNet50 on a semantic segmentation task. + +Table 2: Results on Visda2017 classification datasets (Peng et al. (2017)). DANN and MMD are distribution alignment methods proposed by (Ganin & Lempitsky (2014)) and (Long et al. (2015b)) respectively. Ours (retrain classifier) means the classifier retrained for our proposed generator as we mentioned in Sec 3.3. Our proposed method shows much better performance than existing methods. + +
Methodgrrrdoraegpaleie 3ueoormorreiltuosiadsareraertrnaaa
Finetuning on ResNet101
Source Only55.153.3 61.959.180.617.979.731.281.026.573.58.552.4
MMD87.163.0 76.542.090.342.985.953.149.736.385.820.761.1
DANN81.977.7 82.844.381.229.565.128.651.954.682.87.857.4
ENT80.375.5 75.848.377.927.369.740.246.546.679.316.057.0
Ours94.151.3 83.272.288.768.892.870.277.263.682.930.372.9
Ours (retrained classifier)94.248.5 84.072.990.174.292.672.580.861.882.228.873.5
Finetuning on ResNeXt
Source Only74.3 37.6 61.8 68.2 59.510.7 81.412.8 61.6 26.070.05.647.4
MMD90.751.1 64.865.689.946.591.940.181.524.190.028.563.7
DANN86.066.3 60.8 56.079.853.782.325.258.231.089.326.159.6
ENT94.781.0 57.046.673.949.069.231.040.534.387.315.156.6
Ours86.3 71.987.678.193.084.894.578.991.858.977.726.777.5
Ours (retrained classifier)89.270.9 85.782.093.786.7 93.372.389.553.086.728.377.6
+ +![](images/f85e9efe625959ba93fdcfd4024851f548acbeebd038701c1fb299173a9f68e4.jpg) +Figure 6: Visualization of VisDA-classification (12 classes) target features using T-SNE (Maaten & Hinton (2008)): (a) features obtained by the Imagenet-pretrained ResNext model not finetuned on VisDA; (b) features from the ResNext model fine-tuned only on VisDA source samples without any adaptation; (c) features obtained by ResNext adapted by our ADR method. + +For the feature generator, we use the pretrained network without fully-connected layers. For the classifier, we use a fully-convolutional network with dropout layers. Due to limited memory, the batch size is set to 1. We include details of the network architecture in appendix. For comparison, we train a domain classifier based model for our network (DANN). We build a domain classifier network for the features of each pixel following (Hoffman et al. (2016)). + +In Table 3, we show the qualitative comparison with existing methods. ADR clearly improves mean IoU (Intersection-over-Union) compared to the source-only and competing models, beating state-ofthe-art by a large margin. When we apply ADR to DRN, the accuracy improves much more than for ResNet50, and is 12.4 points higher than the model trained only on GTA5 source samples. This is likely because ADR exploits the strong representation of the pretrained DRN network. Although we implemented ENT in this setting, the accuracy was much worse than the Source Only model with a mIoU of 15.0 in training ResNet50. The ENT method does not seem to work well on syntheticto-real shifts. Finally, we illustrate our method’s improvement on example input images, ground truth labels, images segmented by the Source Only model and our method in Fig. 7. While the Source Only model seems to suffer from domain shift, ADR generates a clean segmentation. These experiments demonstrate the effectiveness of ADR on semantic segmentation. + +# 5 CONCLUSION + +In this paper, we introduced a novel approach for aligning deep representation, Adversarial Dropout Regularization, which learns to generate discriminative features for the target domain. The method consists of a critic network that can detect samples near the task decision boundary and a feature generator that fools the critic. Our approach is general, applies to a variety of tasks, and does not require target domain labels. In extensive domain adaptation experiments, our method outperformed baseline methods, including entropy minimization, and achieved state-of-the-art results on three datasets. + +
NetworkMethodxeeepreBuiplng8irilenuosradMur0mrrqeemIoU
VGG-16FCN Wild70.432.462.114.95.410.914.22.779.221.364.644.14.270.48.07.30.03.50.027.1
ResNet50Source OnlyDANNOurs64.572.487.824.919.115.673.714.83.920.62.59.39.718.017.319.015.913.119.90.05.57.774.916.472.042.30.039.58.612.117.513.49.927.70.00.01.80.05.89.70.00.00.025.326.433.3
73.077.471.082.020.131.562.274.332.643.55.29.068.477.8
DRN-105Source OnlyOurs25.986.210.910.150.578.83.320.112.27.425.428.613.015.078.384.57.338.963.952.17.966.35.229.67.832.70.90.213.719.20.78.324.937.3
21.226.581.154.613.680.8
+ +![](images/2a431aecdd2cbdb38788dec71565dbda6f38a671d3881b7e8cbaa1c5630bfb5c.jpg) +Table 3: Results on adaptation from $\mathrm { G T A } 5 $ Cityscapes. DANN and FCN Wild denote methods proposed by (Ganin & Lempitsky (2014)) and (Hoffman et al. (2016) respectively. +Figure 7: Comparison of results on two real images segmented by ResNet50. Clockwise from upper left: Original image; Ground truth; Segmented image before adaptation; Segmented image after adaptation by our method. + +We also show how to apply our method to train Generative Adversarial Networks for semisupervised learning in the appendix. + +# 6 ACKNOWLEDGEMENTS + +We would like to thank Trevor Darrell for his great advice on our paper. The first author’s stay at Boston University was partially supported by a scholarship from the University of Tokyo. The work was partially funded by the ImPACT Program of the Council for Science, Technology, and Innovation (Cabinet Office, Government of Japan), and was partially supported by CREST, JST. Saenko was supported by IARPA and NSF grants CCF-1723379 and IIS-1724237. + +# REFERENCES + +Shai Ben-David, John Blitzer, Koby Crammer, Alex Kulesza, Fernando Pereira, and Jennifer Wortman Vaughan. A theory of learning from different domains. Machine learning, 79(1-2):151–175, 2010. + +Konstantinos Bousmalis, George Trigeorgis, Nathan Silberman, Dilip Krishnan, and Dumitru Erhan. Domain separation networks. In NIPS, 2016. + +Konstantinos Bousmalis, Nathan Silberman, David Dohan, Dumitru Erhan, and Dilip Krishnan. Unsupervised pixel-level domain adaptation with generative adversarial networks. In CVPR, 2017. + +Olivier Chapelle and Alexander Zien. Semi-supervised classification by low density separation. In AISTATS, 2005. + +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. + +Zihang Dai, Zhilin Yang, Fan Yang, William W Cohen, and Ruslan Salakhutdinov. Good semisupervised learning that requires a bad gan. arXiv preprint arXiv:1705.09783, 2017. + +Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A large-scale hierarchical image database. In CVPR, 2009. + +Vincent Dumoulin, Ishmael Belghazi, Ben Poole, Alex Lamb, Martin Arjovsky, Olivier Mastropietro, and Aaron Courville. Adversarially learned inference. arXiv preprint arXiv:1606.00704, 2016. + +Yaroslav Ganin and Victor Lempitsky. Unsupervised domain adaptation by backpropagation. In ICML, 2014. + +Yaroslav Ganin, Evgeniya Ustinova, Hana Ajakan, Pascal Germain, Hugo Larochelle, Franc¸ois Laviolette, Mario Marchand, and Victor Lempitsky. Domain-adversarial training of neural networks. JMLR, 17(59):1–35, 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, 2014a. + +Ian J Goodfellow, Jonathon Shlens, and Christian Szegedy. Explaining and harnessing adversarial examples. In ICLR, 2014b. + +Yves Grandvalet and Yoshua Bengio. Semi-supervised learning by entropy minimization. In NIPS, 2005. + +Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In CVPR, 2016. + +Judy Hoffman, Dequan Wang, Fisher Yu, and Trevor Darrell. Fcns in the wild: Pixel-level adversarial and constraint-based adaptation. arXiv preprint arXiv:1612.02649, 2016. + +Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by reducing internal covariate shift. In ICML, 2015. + +Thorsten Joachims. Transductive inference for text classification using support vector machines. In ICML, 1999. + +Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980, 2014. + +Yann LeCun, Leon Bottou, Yoshua Bengio, and Patrick Haffner. Gradient-based learning applied to ´ document recognition. Proceedings of the IEEE, 86(11):2278–2324, 1998. + +Ming-Yu Liu and Oncel Tuzel. Coupled generative adversarial networks. In NIPS, 2016. + +Jonathan Long, Evan Shelhamer, and Trevor Darrell. Fully convolutional networks for semantic segmentation. In CVPR, 2015a. + +Mingsheng Long, Yue Cao, Jianmin Wang, and Michael I Jordan. Learning transferable features with deep adaptation networks. In ICML, 2015b. + +Mingsheng Long, Han Zhu, Jianmin Wang, and Michael I Jordan. Unsupervised domain adaptation with residual transfer networks. In NIPS, 2016. + +Mingsheng Long, Jianmin Wang, and Michael I Jordan. Deep transfer learning with joint adaptation networks. In ICML, 2017. + +Lars Maaløe, Casper Kaae Sønderby, Søren Kaae Sønderby, and Ole Winther. Auxiliary deep generative models. arXiv preprint arXiv:1602.05473, 2016. + +Laurens van der Maaten and Geoffrey Hinton. Visualizing data using t-sne. JMLR, 9(Nov):2579– 2605, 2008. + +Takeru Miyato, Shin-ichi Maeda, Masanori Koyama, Ken Nakae, and Shin Ishii. Distributional smoothing with virtual adversarial training. 2016. + +Yuval Netzer, Tao Wang, Adam Coates, Alessandro Bissacco, Bo Wu, and Andrew Y Ng. Reading digits in natural images with unsupervised feature learning. In NIPS workshop on deep learning and unsupervised feature learning, 2011. + +Fabian Pedregosa, Ga”el Varoquaux, Alexandre Gramfort, Vincent Michel, Bertrand Thirion, Olivier Grisel, Mathieu Blondel, Peter Prettenhofer, Ron Weiss, Vincent Dubourg, et al. Scikitlearn: Machine learning in python. JMLR, 12(10):2825–2830, 2011. + +Xingchao Peng, Ben Usman, Neela Kaushik, Judy Hoffman, Dequan Wang, and Kate Saenko. Visda: The visual domain adaptation challenge. arXiv preprint arXiv:1710.06924, 2017. + +Stephan R Richter, Vibhav Vineet, Stefan Roth, and Vladlen Koltun. Playing for data: Ground truth from computer games. In ECCV, 2016. + +Kuniaki Saito, Yoshitaka Ushiku, and Tatsuya Harada. Asymmetric tri-training for unsupervised domain adaptation. In ICML, 2017. + +Tim Salimans, Ian Goodfellow, Wojciech Zaremba, Vicki Cheung, Alec Radford, and Xi Chen. Improved techniques for training gans. In NIPS, 2016. + +Ozan Sener, Hyun Oh Song, Ashutosh Saxena, and Silvio Savarese. Learning transferrable representations for unsupervised domain adaptation. In NIPS, 2016. + +Jost Tobias Springenberg. Unsupervised and semi-supervised learning with categorical generative adversarial networks. arXiv preprint arXiv:1511.06390, 2015. + +Nitish Srivastava, Geoffrey E Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov. Dropout: a simple way to prevent neural networks from overfitting. JMLR, 15(1):1929–1958, 2014. + +Baochen Sun and Kate Saenko. Deep coral: Correlation alignment for deep domain adaptation. In ECCV 2016 Workshops, 2016. + +Baochen Sun, Jiashi Feng, and Kate Saenko. Return of frustratingly easy domain adaptation. In AAAI, 2016. + +Yaniv Taigman, Adam Polyak, and Lior Wolf. Unsupervised cross-domain image generation. In ICLR, 2016. + +Eric Tzeng, Judy Hoffman, Ning Zhang, Kate Saenko, and Trevor Darrell. Deep domain confusion: Maximizing for domain invariance. arXiv preprint arXiv:1412.3474, 2014. + +Eric Tzeng, Judy Hoffman, Kate Saenko, and Trevor Darrell. Adversarial discriminative domain adaptation. In CVPR, 2017. + +Saining Xie, Ross Girshick, Piotr Dollar, Zhuowen Tu, and Kaiming He. Aggregated residual trans- ´ formations for deep neural networks. arXiv preprint arXiv:1611.05431, 2016. + +Hongliang Yan, Yukang Ding, Peihua Li, Qilong Wang, Yong Xu, and Wangmeng Zuo. Mind the class weight bias: Weighted maximum mean discrepancy for unsupervised domain adaptation. In CVPR, 2017. + +Fisher Yu, Vladlen Koltun, and Thomas Funkhouser. Dilated residual networks. In CVPR, 2017. + +# APPENDIX + +# A ENTROPY BASED METHOD FOR DOMAIN ADAPTATION (ENT) + +Our method aims to move target samples away from the decision boundary. Some techniques used in training Generative Adversarial Networks can be applied to achieve our goal too. (Springenberg (2015); Salimans et al. (2016)) used small number of labeled samples to train critic. Critic is trained to classify real samples into $K$ classes. They also trained critic to move unlabeled real images away from the boundary by minimizing entropy of the critic’s output. Generated fake images are moved near the boundary by maximizing the entropy. On the other hand, generator is trained to generate fake images which should be placed away from the boundary. This kind of method can be easily applied to domain adaptation problem. We would like to describe the method along with our problem setting. + +Similar to our method, we have critic networks $C$ and generator $G$ . $C$ classifies samples into $K$ class. $C$ is trained to maximize the entropy of target samples, which encourages to move the target samples near the boundary. Then, $G$ is trained to minimize the entropy of them. Thus, $G$ tries to move target samples away from the boundary. + +The only difference from our method is that we used entropy term for adversarial training loss. That is, in this method, we replace our sensitivity term $d ( p _ { 1 } , p _ { 2 } )$ in Eq. 4 with entropy of the classifier output. The adversarial loss for this baseline method is a following one. + +$$ +\begin{array} { r c l } { { { \cal L } _ { a d v } ( X _ { t } ) } } & { { = } } & { { \displaystyle \mathbb { E } _ { { \mathbf { x _ { t } } } \sim X _ { t } } [ H [ p ( \mathbf { y } | { \mathbf { x _ { t } } } ) ] } } \\ { { { \cal H } [ p ( \mathbf { y } | { \mathbf { x _ { t } } } ) ] } } & { { = } } & { { \displaystyle - \sum _ { k = 1 } ^ { K } p ( y = k | { \mathbf { x _ { t } } } ) \log p ( y = k | { \mathbf { x _ { t } } } ) } } \end{array} +$$ + +$$ +H [ p ( y | x ) ] = - \sum _ { k = 1 } ^ { K } p ( y = k | x ) \log p ( y = k | x ) +$$ + +The hyper-parameter $n$ , how many times we update $G$ for adversarial loss in one mini-batch, is set as $n = 4$ . Experimentally, it worked well for all settings. + +# B DIGITS CLASSIFICATION TRAINING DETAIL + +We follow the protocol used in (Tzeng et al. (2017)). For adaptation from SVHN to MNIST, we used standard training splits of each datasets as training data. For evaluation, we used test splits of MNIST. For the adaptation between MNIST and USPS (P1), we sampled 2000 images from MNIST and 1800 images from USPS. For the adaptation between MNIST and USPS (P2), we used all training images of MNIST and USPS following Bousmalis et al. (2017). In these experiments, we composed the mini-batch half from source and half from target samples. The batch-size was set as 128 for both source and target. We report the score after repeating Step $1 { \sim } 3$ (please see Sec 3.2) 20000 times. For our baseline, ENT, we used the same network architecture and the same hyper-parameters as used in our proposed method. + +# C OBJECT CLASSIFICATION TRAINING DETAIL + +In this experiment, SGD with learning rate $1 . 0 \times 1 0 ^ { - 3 }$ is used to optimize the parameters. For the finetuning of ResNet101, we set batch-size as 32. Due to the limit of GPU memory, we set it as 24 in finetuning ResNext model. We report the score after 20 epochs training. In order to train MMD model, we use 5 RBF kernels with the following standard deviation parameters: + +$$ +\sigma = [ 0 . 1 , 0 . 0 5 , 0 . 0 1 , 0 . 0 0 0 1 , 0 . 0 0 0 0 1 ] +$$ + +We changed the number of the kernels and their parameters, but we could not observe significant performance difference. We report the performance after 5 epochs. We could not see any improvement after the epoch. + +To train a model (Ganin & Lempitsky (2014)), we used two-layered domain classification networks. Experimentally, we did not see any improvement when the network architecture is changed. According to the original method (Ganin $\&$ Lempitsky (2014)), learning rate is decreased every iteration. However, in our experiment, we could not see improvement, thus, we fixed learning rate $\mathrm { i . 0 \times 1 0 ^ { - 3 } }$ . We report the accuracy after 1 epoch. The accuracy dropped significantly after the first epoch. We assume this is due to the large domain difference between synthetic and real images. + +![](images/91334547d8f045bbc50bad32d13e84fbdd9717e2bd91e1f11d2951fede231eb5.jpg) +Figure 9: Example of results on segmentation experiments performed by DRN-105. From top to bottom, Original image; Ground truth; Segmented image before adaptation; Segmented image after adaptation by our method. + +For our new baseline, ENT, we used the same hyper-parameter as we used for our proposed method. Since the accuracy of ENT drops significantly after around 5 epochs, we report the accuracy after 5 epoch updates. + +# D SEGMENTATION EXPERIMENTS + +We modified FCN Long et al. (2015a) architecture suitable for ResNet structure. The features from ResBlock $2 { \sim } 4$ and the first convolution layer and maxpooling layer are used in our implementation. In Fig. 8, we show how we integrated the features of each layers. We regard the layers of ResNet50 as generator and rest of the networks, namely convolution and upsampling layers as a critic network. The input images were resized to $5 1 2 \mathrm { x } 1 0 2 4$ due to the limit of GPU memory. For the same reason, the batchsize was set to one. In Fig. 9, we show the example of segmented images by DRN-105. The images are cleanly segmented by our proposed method. + +![](images/239b4a962924dc544fc56d44223b3182af3fbba803795fe928439774dffc489c.jpg) +Figure 8: Overview of architecture for semantic segmentation + +# E SEMI-SUPERVISED LEARNING USING GANS + +In this section, we demonstrate how to apply our method in training a Generative Adversarial Network (GAN) applied to semi-supervised learning. We follow the method proposed by (Springenberg (2015); Salimans et al. (2016)), who use a $K$ -class classification network as a critic to train a GAN in the semi-supervised setting. + +Approach. In contrast to the domain adaptation setting, here $G$ tries to generate images which fool the critic $C$ . Also, in this setting, we are given labeled and unlabeled real images from the same domain. Then, we train the critic to classify labeled images correctly and to move unlabeled images far from the decision boundary. To achieve this, we propose to train the critic with the following objective: + +$$ +\operatorname* { m i n } _ { C } L _ { C } = L ( X _ { L } , Y _ { L } ) + L _ { a d v } ( X _ { u } ) - L _ { a d v } ( X _ { g } ) - H [ \frac { 1 } { M } \sum _ { i = 1 } ^ { M } p ( y | x _ { u } { } ^ { i } , C ) ] +$$ + +$$ +L _ { a d v } ( X _ { u } ) = \mathbb { E } _ { \mathbf { x _ { u } } \sim X _ { u } } [ d ( C _ { 1 } ( G ( \mathbf { x _ { u } } ) ) , C _ { 2 } ( G ( \mathbf { x _ { u } } ) ) ) ] +$$ + +![](images/63364abe673b063e24a800150d6aed5d16f2ac6fd54204e6ef2d434abc5d60e1.jpg) +Figure 10: Examples of generated images. + +
SVHN (% errors)CIFAR (% errors)
Labeled Only SDGM (Maalge et al. (2016)16.61 ± 0.24
CatGAN (Springenberg (2015))=19.58±0.46
ALI (Dumoulin et al. (2016))7.42±0.6517.99±1.62
ImpGAN (Salimans et al. (2016))8.11±1.318.63±2.32
Ours6.26±1.0519.63±0.37
+ +Table 4: Comparison with state-of-the-art methods on two benchmark datasets. Only methods without data augmentation are included. We used the same critic architecture as used in ImpGAN. + +$$ +L _ { a d v } ( X _ { g } ) = \mathbb { E } _ { { \mathbf { x } } _ { \mathbf { g } } \sim X _ { G } } [ d ( C _ { 1 } ( G ( { \mathbf { x } } _ { \mathbf { g } } ) ) , C _ { 2 } ( G ( { \mathbf { x } } _ { \mathbf { g } } ) ) ) ] +$$ + +where $X _ { L }$ denotes the subset of labeled samples, $X _ { u }$ denotes unlabeled ones and $X _ { g }$ denotes images generated by $G$ and $H$ denotes entropy as Eq.6 shows. The critic is trained to minimize the loss on labeled samples in the first term. Since unlabeled images should be far away from the decision boundary and should be distributed uniformly among the classes, we add the second and fourth term. The third term encourages the critic to detect fake images generated near the boundary. + +The objective of $G$ is as follows, + +$$ +\operatorname* { m i n } _ { G } L _ { a d v } ( X _ { g } ) + | | \mathbb { E } _ { x _ { g } \sim X _ { g } } f ( \mathbf { x _ { g } } ) - \mathbb { E } _ { \mathbf { x _ { u } } \sim X _ { u } } f ( \mathbf { x _ { u } } ) | | ^ { 2 } +$$ + +where the second term encourages generated images to be similar to real images, which is known to be effective to stabilize the training. The first term encourages the generator to create fake images which should be placed far away from the boundary. Such images should be similar to real images because they are likely to be assigned to some class with high probability. Here, we update $C$ and $G$ same number of times. + +Experiment. We evaluate our proposed GAN training method by using SVHN and CIFAR10 datasets, using the critic network architecture from (Salimans et al. (2016)). We set the batch size as 100 and used Adam with learning rate $2 . 0 \times 1 . 0 ^ { - 4 }$ for optimizer. After the conv6 layer of the critic, we constructed a classifier which was not concerned with adversarial learning process. + +In the experiment on SVHN, we replaced Weight Normalization with Batch Normalization for $C$ . Also, in the experiment on CIFAR10, we construct a classifier from a middle layer of the critic, which is not incorporated into the adversarial training step. This is motivated by the insight that the critic in our method is trained to be too sensitive to the dropout noise as we explained in Sec 3.3. + +Results. From Fig. 10(a), we can see that ADR seems to generate realistic SVHN images. Some images are significantly blurred, but most of the images are clear and diverse. As for generated CIFAR10 images, they do not seem as realistic, but some objects appear in most images. In Table 4, we can see that the accuracy of the critic trained by our method has better performance than other models for SVHN. For CIFAR10, the accuracy was slightly worse than other state-of-the-art methods. We conclude that, despite its clear advantage on the domain adaptation tasks, our method produces mixed results on the SSL tasks. It could still be useful for SSL, however, it needs further exploration to improve the accuracy. For example, in Eq. 6, we propose to maximize the entropy of the marginal class distribution of the unlabeled real images, as well as forcing them to be far from the boundary. However, these objectives may contradict each other, which may in turn degrade the performance. In late-breaking results, Dai et al. (2017) theoretically showed that just generating fake images that are far from decision boundaries does not help to improve accuracy in training GANs in the setting of SSL. Further improvement of our SSL approach based on these results is an interesting direction for future work. \ No newline at end of file diff --git a/parse/train/HJIoJWZCZ/HJIoJWZCZ_content_list.json b/parse/train/HJIoJWZCZ/HJIoJWZCZ_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..05e27c858077c6967429b3b32e08c83ff9d68c69 --- /dev/null +++ b/parse/train/HJIoJWZCZ/HJIoJWZCZ_content_list.json @@ -0,0 +1,1808 @@ +[ + { + "type": "text", + "text": "ADVERSARIAL DROPOUT REGULARIZATION ", + "text_level": 1, + "bbox": [ + 176, + 98, + 705, + 122 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Kuniaki Saito1, Yoshitaka Ushiku1, Tatsuya Harada1,2, and Kate Saenko3 ", + "bbox": [ + 258, + 150, + 736, + 166 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1The University of Tokyo, 2RIKEN, 3Boston University {k-saito,ushiku,harada}@mi.t.u-tokyo.ac.jp, saenko@bu.edu ", + "bbox": [ + 230, + 176, + 771, + 207 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 241, + 544, + 256 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "We present a domain adaptation method for transferring neural representations from label-rich source domains to unlabeled target domains. Recent adversarial methods proposed for this task learn to align features across domains by “fooling” a special domain classifier network. However, a drawback of this approach is that the domain classifier simply labels the generated features as in-domain or not, without considering the boundaries between classes. This means that ambiguous target features can be generated near class boundaries, reducing target classification accuracy. We propose a novel approach, Adversarial Dropout Regularization (ADR), which encourages the generator to output more discriminative features for the target domain. Our key idea is to replace the traditional domain critic with a critic that detects non-discriminative features by using dropout on the classifier network. The generator then learns to avoid these areas of the feature space and thus creates better features. We apply our ADR approach to the problem of unsupervised domain adaptation for image classification and semantic segmentation tasks, and demonstrate significant improvements over the state of the art. ", + "bbox": [ + 233, + 272, + 764, + 479 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 506, + 336, + 522 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Transferring knowledge learned by deep neural networks from label-rich domains to new target domains is a challenging problem, especially when the source and target input distributions have different characteristics. Such domain shifts occurs in many practical applications. For example, while simulated driving images rendered by games provide a rich source of labeled data for semantic segmentation Richter et al. (2016), deep models trained on such source data do not transfer well to real target domains (Fig. 1(a-d)). When target-domain labels are unavailable for fine-tuning, unsupervised domain adaptation must be applied to improve the source model. ", + "bbox": [ + 174, + 526, + 825, + 625 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Recent methods for unsupervised domain adaptation attempt to reduce the discrepancy between the source and target features via adversarial learning (Tzeng et al. (2014); Ganin $\\&$ Lempitsky (2014)). They divide the base network into a feature encoder $G$ and classifier $C$ , and add a separate domain classifier (critic) network $D$ . The critic takes the features generated by $G$ and labels them as either source- or target-domain. The encoder $G$ is then trained with an additional adversarial loss that maximizes $D$ ’s mistakes and thus aligns features across domains. ", + "bbox": [ + 174, + 631, + 823, + 714 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "However, a major drawback of this approach is that the critic simply predicts the domain label of the generated point and does not consider category information. Thus the generator may create features that look like they came from the right domain, but are not discriminative. In particular, it can generate points close to class boundaries, as shown in Fig. 1(e), which are likely to be misclassified by the source model. We argue that to achieve good performance on the target data, the adaptation model must take the decision boundaries between classes into account while aligning features across domains (Fig. 1(f)). Moreover, since our setting is unsupervised adaptation, this must be accomplished without labels on target data. ", + "bbox": [ + 174, + 722, + 825, + 833 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "In this paper, we propose a novel adversarial alignment technique that overcomes the above limitation and preserves class boundaries. We make the following observation: if the critic could detect points near the decision boundary, then the generator would have to avoid these areas of the feature space in order to fool the critic. Thus the critic would force the generator to create more discriminative features. How can we obtain such a critic? If we alter the boundary of the classifier $C$ slightly and measure the change in the posterior class probability $p ( y | x )$ , where $y$ and $x$ denote class and input respectively, then samples near the decision boundary are likely to have the largest change. In fact, this posterior discrepancy is inversely proportional to the distance from the class boundary. We thus propose to maximize this posterior discrepancy to turn $C$ into a critic sensitive to nondiscriminative points. We call this technique Adversarial Dropout Regularization. Here, dropout is not used in the standard way, which is to regularize the main classifier and make it insensitive to noise. Instead, we use dropout in an adversarial way, to transform the classifier into a critic sensitive to noise. Compared to previous adversarial feature alignment methods, where the distributions $p ( x )$ are aligned globally, our method aligns target features away from decision boundaries, as illustrated in Fig.1(f). ", + "bbox": [ + 174, + 840, + 823, + 924 + ], + "page_idx": 0 + }, + { + "type": "image", + "img_path": "images/b6f4ca41441b05f1a91aeb791d5664cfbced0e867e90f0899d66085405d66cc1.jpg", + "image_caption": [ + "Figure 1: (a-d) An illustration of a deep model trained on simulated source training data failing to segment a real target domain image: (a) shows the target image, (b) is the ground truth segmentation into semantic categories (car, road, etc), (c) is the output of the unadapted source model, (d) is the improved segmentation obtained by our proposed ADR method. (e) Previous distribution matching methods do not consider the source decision boundary when aligning source and target feature points. (f) We propose to use the boundary information to achieve low-density separation of aligned points. " + ], + "image_footnote": [], + "bbox": [ + 173, + 99, + 823, + 212 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 335, + 825, + 462 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Our ADR approach has several benefits. First, we train the generator $G$ with feedback from the classifier $C$ , in contrast to existing methods, which use an unrelated critic $D$ . Second, our method is general and straightforward to apply to a variety of domain adaptation problems, such as classification and semantic segmentation. Finally, since ADR is trained to align distributions, it is also applicable to semi-supervised learning and training of generative models, such as Generative Adversarial Networks (GANs) (Goodfellow et al. (2014a)). Through extensive experiments, we demonstrate the benefit of ADR over existing domain adaptation approaches, achieving state-of-the-art results in difficult domain shifts. We also show an application to semi-supervised learning using GANs in appendix. ", + "bbox": [ + 173, + 468, + 825, + 593 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 RELATED WORK ", + "text_level": 1, + "bbox": [ + 176, + 616, + 344, + 632 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Domain Adaptation. Recent unsupervised domain adaptation (UDA) methods for visual data aim to align the feature distributions of the source and target domains (Sun et al. (2016); Sun & Saenko (2016); Tzeng et al. (2014); Ganin et al. (2016); Long et al. (2015b); Yan et al. (2017); Long et al. (2017)). Such methods are motivated by theoretical results stating that minimizing the divergence between domains will lower the upper bound of the error on target domain (Ben-David et al. (2010)). Many works in deep learning utilize the technique of distribution matching in hidden layers of a network such as a CNN (Tzeng et al. (2014); Ganin et al. (2016); Long et al. (2015b)). However, they measure the domain divergence based on the hidden features of the network without considering the relationship between its decision boundary and the target features, as we do in this paper. ", + "bbox": [ + 173, + 638, + 825, + 763 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Low-density Separation. Many semi-supervised learning (SSL) methods utilize the relationship between the decision boundary and unlabeled samples, a technique called low-density separation (Chapelle & Zien (2005); Joachims (1999)). By placing the boundary in the area where the unlabeled samples are sparse, these models aim to obtain discriminative representations. Our method aims to achieve low-density separation for deep domain adaptation and is related to entropy minimization for semi-supervised learning (Grandvalet & Bengio (2005)). (Long et al. (2016)) used entropy minimization in their approach to directly measure how far samples are from a decision boundary by calculating entropy of the classifier’s output. On the other hand, our method tries to achieve low-density separation by slightly moving the boundary and detecting target samples sensitive to the movement. As long as target samples features are robust to the movement, they will be allowed to exist relatively nearby the boundary compared to source samples, as Fig. 1 shows. ", + "bbox": [ + 174, + 771, + 825, + 924 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In (Long et al. (2016)) entropy minimization is only a part of the overall approach. To compare our ADR approach to entropy minimization more directly, we use a new baseline method. To our knowledge, though this method has not been proposed by any previous work, it is easily achieved by modifying a method proposed by (Springenberg (2015)). For this baseline, we train a model that generates features to minimize the entropy of the output probability for target samples. The details of the baseline are provided in appendix. In short, the generator tries to minimize the entropy of the target samples, whereas the critic tries to maximize it. The entropy is directly measured by the output of the classifier. This baseline is similar to our approach in that the goal of the method is to achieve low-density separation. ", + "bbox": [ + 173, + 103, + 825, + 229 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Dropout. Dropout is a method that prevents deep networks from overfitting (Srivastava et al. (2014)) by randomly dropping units from the neural network during training. Effectively, dropout samples from an exponential number of different thinned networks at training time, which prevents units from co-adapting too much. At test time, predictions are obtained by using the outputs of all neurons. If the thinned networks are able to classify the samples accurately, the full network will as well. In other words, dropout encourages the network to be robust to noise. In our work, we use dropout to regularize the feature generation network $G$ , but in an adversarial way. We train the critic $C$ to be sensitive to the noise caused by dropout and use $C$ to regularize $G$ so that it generates noise-robust features. To our knowledge, this use of dropout is completely different from existing methods. ", + "bbox": [ + 174, + 236, + 825, + 361 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 METHOD ", + "text_level": 1, + "bbox": [ + 174, + 381, + 282, + 396 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We assume that we have access to a labeled source image $\\mathbf { x _ { s } }$ and a corresponding label $y _ { s }$ drawn from a set of labeled source images $\\{ X _ { s } , Y _ { s } \\}$ , as well as an unlabeled target image $\\mathbf { x _ { t } }$ drawn from unlabeled target images $X _ { t }$ . We train a feature generation network $G$ , which takes inputs $\\mathbf { x _ { s } }$ or $\\mathbf { x _ { t } }$ , and a network $C$ that acts as both the main classifier and the critic. When acting as the classifier, $C$ takes features from $G$ and classifies them into $K$ classes, predicting a $K$ -dimensional vector of logits $\\{ l _ { 1 } , l _ { 2 } , l _ { 3 } . . . l _ { K } \\}$ . The logits are then converted to class probabilities by applying the softmax function. Namely, the probability that $\\mathbf { x }$ is classified into class $j$ is denoted by $\\begin{array} { r } { p ( y = j | \\mathbf { x } ) = \\frac { e x p ( l _ { j } ) } { \\sum _ { k = 1 } ^ { K } e x p ( l _ { k } ) } } \\end{array}$ . We use the notation $p ( \\mathbf { y } \\vert \\mathbf { x } )$ to denote the $K$ -dimensional probabilistic output for input $\\mathbf { x }$ . ", + "bbox": [ + 173, + 401, + 825, + 522 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "When $C$ is acting as the critic, we want it to detect the feature encodings of target samples near the decision boundary. We propose to make $C$ sensitive to such samples by slightly perturbing its decision boundary and measuring the change in the posterior class probability $p ( \\mathbf { y } \\vert \\mathbf { x } )$ . This change is likely to be largest for samples near the decision boundary. The network $C$ is then trained to increase this change, while the feature generation network $G$ is trained to decrease it. Through this adversarial training, $G$ learns to ‘fool’ the critic and generate target features far away from the decision boundary, thus avoiding ambiguous features. The weights of $G$ can be initialized either by pre-training on some auxiliary dataset (e.g., ImageNet), or with random weights, while $C$ uses random initialization. In the next section, we show how we utilize dropout to perturb the boundary in the critic and measure sensitivity. We then show the training procedure of our method. Finally, we give some intuition behind adversarial dropout and improve our method based on this insight. ", + "bbox": [ + 173, + 529, + 825, + 680 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3.1 CLASSIFIER SELECTION VIA DROPOUT ", + "text_level": 1, + "bbox": [ + 176, + 698, + 483, + 712 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Consider the standard training of a neural network using dropout. For every sample within a minibatch, each node of the network is removed with some probability, effectively selecting a different classifier for every sample during training. We harness this idea in a very simple way. ", + "bbox": [ + 176, + 713, + 823, + 755 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We forward input features $G ( \\bf x _ { t } )$ to $C$ twice, dropping different nodes each time and obtaining two different output vectors denoted as $C _ { 1 } ( G ( \\mathbf { x _ { t } } ) )$ , $\\bar { C } _ { 2 } \\bar { ( \\cal G ( x _ { t } ) ) }$ . In other words, we are selecting two different classifiers $C _ { 1 }$ and $C _ { 2 }$ from $C$ by dropout as in Fig. 2. In the figure, the corresponding posterior probabilities are indicated as $p _ { 1 } ( \\mathbf { y } | \\mathbf { x _ { t } } )$ , $p _ { 2 } ( \\mathbf { y } \\vert \\mathbf { x _ { t } } )$ , abbreviated as $p _ { 1 }$ and $p _ { 2 }$ in the following discussion. In order to detect the change of predictions near the boundary, the critic tries to increase the difference between the predictions of $C _ { 1 }$ and $C _ { 2 }$ . This difference corresponds to $C$ ’s sensitivity to the noise caused by dropout. ", + "bbox": [ + 174, + 761, + 825, + 859 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "To measure the sensitivity $d ( p _ { 1 } , p _ { 2 } )$ between the two obtained probabilistic outputs, we use the symmetric Kullback Leibler (KL) divergence. Formally, the divergence is calculated as ", + "bbox": [ + 174, + 866, + 821, + 895 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/1a8da715d2418ce484565bf6a1b5fd22b4e62eda43cef1ad4e37e44d98b65311.jpg", + "text": "$$\nd ( p _ { 1 } , p _ { 2 } ) = { \\frac { 1 } { 2 } } ( D _ { k l } ( p _ { 1 } | p _ { 2 } ) + D _ { k l } ( p _ { 2 } | p _ { 1 } ) )\n$$", + "text_format": "latex", + "bbox": [ + 359, + 898, + 637, + 928 + ], + "page_idx": 2 + }, + { + "type": "image", + "img_path": "images/5b7992174e2f2c0d5a92732e1d6cc79162abd221b22a4267b1f8758b2b378f90.jpg", + "image_caption": [ + "Figure 2: Overview of ADR. Left: We train $G$ , $C$ with classification loss on source and sample a critic consisting of two classifiers using dropout. The critic’s sensitivity is measured as the divergence between the class predictions of $C _ { 1 }$ and $C _ { 2 }$ on the same input. Right: Adversarial training iterates two steps: the critic tries to maximize the sensitivity while the generator tries to minimize it. " + ], + "image_footnote": [], + "bbox": [ + 189, + 103, + 810, + 291 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where KL divergence between $p$ and $q$ is denoted as $D _ { k l } ( p | q )$ . ", + "bbox": [ + 173, + 390, + 581, + 405 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.2 TRAINING PROCEDURE ", + "text_level": 1, + "bbox": [ + 174, + 424, + 377, + 438 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In our approach, $C$ works as both critic and classifier. The following three requirements are imposed by our method: 1) $C$ and $G$ must classify source samples correctly to obtain discriminative features; 2) $C$ should maximize the sensitivity for target samples to detect the samples near the boundary; 3) $G$ should learn to minimize the sensitivity to move target samples away from the boundary. ", + "bbox": [ + 173, + 440, + 825, + 497 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The training within the same mini-batch consists of the following three steps. ", + "bbox": [ + 174, + 502, + 679, + 517 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Step 1, in this step, $C$ is trained as a classifier. $C$ and $G$ have to classify source samples correctly to obtain discriminative features. Thus, we update both networks’ parameters based on the following standard classification loss. Given source labels $y _ { s }$ and samples $\\mathbf { x _ { s } }$ , the objective in this step is ", + "bbox": [ + 173, + 523, + 826, + 568 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/4b1325385b386c0540bd566d7b46a2ca5e1ff4eb0613e4f0e4cf5ac068a57798.jpg", + "text": "$$\n\\underset { G , C } { \\operatorname* { m i n } } L ( X _ { s } , Y _ { s } ) = - \\mathbb { E } _ { ( \\mathbf { x } _ { s } , y _ { s } ) \\sim ( X _ { s } , Y _ { s } ) } \\sum _ { k = 1 } ^ { K } \\mathbb { 1 } _ { [ k = y _ { s } ] } \\log C ( G ( \\mathbf { x } _ { \\mathbf { s } } ) ) _ { k }\n$$", + "text_format": "latex", + "bbox": [ + 287, + 575, + 709, + 619 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "$C ( G ( \\mathbf { x _ { s } } ) ) _ { k }$ returns the probability that the sample $\\mathbf { x _ { s } }$ is assigned to class $k$ ", + "bbox": [ + 176, + 627, + 666, + 642 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Step 2, in this step, $C$ is trained as a critic to detect target samples near the boundary. Two classifiers are sampled from $C$ for each target sample using dropout twice to obtain $p _ { 1 }$ and $p _ { 2 }$ . Then, $C$ ’s parameters are updated to maximize the sensitivity as measured by Eq. 1. Since $C$ should learn discriminative features for source samples, in addition to the sensitivity term, we add Eq. 2. We experimentally confirmed that this term is essential to obtain good performance. ", + "bbox": [ + 173, + 648, + 826, + 719 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/3bea588dbe0863badf61194488482a3385277235506fa8e3ede248f59902ba58.jpg", + "text": "$$\n\\operatorname* { m i n } _ { C } L ( X _ { s } , Y _ { s } ) - L _ { a d v } ( X _ { t } )\n$$", + "text_format": "latex", + "bbox": [ + 403, + 728, + 593, + 751 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/90c1c66e9efafa4cc0f95641a131aedd5cc5ac97e333de274aa5aca963fc4bd1.jpg", + "text": "$$\nL _ { a d v } ( X _ { t } ) = \\mathbb { E } _ { \\mathbf { x _ { t } } \\sim X _ { t } } [ d ( C _ { 1 } ( G ( \\mathbf { x _ { t } } ) ) , C _ { 2 } ( G ( \\mathbf { x _ { t } } ) ) ) ]\n$$", + "text_format": "latex", + "bbox": [ + 334, + 768, + 663, + 786 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "$C _ { 1 }$ and $C _ { 2 }$ are sampled from $C$ randomly. ", + "bbox": [ + 174, + 791, + 450, + 806 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Step 3, in order to obtain representations where target samples are placed far from the decision boundary, $G$ is trained to minimize sensitivity. Here we do not add the categorical loss for source samples as in Step 2, as the generator is able to obtain discriminative features without it. ", + "bbox": [ + 174, + 813, + 825, + 856 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/63322fcba11ec7695b29e769454da8b5b4c792439b0879e7895c37150117c6a9.jpg", + "text": "$$\n\\operatorname* { m i n } _ { G } L _ { a d v } ( X _ { t } )\n$$", + "text_format": "latex", + "bbox": [ + 449, + 864, + 549, + 887 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We update the parameters of $C$ and $G$ in every step following the defined objectives. We experimentally found it beneficial to repeat Step 3 $n$ times for each mini-batch. ", + "bbox": [ + 173, + 895, + 825, + 924 + ], + "page_idx": 3 + }, + { + "type": "image", + "img_path": "images/e236a8f1f63678aa39e6008db6475416d17c9cf2b19a9b860caab2ab1b9a4cd9.jpg", + "image_caption": [ + "Figure 3: (Best viewed in color) Toy Experiment. Top row: Model trained without adaptation. Columns 1-5 show the decision boundary obtained by keeping one neuron in the last hidden layer and removing the rest. Red points are source samples of class one, green points are class two. Black points are target samples. The yellow region indicates where the samples are classified as class one, cyan region class two. We see that the neurons do not learn very diverse features. Column 6 shows the boundary obtained by keeping all 5 neurons. Bottom row: Boundaries learned by the model adapted by our adversarial dropout method. Unlike the top row, here neurons 3,4,5 learn diverse features which result in diverse boundaries. " + ], + "image_footnote": [], + "bbox": [ + 176, + 102, + 820, + 224 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.3 INSIGHT AND IMPROVEMENT", + "text_level": 1, + "bbox": [ + 174, + 353, + 416, + 367 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Our ADR approach encourages different neurons of the classifier to learn different characteristics of the input (see Sec. 4.1.) The output is the combination of shared and unshared nodes, therefore, to maximize the sensitivity, the unshared nodes must learn different features of target samples. As learning proceeds, each neuron in $C$ will capture different characteristics. At the same time, to minimize the sensitivity, $G$ learns to extract pure categorical information. If $G$ outputs features which are not related to categorical information, such as texture, slight contrast or difference of color, $C$ will utilize them to maximize sensitivity. ", + "bbox": [ + 174, + 371, + 825, + 468 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The trained classifier will be sensitive to the perturbation of targets caused by dropout. We note that our approach is contrary to methods called adversarial example training (Goodfellow et al. (2014b); Miyato et al. (2016)) which train the classifier to be robust to adversarial examples. They utilize input noise which can deceive or change the output of the classifier, and incorporate it to obtain a good classifier. Our ADR method encourages the feature generator to obtain noise-robust target features. However, with regard to the classifier, it is trained to be sensitive to noise. To improve the final accuracy, we learn another classifier $C ^ { \\prime }$ that is not trained to be sensitive to the noise. $C ^ { \\prime }$ takes features generated by $G$ and is trained with classification loss on source samples. The loss of $C ^ { \\prime }$ is not used to update $G$ . We compare the accuracy of $C$ and $C ^ { \\prime }$ in experiments on image classification. ", + "bbox": [ + 174, + 474, + 825, + 601 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 627, + 326, + 642 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4.1 EXPERIMENT ON TOY DATA ", + "text_level": 1, + "bbox": [ + 176, + 662, + 405, + 676 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Experimental Setting. In this experiment, we observe the decision boundary obtained by each neuron to demonstrate that ADR encourages the neurons to learn different input characteristics. We use synthetic “two moons” data for this problem. Two dimensional samples from two classes are generated as source samples. Target samples are obtained by rotating the source samples. In our setting, the rotation was set to 30 degrees and data was generated with scikit-learn (Pedregosa et al. (2011)). We train a six-layered fully-connected network; the lower 3 layers are used as feature generator, and upper 3 layers are used as classifier. We used Batch Normalization (Ioffe & Szegedy (2015)) and ReLU as activation function. The number of neurons are [2,5,5] for feature generator, [5,5,2] for classifier. We visualize the boundary obtained from each neuron in the last layer by removing the output of all other neurons. ", + "bbox": [ + 173, + 680, + 825, + 819 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Results. We show the learned boundary in Fig. 3. In the baseline model trained only with source samples (top row), two of five neurons do not seem to learn an effective boundary, and three neurons learn a similar boundary. On the other hand, in our method (bottom row), although two neurons do not seem to learn any meaningful boundary, three neurons learn distinctive boundaries, demonstrating greater diversity. Each neuron is trained to be sensitive to the noise caused by target samples. The final decision boundary (rightmost column) classifies most target samples correctly. The accuracy of our proposed method is $96 \\%$ whereas the accuracy of the non-adapted model was $84 \\%$ . ", + "bbox": [ + 174, + 825, + 825, + 924 + ], + "page_idx": 4 + }, + { + "type": "image", + "img_path": "images/739f2d31aa495e5a9d6c4fd7b45d22559c2abb1868aa853612bc7403b34eaae2.jpg", + "image_caption": [ + "Figure 4: Relationship between sensitivity loss on target (blue line), on source (yellow line), and accuracy (red: accuracy of $C ^ { \\prime }$ , green: accuracy of $C$ ) during training on digits. " + ], + "image_footnote": [], + "bbox": [ + 178, + 99, + 821, + 242 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.2 UNSUPERVISED DOMAIN ADAPTATION FOR CLASSIFICATION ", + "text_level": 1, + "bbox": [ + 174, + 306, + 635, + 320 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Experiments on Digits Classification. We evaluate our model on adaptation between digits datasets. We use MNIST (LeCun et al. (1998)), SVHN (Netzer et al. (2011)) and USPS datasets and follow the protocol of unsupervised domain adaptation used by (Tzeng et al. (2017)). To extensively compare our method with previous methods, in adaptation from MNIST to USPS, we applied our method to a different protocol used in Bousmalis et al. (2017). We assume no labeled target samples and use fixed hyper-parameters for all experiments, unlike other works that use a target validation set (Saito et al. (2017)). The number of iterations for Step 3 was fixed at $n = 4$ . We used the same network architecture as in (Tzeng et al. (2017)), but inserted a Batch Normalization layer before the activation layer to stabilize the training. We used Adam (Kingma & Ba (2014)) for optimizer and set the learning rate to $2 . 0 \\times 1 0 ^ { - 4 }$ , a value commonly reported in the GAN literature. We compare our approach to several existing methods and to the entropy minimization baseline (ENT) obtained by modifying (Springenberg (2015)). As we mentioned in Section 2, this is a model that generates features to minimize the entropy of the output probability for target samples. Due to space limitations, we provide a detailed explanation of this baseline in the appendix. ", + "bbox": [ + 173, + 340, + 825, + 535 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Results in Table 1 demonstrate that ADR obtains better performance than existing methods. In particular, on the challenging adaptation task from SVHN to MNIST, our method achieves much better accuracy than previously reported. Fig. 4 shows the learning curve of each experiment. As sensitivity loss increases, the target accuracy improves. This means that as critic $C$ learns to detect the non-discriminative samples, feature generator $G$ learns to fool it, resulting in improved accuracy. In addition, we can see that the sensitivity of source samples increases too. As mentioned in Sec 3.3, the critic network should learn to capture features which are not very important for classification, such as texture or slight edges, and it seems to also capture such information in source samples. The accuracy of the classifier $C ^ { \\prime }$ (denoted by red), which is trained not to be sensitive to the noise, is almost always better than the accuracy of the critic network. In adaptation from SVHN to MNIST (Fig. 5(c)), the accuracy of the critic often suffers as it becomes too sensitive to the noise caused by dropout. On the other hand, the accuracy shown by the red line is stable. Our ENT baseline shows good performance compared to other existing methods. This result indicates the effectiveness of methods based on entropy minimization. In Fig. 5, we compare our proposed method and ENT in terms of entropy of target samples. Our method clearly decreases the entropy, because target samples are moved away from the decision boundary. Yet, its behavior is different from ENT. Interestingly, the entropy is made smaller than ENT in case of adaptation from USPS to MNIST (Fig. 4(a)) though ENT directly minimizes the entropy and our method does not. On the SVHN to MNIST task (Fig. 4(c)), the entropy of ADR is larger than ENT, which indicates that our method places the target samples closer to the decision boundary than ENT does. ", + "bbox": [ + 174, + 541, + 825, + 819 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Experiments on Object Classification. We next evaluate our method on fine-tuning a pretrained CNN. We use a new domain adaptation benchmark called the VisDA Challenge (Peng et al. (2017)) which focuses on the challenging task of adapting from synthetic to real images. The source domain consists of 152,409 synthetic 2D images from 12 object classes rendered from 3D models. The validation and test target domains consists of real images, which belong to the same classes. We used the validation domain (55,400 images) as our target domain in an unsupervised domain adaptation setting. ", + "bbox": [ + 174, + 827, + 825, + 924 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/177e15de1ac8fd6d27b034896b5372cb923b428390b94b1a14d9cc289b6a1b4f.jpg", + "image_caption": [ + "Figure 5: Comparison of entropy of ours (blue line) with ENT (yellow line). The entropy is calculated on target samples by using the output of the classifier. " + ], + "image_footnote": [], + "bbox": [ + 178, + 104, + 803, + 239 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/cebe388166950ef90d8cb324df11aaa66b6c377b12baa85b995f38fc178c531d.jpg", + "table_caption": [ + "Table 1: Results on digits datasets. Please note that $^ \\dagger$ means the result obtained using a few labeled target samples for validation. The reported accuracy of our method is obtained from $C ^ { \\prime }$ . ENT is our proposed entropy minimization baseline, described in the appendix. MNIST(P1) and MNIST(P2) indicate different experimental settings used in Tzeng et al. (2017) and Bousmalis et al. (2017) respectively. " + ], + "table_footnote": [], + "table_body": "
METHODSVHN to MNISTUSPS to MNISTMNIST(P1) to USPSMNIST(P2) to USPS
Source Only67.168.177.078.9
LTN (Sener et al. (2016))78.8-1-
ATDA (Saito et al. (2017))86.2†=1-
DSN (Bousmalis et al. (2016))82.7†91.3†
PixelDA (Bousmalis et al. (2017)1=-95.9†
DANN (Ganin & Lempitsky (2014))73.973.0±2.077.1±1.885.1†
DoC (Tzeng et al. (2014))68.1±0.366.5±3.379.1±0.51
ADDA (Tzeng et al. (2017))76.0±1.890.1±0.889.4±0.2-
CoGAN (Liu & Tuzel (2016))did not converge89.1±0.891.2±0.8=
DTN (Taigman et al. (2016))84.71-
ENT (Our proposed baseline) Ours94.9±4.11 95.0±1.8791.2±1.92 93.1±1.2793.7±0.54 93.2±2.4696.7±1.27 96.1±0.29
", + "bbox": [ + 187, + 275, + 807, + 469 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We evaluate our model on fine-tuning networks pretrained on ImageNet (Deng et al. (2009)): ResNet101 (He et al. (2016)) and ResNext (Xie et al. (2016)). For the feature generator, we use the pretrained CNN after removing the top fully connected layer. For the classification network, we use a three-layered fully connected network. ", + "bbox": [ + 174, + 559, + 825, + 614 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Table 2 shows that our method outperformed other distribution matching methods and our new baseline (ENT) in finetuning both networks by a large margin. ENT did not achieve better performance than existing methods, though improvement over the source only model was observed. Although this method performed well on digits, it does not work as well here, possibly because of the larger shift between very different domains. In the experiment on ResNext, after training $G$ and $C$ , we retrained a classifier $C ^ { ' }$ just on the features generated by $G$ due to GPU memory limitations, and observed improvement in both networks. ", + "bbox": [ + 174, + 621, + 825, + 722 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Fig. 6 visualizes the target features obtained by $G$ with the pretrained model, model fine-tuned on source, and our ADR method. While the embedding of the source only model does not separate classes well due to domain shift, we can see clearly improved separation with ADR. ", + "bbox": [ + 174, + 728, + 821, + 770 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Image Segmentation experiments. Next, we apply our method to adaptation for semantic image segmentation. Image segmentation is different from classification in that we classify each pixel in the image. To evaluate the performance on segmentation, the synthetic GTA5 (Richter et al. (2016)) dataset is used as source, and real CityScape (Cordts et al. (2016)) dataset is used as target. Previous work tackled this problem by matching distributions of each pixel’s feature in a middle layer of the network (Hoffman et al. (2016)). In this work, we apply ADR by calculating sensitivity between all pixels. The training procedure is exactly the same as in classification experiments. ", + "bbox": [ + 174, + 777, + 825, + 875 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We use the ResNet50 pretrained on ImageNet, and utilize an FCN (Long et al. (2015a)) based network architecture. Further, we utilize the more recent Dilated Residual Networks (DRN) 105 layered model (Yu et al. (2017)), which outperforms ResNet50 on a semantic segmentation task. ", + "bbox": [ + 176, + 882, + 823, + 924 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/f1424f829d13d5222f78094f2d533a494b462bd17dd04b218b7d8dfb038049e0.jpg", + "table_caption": [ + "Table 2: Results on Visda2017 classification datasets (Peng et al. (2017)). DANN and MMD are distribution alignment methods proposed by (Ganin & Lempitsky (2014)) and (Long et al. (2015b)) respectively. Ours (retrain classifier) means the classifier retrained for our proposed generator as we mentioned in Sec 3.3. Our proposed method shows much better performance than existing methods. " + ], + "table_footnote": [], + "table_body": "
Methodgrrrdoraegpaleie 3ueoormorreiltuosiadsareraertrnaaa
Finetuning on ResNet101
Source Only55.153.3 61.959.180.617.979.731.281.026.573.58.552.4
MMD87.163.0 76.542.090.342.985.953.149.736.385.820.761.1
DANN81.977.7 82.844.381.229.565.128.651.954.682.87.857.4
ENT80.375.5 75.848.377.927.369.740.246.546.679.316.057.0
Ours94.151.3 83.272.288.768.892.870.277.263.682.930.372.9
Ours (retrained classifier)94.248.5 84.072.990.174.292.672.580.861.882.228.873.5
Finetuning on ResNeXt
Source Only74.3 37.6 61.8 68.2 59.510.7 81.412.8 61.6 26.070.05.647.4
MMD90.751.1 64.865.689.946.591.940.181.524.190.028.563.7
DANN86.066.3 60.8 56.079.853.782.325.258.231.089.326.159.6
ENT94.781.0 57.046.673.949.069.231.040.534.387.315.156.6
Ours86.3 71.987.678.193.084.894.578.991.858.977.726.777.5
Ours (retrained classifier)89.270.9 85.782.093.786.7 93.372.389.553.086.728.377.6
", + "bbox": [ + 233, + 102, + 766, + 319 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/f85e9efe625959ba93fdcfd4024851f548acbeebd038701c1fb299173a9f68e4.jpg", + "image_caption": [ + "Figure 6: Visualization of VisDA-classification (12 classes) target features using T-SNE (Maaten & Hinton (2008)): (a) features obtained by the Imagenet-pretrained ResNext model not finetuned on VisDA; (b) features from the ResNext model fine-tuned only on VisDA source samples without any adaptation; (c) features obtained by ResNext adapted by our ADR method. " + ], + "image_footnote": [], + "bbox": [ + 232, + 402, + 769, + 550 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "For the feature generator, we use the pretrained network without fully-connected layers. For the classifier, we use a fully-convolutional network with dropout layers. Due to limited memory, the batch size is set to 1. We include details of the network architecture in appendix. For comparison, we train a domain classifier based model for our network (DANN). We build a domain classifier network for the features of each pixel following (Hoffman et al. (2016)). ", + "bbox": [ + 174, + 623, + 825, + 694 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "In Table 3, we show the qualitative comparison with existing methods. ADR clearly improves mean IoU (Intersection-over-Union) compared to the source-only and competing models, beating state-ofthe-art by a large margin. When we apply ADR to DRN, the accuracy improves much more than for ResNet50, and is 12.4 points higher than the model trained only on GTA5 source samples. This is likely because ADR exploits the strong representation of the pretrained DRN network. Although we implemented ENT in this setting, the accuracy was much worse than the Source Only model with a mIoU of 15.0 in training ResNet50. The ENT method does not seem to work well on syntheticto-real shifts. Finally, we illustrate our method’s improvement on example input images, ground truth labels, images segmented by the Source Only model and our method in Fig. 7. While the Source Only model seems to suffer from domain shift, ADR generates a clean segmentation. These experiments demonstrate the effectiveness of ADR on semantic segmentation. ", + "bbox": [ + 174, + 700, + 825, + 853 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5 CONCLUSION ", + "text_level": 1, + "bbox": [ + 176, + 875, + 318, + 890 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "In this paper, we introduced a novel approach for aligning deep representation, Adversarial Dropout Regularization, which learns to generate discriminative features for the target domain. The method consists of a critic network that can detect samples near the task decision boundary and a feature generator that fools the critic. Our approach is general, applies to a variety of tasks, and does not require target domain labels. In extensive domain adaptation experiments, our method outperformed baseline methods, including entropy minimization, and achieved state-of-the-art results on three datasets. ", + "bbox": [ + 176, + 896, + 823, + 924 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/a5a27f174055b694ce32992a128d5d59e5363e7969657c64f7dd99c7d8377e4f.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
NetworkMethodxeeepreBuiplng8irilenuosradMur0mrrqeemIoU
VGG-16FCN Wild70.432.462.114.95.410.914.22.779.221.364.644.14.270.48.07.30.03.50.027.1
ResNet50Source OnlyDANNOurs64.572.487.824.919.115.673.714.83.920.62.59.39.718.017.319.015.913.119.90.05.57.774.916.472.042.30.039.58.612.117.513.49.927.70.00.01.80.05.89.70.00.00.025.326.433.3
73.077.471.082.020.131.562.274.332.643.55.29.068.477.8
DRN-105Source OnlyOurs25.986.210.910.150.578.83.320.112.27.425.428.613.015.078.384.57.338.963.952.17.966.35.229.67.832.70.90.213.719.20.78.324.937.3
21.226.581.154.613.680.8
", + "bbox": [ + 176, + 102, + 823, + 217 + ], + "page_idx": 8 + }, + { + "type": "image", + "img_path": "images/2a431aecdd2cbdb38788dec71565dbda6f38a671d3881b7e8cbaa1c5630bfb5c.jpg", + "image_caption": [ + "Table 3: Results on adaptation from $\\mathrm { G T A } 5 $ Cityscapes. DANN and FCN Wild denote methods proposed by (Ganin & Lempitsky (2014)) and (Hoffman et al. (2016) respectively. ", + "Figure 7: Comparison of results on two real images segmented by ResNet50. Clockwise from upper left: Original image; Ground truth; Segmented image before adaptation; Segmented image after adaptation by our method. " + ], + "image_footnote": [], + "bbox": [ + 174, + 258, + 815, + 383 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 439, + 825, + 508 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We also show how to apply our method to train Generative Adversarial Networks for semisupervised learning in the appendix. ", + "bbox": [ + 173, + 516, + 821, + 545 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "6 ACKNOWLEDGEMENTS ", + "text_level": 1, + "bbox": [ + 176, + 565, + 397, + 580 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We would like to thank Trevor Darrell for his great advice on our paper. The first author’s stay at Boston University was partially supported by a scholarship from the University of Tokyo. The work was partially funded by the ImPACT Program of the Council for Science, Technology, and Innovation (Cabinet Office, Government of Japan), and was partially supported by CREST, JST. Saenko was supported by IARPA and NSF grants CCF-1723379 and IIS-1724237. ", + "bbox": [ + 174, + 597, + 825, + 666 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 174, + 688, + 285, + 704 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Shai Ben-David, John Blitzer, Koby Crammer, Alex Kulesza, Fernando Pereira, and Jennifer Wortman Vaughan. A theory of learning from different domains. Machine learning, 79(1-2):151–175, 2010. ", + "bbox": [ + 174, + 712, + 825, + 753 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Konstantinos Bousmalis, George Trigeorgis, Nathan Silberman, Dilip Krishnan, and Dumitru Erhan. Domain separation networks. In NIPS, 2016. ", + "bbox": [ + 176, + 765, + 823, + 792 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Konstantinos Bousmalis, Nathan Silberman, David Dohan, Dumitru Erhan, and Dilip Krishnan. Unsupervised pixel-level domain adaptation with generative adversarial networks. In CVPR, 2017. ", + "bbox": [ + 174, + 803, + 823, + 832 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Olivier Chapelle and Alexander Zien. Semi-supervised classification by low density separation. In AISTATS, 2005. ", + "bbox": [ + 173, + 842, + 823, + 871 + ], + "page_idx": 8 + }, + { + "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. ", + "bbox": [ + 176, + 882, + 823, + 924 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Zihang Dai, Zhilin Yang, Fan Yang, William W Cohen, and Ruslan Salakhutdinov. Good semisupervised learning that requires a bad gan. arXiv preprint arXiv:1705.09783, 2017. ", + "bbox": [ + 173, + 103, + 823, + 133 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A large-scale hierarchical image database. In CVPR, 2009. ", + "bbox": [ + 173, + 141, + 823, + 171 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Vincent Dumoulin, Ishmael Belghazi, Ben Poole, Alex Lamb, Martin Arjovsky, Olivier Mastropietro, and Aaron Courville. Adversarially learned inference. arXiv preprint arXiv:1606.00704, 2016. ", + "bbox": [ + 176, + 180, + 821, + 224 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Yaroslav Ganin and Victor Lempitsky. Unsupervised domain adaptation by backpropagation. In ICML, 2014. ", + "bbox": [ + 173, + 233, + 823, + 263 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Yaroslav Ganin, Evgeniya Ustinova, Hana Ajakan, Pascal Germain, Hugo Larochelle, Franc¸ois Laviolette, Mario Marchand, and Victor Lempitsky. Domain-adversarial training of neural networks. JMLR, 17(59):1–35, 2016. ", + "bbox": [ + 174, + 272, + 821, + 315 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In NIPS, 2014a. ", + "bbox": [ + 173, + 324, + 823, + 354 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ian J Goodfellow, Jonathon Shlens, and Christian Szegedy. Explaining and harnessing adversarial examples. In ICLR, 2014b. ", + "bbox": [ + 171, + 363, + 823, + 393 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Yves Grandvalet and Yoshua Bengio. Semi-supervised learning by entropy minimization. In NIPS, 2005. ", + "bbox": [ + 174, + 402, + 823, + 433 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In CVPR, 2016. ", + "bbox": [ + 176, + 441, + 823, + 472 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Judy Hoffman, Dequan Wang, Fisher Yu, and Trevor Darrell. Fcns in the wild: Pixel-level adversarial and constraint-based adaptation. arXiv preprint arXiv:1612.02649, 2016. ", + "bbox": [ + 174, + 481, + 821, + 511 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by reducing internal covariate shift. In ICML, 2015. ", + "bbox": [ + 176, + 520, + 820, + 549 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Thorsten Joachims. Transductive inference for text classification using support vector machines. In ICML, 1999. ", + "bbox": [ + 176, + 558, + 821, + 588 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980, 2014. ", + "bbox": [ + 174, + 597, + 823, + 627 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Yann LeCun, Leon Bottou, Yoshua Bengio, and Patrick Haffner. Gradient-based learning applied to ´ document recognition. Proceedings of the IEEE, 86(11):2278–2324, 1998. ", + "bbox": [ + 173, + 636, + 823, + 666 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ming-Yu Liu and Oncel Tuzel. Coupled generative adversarial networks. In NIPS, 2016. ", + "bbox": [ + 171, + 675, + 756, + 691 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jonathan Long, Evan Shelhamer, and Trevor Darrell. Fully convolutional networks for semantic segmentation. In CVPR, 2015a. ", + "bbox": [ + 174, + 700, + 825, + 729 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Mingsheng Long, Yue Cao, Jianmin Wang, and Michael I Jordan. Learning transferable features with deep adaptation networks. In ICML, 2015b. ", + "bbox": [ + 171, + 739, + 825, + 768 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Mingsheng Long, Han Zhu, Jianmin Wang, and Michael I Jordan. Unsupervised domain adaptation with residual transfer networks. In NIPS, 2016. ", + "bbox": [ + 173, + 777, + 825, + 808 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Mingsheng Long, Jianmin Wang, and Michael I Jordan. Deep transfer learning with joint adaptation networks. In ICML, 2017. ", + "bbox": [ + 174, + 816, + 823, + 847 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Lars Maaløe, Casper Kaae Sønderby, Søren Kaae Sønderby, and Ole Winther. Auxiliary deep generative models. arXiv preprint arXiv:1602.05473, 2016. ", + "bbox": [ + 174, + 856, + 820, + 886 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Laurens van der Maaten and Geoffrey Hinton. Visualizing data using t-sne. JMLR, 9(Nov):2579– 2605, 2008. ", + "bbox": [ + 173, + 895, + 820, + 924 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Takeru Miyato, Shin-ichi Maeda, Masanori Koyama, Ken Nakae, and Shin Ishii. Distributional smoothing with virtual adversarial training. 2016. ", + "bbox": [ + 171, + 103, + 823, + 132 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Yuval Netzer, Tao Wang, Adam Coates, Alessandro Bissacco, Bo Wu, and Andrew Y Ng. Reading digits in natural images with unsupervised feature learning. In NIPS workshop on deep learning and unsupervised feature learning, 2011. ", + "bbox": [ + 174, + 147, + 825, + 189 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Fabian Pedregosa, Ga”el Varoquaux, Alexandre Gramfort, Vincent Michel, Bertrand Thirion, Olivier Grisel, Mathieu Blondel, Peter Prettenhofer, Ron Weiss, Vincent Dubourg, et al. Scikitlearn: Machine learning in python. JMLR, 12(10):2825–2830, 2011. ", + "bbox": [ + 176, + 204, + 823, + 247 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Xingchao Peng, Ben Usman, Neela Kaushik, Judy Hoffman, Dequan Wang, and Kate Saenko. Visda: The visual domain adaptation challenge. arXiv preprint arXiv:1710.06924, 2017. ", + "bbox": [ + 174, + 262, + 825, + 291 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Stephan R Richter, Vibhav Vineet, Stefan Roth, and Vladlen Koltun. Playing for data: Ground truth from computer games. In ECCV, 2016. ", + "bbox": [ + 173, + 305, + 823, + 334 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Kuniaki Saito, Yoshitaka Ushiku, and Tatsuya Harada. Asymmetric tri-training for unsupervised domain adaptation. In ICML, 2017. ", + "bbox": [ + 173, + 349, + 823, + 378 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Tim Salimans, Ian Goodfellow, Wojciech Zaremba, Vicki Cheung, Alec Radford, and Xi Chen. Improved techniques for training gans. In NIPS, 2016. ", + "bbox": [ + 171, + 392, + 823, + 422 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Ozan Sener, Hyun Oh Song, Ashutosh Saxena, and Silvio Savarese. Learning transferrable representations for unsupervised domain adaptation. In NIPS, 2016. ", + "bbox": [ + 173, + 436, + 823, + 465 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jost Tobias Springenberg. Unsupervised and semi-supervised learning with categorical generative adversarial networks. arXiv preprint arXiv:1511.06390, 2015. ", + "bbox": [ + 171, + 479, + 823, + 508 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Nitish Srivastava, Geoffrey E Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov. Dropout: a simple way to prevent neural networks from overfitting. JMLR, 15(1):1929–1958, 2014. ", + "bbox": [ + 173, + 522, + 825, + 566 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Baochen Sun and Kate Saenko. Deep coral: Correlation alignment for deep domain adaptation. In ECCV 2016 Workshops, 2016. ", + "bbox": [ + 173, + 580, + 823, + 611 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Baochen Sun, Jiashi Feng, and Kate Saenko. Return of frustratingly easy domain adaptation. In AAAI, 2016. ", + "bbox": [ + 173, + 625, + 825, + 654 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Yaniv Taigman, Adam Polyak, and Lior Wolf. Unsupervised cross-domain image generation. In ICLR, 2016. ", + "bbox": [ + 173, + 667, + 823, + 698 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Eric Tzeng, Judy Hoffman, Ning Zhang, Kate Saenko, and Trevor Darrell. Deep domain confusion: Maximizing for domain invariance. arXiv preprint arXiv:1412.3474, 2014. ", + "bbox": [ + 171, + 712, + 823, + 741 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Eric Tzeng, Judy Hoffman, Kate Saenko, and Trevor Darrell. Adversarial discriminative domain adaptation. In CVPR, 2017. ", + "bbox": [ + 173, + 755, + 823, + 785 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Saining Xie, Ross Girshick, Piotr Dollar, Zhuowen Tu, and Kaiming He. Aggregated residual trans- ´ formations for deep neural networks. arXiv preprint arXiv:1611.05431, 2016. ", + "bbox": [ + 173, + 799, + 821, + 829 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Hongliang Yan, Yukang Ding, Peihua Li, Qilong Wang, Yong Xu, and Wangmeng Zuo. Mind the class weight bias: Weighted maximum mean discrepancy for unsupervised domain adaptation. In CVPR, 2017. ", + "bbox": [ + 173, + 843, + 823, + 886 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Fisher Yu, Vladlen Koltun, and Thomas Funkhouser. Dilated residual networks. In CVPR, 2017. ", + "bbox": [ + 171, + 900, + 805, + 916 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "APPENDIX ", + "text_level": 1, + "bbox": [ + 176, + 103, + 264, + 117 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "A ENTROPY BASED METHOD FOR DOMAIN ADAPTATION (ENT) ", + "text_level": 1, + "bbox": [ + 176, + 123, + 725, + 140 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Our method aims to move target samples away from the decision boundary. Some techniques used in training Generative Adversarial Networks can be applied to achieve our goal too. (Springenberg (2015); Salimans et al. (2016)) used small number of labeled samples to train critic. Critic is trained to classify real samples into $K$ classes. They also trained critic to move unlabeled real images away from the boundary by minimizing entropy of the critic’s output. Generated fake images are moved near the boundary by maximizing the entropy. On the other hand, generator is trained to generate fake images which should be placed away from the boundary. This kind of method can be easily applied to domain adaptation problem. We would like to describe the method along with our problem setting. ", + "bbox": [ + 173, + 145, + 825, + 270 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Similar to our method, we have critic networks $C$ and generator $G$ . $C$ classifies samples into $K$ class. $C$ is trained to maximize the entropy of target samples, which encourages to move the target samples near the boundary. Then, $G$ is trained to minimize the entropy of them. Thus, $G$ tries to move target samples away from the boundary. ", + "bbox": [ + 173, + 276, + 825, + 333 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "The only difference from our method is that we used entropy term for adversarial training loss. That is, in this method, we replace our sensitivity term $d ( p _ { 1 } , p _ { 2 } )$ in Eq. 4 with entropy of the classifier output. The adversarial loss for this baseline method is a following one. ", + "bbox": [ + 174, + 340, + 823, + 382 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/a2021b8ef809d13c1f4bdfe0b75167d5f46e6067ac40597da21cec262093e02a.jpg", + "text": "$$\n\\begin{array} { r c l } { { { \\cal L } _ { a d v } ( X _ { t } ) } } & { { = } } & { { \\displaystyle \\mathbb { E } _ { { \\mathbf { x _ { t } } } \\sim X _ { t } } [ H [ p ( \\mathbf { y } | { \\mathbf { x _ { t } } } ) ] } } \\\\ { { { \\cal H } [ p ( \\mathbf { y } | { \\mathbf { x _ { t } } } ) ] } } & { { = } } & { { \\displaystyle - \\sum _ { k = 1 } ^ { K } p ( y = k | { \\mathbf { x _ { t } } } ) \\log p ( y = k | { \\mathbf { x _ { t } } } ) } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 320, + 385, + 676, + 449 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/dbd5c4fe01e08cdcd9b9616b1e5c9d27f2275a6777f27ef7ac7f291a1cd848f9.jpg", + "text": "$$\nH [ p ( y | x ) ] = - \\sum _ { k = 1 } ^ { K } p ( y = k | x ) \\log p ( y = k | x )\n$$", + "text_format": "latex", + "bbox": [ + 343, + 453, + 653, + 496 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "The hyper-parameter $n$ , how many times we update $G$ for adversarial loss in one mini-batch, is set as $n = 4$ . Experimentally, it worked well for all settings. ", + "bbox": [ + 173, + 497, + 821, + 525 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "B DIGITS CLASSIFICATION TRAINING DETAIL ", + "text_level": 1, + "bbox": [ + 173, + 534, + 573, + 550 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "We follow the protocol used in (Tzeng et al. (2017)). For adaptation from SVHN to MNIST, we used standard training splits of each datasets as training data. For evaluation, we used test splits of MNIST. For the adaptation between MNIST and USPS (P1), we sampled 2000 images from MNIST and 1800 images from USPS. For the adaptation between MNIST and USPS (P2), we used all training images of MNIST and USPS following Bousmalis et al. (2017). In these experiments, we composed the mini-batch half from source and half from target samples. The batch-size was set as 128 for both source and target. We report the score after repeating Step $1 { \\sim } 3$ (please see Sec 3.2) 20000 times. For our baseline, ENT, we used the same network architecture and the same hyper-parameters as used in our proposed method. ", + "bbox": [ + 173, + 554, + 825, + 680 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "C OBJECT CLASSIFICATION TRAINING DETAIL ", + "text_level": 1, + "bbox": [ + 173, + 689, + 578, + 705 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "In this experiment, SGD with learning rate $1 . 0 \\times 1 0 ^ { - 3 }$ is used to optimize the parameters. For the finetuning of ResNet101, we set batch-size as 32. Due to the limit of GPU memory, we set it as 24 in finetuning ResNext model. We report the score after 20 epochs training. In order to train MMD model, we use 5 RBF kernels with the following standard deviation parameters: ", + "bbox": [ + 174, + 708, + 825, + 765 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/5e5c787c3a5208e654ae34797e13f1eb8e10838a913d7366e482a0e916b2b935.jpg", + "text": "$$\n\\sigma = [ 0 . 1 , 0 . 0 5 , 0 . 0 1 , 0 . 0 0 0 1 , 0 . 0 0 0 0 1 ]\n$$", + "text_format": "latex", + "bbox": [ + 372, + 770, + 624, + 786 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "We changed the number of the kernels and their parameters, but we could not observe significant performance difference. We report the performance after 5 epochs. We could not see any improvement after the epoch. ", + "bbox": [ + 174, + 791, + 825, + 833 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "To train a model (Ganin & Lempitsky (2014)), we used two-layered domain classification networks. Experimentally, we did not see any improvement when the network architecture is changed. According to the original method (Ganin $\\&$ Lempitsky (2014)), learning rate is decreased every iteration. However, in our experiment, we could not see improvement, thus, we fixed learning rate $\\mathrm { i . 0 \\times 1 0 ^ { - 3 } }$ . We report the accuracy after 1 epoch. The accuracy dropped significantly after the first epoch. We assume this is due to the large domain difference between synthetic and real images. ", + "bbox": [ + 174, + 839, + 825, + 924 + ], + "page_idx": 11 + }, + { + "type": "image", + "img_path": "images/91334547d8f045bbc50bad32d13e84fbdd9717e2bd91e1f11d2951fede231eb5.jpg", + "image_caption": [ + "Figure 9: Example of results on segmentation experiments performed by DRN-105. From top to bottom, Original image; Ground truth; Segmented image before adaptation; Segmented image after adaptation by our method. " + ], + "image_footnote": [], + "bbox": [ + 174, + 101, + 823, + 353 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "For our new baseline, ENT, we used the same hyper-parameter as we used for our proposed method. Since the accuracy of ENT drops significantly after around 5 epochs, we report the accuracy after 5 epoch updates. ", + "bbox": [ + 174, + 431, + 825, + 473 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "D SEGMENTATION EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 483, + 468, + 498 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "We modified FCN Long et al. (2015a) architecture suitable for ResNet structure. The features from ResBlock $2 { \\sim } 4$ and the first convolution layer and maxpooling layer are used in our implementation. In Fig. 8, we show how we integrated the features of each layers. We regard the layers of ResNet50 as generator and rest of the networks, namely convolution and upsampling layers as a critic network. The input images were resized to $5 1 2 \\mathrm { x } 1 0 2 4$ due to the limit of GPU memory. For the same reason, the batchsize was set to one. In Fig. 9, we show the example of segmented images by DRN-105. The images are cleanly segmented by our proposed method. ", + "bbox": [ + 174, + 503, + 552, + 670 + ], + "page_idx": 12 + }, + { + "type": "image", + "img_path": "images/239b4a962924dc544fc56d44223b3182af3fbba803795fe928439774dffc489c.jpg", + "image_caption": [ + "Figure 8: Overview of architecture for semantic segmentation " + ], + "image_footnote": [], + "bbox": [ + 588, + 473, + 825, + 631 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "E SEMI-SUPERVISED LEARNING USING GANS ", + "text_level": 1, + "bbox": [ + 173, + 690, + 573, + 705 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "In this section, we demonstrate how to apply our method in training a Generative Adversarial Network (GAN) applied to semi-supervised learning. We follow the method proposed by (Springenberg (2015); Salimans et al. (2016)), who use a $K$ -class classification network as a critic to train a GAN in the semi-supervised setting. ", + "bbox": [ + 173, + 720, + 825, + 777 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Approach. In contrast to the domain adaptation setting, here $G$ tries to generate images which fool the critic $C$ . Also, in this setting, we are given labeled and unlabeled real images from the same domain. Then, we train the critic to classify labeled images correctly and to move unlabeled images far from the decision boundary. To achieve this, we propose to train the critic with the following objective: ", + "bbox": [ + 173, + 784, + 823, + 853 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/b4e0bb62c8cc70e5af3a746f4ffc2fff759f31b06275f447fb8c07818b6c821a.jpg", + "text": "$$\n\\operatorname* { m i n } _ { C } L _ { C } = L ( X _ { L } , Y _ { L } ) + L _ { a d v } ( X _ { u } ) - L _ { a d v } ( X _ { g } ) - H [ \\frac { 1 } { M } \\sum _ { i = 1 } ^ { M } p ( y | x _ { u } { } ^ { i } , C ) ]\n$$", + "text_format": "latex", + "bbox": [ + 248, + 848, + 746, + 892 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/4f3651718657720aa59752e868f8a29aa904e613e9650be8f9f4ef7a3210e164.jpg", + "text": "$$\nL _ { a d v } ( X _ { u } ) = \\mathbb { E } _ { \\mathbf { x _ { u } } \\sim X _ { u } } [ d ( C _ { 1 } ( G ( \\mathbf { x _ { u } } ) ) , C _ { 2 } ( G ( \\mathbf { x _ { u } } ) ) ) ]\n$$", + "text_format": "latex", + "bbox": [ + 328, + 907, + 668, + 925 + ], + "page_idx": 12 + }, + { + "type": "image", + "img_path": "images/63364abe673b063e24a800150d6aed5d16f2ac6fd54204e6ef2d434abc5d60e1.jpg", + "image_caption": [ + "Figure 10: Examples of generated images. " + ], + "image_footnote": [], + "bbox": [ + 174, + 101, + 815, + 242 + ], + "page_idx": 13 + }, + { + "type": "table", + "img_path": "images/c25d34b9848ce8a2264f46bff282c343fd96916cc65ef79946fd5a75454797ef.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
SVHN (% errors)CIFAR (% errors)
Labeled Only SDGM (Maalge et al. (2016)16.61 ± 0.24
CatGAN (Springenberg (2015))=19.58±0.46
ALI (Dumoulin et al. (2016))7.42±0.6517.99±1.62
ImpGAN (Salimans et al. (2016))8.11±1.318.63±2.32
Ours6.26±1.0519.63±0.37
", + "bbox": [ + 209, + 277, + 784, + 383 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Table 4: Comparison with state-of-the-art methods on two benchmark datasets. Only methods without data augmentation are included. We used the same critic architecture as used in ImpGAN. ", + "bbox": [ + 171, + 393, + 825, + 421 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/83537d900fab4ee7a3f1710393b244f2849254ece073bff6f7ec2ac627714516.jpg", + "text": "$$\nL _ { a d v } ( X _ { g } ) = \\mathbb { E } _ { { \\mathbf { x } } _ { \\mathbf { g } } \\sim X _ { G } } [ d ( C _ { 1 } ( G ( { \\mathbf { x } } _ { \\mathbf { g } } ) ) , C _ { 2 } ( G ( { \\mathbf { x } } _ { \\mathbf { g } } ) ) ) ]\n$$", + "text_format": "latex", + "bbox": [ + 330, + 465, + 668, + 483 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "where $X _ { L }$ denotes the subset of labeled samples, $X _ { u }$ denotes unlabeled ones and $X _ { g }$ denotes images generated by $G$ and $H$ denotes entropy as Eq.6 shows. The critic is trained to minimize the loss on labeled samples in the first term. Since unlabeled images should be far away from the decision boundary and should be distributed uniformly among the classes, we add the second and fourth term. The third term encourages the critic to detect fake images generated near the boundary. ", + "bbox": [ + 174, + 484, + 825, + 556 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "The objective of $G$ is as follows, ", + "bbox": [ + 174, + 561, + 388, + 575 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/aa12383d6c54067bf716e7a8e1391d0066b156b3c026b96dcb40a20a36336bfa.jpg", + "text": "$$\n\\operatorname* { m i n } _ { G } L _ { a d v } ( X _ { g } ) + | | \\mathbb { E } _ { x _ { g } \\sim X _ { g } } f ( \\mathbf { x _ { g } } ) - \\mathbb { E } _ { \\mathbf { x _ { u } } \\sim X _ { u } } f ( \\mathbf { x _ { u } } ) | | ^ { 2 }\n$$", + "text_format": "latex", + "bbox": [ + 318, + 580, + 676, + 604 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "where the second term encourages generated images to be similar to real images, which is known to be effective to stabilize the training. The first term encourages the generator to create fake images which should be placed far away from the boundary. Such images should be similar to real images because they are likely to be assigned to some class with high probability. Here, we update $C$ and $G$ same number of times. ", + "bbox": [ + 174, + 609, + 825, + 680 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Experiment. We evaluate our proposed GAN training method by using SVHN and CIFAR10 datasets, using the critic network architecture from (Salimans et al. (2016)). We set the batch size as 100 and used Adam with learning rate $2 . 0 \\times 1 . 0 ^ { - 4 }$ for optimizer. After the conv6 layer of the critic, we constructed a classifier which was not concerned with adversarial learning process. ", + "bbox": [ + 174, + 686, + 825, + 742 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "In the experiment on SVHN, we replaced Weight Normalization with Batch Normalization for $C$ . Also, in the experiment on CIFAR10, we construct a classifier from a middle layer of the critic, which is not incorporated into the adversarial training step. This is motivated by the insight that the critic in our method is trained to be too sensitive to the dropout noise as we explained in Sec 3.3. ", + "bbox": [ + 174, + 748, + 825, + 805 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Results. From Fig. 10(a), we can see that ADR seems to generate realistic SVHN images. Some images are significantly blurred, but most of the images are clear and diverse. As for generated CIFAR10 images, they do not seem as realistic, but some objects appear in most images. In Table 4, we can see that the accuracy of the critic trained by our method has better performance than other models for SVHN. For CIFAR10, the accuracy was slightly worse than other state-of-the-art methods. We conclude that, despite its clear advantage on the domain adaptation tasks, our method produces mixed results on the SSL tasks. It could still be useful for SSL, however, it needs further exploration to improve the accuracy. For example, in Eq. 6, we propose to maximize the entropy of the marginal class distribution of the unlabeled real images, as well as forcing them to be far from the boundary. However, these objectives may contradict each other, which may in turn degrade the performance. In late-breaking results, Dai et al. (2017) theoretically showed that just generating fake images that are far from decision boundaries does not help to improve accuracy in training GANs in the setting of SSL. Further improvement of our SSL approach based on these results is an interesting direction for future work. ", + "bbox": [ + 173, + 811, + 825, + 924 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 825, + 186 + ], + "page_idx": 14 + } +] \ No newline at end of file diff --git a/parse/train/HJIoJWZCZ/HJIoJWZCZ_middle.json b/parse/train/HJIoJWZCZ/HJIoJWZCZ_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..dabad19aa1e9437a41c6fd66ec76f5107b019b06 --- /dev/null +++ b/parse/train/HJIoJWZCZ/HJIoJWZCZ_middle.json @@ -0,0 +1,38964 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 432, + 97 + ], + "lines": [ + { + "bbox": [ + 106, + 78, + 433, + 98 + ], + "spans": [ + { + "bbox": [ + 106, + 78, + 433, + 98 + ], + "score": 1.0, + "content": "ADVERSARIAL DROPOUT REGULARIZATION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 158, + 119, + 451, + 132 + ], + "lines": [ + { + "bbox": [ + 158, + 118, + 452, + 133 + ], + "spans": [ + { + "bbox": [ + 158, + 118, + 452, + 133 + ], + "score": 1.0, + "content": "Kuniaki Saito1, Yoshitaka Ushiku1, Tatsuya Harada1,2, and Kate Saenko3", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 141, + 140, + 472, + 164 + ], + "lines": [ + { + "bbox": [ + 191, + 138, + 419, + 155 + ], + "spans": [ + { + "bbox": [ + 191, + 138, + 419, + 155 + ], + "score": 1.0, + "content": "1The University of Tokyo, 2RIKEN, 3Boston University", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 139, + 151, + 473, + 165 + ], + "spans": [ + { + "bbox": [ + 139, + 151, + 473, + 165 + ], + "score": 1.0, + "content": "{k-saito,ushiku,harada}@mi.t.u-tokyo.ac.jp, saenko@bu.edu", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 278, + 191, + 333, + 203 + ], + "lines": [ + { + "bbox": [ + 276, + 190, + 335, + 204 + ], + "spans": [ + { + "bbox": [ + 276, + 190, + 335, + 204 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 143, + 216, + 468, + 380 + ], + "lines": [ + { + "bbox": [ + 142, + 216, + 469, + 228 + ], + "spans": [ + { + "bbox": [ + 142, + 216, + 469, + 228 + ], + "score": 1.0, + "content": "We present a domain adaptation method for transferring neural representations", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 226, + 470, + 239 + ], + "spans": [ + { + "bbox": [ + 141, + 226, + 470, + 239 + ], + "score": 1.0, + "content": "from label-rich source domains to unlabeled target domains. Recent adversarial", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 237, + 470, + 250 + ], + "spans": [ + { + "bbox": [ + 141, + 237, + 470, + 250 + ], + "score": 1.0, + "content": "methods proposed for this task learn to align features across domains by “fool-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 248, + 470, + 261 + ], + "spans": [ + { + "bbox": [ + 141, + 248, + 470, + 261 + ], + "score": 1.0, + "content": "ing” a special domain classifier network. However, a drawback of this approach is", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 259, + 469, + 271 + ], + "spans": [ + { + "bbox": [ + 141, + 259, + 469, + 271 + ], + "score": 1.0, + "content": "that the domain classifier simply labels the generated features as in-domain or not,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 270, + 469, + 282 + ], + "spans": [ + { + "bbox": [ + 141, + 270, + 469, + 282 + ], + "score": 1.0, + "content": "without considering the boundaries between classes. This means that ambiguous", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 142, + 282, + 469, + 293 + ], + "spans": [ + { + "bbox": [ + 142, + 282, + 469, + 293 + ], + "score": 1.0, + "content": "target features can be generated near class boundaries, reducing target classifica-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 293, + 469, + 304 + ], + "spans": [ + { + "bbox": [ + 141, + 293, + 469, + 304 + ], + "score": 1.0, + "content": "tion accuracy. We propose a novel approach, Adversarial Dropout Regularization", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 303, + 470, + 316 + ], + "spans": [ + { + "bbox": [ + 141, + 303, + 470, + 316 + ], + "score": 1.0, + "content": "(ADR), which encourages the generator to output more discriminative features for", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 142, + 315, + 470, + 326 + ], + "spans": [ + { + "bbox": [ + 142, + 315, + 470, + 326 + ], + "score": 1.0, + "content": "the target domain. Our key idea is to replace the traditional domain critic with a", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 142, + 326, + 470, + 337 + ], + "spans": [ + { + "bbox": [ + 142, + 326, + 470, + 337 + ], + "score": 1.0, + "content": "critic that detects non-discriminative features by using dropout on the classifier", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 142, + 336, + 469, + 348 + ], + "spans": [ + { + "bbox": [ + 142, + 336, + 469, + 348 + ], + "score": 1.0, + "content": "network. The generator then learns to avoid these areas of the feature space and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 347, + 470, + 360 + ], + "spans": [ + { + "bbox": [ + 141, + 347, + 470, + 360 + ], + "score": 1.0, + "content": "thus creates better features. We apply our ADR approach to the problem of un-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 358, + 469, + 370 + ], + "spans": [ + { + "bbox": [ + 141, + 358, + 469, + 370 + ], + "score": 1.0, + "content": "supervised domain adaptation for image classification and semantic segmentation", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 142, + 369, + 434, + 381 + ], + "spans": [ + { + "bbox": [ + 142, + 369, + 434, + 381 + ], + "score": 1.0, + "content": "tasks, and demonstrate significant improvements over the state of the art.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 12 + }, + { + "type": "title", + "bbox": [ + 108, + 401, + 206, + 414 + ], + "lines": [ + { + "bbox": [ + 105, + 400, + 208, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 208, + 416 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 417, + 505, + 495 + ], + "lines": [ + { + "bbox": [ + 106, + 417, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 417, + 505, + 430 + ], + "score": 1.0, + "content": "Transferring knowledge learned by deep neural networks from label-rich domains to new target", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 429, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 441 + ], + "score": 1.0, + "content": "domains is a challenging problem, especially when the source and target input distributions have", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 439, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 505, + 452 + ], + "score": 1.0, + "content": "different characteristics. Such domain shifts occurs in many practical applications. For example,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 451, + 505, + 463 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 505, + 463 + ], + "score": 1.0, + "content": "while simulated driving images rendered by games provide a rich source of labeled data for semantic", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 462, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 505, + 474 + ], + "score": 1.0, + "content": "segmentation Richter et al. (2016), deep models trained on such source data do not transfer well", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 473, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 505, + 485 + ], + "score": 1.0, + "content": "to real target domains (Fig. 1(a-d)). When target-domain labels are unavailable for fine-tuning,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 484, + 422, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 422, + 496 + ], + "score": 1.0, + "content": "unsupervised domain adaptation must be applied to improve the source model.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 500, + 504, + 566 + ], + "lines": [ + { + "bbox": [ + 106, + 501, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 505, + 512 + ], + "score": 1.0, + "content": "Recent methods for unsupervised domain adaptation attempt to reduce the discrepancy between the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 511, + 504, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 415, + 524 + ], + "score": 1.0, + "content": "source and target features via adversarial learning (Tzeng et al. (2014); Ganin", + "type": "text" + }, + { + "bbox": [ + 415, + 512, + 425, + 522 + ], + "score": 0.3, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 511, + 504, + 524 + ], + "score": 1.0, + "content": "Lempitsky (2014)).", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 522, + 506, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 317, + 535 + ], + "score": 1.0, + "content": "They divide the base network into a feature encoder", + "type": "text" + }, + { + "bbox": [ + 317, + 523, + 326, + 533 + ], + "score": 0.8, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 522, + 383, + 535 + ], + "score": 1.0, + "content": "and classifier", + "type": "text" + }, + { + "bbox": [ + 383, + 523, + 392, + 533 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 522, + 506, + 535 + ], + "score": 1.0, + "content": ", and add a separate domain", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 533, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 209, + 546 + ], + "score": 1.0, + "content": "classifier (critic) network", + "type": "text" + }, + { + "bbox": [ + 210, + 534, + 219, + 543 + ], + "score": 0.74, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 533, + 392, + 546 + ], + "score": 1.0, + "content": ". The critic takes the features generated by", + "type": "text" + }, + { + "bbox": [ + 393, + 534, + 402, + 543 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 533, + 506, + 546 + ], + "score": 1.0, + "content": "and labels them as either", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 545, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 270, + 556 + ], + "score": 1.0, + "content": "source- or target-domain. The encoder", + "type": "text" + }, + { + "bbox": [ + 270, + 545, + 279, + 554 + ], + "score": 0.8, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 545, + 506, + 556 + ], + "score": 1.0, + "content": "is then trained with an additional adversarial loss that", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 555, + 369, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 152, + 567 + ], + "score": 1.0, + "content": "maximizes", + "type": "text" + }, + { + "bbox": [ + 152, + 556, + 162, + 565 + ], + "score": 0.76, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 555, + 369, + 567 + ], + "score": 1.0, + "content": "’s mistakes and thus aligns features across domains.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 107, + 572, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "score": 1.0, + "content": "However, a major drawback of this approach is that the critic simply predicts the domain label of", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "the generated point and does not consider category information. Thus the generator may create", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "features that look like they came from the right domain, but are not discriminative. In particular,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 605, + 504, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 504, + 617 + ], + "score": 1.0, + "content": "it can generate points close to class boundaries, as shown in Fig. 1(e), which are likely to be mis-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 615, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 506, + 629 + ], + "score": 1.0, + "content": "classified by the source model. We argue that to achieve good performance on the target data, the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 626, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 641 + ], + "score": 1.0, + "content": "adaptation model must take the decision boundaries between classes into account while aligning", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 639, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 505, + 650 + ], + "score": 1.0, + "content": "features across domains (Fig. 1(f)). Moreover, since our setting is unsupervised adaptation, this", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 649, + 315, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 315, + 661 + ], + "score": 1.0, + "content": "must be accomplished without labels on target data.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "In this paper, we propose a novel adversarial alignment technique that overcomes the above limita-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "tion and preserves class boundaries. We make the following observation: if the critic could detect", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 104, + 688, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 104, + 688, + 506, + 700 + ], + "score": 1.0, + "content": "points near the decision boundary, then the generator would have to avoid these areas of the feature", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "space in order to fool the critic. Thus the critic would force the generator to create more discrimina-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 462, + 722 + ], + "score": 1.0, + "content": "tive features. How can we obtain such a critic? If we alter the boundary of the classifier", + "type": "text" + }, + { + "bbox": [ + 462, + 710, + 471, + 720 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "slightly", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 721, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 341, + 734 + ], + "score": 1.0, + "content": "and measure the change in the posterior class probability", + "type": "text" + }, + { + "bbox": [ + 342, + 721, + 369, + 732 + ], + "score": 0.92, + "content": "p ( y | x )", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 721, + 401, + 734 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 401, + 722, + 408, + 732 + ], + "score": 0.8, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 721, + 427, + 734 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 427, + 722, + 434, + 730 + ], + "score": 0.74, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 721, + 506, + 734 + ], + "score": 1.0, + "content": "denote class and", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 44.5 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 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, + 432, + 97 + ], + "lines": [ + { + "bbox": [ + 106, + 78, + 433, + 98 + ], + "spans": [ + { + "bbox": [ + 106, + 78, + 433, + 98 + ], + "score": 1.0, + "content": "ADVERSARIAL DROPOUT REGULARIZATION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 158, + 119, + 451, + 132 + ], + "lines": [ + { + "bbox": [ + 158, + 118, + 452, + 133 + ], + "spans": [ + { + "bbox": [ + 158, + 118, + 452, + 133 + ], + "score": 1.0, + "content": "Kuniaki Saito1, Yoshitaka Ushiku1, Tatsuya Harada1,2, and Kate Saenko3", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1, + "bbox_fs": [ + 158, + 118, + 452, + 133 + ] + }, + { + "type": "text", + "bbox": [ + 141, + 140, + 472, + 164 + ], + "lines": [ + { + "bbox": [ + 191, + 138, + 419, + 155 + ], + "spans": [ + { + "bbox": [ + 191, + 138, + 419, + 155 + ], + "score": 1.0, + "content": "1The University of Tokyo, 2RIKEN, 3Boston University", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 139, + 151, + 473, + 165 + ], + "spans": [ + { + "bbox": [ + 139, + 151, + 473, + 165 + ], + "score": 1.0, + "content": "{k-saito,ushiku,harada}@mi.t.u-tokyo.ac.jp, saenko@bu.edu", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 139, + 138, + 473, + 165 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 191, + 333, + 203 + ], + "lines": [ + { + "bbox": [ + 276, + 190, + 335, + 204 + ], + "spans": [ + { + "bbox": [ + 276, + 190, + 335, + 204 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 143, + 216, + 468, + 380 + ], + "lines": [ + { + "bbox": [ + 142, + 216, + 469, + 228 + ], + "spans": [ + { + "bbox": [ + 142, + 216, + 469, + 228 + ], + "score": 1.0, + "content": "We present a domain adaptation method for transferring neural representations", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 226, + 470, + 239 + ], + "spans": [ + { + "bbox": [ + 141, + 226, + 470, + 239 + ], + "score": 1.0, + "content": "from label-rich source domains to unlabeled target domains. Recent adversarial", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 237, + 470, + 250 + ], + "spans": [ + { + "bbox": [ + 141, + 237, + 470, + 250 + ], + "score": 1.0, + "content": "methods proposed for this task learn to align features across domains by “fool-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 248, + 470, + 261 + ], + "spans": [ + { + "bbox": [ + 141, + 248, + 470, + 261 + ], + "score": 1.0, + "content": "ing” a special domain classifier network. However, a drawback of this approach is", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 259, + 469, + 271 + ], + "spans": [ + { + "bbox": [ + 141, + 259, + 469, + 271 + ], + "score": 1.0, + "content": "that the domain classifier simply labels the generated features as in-domain or not,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 270, + 469, + 282 + ], + "spans": [ + { + "bbox": [ + 141, + 270, + 469, + 282 + ], + "score": 1.0, + "content": "without considering the boundaries between classes. This means that ambiguous", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 142, + 282, + 469, + 293 + ], + "spans": [ + { + "bbox": [ + 142, + 282, + 469, + 293 + ], + "score": 1.0, + "content": "target features can be generated near class boundaries, reducing target classifica-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 293, + 469, + 304 + ], + "spans": [ + { + "bbox": [ + 141, + 293, + 469, + 304 + ], + "score": 1.0, + "content": "tion accuracy. We propose a novel approach, Adversarial Dropout Regularization", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 303, + 470, + 316 + ], + "spans": [ + { + "bbox": [ + 141, + 303, + 470, + 316 + ], + "score": 1.0, + "content": "(ADR), which encourages the generator to output more discriminative features for", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 142, + 315, + 470, + 326 + ], + "spans": [ + { + "bbox": [ + 142, + 315, + 470, + 326 + ], + "score": 1.0, + "content": "the target domain. Our key idea is to replace the traditional domain critic with a", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 142, + 326, + 470, + 337 + ], + "spans": [ + { + "bbox": [ + 142, + 326, + 470, + 337 + ], + "score": 1.0, + "content": "critic that detects non-discriminative features by using dropout on the classifier", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 142, + 336, + 469, + 348 + ], + "spans": [ + { + "bbox": [ + 142, + 336, + 469, + 348 + ], + "score": 1.0, + "content": "network. The generator then learns to avoid these areas of the feature space and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 347, + 470, + 360 + ], + "spans": [ + { + "bbox": [ + 141, + 347, + 470, + 360 + ], + "score": 1.0, + "content": "thus creates better features. We apply our ADR approach to the problem of un-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 358, + 469, + 370 + ], + "spans": [ + { + "bbox": [ + 141, + 358, + 469, + 370 + ], + "score": 1.0, + "content": "supervised domain adaptation for image classification and semantic segmentation", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 142, + 369, + 434, + 381 + ], + "spans": [ + { + "bbox": [ + 142, + 369, + 434, + 381 + ], + "score": 1.0, + "content": "tasks, and demonstrate significant improvements over the state of the art.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 12, + "bbox_fs": [ + 141, + 216, + 470, + 381 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 401, + 206, + 414 + ], + "lines": [ + { + "bbox": [ + 105, + 400, + 208, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 208, + 416 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 417, + 505, + 495 + ], + "lines": [ + { + "bbox": [ + 106, + 417, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 417, + 505, + 430 + ], + "score": 1.0, + "content": "Transferring knowledge learned by deep neural networks from label-rich domains to new target", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 429, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 441 + ], + "score": 1.0, + "content": "domains is a challenging problem, especially when the source and target input distributions have", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 439, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 505, + 452 + ], + "score": 1.0, + "content": "different characteristics. Such domain shifts occurs in many practical applications. For example,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 451, + 505, + 463 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 505, + 463 + ], + "score": 1.0, + "content": "while simulated driving images rendered by games provide a rich source of labeled data for semantic", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 462, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 505, + 474 + ], + "score": 1.0, + "content": "segmentation Richter et al. (2016), deep models trained on such source data do not transfer well", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 473, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 505, + 485 + ], + "score": 1.0, + "content": "to real target domains (Fig. 1(a-d)). When target-domain labels are unavailable for fine-tuning,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 484, + 422, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 422, + 496 + ], + "score": 1.0, + "content": "unsupervised domain adaptation must be applied to improve the source model.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 417, + 505, + 496 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 500, + 504, + 566 + ], + "lines": [ + { + "bbox": [ + 106, + 501, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 505, + 512 + ], + "score": 1.0, + "content": "Recent methods for unsupervised domain adaptation attempt to reduce the discrepancy between the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 511, + 504, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 415, + 524 + ], + "score": 1.0, + "content": "source and target features via adversarial learning (Tzeng et al. (2014); Ganin", + "type": "text" + }, + { + "bbox": [ + 415, + 512, + 425, + 522 + ], + "score": 0.3, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 511, + 504, + 524 + ], + "score": 1.0, + "content": "Lempitsky (2014)).", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 522, + 506, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 317, + 535 + ], + "score": 1.0, + "content": "They divide the base network into a feature encoder", + "type": "text" + }, + { + "bbox": [ + 317, + 523, + 326, + 533 + ], + "score": 0.8, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 522, + 383, + 535 + ], + "score": 1.0, + "content": "and classifier", + "type": "text" + }, + { + "bbox": [ + 383, + 523, + 392, + 533 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 522, + 506, + 535 + ], + "score": 1.0, + "content": ", and add a separate domain", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 533, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 209, + 546 + ], + "score": 1.0, + "content": "classifier (critic) network", + "type": "text" + }, + { + "bbox": [ + 210, + 534, + 219, + 543 + ], + "score": 0.74, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 533, + 392, + 546 + ], + "score": 1.0, + "content": ". The critic takes the features generated by", + "type": "text" + }, + { + "bbox": [ + 393, + 534, + 402, + 543 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 533, + 506, + 546 + ], + "score": 1.0, + "content": "and labels them as either", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 545, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 270, + 556 + ], + "score": 1.0, + "content": "source- or target-domain. The encoder", + "type": "text" + }, + { + "bbox": [ + 270, + 545, + 279, + 554 + ], + "score": 0.8, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 545, + 506, + 556 + ], + "score": 1.0, + "content": "is then trained with an additional adversarial loss that", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 555, + 369, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 152, + 567 + ], + "score": 1.0, + "content": "maximizes", + "type": "text" + }, + { + "bbox": [ + 152, + 556, + 162, + 565 + ], + "score": 0.76, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 555, + 369, + 567 + ], + "score": 1.0, + "content": "’s mistakes and thus aligns features across domains.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 501, + 506, + 567 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 572, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "score": 1.0, + "content": "However, a major drawback of this approach is that the critic simply predicts the domain label of", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "the generated point and does not consider category information. Thus the generator may create", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "features that look like they came from the right domain, but are not discriminative. In particular,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 605, + 504, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 504, + 617 + ], + "score": 1.0, + "content": "it can generate points close to class boundaries, as shown in Fig. 1(e), which are likely to be mis-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 615, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 506, + 629 + ], + "score": 1.0, + "content": "classified by the source model. We argue that to achieve good performance on the target data, the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 626, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 641 + ], + "score": 1.0, + "content": "adaptation model must take the decision boundaries between classes into account while aligning", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 639, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 505, + 650 + ], + "score": 1.0, + "content": "features across domains (Fig. 1(f)). Moreover, since our setting is unsupervised adaptation, this", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 649, + 315, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 315, + 661 + ], + "score": 1.0, + "content": "must be accomplished without labels on target data.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 572, + 506, + 661 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "In this paper, we propose a novel adversarial alignment technique that overcomes the above limita-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "tion and preserves class boundaries. We make the following observation: if the critic could detect", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 104, + 688, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 104, + 688, + 506, + 700 + ], + "score": 1.0, + "content": "points near the decision boundary, then the generator would have to avoid these areas of the feature", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "space in order to fool the critic. Thus the critic would force the generator to create more discrimina-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 462, + 722 + ], + "score": 1.0, + "content": "tive features. How can we obtain such a critic? If we alter the boundary of the classifier", + "type": "text" + }, + { + "bbox": [ + 462, + 710, + 471, + 720 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "slightly", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 721, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 341, + 734 + ], + "score": 1.0, + "content": "and measure the change in the posterior class probability", + "type": "text" + }, + { + "bbox": [ + 342, + 721, + 369, + 732 + ], + "score": 0.92, + "content": "p ( y | x )", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 721, + 401, + 734 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 401, + 722, + 408, + 732 + ], + "score": 0.8, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 721, + 427, + 734 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 427, + 722, + 434, + 730 + ], + "score": 0.74, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 721, + 506, + 734 + ], + "score": 1.0, + "content": "denote class and", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 266, + 504, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 504, + 279 + ], + "score": 1.0, + "content": "input respectively, then samples near the decision boundary are likely to have the largest change.", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 277, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 505, + 291 + ], + "score": 1.0, + "content": "In fact, this posterior discrepancy is inversely proportional to the distance from the class boundary.", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 289, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 372, + 302 + ], + "score": 1.0, + "content": "We thus propose to maximize this posterior discrepancy to turn", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 372, + 289, + 381, + 299 + ], + "score": 0.8, + "content": "C", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 381, + 289, + 505, + 302 + ], + "score": 1.0, + "content": "into a critic sensitive to non-", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 300, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 505, + 312 + ], + "score": 1.0, + "content": "discriminative points. We call this technique Adversarial Dropout Regularization. Here, dropout is", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 311, + 505, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 505, + 323 + ], + "score": 1.0, + "content": "not used in the standard way, which is to regularize the main classifier and make it insensitive to", + "type": "text", + "cross_page": true + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 322, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 322, + 505, + 334 + ], + "score": 1.0, + "content": "noise. Instead, we use dropout in an adversarial way, to transform the classifier into a critic sensitive", + "type": "text", + "cross_page": true + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 333, + 504, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 484, + 345 + ], + "score": 1.0, + "content": "to noise. Compared to previous adversarial feature alignment methods, where the distributions", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 484, + 333, + 504, + 345 + ], + "score": 0.9, + "content": "p ( x )", + "type": "inline_equation", + "cross_page": true + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 343, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 506, + 356 + ], + "score": 1.0, + "content": "are aligned globally, our method aligns target features away from decision boundaries, as illustrated", + "type": "text", + "cross_page": true + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 353, + 153, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 153, + 367 + ], + "score": 1.0, + "content": "in Fig.1(f).", + "type": "text", + "cross_page": true + } + ], + "index": 17 + } + ], + "index": 44.5, + "bbox_fs": [ + 104, + 666, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 106, + 79, + 504, + 168 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 79, + 504, + 168 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 79, + 504, + 168 + ], + "spans": [ + { + "bbox": [ + 106, + 79, + 504, + 168 + ], + "score": 0.968, + "type": "image", + "image_path": "b6f4ca41441b05f1a91aeb791d5664cfbced0e867e90f0899d66085405d66cc1.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 79, + 504, + 108.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 108.66666666666667, + 504, + 138.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 138.33333333333334, + 504, + 168.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 178, + 505, + 245 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 178, + 505, + 191 + ], + "spans": [ + { + "bbox": [ + 105, + 178, + 505, + 191 + ], + "score": 1.0, + "content": "Figure 1: (a-d) An illustration of a deep model trained on simulated source training data failing to segment", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 190, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 190, + 505, + 201 + ], + "score": 1.0, + "content": "a real target domain image: (a) shows the target image, (b) is the ground truth segmentation into semantic", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 200, + 505, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 505, + 213 + ], + "score": 1.0, + "content": "categories (car, road, etc), (c) is the output of the unadapted source model, (d) is the improved segmenta-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 212, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 106, + 212, + 505, + 223 + ], + "score": 1.0, + "content": "tion obtained by our proposed ADR method. (e) Previous distribution matching methods do not consider the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 223, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 505, + 235 + ], + "score": 1.0, + "content": "source decision boundary when aligning source and target feature points. (f) We propose to use the boundary", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 234, + 338, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 338, + 246 + ], + "score": 1.0, + "content": "information to achieve low-density separation of aligned points.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 107, + 266, + 505, + 366 + ], + "lines": [ + { + "bbox": [ + 105, + 266, + 504, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 504, + 279 + ], + "score": 1.0, + "content": "input respectively, then samples near the decision boundary are likely to have the largest change.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 277, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 505, + 291 + ], + "score": 1.0, + "content": "In fact, this posterior discrepancy is inversely proportional to the distance from the class boundary.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 289, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 372, + 302 + ], + "score": 1.0, + "content": "We thus propose to maximize this posterior discrepancy to turn", + "type": "text" + }, + { + "bbox": [ + 372, + 289, + 381, + 299 + ], + "score": 0.8, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 289, + 505, + 302 + ], + "score": 1.0, + "content": "into a critic sensitive to non-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 300, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 505, + 312 + ], + "score": 1.0, + "content": "discriminative points. We call this technique Adversarial Dropout Regularization. Here, dropout is", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 311, + 505, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 505, + 323 + ], + "score": 1.0, + "content": "not used in the standard way, which is to regularize the main classifier and make it insensitive to", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 322, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 322, + 505, + 334 + ], + "score": 1.0, + "content": "noise. Instead, we use dropout in an adversarial way, to transform the classifier into a critic sensitive", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 333, + 504, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 484, + 345 + ], + "score": 1.0, + "content": "to noise. Compared to previous adversarial feature alignment methods, where the distributions", + "type": "text" + }, + { + "bbox": [ + 484, + 333, + 504, + 345 + ], + "score": 0.9, + "content": "p ( x )", + "type": "inline_equation" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 343, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 506, + 356 + ], + "score": 1.0, + "content": "are aligned globally, our method aligns target features away from decision boundaries, as illustrated", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 353, + 153, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 153, + 367 + ], + "score": 1.0, + "content": "in Fig.1(f).", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 371, + 505, + 470 + ], + "lines": [ + { + "bbox": [ + 106, + 372, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 395, + 384 + ], + "score": 1.0, + "content": "Our ADR approach has several benefits. First, we train the generator", + "type": "text" + }, + { + "bbox": [ + 396, + 372, + 405, + 381 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 372, + 505, + 384 + ], + "score": 1.0, + "content": "with feedback from the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 382, + 506, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 382, + 144, + 395 + ], + "score": 1.0, + "content": "classifier", + "type": "text" + }, + { + "bbox": [ + 144, + 383, + 153, + 393 + ], + "score": 0.77, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 382, + 399, + 395 + ], + "score": 1.0, + "content": ", in contrast to existing methods, which use an unrelated critic", + "type": "text" + }, + { + "bbox": [ + 400, + 383, + 409, + 392 + ], + "score": 0.72, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 382, + 506, + 395 + ], + "score": 1.0, + "content": ". Second, our method is", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 393, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 505, + 406 + ], + "score": 1.0, + "content": "general and straightforward to apply to a variety of domain adaptation problems, such as classifica-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 404, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 106, + 404, + 505, + 417 + ], + "score": 1.0, + "content": "tion and semantic segmentation. Finally, since ADR is trained to align distributions, it is also appli-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "score": 1.0, + "content": "cable to semi-supervised learning and training of generative models, such as Generative Adversarial", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 425, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 505, + 439 + ], + "score": 1.0, + "content": "Networks (GANs) (Goodfellow et al. (2014a)). Through extensive experiments, we demonstrate", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 436, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 505, + 450 + ], + "score": 1.0, + "content": "the benefit of ADR over existing domain adaptation approaches, achieving state-of-the-art results", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 447, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 505, + 461 + ], + "score": 1.0, + "content": "in difficult domain shifts. We also show an application to semi-supervised learning using GANs in", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 459, + 149, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 149, + 471 + ], + "score": 1.0, + "content": "appendix.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 22 + }, + { + "type": "title", + "bbox": [ + 108, + 488, + 211, + 501 + ], + "lines": [ + { + "bbox": [ + 104, + 487, + 213, + 504 + ], + "spans": [ + { + "bbox": [ + 104, + 487, + 213, + 504 + ], + "score": 1.0, + "content": "2 RELATED WORK", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 506, + 505, + 605 + ], + "lines": [ + { + "bbox": [ + 106, + 506, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 505, + 518 + ], + "score": 1.0, + "content": "Domain Adaptation. Recent unsupervised domain adaptation (UDA) methods for visual data aim", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 518, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 505, + 530 + ], + "score": 1.0, + "content": "to align the feature distributions of the source and target domains (Sun et al. (2016); Sun & Saenko", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "(2016); Tzeng et al. (2014); Ganin et al. (2016); Long et al. (2015b); Yan et al. (2017); Long et al.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 538, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 505, + 552 + ], + "score": 1.0, + "content": "(2017)). Such methods are motivated by theoretical results stating that minimizing the divergence", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 549, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 505, + 564 + ], + "score": 1.0, + "content": "between domains will lower the upper bound of the error on target domain (Ben-David et al. (2010)).", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 562, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 562, + 505, + 573 + ], + "score": 1.0, + "content": "Many works in deep learning utilize the technique of distribution matching in hidden layers of a", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 570, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 104, + 570, + 506, + 586 + ], + "score": 1.0, + "content": "network such as a CNN (Tzeng et al. (2014); Ganin et al. (2016); Long et al. (2015b)). However,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 581, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 505, + 597 + ], + "score": 1.0, + "content": "they measure the domain divergence based on the hidden features of the network without considering", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 593, + 478, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 478, + 608 + ], + "score": 1.0, + "content": "the relationship between its decision boundary and the target features, as we do in this paper.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 611, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 611, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 505, + 623 + ], + "score": 1.0, + "content": "Low-density Separation. Many semi-supervised learning (SSL) methods utilize the relationship", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 621, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 635 + ], + "score": 1.0, + "content": "between the decision boundary and unlabeled samples, a technique called low-density separa-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "tion (Chapelle & Zien (2005); Joachims (1999)). By placing the boundary in the area where the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 645, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 645, + 505, + 656 + ], + "score": 1.0, + "content": "unlabeled samples are sparse, these models aim to obtain discriminative representations. Our method", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 655, + 504, + 666 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 504, + 666 + ], + "score": 1.0, + "content": "aims to achieve low-density separation for deep domain adaptation and is related to entropy min-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "imization for semi-supervised learning (Grandvalet & Bengio (2005)). (Long et al. (2016)) used", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "entropy minimization in their approach to directly measure how far samples are from a decision", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 688, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 700 + ], + "score": 1.0, + "content": "boundary by calculating entropy of the classifier’s output. On the other hand, our method tries to", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "achieve low-density separation by slightly moving the boundary and detecting target samples sensi-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "tive to the movement. As long as target samples features are robust to the movement, they will be", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 720, + 479, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 479, + 733 + ], + "score": 1.0, + "content": "allowed to exist relatively nearby the boundary compared to source samples, as Fig. 1 shows.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 42 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 106, + 79, + 504, + 168 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 79, + 504, + 168 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 79, + 504, + 168 + ], + "spans": [ + { + "bbox": [ + 106, + 79, + 504, + 168 + ], + "score": 0.968, + "type": "image", + "image_path": "b6f4ca41441b05f1a91aeb791d5664cfbced0e867e90f0899d66085405d66cc1.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 79, + 504, + 108.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 108.66666666666667, + 504, + 138.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 138.33333333333334, + 504, + 168.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 178, + 505, + 245 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 178, + 505, + 191 + ], + "spans": [ + { + "bbox": [ + 105, + 178, + 505, + 191 + ], + "score": 1.0, + "content": "Figure 1: (a-d) An illustration of a deep model trained on simulated source training data failing to segment", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 190, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 190, + 505, + 201 + ], + "score": 1.0, + "content": "a real target domain image: (a) shows the target image, (b) is the ground truth segmentation into semantic", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 200, + 505, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 505, + 213 + ], + "score": 1.0, + "content": "categories (car, road, etc), (c) is the output of the unadapted source model, (d) is the improved segmenta-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 212, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 106, + 212, + 505, + 223 + ], + "score": 1.0, + "content": "tion obtained by our proposed ADR method. (e) Previous distribution matching methods do not consider the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 223, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 505, + 235 + ], + "score": 1.0, + "content": "source decision boundary when aligning source and target feature points. (f) We propose to use the boundary", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 234, + 338, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 338, + 246 + ], + "score": 1.0, + "content": "information to achieve low-density separation of aligned points.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 107, + 266, + 505, + 366 + ], + "lines": [], + "index": 13, + "bbox_fs": [ + 105, + 266, + 506, + 367 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 371, + 505, + 470 + ], + "lines": [ + { + "bbox": [ + 106, + 372, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 395, + 384 + ], + "score": 1.0, + "content": "Our ADR approach has several benefits. First, we train the generator", + "type": "text" + }, + { + "bbox": [ + 396, + 372, + 405, + 381 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 372, + 505, + 384 + ], + "score": 1.0, + "content": "with feedback from the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 382, + 506, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 382, + 144, + 395 + ], + "score": 1.0, + "content": "classifier", + "type": "text" + }, + { + "bbox": [ + 144, + 383, + 153, + 393 + ], + "score": 0.77, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 382, + 399, + 395 + ], + "score": 1.0, + "content": ", in contrast to existing methods, which use an unrelated critic", + "type": "text" + }, + { + "bbox": [ + 400, + 383, + 409, + 392 + ], + "score": 0.72, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 382, + 506, + 395 + ], + "score": 1.0, + "content": ". Second, our method is", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 393, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 505, + 406 + ], + "score": 1.0, + "content": "general and straightforward to apply to a variety of domain adaptation problems, such as classifica-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 404, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 106, + 404, + 505, + 417 + ], + "score": 1.0, + "content": "tion and semantic segmentation. Finally, since ADR is trained to align distributions, it is also appli-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "score": 1.0, + "content": "cable to semi-supervised learning and training of generative models, such as Generative Adversarial", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 425, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 505, + 439 + ], + "score": 1.0, + "content": "Networks (GANs) (Goodfellow et al. (2014a)). Through extensive experiments, we demonstrate", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 436, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 505, + 450 + ], + "score": 1.0, + "content": "the benefit of ADR over existing domain adaptation approaches, achieving state-of-the-art results", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 447, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 505, + 461 + ], + "score": 1.0, + "content": "in difficult domain shifts. We also show an application to semi-supervised learning using GANs in", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 459, + 149, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 149, + 471 + ], + "score": 1.0, + "content": "appendix.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 372, + 506, + 471 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 488, + 211, + 501 + ], + "lines": [ + { + "bbox": [ + 104, + 487, + 213, + 504 + ], + "spans": [ + { + "bbox": [ + 104, + 487, + 213, + 504 + ], + "score": 1.0, + "content": "2 RELATED WORK", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 506, + 505, + 605 + ], + "lines": [ + { + "bbox": [ + 106, + 506, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 505, + 518 + ], + "score": 1.0, + "content": "Domain Adaptation. Recent unsupervised domain adaptation (UDA) methods for visual data aim", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 518, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 505, + 530 + ], + "score": 1.0, + "content": "to align the feature distributions of the source and target domains (Sun et al. (2016); Sun & Saenko", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "(2016); Tzeng et al. (2014); Ganin et al. (2016); Long et al. (2015b); Yan et al. (2017); Long et al.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 538, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 505, + 552 + ], + "score": 1.0, + "content": "(2017)). Such methods are motivated by theoretical results stating that minimizing the divergence", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 549, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 505, + 564 + ], + "score": 1.0, + "content": "between domains will lower the upper bound of the error on target domain (Ben-David et al. (2010)).", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 562, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 562, + 505, + 573 + ], + "score": 1.0, + "content": "Many works in deep learning utilize the technique of distribution matching in hidden layers of a", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 570, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 104, + 570, + 506, + 586 + ], + "score": 1.0, + "content": "network such as a CNN (Tzeng et al. (2014); Ganin et al. (2016); Long et al. (2015b)). However,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 581, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 505, + 597 + ], + "score": 1.0, + "content": "they measure the domain divergence based on the hidden features of the network without considering", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 593, + 478, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 478, + 608 + ], + "score": 1.0, + "content": "the relationship between its decision boundary and the target features, as we do in this paper.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 32, + "bbox_fs": [ + 104, + 506, + 506, + 608 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 611, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 611, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 505, + 623 + ], + "score": 1.0, + "content": "Low-density Separation. Many semi-supervised learning (SSL) methods utilize the relationship", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 621, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 635 + ], + "score": 1.0, + "content": "between the decision boundary and unlabeled samples, a technique called low-density separa-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "tion (Chapelle & Zien (2005); Joachims (1999)). By placing the boundary in the area where the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 645, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 645, + 505, + 656 + ], + "score": 1.0, + "content": "unlabeled samples are sparse, these models aim to obtain discriminative representations. Our method", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 655, + 504, + 666 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 504, + 666 + ], + "score": 1.0, + "content": "aims to achieve low-density separation for deep domain adaptation and is related to entropy min-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "imization for semi-supervised learning (Grandvalet & Bengio (2005)). (Long et al. (2016)) used", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "entropy minimization in their approach to directly measure how far samples are from a decision", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 688, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 700 + ], + "score": 1.0, + "content": "boundary by calculating entropy of the classifier’s output. On the other hand, our method tries to", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "achieve low-density separation by slightly moving the boundary and detecting target samples sensi-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "tive to the movement. As long as target samples features are robust to the movement, they will be", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 720, + 479, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 479, + 733 + ], + "score": 1.0, + "content": "allowed to exist relatively nearby the boundary compared to source samples, as Fig. 1 shows.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 42, + "bbox_fs": [ + 105, + 611, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 182 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 94 + ], + "score": 1.0, + "content": "In (Long et al. (2016)) entropy minimization is only a part of the overall approach. To compare", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 105 + ], + "score": 1.0, + "content": "our ADR approach to entropy minimization more directly, we use a new baseline method. To our", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 118 + ], + "score": 1.0, + "content": "knowledge, though this method has not been proposed by any previous work, it is easily achieved", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "by modifying a method proposed by (Springenberg (2015)). For this baseline, we train a model that", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 127, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 506, + 139 + ], + "score": 1.0, + "content": "generates features to minimize the entropy of the output probability for target samples. The details", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 136, + 506, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 506, + 150 + ], + "score": 1.0, + "content": "of the baseline are provided in appendix. In short, the generator tries to minimize the entropy of", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 148, + 505, + 160 + ], + "spans": [ + { + "bbox": [ + 106, + 148, + 505, + 160 + ], + "score": 1.0, + "content": "the target samples, whereas the critic tries to maximize it. The entropy is directly measured by the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 158, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 506, + 173 + ], + "score": 1.0, + "content": "output of the classifier. This baseline is similar to our approach in that the goal of the method is to", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 170, + 234, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 170, + 234, + 183 + ], + "score": 1.0, + "content": "achieve low-density separation.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 107, + 187, + 505, + 286 + ], + "lines": [ + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "score": 1.0, + "content": "Dropout. Dropout is a method that prevents deep networks from overfitting (Srivastava et al. (2014))", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 198, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 505, + 211 + ], + "score": 1.0, + "content": "by randomly dropping units from the neural network during training. Effectively, dropout samples", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 208, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 208, + 505, + 222 + ], + "score": 1.0, + "content": "from an exponential number of different thinned networks at training time, which prevents units from", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 221, + 506, + 232 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 506, + 232 + ], + "score": 1.0, + "content": "co-adapting too much. At test time, predictions are obtained by using the outputs of all neurons. If", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 230, + 506, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 506, + 245 + ], + "score": 1.0, + "content": "the thinned networks are able to classify the samples accurately, the full network will as well. In", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 242, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 106, + 242, + 505, + 255 + ], + "score": 1.0, + "content": "other words, dropout encourages the network to be robust to noise. In our work, we use dropout to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 253, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 275, + 265 + ], + "score": 1.0, + "content": "regularize the feature generation network", + "type": "text" + }, + { + "bbox": [ + 275, + 253, + 284, + 263 + ], + "score": 0.8, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 253, + 471, + 265 + ], + "score": 1.0, + "content": ", but in an adversarial way. We train the critic", + "type": "text" + }, + { + "bbox": [ + 472, + 253, + 481, + 263 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 253, + 505, + 265 + ], + "score": 1.0, + "content": "to be", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 264, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 302, + 276 + ], + "score": 1.0, + "content": "sensitive to the noise caused by dropout and use", + "type": "text" + }, + { + "bbox": [ + 302, + 264, + 311, + 274 + ], + "score": 0.82, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 264, + 365, + 276 + ], + "score": 1.0, + "content": "to regularize", + "type": "text" + }, + { + "bbox": [ + 365, + 264, + 374, + 274 + ], + "score": 0.78, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 264, + 505, + 276 + ], + "score": 1.0, + "content": "so that it generates noise-robust", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 275, + 484, + 287 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 484, + 287 + ], + "score": 1.0, + "content": "features. To our knowledge, this use of dropout is completely different from existing methods.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 13 + }, + { + "type": "title", + "bbox": [ + 107, + 302, + 173, + 314 + ], + "lines": [ + { + "bbox": [ + 104, + 299, + 175, + 317 + ], + "spans": [ + { + "bbox": [ + 104, + 299, + 175, + 317 + ], + "score": 1.0, + "content": "3 METHOD", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 318, + 505, + 414 + ], + "lines": [ + { + "bbox": [ + 106, + 317, + 505, + 331 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 344, + 331 + ], + "score": 1.0, + "content": "We assume that we have access to a labeled source image", + "type": "text" + }, + { + "bbox": [ + 344, + 320, + 356, + 329 + ], + "score": 0.86, + "content": "\\mathbf { x _ { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 317, + 465, + 331 + ], + "score": 1.0, + "content": "and a corresponding label", + "type": "text" + }, + { + "bbox": [ + 465, + 320, + 476, + 330 + ], + "score": 0.84, + "content": "y _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 317, + 505, + 331 + ], + "score": 1.0, + "content": "drawn", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 328, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 252, + 342 + ], + "score": 1.0, + "content": "from a set of labeled source images", + "type": "text" + }, + { + "bbox": [ + 253, + 329, + 290, + 341 + ], + "score": 0.93, + "content": "\\{ X _ { s } , Y _ { s } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 328, + 442, + 342 + ], + "score": 1.0, + "content": ", as well as an unlabeled target image", + "type": "text" + }, + { + "bbox": [ + 443, + 331, + 454, + 340 + ], + "score": 0.82, + "content": "\\mathbf { x _ { t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 328, + 505, + 342 + ], + "score": 1.0, + "content": "drawn from", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 337, + 506, + 355 + ], + "spans": [ + { + "bbox": [ + 104, + 337, + 204, + 355 + ], + "score": 1.0, + "content": "unlabeled target images", + "type": "text" + }, + { + "bbox": [ + 204, + 340, + 217, + 351 + ], + "score": 0.88, + "content": "X _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 337, + 376, + 355 + ], + "score": 1.0, + "content": ". We train a feature generation network", + "type": "text" + }, + { + "bbox": [ + 376, + 340, + 385, + 350 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 337, + 466, + 355 + ], + "score": 1.0, + "content": ", which takes inputs", + "type": "text" + }, + { + "bbox": [ + 466, + 342, + 478, + 351 + ], + "score": 0.86, + "content": "\\mathbf { x _ { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 337, + 489, + 355 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 490, + 342, + 501, + 351 + ], + "score": 0.84, + "content": "\\mathbf { x _ { t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 337, + 506, + 355 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 351, + 504, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 165, + 363 + ], + "score": 1.0, + "content": "and a network", + "type": "text" + }, + { + "bbox": [ + 165, + 352, + 174, + 361 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 351, + 495, + 363 + ], + "score": 1.0, + "content": "that acts as both the main classifier and the critic. When acting as the classifier,", + "type": "text" + }, + { + "bbox": [ + 495, + 352, + 504, + 361 + ], + "score": 0.8, + "content": "C", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 361, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 183, + 374 + ], + "score": 1.0, + "content": "takes features from", + "type": "text" + }, + { + "bbox": [ + 184, + 362, + 193, + 372 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 361, + 288, + 374 + ], + "score": 1.0, + "content": "and classifies them into", + "type": "text" + }, + { + "bbox": [ + 288, + 362, + 298, + 372 + ], + "score": 0.83, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 361, + 380, + 374 + ], + "score": 1.0, + "content": "classes, predicting a", + "type": "text" + }, + { + "bbox": [ + 380, + 362, + 390, + 372 + ], + "score": 0.83, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 361, + 505, + 374 + ], + "score": 1.0, + "content": "-dimensional vector of logits", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 107, + 373, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 107, + 373, + 168, + 385 + ], + "score": 0.93, + "content": "\\{ l _ { 1 } , l _ { 2 } , l _ { 3 } . . . l _ { K } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 373, + 505, + 386 + ], + "score": 1.0, + "content": ". The logits are then converted to class probabilities by applying the softmax function.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 383, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 222, + 406 + ], + "score": 1.0, + "content": "Namely, the probability that", + "type": "text" + }, + { + "bbox": [ + 223, + 388, + 231, + 397 + ], + "score": 0.64, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 383, + 322, + 406 + ], + "score": 1.0, + "content": "is classified into class", + "type": "text" + }, + { + "bbox": [ + 322, + 387, + 329, + 398 + ], + "score": 0.81, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 383, + 387, + 406 + ], + "score": 1.0, + "content": "is denoted by", + "type": "text" + }, + { + "bbox": [ + 388, + 384, + 501, + 403 + ], + "score": 0.92, + "content": "\\begin{array} { r } { p ( y = j | \\mathbf { x } ) = \\frac { e x p ( l _ { j } ) } { \\sum _ { k = 1 } ^ { K } e x p ( l _ { k } ) } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 383, + 506, + 406 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 401, + 464, + 415 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 187, + 415 + ], + "score": 1.0, + "content": "We use the notation", + "type": "text" + }, + { + "bbox": [ + 188, + 401, + 216, + 414 + ], + "score": 0.92, + "content": "p ( \\mathbf { y } \\vert \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 401, + 272, + 415 + ], + "score": 1.0, + "content": "to denote the", + "type": "text" + }, + { + "bbox": [ + 272, + 402, + 282, + 412 + ], + "score": 0.82, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 401, + 453, + 415 + ], + "score": 1.0, + "content": "-dimensional probabilistic output for input", + "type": "text" + }, + { + "bbox": [ + 453, + 405, + 460, + 411 + ], + "score": 0.49, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 401, + 464, + 415 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 106, + 419, + 505, + 539 + ], + "lines": [ + { + "bbox": [ + 105, + 418, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 133, + 431 + ], + "score": 1.0, + "content": "When", + "type": "text" + }, + { + "bbox": [ + 134, + 419, + 143, + 429 + ], + "score": 0.8, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 418, + 505, + 431 + ], + "score": 1.0, + "content": "is acting as the critic, we want it to detect the feature encodings of target samples near", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 430, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 287, + 442 + ], + "score": 1.0, + "content": "the decision boundary. We propose to make", + "type": "text" + }, + { + "bbox": [ + 288, + 430, + 297, + 439 + ], + "score": 0.8, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 430, + 505, + 442 + ], + "score": 1.0, + "content": "sensitive to such samples by slightly perturbing its", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 439, + 505, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 420, + 454 + ], + "score": 1.0, + "content": "decision boundary and measuring the change in the posterior class probability", + "type": "text" + }, + { + "bbox": [ + 420, + 441, + 449, + 452 + ], + "score": 0.93, + "content": "p ( \\mathbf { y } \\vert \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 439, + 505, + 454 + ], + "score": 1.0, + "content": ". This change", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 451, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 421, + 464 + ], + "score": 1.0, + "content": "is likely to be largest for samples near the decision boundary. The network", + "type": "text" + }, + { + "bbox": [ + 421, + 452, + 430, + 461 + ], + "score": 0.8, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 451, + 506, + 464 + ], + "score": 1.0, + "content": "is then trained to", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 461, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 351, + 475 + ], + "score": 1.0, + "content": "increase this change, while the feature generation network", + "type": "text" + }, + { + "bbox": [ + 351, + 463, + 360, + 472 + ], + "score": 0.8, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 461, + 505, + 475 + ], + "score": 1.0, + "content": "is trained to decrease it. Through", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 474, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 206, + 486 + ], + "score": 1.0, + "content": "this adversarial training,", + "type": "text" + }, + { + "bbox": [ + 207, + 474, + 216, + 484 + ], + "score": 0.78, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 474, + 505, + 486 + ], + "score": 1.0, + "content": "learns to ‘fool’ the critic and generate target features far away from the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 484, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 395, + 497 + ], + "score": 1.0, + "content": "decision boundary, thus avoiding ambiguous features. The weights of", + "type": "text" + }, + { + "bbox": [ + 396, + 485, + 405, + 494 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 484, + 506, + 497 + ], + "score": 1.0, + "content": "can be initialized either", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 495, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 474, + 508 + ], + "score": 1.0, + "content": "by pre-training on some auxiliary dataset (e.g., ImageNet), or with random weights, while", + "type": "text" + }, + { + "bbox": [ + 475, + 496, + 484, + 506 + ], + "score": 0.79, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 495, + 506, + 508 + ], + "score": 1.0, + "content": "uses", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 506, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 104, + 506, + 505, + 519 + ], + "score": 1.0, + "content": "random initialization. In the next section, we show how we utilize dropout to perturb the boundary", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 518, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 505, + 530 + ], + "score": 1.0, + "content": "in the critic and measure sensitivity. We then show the training procedure of our method. Finally,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 529, + 495, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 495, + 541 + ], + "score": 1.0, + "content": "we give some intuition behind adversarial dropout and improve our method based on this insight.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 32 + }, + { + "type": "title", + "bbox": [ + 108, + 553, + 296, + 564 + ], + "lines": [ + { + "bbox": [ + 106, + 552, + 298, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 552, + 298, + 565 + ], + "score": 1.0, + "content": "3.1 CLASSIFIER SELECTION VIA DROPOUT", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 108, + 565, + 504, + 598 + ], + "lines": [ + { + "bbox": [ + 106, + 564, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 505, + 578 + ], + "score": 1.0, + "content": "Consider the standard training of a neural network using dropout. For every sample within a mini-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 576, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 505, + 588 + ], + "score": 1.0, + "content": "batch, each node of the network is removed with some probability, effectively selecting a different", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 586, + 450, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 450, + 601 + ], + "score": 1.0, + "content": "classifier for every sample during training. We harness this idea in a very simple way.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 107, + 603, + 505, + 681 + ], + "lines": [ + { + "bbox": [ + 105, + 602, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 602, + 218, + 617 + ], + "score": 1.0, + "content": "We forward input features", + "type": "text" + }, + { + "bbox": [ + 218, + 604, + 245, + 615 + ], + "score": 0.93, + "content": "G ( \\bf x _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 602, + 259, + 617 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 259, + 604, + 268, + 614 + ], + "score": 0.82, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 602, + 506, + 617 + ], + "score": 1.0, + "content": "twice, dropping different nodes each time and obtaining", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 614, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 268, + 628 + ], + "score": 1.0, + "content": "two different output vectors denoted as", + "type": "text" + }, + { + "bbox": [ + 268, + 614, + 314, + 627 + ], + "score": 0.86, + "content": "C _ { 1 } ( G ( \\mathbf { x _ { t } } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 614, + 319, + 628 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 320, + 614, + 365, + 627 + ], + "score": 0.84, + "content": "\\bar { C } _ { 2 } \\bar { ( \\cal G ( x _ { t } ) ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 614, + 505, + 628 + ], + "score": 1.0, + "content": ". In other words, we are selecting", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 624, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 202, + 639 + ], + "score": 1.0, + "content": "two different classifiers", + "type": "text" + }, + { + "bbox": [ + 203, + 626, + 215, + 637 + ], + "score": 0.89, + "content": "C _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 624, + 234, + 639 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 234, + 626, + 246, + 637 + ], + "score": 0.88, + "content": "C _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 624, + 270, + 639 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 270, + 627, + 279, + 636 + ], + "score": 0.8, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 624, + 505, + 639 + ], + "score": 1.0, + "content": "by dropout as in Fig. 2. In the figure, the corresponding", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 636, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 259, + 650 + ], + "score": 1.0, + "content": "posterior probabilities are indicated as", + "type": "text" + }, + { + "bbox": [ + 259, + 637, + 297, + 649 + ], + "score": 0.75, + "content": "p _ { 1 } ( \\mathbf { y } | \\mathbf { x _ { t } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 636, + 300, + 650 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 300, + 636, + 338, + 649 + ], + "score": 0.66, + "content": "p _ { 2 } ( \\mathbf { y } \\vert \\mathbf { x _ { t } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 636, + 399, + 650 + ], + "score": 1.0, + "content": ", abbreviated as", + "type": "text" + }, + { + "bbox": [ + 400, + 638, + 411, + 648 + ], + "score": 0.86, + "content": "p _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 636, + 428, + 650 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 428, + 638, + 439, + 648 + ], + "score": 0.85, + "content": "p _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 636, + 505, + 650 + ], + "score": 1.0, + "content": "in the following", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 647, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 647, + 505, + 660 + ], + "score": 1.0, + "content": "discussion. In order to detect the change of predictions near the boundary, the critic tries to increase", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 658, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 272, + 672 + ], + "score": 1.0, + "content": "the difference between the predictions of", + "type": "text" + }, + { + "bbox": [ + 272, + 659, + 285, + 669 + ], + "score": 0.9, + "content": "C _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 658, + 303, + 672 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 303, + 659, + 316, + 669 + ], + "score": 0.89, + "content": "C _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 658, + 444, + 672 + ], + "score": 1.0, + "content": ". This difference corresponds to", + "type": "text" + }, + { + "bbox": [ + 445, + 659, + 454, + 668 + ], + "score": 0.77, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 658, + 505, + 672 + ], + "score": 1.0, + "content": "’s sensitivity", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 669, + 233, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 233, + 683 + ], + "score": 1.0, + "content": "to the noise caused by dropout.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 45 + }, + { + "type": "text", + "bbox": [ + 107, + 686, + 503, + 709 + ], + "lines": [ + { + "bbox": [ + 106, + 686, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 686, + 218, + 699 + ], + "score": 1.0, + "content": "To measure the sensitivity", + "type": "text" + }, + { + "bbox": [ + 218, + 687, + 255, + 698 + ], + "score": 0.92, + "content": "d ( p _ { 1 } , p _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 686, + 505, + 699 + ], + "score": 1.0, + "content": "between the two obtained probabilistic outputs, we use the", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 696, + 457, + 710 + ], + "spans": [ + { + "bbox": [ + 105, + 696, + 457, + 710 + ], + "score": 1.0, + "content": "symmetric Kullback Leibler (KL) divergence. Formally, the divergence is calculated as", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 49.5 + }, + { + "type": "interline_equation", + "bbox": [ + 220, + 712, + 390, + 735 + ], + "lines": [ + { + "bbox": [ + 220, + 712, + 390, + 735 + ], + "spans": [ + { + "bbox": [ + 220, + 712, + 390, + 735 + ], + "score": 0.94, + "content": "d ( p _ { 1 } , p _ { 2 } ) = { \\frac { 1 } { 2 } } ( D _ { k l } ( p _ { 1 } | p _ { 2 } ) + D _ { k l } ( p _ { 2 } | p _ { 1 } ) )", + "type": "interline_equation", + "image_path": "1a8da715d2418ce484565bf6a1b5fd22b4e62eda43cef1ad4e37e44d98b65311.jpg" + } + ] + } + ], + "index": 51, + "virtual_lines": [ + { + "bbox": [ + 220, + 712, + 390, + 735 + ], + "spans": [], + "index": 51 + } + ] + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 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": [ + 106, + 82, + 505, + 182 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 94 + ], + "score": 1.0, + "content": "In (Long et al. (2016)) entropy minimization is only a part of the overall approach. To compare", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 105 + ], + "score": 1.0, + "content": "our ADR approach to entropy minimization more directly, we use a new baseline method. To our", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 118 + ], + "score": 1.0, + "content": "knowledge, though this method has not been proposed by any previous work, it is easily achieved", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "by modifying a method proposed by (Springenberg (2015)). For this baseline, we train a model that", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 127, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 506, + 139 + ], + "score": 1.0, + "content": "generates features to minimize the entropy of the output probability for target samples. The details", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 136, + 506, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 506, + 150 + ], + "score": 1.0, + "content": "of the baseline are provided in appendix. In short, the generator tries to minimize the entropy of", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 148, + 505, + 160 + ], + "spans": [ + { + "bbox": [ + 106, + 148, + 505, + 160 + ], + "score": 1.0, + "content": "the target samples, whereas the critic tries to maximize it. The entropy is directly measured by the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 158, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 506, + 173 + ], + "score": 1.0, + "content": "output of the classifier. This baseline is similar to our approach in that the goal of the method is to", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 170, + 234, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 170, + 234, + 183 + ], + "score": 1.0, + "content": "achieve low-density separation.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 82, + 506, + 183 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 187, + 505, + 286 + ], + "lines": [ + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "score": 1.0, + "content": "Dropout. Dropout is a method that prevents deep networks from overfitting (Srivastava et al. (2014))", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 198, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 505, + 211 + ], + "score": 1.0, + "content": "by randomly dropping units from the neural network during training. Effectively, dropout samples", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 208, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 208, + 505, + 222 + ], + "score": 1.0, + "content": "from an exponential number of different thinned networks at training time, which prevents units from", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 221, + 506, + 232 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 506, + 232 + ], + "score": 1.0, + "content": "co-adapting too much. At test time, predictions are obtained by using the outputs of all neurons. If", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 230, + 506, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 506, + 245 + ], + "score": 1.0, + "content": "the thinned networks are able to classify the samples accurately, the full network will as well. In", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 242, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 106, + 242, + 505, + 255 + ], + "score": 1.0, + "content": "other words, dropout encourages the network to be robust to noise. In our work, we use dropout to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 253, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 275, + 265 + ], + "score": 1.0, + "content": "regularize the feature generation network", + "type": "text" + }, + { + "bbox": [ + 275, + 253, + 284, + 263 + ], + "score": 0.8, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 253, + 471, + 265 + ], + "score": 1.0, + "content": ", but in an adversarial way. We train the critic", + "type": "text" + }, + { + "bbox": [ + 472, + 253, + 481, + 263 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 253, + 505, + 265 + ], + "score": 1.0, + "content": "to be", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 264, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 302, + 276 + ], + "score": 1.0, + "content": "sensitive to the noise caused by dropout and use", + "type": "text" + }, + { + "bbox": [ + 302, + 264, + 311, + 274 + ], + "score": 0.82, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 264, + 365, + 276 + ], + "score": 1.0, + "content": "to regularize", + "type": "text" + }, + { + "bbox": [ + 365, + 264, + 374, + 274 + ], + "score": 0.78, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 264, + 505, + 276 + ], + "score": 1.0, + "content": "so that it generates noise-robust", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 275, + 484, + 287 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 484, + 287 + ], + "score": 1.0, + "content": "features. To our knowledge, this use of dropout is completely different from existing methods.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 187, + 506, + 287 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 302, + 173, + 314 + ], + "lines": [ + { + "bbox": [ + 104, + 299, + 175, + 317 + ], + "spans": [ + { + "bbox": [ + 104, + 299, + 175, + 317 + ], + "score": 1.0, + "content": "3 METHOD", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 318, + 505, + 414 + ], + "lines": [ + { + "bbox": [ + 106, + 317, + 505, + 331 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 344, + 331 + ], + "score": 1.0, + "content": "We assume that we have access to a labeled source image", + "type": "text" + }, + { + "bbox": [ + 344, + 320, + 356, + 329 + ], + "score": 0.86, + "content": "\\mathbf { x _ { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 317, + 465, + 331 + ], + "score": 1.0, + "content": "and a corresponding label", + "type": "text" + }, + { + "bbox": [ + 465, + 320, + 476, + 330 + ], + "score": 0.84, + "content": "y _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 317, + 505, + 331 + ], + "score": 1.0, + "content": "drawn", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 328, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 252, + 342 + ], + "score": 1.0, + "content": "from a set of labeled source images", + "type": "text" + }, + { + "bbox": [ + 253, + 329, + 290, + 341 + ], + "score": 0.93, + "content": "\\{ X _ { s } , Y _ { s } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 328, + 442, + 342 + ], + "score": 1.0, + "content": ", as well as an unlabeled target image", + "type": "text" + }, + { + "bbox": [ + 443, + 331, + 454, + 340 + ], + "score": 0.82, + "content": "\\mathbf { x _ { t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 328, + 505, + 342 + ], + "score": 1.0, + "content": "drawn from", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 337, + 506, + 355 + ], + "spans": [ + { + "bbox": [ + 104, + 337, + 204, + 355 + ], + "score": 1.0, + "content": "unlabeled target images", + "type": "text" + }, + { + "bbox": [ + 204, + 340, + 217, + 351 + ], + "score": 0.88, + "content": "X _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 337, + 376, + 355 + ], + "score": 1.0, + "content": ". We train a feature generation network", + "type": "text" + }, + { + "bbox": [ + 376, + 340, + 385, + 350 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 337, + 466, + 355 + ], + "score": 1.0, + "content": ", which takes inputs", + "type": "text" + }, + { + "bbox": [ + 466, + 342, + 478, + 351 + ], + "score": 0.86, + "content": "\\mathbf { x _ { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 337, + 489, + 355 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 490, + 342, + 501, + 351 + ], + "score": 0.84, + "content": "\\mathbf { x _ { t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 337, + 506, + 355 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 351, + 504, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 165, + 363 + ], + "score": 1.0, + "content": "and a network", + "type": "text" + }, + { + "bbox": [ + 165, + 352, + 174, + 361 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 351, + 495, + 363 + ], + "score": 1.0, + "content": "that acts as both the main classifier and the critic. When acting as the classifier,", + "type": "text" + }, + { + "bbox": [ + 495, + 352, + 504, + 361 + ], + "score": 0.8, + "content": "C", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 361, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 183, + 374 + ], + "score": 1.0, + "content": "takes features from", + "type": "text" + }, + { + "bbox": [ + 184, + 362, + 193, + 372 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 361, + 288, + 374 + ], + "score": 1.0, + "content": "and classifies them into", + "type": "text" + }, + { + "bbox": [ + 288, + 362, + 298, + 372 + ], + "score": 0.83, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 361, + 380, + 374 + ], + "score": 1.0, + "content": "classes, predicting a", + "type": "text" + }, + { + "bbox": [ + 380, + 362, + 390, + 372 + ], + "score": 0.83, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 361, + 505, + 374 + ], + "score": 1.0, + "content": "-dimensional vector of logits", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 107, + 373, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 107, + 373, + 168, + 385 + ], + "score": 0.93, + "content": "\\{ l _ { 1 } , l _ { 2 } , l _ { 3 } . . . l _ { K } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 373, + 505, + 386 + ], + "score": 1.0, + "content": ". The logits are then converted to class probabilities by applying the softmax function.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 383, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 222, + 406 + ], + "score": 1.0, + "content": "Namely, the probability that", + "type": "text" + }, + { + "bbox": [ + 223, + 388, + 231, + 397 + ], + "score": 0.64, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 383, + 322, + 406 + ], + "score": 1.0, + "content": "is classified into class", + "type": "text" + }, + { + "bbox": [ + 322, + 387, + 329, + 398 + ], + "score": 0.81, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 383, + 387, + 406 + ], + "score": 1.0, + "content": "is denoted by", + "type": "text" + }, + { + "bbox": [ + 388, + 384, + 501, + 403 + ], + "score": 0.92, + "content": "\\begin{array} { r } { p ( y = j | \\mathbf { x } ) = \\frac { e x p ( l _ { j } ) } { \\sum _ { k = 1 } ^ { K } e x p ( l _ { k } ) } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 383, + 506, + 406 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 401, + 464, + 415 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 187, + 415 + ], + "score": 1.0, + "content": "We use the notation", + "type": "text" + }, + { + "bbox": [ + 188, + 401, + 216, + 414 + ], + "score": 0.92, + "content": "p ( \\mathbf { y } \\vert \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 401, + 272, + 415 + ], + "score": 1.0, + "content": "to denote the", + "type": "text" + }, + { + "bbox": [ + 272, + 402, + 282, + 412 + ], + "score": 0.82, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 401, + 453, + 415 + ], + "score": 1.0, + "content": "-dimensional probabilistic output for input", + "type": "text" + }, + { + "bbox": [ + 453, + 405, + 460, + 411 + ], + "score": 0.49, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 401, + 464, + 415 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 22.5, + "bbox_fs": [ + 104, + 317, + 506, + 415 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 419, + 505, + 539 + ], + "lines": [ + { + "bbox": [ + 105, + 418, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 133, + 431 + ], + "score": 1.0, + "content": "When", + "type": "text" + }, + { + "bbox": [ + 134, + 419, + 143, + 429 + ], + "score": 0.8, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 418, + 505, + 431 + ], + "score": 1.0, + "content": "is acting as the critic, we want it to detect the feature encodings of target samples near", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 430, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 287, + 442 + ], + "score": 1.0, + "content": "the decision boundary. We propose to make", + "type": "text" + }, + { + "bbox": [ + 288, + 430, + 297, + 439 + ], + "score": 0.8, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 430, + 505, + 442 + ], + "score": 1.0, + "content": "sensitive to such samples by slightly perturbing its", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 439, + 505, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 420, + 454 + ], + "score": 1.0, + "content": "decision boundary and measuring the change in the posterior class probability", + "type": "text" + }, + { + "bbox": [ + 420, + 441, + 449, + 452 + ], + "score": 0.93, + "content": "p ( \\mathbf { y } \\vert \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 439, + 505, + 454 + ], + "score": 1.0, + "content": ". This change", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 451, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 421, + 464 + ], + "score": 1.0, + "content": "is likely to be largest for samples near the decision boundary. The network", + "type": "text" + }, + { + "bbox": [ + 421, + 452, + 430, + 461 + ], + "score": 0.8, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 451, + 506, + 464 + ], + "score": 1.0, + "content": "is then trained to", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 461, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 351, + 475 + ], + "score": 1.0, + "content": "increase this change, while the feature generation network", + "type": "text" + }, + { + "bbox": [ + 351, + 463, + 360, + 472 + ], + "score": 0.8, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 461, + 505, + 475 + ], + "score": 1.0, + "content": "is trained to decrease it. Through", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 474, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 206, + 486 + ], + "score": 1.0, + "content": "this adversarial training,", + "type": "text" + }, + { + "bbox": [ + 207, + 474, + 216, + 484 + ], + "score": 0.78, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 474, + 505, + 486 + ], + "score": 1.0, + "content": "learns to ‘fool’ the critic and generate target features far away from the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 484, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 395, + 497 + ], + "score": 1.0, + "content": "decision boundary, thus avoiding ambiguous features. The weights of", + "type": "text" + }, + { + "bbox": [ + 396, + 485, + 405, + 494 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 484, + 506, + 497 + ], + "score": 1.0, + "content": "can be initialized either", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 495, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 474, + 508 + ], + "score": 1.0, + "content": "by pre-training on some auxiliary dataset (e.g., ImageNet), or with random weights, while", + "type": "text" + }, + { + "bbox": [ + 475, + 496, + 484, + 506 + ], + "score": 0.79, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 495, + 506, + 508 + ], + "score": 1.0, + "content": "uses", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 506, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 104, + 506, + 505, + 519 + ], + "score": 1.0, + "content": "random initialization. In the next section, we show how we utilize dropout to perturb the boundary", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 518, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 505, + 530 + ], + "score": 1.0, + "content": "in the critic and measure sensitivity. We then show the training procedure of our method. Finally,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 529, + 495, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 495, + 541 + ], + "score": 1.0, + "content": "we give some intuition behind adversarial dropout and improve our method based on this insight.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 32, + "bbox_fs": [ + 104, + 418, + 506, + 541 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 553, + 296, + 564 + ], + "lines": [ + { + "bbox": [ + 106, + 552, + 298, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 552, + 298, + 565 + ], + "score": 1.0, + "content": "3.1 CLASSIFIER SELECTION VIA DROPOUT", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 108, + 565, + 504, + 598 + ], + "lines": [ + { + "bbox": [ + 106, + 564, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 505, + 578 + ], + "score": 1.0, + "content": "Consider the standard training of a neural network using dropout. For every sample within a mini-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 576, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 505, + 588 + ], + "score": 1.0, + "content": "batch, each node of the network is removed with some probability, effectively selecting a different", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 586, + 450, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 450, + 601 + ], + "score": 1.0, + "content": "classifier for every sample during training. We harness this idea in a very simple way.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40, + "bbox_fs": [ + 106, + 564, + 505, + 601 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 603, + 505, + 681 + ], + "lines": [ + { + "bbox": [ + 105, + 602, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 602, + 218, + 617 + ], + "score": 1.0, + "content": "We forward input features", + "type": "text" + }, + { + "bbox": [ + 218, + 604, + 245, + 615 + ], + "score": 0.93, + "content": "G ( \\bf x _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 602, + 259, + 617 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 259, + 604, + 268, + 614 + ], + "score": 0.82, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 602, + 506, + 617 + ], + "score": 1.0, + "content": "twice, dropping different nodes each time and obtaining", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 614, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 268, + 628 + ], + "score": 1.0, + "content": "two different output vectors denoted as", + "type": "text" + }, + { + "bbox": [ + 268, + 614, + 314, + 627 + ], + "score": 0.86, + "content": "C _ { 1 } ( G ( \\mathbf { x _ { t } } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 614, + 319, + 628 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 320, + 614, + 365, + 627 + ], + "score": 0.84, + "content": "\\bar { C } _ { 2 } \\bar { ( \\cal G ( x _ { t } ) ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 614, + 505, + 628 + ], + "score": 1.0, + "content": ". In other words, we are selecting", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 624, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 202, + 639 + ], + "score": 1.0, + "content": "two different classifiers", + "type": "text" + }, + { + "bbox": [ + 203, + 626, + 215, + 637 + ], + "score": 0.89, + "content": "C _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 624, + 234, + 639 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 234, + 626, + 246, + 637 + ], + "score": 0.88, + "content": "C _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 624, + 270, + 639 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 270, + 627, + 279, + 636 + ], + "score": 0.8, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 624, + 505, + 639 + ], + "score": 1.0, + "content": "by dropout as in Fig. 2. In the figure, the corresponding", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 636, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 259, + 650 + ], + "score": 1.0, + "content": "posterior probabilities are indicated as", + "type": "text" + }, + { + "bbox": [ + 259, + 637, + 297, + 649 + ], + "score": 0.75, + "content": "p _ { 1 } ( \\mathbf { y } | \\mathbf { x _ { t } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 636, + 300, + 650 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 300, + 636, + 338, + 649 + ], + "score": 0.66, + "content": "p _ { 2 } ( \\mathbf { y } \\vert \\mathbf { x _ { t } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 636, + 399, + 650 + ], + "score": 1.0, + "content": ", abbreviated as", + "type": "text" + }, + { + "bbox": [ + 400, + 638, + 411, + 648 + ], + "score": 0.86, + "content": "p _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 636, + 428, + 650 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 428, + 638, + 439, + 648 + ], + "score": 0.85, + "content": "p _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 636, + 505, + 650 + ], + "score": 1.0, + "content": "in the following", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 647, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 647, + 505, + 660 + ], + "score": 1.0, + "content": "discussion. In order to detect the change of predictions near the boundary, the critic tries to increase", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 658, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 272, + 672 + ], + "score": 1.0, + "content": "the difference between the predictions of", + "type": "text" + }, + { + "bbox": [ + 272, + 659, + 285, + 669 + ], + "score": 0.9, + "content": "C _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 658, + 303, + 672 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 303, + 659, + 316, + 669 + ], + "score": 0.89, + "content": "C _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 658, + 444, + 672 + ], + "score": 1.0, + "content": ". This difference corresponds to", + "type": "text" + }, + { + "bbox": [ + 445, + 659, + 454, + 668 + ], + "score": 0.77, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 658, + 505, + 672 + ], + "score": 1.0, + "content": "’s sensitivity", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 669, + 233, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 233, + 683 + ], + "score": 1.0, + "content": "to the noise caused by dropout.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 602, + 506, + 683 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 686, + 503, + 709 + ], + "lines": [ + { + "bbox": [ + 106, + 686, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 686, + 218, + 699 + ], + "score": 1.0, + "content": "To measure the sensitivity", + "type": "text" + }, + { + "bbox": [ + 218, + 687, + 255, + 698 + ], + "score": 0.92, + "content": "d ( p _ { 1 } , p _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 686, + 505, + 699 + ], + "score": 1.0, + "content": "between the two obtained probabilistic outputs, we use the", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 696, + 457, + 710 + ], + "spans": [ + { + "bbox": [ + 105, + 696, + 457, + 710 + ], + "score": 1.0, + "content": "symmetric Kullback Leibler (KL) divergence. Formally, the divergence is calculated as", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 49.5, + "bbox_fs": [ + 105, + 686, + 505, + 710 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 220, + 712, + 390, + 735 + ], + "lines": [ + { + "bbox": [ + 220, + 712, + 390, + 735 + ], + "spans": [ + { + "bbox": [ + 220, + 712, + 390, + 735 + ], + "score": 0.94, + "content": "d ( p _ { 1 } , p _ { 2 } ) = { \\frac { 1 } { 2 } } ( D _ { k l } ( p _ { 1 } | p _ { 2 } ) + D _ { k l } ( p _ { 2 } | p _ { 1 } ) )", + "type": "interline_equation", + "image_path": "1a8da715d2418ce484565bf6a1b5fd22b4e62eda43cef1ad4e37e44d98b65311.jpg" + } + ] + } + ], + "index": 51, + "virtual_lines": [ + { + "bbox": [ + 220, + 712, + 390, + 735 + ], + "spans": [], + "index": 51 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 116, + 82, + 496, + 231 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 116, + 82, + 496, + 231 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 116, + 82, + 496, + 231 + ], + "spans": [ + { + "bbox": [ + 116, + 82, + 496, + 231 + ], + "score": 0.765, + "type": "image", + "image_path": "5b7992174e2f2c0d5a92732e1d6cc79162abd221b22a4267b1f8758b2b378f90.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 116, + 82, + 496, + 131.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 116, + 131.66666666666666, + 496, + 181.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 116, + 181.33333333333331, + 496, + 230.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 243, + 505, + 288 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 243, + 506, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 290, + 256 + ], + "score": 1.0, + "content": "Figure 2: Overview of ADR. Left: We train", + "type": "text" + }, + { + "bbox": [ + 291, + 244, + 300, + 254 + ], + "score": 0.65, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 243, + 303, + 256 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 304, + 244, + 313, + 254 + ], + "score": 0.7, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 243, + 506, + 256 + ], + "score": 1.0, + "content": "with classification loss on source and sample a", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 254, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 505, + 266 + ], + "score": 1.0, + "content": "critic consisting of two classifiers using dropout. The critic’s sensitivity is measured as the diver-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 264, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 265, + 279 + ], + "score": 1.0, + "content": "gence between the class predictions of", + "type": "text" + }, + { + "bbox": [ + 266, + 266, + 278, + 276 + ], + "score": 0.89, + "content": "C _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 264, + 297, + 279 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 298, + 265, + 310, + 276 + ], + "score": 0.89, + "content": "C _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 264, + 506, + 279 + ], + "score": 1.0, + "content": "on the same input. Right: Adversarial training", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 277, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 106, + 277, + 505, + 289 + ], + "score": 1.0, + "content": "iterates two steps: the critic tries to maximize the sensitivity while the generator tries to minimize it.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "text", + "bbox": [ + 106, + 309, + 356, + 321 + ], + "lines": [ + { + "bbox": [ + 106, + 308, + 357, + 323 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 230, + 323 + ], + "score": 1.0, + "content": "where KL divergence between", + "type": "text" + }, + { + "bbox": [ + 230, + 312, + 237, + 321 + ], + "score": 0.81, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 308, + 254, + 323 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 255, + 312, + 261, + 321 + ], + "score": 0.81, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 308, + 316, + 323 + ], + "score": 1.0, + "content": "is denoted as", + "type": "text" + }, + { + "bbox": [ + 316, + 309, + 353, + 322 + ], + "score": 0.92, + "content": "D _ { k l } ( p | q )", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 308, + 357, + 323 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "title", + "bbox": [ + 107, + 336, + 231, + 347 + ], + "lines": [ + { + "bbox": [ + 106, + 336, + 231, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 231, + 348 + ], + "score": 1.0, + "content": "3.2 TRAINING PROCEDURE", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 349, + 505, + 394 + ], + "lines": [ + { + "bbox": [ + 105, + 348, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 173, + 362 + ], + "score": 1.0, + "content": "In our approach,", + "type": "text" + }, + { + "bbox": [ + 174, + 349, + 183, + 359 + ], + "score": 0.82, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 348, + 505, + 362 + ], + "score": 1.0, + "content": "works as both critic and classifier. The following three requirements are imposed", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 360, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 180, + 372 + ], + "score": 1.0, + "content": "by our method: 1)", + "type": "text" + }, + { + "bbox": [ + 181, + 361, + 190, + 370 + ], + "score": 0.82, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 360, + 207, + 372 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 207, + 361, + 217, + 370 + ], + "score": 0.84, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 360, + 505, + 372 + ], + "score": 1.0, + "content": "must classify source samples correctly to obtain discriminative features;", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 370, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 104, + 370, + 117, + 384 + ], + "score": 1.0, + "content": "2)", + "type": "text" + }, + { + "bbox": [ + 118, + 371, + 126, + 381 + ], + "score": 0.76, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 370, + 506, + 384 + ], + "score": 1.0, + "content": "should maximize the sensitivity for target samples to detect the samples near the boundary; 3)", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 107, + 381, + 472, + 395 + ], + "spans": [ + { + "bbox": [ + 107, + 384, + 115, + 392 + ], + "score": 0.82, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 381, + 472, + 395 + ], + "score": 1.0, + "content": "should learn to minimize the sensitivity to move target samples away from the boundary.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 107, + 398, + 416, + 410 + ], + "lines": [ + { + "bbox": [ + 105, + 397, + 417, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 417, + 413 + ], + "score": 1.0, + "content": "The training within the same mini-batch consists of the following three steps.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 415, + 506, + 450 + ], + "lines": [ + { + "bbox": [ + 105, + 415, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 185, + 429 + ], + "score": 1.0, + "content": "Step 1, in this step,", + "type": "text" + }, + { + "bbox": [ + 186, + 416, + 195, + 426 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 415, + 293, + 429 + ], + "score": 1.0, + "content": "is trained as a classifier.", + "type": "text" + }, + { + "bbox": [ + 293, + 416, + 302, + 426 + ], + "score": 0.82, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 415, + 320, + 429 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 320, + 416, + 329, + 426 + ], + "score": 0.82, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 415, + 506, + 429 + ], + "score": 1.0, + "content": "have to classify source samples correctly to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 426, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 505, + 439 + ], + "score": 1.0, + "content": "obtain discriminative features. Thus, we update both networks’ parameters based on the following", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 437, + 486, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 299, + 450 + ], + "score": 1.0, + "content": "standard classification loss. Given source labels", + "type": "text" + }, + { + "bbox": [ + 299, + 439, + 309, + 450 + ], + "score": 0.85, + "content": "y _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 437, + 362, + 450 + ], + "score": 1.0, + "content": "and samples", + "type": "text" + }, + { + "bbox": [ + 362, + 439, + 373, + 449 + ], + "score": 0.86, + "content": "\\mathbf { x _ { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 437, + 486, + 450 + ], + "score": 1.0, + "content": ", the objective in this step is", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15 + }, + { + "type": "interline_equation", + "bbox": [ + 176, + 456, + 434, + 491 + ], + "lines": [ + { + "bbox": [ + 176, + 456, + 434, + 491 + ], + "spans": [ + { + "bbox": [ + 176, + 456, + 434, + 491 + ], + "score": 0.94, + "content": "\\underset { G , C } { \\operatorname* { m i n } } L ( X _ { s } , Y _ { s } ) = - \\mathbb { E } _ { ( \\mathbf { x } _ { s } , y _ { s } ) \\sim ( X _ { s } , Y _ { s } ) } \\sum _ { k = 1 } ^ { K } \\mathbb { 1 } _ { [ k = y _ { s } ] } \\log C ( G ( \\mathbf { x } _ { \\mathbf { s } } ) ) _ { k }", + "type": "interline_equation", + "image_path": "4b1325385b386c0540bd566d7b46a2ca5e1ff4eb0613e4f0e4cf5ac068a57798.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 176, + 456, + 434, + 467.6666666666667 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 176, + 467.6666666666667, + 434, + 479.33333333333337 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 176, + 479.33333333333337, + 434, + 491.00000000000006 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 497, + 408, + 509 + ], + "lines": [ + { + "bbox": [ + 107, + 496, + 406, + 511 + ], + "spans": [ + { + "bbox": [ + 107, + 497, + 154, + 510 + ], + "score": 0.92, + "content": "C ( G ( \\mathbf { x _ { s } } ) ) _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 496, + 309, + 511 + ], + "score": 1.0, + "content": "returns the probability that the sample", + "type": "text" + }, + { + "bbox": [ + 309, + 499, + 320, + 509 + ], + "score": 0.86, + "content": "\\mathbf { x _ { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 496, + 399, + 511 + ], + "score": 1.0, + "content": "is assigned to class", + "type": "text" + }, + { + "bbox": [ + 400, + 498, + 406, + 507 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 514, + 506, + 570 + ], + "lines": [ + { + "bbox": [ + 106, + 514, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 184, + 526 + ], + "score": 1.0, + "content": "Step 2, in this step,", + "type": "text" + }, + { + "bbox": [ + 185, + 515, + 194, + 524 + ], + "score": 0.85, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 514, + 505, + 526 + ], + "score": 1.0, + "content": "is trained as a critic to detect target samples near the boundary. Two classifiers", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 524, + 506, + 539 + ], + "spans": [ + { + "bbox": [ + 104, + 524, + 182, + 539 + ], + "score": 1.0, + "content": "are sampled from", + "type": "text" + }, + { + "bbox": [ + 182, + 526, + 191, + 535 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 524, + 412, + 539 + ], + "score": 1.0, + "content": "for each target sample using dropout twice to obtain", + "type": "text" + }, + { + "bbox": [ + 412, + 527, + 423, + 537 + ], + "score": 0.85, + "content": "p _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 524, + 443, + 539 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 443, + 527, + 453, + 537 + ], + "score": 0.84, + "content": "p _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 524, + 488, + 539 + ], + "score": 1.0, + "content": ". Then,", + "type": "text" + }, + { + "bbox": [ + 488, + 526, + 497, + 535 + ], + "score": 0.79, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 497, + 524, + 506, + 539 + ], + "score": 1.0, + "content": "’s", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 441, + 549 + ], + "score": 1.0, + "content": "parameters are updated to maximize the sensitivity as measured by Eq. 1. Since", + "type": "text" + }, + { + "bbox": [ + 441, + 537, + 451, + 547 + ], + "score": 0.82, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 536, + 506, + 549 + ], + "score": 1.0, + "content": "should learn", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 547, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 505, + 559 + ], + "score": 1.0, + "content": "discriminative features for source samples, in addition to the sensitivity term, we add Eq. 2. We", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 558, + 428, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 428, + 572 + ], + "score": 1.0, + "content": "experimentally confirmed that this term is essential to obtain good performance.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23 + }, + { + "type": "interline_equation", + "bbox": [ + 247, + 577, + 363, + 595 + ], + "lines": [ + { + "bbox": [ + 247, + 577, + 363, + 595 + ], + "spans": [ + { + "bbox": [ + 247, + 577, + 363, + 595 + ], + "score": 0.92, + "content": "\\operatorname* { m i n } _ { C } L ( X _ { s } , Y _ { s } ) - L _ { a d v } ( X _ { t } )", + "type": "interline_equation", + "image_path": "3bea588dbe0863badf61194488482a3385277235506fa8e3ede248f59902ba58.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 247, + 577, + 363, + 595 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 609, + 406, + 623 + ], + "lines": [ + { + "bbox": [ + 205, + 609, + 406, + 623 + ], + "spans": [ + { + "bbox": [ + 205, + 609, + 406, + 623 + ], + "score": 0.87, + "content": "L _ { a d v } ( X _ { t } ) = \\mathbb { E } _ { \\mathbf { x _ { t } } \\sim X _ { t } } [ d ( C _ { 1 } ( G ( \\mathbf { x _ { t } } ) ) , C _ { 2 } ( G ( \\mathbf { x _ { t } } ) ) ) ]", + "type": "interline_equation", + "image_path": "90c1c66e9efafa4cc0f95641a131aedd5cc5ac97e333de274aa5aca963fc4bd1.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 205, + 609, + 406, + 623 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 627, + 276, + 639 + ], + "lines": [ + { + "bbox": [ + 107, + 625, + 276, + 642 + ], + "spans": [ + { + "bbox": [ + 107, + 628, + 119, + 639 + ], + "score": 0.87, + "content": "C _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 625, + 137, + 642 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 138, + 628, + 150, + 639 + ], + "score": 0.88, + "content": "C _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 625, + 224, + 642 + ], + "score": 1.0, + "content": "are sampled from", + "type": "text" + }, + { + "bbox": [ + 224, + 628, + 233, + 637 + ], + "score": 0.82, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 625, + 276, + 642 + ], + "score": 1.0, + "content": "randomly.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 644, + 505, + 678 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 658 + ], + "score": 1.0, + "content": "Step 3, in order to obtain representations where target samples are placed far from the decision", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 656, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 149, + 668 + ], + "score": 1.0, + "content": "boundary,", + "type": "text" + }, + { + "bbox": [ + 149, + 656, + 158, + 666 + ], + "score": 0.82, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 656, + 505, + 668 + ], + "score": 1.0, + "content": "is trained to minimize sensitivity. Here we do not add the categorical loss for source", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 667, + 460, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 460, + 678 + ], + "score": 1.0, + "content": "samples as in Step 2, as the generator is able to obtain discriminative features without it.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30 + }, + { + "type": "interline_equation", + "bbox": [ + 275, + 685, + 336, + 703 + ], + "lines": [ + { + "bbox": [ + 275, + 685, + 336, + 703 + ], + "spans": [ + { + "bbox": [ + 275, + 685, + 336, + 703 + ], + "score": 0.93, + "content": "\\operatorname* { m i n } _ { G } L _ { a d v } ( X _ { t } )", + "type": "interline_equation", + "image_path": "63322fcba11ec7695b29e769454da8b5b4c792439b0879e7895c37150117c6a9.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 275, + 685, + 336, + 703 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 226, + 722 + ], + "score": 1.0, + "content": "We update the parameters of", + "type": "text" + }, + { + "bbox": [ + 227, + 710, + 235, + 720 + ], + "score": 0.83, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 709, + 255, + 722 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 255, + 711, + 264, + 720 + ], + "score": 0.84, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 709, + 504, + 722 + ], + "score": 1.0, + "content": "in every step following the defined objectives. We experi-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 720, + 399, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 284, + 732 + ], + "score": 1.0, + "content": "mentally found it beneficial to repeat Step 3", + "type": "text" + }, + { + "bbox": [ + 284, + 725, + 291, + 730 + ], + "score": 0.62, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 720, + 399, + 732 + ], + "score": 1.0, + "content": "times for each mini-batch.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 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": "image", + "bbox": [ + 116, + 82, + 496, + 231 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 116, + 82, + 496, + 231 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 116, + 82, + 496, + 231 + ], + "spans": [ + { + "bbox": [ + 116, + 82, + 496, + 231 + ], + "score": 0.765, + "type": "image", + "image_path": "5b7992174e2f2c0d5a92732e1d6cc79162abd221b22a4267b1f8758b2b378f90.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 116, + 82, + 496, + 131.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 116, + 131.66666666666666, + 496, + 181.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 116, + 181.33333333333331, + 496, + 230.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 243, + 505, + 288 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 243, + 506, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 290, + 256 + ], + "score": 1.0, + "content": "Figure 2: Overview of ADR. Left: We train", + "type": "text" + }, + { + "bbox": [ + 291, + 244, + 300, + 254 + ], + "score": 0.65, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 243, + 303, + 256 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 304, + 244, + 313, + 254 + ], + "score": 0.7, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 243, + 506, + 256 + ], + "score": 1.0, + "content": "with classification loss on source and sample a", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 254, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 505, + 266 + ], + "score": 1.0, + "content": "critic consisting of two classifiers using dropout. The critic’s sensitivity is measured as the diver-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 264, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 265, + 279 + ], + "score": 1.0, + "content": "gence between the class predictions of", + "type": "text" + }, + { + "bbox": [ + 266, + 266, + 278, + 276 + ], + "score": 0.89, + "content": "C _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 264, + 297, + 279 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 298, + 265, + 310, + 276 + ], + "score": 0.89, + "content": "C _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 264, + 506, + 279 + ], + "score": 1.0, + "content": "on the same input. Right: Adversarial training", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 277, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 106, + 277, + 505, + 289 + ], + "score": 1.0, + "content": "iterates two steps: the critic tries to maximize the sensitivity while the generator tries to minimize it.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "text", + "bbox": [ + 106, + 309, + 356, + 321 + ], + "lines": [ + { + "bbox": [ + 106, + 308, + 357, + 323 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 230, + 323 + ], + "score": 1.0, + "content": "where KL divergence between", + "type": "text" + }, + { + "bbox": [ + 230, + 312, + 237, + 321 + ], + "score": 0.81, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 308, + 254, + 323 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 255, + 312, + 261, + 321 + ], + "score": 0.81, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 308, + 316, + 323 + ], + "score": 1.0, + "content": "is denoted as", + "type": "text" + }, + { + "bbox": [ + 316, + 309, + 353, + 322 + ], + "score": 0.92, + "content": "D _ { k l } ( p | q )", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 308, + 357, + 323 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7, + "bbox_fs": [ + 106, + 308, + 357, + 323 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 336, + 231, + 347 + ], + "lines": [ + { + "bbox": [ + 106, + 336, + 231, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 231, + 348 + ], + "score": 1.0, + "content": "3.2 TRAINING PROCEDURE", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 349, + 505, + 394 + ], + "lines": [ + { + "bbox": [ + 105, + 348, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 173, + 362 + ], + "score": 1.0, + "content": "In our approach,", + "type": "text" + }, + { + "bbox": [ + 174, + 349, + 183, + 359 + ], + "score": 0.82, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 348, + 505, + 362 + ], + "score": 1.0, + "content": "works as both critic and classifier. The following three requirements are imposed", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 360, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 180, + 372 + ], + "score": 1.0, + "content": "by our method: 1)", + "type": "text" + }, + { + "bbox": [ + 181, + 361, + 190, + 370 + ], + "score": 0.82, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 360, + 207, + 372 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 207, + 361, + 217, + 370 + ], + "score": 0.84, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 360, + 505, + 372 + ], + "score": 1.0, + "content": "must classify source samples correctly to obtain discriminative features;", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 370, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 104, + 370, + 117, + 384 + ], + "score": 1.0, + "content": "2)", + "type": "text" + }, + { + "bbox": [ + 118, + 371, + 126, + 381 + ], + "score": 0.76, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 370, + 506, + 384 + ], + "score": 1.0, + "content": "should maximize the sensitivity for target samples to detect the samples near the boundary; 3)", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 107, + 381, + 472, + 395 + ], + "spans": [ + { + "bbox": [ + 107, + 384, + 115, + 392 + ], + "score": 0.82, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 381, + 472, + 395 + ], + "score": 1.0, + "content": "should learn to minimize the sensitivity to move target samples away from the boundary.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5, + "bbox_fs": [ + 104, + 348, + 506, + 395 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 398, + 416, + 410 + ], + "lines": [ + { + "bbox": [ + 105, + 397, + 417, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 417, + 413 + ], + "score": 1.0, + "content": "The training within the same mini-batch consists of the following three steps.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 397, + 417, + 413 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 415, + 506, + 450 + ], + "lines": [ + { + "bbox": [ + 105, + 415, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 185, + 429 + ], + "score": 1.0, + "content": "Step 1, in this step,", + "type": "text" + }, + { + "bbox": [ + 186, + 416, + 195, + 426 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 415, + 293, + 429 + ], + "score": 1.0, + "content": "is trained as a classifier.", + "type": "text" + }, + { + "bbox": [ + 293, + 416, + 302, + 426 + ], + "score": 0.82, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 415, + 320, + 429 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 320, + 416, + 329, + 426 + ], + "score": 0.82, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 415, + 506, + 429 + ], + "score": 1.0, + "content": "have to classify source samples correctly to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 426, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 505, + 439 + ], + "score": 1.0, + "content": "obtain discriminative features. Thus, we update both networks’ parameters based on the following", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 437, + 486, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 299, + 450 + ], + "score": 1.0, + "content": "standard classification loss. Given source labels", + "type": "text" + }, + { + "bbox": [ + 299, + 439, + 309, + 450 + ], + "score": 0.85, + "content": "y _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 437, + 362, + 450 + ], + "score": 1.0, + "content": "and samples", + "type": "text" + }, + { + "bbox": [ + 362, + 439, + 373, + 449 + ], + "score": 0.86, + "content": "\\mathbf { x _ { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 437, + 486, + 450 + ], + "score": 1.0, + "content": ", the objective in this step is", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 415, + 506, + 450 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 176, + 456, + 434, + 491 + ], + "lines": [ + { + "bbox": [ + 176, + 456, + 434, + 491 + ], + "spans": [ + { + "bbox": [ + 176, + 456, + 434, + 491 + ], + "score": 0.94, + "content": "\\underset { G , C } { \\operatorname* { m i n } } L ( X _ { s } , Y _ { s } ) = - \\mathbb { E } _ { ( \\mathbf { x } _ { s } , y _ { s } ) \\sim ( X _ { s } , Y _ { s } ) } \\sum _ { k = 1 } ^ { K } \\mathbb { 1 } _ { [ k = y _ { s } ] } \\log C ( G ( \\mathbf { x } _ { \\mathbf { s } } ) ) _ { k }", + "type": "interline_equation", + "image_path": "4b1325385b386c0540bd566d7b46a2ca5e1ff4eb0613e4f0e4cf5ac068a57798.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 176, + 456, + 434, + 467.6666666666667 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 176, + 467.6666666666667, + 434, + 479.33333333333337 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 176, + 479.33333333333337, + 434, + 491.00000000000006 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 497, + 408, + 509 + ], + "lines": [ + { + "bbox": [ + 107, + 496, + 406, + 511 + ], + "spans": [ + { + "bbox": [ + 107, + 497, + 154, + 510 + ], + "score": 0.92, + "content": "C ( G ( \\mathbf { x _ { s } } ) ) _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 496, + 309, + 511 + ], + "score": 1.0, + "content": "returns the probability that the sample", + "type": "text" + }, + { + "bbox": [ + 309, + 499, + 320, + 509 + ], + "score": 0.86, + "content": "\\mathbf { x _ { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 496, + 399, + 511 + ], + "score": 1.0, + "content": "is assigned to class", + "type": "text" + }, + { + "bbox": [ + 400, + 498, + 406, + 507 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + } + ], + "index": 20 + } + ], + "index": 20, + "bbox_fs": [ + 107, + 496, + 406, + 511 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 514, + 506, + 570 + ], + "lines": [ + { + "bbox": [ + 106, + 514, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 184, + 526 + ], + "score": 1.0, + "content": "Step 2, in this step,", + "type": "text" + }, + { + "bbox": [ + 185, + 515, + 194, + 524 + ], + "score": 0.85, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 514, + 505, + 526 + ], + "score": 1.0, + "content": "is trained as a critic to detect target samples near the boundary. Two classifiers", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 524, + 506, + 539 + ], + "spans": [ + { + "bbox": [ + 104, + 524, + 182, + 539 + ], + "score": 1.0, + "content": "are sampled from", + "type": "text" + }, + { + "bbox": [ + 182, + 526, + 191, + 535 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 524, + 412, + 539 + ], + "score": 1.0, + "content": "for each target sample using dropout twice to obtain", + "type": "text" + }, + { + "bbox": [ + 412, + 527, + 423, + 537 + ], + "score": 0.85, + "content": "p _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 524, + 443, + 539 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 443, + 527, + 453, + 537 + ], + "score": 0.84, + "content": "p _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 524, + 488, + 539 + ], + "score": 1.0, + "content": ". Then,", + "type": "text" + }, + { + "bbox": [ + 488, + 526, + 497, + 535 + ], + "score": 0.79, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 497, + 524, + 506, + 539 + ], + "score": 1.0, + "content": "’s", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 441, + 549 + ], + "score": 1.0, + "content": "parameters are updated to maximize the sensitivity as measured by Eq. 1. Since", + "type": "text" + }, + { + "bbox": [ + 441, + 537, + 451, + 547 + ], + "score": 0.82, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 536, + 506, + 549 + ], + "score": 1.0, + "content": "should learn", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 547, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 505, + 559 + ], + "score": 1.0, + "content": "discriminative features for source samples, in addition to the sensitivity term, we add Eq. 2. We", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 558, + 428, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 428, + 572 + ], + "score": 1.0, + "content": "experimentally confirmed that this term is essential to obtain good performance.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23, + "bbox_fs": [ + 104, + 514, + 506, + 572 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 247, + 577, + 363, + 595 + ], + "lines": [ + { + "bbox": [ + 247, + 577, + 363, + 595 + ], + "spans": [ + { + "bbox": [ + 247, + 577, + 363, + 595 + ], + "score": 0.92, + "content": "\\operatorname* { m i n } _ { C } L ( X _ { s } , Y _ { s } ) - L _ { a d v } ( X _ { t } )", + "type": "interline_equation", + "image_path": "3bea588dbe0863badf61194488482a3385277235506fa8e3ede248f59902ba58.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 247, + 577, + 363, + 595 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 609, + 406, + 623 + ], + "lines": [ + { + "bbox": [ + 205, + 609, + 406, + 623 + ], + "spans": [ + { + "bbox": [ + 205, + 609, + 406, + 623 + ], + "score": 0.87, + "content": "L _ { a d v } ( X _ { t } ) = \\mathbb { E } _ { \\mathbf { x _ { t } } \\sim X _ { t } } [ d ( C _ { 1 } ( G ( \\mathbf { x _ { t } } ) ) , C _ { 2 } ( G ( \\mathbf { x _ { t } } ) ) ) ]", + "type": "interline_equation", + "image_path": "90c1c66e9efafa4cc0f95641a131aedd5cc5ac97e333de274aa5aca963fc4bd1.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 205, + 609, + 406, + 623 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 627, + 276, + 639 + ], + "lines": [ + { + "bbox": [ + 107, + 625, + 276, + 642 + ], + "spans": [ + { + "bbox": [ + 107, + 628, + 119, + 639 + ], + "score": 0.87, + "content": "C _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 625, + 137, + 642 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 138, + 628, + 150, + 639 + ], + "score": 0.88, + "content": "C _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 625, + 224, + 642 + ], + "score": 1.0, + "content": "are sampled from", + "type": "text" + }, + { + "bbox": [ + 224, + 628, + 233, + 637 + ], + "score": 0.82, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 625, + 276, + 642 + ], + "score": 1.0, + "content": "randomly.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28, + "bbox_fs": [ + 107, + 625, + 276, + 642 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 644, + 505, + 678 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 658 + ], + "score": 1.0, + "content": "Step 3, in order to obtain representations where target samples are placed far from the decision", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 656, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 149, + 668 + ], + "score": 1.0, + "content": "boundary,", + "type": "text" + }, + { + "bbox": [ + 149, + 656, + 158, + 666 + ], + "score": 0.82, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 656, + 505, + 668 + ], + "score": 1.0, + "content": "is trained to minimize sensitivity. Here we do not add the categorical loss for source", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 667, + 460, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 460, + 678 + ], + "score": 1.0, + "content": "samples as in Step 2, as the generator is able to obtain discriminative features without it.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 644, + 506, + 678 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 275, + 685, + 336, + 703 + ], + "lines": [ + { + "bbox": [ + 275, + 685, + 336, + 703 + ], + "spans": [ + { + "bbox": [ + 275, + 685, + 336, + 703 + ], + "score": 0.93, + "content": "\\operatorname* { m i n } _ { G } L _ { a d v } ( X _ { t } )", + "type": "interline_equation", + "image_path": "63322fcba11ec7695b29e769454da8b5b4c792439b0879e7895c37150117c6a9.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 275, + 685, + 336, + 703 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 226, + 722 + ], + "score": 1.0, + "content": "We update the parameters of", + "type": "text" + }, + { + "bbox": [ + 227, + 710, + 235, + 720 + ], + "score": 0.83, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 709, + 255, + 722 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 255, + 711, + 264, + 720 + ], + "score": 0.84, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 709, + 504, + 722 + ], + "score": 1.0, + "content": "in every step following the defined objectives. We experi-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 720, + 399, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 284, + 732 + ], + "score": 1.0, + "content": "mentally found it beneficial to repeat Step 3", + "type": "text" + }, + { + "bbox": [ + 284, + 725, + 291, + 730 + ], + "score": 0.62, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 720, + 399, + 732 + ], + "score": 1.0, + "content": "times for each mini-batch.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 709, + 504, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 81, + 502, + 178 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 81, + 502, + 178 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 81, + 502, + 178 + ], + "spans": [ + { + "bbox": [ + 108, + 81, + 502, + 178 + ], + "score": 0.973, + "type": "image", + "image_path": "e236a8f1f63678aa39e6008db6475416d17c9cf2b19a9b860caab2ab1b9a4cd9.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 81, + 502, + 113.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 113.33333333333334, + 502, + 145.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 145.66666666666669, + 502, + 178.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 187, + 506, + 264 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 187, + 506, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 506, + 199 + ], + "score": 1.0, + "content": "Figure 3: (Best viewed in color) Toy Experiment. Top row: Model trained without adaptation. Columns 1-5", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 198, + 506, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 506, + 211 + ], + "score": 1.0, + "content": "show the decision boundary obtained by keeping one neuron in the last hidden layer and removing the rest.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 209, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 506, + 222 + ], + "score": 1.0, + "content": "Red points are source samples of class one, green points are class two. Black points are target samples. The", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 221, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 505, + 232 + ], + "score": 1.0, + "content": "yellow region indicates where the samples are classified as class one, cyan region class two. We see that the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 231, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 505, + 243 + ], + "score": 1.0, + "content": "neurons do not learn very diverse features. Column 6 shows the boundary obtained by keeping all 5 neurons.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 242, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 506, + 255 + ], + "score": 1.0, + "content": "Bottom row: Boundaries learned by the model adapted by our adversarial dropout method. Unlike the top row,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 254, + 380, + 264 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 380, + 264 + ], + "score": 1.0, + "content": "here neurons 3,4,5 learn diverse features which result in diverse boundaries.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6 + } + ], + "index": 3.5 + }, + { + "type": "title", + "bbox": [ + 107, + 280, + 255, + 291 + ], + "lines": [ + { + "bbox": [ + 106, + 280, + 256, + 292 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 256, + 292 + ], + "score": 1.0, + "content": "3.3 INSIGHT AND IMPROVEMENT", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 294, + 505, + 371 + ], + "lines": [ + { + "bbox": [ + 106, + 294, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 505, + 307 + ], + "score": 1.0, + "content": "Our ADR approach encourages different neurons of the classifier to learn different characteristics", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 305, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 505, + 317 + ], + "score": 1.0, + "content": "of the input (see Sec. 4.1.) The output is the combination of shared and unshared nodes, therefore,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 316, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 505, + 329 + ], + "score": 1.0, + "content": "to maximize the sensitivity, the unshared nodes must learn different features of target samples. As", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 327, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 106, + 327, + 249, + 340 + ], + "score": 1.0, + "content": "learning proceeds, each neuron in", + "type": "text" + }, + { + "bbox": [ + 249, + 327, + 259, + 337 + ], + "score": 0.78, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 327, + 505, + 340 + ], + "score": 1.0, + "content": "will capture different characteristics. At the same time, to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 338, + 505, + 350 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 210, + 350 + ], + "score": 1.0, + "content": "minimize the sensitivity,", + "type": "text" + }, + { + "bbox": [ + 210, + 338, + 219, + 348 + ], + "score": 0.78, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 338, + 426, + 350 + ], + "score": 1.0, + "content": "learns to extract pure categorical information. If", + "type": "text" + }, + { + "bbox": [ + 426, + 338, + 436, + 348 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 338, + 505, + 350 + ], + "score": 1.0, + "content": "outputs features", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 349, + 506, + 361 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 506, + 361 + ], + "score": 1.0, + "content": "which are not related to categorical information, such as texture, slight contrast or difference of", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 360, + 306, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 131, + 372 + ], + "score": 1.0, + "content": "color,", + "type": "text" + }, + { + "bbox": [ + 132, + 360, + 141, + 370 + ], + "score": 0.79, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 360, + 306, + 372 + ], + "score": 1.0, + "content": "will utilize them to maximize sensitivity.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 376, + 505, + 476 + ], + "lines": [ + { + "bbox": [ + 106, + 376, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 106, + 376, + 506, + 389 + ], + "score": 1.0, + "content": "The trained classifier will be sensitive to the perturbation of targets caused by dropout. We note that", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 388, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 505, + 401 + ], + "score": 1.0, + "content": "our approach is contrary to methods called adversarial example training (Goodfellow et al. (2014b);", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 398, + 506, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 506, + 412 + ], + "score": 1.0, + "content": "Miyato et al. (2016)) which train the classifier to be robust to adversarial examples. They utilize", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 409, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 409, + 505, + 423 + ], + "score": 1.0, + "content": "input noise which can deceive or change the output of the classifier, and incorporate it to obtain", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 420, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 506, + 434 + ], + "score": 1.0, + "content": "a good classifier. Our ADR method encourages the feature generator to obtain noise-robust target", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 432, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 505, + 444 + ], + "score": 1.0, + "content": "features. However, with regard to the classifier, it is trained to be sensitive to noise. To improve the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 442, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 273, + 455 + ], + "score": 1.0, + "content": "final accuracy, we learn another classifier", + "type": "text" + }, + { + "bbox": [ + 273, + 443, + 285, + 453 + ], + "score": 0.86, + "content": "C ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 442, + 469, + 455 + ], + "score": 1.0, + "content": "that is not trained to be sensitive to the noise.", + "type": "text" + }, + { + "bbox": [ + 469, + 443, + 481, + 453 + ], + "score": 0.85, + "content": "C ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 442, + 506, + 455 + ], + "score": 1.0, + "content": "takes", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 453, + 506, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 195, + 466 + ], + "score": 1.0, + "content": "features generated by", + "type": "text" + }, + { + "bbox": [ + 195, + 454, + 204, + 464 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 453, + 482, + 466 + ], + "score": 1.0, + "content": "and is trained with classification loss on source samples. The loss of", + "type": "text" + }, + { + "bbox": [ + 483, + 453, + 494, + 464 + ], + "score": 0.88, + "content": "C ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 453, + 506, + 466 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 464, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 181, + 477 + ], + "score": 1.0, + "content": "not used to update", + "type": "text" + }, + { + "bbox": [ + 181, + 465, + 190, + 474 + ], + "score": 0.8, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 464, + 309, + 477 + ], + "score": 1.0, + "content": ". We compare the accuracy of", + "type": "text" + }, + { + "bbox": [ + 309, + 465, + 318, + 474 + ], + "score": 0.85, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 464, + 335, + 477 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 336, + 465, + 347, + 474 + ], + "score": 0.88, + "content": "C ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 464, + 505, + 477 + ], + "score": 1.0, + "content": "in experiments on image classification.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 22 + }, + { + "type": "title", + "bbox": [ + 108, + 497, + 200, + 509 + ], + "lines": [ + { + "bbox": [ + 105, + 496, + 201, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 201, + 511 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "title", + "bbox": [ + 108, + 525, + 248, + 536 + ], + "lines": [ + { + "bbox": [ + 105, + 524, + 250, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 250, + 537 + ], + "score": 1.0, + "content": "4.1 EXPERIMENT ON TOY DATA", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 539, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 106, + 539, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 539, + 505, + 552 + ], + "score": 1.0, + "content": "Experimental Setting. In this experiment, we observe the decision boundary obtained by each", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 550, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 505, + 562 + ], + "score": 1.0, + "content": "neuron to demonstrate that ADR encourages the neurons to learn different input characteristics. We", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "use synthetic “two moons” data for this problem. Two dimensional samples from two classes are", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "score": 1.0, + "content": "generated as source samples. Target samples are obtained by rotating the source samples. In our", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 583, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 506, + 596 + ], + "score": 1.0, + "content": "setting, the rotation was set to 30 degrees and data was generated with scikit-learn (Pedregosa et al.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 594, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 506, + 607 + ], + "score": 1.0, + "content": "(2011)). We train a six-layered fully-connected network; the lower 3 layers are used as feature", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 604, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 104, + 604, + 505, + 618 + ], + "score": 1.0, + "content": "generator, and upper 3 layers are used as classifier. We used Batch Normalization (Ioffe & Szegedy", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 615, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 505, + 629 + ], + "score": 1.0, + "content": "(2015)) and ReLU as activation function. The number of neurons are [2,5,5] for feature generator,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "score": 1.0, + "content": "[5,5,2] for classifier. We visualize the boundary obtained from each neuron in the last layer by", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 638, + 273, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 273, + 650 + ], + "score": 1.0, + "content": "removing the output of all other neurons.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 107, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "Results. We show the learned boundary in Fig. 3. In the baseline model trained only with source", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "samples (top row), two of five neurons do not seem to learn an effective boundary, and three neurons", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "learn a similar boundary. On the other hand, in our method (bottom row), although two neurons do", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 689, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 505, + 700 + ], + "score": 1.0, + "content": "not seem to learn any meaningful boundary, three neurons learn distinctive boundaries, demonstrat-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "ing greater diversity. Each neuron is trained to be sensitive to the noise caused by target samples. The", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "final decision boundary (rightmost column) classifies most target samples correctly. The accuracy", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 721, + 468, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 213, + 733 + ], + "score": 1.0, + "content": "of our proposed method is", + "type": "text" + }, + { + "bbox": [ + 213, + 721, + 233, + 731 + ], + "score": 0.85, + "content": "96 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 721, + 444, + 733 + ], + "score": 1.0, + "content": "whereas the accuracy of the non-adapted model was", + "type": "text" + }, + { + "bbox": [ + 444, + 721, + 464, + 731 + ], + "score": 0.87, + "content": "84 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 721, + 468, + 733 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42 + } + ], + "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 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 81, + 502, + 178 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 81, + 502, + 178 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 81, + 502, + 178 + ], + "spans": [ + { + "bbox": [ + 108, + 81, + 502, + 178 + ], + "score": 0.973, + "type": "image", + "image_path": "e236a8f1f63678aa39e6008db6475416d17c9cf2b19a9b860caab2ab1b9a4cd9.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 81, + 502, + 113.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 113.33333333333334, + 502, + 145.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 145.66666666666669, + 502, + 178.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 187, + 506, + 264 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 187, + 506, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 506, + 199 + ], + "score": 1.0, + "content": "Figure 3: (Best viewed in color) Toy Experiment. Top row: Model trained without adaptation. Columns 1-5", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 198, + 506, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 506, + 211 + ], + "score": 1.0, + "content": "show the decision boundary obtained by keeping one neuron in the last hidden layer and removing the rest.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 209, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 506, + 222 + ], + "score": 1.0, + "content": "Red points are source samples of class one, green points are class two. Black points are target samples. The", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 221, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 505, + 232 + ], + "score": 1.0, + "content": "yellow region indicates where the samples are classified as class one, cyan region class two. We see that the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 231, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 505, + 243 + ], + "score": 1.0, + "content": "neurons do not learn very diverse features. Column 6 shows the boundary obtained by keeping all 5 neurons.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 242, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 506, + 255 + ], + "score": 1.0, + "content": "Bottom row: Boundaries learned by the model adapted by our adversarial dropout method. Unlike the top row,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 254, + 380, + 264 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 380, + 264 + ], + "score": 1.0, + "content": "here neurons 3,4,5 learn diverse features which result in diverse boundaries.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6 + } + ], + "index": 3.5 + }, + { + "type": "title", + "bbox": [ + 107, + 280, + 255, + 291 + ], + "lines": [ + { + "bbox": [ + 106, + 280, + 256, + 292 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 256, + 292 + ], + "score": 1.0, + "content": "3.3 INSIGHT AND IMPROVEMENT", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 294, + 505, + 371 + ], + "lines": [ + { + "bbox": [ + 106, + 294, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 505, + 307 + ], + "score": 1.0, + "content": "Our ADR approach encourages different neurons of the classifier to learn different characteristics", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 305, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 505, + 317 + ], + "score": 1.0, + "content": "of the input (see Sec. 4.1.) The output is the combination of shared and unshared nodes, therefore,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 316, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 505, + 329 + ], + "score": 1.0, + "content": "to maximize the sensitivity, the unshared nodes must learn different features of target samples. As", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 327, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 106, + 327, + 249, + 340 + ], + "score": 1.0, + "content": "learning proceeds, each neuron in", + "type": "text" + }, + { + "bbox": [ + 249, + 327, + 259, + 337 + ], + "score": 0.78, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 327, + 505, + 340 + ], + "score": 1.0, + "content": "will capture different characteristics. At the same time, to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 338, + 505, + 350 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 210, + 350 + ], + "score": 1.0, + "content": "minimize the sensitivity,", + "type": "text" + }, + { + "bbox": [ + 210, + 338, + 219, + 348 + ], + "score": 0.78, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 338, + 426, + 350 + ], + "score": 1.0, + "content": "learns to extract pure categorical information. If", + "type": "text" + }, + { + "bbox": [ + 426, + 338, + 436, + 348 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 338, + 505, + 350 + ], + "score": 1.0, + "content": "outputs features", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 349, + 506, + 361 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 506, + 361 + ], + "score": 1.0, + "content": "which are not related to categorical information, such as texture, slight contrast or difference of", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 360, + 306, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 131, + 372 + ], + "score": 1.0, + "content": "color,", + "type": "text" + }, + { + "bbox": [ + 132, + 360, + 141, + 370 + ], + "score": 0.79, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 360, + 306, + 372 + ], + "score": 1.0, + "content": "will utilize them to maximize sensitivity.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 294, + 506, + 372 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 376, + 505, + 476 + ], + "lines": [ + { + "bbox": [ + 106, + 376, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 106, + 376, + 506, + 389 + ], + "score": 1.0, + "content": "The trained classifier will be sensitive to the perturbation of targets caused by dropout. We note that", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 388, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 505, + 401 + ], + "score": 1.0, + "content": "our approach is contrary to methods called adversarial example training (Goodfellow et al. (2014b);", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 398, + 506, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 506, + 412 + ], + "score": 1.0, + "content": "Miyato et al. (2016)) which train the classifier to be robust to adversarial examples. They utilize", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 409, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 409, + 505, + 423 + ], + "score": 1.0, + "content": "input noise which can deceive or change the output of the classifier, and incorporate it to obtain", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 420, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 506, + 434 + ], + "score": 1.0, + "content": "a good classifier. Our ADR method encourages the feature generator to obtain noise-robust target", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 432, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 505, + 444 + ], + "score": 1.0, + "content": "features. However, with regard to the classifier, it is trained to be sensitive to noise. To improve the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 442, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 273, + 455 + ], + "score": 1.0, + "content": "final accuracy, we learn another classifier", + "type": "text" + }, + { + "bbox": [ + 273, + 443, + 285, + 453 + ], + "score": 0.86, + "content": "C ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 442, + 469, + 455 + ], + "score": 1.0, + "content": "that is not trained to be sensitive to the noise.", + "type": "text" + }, + { + "bbox": [ + 469, + 443, + 481, + 453 + ], + "score": 0.85, + "content": "C ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 442, + 506, + 455 + ], + "score": 1.0, + "content": "takes", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 453, + 506, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 195, + 466 + ], + "score": 1.0, + "content": "features generated by", + "type": "text" + }, + { + "bbox": [ + 195, + 454, + 204, + 464 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 453, + 482, + 466 + ], + "score": 1.0, + "content": "and is trained with classification loss on source samples. The loss of", + "type": "text" + }, + { + "bbox": [ + 483, + 453, + 494, + 464 + ], + "score": 0.88, + "content": "C ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 453, + 506, + 466 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 464, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 181, + 477 + ], + "score": 1.0, + "content": "not used to update", + "type": "text" + }, + { + "bbox": [ + 181, + 465, + 190, + 474 + ], + "score": 0.8, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 464, + 309, + 477 + ], + "score": 1.0, + "content": ". We compare the accuracy of", + "type": "text" + }, + { + "bbox": [ + 309, + 465, + 318, + 474 + ], + "score": 0.85, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 464, + 335, + 477 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 336, + 465, + 347, + 474 + ], + "score": 0.88, + "content": "C ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 464, + 505, + 477 + ], + "score": 1.0, + "content": "in experiments on image classification.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 376, + 506, + 477 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 497, + 200, + 509 + ], + "lines": [ + { + "bbox": [ + 105, + 496, + 201, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 201, + 511 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "title", + "bbox": [ + 108, + 525, + 248, + 536 + ], + "lines": [ + { + "bbox": [ + 105, + 524, + 250, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 250, + 537 + ], + "score": 1.0, + "content": "4.1 EXPERIMENT ON TOY DATA", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 539, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 106, + 539, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 539, + 505, + 552 + ], + "score": 1.0, + "content": "Experimental Setting. In this experiment, we observe the decision boundary obtained by each", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 550, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 505, + 562 + ], + "score": 1.0, + "content": "neuron to demonstrate that ADR encourages the neurons to learn different input characteristics. We", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "use synthetic “two moons” data for this problem. Two dimensional samples from two classes are", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "score": 1.0, + "content": "generated as source samples. Target samples are obtained by rotating the source samples. In our", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 583, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 506, + 596 + ], + "score": 1.0, + "content": "setting, the rotation was set to 30 degrees and data was generated with scikit-learn (Pedregosa et al.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 594, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 506, + 607 + ], + "score": 1.0, + "content": "(2011)). We train a six-layered fully-connected network; the lower 3 layers are used as feature", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 604, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 104, + 604, + 505, + 618 + ], + "score": 1.0, + "content": "generator, and upper 3 layers are used as classifier. We used Batch Normalization (Ioffe & Szegedy", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 615, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 505, + 629 + ], + "score": 1.0, + "content": "(2015)) and ReLU as activation function. The number of neurons are [2,5,5] for feature generator,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "score": 1.0, + "content": "[5,5,2] for classifier. We visualize the boundary obtained from each neuron in the last layer by", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 638, + 273, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 273, + 650 + ], + "score": 1.0, + "content": "removing the output of all other neurons.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 33.5, + "bbox_fs": [ + 104, + 539, + 506, + 650 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "Results. We show the learned boundary in Fig. 3. In the baseline model trained only with source", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "samples (top row), two of five neurons do not seem to learn an effective boundary, and three neurons", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "learn a similar boundary. On the other hand, in our method (bottom row), although two neurons do", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 689, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 505, + 700 + ], + "score": 1.0, + "content": "not seem to learn any meaningful boundary, three neurons learn distinctive boundaries, demonstrat-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "ing greater diversity. Each neuron is trained to be sensitive to the noise caused by target samples. The", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "final decision boundary (rightmost column) classifies most target samples correctly. The accuracy", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 721, + 468, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 213, + 733 + ], + "score": 1.0, + "content": "of our proposed method is", + "type": "text" + }, + { + "bbox": [ + 213, + 721, + 233, + 731 + ], + "score": 0.85, + "content": "96 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 721, + 444, + 733 + ], + "score": 1.0, + "content": "whereas the accuracy of the non-adapted model was", + "type": "text" + }, + { + "bbox": [ + 444, + 721, + 464, + 731 + ], + "score": 0.87, + "content": "84 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 721, + 468, + 733 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42, + "bbox_fs": [ + 105, + 655, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 79, + 503, + 192 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 79, + 503, + 192 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 79, + 503, + 192 + ], + "spans": [ + { + "bbox": [ + 109, + 79, + 503, + 192 + ], + "score": 0.964, + "type": "image", + "image_path": "739f2d31aa495e5a9d6c4fd7b45d22559c2abb1868aa853612bc7403b34eaae2.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 79, + 503, + 116.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 116.66666666666666, + 503, + 154.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 154.33333333333331, + 503, + 191.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 196, + 504, + 218 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 194, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 505, + 210 + ], + "score": 1.0, + "content": "Figure 4: Relationship between sensitivity loss on target (blue line), on source (yellow line), and accuracy", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 207, + 360, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 207, + 171, + 219 + ], + "score": 1.0, + "content": "(red: accuracy of", + "type": "text" + }, + { + "bbox": [ + 172, + 207, + 182, + 217 + ], + "score": 0.85, + "content": "C ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 207, + 256, + 219 + ], + "score": 1.0, + "content": ", green: accuracy of", + "type": "text" + }, + { + "bbox": [ + 256, + 208, + 264, + 217 + ], + "score": 0.73, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 207, + 360, + 219 + ], + "score": 1.0, + "content": ") during training on digits.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "title", + "bbox": [ + 107, + 243, + 389, + 254 + ], + "lines": [ + { + "bbox": [ + 105, + 241, + 391, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 391, + 255 + ], + "score": 1.0, + "content": "4.2 UNSUPERVISED DOMAIN ADAPTATION FOR CLASSIFICATION", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 106, + 270, + 505, + 424 + ], + "lines": [ + { + "bbox": [ + 106, + 270, + 504, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 504, + 282 + ], + "score": 1.0, + "content": "Experiments on Digits Classification. We evaluate our model on adaptation between digits", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 281, + 505, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 505, + 294 + ], + "score": 1.0, + "content": "datasets. We use MNIST (LeCun et al. (1998)), SVHN (Netzer et al. (2011)) and USPS datasets", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 291, + 504, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 504, + 304 + ], + "score": 1.0, + "content": "and follow the protocol of unsupervised domain adaptation used by (Tzeng et al. (2017)). To exten-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 303, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 505, + 316 + ], + "score": 1.0, + "content": "sively compare our method with previous methods, in adaptation from MNIST to USPS, we applied", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 314, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 314, + 506, + 327 + ], + "score": 1.0, + "content": "our method to a different protocol used in Bousmalis et al. (2017). We assume no labeled target", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 326, + 505, + 337 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 505, + 337 + ], + "score": 1.0, + "content": "samples and use fixed hyper-parameters for all experiments, unlike other works that use a target", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 336, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 439, + 348 + ], + "score": 1.0, + "content": "validation set (Saito et al. (2017)). The number of iterations for Step 3 was fixed at", + "type": "text" + }, + { + "bbox": [ + 439, + 336, + 464, + 346 + ], + "score": 0.89, + "content": "n = 4", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 336, + 505, + 348 + ], + "score": 1.0, + "content": ". We used", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 347, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 506, + 360 + ], + "score": 1.0, + "content": "the same network architecture as in (Tzeng et al. (2017)), but inserted a Batch Normalization layer", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 358, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 505, + 371 + ], + "score": 1.0, + "content": "before the activation layer to stabilize the training. We used Adam (Kingma & Ba (2014)) for opti-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 368, + 507, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 239, + 383 + ], + "score": 1.0, + "content": "mizer and set the learning rate to", + "type": "text" + }, + { + "bbox": [ + 239, + 369, + 284, + 380 + ], + "score": 0.93, + "content": "2 . 0 \\times 1 0 ^ { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 368, + 507, + 383 + ], + "score": 1.0, + "content": ", a value commonly reported in the GAN literature. We", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 380, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 505, + 392 + ], + "score": 1.0, + "content": "compare our approach to several existing methods and to the entropy minimization baseline (ENT)", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 390, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 506, + 403 + ], + "score": 1.0, + "content": "obtained by modifying (Springenberg (2015)). As we mentioned in Section 2, this is a model that", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 402, + 506, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 506, + 415 + ], + "score": 1.0, + "content": "generates features to minimize the entropy of the output probability for target samples. Due to space", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 412, + 420, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 420, + 425 + ], + "score": 1.0, + "content": "limitations, we provide a detailed explanation of this baseline in the appendix.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 107, + 429, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 106, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 505, + 442 + ], + "score": 1.0, + "content": "Results in Table 1 demonstrate that ADR obtains better performance than existing methods. In", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 441, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 505, + 452 + ], + "score": 1.0, + "content": "particular, on the challenging adaptation task from SVHN to MNIST, our method achieves much", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 452, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 506, + 464 + ], + "score": 1.0, + "content": "better accuracy than previously reported. Fig. 4 shows the learning curve of each experiment. As", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 463, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 431, + 475 + ], + "score": 1.0, + "content": "sensitivity loss increases, the target accuracy improves. This means that as critic", + "type": "text" + }, + { + "bbox": [ + 431, + 463, + 441, + 473 + ], + "score": 0.79, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 463, + 506, + 475 + ], + "score": 1.0, + "content": "learns to detect", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 471, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 304, + 487 + ], + "score": 1.0, + "content": "the non-discriminative samples, feature generator", + "type": "text" + }, + { + "bbox": [ + 304, + 474, + 313, + 484 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 471, + 506, + 487 + ], + "score": 1.0, + "content": "learns to fool it, resulting in improved accuracy.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 484, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 505, + 497 + ], + "score": 1.0, + "content": "In addition, we can see that the sensitivity of source samples increases too. As mentioned in Sec 3.3,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 495, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 505, + 508 + ], + "score": 1.0, + "content": "the critic network should learn to capture features which are not very important for classification,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 506, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 505, + 519 + ], + "score": 1.0, + "content": "such as texture or slight edges, and it seems to also capture such information in source samples. The", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 518, + 506, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 210, + 529 + ], + "score": 1.0, + "content": "accuracy of the classifier", + "type": "text" + }, + { + "bbox": [ + 210, + 518, + 222, + 528 + ], + "score": 0.86, + "content": "C ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 518, + 506, + 529 + ], + "score": 1.0, + "content": "(denoted by red), which is trained not to be sensitive to the noise, is", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 528, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 506, + 541 + ], + "score": 1.0, + "content": "almost always better than the accuracy of the critic network. In adaptation from SVHN to MNIST", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 540, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 505, + 552 + ], + "score": 1.0, + "content": "(Fig. 5(c)), the accuracy of the critic often suffers as it becomes too sensitive to the noise caused by", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 550, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 562 + ], + "score": 1.0, + "content": "dropout. On the other hand, the accuracy shown by the red line is stable. Our ENT baseline shows", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 561, + 506, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 573 + ], + "score": 1.0, + "content": "good performance compared to other existing methods. This result indicates the effectiveness of", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "methods based on entropy minimization. In Fig. 5, we compare our proposed method and ENT in", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 584, + 504, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 584, + 504, + 595 + ], + "score": 1.0, + "content": "terms of entropy of target samples. Our method clearly decreases the entropy, because target samples", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 593, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 104, + 593, + 505, + 607 + ], + "score": 1.0, + "content": "are moved away from the decision boundary. Yet, its behavior is different from ENT. Interestingly,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 604, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 618 + ], + "score": 1.0, + "content": "the entropy is made smaller than ENT in case of adaptation from USPS to MNIST (Fig. 4(a)) though", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 614, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 104, + 614, + 505, + 630 + ], + "score": 1.0, + "content": "ENT directly minimizes the entropy and our method does not. On the SVHN to MNIST task (Fig.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "score": 1.0, + "content": "4(c)), the entropy of ADR is larger than ENT, which indicates that our method places the target", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 638, + 333, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 333, + 650 + ], + "score": 1.0, + "content": "samples closer to the decision boundary than ENT does.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 667 + ], + "score": 1.0, + "content": "Experiments on Object Classification. We next evaluate our method on fine-tuning a pretrained", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "CNN. We use a new domain adaptation benchmark called the VisDA Challenge (Peng et al. (2017))", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "which focuses on the challenging task of adapting from synthetic to real images. The source domain", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "consists of 152,409 synthetic 2D images from 12 object classes rendered from 3D models. The", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "validation and test target domains consists of real images, which belong to the same classes. We used", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "the validation domain (55,400 images) as our target domain in an unsupervised domain adaptation", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 104, + 719, + 140, + 735 + ], + "spans": [ + { + "bbox": [ + 104, + 719, + 140, + 735 + ], + "score": 1.0, + "content": "setting.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 43 + } + ], + "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 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 79, + 503, + 192 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 79, + 503, + 192 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 79, + 503, + 192 + ], + "spans": [ + { + "bbox": [ + 109, + 79, + 503, + 192 + ], + "score": 0.964, + "type": "image", + "image_path": "739f2d31aa495e5a9d6c4fd7b45d22559c2abb1868aa853612bc7403b34eaae2.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 79, + 503, + 116.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 116.66666666666666, + 503, + 154.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 154.33333333333331, + 503, + 191.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 196, + 504, + 218 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 194, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 505, + 210 + ], + "score": 1.0, + "content": "Figure 4: Relationship between sensitivity loss on target (blue line), on source (yellow line), and accuracy", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 207, + 360, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 207, + 171, + 219 + ], + "score": 1.0, + "content": "(red: accuracy of", + "type": "text" + }, + { + "bbox": [ + 172, + 207, + 182, + 217 + ], + "score": 0.85, + "content": "C ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 207, + 256, + 219 + ], + "score": 1.0, + "content": ", green: accuracy of", + "type": "text" + }, + { + "bbox": [ + 256, + 208, + 264, + 217 + ], + "score": 0.73, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 207, + 360, + 219 + ], + "score": 1.0, + "content": ") during training on digits.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "title", + "bbox": [ + 107, + 243, + 389, + 254 + ], + "lines": [ + { + "bbox": [ + 105, + 241, + 391, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 391, + 255 + ], + "score": 1.0, + "content": "4.2 UNSUPERVISED DOMAIN ADAPTATION FOR CLASSIFICATION", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 106, + 270, + 505, + 424 + ], + "lines": [ + { + "bbox": [ + 106, + 270, + 504, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 504, + 282 + ], + "score": 1.0, + "content": "Experiments on Digits Classification. We evaluate our model on adaptation between digits", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 281, + 505, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 505, + 294 + ], + "score": 1.0, + "content": "datasets. We use MNIST (LeCun et al. (1998)), SVHN (Netzer et al. (2011)) and USPS datasets", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 291, + 504, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 504, + 304 + ], + "score": 1.0, + "content": "and follow the protocol of unsupervised domain adaptation used by (Tzeng et al. (2017)). To exten-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 303, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 505, + 316 + ], + "score": 1.0, + "content": "sively compare our method with previous methods, in adaptation from MNIST to USPS, we applied", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 314, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 314, + 506, + 327 + ], + "score": 1.0, + "content": "our method to a different protocol used in Bousmalis et al. (2017). We assume no labeled target", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 326, + 505, + 337 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 505, + 337 + ], + "score": 1.0, + "content": "samples and use fixed hyper-parameters for all experiments, unlike other works that use a target", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 336, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 439, + 348 + ], + "score": 1.0, + "content": "validation set (Saito et al. (2017)). The number of iterations for Step 3 was fixed at", + "type": "text" + }, + { + "bbox": [ + 439, + 336, + 464, + 346 + ], + "score": 0.89, + "content": "n = 4", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 336, + 505, + 348 + ], + "score": 1.0, + "content": ". We used", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 347, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 506, + 360 + ], + "score": 1.0, + "content": "the same network architecture as in (Tzeng et al. (2017)), but inserted a Batch Normalization layer", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 358, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 505, + 371 + ], + "score": 1.0, + "content": "before the activation layer to stabilize the training. We used Adam (Kingma & Ba (2014)) for opti-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 368, + 507, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 239, + 383 + ], + "score": 1.0, + "content": "mizer and set the learning rate to", + "type": "text" + }, + { + "bbox": [ + 239, + 369, + 284, + 380 + ], + "score": 0.93, + "content": "2 . 0 \\times 1 0 ^ { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 368, + 507, + 383 + ], + "score": 1.0, + "content": ", a value commonly reported in the GAN literature. We", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 380, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 505, + 392 + ], + "score": 1.0, + "content": "compare our approach to several existing methods and to the entropy minimization baseline (ENT)", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 390, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 506, + 403 + ], + "score": 1.0, + "content": "obtained by modifying (Springenberg (2015)). As we mentioned in Section 2, this is a model that", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 402, + 506, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 506, + 415 + ], + "score": 1.0, + "content": "generates features to minimize the entropy of the output probability for target samples. Due to space", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 412, + 420, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 420, + 425 + ], + "score": 1.0, + "content": "limitations, we provide a detailed explanation of this baseline in the appendix.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 270, + 507, + 425 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 429, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 106, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 505, + 442 + ], + "score": 1.0, + "content": "Results in Table 1 demonstrate that ADR obtains better performance than existing methods. In", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 441, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 505, + 452 + ], + "score": 1.0, + "content": "particular, on the challenging adaptation task from SVHN to MNIST, our method achieves much", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 452, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 506, + 464 + ], + "score": 1.0, + "content": "better accuracy than previously reported. Fig. 4 shows the learning curve of each experiment. As", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 463, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 431, + 475 + ], + "score": 1.0, + "content": "sensitivity loss increases, the target accuracy improves. This means that as critic", + "type": "text" + }, + { + "bbox": [ + 431, + 463, + 441, + 473 + ], + "score": 0.79, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 463, + 506, + 475 + ], + "score": 1.0, + "content": "learns to detect", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 471, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 304, + 487 + ], + "score": 1.0, + "content": "the non-discriminative samples, feature generator", + "type": "text" + }, + { + "bbox": [ + 304, + 474, + 313, + 484 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 471, + 506, + 487 + ], + "score": 1.0, + "content": "learns to fool it, resulting in improved accuracy.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 484, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 505, + 497 + ], + "score": 1.0, + "content": "In addition, we can see that the sensitivity of source samples increases too. As mentioned in Sec 3.3,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 495, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 505, + 508 + ], + "score": 1.0, + "content": "the critic network should learn to capture features which are not very important for classification,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 506, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 505, + 519 + ], + "score": 1.0, + "content": "such as texture or slight edges, and it seems to also capture such information in source samples. The", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 518, + 506, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 210, + 529 + ], + "score": 1.0, + "content": "accuracy of the classifier", + "type": "text" + }, + { + "bbox": [ + 210, + 518, + 222, + 528 + ], + "score": 0.86, + "content": "C ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 518, + 506, + 529 + ], + "score": 1.0, + "content": "(denoted by red), which is trained not to be sensitive to the noise, is", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 528, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 506, + 541 + ], + "score": 1.0, + "content": "almost always better than the accuracy of the critic network. In adaptation from SVHN to MNIST", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 540, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 505, + 552 + ], + "score": 1.0, + "content": "(Fig. 5(c)), the accuracy of the critic often suffers as it becomes too sensitive to the noise caused by", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 550, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 562 + ], + "score": 1.0, + "content": "dropout. On the other hand, the accuracy shown by the red line is stable. Our ENT baseline shows", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 561, + 506, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 573 + ], + "score": 1.0, + "content": "good performance compared to other existing methods. This result indicates the effectiveness of", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "methods based on entropy minimization. In Fig. 5, we compare our proposed method and ENT in", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 584, + 504, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 584, + 504, + 595 + ], + "score": 1.0, + "content": "terms of entropy of target samples. Our method clearly decreases the entropy, because target samples", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 593, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 104, + 593, + 505, + 607 + ], + "score": 1.0, + "content": "are moved away from the decision boundary. Yet, its behavior is different from ENT. Interestingly,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 604, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 618 + ], + "score": 1.0, + "content": "the entropy is made smaller than ENT in case of adaptation from USPS to MNIST (Fig. 4(a)) though", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 614, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 104, + 614, + 505, + 630 + ], + "score": 1.0, + "content": "ENT directly minimizes the entropy and our method does not. On the SVHN to MNIST task (Fig.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "score": 1.0, + "content": "4(c)), the entropy of ADR is larger than ENT, which indicates that our method places the target", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 638, + 333, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 333, + 650 + ], + "score": 1.0, + "content": "samples closer to the decision boundary than ENT does.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 29.5, + "bbox_fs": [ + 104, + 429, + 506, + 650 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 667 + ], + "score": 1.0, + "content": "Experiments on Object Classification. We next evaluate our method on fine-tuning a pretrained", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "CNN. We use a new domain adaptation benchmark called the VisDA Challenge (Peng et al. (2017))", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "which focuses on the challenging task of adapting from synthetic to real images. The source domain", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "consists of 152,409 synthetic 2D images from 12 object classes rendered from 3D models. The", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "validation and test target domains consists of real images, which belong to the same classes. We used", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "the validation domain (55,400 images) as our target domain in an unsupervised domain adaptation", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 104, + 719, + 140, + 735 + ], + "spans": [ + { + "bbox": [ + 104, + 719, + 140, + 735 + ], + "score": 1.0, + "content": "setting.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 43, + "bbox_fs": [ + 104, + 654, + 505, + 735 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 83, + 492, + 190 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 83, + 492, + 190 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 83, + 492, + 190 + ], + "spans": [ + { + "bbox": [ + 109, + 83, + 492, + 190 + ], + "score": 0.966, + "type": "image", + "image_path": "177e15de1ac8fd6d27b034896b5372cb923b428390b94b1a14d9cc289b6a1b4f.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 83, + 492, + 118.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 118.66666666666666, + 492, + 154.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 154.33333333333331, + 492, + 189.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 192, + 503, + 214 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 191, + 505, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 505, + 204 + ], + "score": 1.0, + "content": "Figure 5: Comparison of entropy of ours (blue line) with ENT (yellow line). The entropy is calculated on", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 203, + 291, + 215 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 291, + 215 + ], + "score": 1.0, + "content": "target samples by using the output of the classifier.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "table", + "bbox": [ + 115, + 218, + 494, + 372 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 115, + 218, + 494, + 372 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 115, + 218, + 494, + 372 + ], + "spans": [ + { + "bbox": [ + 115, + 218, + 494, + 372 + ], + "score": 0.977, + "html": "
METHODSVHN to MNISTUSPS to MNISTMNIST(P1) to USPSMNIST(P2) to USPS
Source Only67.168.177.078.9
LTN (Sener et al. (2016))78.8-1-
ATDA (Saito et al. (2017))86.2†=1-
DSN (Bousmalis et al. (2016))82.7†91.3†
PixelDA (Bousmalis et al. (2017)1=-95.9†
DANN (Ganin & Lempitsky (2014))73.973.0±2.077.1±1.885.1†
DoC (Tzeng et al. (2014))68.1±0.366.5±3.379.1±0.51
ADDA (Tzeng et al. (2017))76.0±1.890.1±0.889.4±0.2-
CoGAN (Liu & Tuzel (2016))did not converge89.1±0.891.2±0.8=
DTN (Taigman et al. (2016))84.71-
ENT (Our proposed baseline) Ours94.9±4.11 95.0±1.8791.2±1.92 93.1±1.2793.7±0.54 93.2±2.4696.7±1.27 96.1±0.29
", + "type": "table", + "image_path": "cebe388166950ef90d8cb324df11aaa66b6c377b12baa85b995f38fc178c531d.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 115, + 218, + 494, + 269.3333333333333 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 115, + 269.3333333333333, + 494, + 320.66666666666663 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 115, + 320.66666666666663, + 494, + 371.99999999999994 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 107, + 381, + 505, + 424 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 380, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 304, + 393 + ], + "score": 1.0, + "content": "Table 1: Results on digits datasets. Please note that", + "type": "text" + }, + { + "bbox": [ + 304, + 381, + 310, + 392 + ], + "score": 0.81, + "content": "^ \\dagger", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 380, + 505, + 393 + ], + "score": 1.0, + "content": "means the result obtained using a few labeled target", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 390, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 384, + 405 + ], + "score": 1.0, + "content": "samples for validation. The reported accuracy of our method is obtained from", + "type": "text" + }, + { + "bbox": [ + 384, + 391, + 395, + 401 + ], + "score": 0.85, + "content": "C ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 390, + 505, + 405 + ], + "score": 1.0, + "content": ". ENT is our proposed entropy", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 403, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 403, + 505, + 414 + ], + "score": 1.0, + "content": "minimization baseline, described in the appendix. MNIST(P1) and MNIST(P2) indicate different experimental", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 413, + 383, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 383, + 426 + ], + "score": 1.0, + "content": "settings used in Tzeng et al. (2017) and Bousmalis et al. (2017) respectively.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5 + } + ], + "index": 7.75 + }, + { + "type": "text", + "bbox": [ + 107, + 443, + 505, + 487 + ], + "lines": [ + { + "bbox": [ + 105, + 442, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 505, + 456 + ], + "score": 1.0, + "content": "We evaluate our model on fine-tuning networks pretrained on ImageNet (Deng et al. (2009)):", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 453, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 505, + 466 + ], + "score": 1.0, + "content": "ResNet101 (He et al. (2016)) and ResNext (Xie et al. (2016)). For the feature generator, we use", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 465, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 505, + 477 + ], + "score": 1.0, + "content": "the pretrained CNN after removing the top fully connected layer. For the classification network, we", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 476, + 285, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 285, + 488 + ], + "score": 1.0, + "content": "use a three-layered fully connected network.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 107, + 492, + 505, + 572 + ], + "lines": [ + { + "bbox": [ + 106, + 493, + 504, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 504, + 505 + ], + "score": 1.0, + "content": "Table 2 shows that our method outperformed other distribution matching methods and our new base-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 504, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 505, + 516 + ], + "score": 1.0, + "content": "line (ENT) in finetuning both networks by a large margin. ENT did not achieve better performance", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 515, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 505, + 528 + ], + "score": 1.0, + "content": "than existing methods, though improvement over the source only model was observed. Although", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 525, + 505, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 505, + 539 + ], + "score": 1.0, + "content": "this method performed well on digits, it does not work as well here, possibly because of the larger", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 537, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 448, + 550 + ], + "score": 1.0, + "content": "shift between very different domains. In the experiment on ResNext, after training", + "type": "text" + }, + { + "bbox": [ + 448, + 537, + 457, + 547 + ], + "score": 0.77, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 537, + 477, + 550 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 477, + 537, + 486, + 547 + ], + "score": 0.78, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 537, + 505, + 550 + ], + "score": 1.0, + "content": ", we", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 547, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 104, + 547, + 191, + 563 + ], + "score": 1.0, + "content": "retrained a classifier", + "type": "text" + }, + { + "bbox": [ + 191, + 547, + 203, + 559 + ], + "score": 0.85, + "content": "C ^ { ' }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 547, + 341, + 563 + ], + "score": 1.0, + "content": "just on the features generated by", + "type": "text" + }, + { + "bbox": [ + 341, + 549, + 350, + 559 + ], + "score": 0.76, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 547, + 506, + 563 + ], + "score": 1.0, + "content": "due to GPU memory limitations, and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 561, + 272, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 272, + 572 + ], + "score": 1.0, + "content": "observed improvement in both networks.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 577, + 503, + 610 + ], + "lines": [ + { + "bbox": [ + 106, + 577, + 504, + 589 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 300, + 589 + ], + "score": 1.0, + "content": "Fig. 6 visualizes the target features obtained by", + "type": "text" + }, + { + "bbox": [ + 301, + 577, + 310, + 587 + ], + "score": 0.78, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 577, + 504, + 589 + ], + "score": 1.0, + "content": "with the pretrained model, model fine-tuned on", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 588, + 504, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 504, + 600 + ], + "score": 1.0, + "content": "source, and our ADR method. While the embedding of the source only model does not separate", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 599, + 443, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 443, + 612 + ], + "score": 1.0, + "content": "classes well due to domain shift, we can see clearly improved separation with ADR.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 616, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 105, + 615, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 505, + 630 + ], + "score": 1.0, + "content": "Image Segmentation experiments. Next, we apply our method to adaptation for semantic image", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "segmentation. Image segmentation is different from classification in that we classify each pixel in", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "the image. To evaluate the performance on segmentation, the synthetic GTA5 (Richter et al. (2016))", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "score": 1.0, + "content": "dataset is used as source, and real CityScape (Cordts et al. (2016)) dataset is used as target. Previous", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 659, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 505, + 672 + ], + "score": 1.0, + "content": "work tackled this problem by matching distributions of each pixel’s feature in a middle layer of the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 670, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 506, + 684 + ], + "score": 1.0, + "content": "network (Hoffman et al. (2016)). In this work, we apply ADR by calculating sensitivity between all", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 682, + 437, + 695 + ], + "spans": [ + { + "bbox": [ + 106, + 682, + 437, + 695 + ], + "score": 1.0, + "content": "pixels. The training procedure is exactly the same as in classification experiments.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "We use the ResNet50 pretrained on ImageNet, and utilize an FCN (Long et al. (2015a)) based", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "network architecture. Further, we utilize the more recent Dilated Residual Networks (DRN) 105", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 721, + 504, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 504, + 733 + ], + "score": 1.0, + "content": "layered model (Yu et al. (2017)), which outperforms ResNet50 on a semantic segmentation task.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 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": [ + 109, + 83, + 492, + 190 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 83, + 492, + 190 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 83, + 492, + 190 + ], + "spans": [ + { + "bbox": [ + 109, + 83, + 492, + 190 + ], + "score": 0.966, + "type": "image", + "image_path": "177e15de1ac8fd6d27b034896b5372cb923b428390b94b1a14d9cc289b6a1b4f.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 83, + 492, + 118.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 118.66666666666666, + 492, + 154.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 154.33333333333331, + 492, + 189.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 192, + 503, + 214 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 191, + 505, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 505, + 204 + ], + "score": 1.0, + "content": "Figure 5: Comparison of entropy of ours (blue line) with ENT (yellow line). The entropy is calculated on", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 203, + 291, + 215 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 291, + 215 + ], + "score": 1.0, + "content": "target samples by using the output of the classifier.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "table", + "bbox": [ + 115, + 218, + 494, + 372 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 115, + 218, + 494, + 372 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 115, + 218, + 494, + 372 + ], + "spans": [ + { + "bbox": [ + 115, + 218, + 494, + 372 + ], + "score": 0.977, + "html": "
METHODSVHN to MNISTUSPS to MNISTMNIST(P1) to USPSMNIST(P2) to USPS
Source Only67.168.177.078.9
LTN (Sener et al. (2016))78.8-1-
ATDA (Saito et al. (2017))86.2†=1-
DSN (Bousmalis et al. (2016))82.7†91.3†
PixelDA (Bousmalis et al. (2017)1=-95.9†
DANN (Ganin & Lempitsky (2014))73.973.0±2.077.1±1.885.1†
DoC (Tzeng et al. (2014))68.1±0.366.5±3.379.1±0.51
ADDA (Tzeng et al. (2017))76.0±1.890.1±0.889.4±0.2-
CoGAN (Liu & Tuzel (2016))did not converge89.1±0.891.2±0.8=
DTN (Taigman et al. (2016))84.71-
ENT (Our proposed baseline) Ours94.9±4.11 95.0±1.8791.2±1.92 93.1±1.2793.7±0.54 93.2±2.4696.7±1.27 96.1±0.29
", + "type": "table", + "image_path": "cebe388166950ef90d8cb324df11aaa66b6c377b12baa85b995f38fc178c531d.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 115, + 218, + 494, + 269.3333333333333 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 115, + 269.3333333333333, + 494, + 320.66666666666663 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 115, + 320.66666666666663, + 494, + 371.99999999999994 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 107, + 381, + 505, + 424 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 380, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 304, + 393 + ], + "score": 1.0, + "content": "Table 1: Results on digits datasets. Please note that", + "type": "text" + }, + { + "bbox": [ + 304, + 381, + 310, + 392 + ], + "score": 0.81, + "content": "^ \\dagger", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 380, + 505, + 393 + ], + "score": 1.0, + "content": "means the result obtained using a few labeled target", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 390, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 384, + 405 + ], + "score": 1.0, + "content": "samples for validation. The reported accuracy of our method is obtained from", + "type": "text" + }, + { + "bbox": [ + 384, + 391, + 395, + 401 + ], + "score": 0.85, + "content": "C ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 390, + 505, + 405 + ], + "score": 1.0, + "content": ". ENT is our proposed entropy", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 403, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 403, + 505, + 414 + ], + "score": 1.0, + "content": "minimization baseline, described in the appendix. MNIST(P1) and MNIST(P2) indicate different experimental", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 413, + 383, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 383, + 426 + ], + "score": 1.0, + "content": "settings used in Tzeng et al. (2017) and Bousmalis et al. (2017) respectively.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5 + } + ], + "index": 7.75 + }, + { + "type": "text", + "bbox": [ + 107, + 443, + 505, + 487 + ], + "lines": [ + { + "bbox": [ + 105, + 442, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 505, + 456 + ], + "score": 1.0, + "content": "We evaluate our model on fine-tuning networks pretrained on ImageNet (Deng et al. (2009)):", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 453, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 505, + 466 + ], + "score": 1.0, + "content": "ResNet101 (He et al. (2016)) and ResNext (Xie et al. (2016)). For the feature generator, we use", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 465, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 505, + 477 + ], + "score": 1.0, + "content": "the pretrained CNN after removing the top fully connected layer. For the classification network, we", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 476, + 285, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 285, + 488 + ], + "score": 1.0, + "content": "use a three-layered fully connected network.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 442, + 505, + 488 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 492, + 505, + 572 + ], + "lines": [ + { + "bbox": [ + 106, + 493, + 504, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 504, + 505 + ], + "score": 1.0, + "content": "Table 2 shows that our method outperformed other distribution matching methods and our new base-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 504, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 505, + 516 + ], + "score": 1.0, + "content": "line (ENT) in finetuning both networks by a large margin. ENT did not achieve better performance", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 515, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 505, + 528 + ], + "score": 1.0, + "content": "than existing methods, though improvement over the source only model was observed. Although", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 525, + 505, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 505, + 539 + ], + "score": 1.0, + "content": "this method performed well on digits, it does not work as well here, possibly because of the larger", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 537, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 448, + 550 + ], + "score": 1.0, + "content": "shift between very different domains. In the experiment on ResNext, after training", + "type": "text" + }, + { + "bbox": [ + 448, + 537, + 457, + 547 + ], + "score": 0.77, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 537, + 477, + 550 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 477, + 537, + 486, + 547 + ], + "score": 0.78, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 537, + 505, + 550 + ], + "score": 1.0, + "content": ", we", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 547, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 104, + 547, + 191, + 563 + ], + "score": 1.0, + "content": "retrained a classifier", + "type": "text" + }, + { + "bbox": [ + 191, + 547, + 203, + 559 + ], + "score": 0.85, + "content": "C ^ { ' }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 547, + 341, + 563 + ], + "score": 1.0, + "content": "just on the features generated by", + "type": "text" + }, + { + "bbox": [ + 341, + 549, + 350, + 559 + ], + "score": 0.76, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 547, + 506, + 563 + ], + "score": 1.0, + "content": "due to GPU memory limitations, and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 561, + 272, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 272, + 572 + ], + "score": 1.0, + "content": "observed improvement in both networks.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19, + "bbox_fs": [ + 104, + 493, + 506, + 572 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 577, + 503, + 610 + ], + "lines": [ + { + "bbox": [ + 106, + 577, + 504, + 589 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 300, + 589 + ], + "score": 1.0, + "content": "Fig. 6 visualizes the target features obtained by", + "type": "text" + }, + { + "bbox": [ + 301, + 577, + 310, + 587 + ], + "score": 0.78, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 577, + 504, + 589 + ], + "score": 1.0, + "content": "with the pretrained model, model fine-tuned on", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 588, + 504, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 504, + 600 + ], + "score": 1.0, + "content": "source, and our ADR method. While the embedding of the source only model does not separate", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 599, + 443, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 443, + 612 + ], + "score": 1.0, + "content": "classes well due to domain shift, we can see clearly improved separation with ADR.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 577, + 504, + 612 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 616, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 105, + 615, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 505, + 630 + ], + "score": 1.0, + "content": "Image Segmentation experiments. Next, we apply our method to adaptation for semantic image", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "segmentation. Image segmentation is different from classification in that we classify each pixel in", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "the image. To evaluate the performance on segmentation, the synthetic GTA5 (Richter et al. (2016))", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "score": 1.0, + "content": "dataset is used as source, and real CityScape (Cordts et al. (2016)) dataset is used as target. Previous", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 659, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 505, + 672 + ], + "score": 1.0, + "content": "work tackled this problem by matching distributions of each pixel’s feature in a middle layer of the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 670, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 506, + 684 + ], + "score": 1.0, + "content": "network (Hoffman et al. (2016)). In this work, we apply ADR by calculating sensitivity between all", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 682, + 437, + 695 + ], + "spans": [ + { + "bbox": [ + 106, + 682, + 437, + 695 + ], + "score": 1.0, + "content": "pixels. The training procedure is exactly the same as in classification experiments.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 615, + 506, + 695 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "We use the ResNet50 pretrained on ImageNet, and utilize an FCN (Long et al. (2015a)) based", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "network architecture. Further, we utilize the more recent Dilated Residual Networks (DRN) 105", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 721, + 504, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 504, + 733 + ], + "score": 1.0, + "content": "layered model (Yu et al. (2017)), which outperforms ResNet50 on a semantic segmentation task.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34, + "bbox_fs": [ + 106, + 699, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 143, + 81, + 469, + 253 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 143, + 81, + 469, + 253 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 143, + 81, + 469, + 253 + ], + "spans": [ + { + "bbox": [ + 143, + 81, + 469, + 253 + ], + "score": 0.98, + "html": "
Methodgrrrdoraegpaleie 3ueoormorreiltuosiadsareraertrnaaa
Finetuning on ResNet101
Source Only55.153.3 61.959.180.617.979.731.281.026.573.58.552.4
MMD87.163.0 76.542.090.342.985.953.149.736.385.820.761.1
DANN81.977.7 82.844.381.229.565.128.651.954.682.87.857.4
ENT80.375.5 75.848.377.927.369.740.246.546.679.316.057.0
Ours94.151.3 83.272.288.768.892.870.277.263.682.930.372.9
Ours (retrained classifier)94.248.5 84.072.990.174.292.672.580.861.882.228.873.5
Finetuning on ResNeXt
Source Only74.3 37.6 61.8 68.2 59.510.7 81.412.8 61.6 26.070.05.647.4
MMD90.751.1 64.865.689.946.591.940.181.524.190.028.563.7
DANN86.066.3 60.8 56.079.853.782.325.258.231.089.326.159.6
ENT94.781.0 57.046.673.949.069.231.040.534.387.315.156.6
Ours86.3 71.987.678.193.084.894.578.991.858.977.726.777.5
Ours (retrained classifier)89.270.9 85.782.093.786.7 93.372.389.553.086.728.377.6
", + "type": "table", + "image_path": "f1424f829d13d5222f78094f2d533a494b462bd17dd04b218b7d8dfb038049e0.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 143, + 81, + 469, + 138.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 143, + 138.33333333333334, + 469, + 195.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 143, + 195.66666666666669, + 469, + 253.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 257, + 506, + 300 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 256, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 505, + 268 + ], + "score": 1.0, + "content": "Table 2: Results on Visda2017 classification datasets (Peng et al. (2017)). DANN and MMD are distribution", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 268, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 106, + 268, + 505, + 279 + ], + "score": 1.0, + "content": "alignment methods proposed by (Ganin & Lempitsky (2014)) and (Long et al. (2015b)) respectively. Ours", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 279, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 279, + 506, + 291 + ], + "score": 1.0, + "content": "(retrain classifier) means the classifier retrained for our proposed generator as we mentioned in Sec 3.3. Our", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 290, + 370, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 370, + 302 + ], + "score": 1.0, + "content": "proposed method shows much better performance than existing methods.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "image", + "bbox": [ + 142, + 319, + 471, + 436 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 142, + 319, + 471, + 436 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 142, + 319, + 471, + 436 + ], + "spans": [ + { + "bbox": [ + 142, + 319, + 471, + 436 + ], + "score": 0.971, + "type": "image", + "image_path": "f85e9efe625959ba93fdcfd4024851f548acbeebd038701c1fb299173a9f68e4.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 142, + 319, + 471, + 358.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 142, + 358.0, + 471, + 397.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 142, + 397.0, + 471, + 436.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 444, + 504, + 484 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 443, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 505, + 456 + ], + "score": 1.0, + "content": "Figure 6: Visualization of VisDA-classification (12 classes) target features using T-SNE (Maaten & Hinton", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 454, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 454, + 505, + 466 + ], + "score": 1.0, + "content": "(2008)): (a) features obtained by the Imagenet-pretrained ResNext model not finetuned on VisDA; (b) features", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 463, + 505, + 476 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 505, + 476 + ], + "score": 1.0, + "content": "from the ResNext model fine-tuned only on VisDA source samples without any adaptation; (c) features obtained", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 474, + 259, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 259, + 486 + ], + "score": 1.0, + "content": "by ResNext adapted by our ADR method.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5 + } + ], + "index": 9.75 + }, + { + "type": "text", + "bbox": [ + 107, + 494, + 505, + 550 + ], + "lines": [ + { + "bbox": [ + 105, + 493, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 505, + 507 + ], + "score": 1.0, + "content": "For the feature generator, we use the pretrained network without fully-connected layers. For the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 504, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 505, + 519 + ], + "score": 1.0, + "content": "classifier, we use a fully-convolutional network with dropout layers. Due to limited memory, the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 515, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 505, + 529 + ], + "score": 1.0, + "content": "batch size is set to 1. We include details of the network architecture in appendix. For comparison,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 527, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 506, + 540 + ], + "score": 1.0, + "content": "we train a domain classifier based model for our network (DANN). We build a domain classifier", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 538, + 397, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 397, + 551 + ], + "score": 1.0, + "content": "network for the features of each pixel following (Hoffman et al. (2016)).", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 555, + 505, + 676 + ], + "lines": [ + { + "bbox": [ + 105, + 555, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 505, + 568 + ], + "score": 1.0, + "content": "In Table 3, we show the qualitative comparison with existing methods. ADR clearly improves mean", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 565, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 505, + 579 + ], + "score": 1.0, + "content": "IoU (Intersection-over-Union) compared to the source-only and competing models, beating state-of-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 577, + 506, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 506, + 591 + ], + "score": 1.0, + "content": "the-art by a large margin. When we apply ADR to DRN, the accuracy improves much more than for", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 588, + 506, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 506, + 600 + ], + "score": 1.0, + "content": "ResNet50, and is 12.4 points higher than the model trained only on GTA5 source samples. This is", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 598, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 506, + 613 + ], + "score": 1.0, + "content": "likely because ADR exploits the strong representation of the pretrained DRN network. Although we", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 610, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 505, + 622 + ], + "score": 1.0, + "content": "implemented ENT in this setting, the accuracy was much worse than the Source Only model with", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 621, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 633 + ], + "score": 1.0, + "content": "a mIoU of 15.0 in training ResNet50. The ENT method does not seem to work well on synthetic-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "score": 1.0, + "content": "to-real shifts. Finally, we illustrate our method’s improvement on example input images, ground", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 642, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 505, + 656 + ], + "score": 1.0, + "content": "truth labels, images segmented by the Source Only model and our method in Fig. 7. While the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 654, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 106, + 654, + 505, + 666 + ], + "score": 1.0, + "content": "Source Only model seems to suffer from domain shift, ADR generates a clean segmentation. These", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 664, + 420, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 420, + 678 + ], + "score": 1.0, + "content": "experiments demonstrate the effectiveness of ADR on semantic segmentation.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 24 + }, + { + "type": "title", + "bbox": [ + 108, + 693, + 195, + 705 + ], + "lines": [ + { + "bbox": [ + 104, + 691, + 197, + 708 + ], + "spans": [ + { + "bbox": [ + 104, + 691, + 197, + 708 + ], + "score": 1.0, + "content": "5 CONCLUSION", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 108, + 710, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "In this paper, we introduced a novel approach for aligning deep representation, Adversarial Dropout", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "Regularization, which learns to generate discriminative features for the target domain. The method", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 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": [ + 143, + 81, + 469, + 253 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 143, + 81, + 469, + 253 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 143, + 81, + 469, + 253 + ], + "spans": [ + { + "bbox": [ + 143, + 81, + 469, + 253 + ], + "score": 0.98, + "html": "
Methodgrrrdoraegpaleie 3ueoormorreiltuosiadsareraertrnaaa
Finetuning on ResNet101
Source Only55.153.3 61.959.180.617.979.731.281.026.573.58.552.4
MMD87.163.0 76.542.090.342.985.953.149.736.385.820.761.1
DANN81.977.7 82.844.381.229.565.128.651.954.682.87.857.4
ENT80.375.5 75.848.377.927.369.740.246.546.679.316.057.0
Ours94.151.3 83.272.288.768.892.870.277.263.682.930.372.9
Ours (retrained classifier)94.248.5 84.072.990.174.292.672.580.861.882.228.873.5
Finetuning on ResNeXt
Source Only74.3 37.6 61.8 68.2 59.510.7 81.412.8 61.6 26.070.05.647.4
MMD90.751.1 64.865.689.946.591.940.181.524.190.028.563.7
DANN86.066.3 60.8 56.079.853.782.325.258.231.089.326.159.6
ENT94.781.0 57.046.673.949.069.231.040.534.387.315.156.6
Ours86.3 71.987.678.193.084.894.578.991.858.977.726.777.5
Ours (retrained classifier)89.270.9 85.782.093.786.7 93.372.389.553.086.728.377.6
", + "type": "table", + "image_path": "f1424f829d13d5222f78094f2d533a494b462bd17dd04b218b7d8dfb038049e0.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 143, + 81, + 469, + 138.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 143, + 138.33333333333334, + 469, + 195.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 143, + 195.66666666666669, + 469, + 253.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 257, + 506, + 300 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 256, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 505, + 268 + ], + "score": 1.0, + "content": "Table 2: Results on Visda2017 classification datasets (Peng et al. (2017)). DANN and MMD are distribution", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 268, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 106, + 268, + 505, + 279 + ], + "score": 1.0, + "content": "alignment methods proposed by (Ganin & Lempitsky (2014)) and (Long et al. (2015b)) respectively. Ours", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 279, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 279, + 506, + 291 + ], + "score": 1.0, + "content": "(retrain classifier) means the classifier retrained for our proposed generator as we mentioned in Sec 3.3. Our", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 290, + 370, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 370, + 302 + ], + "score": 1.0, + "content": "proposed method shows much better performance than existing methods.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "image", + "bbox": [ + 142, + 319, + 471, + 436 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 142, + 319, + 471, + 436 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 142, + 319, + 471, + 436 + ], + "spans": [ + { + "bbox": [ + 142, + 319, + 471, + 436 + ], + "score": 0.971, + "type": "image", + "image_path": "f85e9efe625959ba93fdcfd4024851f548acbeebd038701c1fb299173a9f68e4.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 142, + 319, + 471, + 358.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 142, + 358.0, + 471, + 397.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 142, + 397.0, + 471, + 436.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 444, + 504, + 484 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 443, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 505, + 456 + ], + "score": 1.0, + "content": "Figure 6: Visualization of VisDA-classification (12 classes) target features using T-SNE (Maaten & Hinton", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 454, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 454, + 505, + 466 + ], + "score": 1.0, + "content": "(2008)): (a) features obtained by the Imagenet-pretrained ResNext model not finetuned on VisDA; (b) features", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 463, + 505, + 476 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 505, + 476 + ], + "score": 1.0, + "content": "from the ResNext model fine-tuned only on VisDA source samples without any adaptation; (c) features obtained", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 474, + 259, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 259, + 486 + ], + "score": 1.0, + "content": "by ResNext adapted by our ADR method.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5 + } + ], + "index": 9.75 + }, + { + "type": "text", + "bbox": [ + 107, + 494, + 505, + 550 + ], + "lines": [ + { + "bbox": [ + 105, + 493, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 505, + 507 + ], + "score": 1.0, + "content": "For the feature generator, we use the pretrained network without fully-connected layers. For the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 504, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 505, + 519 + ], + "score": 1.0, + "content": "classifier, we use a fully-convolutional network with dropout layers. Due to limited memory, the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 515, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 505, + 529 + ], + "score": 1.0, + "content": "batch size is set to 1. We include details of the network architecture in appendix. For comparison,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 527, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 506, + 540 + ], + "score": 1.0, + "content": "we train a domain classifier based model for our network (DANN). We build a domain classifier", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 538, + 397, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 397, + 551 + ], + "score": 1.0, + "content": "network for the features of each pixel following (Hoffman et al. (2016)).", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 493, + 506, + 551 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 555, + 505, + 676 + ], + "lines": [ + { + "bbox": [ + 105, + 555, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 505, + 568 + ], + "score": 1.0, + "content": "In Table 3, we show the qualitative comparison with existing methods. ADR clearly improves mean", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 565, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 505, + 579 + ], + "score": 1.0, + "content": "IoU (Intersection-over-Union) compared to the source-only and competing models, beating state-of-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 577, + 506, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 506, + 591 + ], + "score": 1.0, + "content": "the-art by a large margin. When we apply ADR to DRN, the accuracy improves much more than for", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 588, + 506, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 506, + 600 + ], + "score": 1.0, + "content": "ResNet50, and is 12.4 points higher than the model trained only on GTA5 source samples. This is", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 598, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 506, + 613 + ], + "score": 1.0, + "content": "likely because ADR exploits the strong representation of the pretrained DRN network. Although we", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 610, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 505, + 622 + ], + "score": 1.0, + "content": "implemented ENT in this setting, the accuracy was much worse than the Source Only model with", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 621, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 633 + ], + "score": 1.0, + "content": "a mIoU of 15.0 in training ResNet50. The ENT method does not seem to work well on synthetic-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "score": 1.0, + "content": "to-real shifts. Finally, we illustrate our method’s improvement on example input images, ground", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 642, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 505, + 656 + ], + "score": 1.0, + "content": "truth labels, images segmented by the Source Only model and our method in Fig. 7. While the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 654, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 106, + 654, + 505, + 666 + ], + "score": 1.0, + "content": "Source Only model seems to suffer from domain shift, ADR generates a clean segmentation. These", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 664, + 420, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 420, + 678 + ], + "score": 1.0, + "content": "experiments demonstrate the effectiveness of ADR on semantic segmentation.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 555, + 506, + 678 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 693, + 195, + 705 + ], + "lines": [ + { + "bbox": [ + 104, + 691, + 197, + 708 + ], + "spans": [ + { + "bbox": [ + 104, + 691, + 197, + 708 + ], + "score": 1.0, + "content": "5 CONCLUSION", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 108, + 710, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "In this paper, we introduced a novel approach for aligning deep representation, Adversarial Dropout", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "Regularization, which learns to generate discriminative features for the target domain. The method", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 349, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 505, + 360 + ], + "score": 1.0, + "content": "consists of a critic network that can detect samples near the task decision boundary and a feature", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 359, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 505, + 371 + ], + "score": 1.0, + "content": "generator that fools the critic. Our approach is general, applies to a variety of tasks, and does not", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 370, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 505, + 383 + ], + "score": 1.0, + "content": "require target domain labels. In extensive domain adaptation experiments, our method outperformed", + "type": "text", + "cross_page": true + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 379, + 506, + 395 + ], + "spans": [ + { + "bbox": [ + 104, + 379, + 506, + 395 + ], + "score": 1.0, + "content": "baseline methods, including entropy minimization, and achieved state-of-the-art results on three", + "type": "text", + "cross_page": true + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 391, + 144, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 144, + 405 + ], + "score": 1.0, + "content": "datasets.", + "type": "text", + "cross_page": true + } + ], + "index": 15 + } + ], + "index": 31.5, + "bbox_fs": [ + 106, + 709, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 108, + 81, + 504, + 172 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 108, + 81, + 504, + 172 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 81, + 504, + 172 + ], + "spans": [ + { + "bbox": [ + 108, + 81, + 504, + 172 + ], + "score": 0.975, + "html": "
NetworkMethodxeeepreBuiplng8irilenuosradMur0mrrqeemIoU
VGG-16FCN Wild70.432.462.114.95.410.914.22.779.221.364.644.14.270.48.07.30.03.50.027.1
ResNet50Source OnlyDANNOurs64.572.487.824.919.115.673.714.83.920.62.59.39.718.017.319.015.913.119.90.05.57.774.916.472.042.30.039.58.612.117.513.49.927.70.00.01.80.05.89.70.00.00.025.326.433.3
73.077.471.082.020.131.562.274.332.643.55.29.068.477.8
DRN-105Source OnlyOurs25.986.210.910.150.578.83.320.112.27.425.428.613.015.078.384.57.338.963.952.17.966.35.229.67.832.70.90.213.719.20.78.324.937.3
21.226.581.154.613.680.8
", + "type": "table", + "image_path": "a5a27f174055b694ce32992a128d5d59e5363e7969657c64f7dd99c7d8377e4f.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 81, + 504, + 111.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 111.33333333333333, + 504, + 141.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 141.66666666666666, + 504, + 172.0 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "image", + "bbox": [ + 107, + 205, + 499, + 304 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 107, + 179, + 503, + 201 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 178, + 505, + 191 + ], + "spans": [ + { + "bbox": [ + 106, + 178, + 244, + 191 + ], + "score": 1.0, + "content": "Table 3: Results on adaptation from", + "type": "text" + }, + { + "bbox": [ + 244, + 180, + 281, + 189 + ], + "score": 0.29, + "content": "\\mathrm { G T A } 5 ", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 178, + 505, + 191 + ], + "score": 1.0, + "content": "Cityscapes. DANN and FCN Wild denote methods proposed", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 189, + 369, + 202 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 369, + 202 + ], + "score": 1.0, + "content": "by (Ganin & Lempitsky (2014)) and (Hoffman et al. (2016) respectively.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "image_body", + "bbox": [ + 107, + 205, + 499, + 304 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 205, + 499, + 304 + ], + "spans": [ + { + "bbox": [ + 107, + 205, + 499, + 304 + ], + "score": 0.968, + "type": "image", + "image_path": "2a431aecdd2cbdb38788dec71565dbda6f38a671d3881b7e8cbaa1c5630bfb5c.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 107, + 205, + 499, + 238.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 107, + 238.0, + 499, + 271.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 107, + 271.0, + 499, + 304.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 308, + 505, + 340 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 306, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 505, + 320 + ], + "score": 1.0, + "content": "Figure 7: Comparison of results on two real images segmented by ResNet50. Clockwise from upper left:", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 318, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 505, + 330 + ], + "score": 1.0, + "content": "Original image; Ground truth; Segmented image before adaptation; Segmented image after adaptation by our", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 329, + 138, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 138, + 341 + ], + "score": 1.0, + "content": "method.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 348, + 505, + 403 + ], + "lines": [ + { + "bbox": [ + 106, + 349, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 505, + 360 + ], + "score": 1.0, + "content": "consists of a critic network that can detect samples near the task decision boundary and a feature", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 359, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 505, + 371 + ], + "score": 1.0, + "content": "generator that fools the critic. Our approach is general, applies to a variety of tasks, and does not", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 370, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 505, + 383 + ], + "score": 1.0, + "content": "require target domain labels. In extensive domain adaptation experiments, our method outperformed", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 379, + 506, + 395 + ], + "spans": [ + { + "bbox": [ + 104, + 379, + 506, + 395 + ], + "score": 1.0, + "content": "baseline methods, including entropy minimization, and achieved state-of-the-art results on three", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 391, + 144, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 144, + 405 + ], + "score": 1.0, + "content": "datasets.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 409, + 503, + 432 + ], + "lines": [ + { + "bbox": [ + 106, + 408, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 106, + 408, + 505, + 421 + ], + "score": 1.0, + "content": "We also show how to apply our method to train Generative Adversarial Networks for semi-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 420, + 253, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 253, + 432 + ], + "score": 1.0, + "content": "supervised learning in the appendix.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "title", + "bbox": [ + 108, + 448, + 243, + 460 + ], + "lines": [ + { + "bbox": [ + 105, + 447, + 245, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 245, + 462 + ], + "score": 1.0, + "content": "6 ACKNOWLEDGEMENTS", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 473, + 505, + 528 + ], + "lines": [ + { + "bbox": [ + 106, + 471, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 505, + 487 + ], + "score": 1.0, + "content": "We would like to thank Trevor Darrell for his great advice on our paper. The first author’s stay", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 484, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 505, + 498 + ], + "score": 1.0, + "content": "at Boston University was partially supported by a scholarship from the University of Tokyo. The", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 494, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 505, + 507 + ], + "score": 1.0, + "content": "work was partially funded by the ImPACT Program of the Council for Science, Technology, and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 506, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 505, + 519 + ], + "score": 1.0, + "content": "Innovation (Cabinet Office, Government of Japan), and was partially supported by CREST, JST.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 516, + 438, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 438, + 530 + ], + "score": 1.0, + "content": "Saenko was supported by IARPA and NSF grants CCF-1723379 and IIS-1724237.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21 + }, + { + "type": "title", + "bbox": [ + 107, + 545, + 175, + 558 + ], + "lines": [ + { + "bbox": [ + 106, + 546, + 176, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 546, + 176, + 559 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 564, + 505, + 597 + ], + "lines": [ + { + "bbox": [ + 106, + 564, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 505, + 577 + ], + "score": 1.0, + "content": "Shai Ben-David, John Blitzer, Koby Crammer, Alex Kulesza, Fernando Pereira, and Jennifer Wort-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 576, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 115, + 576, + 505, + 588 + ], + "score": 1.0, + "content": "man Vaughan. A theory of learning from different domains. Machine learning, 79(1-2):151–175,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 114, + 585, + 142, + 598 + ], + "spans": [ + { + "bbox": [ + 114, + 585, + 142, + 598 + ], + "score": 1.0, + "content": "2010.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 108, + 606, + 504, + 628 + ], + "lines": [ + { + "bbox": [ + 106, + 605, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 505, + 619 + ], + "score": 1.0, + "content": "Konstantinos Bousmalis, George Trigeorgis, Nathan Silberman, Dilip Krishnan, and Dumitru Erhan.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 617, + 298, + 628 + ], + "spans": [ + { + "bbox": [ + 116, + 617, + 298, + 628 + ], + "score": 1.0, + "content": "Domain separation networks. In NIPS, 2016.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 107, + 636, + 504, + 659 + ], + "lines": [ + { + "bbox": [ + 106, + 636, + 504, + 649 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 504, + 649 + ], + "score": 1.0, + "content": "Konstantinos Bousmalis, Nathan Silberman, David Dohan, Dumitru Erhan, and Dilip Krishnan. Un-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 648, + 501, + 661 + ], + "spans": [ + { + "bbox": [ + 116, + 648, + 501, + 661 + ], + "score": 1.0, + "content": "supervised pixel-level domain adaptation with generative adversarial networks. In CVPR, 2017.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 106, + 667, + 504, + 690 + ], + "lines": [ + { + "bbox": [ + 105, + 666, + 506, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 681 + ], + "score": 1.0, + "content": "Olivier Chapelle and Alexander Zien. Semi-supervised classification by low density separation. In", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 678, + 182, + 690 + ], + "spans": [ + { + "bbox": [ + 116, + 678, + 182, + 690 + ], + "score": 1.0, + "content": "AISTATS, 2005.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 697, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 506, + 712 + ], + "score": 1.0, + "content": "Marius Cordts, Mohamed Omran, Sebastian Ramos, Timo Rehfeld, Markus Enzweiler, Rodrigo", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 117, + 711, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 117, + 711, + 505, + 721 + ], + "score": 1.0, + "content": "Benenson, Uwe Franke, Stefan Roth, and Bernt Schiele. The cityscapes dataset for semantic", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 117, + 720, + 295, + 732 + ], + "spans": [ + { + "bbox": [ + 117, + 720, + 295, + 732 + ], + "score": 1.0, + "content": "urban scene understanding. In CVPR, 2016.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 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": [ + 108, + 81, + 504, + 172 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 108, + 81, + 504, + 172 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 81, + 504, + 172 + ], + "spans": [ + { + "bbox": [ + 108, + 81, + 504, + 172 + ], + "score": 0.975, + "html": "
NetworkMethodxeeepreBuiplng8irilenuosradMur0mrrqeemIoU
VGG-16FCN Wild70.432.462.114.95.410.914.22.779.221.364.644.14.270.48.07.30.03.50.027.1
ResNet50Source OnlyDANNOurs64.572.487.824.919.115.673.714.83.920.62.59.39.718.017.319.015.913.119.90.05.57.774.916.472.042.30.039.58.612.117.513.49.927.70.00.01.80.05.89.70.00.00.025.326.433.3
73.077.471.082.020.131.562.274.332.643.55.29.068.477.8
DRN-105Source OnlyOurs25.986.210.910.150.578.83.320.112.27.425.428.613.015.078.384.57.338.963.952.17.966.35.229.67.832.70.90.213.719.20.78.324.937.3
21.226.581.154.613.680.8
", + "type": "table", + "image_path": "a5a27f174055b694ce32992a128d5d59e5363e7969657c64f7dd99c7d8377e4f.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 81, + 504, + 111.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 111.33333333333333, + 504, + 141.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 141.66666666666666, + 504, + 172.0 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "image", + "bbox": [ + 107, + 205, + 499, + 304 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 107, + 179, + 503, + 201 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 178, + 505, + 191 + ], + "spans": [ + { + "bbox": [ + 106, + 178, + 244, + 191 + ], + "score": 1.0, + "content": "Table 3: Results on adaptation from", + "type": "text" + }, + { + "bbox": [ + 244, + 180, + 281, + 189 + ], + "score": 0.29, + "content": "\\mathrm { G T A } 5 ", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 178, + 505, + 191 + ], + "score": 1.0, + "content": "Cityscapes. DANN and FCN Wild denote methods proposed", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 189, + 369, + 202 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 369, + 202 + ], + "score": 1.0, + "content": "by (Ganin & Lempitsky (2014)) and (Hoffman et al. (2016) respectively.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "image_body", + "bbox": [ + 107, + 205, + 499, + 304 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 205, + 499, + 304 + ], + "spans": [ + { + "bbox": [ + 107, + 205, + 499, + 304 + ], + "score": 0.968, + "type": "image", + "image_path": "2a431aecdd2cbdb38788dec71565dbda6f38a671d3881b7e8cbaa1c5630bfb5c.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 107, + 205, + 499, + 238.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 107, + 238.0, + 499, + 271.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 107, + 271.0, + 499, + 304.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 308, + 505, + 340 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 306, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 505, + 320 + ], + "score": 1.0, + "content": "Figure 7: Comparison of results on two real images segmented by ResNet50. Clockwise from upper left:", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 318, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 505, + 330 + ], + "score": 1.0, + "content": "Original image; Ground truth; Segmented image before adaptation; Segmented image after adaptation by our", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 329, + 138, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 138, + 341 + ], + "score": 1.0, + "content": "method.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 348, + 505, + 403 + ], + "lines": [], + "index": 13, + "bbox_fs": [ + 104, + 349, + 506, + 405 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 409, + 503, + 432 + ], + "lines": [ + { + "bbox": [ + 106, + 408, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 106, + 408, + 505, + 421 + ], + "score": 1.0, + "content": "We also show how to apply our method to train Generative Adversarial Networks for semi-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 420, + 253, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 253, + 432 + ], + "score": 1.0, + "content": "supervised learning in the appendix.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 408, + 505, + 432 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 448, + 243, + 460 + ], + "lines": [ + { + "bbox": [ + 105, + 447, + 245, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 245, + 462 + ], + "score": 1.0, + "content": "6 ACKNOWLEDGEMENTS", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 473, + 505, + 528 + ], + "lines": [ + { + "bbox": [ + 106, + 471, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 505, + 487 + ], + "score": 1.0, + "content": "We would like to thank Trevor Darrell for his great advice on our paper. The first author’s stay", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 484, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 505, + 498 + ], + "score": 1.0, + "content": "at Boston University was partially supported by a scholarship from the University of Tokyo. The", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 494, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 505, + 507 + ], + "score": 1.0, + "content": "work was partially funded by the ImPACT Program of the Council for Science, Technology, and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 506, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 505, + 519 + ], + "score": 1.0, + "content": "Innovation (Cabinet Office, Government of Japan), and was partially supported by CREST, JST.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 516, + 438, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 438, + 530 + ], + "score": 1.0, + "content": "Saenko was supported by IARPA and NSF grants CCF-1723379 and IIS-1724237.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 471, + 505, + 530 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 545, + 175, + 558 + ], + "lines": [ + { + "bbox": [ + 106, + 546, + 176, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 546, + 176, + 559 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 564, + 505, + 597 + ], + "lines": [ + { + "bbox": [ + 106, + 564, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 505, + 577 + ], + "score": 1.0, + "content": "Shai Ben-David, John Blitzer, Koby Crammer, Alex Kulesza, Fernando Pereira, and Jennifer Wort-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 576, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 115, + 576, + 505, + 588 + ], + "score": 1.0, + "content": "man Vaughan. A theory of learning from different domains. Machine learning, 79(1-2):151–175,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 114, + 585, + 142, + 598 + ], + "spans": [ + { + "bbox": [ + 114, + 585, + 142, + 598 + ], + "score": 1.0, + "content": "2010.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 106, + 564, + 505, + 598 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 606, + 504, + 628 + ], + "lines": [ + { + "bbox": [ + 106, + 605, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 505, + 619 + ], + "score": 1.0, + "content": "Konstantinos Bousmalis, George Trigeorgis, Nathan Silberman, Dilip Krishnan, and Dumitru Erhan.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 617, + 298, + 628 + ], + "spans": [ + { + "bbox": [ + 116, + 617, + 298, + 628 + ], + "score": 1.0, + "content": "Domain separation networks. In NIPS, 2016.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 106, + 605, + 505, + 628 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 636, + 504, + 659 + ], + "lines": [ + { + "bbox": [ + 106, + 636, + 504, + 649 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 504, + 649 + ], + "score": 1.0, + "content": "Konstantinos Bousmalis, Nathan Silberman, David Dohan, Dumitru Erhan, and Dilip Krishnan. Un-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 648, + 501, + 661 + ], + "spans": [ + { + "bbox": [ + 116, + 648, + 501, + 661 + ], + "score": 1.0, + "content": "supervised pixel-level domain adaptation with generative adversarial networks. In CVPR, 2017.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 106, + 636, + 504, + 661 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 667, + 504, + 690 + ], + "lines": [ + { + "bbox": [ + 105, + 666, + 506, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 681 + ], + "score": 1.0, + "content": "Olivier Chapelle and Alexander Zien. Semi-supervised classification by low density separation. In", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 678, + 182, + 690 + ], + "spans": [ + { + "bbox": [ + 116, + 678, + 182, + 690 + ], + "score": 1.0, + "content": "AISTATS, 2005.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 666, + 506, + 690 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 697, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 506, + 712 + ], + "score": 1.0, + "content": "Marius Cordts, Mohamed Omran, Sebastian Ramos, Timo Rehfeld, Markus Enzweiler, Rodrigo", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 117, + 711, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 117, + 711, + 505, + 721 + ], + "score": 1.0, + "content": "Benenson, Uwe Franke, Stefan Roth, and Bernt Schiele. The cityscapes dataset for semantic", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 117, + 720, + 295, + 732 + ], + "spans": [ + { + "bbox": [ + 117, + 720, + 295, + 732 + ], + "score": 1.0, + "content": "urban scene understanding. In CVPR, 2016.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 697, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 106 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Zihang Dai, Zhilin Yang, Fan Yang, William W Cohen, and Ruslan Salakhutdinov. Good semi-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 94, + 456, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 94, + 456, + 106 + ], + "score": 1.0, + "content": "supervised learning that requires a bad gan. arXiv preprint arXiv:1705.09783, 2017.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 106, + 112, + 504, + 136 + ], + "lines": [ + { + "bbox": [ + 105, + 111, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 505, + 127 + ], + "score": 1.0, + "content": "Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A large-scale", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 124, + 299, + 136 + ], + "spans": [ + { + "bbox": [ + 116, + 124, + 299, + 136 + ], + "score": 1.0, + "content": "hierarchical image database. In CVPR, 2009.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 108, + 143, + 503, + 178 + ], + "lines": [ + { + "bbox": [ + 106, + 142, + 505, + 157 + ], + "spans": [ + { + "bbox": [ + 106, + 142, + 505, + 157 + ], + "score": 1.0, + "content": "Vincent Dumoulin, Ishmael Belghazi, Ben Poole, Alex Lamb, Martin Arjovsky, Olivier Mastropi-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 155, + 505, + 168 + ], + "spans": [ + { + "bbox": [ + 115, + 155, + 505, + 168 + ], + "score": 1.0, + "content": "etro, and Aaron Courville. Adversarially learned inference. arXiv preprint arXiv:1606.00704,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 114, + 165, + 143, + 178 + ], + "spans": [ + { + "bbox": [ + 114, + 165, + 143, + 178 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 106, + 185, + 504, + 209 + ], + "lines": [ + { + "bbox": [ + 106, + 185, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 185, + 505, + 199 + ], + "score": 1.0, + "content": "Yaroslav Ganin and Victor Lempitsky. Unsupervised domain adaptation by backpropagation. In", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 196, + 171, + 208 + ], + "spans": [ + { + "bbox": [ + 116, + 196, + 171, + 208 + ], + "score": 1.0, + "content": "ICML, 2014.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 107, + 216, + 503, + 250 + ], + "lines": [ + { + "bbox": [ + 106, + 215, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 106, + 215, + 505, + 230 + ], + "score": 1.0, + "content": "Yaroslav Ganin, Evgeniya Ustinova, Hana Ajakan, Pascal Germain, Hugo Larochelle, Franc¸ois", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 227, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 115, + 227, + 505, + 240 + ], + "score": 1.0, + "content": "Laviolette, Mario Marchand, and Victor Lempitsky. Domain-adversarial training of neural net-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 239, + 255, + 250 + ], + "spans": [ + { + "bbox": [ + 116, + 239, + 255, + 250 + ], + "score": 1.0, + "content": "works. JMLR, 17(59):1–35, 2016.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 257, + 504, + 281 + ], + "lines": [ + { + "bbox": [ + 105, + 257, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 505, + 272 + ], + "score": 1.0, + "content": "Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 269, + 451, + 282 + ], + "spans": [ + { + "bbox": [ + 116, + 269, + 451, + 282 + ], + "score": 1.0, + "content": "Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In NIPS, 2014a.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 105, + 288, + 504, + 312 + ], + "lines": [ + { + "bbox": [ + 105, + 288, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 505, + 302 + ], + "score": 1.0, + "content": "Ian J Goodfellow, Jonathon Shlens, and Christian Szegedy. Explaining and harnessing adversarial", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 300, + 226, + 312 + ], + "spans": [ + { + "bbox": [ + 116, + 300, + 226, + 312 + ], + "score": 1.0, + "content": "examples. In ICLR, 2014b.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 107, + 319, + 504, + 343 + ], + "lines": [ + { + "bbox": [ + 105, + 318, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 506, + 334 + ], + "score": 1.0, + "content": "Yves Grandvalet and Yoshua Bengio. Semi-supervised learning by entropy minimization. In NIPS,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 114, + 329, + 143, + 343 + ], + "spans": [ + { + "bbox": [ + 114, + 329, + 143, + 343 + ], + "score": 1.0, + "content": "2005.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 108, + 350, + 504, + 374 + ], + "lines": [ + { + "bbox": [ + 105, + 348, + 505, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 505, + 366 + ], + "score": 1.0, + "content": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recog-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 362, + 211, + 374 + ], + "spans": [ + { + "bbox": [ + 116, + 362, + 211, + 374 + ], + "score": 1.0, + "content": "nition. In CVPR, 2016.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 107, + 381, + 503, + 405 + ], + "lines": [ + { + "bbox": [ + 105, + 381, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 505, + 394 + ], + "score": 1.0, + "content": "Judy Hoffman, Dequan Wang, Fisher Yu, and Trevor Darrell. Fcns in the wild: Pixel-level adversar-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 392, + 423, + 406 + ], + "spans": [ + { + "bbox": [ + 116, + 392, + 423, + 406 + ], + "score": 1.0, + "content": "ial and constraint-based adaptation. arXiv preprint arXiv:1612.02649, 2016.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 108, + 412, + 502, + 435 + ], + "lines": [ + { + "bbox": [ + 105, + 411, + 504, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 504, + 427 + ], + "score": 1.0, + "content": "Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 423, + 313, + 435 + ], + "spans": [ + { + "bbox": [ + 115, + 423, + 313, + 435 + ], + "score": 1.0, + "content": "reducing internal covariate shift. In ICML, 2015.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 108, + 442, + 503, + 466 + ], + "lines": [ + { + "bbox": [ + 106, + 441, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 505, + 456 + ], + "score": 1.0, + "content": "Thorsten Joachims. Transductive inference for text classification using support vector machines. In", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 454, + 170, + 466 + ], + "spans": [ + { + "bbox": [ + 115, + 454, + 170, + 466 + ], + "score": 1.0, + "content": "ICML, 1999.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 107, + 473, + 504, + 497 + ], + "lines": [ + { + "bbox": [ + 105, + 473, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 505, + 487 + ], + "score": 1.0, + "content": "Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 484, + 215, + 497 + ], + "spans": [ + { + "bbox": [ + 115, + 484, + 215, + 497 + ], + "score": 1.0, + "content": "arXiv:1412.6980, 2014.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 106, + 504, + 504, + 528 + ], + "lines": [ + { + "bbox": [ + 106, + 504, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 505, + 517 + ], + "score": 1.0, + "content": "Yann LeCun, Leon Bottou, Yoshua Bengio, and Patrick Haffner. Gradient-based learning applied to ´", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 515, + 417, + 528 + ], + "spans": [ + { + "bbox": [ + 115, + 515, + 417, + 528 + ], + "score": 1.0, + "content": "document recognition. Proceedings of the IEEE, 86(11):2278–2324, 1998.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 105, + 535, + 463, + 548 + ], + "lines": [ + { + "bbox": [ + 105, + 534, + 464, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 464, + 549 + ], + "score": 1.0, + "content": "Ming-Yu Liu and Oncel Tuzel. Coupled generative adversarial networks. In NIPS, 2016.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 555, + 505, + 578 + ], + "lines": [ + { + "bbox": [ + 106, + 555, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 555, + 505, + 568 + ], + "score": 1.0, + "content": "Jonathan Long, Evan Shelhamer, and Trevor Darrell. Fully convolutional networks for semantic", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 567, + 245, + 578 + ], + "spans": [ + { + "bbox": [ + 116, + 567, + 245, + 578 + ], + "score": 1.0, + "content": "segmentation. In CVPR, 2015a.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 105, + 586, + 505, + 609 + ], + "lines": [ + { + "bbox": [ + 106, + 585, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 505, + 599 + ], + "score": 1.0, + "content": "Mingsheng Long, Yue Cao, Jianmin Wang, and Michael I Jordan. Learning transferable features", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 597, + 313, + 609 + ], + "spans": [ + { + "bbox": [ + 116, + 597, + 313, + 609 + ], + "score": 1.0, + "content": "with deep adaptation networks. In ICML, 2015b.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 106, + 616, + 505, + 640 + ], + "lines": [ + { + "bbox": [ + 106, + 616, + 504, + 629 + ], + "spans": [ + { + "bbox": [ + 106, + 616, + 504, + 629 + ], + "score": 1.0, + "content": "Mingsheng Long, Han Zhu, Jianmin Wang, and Michael I Jordan. Unsupervised domain adaptation", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 628, + 308, + 640 + ], + "spans": [ + { + "bbox": [ + 116, + 628, + 308, + 640 + ], + "score": 1.0, + "content": "with residual transfer networks. In NIPS, 2016.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 107, + 647, + 504, + 671 + ], + "lines": [ + { + "bbox": [ + 105, + 648, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 661 + ], + "score": 1.0, + "content": "Mingsheng Long, Jianmin Wang, and Michael I Jordan. Deep transfer learning with joint adaptation", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 659, + 223, + 670 + ], + "spans": [ + { + "bbox": [ + 115, + 659, + 223, + 670 + ], + "score": 1.0, + "content": "networks. In ICML, 2017.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 107, + 678, + 502, + 702 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 504, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 504, + 693 + ], + "score": 1.0, + "content": "Lars Maaløe, Casper Kaae Sønderby, Søren Kaae Sønderby, and Ole Winther. Auxiliary deep gen-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 690, + 342, + 702 + ], + "spans": [ + { + "bbox": [ + 116, + 690, + 342, + 702 + ], + "score": 1.0, + "content": "erative models. arXiv preprint arXiv:1602.05473, 2016.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 502, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 708, + 503, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 708, + 503, + 721 + ], + "score": 1.0, + "content": "Laurens van der Maaten and Geoffrey Hinton. Visualizing data using t-sne. JMLR, 9(Nov):2579–", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 720, + 167, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 167, + 732 + ], + "score": 1.0, + "content": "2605, 2008.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 106 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Zihang Dai, Zhilin Yang, Fan Yang, William W Cohen, and Ruslan Salakhutdinov. Good semi-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 94, + 456, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 94, + 456, + 106 + ], + "score": 1.0, + "content": "supervised learning that requires a bad gan. arXiv preprint arXiv:1705.09783, 2017.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 106, + 82, + 505, + 106 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 112, + 504, + 136 + ], + "lines": [ + { + "bbox": [ + 105, + 111, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 505, + 127 + ], + "score": 1.0, + "content": "Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A large-scale", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 124, + 299, + 136 + ], + "spans": [ + { + "bbox": [ + 116, + 124, + 299, + 136 + ], + "score": 1.0, + "content": "hierarchical image database. In CVPR, 2009.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 111, + 505, + 136 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 143, + 503, + 178 + ], + "lines": [ + { + "bbox": [ + 106, + 142, + 505, + 157 + ], + "spans": [ + { + "bbox": [ + 106, + 142, + 505, + 157 + ], + "score": 1.0, + "content": "Vincent Dumoulin, Ishmael Belghazi, Ben Poole, Alex Lamb, Martin Arjovsky, Olivier Mastropi-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 155, + 505, + 168 + ], + "spans": [ + { + "bbox": [ + 115, + 155, + 505, + 168 + ], + "score": 1.0, + "content": "etro, and Aaron Courville. Adversarially learned inference. arXiv preprint arXiv:1606.00704,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 114, + 165, + 143, + 178 + ], + "spans": [ + { + "bbox": [ + 114, + 165, + 143, + 178 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 106, + 142, + 505, + 178 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 185, + 504, + 209 + ], + "lines": [ + { + "bbox": [ + 106, + 185, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 185, + 505, + 199 + ], + "score": 1.0, + "content": "Yaroslav Ganin and Victor Lempitsky. Unsupervised domain adaptation by backpropagation. In", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 196, + 171, + 208 + ], + "spans": [ + { + "bbox": [ + 116, + 196, + 171, + 208 + ], + "score": 1.0, + "content": "ICML, 2014.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 106, + 185, + 505, + 208 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 216, + 503, + 250 + ], + "lines": [ + { + "bbox": [ + 106, + 215, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 106, + 215, + 505, + 230 + ], + "score": 1.0, + "content": "Yaroslav Ganin, Evgeniya Ustinova, Hana Ajakan, Pascal Germain, Hugo Larochelle, Franc¸ois", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 227, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 115, + 227, + 505, + 240 + ], + "score": 1.0, + "content": "Laviolette, Mario Marchand, and Victor Lempitsky. Domain-adversarial training of neural net-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 239, + 255, + 250 + ], + "spans": [ + { + "bbox": [ + 116, + 239, + 255, + 250 + ], + "score": 1.0, + "content": "works. JMLR, 17(59):1–35, 2016.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 106, + 215, + 505, + 250 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 257, + 504, + 281 + ], + "lines": [ + { + "bbox": [ + 105, + 257, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 505, + 272 + ], + "score": 1.0, + "content": "Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 269, + 451, + 282 + ], + "spans": [ + { + "bbox": [ + 116, + 269, + 451, + 282 + ], + "score": 1.0, + "content": "Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In NIPS, 2014a.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 257, + 505, + 282 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 288, + 504, + 312 + ], + "lines": [ + { + "bbox": [ + 105, + 288, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 505, + 302 + ], + "score": 1.0, + "content": "Ian J Goodfellow, Jonathon Shlens, and Christian Szegedy. Explaining and harnessing adversarial", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 300, + 226, + 312 + ], + "spans": [ + { + "bbox": [ + 116, + 300, + 226, + 312 + ], + "score": 1.0, + "content": "examples. In ICLR, 2014b.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 288, + 505, + 312 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 319, + 504, + 343 + ], + "lines": [ + { + "bbox": [ + 105, + 318, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 506, + 334 + ], + "score": 1.0, + "content": "Yves Grandvalet and Yoshua Bengio. Semi-supervised learning by entropy minimization. In NIPS,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 114, + 329, + 143, + 343 + ], + "spans": [ + { + "bbox": [ + 114, + 329, + 143, + 343 + ], + "score": 1.0, + "content": "2005.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 318, + 506, + 343 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 350, + 504, + 374 + ], + "lines": [ + { + "bbox": [ + 105, + 348, + 505, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 505, + 366 + ], + "score": 1.0, + "content": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recog-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 362, + 211, + 374 + ], + "spans": [ + { + "bbox": [ + 116, + 362, + 211, + 374 + ], + "score": 1.0, + "content": "nition. In CVPR, 2016.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 348, + 505, + 374 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 381, + 503, + 405 + ], + "lines": [ + { + "bbox": [ + 105, + 381, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 505, + 394 + ], + "score": 1.0, + "content": "Judy Hoffman, Dequan Wang, Fisher Yu, and Trevor Darrell. Fcns in the wild: Pixel-level adversar-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 392, + 423, + 406 + ], + "spans": [ + { + "bbox": [ + 116, + 392, + 423, + 406 + ], + "score": 1.0, + "content": "ial and constraint-based adaptation. arXiv preprint arXiv:1612.02649, 2016.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 381, + 505, + 406 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 412, + 502, + 435 + ], + "lines": [ + { + "bbox": [ + 105, + 411, + 504, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 504, + 427 + ], + "score": 1.0, + "content": "Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 423, + 313, + 435 + ], + "spans": [ + { + "bbox": [ + 115, + 423, + 313, + 435 + ], + "score": 1.0, + "content": "reducing internal covariate shift. In ICML, 2015.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 411, + 504, + 435 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 442, + 503, + 466 + ], + "lines": [ + { + "bbox": [ + 106, + 441, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 505, + 456 + ], + "score": 1.0, + "content": "Thorsten Joachims. Transductive inference for text classification using support vector machines. In", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 454, + 170, + 466 + ], + "spans": [ + { + "bbox": [ + 115, + 454, + 170, + 466 + ], + "score": 1.0, + "content": "ICML, 1999.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 106, + 441, + 505, + 466 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 473, + 504, + 497 + ], + "lines": [ + { + "bbox": [ + 105, + 473, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 505, + 487 + ], + "score": 1.0, + "content": "Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 484, + 215, + 497 + ], + "spans": [ + { + "bbox": [ + 115, + 484, + 215, + 497 + ], + "score": 1.0, + "content": "arXiv:1412.6980, 2014.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 473, + 505, + 497 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 504, + 504, + 528 + ], + "lines": [ + { + "bbox": [ + 106, + 504, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 505, + 517 + ], + "score": 1.0, + "content": "Yann LeCun, Leon Bottou, Yoshua Bengio, and Patrick Haffner. Gradient-based learning applied to ´", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 515, + 417, + 528 + ], + "spans": [ + { + "bbox": [ + 115, + 515, + 417, + 528 + ], + "score": 1.0, + "content": "document recognition. Proceedings of the IEEE, 86(11):2278–2324, 1998.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 106, + 504, + 505, + 528 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 535, + 463, + 548 + ], + "lines": [ + { + "bbox": [ + 105, + 534, + 464, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 464, + 549 + ], + "score": 1.0, + "content": "Ming-Yu Liu and Oncel Tuzel. Coupled generative adversarial networks. In NIPS, 2016.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 534, + 464, + 549 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 555, + 505, + 578 + ], + "lines": [ + { + "bbox": [ + 106, + 555, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 555, + 505, + 568 + ], + "score": 1.0, + "content": "Jonathan Long, Evan Shelhamer, and Trevor Darrell. Fully convolutional networks for semantic", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 567, + 245, + 578 + ], + "spans": [ + { + "bbox": [ + 116, + 567, + 245, + 578 + ], + "score": 1.0, + "content": "segmentation. In CVPR, 2015a.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 106, + 555, + 505, + 578 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 586, + 505, + 609 + ], + "lines": [ + { + "bbox": [ + 106, + 585, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 505, + 599 + ], + "score": 1.0, + "content": "Mingsheng Long, Yue Cao, Jianmin Wang, and Michael I Jordan. Learning transferable features", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 597, + 313, + 609 + ], + "spans": [ + { + "bbox": [ + 116, + 597, + 313, + 609 + ], + "score": 1.0, + "content": "with deep adaptation networks. In ICML, 2015b.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 106, + 585, + 505, + 609 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 616, + 505, + 640 + ], + "lines": [ + { + "bbox": [ + 106, + 616, + 504, + 629 + ], + "spans": [ + { + "bbox": [ + 106, + 616, + 504, + 629 + ], + "score": 1.0, + "content": "Mingsheng Long, Han Zhu, Jianmin Wang, and Michael I Jordan. Unsupervised domain adaptation", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 628, + 308, + 640 + ], + "spans": [ + { + "bbox": [ + 116, + 628, + 308, + 640 + ], + "score": 1.0, + "content": "with residual transfer networks. In NIPS, 2016.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 106, + 616, + 504, + 640 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 647, + 504, + 671 + ], + "lines": [ + { + "bbox": [ + 105, + 648, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 661 + ], + "score": 1.0, + "content": "Mingsheng Long, Jianmin Wang, and Michael I Jordan. Deep transfer learning with joint adaptation", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 659, + 223, + 670 + ], + "spans": [ + { + "bbox": [ + 115, + 659, + 223, + 670 + ], + "score": 1.0, + "content": "networks. In ICML, 2017.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 648, + 505, + 670 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 678, + 502, + 702 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 504, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 504, + 693 + ], + "score": 1.0, + "content": "Lars Maaløe, Casper Kaae Sønderby, Søren Kaae Sønderby, and Ole Winther. Auxiliary deep gen-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 690, + 342, + 702 + ], + "spans": [ + { + "bbox": [ + 116, + 690, + 342, + 702 + ], + "score": 1.0, + "content": "erative models. arXiv preprint arXiv:1602.05473, 2016.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 677, + 504, + 702 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 502, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 708, + 503, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 708, + 503, + 721 + ], + "score": 1.0, + "content": "Laurens van der Maaten and Geoffrey Hinton. Visualizing data using t-sne. JMLR, 9(Nov):2579–", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 720, + 167, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 167, + 732 + ], + "score": 1.0, + "content": "2605, 2008.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5, + "bbox_fs": [ + 106, + 708, + 503, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Takeru Miyato, Shin-ichi Maeda, Masanori Koyama, Ken Nakae, and Shin Ishii. Distributional", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 317, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 317, + 106 + ], + "score": 1.0, + "content": "smoothing with virtual adversarial training. 2016.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 107, + 117, + 505, + 150 + ], + "lines": [ + { + "bbox": [ + 106, + 115, + 505, + 131 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 505, + 131 + ], + "score": 1.0, + "content": "Yuval Netzer, Tao Wang, Adam Coates, Alessandro Bissacco, Bo Wu, and Andrew Y Ng. Reading", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 127, + 505, + 142 + ], + "spans": [ + { + "bbox": [ + 115, + 127, + 505, + 142 + ], + "score": 1.0, + "content": "digits in natural images with unsupervised feature learning. In NIPS workshop on deep learning", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 117, + 139, + 282, + 151 + ], + "spans": [ + { + "bbox": [ + 117, + 139, + 282, + 151 + ], + "score": 1.0, + "content": "and unsupervised feature learning, 2011.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 108, + 162, + 504, + 196 + ], + "lines": [ + { + "bbox": [ + 105, + 161, + 506, + 176 + ], + "spans": [ + { + "bbox": [ + 105, + 161, + 506, + 176 + ], + "score": 1.0, + "content": "Fabian Pedregosa, Ga”el Varoquaux, Alexandre Gramfort, Vincent Michel, Bertrand Thirion,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 173, + 505, + 186 + ], + "spans": [ + { + "bbox": [ + 116, + 173, + 505, + 186 + ], + "score": 1.0, + "content": "Olivier Grisel, Mathieu Blondel, Peter Prettenhofer, Ron Weiss, Vincent Dubourg, et al. Scikit-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 185, + 392, + 197 + ], + "spans": [ + { + "bbox": [ + 116, + 185, + 392, + 197 + ], + "score": 1.0, + "content": "learn: Machine learning in python. JMLR, 12(10):2825–2830, 2011.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 208, + 505, + 231 + ], + "lines": [ + { + "bbox": [ + 106, + 208, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 208, + 505, + 221 + ], + "score": 1.0, + "content": "Xingchao Peng, Ben Usman, Neela Kaushik, Judy Hoffman, Dequan Wang, and Kate Saenko.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 218, + 472, + 231 + ], + "spans": [ + { + "bbox": [ + 116, + 218, + 472, + 231 + ], + "score": 1.0, + "content": "Visda: The visual domain adaptation challenge. arXiv preprint arXiv:1710.06924, 2017.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 106, + 242, + 504, + 265 + ], + "lines": [ + { + "bbox": [ + 106, + 241, + 504, + 254 + ], + "spans": [ + { + "bbox": [ + 106, + 241, + 504, + 254 + ], + "score": 1.0, + "content": "Stephan R Richter, Vibhav Vineet, Stefan Roth, and Vladlen Koltun. Playing for data: Ground truth", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 254, + 276, + 265 + ], + "spans": [ + { + "bbox": [ + 116, + 254, + 276, + 265 + ], + "score": 1.0, + "content": "from computer games. In ECCV, 2016.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 106, + 277, + 504, + 300 + ], + "lines": [ + { + "bbox": [ + 105, + 275, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 506, + 290 + ], + "score": 1.0, + "content": "Kuniaki Saito, Yoshitaka Ushiku, and Tatsuya Harada. Asymmetric tri-training for unsupervised", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 288, + 261, + 299 + ], + "spans": [ + { + "bbox": [ + 116, + 288, + 261, + 299 + ], + "score": 1.0, + "content": "domain adaptation. In ICML, 2017.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 105, + 311, + 504, + 335 + ], + "lines": [ + { + "bbox": [ + 106, + 311, + 504, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 311, + 504, + 324 + ], + "score": 1.0, + "content": "Tim Salimans, Ian Goodfellow, Wojciech Zaremba, Vicki Cheung, Alec Radford, and Xi Chen.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 322, + 336, + 335 + ], + "spans": [ + { + "bbox": [ + 116, + 322, + 336, + 335 + ], + "score": 1.0, + "content": "Improved techniques for training gans. In NIPS, 2016.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 106, + 346, + 504, + 369 + ], + "lines": [ + { + "bbox": [ + 106, + 345, + 505, + 359 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 505, + 359 + ], + "score": 1.0, + "content": "Ozan Sener, Hyun Oh Song, Ashutosh Saxena, and Silvio Savarese. Learning transferrable repre-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 357, + 370, + 369 + ], + "spans": [ + { + "bbox": [ + 115, + 357, + 370, + 369 + ], + "score": 1.0, + "content": "sentations for unsupervised domain adaptation. In NIPS, 2016.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 105, + 380, + 504, + 403 + ], + "lines": [ + { + "bbox": [ + 105, + 380, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 505, + 394 + ], + "score": 1.0, + "content": "Jost Tobias Springenberg. Unsupervised and semi-supervised learning with categorical generative", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 392, + 367, + 405 + ], + "spans": [ + { + "bbox": [ + 116, + 392, + 367, + 405 + ], + "score": 1.0, + "content": "adversarial networks. arXiv preprint arXiv:1511.06390, 2015.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 106, + 414, + 505, + 449 + ], + "lines": [ + { + "bbox": [ + 106, + 415, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 505, + 428 + ], + "score": 1.0, + "content": "Nitish Srivastava, Geoffrey E Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 426, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 116, + 426, + 505, + 439 + ], + "score": 1.0, + "content": "Dropout: a simple way to prevent neural networks from overfitting. JMLR, 15(1):1929–1958,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 435, + 144, + 450 + ], + "spans": [ + { + "bbox": [ + 115, + 435, + 144, + 450 + ], + "score": 1.0, + "content": "2014.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 460, + 504, + 484 + ], + "lines": [ + { + "bbox": [ + 106, + 460, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 460, + 505, + 473 + ], + "score": 1.0, + "content": "Baochen Sun and Kate Saenko. Deep coral: Correlation alignment for deep domain adaptation. In", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 471, + 240, + 484 + ], + "spans": [ + { + "bbox": [ + 116, + 471, + 240, + 484 + ], + "score": 1.0, + "content": "ECCV 2016 Workshops, 2016.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 106, + 495, + 505, + 518 + ], + "lines": [ + { + "bbox": [ + 106, + 495, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 505, + 508 + ], + "score": 1.0, + "content": "Baochen Sun, Jiashi Feng, and Kate Saenko. Return of frustratingly easy domain adaptation. In", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 506, + 168, + 518 + ], + "spans": [ + { + "bbox": [ + 115, + 506, + 168, + 518 + ], + "score": 1.0, + "content": "AAAI, 2016.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 106, + 529, + 504, + 553 + ], + "lines": [ + { + "bbox": [ + 106, + 529, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 505, + 542 + ], + "score": 1.0, + "content": "Yaniv Taigman, Adam Polyak, and Lior Wolf. Unsupervised cross-domain image generation. In", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 541, + 168, + 552 + ], + "spans": [ + { + "bbox": [ + 115, + 541, + 168, + 552 + ], + "score": 1.0, + "content": "ICLR, 2016.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 105, + 564, + 504, + 587 + ], + "lines": [ + { + "bbox": [ + 105, + 564, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 505, + 577 + ], + "score": 1.0, + "content": "Eric Tzeng, Judy Hoffman, Ning Zhang, Kate Saenko, and Trevor Darrell. Deep domain confusion:", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 575, + 419, + 588 + ], + "spans": [ + { + "bbox": [ + 115, + 575, + 419, + 588 + ], + "score": 1.0, + "content": "Maximizing for domain invariance. arXiv preprint arXiv:1412.3474, 2014.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 106, + 598, + 504, + 622 + ], + "lines": [ + { + "bbox": [ + 106, + 599, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 599, + 505, + 612 + ], + "score": 1.0, + "content": "Eric Tzeng, Judy Hoffman, Kate Saenko, and Trevor Darrell. Adversarial discriminative domain", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 610, + 230, + 622 + ], + "spans": [ + { + "bbox": [ + 115, + 610, + 230, + 622 + ], + "score": 1.0, + "content": "adaptation. In CVPR, 2017.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 106, + 633, + 503, + 657 + ], + "lines": [ + { + "bbox": [ + 106, + 632, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 505, + 646 + ], + "score": 1.0, + "content": "Saining Xie, Ross Girshick, Piotr Dollar, Zhuowen Tu, and Kaiming He. Aggregated residual trans- ´", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 644, + 429, + 657 + ], + "spans": [ + { + "bbox": [ + 115, + 644, + 429, + 657 + ], + "score": 1.0, + "content": "formations for deep neural networks. arXiv preprint arXiv:1611.05431, 2016.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 106, + 668, + 504, + 702 + ], + "lines": [ + { + "bbox": [ + 105, + 667, + 506, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 506, + 682 + ], + "score": 1.0, + "content": "Hongliang Yan, Yukang Ding, Peihua Li, Qilong Wang, Yong Xu, and Wangmeng Zuo. Mind the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 678, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 115, + 678, + 505, + 693 + ], + "score": 1.0, + "content": "class weight bias: Weighted maximum mean discrepancy for unsupervised domain adaptation. In", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 117, + 690, + 171, + 702 + ], + "spans": [ + { + "bbox": [ + 117, + 690, + 171, + 702 + ], + "score": 1.0, + "content": "CVPR, 2017.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 105, + 713, + 493, + 726 + ], + "lines": [ + { + "bbox": [ + 106, + 713, + 494, + 726 + ], + "spans": [ + { + "bbox": [ + 106, + 713, + 494, + 726 + ], + "score": 1.0, + "content": "Fisher Yu, Vladlen Koltun, and Thomas Funkhouser. Dilated residual networks. In CVPR, 2017.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + } + ], + "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 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Takeru Miyato, Shin-ichi Maeda, Masanori Koyama, Ken Nakae, and Shin Ishii. Distributional", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 317, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 317, + 106 + ], + "score": 1.0, + "content": "smoothing with virtual adversarial training. 2016.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 106, + 82, + 505, + 106 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 117, + 505, + 150 + ], + "lines": [ + { + "bbox": [ + 106, + 115, + 505, + 131 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 505, + 131 + ], + "score": 1.0, + "content": "Yuval Netzer, Tao Wang, Adam Coates, Alessandro Bissacco, Bo Wu, and Andrew Y Ng. Reading", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 127, + 505, + 142 + ], + "spans": [ + { + "bbox": [ + 115, + 127, + 505, + 142 + ], + "score": 1.0, + "content": "digits in natural images with unsupervised feature learning. In NIPS workshop on deep learning", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 117, + 139, + 282, + 151 + ], + "spans": [ + { + "bbox": [ + 117, + 139, + 282, + 151 + ], + "score": 1.0, + "content": "and unsupervised feature learning, 2011.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 106, + 115, + 505, + 151 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 162, + 504, + 196 + ], + "lines": [ + { + "bbox": [ + 105, + 161, + 506, + 176 + ], + "spans": [ + { + "bbox": [ + 105, + 161, + 506, + 176 + ], + "score": 1.0, + "content": "Fabian Pedregosa, Ga”el Varoquaux, Alexandre Gramfort, Vincent Michel, Bertrand Thirion,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 173, + 505, + 186 + ], + "spans": [ + { + "bbox": [ + 116, + 173, + 505, + 186 + ], + "score": 1.0, + "content": "Olivier Grisel, Mathieu Blondel, Peter Prettenhofer, Ron Weiss, Vincent Dubourg, et al. Scikit-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 185, + 392, + 197 + ], + "spans": [ + { + "bbox": [ + 116, + 185, + 392, + 197 + ], + "score": 1.0, + "content": "learn: Machine learning in python. JMLR, 12(10):2825–2830, 2011.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 161, + 506, + 197 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 208, + 505, + 231 + ], + "lines": [ + { + "bbox": [ + 106, + 208, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 208, + 505, + 221 + ], + "score": 1.0, + "content": "Xingchao Peng, Ben Usman, Neela Kaushik, Judy Hoffman, Dequan Wang, and Kate Saenko.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 218, + 472, + 231 + ], + "spans": [ + { + "bbox": [ + 116, + 218, + 472, + 231 + ], + "score": 1.0, + "content": "Visda: The visual domain adaptation challenge. arXiv preprint arXiv:1710.06924, 2017.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 106, + 208, + 505, + 231 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 242, + 504, + 265 + ], + "lines": [ + { + "bbox": [ + 106, + 241, + 504, + 254 + ], + "spans": [ + { + "bbox": [ + 106, + 241, + 504, + 254 + ], + "score": 1.0, + "content": "Stephan R Richter, Vibhav Vineet, Stefan Roth, and Vladlen Koltun. Playing for data: Ground truth", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 254, + 276, + 265 + ], + "spans": [ + { + "bbox": [ + 116, + 254, + 276, + 265 + ], + "score": 1.0, + "content": "from computer games. In ECCV, 2016.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 106, + 241, + 504, + 265 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 277, + 504, + 300 + ], + "lines": [ + { + "bbox": [ + 105, + 275, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 506, + 290 + ], + "score": 1.0, + "content": "Kuniaki Saito, Yoshitaka Ushiku, and Tatsuya Harada. Asymmetric tri-training for unsupervised", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 288, + 261, + 299 + ], + "spans": [ + { + "bbox": [ + 116, + 288, + 261, + 299 + ], + "score": 1.0, + "content": "domain adaptation. In ICML, 2017.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 275, + 506, + 299 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 311, + 504, + 335 + ], + "lines": [ + { + "bbox": [ + 106, + 311, + 504, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 311, + 504, + 324 + ], + "score": 1.0, + "content": "Tim Salimans, Ian Goodfellow, Wojciech Zaremba, Vicki Cheung, Alec Radford, and Xi Chen.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 322, + 336, + 335 + ], + "spans": [ + { + "bbox": [ + 116, + 322, + 336, + 335 + ], + "score": 1.0, + "content": "Improved techniques for training gans. In NIPS, 2016.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 106, + 311, + 504, + 335 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 346, + 504, + 369 + ], + "lines": [ + { + "bbox": [ + 106, + 345, + 505, + 359 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 505, + 359 + ], + "score": 1.0, + "content": "Ozan Sener, Hyun Oh Song, Ashutosh Saxena, and Silvio Savarese. Learning transferrable repre-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 357, + 370, + 369 + ], + "spans": [ + { + "bbox": [ + 115, + 357, + 370, + 369 + ], + "score": 1.0, + "content": "sentations for unsupervised domain adaptation. In NIPS, 2016.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 106, + 345, + 505, + 369 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 380, + 504, + 403 + ], + "lines": [ + { + "bbox": [ + 105, + 380, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 505, + 394 + ], + "score": 1.0, + "content": "Jost Tobias Springenberg. Unsupervised and semi-supervised learning with categorical generative", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 392, + 367, + 405 + ], + "spans": [ + { + "bbox": [ + 116, + 392, + 367, + 405 + ], + "score": 1.0, + "content": "adversarial networks. arXiv preprint arXiv:1511.06390, 2015.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 380, + 505, + 405 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 414, + 505, + 449 + ], + "lines": [ + { + "bbox": [ + 106, + 415, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 505, + 428 + ], + "score": 1.0, + "content": "Nitish Srivastava, Geoffrey E Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 426, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 116, + 426, + 505, + 439 + ], + "score": 1.0, + "content": "Dropout: a simple way to prevent neural networks from overfitting. JMLR, 15(1):1929–1958,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 435, + 144, + 450 + ], + "spans": [ + { + "bbox": [ + 115, + 435, + 144, + 450 + ], + "score": 1.0, + "content": "2014.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21, + "bbox_fs": [ + 106, + 415, + 505, + 450 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 460, + 504, + 484 + ], + "lines": [ + { + "bbox": [ + 106, + 460, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 460, + 505, + 473 + ], + "score": 1.0, + "content": "Baochen Sun and Kate Saenko. Deep coral: Correlation alignment for deep domain adaptation. In", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 471, + 240, + 484 + ], + "spans": [ + { + "bbox": [ + 116, + 471, + 240, + 484 + ], + "score": 1.0, + "content": "ECCV 2016 Workshops, 2016.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 106, + 460, + 505, + 484 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 495, + 505, + 518 + ], + "lines": [ + { + "bbox": [ + 106, + 495, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 505, + 508 + ], + "score": 1.0, + "content": "Baochen Sun, Jiashi Feng, and Kate Saenko. Return of frustratingly easy domain adaptation. In", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 506, + 168, + 518 + ], + "spans": [ + { + "bbox": [ + 115, + 506, + 168, + 518 + ], + "score": 1.0, + "content": "AAAI, 2016.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 106, + 495, + 505, + 518 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 529, + 504, + 553 + ], + "lines": [ + { + "bbox": [ + 106, + 529, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 505, + 542 + ], + "score": 1.0, + "content": "Yaniv Taigman, Adam Polyak, and Lior Wolf. Unsupervised cross-domain image generation. In", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 541, + 168, + 552 + ], + "spans": [ + { + "bbox": [ + 115, + 541, + 168, + 552 + ], + "score": 1.0, + "content": "ICLR, 2016.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 106, + 529, + 505, + 552 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 564, + 504, + 587 + ], + "lines": [ + { + "bbox": [ + 105, + 564, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 505, + 577 + ], + "score": 1.0, + "content": "Eric Tzeng, Judy Hoffman, Ning Zhang, Kate Saenko, and Trevor Darrell. Deep domain confusion:", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 575, + 419, + 588 + ], + "spans": [ + { + "bbox": [ + 115, + 575, + 419, + 588 + ], + "score": 1.0, + "content": "Maximizing for domain invariance. arXiv preprint arXiv:1412.3474, 2014.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 564, + 505, + 588 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 598, + 504, + 622 + ], + "lines": [ + { + "bbox": [ + 106, + 599, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 599, + 505, + 612 + ], + "score": 1.0, + "content": "Eric Tzeng, Judy Hoffman, Kate Saenko, and Trevor Darrell. Adversarial discriminative domain", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 610, + 230, + 622 + ], + "spans": [ + { + "bbox": [ + 115, + 610, + 230, + 622 + ], + "score": 1.0, + "content": "adaptation. In CVPR, 2017.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 106, + 599, + 505, + 622 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 633, + 503, + 657 + ], + "lines": [ + { + "bbox": [ + 106, + 632, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 505, + 646 + ], + "score": 1.0, + "content": "Saining Xie, Ross Girshick, Piotr Dollar, Zhuowen Tu, and Kaiming He. Aggregated residual trans- ´", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 644, + 429, + 657 + ], + "spans": [ + { + "bbox": [ + 115, + 644, + 429, + 657 + ], + "score": 1.0, + "content": "formations for deep neural networks. arXiv preprint arXiv:1611.05431, 2016.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 106, + 632, + 505, + 657 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 668, + 504, + 702 + ], + "lines": [ + { + "bbox": [ + 105, + 667, + 506, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 506, + 682 + ], + "score": 1.0, + "content": "Hongliang Yan, Yukang Ding, Peihua Li, Qilong Wang, Yong Xu, and Wangmeng Zuo. Mind the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 678, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 115, + 678, + 505, + 693 + ], + "score": 1.0, + "content": "class weight bias: Weighted maximum mean discrepancy for unsupervised domain adaptation. In", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 117, + 690, + 171, + 702 + ], + "spans": [ + { + "bbox": [ + 117, + 690, + 171, + 702 + ], + "score": 1.0, + "content": "CVPR, 2017.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 667, + 506, + 702 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 713, + 493, + 726 + ], + "lines": [ + { + "bbox": [ + 106, + 713, + 494, + 726 + ], + "spans": [ + { + "bbox": [ + 106, + 713, + 494, + 726 + ], + "score": 1.0, + "content": "Fisher Yu, Vladlen Koltun, and Thomas Funkhouser. Dilated residual networks. In CVPR, 2017.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38, + "bbox_fs": [ + 106, + 713, + 494, + 726 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 162, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 79, + 163, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 79, + 163, + 97 + ], + "score": 1.0, + "content": "APPENDIX", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "title", + "bbox": [ + 108, + 98, + 444, + 111 + ], + "lines": [ + { + "bbox": [ + 105, + 97, + 446, + 114 + ], + "spans": [ + { + "bbox": [ + 105, + 97, + 446, + 114 + ], + "score": 1.0, + "content": "A ENTROPY BASED METHOD FOR DOMAIN ADAPTATION (ENT)", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 115, + 505, + 214 + ], + "lines": [ + { + "bbox": [ + 105, + 114, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 128 + ], + "score": 1.0, + "content": "Our method aims to move target samples away from the decision boundary. Some techniques used", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 125, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 505, + 139 + ], + "score": 1.0, + "content": "in training Generative Adversarial Networks can be applied to achieve our goal too. (Springenberg", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 137, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 505, + 149 + ], + "score": 1.0, + "content": "(2015); Salimans et al. (2016)) used small number of labeled samples to train critic. Critic is trained", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 147, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 226, + 161 + ], + "score": 1.0, + "content": "to classify real samples into", + "type": "text" + }, + { + "bbox": [ + 226, + 149, + 237, + 158 + ], + "score": 0.81, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 147, + 505, + 161 + ], + "score": 1.0, + "content": "classes. They also trained critic to move unlabeled real images", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 159, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 506, + 172 + ], + "score": 1.0, + "content": "away from the boundary by minimizing entropy of the critic’s output. Generated fake images are", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 169, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 505, + 182 + ], + "score": 1.0, + "content": "moved near the boundary by maximizing the entropy. On the other hand, generator is trained to", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 181, + 505, + 193 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 505, + 193 + ], + "score": 1.0, + "content": "generate fake images which should be placed away from the boundary. This kind of method can be", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 192, + 505, + 204 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 505, + 204 + ], + "score": 1.0, + "content": "easily applied to domain adaptation problem. We would like to describe the method along with our", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 202, + 174, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 174, + 217 + ], + "score": 1.0, + "content": "problem setting.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 219, + 505, + 264 + ], + "lines": [ + { + "bbox": [ + 106, + 219, + 504, + 231 + ], + "spans": [ + { + "bbox": [ + 106, + 219, + 303, + 231 + ], + "score": 1.0, + "content": "Similar to our method, we have critic networks", + "type": "text" + }, + { + "bbox": [ + 303, + 220, + 312, + 230 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 219, + 372, + 231 + ], + "score": 1.0, + "content": "and generator", + "type": "text" + }, + { + "bbox": [ + 373, + 220, + 382, + 230 + ], + "score": 0.72, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 219, + 388, + 231 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 389, + 220, + 398, + 230 + ], + "score": 0.7, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 219, + 493, + 231 + ], + "score": 1.0, + "content": "classifies samples into", + "type": "text" + }, + { + "bbox": [ + 493, + 220, + 504, + 230 + ], + "score": 0.76, + "content": "K", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 230, + 506, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 132, + 243 + ], + "score": 1.0, + "content": "class.", + "type": "text" + }, + { + "bbox": [ + 132, + 231, + 141, + 241 + ], + "score": 0.79, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 230, + 506, + 243 + ], + "score": 1.0, + "content": "is trained to maximize the entropy of target samples, which encourages to move the target", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 241, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 106, + 241, + 248, + 255 + ], + "score": 1.0, + "content": "samples near the boundary. Then,", + "type": "text" + }, + { + "bbox": [ + 248, + 242, + 257, + 252 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 241, + 464, + 255 + ], + "score": 1.0, + "content": "is trained to minimize the entropy of them. Thus,", + "type": "text" + }, + { + "bbox": [ + 464, + 242, + 473, + 252 + ], + "score": 0.8, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 241, + 506, + 255 + ], + "score": 1.0, + "content": "tries to", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 253, + 293, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 293, + 266 + ], + "score": 1.0, + "content": "move target samples away from the boundary.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 107, + 270, + 504, + 303 + ], + "lines": [ + { + "bbox": [ + 105, + 268, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 506, + 282 + ], + "score": 1.0, + "content": "The only difference from our method is that we used entropy term for adversarial training loss. That", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 281, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 310, + 293 + ], + "score": 1.0, + "content": "is, in this method, we replace our sensitivity term", + "type": "text" + }, + { + "bbox": [ + 311, + 281, + 347, + 292 + ], + "score": 0.93, + "content": "d ( p _ { 1 } , p _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 281, + 505, + 293 + ], + "score": 1.0, + "content": "in Eq. 4 with entropy of the classifier", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 291, + 395, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 395, + 304 + ], + "score": 1.0, + "content": "output. The adversarial loss for this baseline method is a following one.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "interline_equation", + "bbox": [ + 196, + 305, + 414, + 356 + ], + "lines": [ + { + "bbox": [ + 196, + 305, + 414, + 356 + ], + "spans": [ + { + "bbox": [ + 196, + 305, + 414, + 356 + ], + "score": 0.93, + "content": "\\begin{array} { r c l } { { { \\cal L } _ { a d v } ( X _ { t } ) } } & { { = } } & { { \\displaystyle \\mathbb { E } _ { { \\mathbf { x _ { t } } } \\sim X _ { t } } [ H [ p ( \\mathbf { y } | { \\mathbf { x _ { t } } } ) ] } } \\\\ { { { \\cal H } [ p ( \\mathbf { y } | { \\mathbf { x _ { t } } } ) ] } } & { { = } } & { { \\displaystyle - \\sum _ { k = 1 } ^ { K } p ( y = k | { \\mathbf { x _ { t } } } ) \\log p ( y = k | { \\mathbf { x _ { t } } } ) } } \\end{array}", + "type": "interline_equation", + "image_path": "a2021b8ef809d13c1f4bdfe0b75167d5f46e6067ac40597da21cec262093e02a.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 196, + 305, + 414, + 322.0 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 196, + 322.0, + 414, + 339.0 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 196, + 339.0, + 414, + 356.0 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 359, + 400, + 393 + ], + "lines": [ + { + "bbox": [ + 210, + 359, + 400, + 393 + ], + "spans": [ + { + "bbox": [ + 210, + 359, + 400, + 393 + ], + "score": 0.94, + "content": "H [ p ( y | x ) ] = - \\sum _ { k = 1 } ^ { K } p ( y = k | x ) \\log p ( y = k | x )", + "type": "interline_equation", + "image_path": "dbd5c4fe01e08cdcd9b9616b1e5c9d27f2275a6777f27ef7ac7f291a1cd848f9.jpg" + } + ] + } + ], + "index": 21.5, + "virtual_lines": [ + { + "bbox": [ + 210, + 359, + 400, + 376.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 210, + 376.0, + 400, + 393.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 394, + 503, + 416 + ], + "lines": [ + { + "bbox": [ + 106, + 393, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 193, + 406 + ], + "score": 1.0, + "content": "The hyper-parameter", + "type": "text" + }, + { + "bbox": [ + 193, + 397, + 200, + 404 + ], + "score": 0.76, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 393, + 316, + 406 + ], + "score": 1.0, + "content": ", how many times we update", + "type": "text" + }, + { + "bbox": [ + 317, + 395, + 326, + 404 + ], + "score": 0.82, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 393, + 505, + 406 + ], + "score": 1.0, + "content": "for adversarial loss in one mini-batch, is set", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 403, + 335, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 117, + 417 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 117, + 405, + 143, + 415 + ], + "score": 0.88, + "content": "n = 4", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 403, + 335, + 417 + ], + "score": 1.0, + "content": ". Experimentally, it worked well for all settings.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "title", + "bbox": [ + 106, + 423, + 351, + 436 + ], + "lines": [ + { + "bbox": [ + 105, + 422, + 352, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 352, + 438 + ], + "score": 1.0, + "content": "B DIGITS CLASSIFICATION TRAINING DETAIL", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 439, + 505, + 539 + ], + "lines": [ + { + "bbox": [ + 106, + 439, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 506, + 452 + ], + "score": 1.0, + "content": "We follow the protocol used in (Tzeng et al. (2017)). For adaptation from SVHN to MNIST, we", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 450, + 504, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 450, + 504, + 462 + ], + "score": 1.0, + "content": "used standard training splits of each datasets as training data. For evaluation, we used test splits", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 462, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 505, + 474 + ], + "score": 1.0, + "content": "of MNIST. For the adaptation between MNIST and USPS (P1), we sampled 2000 images from", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 471, + 506, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 506, + 485 + ], + "score": 1.0, + "content": "MNIST and 1800 images from USPS. For the adaptation between MNIST and USPS (P2), we used", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 483, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 506, + 497 + ], + "score": 1.0, + "content": "all training images of MNIST and USPS following Bousmalis et al. (2017). In these experiments,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 493, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 506, + 508 + ], + "score": 1.0, + "content": "we composed the mini-batch half from source and half from target samples. The batch-size was", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 505, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 436, + 518 + ], + "score": 1.0, + "content": "set as 128 for both source and target. We report the score after repeating Step", + "type": "text" + }, + { + "bbox": [ + 437, + 506, + 456, + 516 + ], + "score": 0.45, + "content": "1 { \\sim } 3", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 505, + 505, + 518 + ], + "score": 1.0, + "content": "(please see", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 515, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 505, + 529 + ], + "score": 1.0, + "content": "Sec 3.2) 20000 times. For our baseline, ENT, we used the same network architecture and the same", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 528, + 310, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 310, + 540 + ], + "score": 1.0, + "content": "hyper-parameters as used in our proposed method.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30 + }, + { + "type": "title", + "bbox": [ + 106, + 546, + 354, + 559 + ], + "lines": [ + { + "bbox": [ + 106, + 544, + 356, + 560 + ], + "spans": [ + { + "bbox": [ + 106, + 544, + 356, + 560 + ], + "score": 1.0, + "content": "C OBJECT CLASSIFICATION TRAINING DETAIL", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 561, + 505, + 606 + ], + "lines": [ + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 281, + 574 + ], + "score": 1.0, + "content": "In this experiment, SGD with learning rate", + "type": "text" + }, + { + "bbox": [ + 281, + 561, + 328, + 573 + ], + "score": 0.92, + "content": "1 . 0 \\times 1 0 ^ { - 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "is used to optimize the parameters. For the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 573, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 505, + 585 + ], + "score": 1.0, + "content": "finetuning of ResNet101, we set batch-size as 32. Due to the limit of GPU memory, we set it as 24", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 584, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 506, + 597 + ], + "score": 1.0, + "content": "in finetuning ResNext model. We report the score after 20 epochs training. In order to train MMD", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 595, + 426, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 426, + 607 + ], + "score": 1.0, + "content": "model, we use 5 RBF kernels with the following standard deviation parameters:", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37.5 + }, + { + "type": "interline_equation", + "bbox": [ + 228, + 610, + 382, + 623 + ], + "lines": [ + { + "bbox": [ + 228, + 610, + 382, + 623 + ], + "spans": [ + { + "bbox": [ + 228, + 610, + 382, + 623 + ], + "score": 0.9, + "content": "\\sigma = [ 0 . 1 , 0 . 0 5 , 0 . 0 1 , 0 . 0 0 0 1 , 0 . 0 0 0 0 1 ]", + "type": "interline_equation", + "image_path": "5e5c787c3a5208e654ae34797e13f1eb8e10838a913d7366e482a0e916b2b935.jpg" + } + ] + } + ], + "index": 40, + "virtual_lines": [ + { + "bbox": [ + 228, + 610, + 382, + 623 + ], + "spans": [], + "index": 40 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 627, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "score": 1.0, + "content": "We changed the number of the kernels and their parameters, but we could not observe significant per-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 637, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 505, + 651 + ], + "score": 1.0, + "content": "formance difference. We report the performance after 5 epochs. We could not see any improvement", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 648, + 170, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 170, + 662 + ], + "score": 1.0, + "content": "after the epoch.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 107, + 665, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 666, + 504, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 504, + 677 + ], + "score": 1.0, + "content": "To train a model (Ganin & Lempitsky (2014)), we used two-layered domain classification networks.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 677, + 504, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 504, + 689 + ], + "score": 1.0, + "content": "Experimentally, we did not see any improvement when the network architecture is changed. Accord-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 245, + 700 + ], + "score": 1.0, + "content": "ing to the original method (Ganin", + "type": "text" + }, + { + "bbox": [ + 246, + 689, + 254, + 698 + ], + "score": 0.26, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "Lempitsky (2014)), learning rate is decreased every iteration.", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 104, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 104, + 698, + 456, + 711 + ], + "score": 1.0, + "content": "However, in our experiment, we could not see improvement, thus, we fixed learning rate", + "type": "text" + }, + { + "bbox": [ + 457, + 698, + 501, + 709 + ], + "score": 0.91, + "content": "\\mathrm { i . 0 \\times 1 0 ^ { - 3 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 698, + 505, + 711 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "We report the accuracy after 1 epoch. The accuracy dropped significantly after the first epoch. We", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 720, + 444, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 444, + 734 + ], + "score": 1.0, + "content": "assume this is due to the large domain difference between synthetic and real images.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 46.5 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 162, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 79, + 163, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 79, + 163, + 97 + ], + "score": 1.0, + "content": "APPENDIX", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "title", + "bbox": [ + 108, + 98, + 444, + 111 + ], + "lines": [ + { + "bbox": [ + 105, + 97, + 446, + 114 + ], + "spans": [ + { + "bbox": [ + 105, + 97, + 446, + 114 + ], + "score": 1.0, + "content": "A ENTROPY BASED METHOD FOR DOMAIN ADAPTATION (ENT)", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 115, + 505, + 214 + ], + "lines": [ + { + "bbox": [ + 105, + 114, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 128 + ], + "score": 1.0, + "content": "Our method aims to move target samples away from the decision boundary. Some techniques used", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 125, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 505, + 139 + ], + "score": 1.0, + "content": "in training Generative Adversarial Networks can be applied to achieve our goal too. (Springenberg", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 137, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 505, + 149 + ], + "score": 1.0, + "content": "(2015); Salimans et al. (2016)) used small number of labeled samples to train critic. Critic is trained", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 147, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 226, + 161 + ], + "score": 1.0, + "content": "to classify real samples into", + "type": "text" + }, + { + "bbox": [ + 226, + 149, + 237, + 158 + ], + "score": 0.81, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 147, + 505, + 161 + ], + "score": 1.0, + "content": "classes. They also trained critic to move unlabeled real images", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 159, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 506, + 172 + ], + "score": 1.0, + "content": "away from the boundary by minimizing entropy of the critic’s output. Generated fake images are", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 169, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 505, + 182 + ], + "score": 1.0, + "content": "moved near the boundary by maximizing the entropy. On the other hand, generator is trained to", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 181, + 505, + 193 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 505, + 193 + ], + "score": 1.0, + "content": "generate fake images which should be placed away from the boundary. This kind of method can be", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 192, + 505, + 204 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 505, + 204 + ], + "score": 1.0, + "content": "easily applied to domain adaptation problem. We would like to describe the method along with our", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 202, + 174, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 174, + 217 + ], + "score": 1.0, + "content": "problem setting.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 114, + 506, + 217 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 219, + 505, + 264 + ], + "lines": [ + { + "bbox": [ + 106, + 219, + 504, + 231 + ], + "spans": [ + { + "bbox": [ + 106, + 219, + 303, + 231 + ], + "score": 1.0, + "content": "Similar to our method, we have critic networks", + "type": "text" + }, + { + "bbox": [ + 303, + 220, + 312, + 230 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 219, + 372, + 231 + ], + "score": 1.0, + "content": "and generator", + "type": "text" + }, + { + "bbox": [ + 373, + 220, + 382, + 230 + ], + "score": 0.72, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 219, + 388, + 231 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 389, + 220, + 398, + 230 + ], + "score": 0.7, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 219, + 493, + 231 + ], + "score": 1.0, + "content": "classifies samples into", + "type": "text" + }, + { + "bbox": [ + 493, + 220, + 504, + 230 + ], + "score": 0.76, + "content": "K", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 230, + 506, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 132, + 243 + ], + "score": 1.0, + "content": "class.", + "type": "text" + }, + { + "bbox": [ + 132, + 231, + 141, + 241 + ], + "score": 0.79, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 230, + 506, + 243 + ], + "score": 1.0, + "content": "is trained to maximize the entropy of target samples, which encourages to move the target", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 241, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 106, + 241, + 248, + 255 + ], + "score": 1.0, + "content": "samples near the boundary. Then,", + "type": "text" + }, + { + "bbox": [ + 248, + 242, + 257, + 252 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 241, + 464, + 255 + ], + "score": 1.0, + "content": "is trained to minimize the entropy of them. Thus,", + "type": "text" + }, + { + "bbox": [ + 464, + 242, + 473, + 252 + ], + "score": 0.8, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 241, + 506, + 255 + ], + "score": 1.0, + "content": "tries to", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 253, + 293, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 293, + 266 + ], + "score": 1.0, + "content": "move target samples away from the boundary.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5, + "bbox_fs": [ + 106, + 219, + 506, + 266 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 270, + 504, + 303 + ], + "lines": [ + { + "bbox": [ + 105, + 268, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 506, + 282 + ], + "score": 1.0, + "content": "The only difference from our method is that we used entropy term for adversarial training loss. That", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 281, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 310, + 293 + ], + "score": 1.0, + "content": "is, in this method, we replace our sensitivity term", + "type": "text" + }, + { + "bbox": [ + 311, + 281, + 347, + 292 + ], + "score": 0.93, + "content": "d ( p _ { 1 } , p _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 281, + 505, + 293 + ], + "score": 1.0, + "content": "in Eq. 4 with entropy of the classifier", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 291, + 395, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 395, + 304 + ], + "score": 1.0, + "content": "output. The adversarial loss for this baseline method is a following one.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 268, + 506, + 304 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 196, + 305, + 414, + 356 + ], + "lines": [ + { + "bbox": [ + 196, + 305, + 414, + 356 + ], + "spans": [ + { + "bbox": [ + 196, + 305, + 414, + 356 + ], + "score": 0.93, + "content": "\\begin{array} { r c l } { { { \\cal L } _ { a d v } ( X _ { t } ) } } & { { = } } & { { \\displaystyle \\mathbb { E } _ { { \\mathbf { x _ { t } } } \\sim X _ { t } } [ H [ p ( \\mathbf { y } | { \\mathbf { x _ { t } } } ) ] } } \\\\ { { { \\cal H } [ p ( \\mathbf { y } | { \\mathbf { x _ { t } } } ) ] } } & { { = } } & { { \\displaystyle - \\sum _ { k = 1 } ^ { K } p ( y = k | { \\mathbf { x _ { t } } } ) \\log p ( y = k | { \\mathbf { x _ { t } } } ) } } \\end{array}", + "type": "interline_equation", + "image_path": "a2021b8ef809d13c1f4bdfe0b75167d5f46e6067ac40597da21cec262093e02a.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 196, + 305, + 414, + 322.0 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 196, + 322.0, + 414, + 339.0 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 196, + 339.0, + 414, + 356.0 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 359, + 400, + 393 + ], + "lines": [ + { + "bbox": [ + 210, + 359, + 400, + 393 + ], + "spans": [ + { + "bbox": [ + 210, + 359, + 400, + 393 + ], + "score": 0.94, + "content": "H [ p ( y | x ) ] = - \\sum _ { k = 1 } ^ { K } p ( y = k | x ) \\log p ( y = k | x )", + "type": "interline_equation", + "image_path": "dbd5c4fe01e08cdcd9b9616b1e5c9d27f2275a6777f27ef7ac7f291a1cd848f9.jpg" + } + ] + } + ], + "index": 21.5, + "virtual_lines": [ + { + "bbox": [ + 210, + 359, + 400, + 376.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 210, + 376.0, + 400, + 393.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 394, + 503, + 416 + ], + "lines": [ + { + "bbox": [ + 106, + 393, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 193, + 406 + ], + "score": 1.0, + "content": "The hyper-parameter", + "type": "text" + }, + { + "bbox": [ + 193, + 397, + 200, + 404 + ], + "score": 0.76, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 393, + 316, + 406 + ], + "score": 1.0, + "content": ", how many times we update", + "type": "text" + }, + { + "bbox": [ + 317, + 395, + 326, + 404 + ], + "score": 0.82, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 393, + 505, + 406 + ], + "score": 1.0, + "content": "for adversarial loss in one mini-batch, is set", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 403, + 335, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 117, + 417 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 117, + 405, + 143, + 415 + ], + "score": 0.88, + "content": "n = 4", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 403, + 335, + 417 + ], + "score": 1.0, + "content": ". Experimentally, it worked well for all settings.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 393, + 505, + 417 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 423, + 351, + 436 + ], + "lines": [ + { + "bbox": [ + 105, + 422, + 352, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 352, + 438 + ], + "score": 1.0, + "content": "B DIGITS CLASSIFICATION TRAINING DETAIL", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 439, + 505, + 539 + ], + "lines": [ + { + "bbox": [ + 106, + 439, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 506, + 452 + ], + "score": 1.0, + "content": "We follow the protocol used in (Tzeng et al. (2017)). For adaptation from SVHN to MNIST, we", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 450, + 504, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 450, + 504, + 462 + ], + "score": 1.0, + "content": "used standard training splits of each datasets as training data. For evaluation, we used test splits", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 462, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 505, + 474 + ], + "score": 1.0, + "content": "of MNIST. For the adaptation between MNIST and USPS (P1), we sampled 2000 images from", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 471, + 506, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 506, + 485 + ], + "score": 1.0, + "content": "MNIST and 1800 images from USPS. For the adaptation between MNIST and USPS (P2), we used", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 483, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 506, + 497 + ], + "score": 1.0, + "content": "all training images of MNIST and USPS following Bousmalis et al. (2017). In these experiments,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 493, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 506, + 508 + ], + "score": 1.0, + "content": "we composed the mini-batch half from source and half from target samples. The batch-size was", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 505, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 436, + 518 + ], + "score": 1.0, + "content": "set as 128 for both source and target. We report the score after repeating Step", + "type": "text" + }, + { + "bbox": [ + 437, + 506, + 456, + 516 + ], + "score": 0.45, + "content": "1 { \\sim } 3", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 505, + 505, + 518 + ], + "score": 1.0, + "content": "(please see", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 515, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 505, + 529 + ], + "score": 1.0, + "content": "Sec 3.2) 20000 times. For our baseline, ENT, we used the same network architecture and the same", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 528, + 310, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 310, + 540 + ], + "score": 1.0, + "content": "hyper-parameters as used in our proposed method.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 439, + 506, + 540 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 546, + 354, + 559 + ], + "lines": [ + { + "bbox": [ + 106, + 544, + 356, + 560 + ], + "spans": [ + { + "bbox": [ + 106, + 544, + 356, + 560 + ], + "score": 1.0, + "content": "C OBJECT CLASSIFICATION TRAINING DETAIL", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 561, + 505, + 606 + ], + "lines": [ + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 281, + 574 + ], + "score": 1.0, + "content": "In this experiment, SGD with learning rate", + "type": "text" + }, + { + "bbox": [ + 281, + 561, + 328, + 573 + ], + "score": 0.92, + "content": "1 . 0 \\times 1 0 ^ { - 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "is used to optimize the parameters. For the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 573, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 505, + 585 + ], + "score": 1.0, + "content": "finetuning of ResNet101, we set batch-size as 32. Due to the limit of GPU memory, we set it as 24", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 584, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 506, + 597 + ], + "score": 1.0, + "content": "in finetuning ResNext model. We report the score after 20 epochs training. In order to train MMD", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 595, + 426, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 426, + 607 + ], + "score": 1.0, + "content": "model, we use 5 RBF kernels with the following standard deviation parameters:", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 561, + 506, + 607 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 228, + 610, + 382, + 623 + ], + "lines": [ + { + "bbox": [ + 228, + 610, + 382, + 623 + ], + "spans": [ + { + "bbox": [ + 228, + 610, + 382, + 623 + ], + "score": 0.9, + "content": "\\sigma = [ 0 . 1 , 0 . 0 5 , 0 . 0 1 , 0 . 0 0 0 1 , 0 . 0 0 0 0 1 ]", + "type": "interline_equation", + "image_path": "5e5c787c3a5208e654ae34797e13f1eb8e10838a913d7366e482a0e916b2b935.jpg" + } + ] + } + ], + "index": 40, + "virtual_lines": [ + { + "bbox": [ + 228, + 610, + 382, + 623 + ], + "spans": [], + "index": 40 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 627, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "score": 1.0, + "content": "We changed the number of the kernels and their parameters, but we could not observe significant per-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 637, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 505, + 651 + ], + "score": 1.0, + "content": "formance difference. We report the performance after 5 epochs. We could not see any improvement", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 648, + 170, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 170, + 662 + ], + "score": 1.0, + "content": "after the epoch.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42, + "bbox_fs": [ + 105, + 626, + 505, + 662 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 665, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 666, + 504, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 504, + 677 + ], + "score": 1.0, + "content": "To train a model (Ganin & Lempitsky (2014)), we used two-layered domain classification networks.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 677, + 504, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 504, + 689 + ], + "score": 1.0, + "content": "Experimentally, we did not see any improvement when the network architecture is changed. Accord-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 245, + 700 + ], + "score": 1.0, + "content": "ing to the original method (Ganin", + "type": "text" + }, + { + "bbox": [ + 246, + 689, + 254, + 698 + ], + "score": 0.26, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "Lempitsky (2014)), learning rate is decreased every iteration.", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 104, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 104, + 698, + 456, + 711 + ], + "score": 1.0, + "content": "However, in our experiment, we could not see improvement, thus, we fixed learning rate", + "type": "text" + }, + { + "bbox": [ + 457, + 698, + 501, + 709 + ], + "score": 0.91, + "content": "\\mathrm { i . 0 \\times 1 0 ^ { - 3 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 698, + 505, + 711 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "We report the accuracy after 1 epoch. The accuracy dropped significantly after the first epoch. We", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 720, + 444, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 444, + 734 + ], + "score": 1.0, + "content": "assume this is due to the large domain difference between synthetic and real images.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 46.5, + "bbox_fs": [ + 104, + 666, + 505, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 80, + 504, + 280 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 80, + 504, + 280 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 80, + 504, + 280 + ], + "spans": [ + { + "bbox": [ + 107, + 80, + 504, + 280 + ], + "score": 0.976, + "type": "image", + "image_path": "91334547d8f045bbc50bad32d13e84fbdd9717e2bd91e1f11d2951fede231eb5.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 80, + 504, + 146.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 146.66666666666669, + 504, + 213.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 213.33333333333337, + 504, + 280.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 291, + 505, + 324 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 290, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 505, + 304 + ], + "score": 1.0, + "content": "Figure 9: Example of results on segmentation experiments performed by DRN-105. From top to bottom,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 302, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 505, + 315 + ], + "score": 1.0, + "content": "Original image; Ground truth; Segmented image before adaptation; Segmented image after adaptation by our", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 313, + 138, + 324 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 138, + 324 + ], + "score": 1.0, + "content": "method.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 342, + 505, + 375 + ], + "lines": [ + { + "bbox": [ + 105, + 341, + 505, + 355 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 505, + 355 + ], + "score": 1.0, + "content": "For our new baseline, ENT, we used the same hyper-parameter as we used for our proposed method.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 352, + 506, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 506, + 366 + ], + "score": 1.0, + "content": "Since the accuracy of ENT drops significantly after around 5 epochs, we report the accuracy after 5", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 364, + 169, + 377 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 169, + 377 + ], + "score": 1.0, + "content": "epoch updates.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "title", + "bbox": [ + 108, + 383, + 287, + 395 + ], + "lines": [ + { + "bbox": [ + 105, + 381, + 289, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 289, + 397 + ], + "score": 1.0, + "content": "D SEGMENTATION EXPERIMENTS", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 399, + 338, + 531 + ], + "lines": [ + { + "bbox": [ + 106, + 398, + 339, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 339, + 411 + ], + "score": 1.0, + "content": "We modified FCN Long et al. (2015a) architecture suit-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 410, + 339, + 421 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 339, + 421 + ], + "score": 1.0, + "content": "able for ResNet structure. The features from ResBlock", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 420, + 340, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 126, + 432 + ], + "score": 0.62, + "content": "2 { \\sim } 4", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 420, + 340, + 433 + ], + "score": 1.0, + "content": "and the first convolution layer and maxpooling layer", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 432, + 339, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 339, + 443 + ], + "score": 1.0, + "content": "are used in our implementation. In Fig. 8, we show how", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 443, + 339, + 454 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 339, + 454 + ], + "score": 1.0, + "content": "we integrated the features of each layers. We regard the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 454, + 339, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 339, + 466 + ], + "score": 1.0, + "content": "layers of ResNet50 as generator and rest of the networks,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 465, + 340, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 340, + 477 + ], + "score": 1.0, + "content": "namely convolution and upsampling layers as a critic net-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 476, + 340, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 269, + 487 + ], + "score": 1.0, + "content": "work. The input images were resized to", + "type": "text" + }, + { + "bbox": [ + 269, + 476, + 311, + 487 + ], + "score": 0.77, + "content": "5 1 2 \\mathrm { x } 1 0 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 476, + 340, + 487 + ], + "score": 1.0, + "content": "due to", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 487, + 339, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 339, + 498 + ], + "score": 1.0, + "content": "the limit of GPU memory. For the same reason, the batch-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 498, + 340, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 340, + 509 + ], + "score": 1.0, + "content": "size was set to one. In Fig. 9, we show the example of", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 509, + 339, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 339, + 521 + ], + "score": 1.0, + "content": "segmented images by DRN-105. The images are cleanly", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 520, + 254, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 254, + 531 + ], + "score": 1.0, + "content": "segmented by our proposed method.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 16.5 + }, + { + "type": "image", + "bbox": [ + 360, + 375, + 505, + 500 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 360, + 375, + 505, + 500 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 360, + 375, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 360, + 375, + 505, + 500 + ], + "score": 0.959, + "type": "image", + "image_path": "239b4a962924dc544fc56d44223b3182af3fbba803795fe928439774dffc489c.jpg" + } + ] + } + ], + "index": 17.5, + "virtual_lines": [ + { + "bbox": [ + 360, + 375, + 505, + 437.5 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 360, + 437.5, + 505, + 500.0 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 347, + 505, + 518, + 527 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 345, + 503, + 519, + 518 + ], + "spans": [ + { + "bbox": [ + 345, + 503, + 519, + 518 + ], + "score": 1.0, + "content": "Figure 8: Overview of architecture for se-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 346, + 517, + 432, + 527 + ], + "spans": [ + { + "bbox": [ + 346, + 517, + 432, + 527 + ], + "score": 1.0, + "content": "mantic segmentation", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + } + ], + "index": 21.0 + }, + { + "type": "title", + "bbox": [ + 106, + 547, + 351, + 559 + ], + "lines": [ + { + "bbox": [ + 105, + 546, + 351, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 351, + 562 + ], + "score": 1.0, + "content": "E SEMI-SUPERVISED LEARNING USING GANS", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 571, + 505, + 616 + ], + "lines": [ + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "score": 1.0, + "content": "In this section, we demonstrate how to apply our method in training a Generative Adversarial Net-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 582, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 596 + ], + "score": 1.0, + "content": "work (GAN) applied to semi-supervised learning. We follow the method proposed by (Springenberg", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 594, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 277, + 605 + ], + "score": 1.0, + "content": "(2015); Salimans et al. (2016)), who use a", + "type": "text" + }, + { + "bbox": [ + 277, + 594, + 288, + 604 + ], + "score": 0.82, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 594, + 505, + 605 + ], + "score": 1.0, + "content": "-class classification network as a critic to train a GAN", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 603, + 231, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 231, + 618 + ], + "score": 1.0, + "content": "in the semi-supervised setting.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 106, + 621, + 504, + 676 + ], + "lines": [ + { + "bbox": [ + 106, + 621, + 506, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 621, + 352, + 634 + ], + "score": 1.0, + "content": "Approach. In contrast to the domain adaptation setting, here", + "type": "text" + }, + { + "bbox": [ + 352, + 622, + 361, + 631 + ], + "score": 0.83, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 621, + 506, + 634 + ], + "score": 1.0, + "content": "tries to generate images which fool", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 632, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 145, + 645 + ], + "score": 1.0, + "content": "the critic", + "type": "text" + }, + { + "bbox": [ + 146, + 633, + 155, + 642 + ], + "score": 0.78, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 632, + 506, + 645 + ], + "score": 1.0, + "content": ". Also, in this setting, we are given labeled and unlabeled real images from the same", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 642, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 506, + 657 + ], + "score": 1.0, + "content": "domain. Then, we train the critic to classify labeled images correctly and to move unlabeled images", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 653, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 506, + 668 + ], + "score": 1.0, + "content": "far from the decision boundary. To achieve this, we propose to train the critic with the following", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 663, + 149, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 149, + 679 + ], + "score": 1.0, + "content": "objective:", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33 + }, + { + "type": "interline_equation", + "bbox": [ + 152, + 672, + 457, + 707 + ], + "lines": [ + { + "bbox": [ + 152, + 672, + 457, + 707 + ], + "spans": [ + { + "bbox": [ + 152, + 672, + 457, + 707 + ], + "score": 0.92, + "content": "\\operatorname* { m i n } _ { C } L _ { C } = L ( X _ { L } , Y _ { L } ) + L _ { a d v } ( X _ { u } ) - L _ { a d v } ( X _ { g } ) - H [ \\frac { 1 } { M } \\sum _ { i = 1 } ^ { M } p ( y | x _ { u } { } ^ { i } , C ) ]", + "type": "interline_equation", + "image_path": "b4e0bb62c8cc70e5af3a746f4ffc2fff759f31b06275f447fb8c07818b6c821a.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 152, + 672, + 457, + 683.6666666666666 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 152, + 683.6666666666666, + 457, + 695.3333333333333 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 152, + 695.3333333333333, + 457, + 706.9999999999999 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 201, + 719, + 409, + 733 + ], + "lines": [ + { + "bbox": [ + 201, + 719, + 409, + 733 + ], + "spans": [ + { + "bbox": [ + 201, + 719, + 409, + 733 + ], + "score": 0.85, + "content": "L _ { a d v } ( X _ { u } ) = \\mathbb { E } _ { \\mathbf { x _ { u } } \\sim X _ { u } } [ d ( C _ { 1 } ( G ( \\mathbf { x _ { u } } ) ) , C _ { 2 } ( G ( \\mathbf { x _ { u } } ) ) ) ]", + "type": "interline_equation", + "image_path": "4f3651718657720aa59752e868f8a29aa904e613e9650be8f9f4ef7a3210e164.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 201, + 719, + 409, + 733 + ], + "spans": [], + "index": 39 + } + ] + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 80, + 504, + 280 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 80, + 504, + 280 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 80, + 504, + 280 + ], + "spans": [ + { + "bbox": [ + 107, + 80, + 504, + 280 + ], + "score": 0.976, + "type": "image", + "image_path": "91334547d8f045bbc50bad32d13e84fbdd9717e2bd91e1f11d2951fede231eb5.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 80, + 504, + 146.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 146.66666666666669, + 504, + 213.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 213.33333333333337, + 504, + 280.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 291, + 505, + 324 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 290, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 505, + 304 + ], + "score": 1.0, + "content": "Figure 9: Example of results on segmentation experiments performed by DRN-105. From top to bottom,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 302, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 505, + 315 + ], + "score": 1.0, + "content": "Original image; Ground truth; Segmented image before adaptation; Segmented image after adaptation by our", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 313, + 138, + 324 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 138, + 324 + ], + "score": 1.0, + "content": "method.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 342, + 505, + 375 + ], + "lines": [ + { + "bbox": [ + 105, + 341, + 505, + 355 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 505, + 355 + ], + "score": 1.0, + "content": "For our new baseline, ENT, we used the same hyper-parameter as we used for our proposed method.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 352, + 506, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 506, + 366 + ], + "score": 1.0, + "content": "Since the accuracy of ENT drops significantly after around 5 epochs, we report the accuracy after 5", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 364, + 169, + 377 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 169, + 377 + ], + "score": 1.0, + "content": "epoch updates.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 341, + 506, + 377 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 383, + 287, + 395 + ], + "lines": [ + { + "bbox": [ + 105, + 381, + 289, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 289, + 397 + ], + "score": 1.0, + "content": "D SEGMENTATION EXPERIMENTS", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 399, + 338, + 531 + ], + "lines": [ + { + "bbox": [ + 106, + 398, + 339, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 339, + 411 + ], + "score": 1.0, + "content": "We modified FCN Long et al. (2015a) architecture suit-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 410, + 339, + 421 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 339, + 421 + ], + "score": 1.0, + "content": "able for ResNet structure. The features from ResBlock", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 420, + 340, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 126, + 432 + ], + "score": 0.62, + "content": "2 { \\sim } 4", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 420, + 340, + 433 + ], + "score": 1.0, + "content": "and the first convolution layer and maxpooling layer", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 432, + 339, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 339, + 443 + ], + "score": 1.0, + "content": "are used in our implementation. In Fig. 8, we show how", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 443, + 339, + 454 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 339, + 454 + ], + "score": 1.0, + "content": "we integrated the features of each layers. We regard the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 454, + 339, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 339, + 466 + ], + "score": 1.0, + "content": "layers of ResNet50 as generator and rest of the networks,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 465, + 340, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 340, + 477 + ], + "score": 1.0, + "content": "namely convolution and upsampling layers as a critic net-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 476, + 340, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 269, + 487 + ], + "score": 1.0, + "content": "work. The input images were resized to", + "type": "text" + }, + { + "bbox": [ + 269, + 476, + 311, + 487 + ], + "score": 0.77, + "content": "5 1 2 \\mathrm { x } 1 0 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 476, + 340, + 487 + ], + "score": 1.0, + "content": "due to", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 487, + 339, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 339, + 498 + ], + "score": 1.0, + "content": "the limit of GPU memory. For the same reason, the batch-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 498, + 340, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 340, + 509 + ], + "score": 1.0, + "content": "size was set to one. In Fig. 9, we show the example of", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 509, + 339, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 339, + 521 + ], + "score": 1.0, + "content": "segmented images by DRN-105. The images are cleanly", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 520, + 254, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 254, + 531 + ], + "score": 1.0, + "content": "segmented by our proposed method.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 398, + 340, + 531 + ] + }, + { + "type": "image", + "bbox": [ + 360, + 375, + 505, + 500 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 360, + 375, + 505, + 500 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 360, + 375, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 360, + 375, + 505, + 500 + ], + "score": 0.959, + "type": "image", + "image_path": "239b4a962924dc544fc56d44223b3182af3fbba803795fe928439774dffc489c.jpg" + } + ] + } + ], + "index": 17.5, + "virtual_lines": [ + { + "bbox": [ + 360, + 375, + 505, + 437.5 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 360, + 437.5, + 505, + 500.0 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 347, + 505, + 518, + 527 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 345, + 503, + 519, + 518 + ], + "spans": [ + { + "bbox": [ + 345, + 503, + 519, + 518 + ], + "score": 1.0, + "content": "Figure 8: Overview of architecture for se-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 346, + 517, + 432, + 527 + ], + "spans": [ + { + "bbox": [ + 346, + 517, + 432, + 527 + ], + "score": 1.0, + "content": "mantic segmentation", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + } + ], + "index": 21.0 + }, + { + "type": "title", + "bbox": [ + 106, + 547, + 351, + 559 + ], + "lines": [ + { + "bbox": [ + 105, + 546, + 351, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 351, + 562 + ], + "score": 1.0, + "content": "E SEMI-SUPERVISED LEARNING USING GANS", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 571, + 505, + 616 + ], + "lines": [ + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "score": 1.0, + "content": "In this section, we demonstrate how to apply our method in training a Generative Adversarial Net-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 582, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 596 + ], + "score": 1.0, + "content": "work (GAN) applied to semi-supervised learning. We follow the method proposed by (Springenberg", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 594, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 277, + 605 + ], + "score": 1.0, + "content": "(2015); Salimans et al. (2016)), who use a", + "type": "text" + }, + { + "bbox": [ + 277, + 594, + 288, + 604 + ], + "score": 0.82, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 594, + 505, + 605 + ], + "score": 1.0, + "content": "-class classification network as a critic to train a GAN", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 603, + 231, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 231, + 618 + ], + "score": 1.0, + "content": "in the semi-supervised setting.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 571, + 505, + 618 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 621, + 504, + 676 + ], + "lines": [ + { + "bbox": [ + 106, + 621, + 506, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 621, + 352, + 634 + ], + "score": 1.0, + "content": "Approach. In contrast to the domain adaptation setting, here", + "type": "text" + }, + { + "bbox": [ + 352, + 622, + 361, + 631 + ], + "score": 0.83, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 621, + 506, + 634 + ], + "score": 1.0, + "content": "tries to generate images which fool", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 632, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 145, + 645 + ], + "score": 1.0, + "content": "the critic", + "type": "text" + }, + { + "bbox": [ + 146, + 633, + 155, + 642 + ], + "score": 0.78, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 632, + 506, + 645 + ], + "score": 1.0, + "content": ". Also, in this setting, we are given labeled and unlabeled real images from the same", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 642, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 506, + 657 + ], + "score": 1.0, + "content": "domain. Then, we train the critic to classify labeled images correctly and to move unlabeled images", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 653, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 506, + 668 + ], + "score": 1.0, + "content": "far from the decision boundary. To achieve this, we propose to train the critic with the following", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 663, + 149, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 149, + 679 + ], + "score": 1.0, + "content": "objective:", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 621, + 506, + 679 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 152, + 672, + 457, + 707 + ], + "lines": [ + { + "bbox": [ + 152, + 672, + 457, + 707 + ], + "spans": [ + { + "bbox": [ + 152, + 672, + 457, + 707 + ], + "score": 0.92, + "content": "\\operatorname* { m i n } _ { C } L _ { C } = L ( X _ { L } , Y _ { L } ) + L _ { a d v } ( X _ { u } ) - L _ { a d v } ( X _ { g } ) - H [ \\frac { 1 } { M } \\sum _ { i = 1 } ^ { M } p ( y | x _ { u } { } ^ { i } , C ) ]", + "type": "interline_equation", + "image_path": "b4e0bb62c8cc70e5af3a746f4ffc2fff759f31b06275f447fb8c07818b6c821a.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 152, + 672, + 457, + 683.6666666666666 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 152, + 683.6666666666666, + 457, + 695.3333333333333 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 152, + 695.3333333333333, + 457, + 706.9999999999999 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 201, + 719, + 409, + 733 + ], + "lines": [ + { + "bbox": [ + 201, + 719, + 409, + 733 + ], + "spans": [ + { + "bbox": [ + 201, + 719, + 409, + 733 + ], + "score": 0.85, + "content": "L _ { a d v } ( X _ { u } ) = \\mathbb { E } _ { \\mathbf { x _ { u } } \\sim X _ { u } } [ d ( C _ { 1 } ( G ( \\mathbf { x _ { u } } ) ) , C _ { 2 } ( G ( \\mathbf { x _ { u } } ) ) ) ]", + "type": "interline_equation", + "image_path": "4f3651718657720aa59752e868f8a29aa904e613e9650be8f9f4ef7a3210e164.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 201, + 719, + 409, + 733 + ], + "spans": [], + "index": 39 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 80, + 499, + 192 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 80, + 499, + 192 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 80, + 499, + 192 + ], + "spans": [ + { + "bbox": [ + 107, + 80, + 499, + 192 + ], + "score": 0.968, + "type": "image", + "image_path": "63364abe673b063e24a800150d6aed5d16f2ac6fd54204e6ef2d434abc5d60e1.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 80, + 499, + 117.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 117.33333333333334, + 499, + 154.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 154.66666666666669, + 499, + 192.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 221, + 199, + 389, + 211 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 218, + 198, + 389, + 213 + ], + "spans": [ + { + "bbox": [ + 218, + 198, + 389, + 213 + ], + "score": 1.0, + "content": "Figure 10: Examples of generated images.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "table", + "bbox": [ + 128, + 220, + 480, + 304 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 128, + 220, + 480, + 304 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 128, + 220, + 480, + 304 + ], + "spans": [ + { + "bbox": [ + 128, + 220, + 480, + 304 + ], + "score": 0.969, + "html": "
SVHN (% errors)CIFAR (% errors)
Labeled Only SDGM (Maalge et al. (2016)16.61 ± 0.24
CatGAN (Springenberg (2015))=19.58±0.46
ALI (Dumoulin et al. (2016))7.42±0.6517.99±1.62
ImpGAN (Salimans et al. (2016))8.11±1.318.63±2.32
Ours6.26±1.0519.63±0.37
", + "type": "table", + "image_path": "c25d34b9848ce8a2264f46bff282c343fd96916cc65ef79946fd5a75454797ef.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 128, + 220, + 480, + 248.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 128, + 248.0, + 480, + 276.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 128, + 276.0, + 480, + 304.0 + ], + "spans": [], + "index": 6 + } + ] + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 105, + 312, + 505, + 334 + ], + "lines": [ + { + "bbox": [ + 106, + 312, + 504, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 504, + 324 + ], + "score": 1.0, + "content": "Table 4: Comparison with state-of-the-art methods on two benchmark datasets. Only methods with-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 323, + 483, + 335 + ], + "spans": [ + { + "bbox": [ + 106, + 323, + 483, + 335 + ], + "score": 1.0, + "content": "out data augmentation are included. We used the same critic architecture as used in ImpGAN.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "interline_equation", + "bbox": [ + 202, + 369, + 409, + 383 + ], + "lines": [ + { + "bbox": [ + 202, + 369, + 409, + 383 + ], + "spans": [ + { + "bbox": [ + 202, + 369, + 409, + 383 + ], + "score": 0.9, + "content": "L _ { a d v } ( X _ { g } ) = \\mathbb { E } _ { { \\mathbf { x } } _ { \\mathbf { g } } \\sim X _ { G } } [ d ( C _ { 1 } ( G ( { \\mathbf { x } } _ { \\mathbf { g } } ) ) , C _ { 2 } ( G ( { \\mathbf { x } } _ { \\mathbf { g } } ) ) ) ]", + "type": "interline_equation", + "image_path": "83537d900fab4ee7a3f1710393b244f2849254ece073bff6f7ec2ac627714516.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 202, + 369, + 409, + 383 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 384, + 505, + 441 + ], + "lines": [ + { + "bbox": [ + 106, + 385, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 133, + 397 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 385, + 148, + 396 + ], + "score": 0.89, + "content": "X _ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 385, + 301, + 397 + ], + "score": 1.0, + "content": "denotes the subset of labeled samples,", + "type": "text" + }, + { + "bbox": [ + 301, + 385, + 316, + 396 + ], + "score": 0.88, + "content": "X _ { u }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 385, + 426, + 397 + ], + "score": 1.0, + "content": "denotes unlabeled ones and", + "type": "text" + }, + { + "bbox": [ + 427, + 385, + 441, + 397 + ], + "score": 0.89, + "content": "X _ { g }", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 385, + 505, + 397 + ], + "score": 1.0, + "content": "denotes images", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 395, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 160, + 408 + ], + "score": 1.0, + "content": "generated by", + "type": "text" + }, + { + "bbox": [ + 160, + 396, + 170, + 406 + ], + "score": 0.82, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 395, + 188, + 408 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 188, + 396, + 198, + 406 + ], + "score": 0.82, + "content": "H", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 395, + 505, + 408 + ], + "score": 1.0, + "content": "denotes entropy as Eq.6 shows. The critic is trained to minimize the loss on", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 406, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 505, + 418 + ], + "score": 1.0, + "content": "labeled samples in the first term. Since unlabeled images should be far away from the decision", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 418, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 505, + 430 + ], + "score": 1.0, + "content": "boundary and should be distributed uniformly among the classes, we add the second and fourth", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 428, + 480, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 480, + 442 + ], + "score": 1.0, + "content": "term. The third term encourages the critic to detect fake images generated near the boundary.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 445, + 238, + 456 + ], + "lines": [ + { + "bbox": [ + 106, + 443, + 240, + 459 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 174, + 459 + ], + "score": 1.0, + "content": "The objective of", + "type": "text" + }, + { + "bbox": [ + 174, + 446, + 183, + 455 + ], + "score": 0.84, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 443, + 240, + 459 + ], + "score": 1.0, + "content": "is as follows,", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "interline_equation", + "bbox": [ + 195, + 460, + 414, + 479 + ], + "lines": [ + { + "bbox": [ + 195, + 460, + 414, + 479 + ], + "spans": [ + { + "bbox": [ + 195, + 460, + 414, + 479 + ], + "score": 0.9, + "content": "\\operatorname* { m i n } _ { G } L _ { a d v } ( X _ { g } ) + | | \\mathbb { E } _ { x _ { g } \\sim X _ { g } } f ( \\mathbf { x _ { g } } ) - \\mathbb { E } _ { \\mathbf { x _ { u } } \\sim X _ { u } } f ( \\mathbf { x _ { u } } ) | | ^ { 2 }", + "type": "interline_equation", + "image_path": "aa12383d6c54067bf716e7a8e1391d0066b156b3c026b96dcb40a20a36336bfa.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 195, + 460, + 414, + 479 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 483, + 505, + 539 + ], + "lines": [ + { + "bbox": [ + 106, + 484, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 505, + 496 + ], + "score": 1.0, + "content": "where the second term encourages generated images to be similar to real images, which is known to", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 494, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 505, + 507 + ], + "score": 1.0, + "content": "be effective to stabilize the training. The first term encourages the generator to create fake images", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 504, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 505, + 519 + ], + "score": 1.0, + "content": "which should be placed far away from the boundary. Such images should be similar to real images", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 516, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 477, + 529 + ], + "score": 1.0, + "content": "because they are likely to be assigned to some class with high probability. Here, we update", + "type": "text" + }, + { + "bbox": [ + 478, + 517, + 487, + 526 + ], + "score": 0.82, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 516, + 505, + 529 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 527, + 210, + 540 + ], + "spans": [ + { + "bbox": [ + 107, + 528, + 115, + 537 + ], + "score": 0.79, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 527, + 210, + 540 + ], + "score": 1.0, + "content": "same number of times.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 544, + 505, + 588 + ], + "lines": [ + { + "bbox": [ + 105, + 543, + 506, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 506, + 557 + ], + "score": 1.0, + "content": "Experiment. We evaluate our proposed GAN training method by using SVHN and CIFAR10", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 555, + 506, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 506, + 568 + ], + "score": 1.0, + "content": "datasets, using the critic network architecture from (Salimans et al. (2016)). We set the batch size as", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 565, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 261, + 579 + ], + "score": 1.0, + "content": "100 and used Adam with learning rate", + "type": "text" + }, + { + "bbox": [ + 261, + 565, + 309, + 577 + ], + "score": 0.92, + "content": "2 . 0 \\times 1 . 0 ^ { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 565, + 506, + 579 + ], + "score": 1.0, + "content": "for optimizer. After the conv6 layer of the critic,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 577, + 453, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 453, + 590 + ], + "score": 1.0, + "content": "we constructed a classifier which was not concerned with adversarial learning process.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 107, + 593, + 505, + 638 + ], + "lines": [ + { + "bbox": [ + 105, + 594, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 492, + 605 + ], + "score": 1.0, + "content": "In the experiment on SVHN, we replaced Weight Normalization with Batch Normalization for", + "type": "text" + }, + { + "bbox": [ + 492, + 594, + 501, + 604 + ], + "score": 0.76, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 594, + 505, + 605 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "Also, in the experiment on CIFAR10, we construct a classifier from a middle layer of the critic,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 617, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 505, + 628 + ], + "score": 1.0, + "content": "which is not incorporated into the adversarial training step. This is motivated by the insight that the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 627, + 493, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 493, + 639 + ], + "score": 1.0, + "content": "critic in our method is trained to be too sensitive to the dropout noise as we explained in Sec 3.3.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 106, + 643, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 643, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 505, + 656 + ], + "score": 1.0, + "content": "Results. From Fig. 10(a), we can see that ADR seems to generate realistic SVHN images. Some", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "images are significantly blurred, but most of the images are clear and diverse. As for generated", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "CIFAR10 images, they do not seem as realistic, but some objects appear in most images. In Ta-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 677, + 505, + 688 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 688 + ], + "score": 1.0, + "content": "ble 4, we can see that the accuracy of the critic trained by our method has better performance than", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "other models for SVHN. For CIFAR10, the accuracy was slightly worse than other state-of-the-art", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "methods. We conclude that, despite its clear advantage on the domain adaptation tasks, our method", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 710, + 506, + 721 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 721 + ], + "score": 1.0, + "content": "produces mixed results on the SSL tasks. It could still be useful for SSL, however, it needs further", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "score": 1.0, + "content": "exploration to improve the accuracy. For example, in Eq. 6, we propose to maximize the entropy of", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 33.5 + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "14", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 80, + 499, + 192 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 80, + 499, + 192 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 80, + 499, + 192 + ], + "spans": [ + { + "bbox": [ + 107, + 80, + 499, + 192 + ], + "score": 0.968, + "type": "image", + "image_path": "63364abe673b063e24a800150d6aed5d16f2ac6fd54204e6ef2d434abc5d60e1.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 80, + 499, + 117.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 117.33333333333334, + 499, + 154.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 154.66666666666669, + 499, + 192.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 221, + 199, + 389, + 211 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 218, + 198, + 389, + 213 + ], + "spans": [ + { + "bbox": [ + 218, + 198, + 389, + 213 + ], + "score": 1.0, + "content": "Figure 10: Examples of generated images.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "table", + "bbox": [ + 128, + 220, + 480, + 304 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 128, + 220, + 480, + 304 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 128, + 220, + 480, + 304 + ], + "spans": [ + { + "bbox": [ + 128, + 220, + 480, + 304 + ], + "score": 0.969, + "html": "
SVHN (% errors)CIFAR (% errors)
Labeled Only SDGM (Maalge et al. (2016)16.61 ± 0.24
CatGAN (Springenberg (2015))=19.58±0.46
ALI (Dumoulin et al. (2016))7.42±0.6517.99±1.62
ImpGAN (Salimans et al. (2016))8.11±1.318.63±2.32
Ours6.26±1.0519.63±0.37
", + "type": "table", + "image_path": "c25d34b9848ce8a2264f46bff282c343fd96916cc65ef79946fd5a75454797ef.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 128, + 220, + 480, + 248.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 128, + 248.0, + 480, + 276.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 128, + 276.0, + 480, + 304.0 + ], + "spans": [], + "index": 6 + } + ] + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 105, + 312, + 505, + 334 + ], + "lines": [ + { + "bbox": [ + 106, + 312, + 504, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 504, + 324 + ], + "score": 1.0, + "content": "Table 4: Comparison with state-of-the-art methods on two benchmark datasets. Only methods with-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 323, + 483, + 335 + ], + "spans": [ + { + "bbox": [ + 106, + 323, + 483, + 335 + ], + "score": 1.0, + "content": "out data augmentation are included. We used the same critic architecture as used in ImpGAN.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 106, + 312, + 504, + 335 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 202, + 369, + 409, + 383 + ], + "lines": [ + { + "bbox": [ + 202, + 369, + 409, + 383 + ], + "spans": [ + { + "bbox": [ + 202, + 369, + 409, + 383 + ], + "score": 0.9, + "content": "L _ { a d v } ( X _ { g } ) = \\mathbb { E } _ { { \\mathbf { x } } _ { \\mathbf { g } } \\sim X _ { G } } [ d ( C _ { 1 } ( G ( { \\mathbf { x } } _ { \\mathbf { g } } ) ) , C _ { 2 } ( G ( { \\mathbf { x } } _ { \\mathbf { g } } ) ) ) ]", + "type": "interline_equation", + "image_path": "83537d900fab4ee7a3f1710393b244f2849254ece073bff6f7ec2ac627714516.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 202, + 369, + 409, + 383 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 384, + 505, + 441 + ], + "lines": [ + { + "bbox": [ + 106, + 385, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 133, + 397 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 385, + 148, + 396 + ], + "score": 0.89, + "content": "X _ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 385, + 301, + 397 + ], + "score": 1.0, + "content": "denotes the subset of labeled samples,", + "type": "text" + }, + { + "bbox": [ + 301, + 385, + 316, + 396 + ], + "score": 0.88, + "content": "X _ { u }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 385, + 426, + 397 + ], + "score": 1.0, + "content": "denotes unlabeled ones and", + "type": "text" + }, + { + "bbox": [ + 427, + 385, + 441, + 397 + ], + "score": 0.89, + "content": "X _ { g }", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 385, + 505, + 397 + ], + "score": 1.0, + "content": "denotes images", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 395, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 160, + 408 + ], + "score": 1.0, + "content": "generated by", + "type": "text" + }, + { + "bbox": [ + 160, + 396, + 170, + 406 + ], + "score": 0.82, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 395, + 188, + 408 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 188, + 396, + 198, + 406 + ], + "score": 0.82, + "content": "H", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 395, + 505, + 408 + ], + "score": 1.0, + "content": "denotes entropy as Eq.6 shows. The critic is trained to minimize the loss on", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 406, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 505, + 418 + ], + "score": 1.0, + "content": "labeled samples in the first term. Since unlabeled images should be far away from the decision", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 418, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 505, + 430 + ], + "score": 1.0, + "content": "boundary and should be distributed uniformly among the classes, we add the second and fourth", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 428, + 480, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 480, + 442 + ], + "score": 1.0, + "content": "term. The third term encourages the critic to detect fake images generated near the boundary.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 385, + 505, + 442 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 445, + 238, + 456 + ], + "lines": [ + { + "bbox": [ + 106, + 443, + 240, + 459 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 174, + 459 + ], + "score": 1.0, + "content": "The objective of", + "type": "text" + }, + { + "bbox": [ + 174, + 446, + 183, + 455 + ], + "score": 0.84, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 443, + 240, + 459 + ], + "score": 1.0, + "content": "is as follows,", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15, + "bbox_fs": [ + 106, + 443, + 240, + 459 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 195, + 460, + 414, + 479 + ], + "lines": [ + { + "bbox": [ + 195, + 460, + 414, + 479 + ], + "spans": [ + { + "bbox": [ + 195, + 460, + 414, + 479 + ], + "score": 0.9, + "content": "\\operatorname* { m i n } _ { G } L _ { a d v } ( X _ { g } ) + | | \\mathbb { E } _ { x _ { g } \\sim X _ { g } } f ( \\mathbf { x _ { g } } ) - \\mathbb { E } _ { \\mathbf { x _ { u } } \\sim X _ { u } } f ( \\mathbf { x _ { u } } ) | | ^ { 2 }", + "type": "interline_equation", + "image_path": "aa12383d6c54067bf716e7a8e1391d0066b156b3c026b96dcb40a20a36336bfa.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 195, + 460, + 414, + 479 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 483, + 505, + 539 + ], + "lines": [ + { + "bbox": [ + 106, + 484, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 505, + 496 + ], + "score": 1.0, + "content": "where the second term encourages generated images to be similar to real images, which is known to", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 494, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 505, + 507 + ], + "score": 1.0, + "content": "be effective to stabilize the training. The first term encourages the generator to create fake images", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 504, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 505, + 519 + ], + "score": 1.0, + "content": "which should be placed far away from the boundary. Such images should be similar to real images", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 516, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 477, + 529 + ], + "score": 1.0, + "content": "because they are likely to be assigned to some class with high probability. Here, we update", + "type": "text" + }, + { + "bbox": [ + 478, + 517, + 487, + 526 + ], + "score": 0.82, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 516, + 505, + 529 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 527, + 210, + 540 + ], + "spans": [ + { + "bbox": [ + 107, + 528, + 115, + 537 + ], + "score": 0.79, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 527, + 210, + 540 + ], + "score": 1.0, + "content": "same number of times.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 484, + 505, + 540 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 544, + 505, + 588 + ], + "lines": [ + { + "bbox": [ + 105, + 543, + 506, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 506, + 557 + ], + "score": 1.0, + "content": "Experiment. We evaluate our proposed GAN training method by using SVHN and CIFAR10", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 555, + 506, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 506, + 568 + ], + "score": 1.0, + "content": "datasets, using the critic network architecture from (Salimans et al. (2016)). We set the batch size as", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 565, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 261, + 579 + ], + "score": 1.0, + "content": "100 and used Adam with learning rate", + "type": "text" + }, + { + "bbox": [ + 261, + 565, + 309, + 577 + ], + "score": 0.92, + "content": "2 . 0 \\times 1 . 0 ^ { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 565, + 506, + 579 + ], + "score": 1.0, + "content": "for optimizer. After the conv6 layer of the critic,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 577, + 453, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 453, + 590 + ], + "score": 1.0, + "content": "we constructed a classifier which was not concerned with adversarial learning process.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 543, + 506, + 590 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 593, + 505, + 638 + ], + "lines": [ + { + "bbox": [ + 105, + 594, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 492, + 605 + ], + "score": 1.0, + "content": "In the experiment on SVHN, we replaced Weight Normalization with Batch Normalization for", + "type": "text" + }, + { + "bbox": [ + 492, + 594, + 501, + 604 + ], + "score": 0.76, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 594, + 505, + 605 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "Also, in the experiment on CIFAR10, we construct a classifier from a middle layer of the critic,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 617, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 505, + 628 + ], + "score": 1.0, + "content": "which is not incorporated into the adversarial training step. This is motivated by the insight that the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 627, + 493, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 493, + 639 + ], + "score": 1.0, + "content": "critic in our method is trained to be too sensitive to the dropout noise as we explained in Sec 3.3.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 594, + 505, + 639 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 643, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 643, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 505, + 656 + ], + "score": 1.0, + "content": "Results. From Fig. 10(a), we can see that ADR seems to generate realistic SVHN images. Some", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "images are significantly blurred, but most of the images are clear and diverse. As for generated", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "CIFAR10 images, they do not seem as realistic, but some objects appear in most images. In Ta-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 677, + 505, + 688 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 688 + ], + "score": 1.0, + "content": "ble 4, we can see that the accuracy of the critic trained by our method has better performance than", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "other models for SVHN. For CIFAR10, the accuracy was slightly worse than other state-of-the-art", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "methods. We conclude that, despite its clear advantage on the domain adaptation tasks, our method", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 710, + 506, + 721 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 721 + ], + "score": 1.0, + "content": "produces mixed results on the SSL tasks. It could still be useful for SSL, however, it needs further", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "score": 1.0, + "content": "exploration to improve the accuracy. For example, in Eq. 6, we propose to maximize the entropy of", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "the marginal class distribution of the unlabeled real images, as well as forcing them to be far from", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 105 + ], + "score": 1.0, + "content": "the boundary. However, these objectives may contradict each other, which may in turn degrade the", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "performance. In late-breaking results, Dai et al. (2017) theoretically showed that just generating fake", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "images that are far from decision boundaries does not help to improve accuracy in training GANs in", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 125, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 506, + 140 + ], + "score": 1.0, + "content": "the setting of SSL. Further improvement of our SSL approach based on these results is an interesting", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 137, + 210, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 210, + 149 + ], + "score": 1.0, + "content": "direction for future work.", + "type": "text", + "cross_page": true + } + ], + "index": 5 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 643, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 148 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "the marginal class distribution of the unlabeled real images, as well as forcing them to be far from", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 105 + ], + "score": 1.0, + "content": "the boundary. However, these objectives may contradict each other, which may in turn degrade the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "performance. In late-breaking results, Dai et al. (2017) theoretically showed that just generating fake", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "images that are far from decision boundaries does not help to improve accuracy in training GANs in", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 125, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 506, + 140 + ], + "score": 1.0, + "content": "the setting of SSL. Further improvement of our SSL approach based on these results is an interesting", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 137, + 210, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 210, + 149 + ], + "score": 1.0, + "content": "direction for future work.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5 + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "15", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 148 + ], + "lines": [], + "index": 2.5, + "bbox_fs": [ + 105, + 82, + 506, + 149 + ], + "lines_deleted": true + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/HJIoJWZCZ/HJIoJWZCZ_model.json b/parse/train/HJIoJWZCZ/HJIoJWZCZ_model.json new file mode 100644 index 0000000000000000000000000000000000000000..3a16acdf354b8ec4594bcfe99f89c8253ef6a759 --- /dev/null +++ b/parse/train/HJIoJWZCZ/HJIoJWZCZ_model.json @@ -0,0 +1,20604 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 600, + 1302, + 600, + 1302, + 1056, + 398, + 1056 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1161, + 1403, + 1161, + 1403, + 1375, + 298, + 1375 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1590, + 1403, + 1590, + 1403, + 1835, + 298, + 1835 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1851, + 1402, + 1851, + 1402, + 2034, + 298, + 2034 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 1391, + 1402, + 1391, + 1402, + 1574, + 299, + 1574 + ], + "score": 0.977 + }, + { + "category_id": 0, + "poly": [ + 300, + 218, + 1200, + 218, + 1200, + 270, + 300, + 270 + ], + "score": 0.934 + }, + { + "category_id": 0, + "poly": [ + 301, + 1116, + 573, + 1116, + 573, + 1150, + 301, + 1150 + ], + "score": 0.892 + }, + { + "category_id": 0, + "poly": [ + 773, + 531, + 926, + 531, + 926, + 564, + 773, + 564 + ], + "score": 0.88 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 816, + 75, + 816, + 104, + 300, + 104 + ], + "score": 0.874 + }, + { + "category_id": 1, + "poly": [ + 393, + 389, + 1313, + 389, + 1313, + 456, + 393, + 456 + ], + "score": 0.66 + }, + { + "category_id": 1, + "poly": [ + 441, + 331, + 1255, + 331, + 1255, + 368, + 441, + 368 + ], + "score": 0.644 + }, + { + "category_id": 2, + "poly": [ + 842, + 2089, + 857, + 2089, + 857, + 2112, + 842, + 2112 + ], + "score": 0.623 + }, + { + "category_id": 13, + "poly": [ + 950, + 2003, + 1026, + 2003, + 1026, + 2036, + 950, + 2036 + ], + "score": 0.92, + "latex": "p ( y | x )" + }, + { + "category_id": 13, + "poly": [ + 1092, + 1484, + 1117, + 1484, + 1117, + 1511, + 1092, + 1511 + ], + "score": 0.81, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1285, + 1974, + 1310, + 1974, + 1310, + 2001, + 1285, + 2001 + ], + "score": 0.81, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 1065, + 1454, + 1090, + 1454, + 1090, + 1481, + 1065, + 1481 + ], + "score": 0.81, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 751, + 1515, + 777, + 1515, + 777, + 1541, + 751, + 1541 + ], + "score": 0.8, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 883, + 1454, + 908, + 1454, + 908, + 1481, + 883, + 1481 + ], + "score": 0.8, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1115, + 2008, + 1135, + 2008, + 1135, + 2035, + 1115, + 2035 + ], + "score": 0.8, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 424, + 1545, + 451, + 1545, + 451, + 1571, + 424, + 1571 + ], + "score": 0.76, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 584, + 1484, + 610, + 1484, + 610, + 1510, + 584, + 1510 + ], + "score": 0.74, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 1188, + 2008, + 1207, + 2008, + 1207, + 2030, + 1188, + 2030 + ], + "score": 0.74, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 1155, + 1423, + 1181, + 1423, + 1181, + 1450, + 1155, + 1450 + ], + "score": 0.3, + "latex": "\\&" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 218.0, + 1205.0, + 218.0, + 1205.0, + 274.0, + 295.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1112.0, + 579.0, + 1112.0, + 579.0, + 1158.0, + 293.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 530.0, + 932.0, + 530.0, + 932.0, + 567.0, + 769.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 817.0, + 72.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 2088.0, + 860.0, + 2088.0, + 860.0, + 2118.0, + 841.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 600.0, + 1305.0, + 600.0, + 1305.0, + 634.0, + 396.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 630.0, + 1306.0, + 630.0, + 1306.0, + 664.0, + 394.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 660.0, + 1306.0, + 660.0, + 1306.0, + 695.0, + 394.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 691.0, + 1306.0, + 691.0, + 1306.0, + 725.0, + 393.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 722.0, + 1305.0, + 722.0, + 1305.0, + 755.0, + 393.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 752.0, + 1305.0, + 752.0, + 1305.0, + 786.0, + 394.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 784.0, + 1303.0, + 784.0, + 1303.0, + 816.0, + 395.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 816.0, + 1305.0, + 816.0, + 1305.0, + 847.0, + 394.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 843.0, + 1307.0, + 843.0, + 1307.0, + 878.0, + 394.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 876.0, + 1306.0, + 876.0, + 1306.0, + 908.0, + 395.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 906.0, + 1306.0, + 906.0, + 1306.0, + 937.0, + 395.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 936.0, + 1305.0, + 936.0, + 1305.0, + 968.0, + 395.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 966.0, + 1306.0, + 966.0, + 1306.0, + 1001.0, + 394.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 997.0, + 1305.0, + 997.0, + 1305.0, + 1028.0, + 394.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1027.0, + 1208.0, + 1027.0, + 1208.0, + 1059.0, + 395.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1161.0, + 1405.0, + 1161.0, + 1405.0, + 1196.0, + 296.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1192.0, + 1404.0, + 1192.0, + 1404.0, + 1226.0, + 294.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1221.0, + 1404.0, + 1221.0, + 1404.0, + 1257.0, + 293.0, + 1257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1253.0, + 1405.0, + 1253.0, + 1405.0, + 1288.0, + 296.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1284.0, + 1405.0, + 1284.0, + 1405.0, + 1318.0, + 294.0, + 1318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1315.0, + 1405.0, + 1315.0, + 1405.0, + 1349.0, + 294.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1347.0, + 1174.0, + 1347.0, + 1174.0, + 1378.0, + 294.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1589.0, + 1407.0, + 1589.0, + 1407.0, + 1626.0, + 293.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1621.0, + 1405.0, + 1621.0, + 1405.0, + 1655.0, + 294.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1650.0, + 1404.0, + 1650.0, + 1404.0, + 1686.0, + 293.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1683.0, + 1402.0, + 1683.0, + 1402.0, + 1716.0, + 293.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1711.0, + 1407.0, + 1711.0, + 1407.0, + 1748.0, + 293.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1739.0, + 1405.0, + 1739.0, + 1405.0, + 1781.0, + 292.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1775.0, + 1405.0, + 1775.0, + 1405.0, + 1808.0, + 294.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1805.0, + 877.0, + 1805.0, + 877.0, + 1838.0, + 294.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1852.0, + 1404.0, + 1852.0, + 1404.0, + 1883.0, + 294.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1883.0, + 1404.0, + 1883.0, + 1404.0, + 1915.0, + 296.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1912.0, + 1406.0, + 1912.0, + 1406.0, + 1946.0, + 291.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1941.0, + 1406.0, + 1941.0, + 1406.0, + 1978.0, + 292.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1974.0, + 1284.0, + 1974.0, + 1284.0, + 2006.0, + 296.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1311.0, + 1974.0, + 1403.0, + 1974.0, + 1403.0, + 2006.0, + 1311.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 949.0, + 2003.0, + 949.0, + 2039.0, + 294.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 2003.0, + 1114.0, + 2003.0, + 1114.0, + 2039.0, + 1027.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1136.0, + 2003.0, + 1187.0, + 2003.0, + 1187.0, + 2039.0, + 1136.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1208.0, + 2003.0, + 1406.0, + 2003.0, + 1406.0, + 2039.0, + 1208.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1393.0, + 1404.0, + 1393.0, + 1404.0, + 1424.0, + 295.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1422.0, + 1154.0, + 1422.0, + 1154.0, + 1457.0, + 293.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1182.0, + 1422.0, + 1402.0, + 1422.0, + 1402.0, + 1457.0, + 1182.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1451.0, + 882.0, + 1451.0, + 882.0, + 1488.0, + 294.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 1451.0, + 1064.0, + 1451.0, + 1064.0, + 1488.0, + 909.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1091.0, + 1451.0, + 1406.0, + 1451.0, + 1406.0, + 1488.0, + 1091.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1481.0, + 583.0, + 1481.0, + 583.0, + 1517.0, + 294.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 1481.0, + 1091.0, + 1481.0, + 1091.0, + 1517.0, + 611.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 1481.0, + 1406.0, + 1481.0, + 1406.0, + 1517.0, + 1118.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1514.0, + 750.0, + 1514.0, + 750.0, + 1546.0, + 294.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 1514.0, + 1406.0, + 1514.0, + 1406.0, + 1546.0, + 778.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1543.0, + 423.0, + 1543.0, + 423.0, + 1577.0, + 294.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 1543.0, + 1027.0, + 1543.0, + 1027.0, + 1577.0, + 452.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 533.0, + 384.0, + 1165.0, + 384.0, + 1165.0, + 431.0, + 533.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 421.0, + 1316.0, + 421.0, + 1316.0, + 460.0, + 387.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 440.0, + 328.0, + 1258.0, + 328.0, + 1258.0, + 372.0, + 440.0, + 372.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1032, + 1404, + 1032, + 1404, + 1308, + 297, + 1308 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1698, + 1404, + 1698, + 1404, + 2034, + 298, + 2034 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1406, + 1404, + 1406, + 1404, + 1683, + 297, + 1683 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 741, + 1403, + 741, + 1403, + 1017, + 298, + 1017 + ], + "score": 0.978 + }, + { + "category_id": 4, + "poly": [ + 296, + 497, + 1403, + 497, + 1403, + 681, + 296, + 681 + ], + "score": 0.973 + }, + { + "category_id": 3, + "poly": [ + 297, + 220, + 1400, + 220, + 1400, + 469, + 297, + 469 + ], + "score": 0.968 + }, + { + "category_id": 0, + "poly": [ + 300, + 1357, + 588, + 1357, + 588, + 1393, + 300, + 1393 + ], + "score": 0.911 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 814, + 76, + 814, + 104, + 299, + 104 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.704 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.172 + }, + { + "category_id": 13, + "poly": [ + 1346, + 926, + 1400, + 926, + 1400, + 959, + 1346, + 959 + ], + "score": 0.9, + "latex": "p ( x )" + }, + { + "category_id": 13, + "poly": [ + 1100, + 1035, + 1126, + 1035, + 1126, + 1061, + 1100, + 1061 + ], + "score": 0.81, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1035, + 804, + 1060, + 804, + 1060, + 832, + 1035, + 832 + ], + "score": 0.8, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 402, + 1065, + 427, + 1065, + 427, + 1092, + 402, + 1092 + ], + "score": 0.77, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 1112, + 1065, + 1138, + 1065, + 1138, + 1091, + 1112, + 1091 + ], + "score": 0.72, + "latex": "D" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 496.0, + 1404.0, + 496.0, + 1404.0, + 531.0, + 294.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 529.0, + 1404.0, + 529.0, + 1404.0, + 561.0, + 293.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 557.0, + 1405.0, + 557.0, + 1405.0, + 594.0, + 293.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 590.0, + 1404.0, + 590.0, + 1404.0, + 622.0, + 295.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 622.0, + 1404.0, + 622.0, + 1404.0, + 654.0, + 294.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 650.0, + 939.0, + 650.0, + 939.0, + 684.0, + 294.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 222.0, + 1015.0, + 222.0, + 1015.0, + 249.0, + 843.0, + 249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 222.0, + 1311.0, + 222.0, + 1311.0, + 250.0, + 1216.0, + 250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 250.0, + 931.0, + 250.0, + 931.0, + 273.0, + 795.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 250.0, + 1041.0, + 250.0, + 1041.0, + 274.0, + 971.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1094.0, + 251.0, + 1231.0, + 251.0, + 1231.0, + 274.0, + 1094.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1297.0, + 250.0, + 1366.0, + 250.0, + 1366.0, + 275.0, + 1297.0, + 275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 283.0, + 862.0, + 283.0, + 862.0, + 294.0, + 851.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 283.0, + 886.0, + 283.0, + 886.0, + 292.0, + 875.0, + 292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 284.0, + 1010.0, + 284.0, + 1010.0, + 294.0, + 1000.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 281.0, + 1173.0, + 281.0, + 1173.0, + 294.0, + 1162.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1186.0, + 281.0, + 1197.0, + 281.0, + 1197.0, + 292.0, + 1186.0, + 292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1311.0, + 278.0, + 1340.0, + 278.0, + 1340.0, + 296.0, + 1311.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 996.0, + 300.0, + 1006.0, + 300.0, + 1006.0, + 312.0, + 996.0, + 312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 295.0, + 1021.0, + 295.0, + 1021.0, + 307.0, + 1011.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1194.0, + 288.0, + 1218.0, + 288.0, + 1218.0, + 306.0, + 1194.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1323.0, + 298.0, + 1337.0, + 298.0, + 1337.0, + 307.0, + 1323.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 983.0, + 309.0, + 998.0, + 309.0, + 998.0, + 324.0, + 983.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1312.0, + 309.0, + 1322.0, + 309.0, + 1322.0, + 318.0, + 1312.0, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1107.0, + 317.0, + 1117.0, + 317.0, + 1117.0, + 325.0, + 1107.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 325.0, + 994.0, + 325.0, + 994.0, + 331.0, + 988.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 323.0, + 1029.0, + 323.0, + 1029.0, + 334.0, + 1019.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1301.0, + 323.0, + 1322.0, + 323.0, + 1322.0, + 335.0, + 1301.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 996.0, + 329.0, + 1006.0, + 329.0, + 1006.0, + 340.0, + 996.0, + 340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 976.0, + 342.0, + 986.0, + 342.0, + 986.0, + 351.0, + 976.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 353.0, + 801.0, + 353.0, + 801.0, + 363.0, + 791.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 444.0, + 936.0, + 444.0, + 936.0, + 474.0, + 901.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.0, + 444.0, + 1166.0, + 444.0, + 1166.0, + 473.0, + 992.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 443.0, + 1267.0, + 443.0, + 1267.0, + 474.0, + 1237.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 291.0, + 907.0, + 291.0, + 907.0, + 304.5, + 881.0, + 304.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1334.0, + 290.0, + 1357.0, + 290.0, + 1357.0, + 303.0, + 1334.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 313.0, + 1009.0, + 313.0, + 1009.0, + 325.0, + 999.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1354.0, + 594.0, + 1354.0, + 594.0, + 1401.0, + 290.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1034.0, + 1099.0, + 1034.0, + 1099.0, + 1067.0, + 297.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 1034.0, + 1405.0, + 1034.0, + 1405.0, + 1067.0, + 1127.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1062.0, + 401.0, + 1062.0, + 401.0, + 1098.0, + 295.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 428.0, + 1062.0, + 1111.0, + 1062.0, + 1111.0, + 1098.0, + 428.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1139.0, + 1062.0, + 1406.0, + 1062.0, + 1406.0, + 1098.0, + 1139.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1092.0, + 1405.0, + 1092.0, + 1405.0, + 1129.0, + 292.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1123.0, + 1404.0, + 1123.0, + 1404.0, + 1160.0, + 295.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1153.0, + 1405.0, + 1153.0, + 1405.0, + 1190.0, + 294.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1183.0, + 1404.0, + 1183.0, + 1404.0, + 1221.0, + 292.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1213.0, + 1404.0, + 1213.0, + 1404.0, + 1251.0, + 294.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1244.0, + 1405.0, + 1244.0, + 1405.0, + 1282.0, + 292.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1276.0, + 415.0, + 1276.0, + 415.0, + 1311.0, + 292.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1699.0, + 1404.0, + 1699.0, + 1404.0, + 1733.0, + 294.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1727.0, + 1405.0, + 1727.0, + 1405.0, + 1764.0, + 293.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1759.0, + 1405.0, + 1759.0, + 1405.0, + 1794.0, + 294.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1792.0, + 1404.0, + 1792.0, + 1404.0, + 1823.0, + 297.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1821.0, + 1401.0, + 1821.0, + 1401.0, + 1852.0, + 296.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1851.0, + 1405.0, + 1851.0, + 1405.0, + 1886.0, + 294.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1882.0, + 1405.0, + 1882.0, + 1405.0, + 1917.0, + 294.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1912.0, + 1406.0, + 1912.0, + 1406.0, + 1947.0, + 294.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1942.0, + 1404.0, + 1942.0, + 1404.0, + 1979.0, + 293.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1974.0, + 1405.0, + 1974.0, + 1405.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2001.0, + 1333.0, + 2001.0, + 1333.0, + 2038.0, + 293.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1407.0, + 1404.0, + 1407.0, + 1404.0, + 1440.0, + 296.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1440.0, + 1404.0, + 1440.0, + 1404.0, + 1473.0, + 295.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1467.0, + 1404.0, + 1467.0, + 1404.0, + 1505.0, + 294.0, + 1505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1497.0, + 1404.0, + 1497.0, + 1404.0, + 1535.0, + 294.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1527.0, + 1405.0, + 1527.0, + 1405.0, + 1568.0, + 292.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1562.0, + 1405.0, + 1562.0, + 1405.0, + 1594.0, + 295.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1586.0, + 1406.0, + 1586.0, + 1406.0, + 1630.0, + 291.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1616.0, + 1405.0, + 1616.0, + 1405.0, + 1660.0, + 292.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1649.0, + 1328.0, + 1649.0, + 1328.0, + 1689.0, + 294.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 741.0, + 1402.0, + 741.0, + 1402.0, + 777.0, + 294.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 772.0, + 1404.0, + 772.0, + 1404.0, + 809.0, + 293.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 803.0, + 1034.0, + 803.0, + 1034.0, + 840.0, + 296.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 803.0, + 1405.0, + 803.0, + 1405.0, + 840.0, + 1061.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 835.0, + 1404.0, + 835.0, + 1404.0, + 867.0, + 296.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 866.0, + 1405.0, + 866.0, + 1405.0, + 899.0, + 294.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 896.0, + 1404.0, + 896.0, + 1404.0, + 929.0, + 296.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 925.0, + 1345.0, + 925.0, + 1345.0, + 961.0, + 294.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 925.0, + 1404.0, + 925.0, + 1404.0, + 961.0, + 1401.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 953.0, + 1406.0, + 953.0, + 1406.0, + 991.0, + 292.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 983.0, + 426.0, + 983.0, + 426.0, + 1021.0, + 293.0, + 1021.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1164, + 1404, + 1164, + 1404, + 1499, + 297, + 1499 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 520, + 1405, + 520, + 1405, + 797, + 298, + 797 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1677, + 1403, + 1677, + 1403, + 1894, + 298, + 1894 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 229, + 1404, + 229, + 1404, + 506, + 297, + 506 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 884, + 1405, + 884, + 1405, + 1150, + 297, + 1150 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 302, + 1572, + 1401, + 1572, + 1401, + 1663, + 302, + 1663 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 298, + 1907, + 1398, + 1907, + 1398, + 1970, + 298, + 1970 + ], + "score": 0.949 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.896 + }, + { + "category_id": 0, + "poly": [ + 299, + 839, + 481, + 839, + 481, + 874, + 299, + 874 + ], + "score": 0.893 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1999, + 1400, + 1999, + 1400, + 2028, + 1366, + 2028 + ], + "score": 0.866 + }, + { + "category_id": 8, + "poly": [ + 613, + 1982, + 1085, + 1982, + 1085, + 2043, + 613, + 2043 + ], + "score": 0.826 + }, + { + "category_id": 0, + "poly": [ + 301, + 1538, + 824, + 1538, + 824, + 1567, + 301, + 1567 + ], + "score": 0.754 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.637 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.516 + }, + { + "category_id": 8, + "poly": [ + 613, + 1982, + 1085, + 1982, + 1085, + 2043, + 613, + 2043 + ], + "score": 0.242 + }, + { + "category_id": 1, + "poly": [ + 301, + 1538, + 824, + 1538, + 824, + 1567, + 301, + 1567 + ], + "score": 0.131 + }, + { + "category_id": 14, + "poly": [ + 613, + 1979, + 1085, + 1979, + 1085, + 2044, + 613, + 2044 + ], + "score": 0.94, + "latex": "d ( p _ { 1 } , p _ { 2 } ) = { \\frac { 1 } { 2 } } ( D _ { k l } ( p _ { 1 } | p _ { 2 } ) + D _ { k l } ( p _ { 2 } | p _ { 1 } ) )" + }, + { + "category_id": 13, + "poly": [ + 1169, + 1226, + 1249, + 1226, + 1249, + 1258, + 1169, + 1258 + ], + "score": 0.93, + "latex": "p ( \\mathbf { y } \\vert \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1037, + 467, + 1037, + 467, + 1072, + 298, + 1072 + ], + "score": 0.93, + "latex": "\\{ l _ { 1 } , l _ { 2 } , l _ { 3 } . . . l _ { K } \\}" + }, + { + "category_id": 13, + "poly": [ + 607, + 1678, + 681, + 1678, + 681, + 1711, + 607, + 1711 + ], + "score": 0.93, + "latex": "G ( \\bf x _ { t } )" + }, + { + "category_id": 13, + "poly": [ + 703, + 915, + 807, + 915, + 807, + 949, + 703, + 949 + ], + "score": 0.93, + "latex": "\\{ X _ { s } , Y _ { s } \\}" + }, + { + "category_id": 13, + "poly": [ + 1078, + 1068, + 1393, + 1068, + 1393, + 1121, + 1078, + 1121 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { p ( y = j | \\mathbf { x } ) = \\frac { e x p ( l _ { j } ) } { \\sum _ { k = 1 } ^ { K } e x p ( l _ { k } ) } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 608, + 1909, + 711, + 1909, + 711, + 1941, + 608, + 1941 + ], + "score": 0.92, + "latex": "d ( p _ { 1 } , p _ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 523, + 1116, + 602, + 1116, + 602, + 1151, + 523, + 1151 + ], + "score": 0.92, + "latex": "p ( \\mathbf { y } \\vert \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 758, + 1832, + 792, + 1832, + 792, + 1861, + 758, + 1861 + ], + "score": 0.9, + "latex": "C _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 564, + 1740, + 599, + 1740, + 599, + 1770, + 564, + 1770 + ], + "score": 0.89, + "latex": "C _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 844, + 1832, + 879, + 1832, + 879, + 1861, + 844, + 1861 + ], + "score": 0.89, + "latex": "C _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 568, + 947, + 603, + 947, + 603, + 977, + 568, + 977 + ], + "score": 0.88, + "latex": "X _ { t }" + }, + { + "category_id": 13, + "poly": [ + 651, + 1740, + 685, + 1740, + 685, + 1770, + 651, + 1770 + ], + "score": 0.88, + "latex": "C _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1296, + 951, + 1328, + 951, + 1328, + 977, + 1296, + 977 + ], + "score": 0.86, + "latex": "\\mathbf { x _ { s } }" + }, + { + "category_id": 13, + "poly": [ + 747, + 1708, + 873, + 1708, + 873, + 1742, + 747, + 1742 + ], + "score": 0.86, + "latex": "C _ { 1 } ( G ( \\mathbf { x _ { t } } ) )" + }, + { + "category_id": 13, + "poly": [ + 1112, + 1774, + 1142, + 1774, + 1142, + 1801, + 1112, + 1801 + ], + "score": 0.86, + "latex": "p _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 958, + 891, + 990, + 891, + 990, + 916, + 958, + 916 + ], + "score": 0.86, + "latex": "\\mathbf { x _ { s } }" + }, + { + "category_id": 13, + "poly": [ + 1190, + 1773, + 1221, + 1773, + 1221, + 1801, + 1190, + 1801 + ], + "score": 0.85, + "latex": "p _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1294, + 891, + 1323, + 891, + 1323, + 917, + 1294, + 917 + ], + "score": 0.84, + "latex": "y _ { s }" + }, + { + "category_id": 13, + "poly": [ + 1362, + 951, + 1392, + 951, + 1392, + 977, + 1362, + 977 + ], + "score": 0.84, + "latex": "\\mathbf { x _ { t } }" + }, + { + "category_id": 13, + "poly": [ + 889, + 1708, + 1014, + 1708, + 1014, + 1742, + 889, + 1742 + ], + "score": 0.84, + "latex": "\\bar { C } _ { 2 } \\bar { ( \\cal G ( x _ { t } ) ) }" + }, + { + "category_id": 13, + "poly": [ + 801, + 1008, + 830, + 1008, + 830, + 1035, + 801, + 1035 + ], + "score": 0.83, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 1058, + 1008, + 1086, + 1008, + 1086, + 1035, + 1058, + 1035 + ], + "score": 0.83, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 757, + 1118, + 785, + 1118, + 785, + 1145, + 757, + 1145 + ], + "score": 0.82, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 1231, + 920, + 1262, + 920, + 1262, + 946, + 1231, + 946 + ], + "score": 0.82, + "latex": "\\mathbf { x _ { t } }" + }, + { + "category_id": 13, + "poly": [ + 840, + 736, + 866, + 736, + 866, + 762, + 840, + 762 + ], + "score": 0.82, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 721, + 1679, + 746, + 1679, + 746, + 1706, + 721, + 1706 + ], + "score": 0.82, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 461, + 978, + 486, + 978, + 486, + 1004, + 461, + 1004 + ], + "score": 0.81, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 897, + 1077, + 914, + 1077, + 914, + 1108, + 897, + 1108 + ], + "score": 0.81, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 1312, + 704, + 1337, + 704, + 1337, + 732, + 1312, + 732 + ], + "score": 0.81, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 1046, + 947, + 1071, + 947, + 1071, + 974, + 1046, + 974 + ], + "score": 0.81, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 512, + 1008, + 537, + 1008, + 537, + 1035, + 512, + 1035 + ], + "score": 0.81, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1100, + 1348, + 1126, + 1348, + 1126, + 1374, + 1100, + 1374 + ], + "score": 0.81, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 766, + 705, + 791, + 705, + 791, + 732, + 766, + 732 + ], + "score": 0.8, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 800, + 1196, + 825, + 1196, + 825, + 1222, + 800, + 1222 + ], + "score": 0.8, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 976, + 1287, + 1002, + 1287, + 1002, + 1313, + 976, + 1313 + ], + "score": 0.8, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1172, + 1258, + 1197, + 1258, + 1197, + 1283, + 1172, + 1283 + ], + "score": 0.8, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 1376, + 979, + 1401, + 979, + 1401, + 1004, + 1376, + 1004 + ], + "score": 0.8, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 751, + 1742, + 775, + 1742, + 775, + 1767, + 751, + 1767 + ], + "score": 0.8, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 373, + 1165, + 399, + 1165, + 399, + 1192, + 373, + 1192 + ], + "score": 0.8, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 1320, + 1378, + 1345, + 1378, + 1345, + 1406, + 1320, + 1406 + ], + "score": 0.79, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 575, + 1317, + 600, + 1317, + 600, + 1345, + 575, + 1345 + ], + "score": 0.78, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1016, + 736, + 1041, + 736, + 1041, + 762, + 1016, + 762 + ], + "score": 0.78, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1237, + 1832, + 1262, + 1832, + 1262, + 1858, + 1237, + 1858 + ], + "score": 0.77, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 722, + 1770, + 825, + 1770, + 825, + 1803, + 722, + 1803 + ], + "score": 0.75, + "latex": "p _ { 1 } ( \\mathbf { y } | \\mathbf { x _ { t } } )" + }, + { + "category_id": 13, + "poly": [ + 836, + 1769, + 939, + 1769, + 939, + 1803, + 836, + 1803 + ], + "score": 0.66, + "latex": "p _ { 2 } ( \\mathbf { y } \\vert \\mathbf { x _ { t } } )" + }, + { + "category_id": 13, + "poly": [ + 620, + 1080, + 642, + 1080, + 642, + 1103, + 620, + 1103 + ], + "score": 0.64, + "latex": "\\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 1260, + 1125, + 1279, + 1125, + 1279, + 1144, + 1260, + 1144 + ], + "score": 0.49, + "latex": "\\mathbf { x }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 833.0, + 487.0, + 833.0, + 487.0, + 883.0, + 290.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1536.0, + 829.0, + 1536.0, + 829.0, + 1572.0, + 295.0, + 1572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 860.0, + 2085.0, + 860.0, + 2116.0, + 839.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1162.0, + 372.0, + 1162.0, + 372.0, + 1199.0, + 294.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 1162.0, + 1404.0, + 1162.0, + 1404.0, + 1199.0, + 400.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1196.0, + 799.0, + 1196.0, + 799.0, + 1230.0, + 295.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 826.0, + 1196.0, + 1404.0, + 1196.0, + 1404.0, + 1230.0, + 826.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1221.0, + 1168.0, + 1221.0, + 1168.0, + 1262.0, + 292.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 1221.0, + 1405.0, + 1221.0, + 1405.0, + 1262.0, + 1250.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1255.0, + 1171.0, + 1255.0, + 1171.0, + 1289.0, + 294.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1198.0, + 1255.0, + 1406.0, + 1255.0, + 1406.0, + 1289.0, + 1198.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1283.0, + 975.0, + 1283.0, + 975.0, + 1322.0, + 292.0, + 1322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 1283.0, + 1405.0, + 1283.0, + 1405.0, + 1322.0, + 1003.0, + 1322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1317.0, + 574.0, + 1317.0, + 574.0, + 1351.0, + 295.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 1317.0, + 1405.0, + 1317.0, + 1405.0, + 1351.0, + 601.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1346.0, + 1099.0, + 1346.0, + 1099.0, + 1381.0, + 295.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 1346.0, + 1406.0, + 1346.0, + 1406.0, + 1381.0, + 1127.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1377.0, + 1319.0, + 1377.0, + 1319.0, + 1412.0, + 294.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1346.0, + 1377.0, + 1406.0, + 1377.0, + 1406.0, + 1412.0, + 1346.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1407.0, + 1404.0, + 1407.0, + 1404.0, + 1443.0, + 291.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1439.0, + 1405.0, + 1439.0, + 1405.0, + 1474.0, + 294.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1470.0, + 1377.0, + 1470.0, + 1377.0, + 1505.0, + 295.0, + 1505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 520.0, + 1405.0, + 520.0, + 1405.0, + 558.0, + 293.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 551.0, + 1405.0, + 551.0, + 1405.0, + 588.0, + 295.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 580.0, + 1405.0, + 580.0, + 1405.0, + 617.0, + 295.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 614.0, + 1406.0, + 614.0, + 1406.0, + 647.0, + 296.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 640.0, + 1407.0, + 640.0, + 1407.0, + 681.0, + 293.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 673.0, + 1405.0, + 673.0, + 1405.0, + 710.0, + 295.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 704.0, + 765.0, + 704.0, + 765.0, + 738.0, + 293.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 704.0, + 1311.0, + 704.0, + 1311.0, + 738.0, + 792.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1338.0, + 704.0, + 1405.0, + 704.0, + 1405.0, + 738.0, + 1338.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 736.0, + 839.0, + 736.0, + 839.0, + 768.0, + 296.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 736.0, + 1015.0, + 736.0, + 1015.0, + 768.0, + 867.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 736.0, + 1405.0, + 736.0, + 1405.0, + 768.0, + 1042.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 766.0, + 1346.0, + 766.0, + 1346.0, + 799.0, + 296.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1674.0, + 606.0, + 1674.0, + 606.0, + 1716.0, + 293.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 1674.0, + 720.0, + 1674.0, + 720.0, + 1716.0, + 682.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 1674.0, + 1407.0, + 1674.0, + 1407.0, + 1716.0, + 747.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1707.0, + 746.0, + 1707.0, + 746.0, + 1745.0, + 293.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 1707.0, + 888.0, + 1707.0, + 888.0, + 1745.0, + 874.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1015.0, + 1707.0, + 1405.0, + 1707.0, + 1405.0, + 1745.0, + 1015.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1736.0, + 563.0, + 1736.0, + 563.0, + 1777.0, + 292.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 1736.0, + 650.0, + 1736.0, + 650.0, + 1777.0, + 600.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 1736.0, + 750.0, + 1736.0, + 750.0, + 1777.0, + 686.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 1736.0, + 1404.0, + 1736.0, + 1404.0, + 1777.0, + 776.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1769.0, + 721.0, + 1769.0, + 721.0, + 1808.0, + 292.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 826.0, + 1769.0, + 835.0, + 1769.0, + 835.0, + 1808.0, + 826.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 1769.0, + 1111.0, + 1769.0, + 1111.0, + 1808.0, + 940.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 1769.0, + 1189.0, + 1769.0, + 1189.0, + 1808.0, + 1143.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 1769.0, + 1405.0, + 1769.0, + 1405.0, + 1808.0, + 1222.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1798.0, + 1405.0, + 1798.0, + 1405.0, + 1836.0, + 293.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1828.0, + 757.0, + 1828.0, + 757.0, + 1868.0, + 292.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 1828.0, + 843.0, + 1828.0, + 843.0, + 1868.0, + 793.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 1828.0, + 1236.0, + 1828.0, + 1236.0, + 1868.0, + 880.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1263.0, + 1828.0, + 1404.0, + 1828.0, + 1404.0, + 1868.0, + 1263.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1861.0, + 648.0, + 1861.0, + 648.0, + 1899.0, + 293.0, + 1899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 230.0, + 1404.0, + 230.0, + 1404.0, + 263.0, + 295.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 261.0, + 1404.0, + 261.0, + 1404.0, + 294.0, + 295.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 289.0, + 1406.0, + 289.0, + 1406.0, + 328.0, + 292.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 320.0, + 1406.0, + 320.0, + 1406.0, + 357.0, + 295.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 353.0, + 1406.0, + 353.0, + 1406.0, + 387.0, + 293.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 379.0, + 1406.0, + 379.0, + 1406.0, + 419.0, + 292.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 413.0, + 1404.0, + 413.0, + 1404.0, + 446.0, + 296.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 441.0, + 1407.0, + 441.0, + 1407.0, + 481.0, + 294.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 473.0, + 651.0, + 473.0, + 651.0, + 509.0, + 295.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 882.0, + 957.0, + 882.0, + 957.0, + 920.0, + 295.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 991.0, + 882.0, + 1293.0, + 882.0, + 1293.0, + 920.0, + 991.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1324.0, + 882.0, + 1405.0, + 882.0, + 1405.0, + 920.0, + 1324.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 912.0, + 702.0, + 912.0, + 702.0, + 952.0, + 294.0, + 952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 808.0, + 912.0, + 1230.0, + 912.0, + 1230.0, + 952.0, + 808.0, + 952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1263.0, + 912.0, + 1405.0, + 912.0, + 1405.0, + 952.0, + 1263.0, + 952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 937.0, + 567.0, + 937.0, + 567.0, + 987.0, + 291.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 937.0, + 1045.0, + 937.0, + 1045.0, + 987.0, + 604.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 937.0, + 1295.0, + 937.0, + 1295.0, + 987.0, + 1072.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1329.0, + 937.0, + 1361.0, + 937.0, + 1361.0, + 987.0, + 1329.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1393.0, + 937.0, + 1407.0, + 937.0, + 1407.0, + 987.0, + 1393.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 975.0, + 460.0, + 975.0, + 460.0, + 1011.0, + 295.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 975.0, + 1375.0, + 975.0, + 1375.0, + 1011.0, + 487.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 975.0, + 1405.0, + 975.0, + 1405.0, + 1011.0, + 1402.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1004.0, + 511.0, + 1004.0, + 511.0, + 1041.0, + 294.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 538.0, + 1004.0, + 800.0, + 1004.0, + 800.0, + 1041.0, + 538.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 1004.0, + 1057.0, + 1004.0, + 1057.0, + 1041.0, + 831.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1087.0, + 1004.0, + 1405.0, + 1004.0, + 1405.0, + 1041.0, + 1087.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 468.0, + 1037.0, + 1403.0, + 1037.0, + 1403.0, + 1073.0, + 468.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1065.0, + 619.0, + 1065.0, + 619.0, + 1130.0, + 292.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 1065.0, + 896.0, + 1065.0, + 896.0, + 1130.0, + 643.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 1065.0, + 1077.0, + 1065.0, + 1077.0, + 1130.0, + 915.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1065.0, + 1406.0, + 1065.0, + 1406.0, + 1130.0, + 1394.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1115.0, + 522.0, + 1115.0, + 522.0, + 1153.0, + 295.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 603.0, + 1115.0, + 756.0, + 1115.0, + 756.0, + 1153.0, + 603.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 1115.0, + 1259.0, + 1115.0, + 1259.0, + 1153.0, + 786.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1280.0, + 1115.0, + 1289.0, + 1115.0, + 1289.0, + 1153.0, + 1280.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1569.0, + 1405.0, + 1569.0, + 1405.0, + 1606.0, + 297.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1600.0, + 1405.0, + 1600.0, + 1405.0, + 1635.0, + 296.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1629.0, + 1250.0, + 1629.0, + 1250.0, + 1670.0, + 296.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1908.0, + 607.0, + 1908.0, + 607.0, + 1944.0, + 295.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 1908.0, + 1403.0, + 1908.0, + 1403.0, + 1944.0, + 712.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1936.0, + 1270.0, + 1936.0, + 1270.0, + 1974.0, + 292.0, + 1974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1536.0, + 829.0, + 1536.0, + 829.0, + 1572.0, + 295.0, + 1572.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1429, + 1406, + 1429, + 1406, + 1585, + 296, + 1585 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 970, + 1405, + 970, + 1405, + 1095, + 297, + 1095 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1791, + 1403, + 1791, + 1403, + 1884, + 298, + 1884 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 296, + 1155, + 1407, + 1155, + 1407, + 1250, + 296, + 1250 + ], + "score": 0.974 + }, + { + "category_id": 8, + "poly": [ + 491, + 1271, + 1206, + 1271, + 1206, + 1363, + 491, + 1363 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 296, + 1971, + 1404, + 1971, + 1404, + 2036, + 296, + 2036 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 766, + 1903, + 932, + 1903, + 932, + 1952, + 766, + 1952 + ], + "score": 0.94 + }, + { + "category_id": 1, + "poly": [ + 300, + 1382, + 1136, + 1382, + 1136, + 1416, + 300, + 1416 + ], + "score": 0.936 + }, + { + "category_id": 1, + "poly": [ + 298, + 1743, + 767, + 1743, + 767, + 1777, + 298, + 1777 + ], + "score": 0.928 + }, + { + "category_id": 8, + "poly": [ + 571, + 1692, + 1128, + 1692, + 1128, + 1734, + 571, + 1734 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 297, + 860, + 990, + 860, + 990, + 894, + 297, + 894 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 298, + 1108, + 1157, + 1108, + 1157, + 1141, + 298, + 1141 + ], + "score": 0.924 + }, + { + "category_id": 8, + "poly": [ + 691, + 1602, + 1006, + 1602, + 1006, + 1652, + 691, + 1652 + ], + "score": 0.922 + }, + { + "category_id": 0, + "poly": [ + 299, + 935, + 643, + 935, + 643, + 965, + 299, + 965 + ], + "score": 0.911 + }, + { + "category_id": 4, + "poly": [ + 296, + 676, + 1405, + 676, + 1405, + 801, + 296, + 801 + ], + "score": 0.906 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 814, + 76, + 814, + 105, + 299, + 105 + ], + "score": 0.892 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1908, + 1400, + 1908, + 1400, + 1938, + 1366, + 1938 + ], + "score": 0.892 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1301, + 1400, + 1301, + 1400, + 1332, + 1365, + 1332 + ], + "score": 0.886 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1608, + 1400, + 1608, + 1400, + 1638, + 1366, + 1638 + ], + "score": 0.88 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1698, + 1400, + 1698, + 1400, + 1727, + 1366, + 1727 + ], + "score": 0.876 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2111, + 841, + 2111 + ], + "score": 0.802 + }, + { + "category_id": 3, + "poly": [ + 324, + 228, + 1379, + 228, + 1379, + 643, + 324, + 643 + ], + "score": 0.765 + }, + { + "category_id": 14, + "poly": [ + 490, + 1267, + 1208, + 1267, + 1208, + 1364, + 490, + 1364 + ], + "score": 0.94, + "latex": "\\underset { G , C } { \\operatorname* { m i n } } L ( X _ { s } , Y _ { s } ) = - \\mathbb { E } _ { ( \\mathbf { x } _ { s } , y _ { s } ) \\sim ( X _ { s } , Y _ { s } ) } \\sum _ { k = 1 } ^ { K } \\mathbb { 1 } _ { [ k = y _ { s } ] } \\log C ( G ( \\mathbf { x } _ { \\mathbf { s } } ) ) _ { k }" + }, + { + "category_id": 14, + "poly": [ + 764, + 1903, + 934, + 1903, + 934, + 1953, + 764, + 1953 + ], + "score": 0.93, + "latex": "\\operatorname* { m i n } _ { G } L _ { a d v } ( X _ { t } )" + }, + { + "category_id": 13, + "poly": [ + 880, + 861, + 982, + 861, + 982, + 895, + 880, + 895 + ], + "score": 0.92, + "latex": "D _ { k l } ( p | q )" + }, + { + "category_id": 14, + "poly": [ + 688, + 1603, + 1010, + 1603, + 1010, + 1654, + 688, + 1654 + ], + "score": 0.92, + "latex": "\\operatorname* { m i n } _ { C } L ( X _ { s } , Y _ { s } ) - L _ { a d v } ( X _ { t } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1382, + 428, + 1382, + 428, + 1418, + 298, + 1418 + ], + "score": 0.92, + "latex": "C ( G ( \\mathbf { x _ { s } } ) ) _ { k }" + }, + { + "category_id": 13, + "poly": [ + 828, + 738, + 863, + 738, + 863, + 769, + 828, + 769 + ], + "score": 0.89, + "latex": "C _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 739, + 739, + 774, + 739, + 774, + 769, + 739, + 769 + ], + "score": 0.89, + "latex": "C _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 384, + 1746, + 419, + 1746, + 419, + 1775, + 384, + 1775 + ], + "score": 0.88, + "latex": "C _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1745, + 332, + 1745, + 332, + 1775, + 298, + 1775 + ], + "score": 0.87, + "latex": "C _ { 1 }" + }, + { + "category_id": 14, + "poly": [ + 571, + 1693, + 1128, + 1693, + 1128, + 1732, + 571, + 1732 + ], + "score": 0.87, + "latex": "L _ { a d v } ( X _ { t } ) = \\mathbb { E } _ { \\mathbf { x _ { t } } \\sim X _ { t } } [ d ( C _ { 1 } ( G ( \\mathbf { x _ { t } } ) ) , C _ { 2 } ( G ( \\mathbf { x _ { t } } ) ) ) ]" + }, + { + "category_id": 13, + "poly": [ + 1007, + 1221, + 1038, + 1221, + 1038, + 1248, + 1007, + 1248 + ], + "score": 0.86, + "latex": "\\mathbf { x _ { s } }" + }, + { + "category_id": 13, + "poly": [ + 860, + 1388, + 891, + 1388, + 891, + 1414, + 860, + 1414 + ], + "score": 0.86, + "latex": "\\mathbf { x _ { s } }" + }, + { + "category_id": 13, + "poly": [ + 1146, + 1465, + 1176, + 1465, + 1176, + 1492, + 1146, + 1492 + ], + "score": 0.85, + "latex": "p _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 514, + 1432, + 539, + 1432, + 539, + 1458, + 514, + 1458 + ], + "score": 0.85, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 833, + 1222, + 860, + 1222, + 860, + 1250, + 833, + 1250 + ], + "score": 0.85, + "latex": "y _ { s }" + }, + { + "category_id": 13, + "poly": [ + 710, + 1975, + 734, + 1975, + 734, + 2000, + 710, + 2000 + ], + "score": 0.84, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1232, + 1465, + 1261, + 1465, + 1261, + 1492, + 1232, + 1492 + ], + "score": 0.84, + "latex": "p _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 577, + 1003, + 603, + 1003, + 603, + 1029, + 577, + 1029 + ], + "score": 0.84, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 631, + 1974, + 655, + 1974, + 655, + 2000, + 631, + 2000 + ], + "score": 0.83, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 1227, + 1494, + 1253, + 1494, + 1253, + 1520, + 1227, + 1520 + ], + "score": 0.82, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 416, + 1824, + 441, + 1824, + 441, + 1850, + 416, + 1850 + ], + "score": 0.82, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 298, + 1068, + 322, + 1068, + 322, + 1090, + 298, + 1090 + ], + "score": 0.82, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 503, + 1003, + 528, + 1003, + 528, + 1030, + 503, + 1030 + ], + "score": 0.82, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 815, + 1158, + 840, + 1158, + 840, + 1184, + 815, + 1184 + ], + "score": 0.82, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 484, + 971, + 509, + 971, + 509, + 999, + 484, + 999 + ], + "score": 0.82, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 624, + 1746, + 648, + 1746, + 648, + 1772, + 624, + 1772 + ], + "score": 0.82, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 890, + 1158, + 915, + 1158, + 915, + 1184, + 890, + 1184 + ], + "score": 0.82, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1112, + 1385, + 1130, + 1385, + 1130, + 1411, + 1112, + 1411 + ], + "score": 0.82, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 507, + 1462, + 532, + 1462, + 532, + 1488, + 507, + 1488 + ], + "score": 0.81, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 709, + 867, + 726, + 867, + 726, + 894, + 709, + 894 + ], + "score": 0.81, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 641, + 868, + 659, + 868, + 659, + 894, + 641, + 894 + ], + "score": 0.81, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 517, + 1158, + 542, + 1158, + 542, + 1185, + 517, + 1185 + ], + "score": 0.81, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 1357, + 1462, + 1382, + 1462, + 1382, + 1488, + 1357, + 1488 + ], + "score": 0.79, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 328, + 1033, + 352, + 1033, + 352, + 1059, + 328, + 1059 + ], + "score": 0.76, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 845, + 679, + 872, + 679, + 872, + 706, + 845, + 706 + ], + "score": 0.7, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 809, + 679, + 834, + 679, + 834, + 706, + 809, + 706 + ], + "score": 0.65, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 790, + 2014, + 809, + 2014, + 809, + 2030, + 790, + 2030 + ], + "score": 0.62, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 920, + 475, + 935, + 475, + 935, + 493, + 920, + 493 + ], + "score": 0.54, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 375, + 283, + 393, + 283, + 393, + 304, + 375, + 304 + ], + "score": 0.5, + "latex": "G ," + }, + { + "category_id": 15, + "poly": [ + 295.0, + 934.0, + 644.0, + 934.0, + 644.0, + 969.0, + 295.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 675.0, + 808.0, + 675.0, + 808.0, + 712.0, + 294.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 835.0, + 675.0, + 844.0, + 675.0, + 844.0, + 712.0, + 835.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 675.0, + 1408.0, + 675.0, + 1408.0, + 712.0, + 873.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 708.0, + 1405.0, + 708.0, + 1405.0, + 741.0, + 295.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 736.0, + 738.0, + 736.0, + 738.0, + 776.0, + 294.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 736.0, + 827.0, + 736.0, + 827.0, + 776.0, + 775.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 736.0, + 1407.0, + 736.0, + 1407.0, + 776.0, + 864.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 770.0, + 1403.0, + 770.0, + 1403.0, + 803.0, + 295.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 71.0, + 817.0, + 71.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 862.0, + 2086.0, + 862.0, + 2118.0, + 839.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 234.0, + 621.0, + 234.0, + 621.0, + 265.0, + 327.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 853.0, + 230.0, + 1061.0, + 230.0, + 1061.0, + 266.0, + 853.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 278.0, + 374.0, + 278.0, + 374.0, + 306.0, + 329.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 278.0, + 738.0, + 278.0, + 738.0, + 306.0, + 394.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 281.0, + 1312.0, + 281.0, + 1312.0, + 308.0, + 856.0, + 308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 440.0, + 330.0, + 469.0, + 330.0, + 469.0, + 362.0, + 440.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 333.0, + 553.0, + 333.0, + 553.0, + 361.0, + 519.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 336.0, + 631.0, + 336.0, + 631.0, + 362.0, + 605.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 332.0, + 747.0, + 332.0, + 747.0, + 364.0, + 659.0, + 364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 330.0, + 1133.0, + 330.0, + 1133.0, + 361.0, + 1095.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 364.0, + 889.0, + 364.0, + 889.0, + 380.0, + 872.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 356.0, + 971.0, + 356.0, + 971.0, + 382.0, + 947.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 359.0, + 1056.0, + 359.0, + 1056.0, + 381.0, + 1022.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 354.0, + 1378.0, + 354.0, + 1378.0, + 386.0, + 1188.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 377.0, + 403.0, + 377.0, + 403.0, + 406.0, + 353.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 381.0, + 494.0, + 381.0, + 494.0, + 405.0, + 414.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 503.0, + 382.0, + 565.0, + 382.0, + 565.0, + 403.0, + 503.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 381.0, + 663.0, + 381.0, + 663.0, + 405.0, + 589.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 381.0, + 753.0, + 381.0, + 753.0, + 405.0, + 675.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 376.0, + 1140.0, + 376.0, + 1140.0, + 421.0, + 1101.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 381.0, + 1184.0, + 381.0, + 1184.0, + 392.0, + 1172.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 420.0, + 500.0, + 420.0, + 500.0, + 457.0, + 331.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 470.0, + 557.0, + 470.0, + 557.0, + 486.0, + 540.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 668.0, + 469.0, + 777.0, + 469.0, + 777.0, + 503.0, + 668.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 469.0, + 919.0, + 469.0, + 919.0, + 500.0, + 854.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 936.0, + 469.0, + 1309.0, + 469.0, + 1309.0, + 500.0, + 936.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 480.0, + 562.0, + 480.0, + 562.0, + 499.0, + 534.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 525.0, + 1138.0, + 525.0, + 1138.0, + 561.0, + 1101.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1091.0, + 541.0, + 1104.0, + 541.0, + 1104.0, + 551.0, + 1091.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 554.0, + 895.0, + 554.0, + 895.0, + 577.0, + 866.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 944.0, + 549.0, + 973.0, + 549.0, + 973.0, + 580.0, + 944.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 550.0, + 1059.0, + 550.0, + 1059.0, + 581.0, + 1022.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 549.0, + 1184.0, + 549.0, + 1184.0, + 561.0, + 1172.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 552.0, + 1372.0, + 552.0, + 1372.0, + 584.0, + 1191.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 569.0, + 631.0, + 569.0, + 631.0, + 627.0, + 584.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 574.0, + 778.0, + 574.0, + 778.0, + 611.0, + 670.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1102.0, + 575.0, + 1138.0, + 575.0, + 1138.0, + 614.0, + 1102.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 578.0, + 1184.0, + 578.0, + 1184.0, + 589.0, + 1172.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 589.0, + 565.0, + 589.0, + 565.0, + 603.0, + 545.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1430.0, + 513.0, + 1430.0, + 513.0, + 1463.0, + 296.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 1430.0, + 1403.0, + 1430.0, + 1403.0, + 1463.0, + 540.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1458.0, + 506.0, + 1458.0, + 506.0, + 1498.0, + 291.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 533.0, + 1458.0, + 1145.0, + 1458.0, + 1145.0, + 1498.0, + 533.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 1458.0, + 1231.0, + 1458.0, + 1231.0, + 1498.0, + 1177.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1262.0, + 1458.0, + 1356.0, + 1458.0, + 1356.0, + 1498.0, + 1262.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1383.0, + 1458.0, + 1407.0, + 1458.0, + 1407.0, + 1498.0, + 1383.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1491.0, + 1226.0, + 1491.0, + 1226.0, + 1526.0, + 293.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1254.0, + 1491.0, + 1406.0, + 1491.0, + 1406.0, + 1526.0, + 1254.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1522.0, + 1404.0, + 1522.0, + 1404.0, + 1555.0, + 295.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1552.0, + 1189.0, + 1552.0, + 1189.0, + 1590.0, + 295.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 968.0, + 483.0, + 968.0, + 483.0, + 1006.0, + 294.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 968.0, + 1405.0, + 968.0, + 1405.0, + 1006.0, + 510.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1001.0, + 502.0, + 1001.0, + 502.0, + 1036.0, + 292.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 1001.0, + 576.0, + 1001.0, + 576.0, + 1036.0, + 529.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 1001.0, + 1405.0, + 1001.0, + 1405.0, + 1036.0, + 604.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1029.0, + 327.0, + 1029.0, + 327.0, + 1068.0, + 291.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1029.0, + 1406.0, + 1029.0, + 1406.0, + 1068.0, + 353.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1061.0, + 297.0, + 1061.0, + 297.0, + 1099.0, + 292.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1061.0, + 1313.0, + 1061.0, + 1313.0, + 1099.0, + 323.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1790.0, + 1407.0, + 1790.0, + 1407.0, + 1828.0, + 294.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1823.0, + 415.0, + 1823.0, + 415.0, + 1857.0, + 294.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 442.0, + 1823.0, + 1405.0, + 1823.0, + 1405.0, + 1857.0, + 442.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1853.0, + 1280.0, + 1853.0, + 1280.0, + 1885.0, + 294.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1153.0, + 516.0, + 1153.0, + 516.0, + 1193.0, + 293.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 1153.0, + 814.0, + 1153.0, + 814.0, + 1193.0, + 543.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 1153.0, + 889.0, + 1153.0, + 889.0, + 1193.0, + 841.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 1153.0, + 1407.0, + 1153.0, + 1407.0, + 1193.0, + 916.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1184.0, + 1405.0, + 1184.0, + 1405.0, + 1222.0, + 294.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1216.0, + 832.0, + 1216.0, + 832.0, + 1252.0, + 293.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 1216.0, + 1006.0, + 1216.0, + 1006.0, + 1252.0, + 861.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 1216.0, + 1350.0, + 1216.0, + 1350.0, + 1252.0, + 1039.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1971.0, + 630.0, + 1971.0, + 630.0, + 2007.0, + 296.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 656.0, + 1971.0, + 709.0, + 1971.0, + 709.0, + 2007.0, + 656.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 735.0, + 1971.0, + 1402.0, + 1971.0, + 1402.0, + 2007.0, + 735.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 789.0, + 2002.0, + 789.0, + 2036.0, + 294.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 810.0, + 2002.0, + 1110.0, + 2002.0, + 1110.0, + 2036.0, + 810.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 1379.0, + 859.0, + 1379.0, + 859.0, + 1421.0, + 429.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 1379.0, + 1111.0, + 1379.0, + 1111.0, + 1421.0, + 892.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 1379.0, + 1142.0, + 1379.0, + 1142.0, + 1421.0, + 1131.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 1737.0, + 383.0, + 1737.0, + 383.0, + 1784.0, + 333.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 1737.0, + 623.0, + 1737.0, + 623.0, + 1784.0, + 420.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 1737.0, + 769.0, + 1737.0, + 769.0, + 1784.0, + 649.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 857.0, + 640.0, + 857.0, + 640.0, + 899.0, + 296.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 857.0, + 708.0, + 857.0, + 708.0, + 899.0, + 660.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 857.0, + 879.0, + 857.0, + 879.0, + 899.0, + 727.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 983.0, + 857.0, + 992.0, + 857.0, + 992.0, + 899.0, + 983.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1104.0, + 1161.0, + 1104.0, + 1161.0, + 1148.0, + 293.0, + 1148.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1499, + 1404, + 1499, + 1404, + 1804, + 297, + 1804 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1047, + 1404, + 1047, + 1404, + 1323, + 298, + 1323 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 818, + 1405, + 818, + 1405, + 1032, + 298, + 1032 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1819, + 1403, + 1819, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.978 + }, + { + "category_id": 3, + "poly": [ + 301, + 225, + 1395, + 225, + 1395, + 495, + 301, + 495 + ], + "score": 0.973 + }, + { + "category_id": 4, + "poly": [ + 296, + 521, + 1406, + 521, + 1406, + 734, + 296, + 734 + ], + "score": 0.92 + }, + { + "category_id": 0, + "poly": [ + 300, + 1460, + 691, + 1460, + 691, + 1490, + 300, + 1490 + ], + "score": 0.9 + }, + { + "category_id": 0, + "poly": [ + 299, + 779, + 709, + 779, + 709, + 810, + 299, + 810 + ], + "score": 0.892 + }, + { + "category_id": 0, + "poly": [ + 300, + 1381, + 557, + 1381, + 557, + 1416, + 300, + 1416 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.882 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.719 + }, + { + "category_id": 13, + "poly": [ + 934, + 1293, + 965, + 1293, + 965, + 1319, + 934, + 1319 + ], + "score": 0.88, + "latex": "C ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1342, + 1261, + 1374, + 1261, + 1374, + 1289, + 1342, + 1289 + ], + "score": 0.88, + "latex": "C ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1236, + 2003, + 1289, + 2003, + 1289, + 2032, + 1236, + 2032 + ], + "score": 0.87, + "latex": "84 \\%" + }, + { + "category_id": 13, + "poly": [ + 761, + 1231, + 793, + 1231, + 793, + 1259, + 761, + 1259 + ], + "score": 0.86, + "latex": "C ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 594, + 2003, + 649, + 2003, + 649, + 2032, + 594, + 2032 + ], + "score": 0.85, + "latex": "96 \\%" + }, + { + "category_id": 13, + "poly": [ + 860, + 1293, + 884, + 1293, + 884, + 1319, + 860, + 1319 + ], + "score": 0.85, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 1304, + 1231, + 1337, + 1231, + 1337, + 1259, + 1304, + 1259 + ], + "score": 0.85, + "latex": "C ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 543, + 1263, + 568, + 1263, + 568, + 1289, + 543, + 1289 + ], + "score": 0.81, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1186, + 941, + 1212, + 941, + 1212, + 968, + 1186, + 968 + ], + "score": 0.81, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 504, + 1293, + 529, + 1293, + 529, + 1319, + 504, + 1319 + ], + "score": 0.8, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 367, + 1002, + 392, + 1002, + 392, + 1028, + 367, + 1028 + ], + "score": 0.79, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 694, + 910, + 720, + 910, + 720, + 938, + 694, + 938 + ], + "score": 0.78, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 585, + 941, + 611, + 941, + 611, + 969, + 585, + 969 + ], + "score": 0.78, + "latex": "G" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 238.0, + 389.0, + 238.0, + 389.0, + 250.0, + 312.0, + 250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 934.0, + 284.0, + 970.0, + 284.0, + 970.0, + 297.0, + 934.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1299.0, + 276.0, + 1342.0, + 276.0, + 1342.0, + 300.0, + 1299.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 337.0, + 465.0, + 337.0, + 465.0, + 354.0, + 390.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 384.0, + 452.0, + 384.0, + 452.0, + 470.0, + 334.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1280.0, + 411.0, + 1324.0, + 411.0, + 1324.0, + 446.0, + 1280.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1068.0, + 405.5, + 1156.0, + 405.5, + 1156.0, + 453.5, + 1068.0, + 453.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 520.0, + 1406.0, + 520.0, + 1406.0, + 555.0, + 294.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 552.0, + 1406.0, + 552.0, + 1406.0, + 587.0, + 293.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 581.0, + 1406.0, + 581.0, + 1406.0, + 617.0, + 294.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 616.0, + 1404.0, + 616.0, + 1404.0, + 647.0, + 295.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 643.0, + 1403.0, + 643.0, + 1403.0, + 676.0, + 293.0, + 676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 673.0, + 1406.0, + 673.0, + 1406.0, + 709.0, + 293.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 708.0, + 1058.0, + 708.0, + 1058.0, + 735.0, + 295.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1457.0, + 696.0, + 1457.0, + 696.0, + 1494.0, + 293.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 779.0, + 713.0, + 779.0, + 713.0, + 812.0, + 296.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1378.0, + 561.0, + 1378.0, + 561.0, + 1422.0, + 293.0, + 1422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 861.0, + 2085.0, + 861.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1498.0, + 1405.0, + 1498.0, + 1405.0, + 1534.0, + 295.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1530.0, + 1404.0, + 1530.0, + 1404.0, + 1562.0, + 295.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1560.0, + 1406.0, + 1560.0, + 1406.0, + 1596.0, + 295.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1590.0, + 1407.0, + 1590.0, + 1407.0, + 1626.0, + 292.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1621.0, + 1406.0, + 1621.0, + 1406.0, + 1657.0, + 294.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1651.0, + 1406.0, + 1651.0, + 1406.0, + 1687.0, + 295.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1679.0, + 1405.0, + 1679.0, + 1405.0, + 1719.0, + 291.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1711.0, + 1405.0, + 1711.0, + 1405.0, + 1748.0, + 294.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1740.0, + 1404.0, + 1740.0, + 1404.0, + 1778.0, + 294.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1774.0, + 759.0, + 1774.0, + 759.0, + 1808.0, + 292.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1045.0, + 1406.0, + 1045.0, + 1406.0, + 1083.0, + 295.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1078.0, + 1405.0, + 1078.0, + 1405.0, + 1115.0, + 294.0, + 1115.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1107.0, + 1406.0, + 1107.0, + 1406.0, + 1145.0, + 293.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1138.0, + 1405.0, + 1138.0, + 1405.0, + 1175.0, + 294.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1169.0, + 1406.0, + 1169.0, + 1406.0, + 1206.0, + 292.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1202.0, + 1404.0, + 1202.0, + 1404.0, + 1235.0, + 296.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1229.0, + 760.0, + 1229.0, + 760.0, + 1265.0, + 292.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 1229.0, + 1303.0, + 1229.0, + 1303.0, + 1265.0, + 794.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1338.0, + 1229.0, + 1406.0, + 1229.0, + 1406.0, + 1265.0, + 1338.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1261.0, + 542.0, + 1261.0, + 542.0, + 1296.0, + 292.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 569.0, + 1261.0, + 1341.0, + 1261.0, + 1341.0, + 1296.0, + 569.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1375.0, + 1261.0, + 1406.0, + 1261.0, + 1406.0, + 1296.0, + 1375.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1291.0, + 503.0, + 1291.0, + 503.0, + 1327.0, + 293.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 1291.0, + 859.0, + 1291.0, + 859.0, + 1327.0, + 530.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 1291.0, + 933.0, + 1291.0, + 933.0, + 1327.0, + 885.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 1291.0, + 1404.0, + 1291.0, + 1404.0, + 1327.0, + 966.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 818.0, + 1405.0, + 818.0, + 1405.0, + 853.0, + 295.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 849.0, + 1405.0, + 849.0, + 1405.0, + 883.0, + 295.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 880.0, + 1405.0, + 880.0, + 1405.0, + 914.0, + 293.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 910.0, + 693.0, + 910.0, + 693.0, + 945.0, + 295.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 721.0, + 910.0, + 1405.0, + 910.0, + 1405.0, + 945.0, + 721.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 940.0, + 584.0, + 940.0, + 584.0, + 974.0, + 293.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 612.0, + 940.0, + 1185.0, + 940.0, + 1185.0, + 974.0, + 612.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1213.0, + 940.0, + 1405.0, + 940.0, + 1405.0, + 974.0, + 1213.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 970.0, + 1407.0, + 970.0, + 1407.0, + 1005.0, + 295.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1001.0, + 366.0, + 1001.0, + 366.0, + 1034.0, + 295.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1001.0, + 852.0, + 1001.0, + 852.0, + 1034.0, + 393.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1821.0, + 1405.0, + 1821.0, + 1405.0, + 1855.0, + 296.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1851.0, + 1405.0, + 1851.0, + 1405.0, + 1886.0, + 294.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1883.0, + 1404.0, + 1883.0, + 1404.0, + 1914.0, + 296.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1914.0, + 1404.0, + 1914.0, + 1404.0, + 1945.0, + 294.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1941.0, + 1407.0, + 1941.0, + 1407.0, + 1978.0, + 292.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1970.0, + 1404.0, + 1970.0, + 1404.0, + 2010.0, + 292.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 593.0, + 2003.0, + 593.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 2003.0, + 1235.0, + 2003.0, + 1235.0, + 2037.0, + 650.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1290.0, + 2003.0, + 1300.0, + 2003.0, + 1300.0, + 2037.0, + 1290.0, + 2037.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1192, + 1405, + 1192, + 1405, + 1804, + 298, + 1804 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 752, + 1404, + 752, + 1404, + 1178, + 297, + 1178 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1820, + 1403, + 1820, + 1403, + 2035, + 298, + 2035 + ], + "score": 0.976 + }, + { + "category_id": 3, + "poly": [ + 303, + 221, + 1399, + 221, + 1399, + 536, + 303, + 536 + ], + "score": 0.964 + }, + { + "category_id": 4, + "poly": [ + 295, + 547, + 1402, + 547, + 1402, + 608, + 295, + 608 + ], + "score": 0.943 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 814, + 76, + 814, + 104, + 299, + 104 + ], + "score": 0.885 + }, + { + "category_id": 0, + "poly": [ + 299, + 676, + 1083, + 676, + 1083, + 706, + 299, + 706 + ], + "score": 0.781 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2112, + 840, + 2112 + ], + "score": 0.774 + }, + { + "category_id": 1, + "poly": [ + 299, + 676, + 1083, + 676, + 1083, + 706, + 299, + 706 + ], + "score": 0.13 + }, + { + "category_id": 13, + "poly": [ + 665, + 1025, + 791, + 1025, + 791, + 1056, + 665, + 1056 + ], + "score": 0.93, + "latex": "2 . 0 \\times 1 0 ^ { - 4 }" + }, + { + "category_id": 13, + "poly": [ + 1221, + 936, + 1291, + 936, + 1291, + 963, + 1221, + 963 + ], + "score": 0.89, + "latex": "n = 4" + }, + { + "category_id": 13, + "poly": [ + 586, + 1439, + 619, + 1439, + 619, + 1467, + 586, + 1467 + ], + "score": 0.86, + "latex": "C ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 478, + 577, + 506, + 577, + 506, + 603, + 478, + 603 + ], + "score": 0.85, + "latex": "C ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 847, + 1318, + 872, + 1318, + 872, + 1345, + 847, + 1345 + ], + "score": 0.81, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1199, + 1288, + 1225, + 1288, + 1225, + 1315, + 1199, + 1315 + ], + "score": 0.79, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 713, + 578, + 736, + 578, + 736, + 603, + 713, + 603 + ], + "score": 0.73, + "latex": "C" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 228.0, + 360.0, + 228.0, + 360.0, + 250.0, + 319.0, + 250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 228.0, + 728.0, + 228.0, + 728.0, + 250.0, + 688.0, + 250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 228.0, + 1090.0, + 228.0, + 1090.0, + 250.0, + 1055.0, + 250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1346.0, + 231.0, + 1380.0, + 231.0, + 1380.0, + 253.0, + 1346.0, + 253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 257.0, + 359.0, + 257.0, + 359.0, + 276.0, + 317.0, + 276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 266.0, + 643.0, + 266.0, + 643.0, + 286.0, + 617.0, + 286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 255.0, + 729.0, + 255.0, + 729.0, + 279.0, + 688.0, + 279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 760.0, + 245.0, + 974.0, + 245.0, + 974.0, + 272.0, + 760.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 262.0, + 1010.0, + 262.0, + 1010.0, + 280.0, + 979.0, + 280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 264.0, + 1090.0, + 264.0, + 1090.0, + 288.0, + 1055.0, + 288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1348.0, + 262.0, + 1379.0, + 262.0, + 1379.0, + 281.0, + 1348.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 284.0, + 370.0, + 284.0, + 370.0, + 385.0, + 295.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 311.0, + 506.0, + 311.0, + 506.0, + 328.0, + 417.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 310.0, + 536.0, + 310.0, + 536.0, + 323.0, + 508.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 314.0, + 659.0, + 314.0, + 659.0, + 391.0, + 617.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 284.0, + 729.0, + 284.0, + 729.0, + 334.0, + 688.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 299.0, + 1031.0, + 299.0, + 1031.0, + 393.0, + 979.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1033.0, + 303.0, + 1098.0, + 303.0, + 1098.0, + 384.0, + 1033.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1348.0, + 292.0, + 1397.0, + 292.0, + 1397.0, + 391.0, + 1348.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 331.0, + 728.0, + 331.0, + 728.0, + 375.0, + 673.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 337.0, + 1012.0, + 337.0, + 1012.0, + 360.0, + 978.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 368.0, + 359.0, + 368.0, + 359.0, + 390.0, + 319.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 436.0, + 388.0, + 558.0, + 388.0, + 558.0, + 408.0, + 436.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 358.0, + 640.0, + 358.0, + 640.0, + 380.0, + 617.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 368.0, + 728.0, + 368.0, + 728.0, + 390.0, + 688.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 390.0, + 923.0, + 390.0, + 923.0, + 407.0, + 802.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 379.0, + 1010.0, + 379.0, + 1010.0, + 398.0, + 979.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 377.0, + 1090.0, + 377.0, + 1090.0, + 401.0, + 1055.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 367.0, + 1154.0, + 367.0, + 1154.0, + 384.0, + 1119.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1208.0, + 366.0, + 1339.0, + 366.0, + 1339.0, + 410.0, + 1208.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1346.0, + 350.0, + 1380.0, + 350.0, + 1380.0, + 403.0, + 1346.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 397.0, + 360.0, + 397.0, + 360.0, + 446.0, + 319.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 435.0, + 404.0, + 571.0, + 404.0, + 571.0, + 443.0, + 435.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 406.0, + 643.0, + 406.0, + 643.0, + 425.0, + 617.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 397.0, + 728.0, + 397.0, + 728.0, + 445.0, + 688.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 800.0, + 404.0, + 936.0, + 404.0, + 936.0, + 443.0, + 800.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 416.0, + 1013.0, + 416.0, + 1013.0, + 438.0, + 978.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 415.0, + 1090.0, + 415.0, + 1090.0, + 438.0, + 1054.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 404.0, + 1344.0, + 404.0, + 1344.0, + 443.0, + 1207.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1346.0, + 410.0, + 1380.0, + 410.0, + 1380.0, + 433.0, + 1346.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 435.0, + 436.0, + 572.0, + 436.0, + 572.0, + 460.0, + 435.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 800.0, + 436.0, + 937.0, + 436.0, + 937.0, + 460.0, + 800.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 437.0, + 1344.0, + 437.0, + 1344.0, + 458.0, + 1209.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1348.0, + 441.0, + 1379.0, + 441.0, + 1379.0, + 460.0, + 1348.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 455.0, + 358.0, + 455.0, + 358.0, + 473.0, + 320.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 463.0, + 378.0, + 463.0, + 378.0, + 478.0, + 361.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 461.0, + 420.0, + 461.0, + 420.0, + 480.0, + 389.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 422.0, + 461.0, + 452.0, + 461.0, + 452.0, + 480.0, + 422.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 455.0, + 726.0, + 455.0, + 726.0, + 473.0, + 689.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 463.0, + 745.0, + 463.0, + 745.0, + 480.0, + 729.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 459.0, + 812.0, + 459.0, + 812.0, + 482.0, + 780.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 460.0, + 871.0, + 460.0, + 871.0, + 480.0, + 840.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 459.0, + 932.0, + 459.0, + 932.0, + 482.0, + 898.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 460.0, + 989.0, + 460.0, + 989.0, + 480.0, + 959.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 450.0, + 1108.0, + 450.0, + 1108.0, + 481.0, + 1056.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 460.0, + 1156.0, + 460.0, + 1156.0, + 481.0, + 1134.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 460.0, + 1209.0, + 460.0, + 1209.0, + 480.0, + 1177.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1224.0, + 459.0, + 1256.0, + 459.0, + 1256.0, + 482.0, + 1224.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1271.0, + 459.0, + 1303.0, + 459.0, + 1303.0, + 482.0, + 1271.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1318.0, + 459.0, + 1351.0, + 459.0, + 1351.0, + 482.0, + 1318.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 474.0, + 512.0, + 474.0, + 512.0, + 497.0, + 465.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 472.0, + 878.0, + 472.0, + 878.0, + 498.0, + 829.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1194.0, + 472.0, + 1243.0, + 472.0, + 1243.0, + 498.0, + 1194.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 506.0, + 590.0, + 506.0, + 590.0, + 535.0, + 372.0, + 535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 506.0, + 958.0, + 506.0, + 958.0, + 537.0, + 740.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 506.0, + 1334.0, + 506.0, + 1334.0, + 535.0, + 1109.0, + 535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 241.5, + 1348.0, + 241.5, + 1348.0, + 288.5, + 1122.0, + 288.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 314.0, + 403.0, + 314.0, + 403.0, + 327.5, + 381.0, + 327.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 450.5, + 649.0, + 450.5, + 649.0, + 488.0, + 447.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 541.0, + 1403.0, + 541.0, + 1403.0, + 584.0, + 294.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 575.0, + 477.0, + 575.0, + 477.0, + 611.0, + 294.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 507.0, + 575.0, + 712.0, + 575.0, + 712.0, + 611.0, + 507.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 575.0, + 1002.0, + 575.0, + 1002.0, + 611.0, + 737.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 672.0, + 1088.0, + 672.0, + 1088.0, + 711.0, + 293.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1194.0, + 1405.0, + 1194.0, + 1405.0, + 1229.0, + 295.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1226.0, + 1405.0, + 1226.0, + 1405.0, + 1258.0, + 293.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1256.0, + 1406.0, + 1256.0, + 1406.0, + 1290.0, + 295.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1287.0, + 1198.0, + 1287.0, + 1198.0, + 1320.0, + 293.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 1287.0, + 1406.0, + 1287.0, + 1406.0, + 1320.0, + 1226.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1311.0, + 846.0, + 1311.0, + 846.0, + 1355.0, + 292.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 1311.0, + 1406.0, + 1311.0, + 1406.0, + 1355.0, + 873.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1345.0, + 1405.0, + 1345.0, + 1405.0, + 1383.0, + 293.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1376.0, + 1405.0, + 1376.0, + 1405.0, + 1413.0, + 293.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1408.0, + 1405.0, + 1408.0, + 1405.0, + 1442.0, + 295.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1439.0, + 585.0, + 1439.0, + 585.0, + 1472.0, + 293.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 1439.0, + 1406.0, + 1439.0, + 1406.0, + 1472.0, + 620.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1468.0, + 1406.0, + 1468.0, + 1406.0, + 1503.0, + 295.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1500.0, + 1403.0, + 1500.0, + 1403.0, + 1535.0, + 296.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1529.0, + 1405.0, + 1529.0, + 1405.0, + 1562.0, + 293.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1561.0, + 1408.0, + 1561.0, + 1408.0, + 1594.0, + 293.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1591.0, + 1405.0, + 1591.0, + 1405.0, + 1625.0, + 295.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1623.0, + 1402.0, + 1623.0, + 1402.0, + 1654.0, + 296.0, + 1654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1649.0, + 1405.0, + 1649.0, + 1405.0, + 1688.0, + 291.0, + 1688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1680.0, + 1403.0, + 1680.0, + 1403.0, + 1718.0, + 293.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1708.0, + 1405.0, + 1708.0, + 1405.0, + 1750.0, + 291.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1741.0, + 1406.0, + 1741.0, + 1406.0, + 1779.0, + 293.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1774.0, + 926.0, + 1774.0, + 926.0, + 1808.0, + 293.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 750.0, + 1402.0, + 750.0, + 1402.0, + 785.0, + 295.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 782.0, + 1405.0, + 782.0, + 1405.0, + 817.0, + 294.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 811.0, + 1402.0, + 811.0, + 1402.0, + 846.0, + 295.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 842.0, + 1404.0, + 842.0, + 1404.0, + 878.0, + 292.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 873.0, + 1406.0, + 873.0, + 1406.0, + 909.0, + 292.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 907.0, + 1405.0, + 907.0, + 1405.0, + 938.0, + 296.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 936.0, + 1220.0, + 936.0, + 1220.0, + 968.0, + 296.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 936.0, + 1405.0, + 936.0, + 1405.0, + 968.0, + 1292.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 965.0, + 1406.0, + 965.0, + 1406.0, + 1000.0, + 295.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 995.0, + 1404.0, + 995.0, + 1404.0, + 1031.0, + 294.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1023.0, + 664.0, + 1023.0, + 664.0, + 1066.0, + 292.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 1023.0, + 1409.0, + 1023.0, + 1409.0, + 1066.0, + 792.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1057.0, + 1405.0, + 1057.0, + 1405.0, + 1090.0, + 293.0, + 1090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1086.0, + 1406.0, + 1086.0, + 1406.0, + 1122.0, + 295.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1117.0, + 1407.0, + 1117.0, + 1407.0, + 1155.0, + 292.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1147.0, + 1167.0, + 1147.0, + 1167.0, + 1182.0, + 295.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1818.0, + 1405.0, + 1818.0, + 1405.0, + 1855.0, + 293.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1849.0, + 1404.0, + 1849.0, + 1404.0, + 1886.0, + 293.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1879.0, + 1405.0, + 1879.0, + 1405.0, + 1916.0, + 294.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1912.0, + 1405.0, + 1912.0, + 1405.0, + 1946.0, + 294.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1942.0, + 1405.0, + 1942.0, + 1405.0, + 1977.0, + 296.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1969.0, + 1405.0, + 1969.0, + 1405.0, + 2009.0, + 293.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1998.0, + 389.0, + 1998.0, + 389.0, + 2042.0, + 290.0, + 2042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 672.0, + 1088.0, + 672.0, + 1088.0, + 711.0, + 293.0, + 711.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1369, + 1404, + 1369, + 1404, + 1589, + 298, + 1589 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1712, + 1403, + 1712, + 1403, + 1926, + 298, + 1926 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 1231, + 1403, + 1231, + 1403, + 1354, + 299, + 1354 + ], + "score": 0.977 + }, + { + "category_id": 5, + "poly": [ + 322, + 606, + 1374, + 606, + 1374, + 1034, + 322, + 1034 + ], + "score": 0.977, + "html": "
METHODSVHN to MNISTUSPS to MNISTMNIST(P1) to USPSMNIST(P2) to USPS
Source Only67.168.177.078.9
LTN (Sener et al. (2016))78.8-1-
ATDA (Saito et al. (2017))86.2†=1-
DSN (Bousmalis et al. (2016))82.7†91.3†
PixelDA (Bousmalis et al. (2017)1=-95.9†
DANN (Ganin & Lempitsky (2014))73.973.0±2.077.1±1.885.1†
DoC (Tzeng et al. (2014))68.1±0.366.5±3.379.1±0.51
ADDA (Tzeng et al. (2017))76.0±1.890.1±0.889.4±0.2-
CoGAN (Liu & Tuzel (2016))did not converge89.1±0.891.2±0.8=
DTN (Taigman et al. (2016))84.71-
ENT (Our proposed baseline) Ours94.9±4.11 95.0±1.8791.2±1.92 93.1±1.2793.7±0.54 93.2±2.4696.7±1.27 96.1±0.29
" + }, + { + "category_id": 1, + "poly": [ + 301, + 1942, + 1402, + 1942, + 1402, + 2034, + 301, + 2034 + ], + "score": 0.971 + }, + { + "category_id": 3, + "poly": [ + 304, + 231, + 1367, + 231, + 1367, + 528, + 304, + 528 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 299, + 1604, + 1398, + 1604, + 1398, + 1697, + 299, + 1697 + ], + "score": 0.956 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 814, + 76, + 814, + 104, + 299, + 104 + ], + "score": 0.889 + }, + { + "category_id": 4, + "poly": [ + 296, + 535, + 1399, + 535, + 1399, + 595, + 296, + 595 + ], + "score": 0.822 + }, + { + "category_id": 6, + "poly": [ + 298, + 1059, + 1403, + 1059, + 1403, + 1180, + 298, + 1180 + ], + "score": 0.733 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 858, + 2088, + 858, + 2111, + 842, + 2111 + ], + "score": 0.65 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 859, + 2088, + 859, + 2111, + 842, + 2111 + ], + "score": 0.264 + }, + { + "category_id": 1, + "poly": [ + 298, + 1059, + 1403, + 1059, + 1403, + 1180, + 298, + 1180 + ], + "score": 0.22 + }, + { + "category_id": 13, + "poly": [ + 532, + 1522, + 565, + 1522, + 565, + 1555, + 532, + 1555 + ], + "score": 0.85, + "latex": "C ^ { ' }" + }, + { + "category_id": 13, + "poly": [ + 1069, + 1088, + 1099, + 1088, + 1099, + 1116, + 1069, + 1116 + ], + "score": 0.85, + "latex": "C ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 846, + 1061, + 863, + 1061, + 863, + 1089, + 846, + 1089 + ], + "score": 0.81, + "latex": "^ \\dagger" + }, + { + "category_id": 13, + "poly": [ + 1327, + 1493, + 1352, + 1493, + 1352, + 1521, + 1327, + 1521 + ], + "score": 0.78, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 837, + 1605, + 863, + 1605, + 863, + 1632, + 837, + 1632 + ], + "score": 0.78, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1247, + 1493, + 1272, + 1493, + 1272, + 1521, + 1247, + 1521 + ], + "score": 0.77, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 949, + 1527, + 974, + 1527, + 974, + 1555, + 949, + 1555 + ], + "score": 0.76, + "latex": "G" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 249.0, + 358.0, + 249.0, + 358.0, + 270.0, + 318.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 253.0, + 708.0, + 253.0, + 708.0, + 272.0, + 678.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 248.0, + 1067.0, + 248.0, + 1067.0, + 267.0, + 1037.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 274.0, + 358.0, + 274.0, + 358.0, + 295.0, + 318.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 286.0, + 1069.0, + 286.0, + 1069.0, + 309.0, + 1035.0, + 309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 299.0, + 374.0, + 299.0, + 374.0, + 397.0, + 295.0, + 397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 300.0, + 708.0, + 300.0, + 708.0, + 319.0, + 678.0, + 319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 300.0, + 1083.0, + 300.0, + 1083.0, + 396.0, + 1012.0, + 396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 323.0, + 637.0, + 323.0, + 637.0, + 349.0, + 598.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 661.0, + 311.0, + 691.0, + 311.0, + 691.0, + 382.0, + 661.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 323.0, + 997.0, + 323.0, + 997.0, + 349.0, + 957.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1317.0, + 323.0, + 1356.0, + 323.0, + 1356.0, + 349.0, + 1317.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 351.0, + 358.0, + 351.0, + 358.0, + 372.0, + 319.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 342.0, + 633.0, + 342.0, + 633.0, + 363.0, + 598.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 347.0, + 710.0, + 347.0, + 710.0, + 368.0, + 676.0, + 368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 342.0, + 992.0, + 342.0, + 992.0, + 363.0, + 958.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1316.0, + 342.0, + 1352.0, + 342.0, + 1352.0, + 363.0, + 1316.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 368.0, + 1067.0, + 368.0, + 1067.0, + 387.0, + 1037.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 376.0, + 358.0, + 376.0, + 358.0, + 397.0, + 319.0, + 397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 402.0, + 358.0, + 402.0, + 358.0, + 423.0, + 318.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 677.0, + 396.0, + 710.0, + 396.0, + 710.0, + 418.0, + 677.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 409.0, + 1067.0, + 409.0, + 1067.0, + 428.0, + 1037.0, + 428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 427.0, + 358.0, + 427.0, + 358.0, + 448.0, + 318.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 419.0, + 753.0, + 419.0, + 753.0, + 438.0, + 730.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 425.0, + 839.0, + 425.0, + 839.0, + 445.0, + 764.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 842.0, + 430.0, + 857.0, + 430.0, + 857.0, + 440.0, + 842.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 945.0, + 430.0, + 982.0, + 430.0, + 982.0, + 444.0, + 945.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 445.0, + 708.0, + 445.0, + 708.0, + 464.0, + 678.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 456.0, + 376.0, + 456.0, + 376.0, + 471.0, + 361.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 455.0, + 420.0, + 455.0, + 420.0, + 473.0, + 392.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 455.0, + 456.0, + 455.0, + 456.0, + 473.0, + 430.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 467.0, + 454.0, + 495.0, + 454.0, + 495.0, + 473.0, + 467.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 454.0, + 531.0, + 454.0, + 531.0, + 473.0, + 504.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 539.0, + 455.0, + 573.0, + 455.0, + 573.0, + 473.0, + 539.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 455.0, + 647.0, + 455.0, + 647.0, + 473.0, + 576.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 456.0, + 728.0, + 456.0, + 728.0, + 471.0, + 713.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 455.0, + 773.0, + 455.0, + 773.0, + 473.0, + 746.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 455.0, + 811.0, + 455.0, + 811.0, + 473.0, + 783.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 822.0, + 454.0, + 850.0, + 454.0, + 850.0, + 473.0, + 822.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 454.0, + 888.0, + 454.0, + 888.0, + 473.0, + 860.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 455.0, + 930.0, + 455.0, + 930.0, + 473.0, + 896.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 934.0, + 455.0, + 969.0, + 455.0, + 969.0, + 473.0, + 934.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 970.0, + 454.0, + 1006.0, + 454.0, + 1006.0, + 471.0, + 970.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 455.0, + 1086.0, + 455.0, + 1086.0, + 471.0, + 1071.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 454.0, + 1143.0, + 454.0, + 1143.0, + 473.0, + 1121.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 454.0, + 1199.0, + 454.0, + 1199.0, + 473.0, + 1172.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1224.0, + 454.0, + 1252.0, + 454.0, + 1252.0, + 473.0, + 1224.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1279.0, + 455.0, + 1306.0, + 455.0, + 1306.0, + 473.0, + 1279.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1331.0, + 454.0, + 1360.0, + 454.0, + 1360.0, + 473.0, + 1331.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 466.0, + 523.0, + 466.0, + 523.0, + 487.0, + 477.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 465.0, + 880.0, + 465.0, + 880.0, + 490.0, + 831.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 465.0, + 1239.0, + 465.0, + 1239.0, + 490.0, + 1190.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 499.0, + 583.0, + 499.0, + 583.0, + 527.0, + 366.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 725.0, + 497.0, + 942.0, + 497.0, + 942.0, + 529.0, + 725.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1085.0, + 499.0, + 1309.0, + 499.0, + 1309.0, + 527.0, + 1085.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 369.5, + 1351.0, + 369.5, + 1351.0, + 434.5, + 1093.0, + 434.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1085.75, + 389.0, + 1212.75, + 389.0, + 1212.75, + 428.5, + 1085.75, + 428.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 531.0, + 1405.0, + 531.0, + 1405.0, + 569.0, + 294.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 565.0, + 809.0, + 565.0, + 809.0, + 599.0, + 294.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1057.0, + 845.0, + 1057.0, + 845.0, + 1092.0, + 294.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 1057.0, + 1405.0, + 1057.0, + 1405.0, + 1092.0, + 864.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1086.0, + 1068.0, + 1086.0, + 1068.0, + 1125.0, + 292.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 1086.0, + 1404.0, + 1086.0, + 1404.0, + 1125.0, + 1100.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1122.0, + 1403.0, + 1122.0, + 1403.0, + 1151.0, + 296.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1148.0, + 1065.0, + 1148.0, + 1065.0, + 1185.0, + 293.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2119.0, + 840.0, + 2119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2119.0, + 840.0, + 2119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1371.0, + 1402.0, + 1371.0, + 1402.0, + 1403.0, + 296.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1400.0, + 1405.0, + 1400.0, + 1405.0, + 1435.0, + 294.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1431.0, + 1404.0, + 1431.0, + 1404.0, + 1467.0, + 294.0, + 1467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1460.0, + 1405.0, + 1460.0, + 1405.0, + 1498.0, + 293.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1493.0, + 1246.0, + 1493.0, + 1246.0, + 1528.0, + 294.0, + 1528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1273.0, + 1493.0, + 1326.0, + 1493.0, + 1326.0, + 1528.0, + 1273.0, + 1528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1353.0, + 1493.0, + 1405.0, + 1493.0, + 1405.0, + 1528.0, + 1353.0, + 1528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1521.0, + 531.0, + 1521.0, + 531.0, + 1565.0, + 291.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 1521.0, + 948.0, + 1521.0, + 948.0, + 1565.0, + 566.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 1521.0, + 1406.0, + 1521.0, + 1406.0, + 1565.0, + 975.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1559.0, + 756.0, + 1559.0, + 756.0, + 1590.0, + 297.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1709.0, + 1405.0, + 1709.0, + 1405.0, + 1750.0, + 293.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1743.0, + 1405.0, + 1743.0, + 1405.0, + 1777.0, + 293.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1774.0, + 1404.0, + 1774.0, + 1404.0, + 1808.0, + 294.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1802.0, + 1405.0, + 1802.0, + 1405.0, + 1839.0, + 294.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1832.0, + 1403.0, + 1832.0, + 1403.0, + 1867.0, + 296.0, + 1867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1862.0, + 1407.0, + 1862.0, + 1407.0, + 1901.0, + 292.0, + 1901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1896.0, + 1215.0, + 1896.0, + 1215.0, + 1931.0, + 296.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1229.0, + 1404.0, + 1229.0, + 1404.0, + 1267.0, + 293.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1261.0, + 1405.0, + 1261.0, + 1405.0, + 1296.0, + 294.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1294.0, + 1405.0, + 1294.0, + 1405.0, + 1326.0, + 295.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1324.0, + 794.0, + 1324.0, + 794.0, + 1356.0, + 294.0, + 1356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1942.0, + 1406.0, + 1942.0, + 1406.0, + 1976.0, + 297.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1972.0, + 1404.0, + 1972.0, + 1404.0, + 2006.0, + 295.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 2004.0, + 1402.0, + 2004.0, + 1402.0, + 2037.0, + 297.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1605.0, + 836.0, + 1605.0, + 836.0, + 1638.0, + 295.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 1605.0, + 1402.0, + 1605.0, + 1402.0, + 1638.0, + 864.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1634.0, + 1402.0, + 1634.0, + 1402.0, + 1667.0, + 294.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1664.0, + 1233.0, + 1664.0, + 1233.0, + 1700.0, + 294.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1057.0, + 845.0, + 1057.0, + 845.0, + 1092.0, + 294.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 1057.0, + 1405.0, + 1057.0, + 1405.0, + 1092.0, + 864.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1086.0, + 1068.0, + 1086.0, + 1068.0, + 1125.0, + 292.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 1086.0, + 1404.0, + 1086.0, + 1404.0, + 1125.0, + 1100.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1122.0, + 1403.0, + 1122.0, + 1403.0, + 1151.0, + 296.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1148.0, + 1065.0, + 1148.0, + 1065.0, + 1185.0, + 293.0, + 1185.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1542, + 1404, + 1542, + 1404, + 1878, + 298, + 1878 + ], + "score": 0.983 + }, + { + "category_id": 5, + "poly": [ + 398, + 226, + 1303, + 226, + 1303, + 704, + 398, + 704 + ], + "score": 0.98, + "html": "
Methodgrrrdoraegpaleie 3ueoormorreiltuosiadsareraertrnaaa
Finetuning on ResNet101
Source Only55.153.3 61.959.180.617.979.731.281.026.573.58.552.4
MMD87.163.0 76.542.090.342.985.953.149.736.385.820.761.1
DANN81.977.7 82.844.381.229.565.128.651.954.682.87.857.4
ENT80.375.5 75.848.377.927.369.740.246.546.679.316.057.0
Ours94.151.3 83.272.288.768.892.870.277.263.682.930.372.9
Ours (retrained classifier)94.248.5 84.072.990.174.292.672.580.861.882.228.873.5
Finetuning on ResNeXt
Source Only74.3 37.6 61.8 68.2 59.510.7 81.412.8 61.6 26.070.05.647.4
MMD90.751.1 64.865.689.946.591.940.181.524.190.028.563.7
DANN86.066.3 60.8 56.079.853.782.325.258.231.089.326.159.6
ENT94.781.0 57.046.673.949.069.231.040.534.387.315.156.6
Ours86.3 71.987.678.193.084.894.578.991.858.977.726.777.5
Ours (retrained classifier)89.270.9 85.782.093.786.7 93.372.389.553.086.728.377.6
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1374, + 1404, + 1374, + 1404, + 1528, + 298, + 1528 + ], + "score": 0.975 + }, + { + "category_id": 3, + "poly": [ + 395, + 888, + 1309, + 888, + 1309, + 1213, + 395, + 1213 + ], + "score": 0.971 + }, + { + "category_id": 4, + "poly": [ + 298, + 1234, + 1401, + 1234, + 1401, + 1346, + 298, + 1346 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 300, + 1973, + 1401, + 1973, + 1401, + 2034, + 300, + 2034 + ], + "score": 0.945 + }, + { + "category_id": 0, + "poly": [ + 300, + 1925, + 544, + 1925, + 544, + 1960, + 300, + 1960 + ], + "score": 0.896 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 814, + 76, + 814, + 104, + 299, + 104 + ], + "score": 0.889 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2111, + 841, + 2111 + ], + "score": 0.79 + }, + { + "category_id": 6, + "poly": [ + 297, + 714, + 1406, + 714, + 1406, + 836, + 297, + 836 + ], + "score": 0.306 + }, + { + "category_id": 15, + "poly": [ + 554.0, + 963.0, + 567.0, + 963.0, + 567.0, + 971.0, + 554.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 471.0, + 972.0, + 500.0, + 972.0, + 500.0, + 982.0, + 471.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 1007.0, + 939.0, + 1007.0, + 939.0, + 1016.0, + 929.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 1181.0, + 620.0, + 1181.0, + 620.0, + 1214.0, + 400.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.0, + 1178.0, + 970.0, + 1178.0, + 970.0, + 1217.0, + 723.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 1180.0, + 1286.0, + 1180.0, + 1286.0, + 1217.0, + 1079.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1232.0, + 1405.0, + 1232.0, + 1405.0, + 1267.0, + 294.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1262.0, + 1403.0, + 1262.0, + 1403.0, + 1295.0, + 296.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1287.0, + 1403.0, + 1287.0, + 1403.0, + 1323.0, + 293.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1317.0, + 720.0, + 1317.0, + 720.0, + 1350.0, + 294.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1921.0, + 548.0, + 1921.0, + 548.0, + 1969.0, + 291.0, + 1969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2116.0, + 839.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 713.0, + 1404.0, + 713.0, + 1404.0, + 747.0, + 294.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 746.0, + 1403.0, + 746.0, + 1403.0, + 775.0, + 296.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 777.0, + 1406.0, + 777.0, + 1406.0, + 810.0, + 295.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 807.0, + 1030.0, + 807.0, + 1030.0, + 839.0, + 294.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1542.0, + 1404.0, + 1542.0, + 1404.0, + 1579.0, + 293.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1572.0, + 1404.0, + 1572.0, + 1404.0, + 1610.0, + 293.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1603.0, + 1406.0, + 1603.0, + 1406.0, + 1642.0, + 293.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1634.0, + 1406.0, + 1634.0, + 1406.0, + 1669.0, + 294.0, + 1669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1662.0, + 1408.0, + 1662.0, + 1408.0, + 1703.0, + 292.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1695.0, + 1405.0, + 1695.0, + 1405.0, + 1730.0, + 293.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1726.0, + 1404.0, + 1726.0, + 1404.0, + 1761.0, + 293.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1756.0, + 1405.0, + 1756.0, + 1405.0, + 1793.0, + 293.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1786.0, + 1405.0, + 1786.0, + 1405.0, + 1824.0, + 293.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1817.0, + 1405.0, + 1817.0, + 1405.0, + 1852.0, + 295.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1846.0, + 1168.0, + 1846.0, + 1168.0, + 1885.0, + 293.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1372.0, + 1405.0, + 1372.0, + 1405.0, + 1410.0, + 292.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1402.0, + 1404.0, + 1402.0, + 1404.0, + 1442.0, + 293.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1432.0, + 1405.0, + 1432.0, + 1405.0, + 1472.0, + 293.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1464.0, + 1406.0, + 1464.0, + 1406.0, + 1500.0, + 293.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1496.0, + 1105.0, + 1496.0, + 1105.0, + 1533.0, + 293.0, + 1533.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": [ + 296.0, + 2002.0, + 1405.0, + 2002.0, + 1405.0, + 2037.0, + 296.0, + 2037.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 302, + 227, + 1400, + 227, + 1400, + 478, + 302, + 478 + ], + "score": 0.975, + "html": "
NetworkMethodxeeepreBuiplng8irilenuosradMur0mrrqeemIoU
VGG-16FCN Wild70.432.462.114.95.410.914.22.779.221.364.644.14.270.48.07.30.03.50.027.1
ResNet50Source OnlyDANNOurs64.572.487.824.919.115.673.714.83.920.62.59.39.718.017.319.015.913.119.90.05.57.774.916.472.042.30.039.58.612.117.513.49.927.70.00.01.80.05.89.70.00.00.025.326.433.3
73.077.471.082.020.131.562.274.332.643.55.29.068.477.8
DRN-105Source OnlyOurs25.986.210.910.150.578.83.320.112.27.425.428.613.015.078.384.57.338.963.952.17.966.35.229.67.832.70.90.213.719.20.78.324.937.3
21.226.581.154.613.680.8
" + }, + { + "category_id": 1, + "poly": [ + 299, + 1314, + 1404, + 1314, + 1404, + 1469, + 299, + 1469 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 968, + 1403, + 968, + 1403, + 1121, + 298, + 1121 + ], + "score": 0.973 + }, + { + "category_id": 3, + "poly": [ + 299, + 571, + 1388, + 571, + 1388, + 846, + 299, + 846 + ], + "score": 0.968 + }, + { + "category_id": 4, + "poly": [ + 298, + 856, + 1403, + 856, + 1403, + 945, + 298, + 945 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 297, + 1137, + 1399, + 1137, + 1399, + 1200, + 297, + 1200 + ], + "score": 0.939 + }, + { + "category_id": 1, + "poly": [ + 300, + 1942, + 1402, + 1942, + 1402, + 2034, + 300, + 2034 + ], + "score": 0.937 + }, + { + "category_id": 1, + "poly": [ + 299, + 1569, + 1404, + 1569, + 1404, + 1660, + 299, + 1660 + ], + "score": 0.935 + }, + { + "category_id": 1, + "poly": [ + 299, + 1769, + 1400, + 1769, + 1400, + 1833, + 299, + 1833 + ], + "score": 0.917 + }, + { + "category_id": 1, + "poly": [ + 296, + 1855, + 1402, + 1855, + 1402, + 1917, + 296, + 1917 + ], + "score": 0.913 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 105, + 300, + 105 + ], + "score": 0.896 + }, + { + "category_id": 0, + "poly": [ + 300, + 1246, + 677, + 1246, + 677, + 1280, + 300, + 1280 + ], + "score": 0.861 + }, + { + "category_id": 1, + "poly": [ + 300, + 1684, + 1400, + 1684, + 1400, + 1746, + 300, + 1746 + ], + "score": 0.861 + }, + { + "category_id": 0, + "poly": [ + 299, + 1516, + 488, + 1516, + 488, + 1550, + 299, + 1550 + ], + "score": 0.812 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.759 + }, + { + "category_id": 4, + "poly": [ + 299, + 498, + 1398, + 498, + 1398, + 559, + 299, + 559 + ], + "score": 0.619 + }, + { + "category_id": 6, + "poly": [ + 299, + 498, + 1398, + 498, + 1398, + 559, + 299, + 559 + ], + "score": 0.333 + }, + { + "category_id": 13, + "poly": [ + 746, + 502, + 781, + 502, + 781, + 525, + 746, + 525 + ], + "score": 0.53, + "latex": "" + }, + { + "category_id": 13, + "poly": [ + 679, + 500, + 783, + 500, + 783, + 526, + 679, + 526 + ], + "score": 0.29, + "latex": "\\mathrm { G T A } 5 " + }, + { + "category_id": 15, + "poly": [ + 293.0, + 852.0, + 1405.0, + 852.0, + 1405.0, + 890.0, + 293.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 884.0, + 1405.0, + 884.0, + 1405.0, + 919.0, + 293.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 916.0, + 385.0, + 916.0, + 385.0, + 948.0, + 292.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 71.0, + 817.0, + 71.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1243.0, + 681.0, + 1243.0, + 681.0, + 1285.0, + 294.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1517.0, + 490.0, + 1517.0, + 490.0, + 1553.0, + 296.0, + 1553.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, + 495.0, + 678.0, + 495.0, + 678.0, + 531.0, + 295.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 495.0, + 1403.0, + 495.0, + 1403.0, + 531.0, + 784.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 527.0, + 1025.0, + 527.0, + 1025.0, + 562.0, + 294.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 495.0, + 678.0, + 495.0, + 678.0, + 531.0, + 295.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 495.0, + 1403.0, + 495.0, + 1403.0, + 531.0, + 784.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 527.0, + 1025.0, + 527.0, + 1025.0, + 562.0, + 294.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1310.0, + 1405.0, + 1310.0, + 1405.0, + 1353.0, + 296.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1346.0, + 1404.0, + 1346.0, + 1404.0, + 1384.0, + 294.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1374.0, + 1404.0, + 1374.0, + 1404.0, + 1411.0, + 294.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1406.0, + 1404.0, + 1406.0, + 1404.0, + 1443.0, + 295.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1435.0, + 1218.0, + 1435.0, + 1218.0, + 1473.0, + 294.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 971.0, + 1403.0, + 971.0, + 1403.0, + 1000.0, + 297.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 998.0, + 1405.0, + 998.0, + 1405.0, + 1033.0, + 293.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1029.0, + 1405.0, + 1029.0, + 1405.0, + 1064.0, + 292.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1054.0, + 1407.0, + 1054.0, + 1407.0, + 1099.0, + 291.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1088.0, + 400.0, + 1088.0, + 400.0, + 1125.0, + 294.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1135.0, + 1403.0, + 1135.0, + 1403.0, + 1171.0, + 297.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1167.0, + 705.0, + 1167.0, + 705.0, + 1202.0, + 293.0, + 1202.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1938.0, + 1406.0, + 1938.0, + 1406.0, + 1980.0, + 293.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1975.0, + 1403.0, + 1975.0, + 1403.0, + 2005.0, + 325.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 2002.0, + 820.0, + 2002.0, + 820.0, + 2036.0, + 325.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1569.0, + 1403.0, + 1569.0, + 1403.0, + 1603.0, + 295.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1600.0, + 1404.0, + 1600.0, + 1404.0, + 1634.0, + 322.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1626.0, + 397.0, + 1626.0, + 397.0, + 1663.0, + 319.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1768.0, + 1402.0, + 1768.0, + 1402.0, + 1805.0, + 295.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1801.0, + 1394.0, + 1801.0, + 1394.0, + 1837.0, + 324.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1851.0, + 1406.0, + 1851.0, + 1406.0, + 1892.0, + 294.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1886.0, + 506.0, + 1886.0, + 506.0, + 1918.0, + 323.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1682.0, + 1404.0, + 1682.0, + 1404.0, + 1721.0, + 295.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1716.0, + 830.0, + 1716.0, + 830.0, + 1747.0, + 324.0, + 1747.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 866, + 2088, + 866, + 2113, + 836, + 2113 + ], + "score": 0.829 + }, + { + "category_id": 1, + "poly": [ + 294, + 802, + 1402, + 802, + 1402, + 867, + 294, + 867 + ], + "score": 0.695 + }, + { + "category_id": 1, + "poly": [ + 298, + 888, + 1402, + 888, + 1402, + 955, + 298, + 955 + ], + "score": 0.694 + }, + { + "category_id": 1, + "poly": [ + 300, + 974, + 1401, + 974, + 1401, + 1039, + 300, + 1039 + ], + "score": 0.652 + }, + { + "category_id": 1, + "poly": [ + 301, + 1230, + 1399, + 1230, + 1399, + 1297, + 301, + 1297 + ], + "score": 0.639 + }, + { + "category_id": 1, + "poly": [ + 298, + 1059, + 1399, + 1059, + 1399, + 1126, + 298, + 1126 + ], + "score": 0.629 + }, + { + "category_id": 1, + "poly": [ + 292, + 1487, + 1288, + 1487, + 1288, + 1523, + 292, + 1523 + ], + "score": 0.628 + }, + { + "category_id": 1, + "poly": [ + 300, + 1145, + 1397, + 1145, + 1397, + 1211, + 300, + 1211 + ], + "score": 0.626 + }, + { + "category_id": 1, + "poly": [ + 297, + 1401, + 1401, + 1401, + 1401, + 1468, + 297, + 1468 + ], + "score": 0.622 + }, + { + "category_id": 1, + "poly": [ + 299, + 1316, + 1401, + 1316, + 1401, + 1381, + 299, + 1381 + ], + "score": 0.62 + }, + { + "category_id": 1, + "poly": [ + 294, + 1628, + 1404, + 1628, + 1404, + 1694, + 294, + 1694 + ], + "score": 0.588 + }, + { + "category_id": 1, + "poly": [ + 296, + 716, + 1401, + 716, + 1401, + 782, + 296, + 782 + ], + "score": 0.588 + }, + { + "category_id": 1, + "poly": [ + 297, + 515, + 1400, + 515, + 1400, + 581, + 297, + 581 + ], + "score": 0.583 + }, + { + "category_id": 1, + "poly": [ + 295, + 1713, + 1404, + 1713, + 1404, + 1779, + 295, + 1779 + ], + "score": 0.573 + }, + { + "category_id": 1, + "poly": [ + 299, + 601, + 1399, + 601, + 1399, + 697, + 299, + 697 + ], + "score": 0.565 + }, + { + "category_id": 1, + "poly": [ + 298, + 1542, + 1405, + 1542, + 1405, + 1608, + 298, + 1608 + ], + "score": 0.559 + }, + { + "category_id": 1, + "poly": [ + 295, + 228, + 1400, + 228, + 1400, + 295, + 295, + 295 + ], + "score": 0.545 + }, + { + "category_id": 1, + "poly": [ + 302, + 399, + 1399, + 399, + 1399, + 495, + 302, + 495 + ], + "score": 0.534 + }, + { + "category_id": 1, + "poly": [ + 298, + 1799, + 1402, + 1799, + 1402, + 1864, + 298, + 1864 + ], + "score": 0.5 + }, + { + "category_id": 1, + "poly": [ + 295, + 313, + 1401, + 313, + 1401, + 379, + 295, + 379 + ], + "score": 0.499 + }, + { + "category_id": 1, + "poly": [ + 295, + 1971, + 1396, + 1971, + 1396, + 2034, + 295, + 2034 + ], + "score": 0.497 + }, + { + "category_id": 1, + "poly": [ + 298, + 1884, + 1397, + 1884, + 1397, + 1951, + 298, + 1951 + ], + "score": 0.376 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 801.0, + 1403.0, + 801.0, + 1403.0, + 840.0, + 294.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 836.0, + 630.0, + 836.0, + 630.0, + 868.0, + 323.0, + 868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 884.0, + 1406.0, + 884.0, + 1406.0, + 928.0, + 293.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 916.0, + 398.0, + 916.0, + 398.0, + 955.0, + 319.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 968.0, + 1405.0, + 968.0, + 1405.0, + 1017.0, + 293.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1006.0, + 588.0, + 1006.0, + 588.0, + 1039.0, + 323.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1227.0, + 1405.0, + 1227.0, + 1405.0, + 1269.0, + 295.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1262.0, + 474.0, + 1262.0, + 474.0, + 1296.0, + 322.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1060.0, + 1403.0, + 1060.0, + 1403.0, + 1096.0, + 294.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1091.0, + 1176.0, + 1091.0, + 1176.0, + 1128.0, + 323.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1486.0, + 1289.0, + 1486.0, + 1289.0, + 1525.0, + 293.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1142.0, + 1402.0, + 1142.0, + 1402.0, + 1187.0, + 294.0, + 1187.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1177.0, + 872.0, + 1177.0, + 872.0, + 1210.0, + 321.0, + 1210.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1402.0, + 1405.0, + 1402.0, + 1405.0, + 1438.0, + 297.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1433.0, + 1159.0, + 1433.0, + 1159.0, + 1468.0, + 322.0, + 1468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1314.0, + 1405.0, + 1314.0, + 1405.0, + 1355.0, + 293.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1346.0, + 598.0, + 1346.0, + 598.0, + 1381.0, + 320.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1627.0, + 1404.0, + 1627.0, + 1404.0, + 1664.0, + 296.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1660.0, + 872.0, + 1660.0, + 872.0, + 1692.0, + 323.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 714.0, + 1405.0, + 714.0, + 1405.0, + 757.0, + 294.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 748.0, + 1253.0, + 748.0, + 1253.0, + 784.0, + 324.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 514.0, + 1405.0, + 514.0, + 1405.0, + 554.0, + 296.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 547.0, + 476.0, + 547.0, + 476.0, + 580.0, + 323.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1712.0, + 1402.0, + 1712.0, + 1402.0, + 1749.0, + 295.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1746.0, + 856.0, + 1746.0, + 856.0, + 1778.0, + 324.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 599.0, + 1404.0, + 599.0, + 1404.0, + 639.0, + 295.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 633.0, + 1403.0, + 633.0, + 1403.0, + 667.0, + 321.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 664.0, + 710.0, + 664.0, + 710.0, + 697.0, + 324.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1543.0, + 1403.0, + 1543.0, + 1403.0, + 1579.0, + 295.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1576.0, + 683.0, + 1576.0, + 683.0, + 1607.0, + 323.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 229.0, + 1404.0, + 229.0, + 1404.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 262.0, + 1267.0, + 262.0, + 1267.0, + 295.0, + 322.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 397.0, + 1403.0, + 397.0, + 1403.0, + 437.0, + 296.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 432.0, + 1404.0, + 432.0, + 1404.0, + 467.0, + 322.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 459.0, + 398.0, + 459.0, + 398.0, + 496.0, + 319.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1801.0, + 1403.0, + 1801.0, + 1403.0, + 1837.0, + 294.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1832.0, + 622.0, + 1832.0, + 622.0, + 1862.0, + 322.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 311.0, + 1405.0, + 311.0, + 1405.0, + 354.0, + 293.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 346.0, + 832.0, + 346.0, + 832.0, + 378.0, + 323.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1969.0, + 1398.0, + 1969.0, + 1398.0, + 2005.0, + 295.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 2001.0, + 464.0, + 2001.0, + 464.0, + 2034.0, + 323.0, + 2034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1881.0, + 1401.0, + 1881.0, + 1401.0, + 1925.0, + 292.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1918.0, + 952.0, + 1918.0, + 952.0, + 1951.0, + 323.0, + 1951.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2113, + 836, + 2113 + ], + "score": 0.832 + }, + { + "category_id": 1, + "poly": [ + 294, + 866, + 1400, + 866, + 1400, + 931, + 294, + 931 + ], + "score": 0.814 + }, + { + "category_id": 1, + "poly": [ + 296, + 1663, + 1401, + 1663, + 1401, + 1729, + 296, + 1729 + ], + "score": 0.813 + }, + { + "category_id": 1, + "poly": [ + 295, + 1759, + 1399, + 1759, + 1399, + 1825, + 295, + 1825 + ], + "score": 0.809 + }, + { + "category_id": 1, + "poly": [ + 297, + 1471, + 1402, + 1471, + 1402, + 1537, + 297, + 1537 + ], + "score": 0.806 + }, + { + "category_id": 1, + "poly": [ + 297, + 770, + 1402, + 770, + 1402, + 834, + 297, + 834 + ], + "score": 0.802 + }, + { + "category_id": 1, + "poly": [ + 294, + 1567, + 1401, + 1567, + 1401, + 1633, + 294, + 1633 + ], + "score": 0.801 + }, + { + "category_id": 1, + "poly": [ + 297, + 962, + 1402, + 962, + 1402, + 1026, + 297, + 1026 + ], + "score": 0.798 + }, + { + "category_id": 1, + "poly": [ + 292, + 1058, + 1402, + 1058, + 1402, + 1122, + 292, + 1122 + ], + "score": 0.797 + }, + { + "category_id": 1, + "poly": [ + 295, + 1375, + 1403, + 1375, + 1403, + 1441, + 295, + 1441 + ], + "score": 0.794 + }, + { + "category_id": 1, + "poly": [ + 295, + 673, + 1400, + 673, + 1400, + 738, + 295, + 738 + ], + "score": 0.789 + }, + { + "category_id": 1, + "poly": [ + 294, + 228, + 1402, + 228, + 1402, + 294, + 294, + 294 + ], + "score": 0.783 + }, + { + "category_id": 1, + "poly": [ + 295, + 1856, + 1401, + 1856, + 1401, + 1950, + 295, + 1950 + ], + "score": 0.777 + }, + { + "category_id": 1, + "poly": [ + 296, + 1280, + 1402, + 1280, + 1402, + 1345, + 296, + 1345 + ], + "score": 0.77 + }, + { + "category_id": 1, + "poly": [ + 292, + 1983, + 1371, + 1983, + 1371, + 2017, + 292, + 2017 + ], + "score": 0.755 + }, + { + "category_id": 1, + "poly": [ + 302, + 450, + 1402, + 450, + 1402, + 546, + 302, + 546 + ], + "score": 0.749 + }, + { + "category_id": 1, + "poly": [ + 298, + 578, + 1403, + 578, + 1403, + 642, + 298, + 642 + ], + "score": 0.746 + }, + { + "category_id": 1, + "poly": [ + 297, + 1152, + 1405, + 1152, + 1405, + 1248, + 297, + 1248 + ], + "score": 0.705 + }, + { + "category_id": 1, + "poly": [ + 298, + 325, + 1405, + 325, + 1405, + 419, + 298, + 419 + ], + "score": 0.634 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 866.0, + 1402.0, + 866.0, + 1402.0, + 902.0, + 296.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 896.0, + 935.0, + 896.0, + 935.0, + 932.0, + 323.0, + 932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1664.0, + 1405.0, + 1664.0, + 1405.0, + 1700.0, + 295.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1696.0, + 641.0, + 1696.0, + 641.0, + 1730.0, + 321.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1758.0, + 1404.0, + 1758.0, + 1404.0, + 1797.0, + 295.0, + 1797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1791.0, + 1194.0, + 1791.0, + 1194.0, + 1826.0, + 321.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1472.0, + 1404.0, + 1472.0, + 1404.0, + 1508.0, + 296.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1503.0, + 469.0, + 1503.0, + 469.0, + 1536.0, + 322.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 766.0, + 1406.0, + 766.0, + 1406.0, + 808.0, + 294.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 802.0, + 726.0, + 802.0, + 726.0, + 833.0, + 323.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1568.0, + 1403.0, + 1568.0, + 1403.0, + 1605.0, + 294.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1599.0, + 1164.0, + 1599.0, + 1164.0, + 1634.0, + 322.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 961.0, + 1404.0, + 961.0, + 1404.0, + 999.0, + 296.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 994.0, + 1028.0, + 994.0, + 1028.0, + 1027.0, + 322.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1057.0, + 1404.0, + 1057.0, + 1404.0, + 1095.0, + 294.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1089.0, + 1022.0, + 1089.0, + 1022.0, + 1125.0, + 324.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1376.0, + 1404.0, + 1376.0, + 1404.0, + 1412.0, + 295.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1407.0, + 469.0, + 1407.0, + 469.0, + 1440.0, + 322.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 672.0, + 1402.0, + 672.0, + 1402.0, + 708.0, + 296.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 706.0, + 768.0, + 706.0, + 768.0, + 738.0, + 323.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 229.0, + 1404.0, + 229.0, + 1404.0, + 265.0, + 296.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 261.0, + 883.0, + 261.0, + 883.0, + 295.0, + 321.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1854.0, + 1406.0, + 1854.0, + 1406.0, + 1896.0, + 293.0, + 1896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1886.0, + 1405.0, + 1886.0, + 1405.0, + 1925.0, + 320.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1919.0, + 477.0, + 1919.0, + 477.0, + 1950.0, + 325.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1280.0, + 1404.0, + 1280.0, + 1404.0, + 1316.0, + 295.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1311.0, + 668.0, + 1311.0, + 668.0, + 1347.0, + 324.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1983.0, + 1373.0, + 1983.0, + 1373.0, + 2018.0, + 296.0, + 2018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 448.0, + 1406.0, + 448.0, + 1406.0, + 489.0, + 293.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 483.0, + 1403.0, + 483.0, + 1403.0, + 518.0, + 323.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 514.0, + 1091.0, + 514.0, + 1091.0, + 548.0, + 323.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 578.0, + 1404.0, + 578.0, + 1404.0, + 614.0, + 296.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 607.0, + 1312.0, + 607.0, + 1312.0, + 643.0, + 323.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1155.0, + 1403.0, + 1155.0, + 1403.0, + 1189.0, + 295.0, + 1189.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1185.0, + 1403.0, + 1185.0, + 1403.0, + 1220.0, + 323.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1211.0, + 400.0, + 1211.0, + 400.0, + 1252.0, + 320.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 321.0, + 1405.0, + 321.0, + 1405.0, + 364.0, + 296.0, + 364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 354.0, + 1405.0, + 354.0, + 1405.0, + 395.0, + 322.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 388.0, + 786.0, + 388.0, + 786.0, + 422.0, + 325.0, + 422.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 320, + 1404, + 320, + 1404, + 597, + 297, + 597 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1221, + 1405, + 1221, + 1405, + 1499, + 297, + 1499 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1561, + 1403, + 1561, + 1403, + 1685, + 298, + 1685 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1849, + 1403, + 1849, + 1403, + 2035, + 298, + 2035 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 610, + 1403, + 610, + 1403, + 735, + 297, + 735 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 750, + 1400, + 750, + 1400, + 842, + 299, + 842 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 299, + 1742, + 1405, + 1742, + 1405, + 1835, + 299, + 1835 + ], + "score": 0.958 + }, + { + "category_id": 1, + "poly": [ + 296, + 1095, + 1399, + 1095, + 1399, + 1157, + 296, + 1157 + ], + "score": 0.955 + }, + { + "category_id": 8, + "poly": [ + 588, + 1002, + 1114, + 1002, + 1114, + 1091, + 588, + 1091 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 548, + 897, + 1151, + 897, + 1151, + 986, + 548, + 986 + ], + "score": 0.945 + }, + { + "category_id": 0, + "poly": [ + 297, + 1517, + 986, + 1517, + 986, + 1553, + 297, + 1553 + ], + "score": 0.93 + }, + { + "category_id": 0, + "poly": [ + 297, + 1177, + 977, + 1177, + 977, + 1213, + 297, + 1213 + ], + "score": 0.927 + }, + { + "category_id": 8, + "poly": [ + 570, + 853, + 982, + 853, + 982, + 891, + 570, + 891 + ], + "score": 0.925 + }, + { + "category_id": 0, + "poly": [ + 301, + 274, + 1236, + 274, + 1236, + 310, + 301, + 310 + ], + "score": 0.91 + }, + { + "category_id": 8, + "poly": [ + 637, + 1696, + 1060, + 1696, + 1060, + 1732, + 637, + 1732 + ], + "score": 0.903 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 815, + 75, + 815, + 105, + 300, + 105 + ], + "score": 0.902 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1699, + 1399, + 1699, + 1399, + 1728, + 1366, + 1728 + ], + "score": 0.879 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1031, + 1400, + 1031, + 1400, + 1060, + 1366, + 1060 + ], + "score": 0.879 + }, + { + "category_id": 9, + "poly": [ + 1366, + 857, + 1400, + 857, + 1400, + 886, + 1366, + 886 + ], + "score": 0.869 + }, + { + "category_id": 9, + "poly": [ + 1366, + 925, + 1400, + 925, + 1400, + 955, + 1366, + 955 + ], + "score": 0.861 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.854 + }, + { + "category_id": 0, + "poly": [ + 301, + 228, + 450, + 228, + 450, + 261, + 301, + 261 + ], + "score": 0.791 + }, + { + "category_id": 1, + "poly": [ + 301, + 228, + 450, + 228, + 450, + 261, + 301, + 261 + ], + "score": 0.105 + }, + { + "category_id": 14, + "poly": [ + 586, + 998, + 1113, + 998, + 1113, + 1094, + 586, + 1094 + ], + "score": 0.94, + "latex": "H [ p ( y | x ) ] = - \\sum _ { k = 1 } ^ { K } p ( y = k | x ) \\log p ( y = k | x )" + }, + { + "category_id": 14, + "poly": [ + 545, + 849, + 1152, + 849, + 1152, + 989, + 545, + 989 + ], + "score": 0.93, + "latex": "\\begin{array} { r c l } { { { \\cal L } _ { a d v } ( X _ { t } ) } } & { { = } } & { { \\displaystyle \\mathbb { E } _ { { \\mathbf { x _ { t } } } \\sim X _ { t } } [ H [ p ( \\mathbf { y } | { \\mathbf { x _ { t } } } ) ] } } \\\\ { { { \\cal H } [ p ( \\mathbf { y } | { \\mathbf { x _ { t } } } ) ] } } & { { = } } & { { \\displaystyle - \\sum _ { k = 1 } ^ { K } p ( y = k | { \\mathbf { x _ { t } } } ) \\log p ( y = k | { \\mathbf { x _ { t } } } ) } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 864, + 781, + 966, + 781, + 966, + 813, + 864, + 813 + ], + "score": 0.93, + "latex": "d ( p _ { 1 } , p _ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 783, + 1559, + 913, + 1559, + 913, + 1592, + 783, + 1592 + ], + "score": 0.92, + "latex": "1 . 0 \\times 1 0 ^ { - 3 }" + }, + { + "category_id": 13, + "poly": [ + 1270, + 1940, + 1393, + 1940, + 1393, + 1972, + 1270, + 1972 + ], + "score": 0.91, + "latex": "\\mathrm { i . 0 \\times 1 0 ^ { - 3 } }" + }, + { + "category_id": 14, + "poly": [ + 636, + 1696, + 1063, + 1696, + 1063, + 1733, + 636, + 1733 + ], + "score": 0.9, + "latex": "\\sigma = [ 0 . 1 , 0 . 0 5 , 0 . 0 1 , 0 . 0 0 0 1 , 0 . 0 0 0 0 1 ]" + }, + { + "category_id": 13, + "poly": [ + 327, + 1127, + 398, + 1127, + 398, + 1153, + 327, + 1153 + ], + "score": 0.88, + "latex": "n = 4" + }, + { + "category_id": 13, + "poly": [ + 881, + 1098, + 906, + 1098, + 906, + 1123, + 881, + 1123 + ], + "score": 0.82, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 690, + 674, + 715, + 674, + 715, + 700, + 690, + 700 + ], + "score": 0.81, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 843, + 613, + 869, + 613, + 869, + 640, + 843, + 640 + ], + "score": 0.81, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 630, + 414, + 659, + 414, + 659, + 440, + 630, + 440 + ], + "score": 0.81, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 1290, + 674, + 1314, + 674, + 1314, + 700, + 1290, + 700 + ], + "score": 0.8, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 368, + 643, + 393, + 643, + 393, + 670, + 368, + 670 + ], + "score": 0.79, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 1372, + 612, + 1402, + 612, + 1402, + 640, + 1372, + 640 + ], + "score": 0.76, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 538, + 1103, + 557, + 1103, + 557, + 1123, + 538, + 1123 + ], + "score": 0.76, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 1037, + 613, + 1062, + 613, + 1062, + 639, + 1037, + 639 + ], + "score": 0.72, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1081, + 612, + 1107, + 612, + 1107, + 640, + 1081, + 640 + ], + "score": 0.7, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 1214, + 1406, + 1268, + 1406, + 1268, + 1435, + 1214, + 1435 + ], + "score": 0.45, + "latex": "1 { \\sim } 3" + }, + { + "category_id": 13, + "poly": [ + 684, + 1914, + 708, + 1914, + 708, + 1940, + 684, + 1940 + ], + "score": 0.26, + "latex": "\\&" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1513.0, + 991.0, + 1513.0, + 991.0, + 1558.0, + 295.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1173.0, + 980.0, + 1173.0, + 980.0, + 1218.0, + 292.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 271.0, + 1240.0, + 271.0, + 1240.0, + 318.0, + 292.0, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 222.0, + 455.0, + 222.0, + 455.0, + 270.0, + 296.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 318.0, + 1405.0, + 318.0, + 1405.0, + 356.0, + 294.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 349.0, + 1405.0, + 349.0, + 1405.0, + 388.0, + 292.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 383.0, + 1405.0, + 383.0, + 1405.0, + 415.0, + 296.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 409.0, + 629.0, + 409.0, + 629.0, + 449.0, + 292.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 409.0, + 1405.0, + 409.0, + 1405.0, + 449.0, + 660.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 443.0, + 1406.0, + 443.0, + 1406.0, + 479.0, + 295.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 472.0, + 1404.0, + 472.0, + 1404.0, + 508.0, + 294.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 503.0, + 1404.0, + 503.0, + 1404.0, + 538.0, + 293.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 536.0, + 1404.0, + 536.0, + 1404.0, + 568.0, + 296.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 562.0, + 485.0, + 562.0, + 485.0, + 603.0, + 293.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1220.0, + 1406.0, + 1220.0, + 1406.0, + 1258.0, + 295.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1252.0, + 1402.0, + 1252.0, + 1402.0, + 1285.0, + 295.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1284.0, + 1403.0, + 1284.0, + 1403.0, + 1317.0, + 295.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1311.0, + 1406.0, + 1311.0, + 1406.0, + 1348.0, + 294.0, + 1348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1343.0, + 1406.0, + 1343.0, + 1406.0, + 1381.0, + 292.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1372.0, + 1406.0, + 1372.0, + 1406.0, + 1413.0, + 292.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1405.0, + 1213.0, + 1405.0, + 1213.0, + 1440.0, + 292.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1269.0, + 1405.0, + 1403.0, + 1405.0, + 1403.0, + 1440.0, + 1269.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1432.0, + 1405.0, + 1432.0, + 1405.0, + 1472.0, + 292.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1468.0, + 862.0, + 1468.0, + 862.0, + 1500.0, + 294.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1560.0, + 782.0, + 1560.0, + 782.0, + 1596.0, + 293.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 914.0, + 1560.0, + 1404.0, + 1560.0, + 1404.0, + 1596.0, + 914.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1594.0, + 1404.0, + 1594.0, + 1404.0, + 1627.0, + 294.0, + 1627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1623.0, + 1407.0, + 1623.0, + 1407.0, + 1659.0, + 293.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1653.0, + 1186.0, + 1653.0, + 1186.0, + 1688.0, + 293.0, + 1688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1851.0, + 1402.0, + 1851.0, + 1402.0, + 1883.0, + 296.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1883.0, + 1402.0, + 1883.0, + 1402.0, + 1915.0, + 294.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1910.0, + 683.0, + 1910.0, + 683.0, + 1946.0, + 292.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 1910.0, + 1403.0, + 1910.0, + 1403.0, + 1946.0, + 709.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1939.0, + 1269.0, + 1939.0, + 1269.0, + 1976.0, + 291.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1939.0, + 1404.0, + 1939.0, + 1404.0, + 1976.0, + 1394.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1971.0, + 1405.0, + 1971.0, + 1405.0, + 2007.0, + 296.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2002.0, + 1236.0, + 2002.0, + 1236.0, + 2039.0, + 293.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 609.0, + 842.0, + 609.0, + 842.0, + 644.0, + 295.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 609.0, + 1036.0, + 609.0, + 1036.0, + 644.0, + 870.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 609.0, + 1080.0, + 609.0, + 1080.0, + 644.0, + 1063.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1108.0, + 609.0, + 1371.0, + 609.0, + 1371.0, + 644.0, + 1108.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 641.0, + 367.0, + 641.0, + 367.0, + 677.0, + 295.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 641.0, + 1407.0, + 641.0, + 1407.0, + 677.0, + 394.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 672.0, + 689.0, + 672.0, + 689.0, + 709.0, + 295.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 672.0, + 1289.0, + 672.0, + 1289.0, + 709.0, + 716.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1315.0, + 672.0, + 1407.0, + 672.0, + 1407.0, + 709.0, + 1315.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 703.0, + 814.0, + 703.0, + 814.0, + 739.0, + 295.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 747.0, + 1406.0, + 747.0, + 1406.0, + 785.0, + 293.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 782.0, + 863.0, + 782.0, + 863.0, + 815.0, + 295.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 967.0, + 782.0, + 1405.0, + 782.0, + 1405.0, + 815.0, + 967.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 809.0, + 1098.0, + 809.0, + 1098.0, + 846.0, + 294.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1739.0, + 1405.0, + 1739.0, + 1405.0, + 1779.0, + 294.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1772.0, + 1405.0, + 1772.0, + 1405.0, + 1809.0, + 294.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1802.0, + 474.0, + 1802.0, + 474.0, + 1839.0, + 295.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1094.0, + 537.0, + 1094.0, + 537.0, + 1130.0, + 296.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 1094.0, + 880.0, + 1094.0, + 880.0, + 1130.0, + 558.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 1094.0, + 1405.0, + 1094.0, + 1405.0, + 1130.0, + 907.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1122.0, + 326.0, + 1122.0, + 326.0, + 1161.0, + 294.0, + 1161.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 399.0, + 1122.0, + 931.0, + 1122.0, + 931.0, + 1161.0, + 399.0, + 1161.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 222.0, + 455.0, + 222.0, + 455.0, + 270.0, + 296.0, + 270.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 1110, + 941, + 1110, + 941, + 1475, + 299, + 1475 + ], + "score": 0.98 + }, + { + "category_id": 3, + "poly": [ + 299, + 224, + 1401, + 224, + 1401, + 779, + 299, + 779 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 1726, + 1402, + 1726, + 1402, + 1879, + 297, + 1879 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 297, + 1588, + 1403, + 1588, + 1403, + 1713, + 297, + 1713 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 299, + 951, + 1405, + 951, + 1405, + 1043, + 299, + 1043 + ], + "score": 0.965 + }, + { + "category_id": 3, + "poly": [ + 1000, + 1042, + 1403, + 1042, + 1403, + 1391, + 1000, + 1391 + ], + "score": 0.959 + }, + { + "category_id": 4, + "poly": [ + 298, + 810, + 1403, + 810, + 1403, + 901, + 298, + 901 + ], + "score": 0.957 + }, + { + "category_id": 4, + "poly": [ + 964, + 1405, + 1440, + 1405, + 1440, + 1466, + 964, + 1466 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 562, + 1998, + 1139, + 1998, + 1139, + 2040, + 562, + 2040 + ], + "score": 0.927 + }, + { + "category_id": 8, + "poly": [ + 425, + 1879, + 1272, + 1879, + 1272, + 1962, + 425, + 1962 + ], + "score": 0.926 + }, + { + "category_id": 0, + "poly": [ + 301, + 1065, + 798, + 1065, + 798, + 1099, + 301, + 1099 + ], + "score": 0.911 + }, + { + "category_id": 0, + "poly": [ + 297, + 1520, + 975, + 1520, + 975, + 1555, + 297, + 1555 + ], + "score": 0.908 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.892 + }, + { + "category_id": 9, + "poly": [ + 1351, + 2003, + 1400, + 2003, + 1400, + 2034, + 1351, + 2034 + ], + "score": 0.885 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1902, + 1400, + 1902, + 1400, + 1932, + 1352, + 1932 + ], + "score": 0.866 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.866 + }, + { + "category_id": 14, + "poly": [ + 424, + 1869, + 1272, + 1869, + 1272, + 1965, + 424, + 1965 + ], + "score": 0.92, + "latex": "\\operatorname* { m i n } _ { C } L _ { C } = L ( X _ { L } , Y _ { L } ) + L _ { a d v } ( X _ { u } ) - L _ { a d v } ( X _ { g } ) - H [ \\frac { 1 } { M } \\sum _ { i = 1 } ^ { M } p ( y | x _ { u } { } ^ { i } , C ) ]" + }, + { + "category_id": 14, + "poly": [ + 560, + 1999, + 1137, + 1999, + 1137, + 2037, + 560, + 2037 + ], + "score": 0.85, + "latex": "L _ { a d v } ( X _ { u } ) = \\mathbb { E } _ { \\mathbf { x _ { u } } \\sim X _ { u } } [ d ( C _ { 1 } ( G ( \\mathbf { x _ { u } } ) ) , C _ { 2 } ( G ( \\mathbf { x _ { u } } ) ) ) ]" + }, + { + "category_id": 13, + "poly": [ + 980, + 1729, + 1005, + 1729, + 1005, + 1755, + 980, + 1755 + ], + "score": 0.83, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 772, + 1652, + 800, + 1652, + 800, + 1678, + 772, + 1678 + ], + "score": 0.82, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 406, + 1760, + 431, + 1760, + 431, + 1786, + 406, + 1786 + ], + "score": 0.78, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 749, + 1324, + 865, + 1324, + 865, + 1353, + 749, + 1353 + ], + "score": 0.77, + "latex": "5 1 2 \\mathrm { x } 1 0 2 4" + }, + { + "category_id": 13, + "poly": [ + 296, + 1171, + 351, + 1171, + 351, + 1200, + 296, + 1200 + ], + "score": 0.62, + "latex": "2 { \\sim } 4" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 569.0, + 418.0, + 569.0, + 418.0, + 582.0, + 395.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 422.0, + 541.0, + 757.0, + 541.0, + 757.0, + 646.0, + 422.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 472.0, + 1396.0, + 472.0, + 1396.0, + 660.0, + 1128.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 601.0, + 1308.0, + 601.0, + 1308.0, + 610.0, + 1293.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 1038.0, + 1050.0, + 1038.0, + 1050.0, + 1058.0, + 1014.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1159.0, + 1075.0, + 1211.0, + 1075.0, + 1211.0, + 1091.0, + 1159.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1249.0, + 1076.0, + 1301.0, + 1076.0, + 1301.0, + 1093.0, + 1249.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1339.0, + 1074.0, + 1390.0, + 1074.0, + 1390.0, + 1091.0, + 1339.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1179.0, + 1097.0, + 1192.0, + 1097.0, + 1192.0, + 1110.0, + 1179.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1269.0, + 1096.0, + 1281.0, + 1096.0, + 1281.0, + 1109.0, + 1269.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1360.0, + 1097.0, + 1371.0, + 1097.0, + 1371.0, + 1109.0, + 1360.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 1113.0, + 1202.0, + 1113.0, + 1202.0, + 1131.0, + 1169.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 1110.0, + 1293.0, + 1110.0, + 1293.0, + 1131.0, + 1258.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1337.0, + 1105.0, + 1392.0, + 1105.0, + 1392.0, + 1136.0, + 1337.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1306.0, + 1155.0, + 1334.0, + 1155.0, + 1334.0, + 1184.0, + 1306.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1168.0, + 1204.0, + 1202.0, + 1204.0, + 1202.0, + 1226.0, + 1168.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1315.0, + 1241.0, + 1324.0, + 1241.0, + 1324.0, + 1251.0, + 1315.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 1248.0, + 1346.0, + 1248.0, + 1346.0, + 1268.0, + 1293.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1305.0, + 1262.0, + 1337.0, + 1262.0, + 1337.0, + 1279.0, + 1305.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1315.0, + 1280.0, + 1324.0, + 1280.0, + 1324.0, + 1290.0, + 1315.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1240.0, + 1299.0, + 1261.0, + 1299.0, + 1261.0, + 1321.0, + 1240.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 807.0, + 1404.0, + 807.0, + 1404.0, + 847.0, + 293.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 840.0, + 1405.0, + 840.0, + 1405.0, + 876.0, + 293.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 871.0, + 385.0, + 871.0, + 385.0, + 901.0, + 292.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 1399.0, + 1443.0, + 1399.0, + 1443.0, + 1440.0, + 960.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 1437.0, + 1200.0, + 1437.0, + 1200.0, + 1466.0, + 962.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1060.0, + 803.0, + 1060.0, + 803.0, + 1105.0, + 293.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1518.0, + 976.0, + 1518.0, + 976.0, + 1562.0, + 293.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1108.0, + 943.0, + 1108.0, + 943.0, + 1142.0, + 296.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1140.0, + 944.0, + 1140.0, + 944.0, + 1170.0, + 296.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1168.0, + 945.0, + 1168.0, + 945.0, + 1204.0, + 352.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1201.0, + 943.0, + 1201.0, + 943.0, + 1232.0, + 293.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1231.0, + 942.0, + 1231.0, + 942.0, + 1263.0, + 295.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1262.0, + 944.0, + 1262.0, + 944.0, + 1295.0, + 294.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1292.0, + 945.0, + 1292.0, + 945.0, + 1325.0, + 293.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1323.0, + 748.0, + 1323.0, + 748.0, + 1355.0, + 294.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 1323.0, + 945.0, + 1323.0, + 945.0, + 1355.0, + 866.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1353.0, + 944.0, + 1353.0, + 944.0, + 1385.0, + 294.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1384.0, + 946.0, + 1384.0, + 946.0, + 1415.0, + 293.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1414.0, + 944.0, + 1414.0, + 944.0, + 1449.0, + 294.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1447.0, + 706.0, + 1447.0, + 706.0, + 1476.0, + 295.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1726.0, + 979.0, + 1726.0, + 979.0, + 1763.0, + 296.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 1726.0, + 1406.0, + 1726.0, + 1406.0, + 1763.0, + 1006.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1756.0, + 405.0, + 1756.0, + 405.0, + 1793.0, + 293.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 1756.0, + 1406.0, + 1756.0, + 1406.0, + 1793.0, + 432.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1784.0, + 1406.0, + 1784.0, + 1406.0, + 1825.0, + 294.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1816.0, + 1406.0, + 1816.0, + 1406.0, + 1857.0, + 292.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1844.0, + 414.0, + 1844.0, + 414.0, + 1887.0, + 293.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1588.0, + 1404.0, + 1588.0, + 1404.0, + 1625.0, + 292.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1619.0, + 1404.0, + 1619.0, + 1404.0, + 1656.0, + 292.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1651.0, + 771.0, + 1651.0, + 771.0, + 1683.0, + 293.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 1651.0, + 1404.0, + 1651.0, + 1404.0, + 1683.0, + 801.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1677.0, + 642.0, + 1677.0, + 642.0, + 1719.0, + 293.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 948.0, + 1404.0, + 948.0, + 1404.0, + 987.0, + 293.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 980.0, + 1406.0, + 980.0, + 1406.0, + 1017.0, + 294.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1012.0, + 470.0, + 1012.0, + 470.0, + 1048.0, + 293.0, + 1048.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1787, + 1403, + 1787, + 1403, + 2035, + 297, + 2035 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1069, + 1403, + 1069, + 1403, + 1225, + 298, + 1225 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1343, + 1403, + 1343, + 1403, + 1498, + 298, + 1498 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1512, + 1403, + 1512, + 1403, + 1636, + 298, + 1636 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1649, + 1404, + 1649, + 1404, + 1774, + 298, + 1774 + ], + "score": 0.977 + }, + { + "category_id": 5, + "poly": [ + 358, + 612, + 1335, + 612, + 1335, + 846, + 358, + 846 + ], + "score": 0.969, + "html": "
SVHN (% errors)CIFAR (% errors)
Labeled Only SDGM (Maalge et al. (2016)16.61 ± 0.24
CatGAN (Springenberg (2015))=19.58±0.46
ALI (Dumoulin et al. (2016))7.42±0.6517.99±1.62
ImpGAN (Salimans et al. (2016))8.11±1.318.63±2.32
Ours6.26±1.0519.63±0.37
" + }, + { + "category_id": 3, + "poly": [ + 298, + 223, + 1387, + 223, + 1387, + 535, + 298, + 535 + ], + "score": 0.968 + }, + { + "category_id": 8, + "poly": [ + 545, + 1280, + 1153, + 1280, + 1153, + 1328, + 545, + 1328 + ], + "score": 0.936 + }, + { + "category_id": 8, + "poly": [ + 561, + 1025, + 1140, + 1025, + 1140, + 1066, + 561, + 1066 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 299, + 1237, + 662, + 1237, + 662, + 1269, + 299, + 1269 + ], + "score": 0.928 + }, + { + "category_id": 9, + "poly": [ + 1353, + 1030, + 1399, + 1030, + 1399, + 1060, + 1353, + 1060 + ], + "score": 0.91 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1285, + 1399, + 1285, + 1399, + 1316, + 1352, + 1316 + ], + "score": 0.905 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 104, + 299, + 104 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.857 + }, + { + "category_id": 4, + "poly": [ + 614, + 554, + 1081, + 554, + 1081, + 588, + 614, + 588 + ], + "score": 0.802 + }, + { + "category_id": 1, + "poly": [ + 292, + 868, + 1403, + 868, + 1403, + 930, + 292, + 930 + ], + "score": 0.789 + }, + { + "category_id": 6, + "poly": [ + 614, + 554, + 1081, + 554, + 1081, + 588, + 614, + 588 + ], + "score": 0.112 + }, + { + "category_id": 13, + "poly": [ + 726, + 1572, + 860, + 1572, + 860, + 1603, + 726, + 1603 + ], + "score": 0.92, + "latex": "2 . 0 \\times 1 . 0 ^ { - 4 }" + }, + { + "category_id": 14, + "poly": [ + 562, + 1026, + 1138, + 1026, + 1138, + 1066, + 562, + 1066 + ], + "score": 0.9, + "latex": "L _ { a d v } ( X _ { g } ) = \\mathbb { E } _ { { \\mathbf { x } } _ { \\mathbf { g } } \\sim X _ { G } } [ d ( C _ { 1 } ( G ( { \\mathbf { x } } _ { \\mathbf { g } } ) ) , C _ { 2 } ( G ( { \\mathbf { x } } _ { \\mathbf { g } } ) ) ) ]" + }, + { + "category_id": 14, + "poly": [ + 544, + 1280, + 1152, + 1280, + 1152, + 1333, + 544, + 1333 + ], + "score": 0.9, + "latex": "\\operatorname* { m i n } _ { G } L _ { a d v } ( X _ { g } ) + | | \\mathbb { E } _ { x _ { g } \\sim X _ { g } } f ( \\mathbf { x _ { g } } ) - \\mathbb { E } _ { \\mathbf { x _ { u } } \\sim X _ { u } } f ( \\mathbf { x _ { u } } ) | | ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1187, + 1071, + 1225, + 1071, + 1225, + 1104, + 1187, + 1104 + ], + "score": 0.89, + "latex": "X _ { g }" + }, + { + "category_id": 13, + "poly": [ + 371, + 1071, + 413, + 1071, + 413, + 1100, + 371, + 1100 + ], + "score": 0.89, + "latex": "X _ { L }" + }, + { + "category_id": 13, + "poly": [ + 838, + 1071, + 878, + 1071, + 878, + 1100, + 838, + 1100 + ], + "score": 0.88, + "latex": "X _ { u }" + }, + { + "category_id": 13, + "poly": [ + 485, + 1240, + 510, + 1240, + 510, + 1266, + 485, + 1266 + ], + "score": 0.84, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 447, + 1102, + 473, + 1102, + 473, + 1129, + 447, + 1129 + ], + "score": 0.82, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 524, + 1101, + 552, + 1101, + 552, + 1128, + 524, + 1128 + ], + "score": 0.82, + "latex": "H" + }, + { + "category_id": 13, + "poly": [ + 1328, + 1437, + 1353, + 1437, + 1353, + 1463, + 1328, + 1463 + ], + "score": 0.82, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 298, + 1469, + 322, + 1469, + 322, + 1494, + 298, + 1494 + ], + "score": 0.79, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1369, + 1652, + 1394, + 1652, + 1394, + 1679, + 1369, + 1679 + ], + "score": 0.76, + "latex": "C" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 227.0, + 673.0, + 227.0, + 673.0, + 255.0, + 301.0, + 255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 231.0, + 779.0, + 231.0, + 779.0, + 252.0, + 727.0, + 252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 249.0, + 720.0, + 249.0, + 720.0, + 285.0, + 301.0, + 285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 257.0, + 783.0, + 257.0, + 783.0, + 279.0, + 730.0, + 279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 277.0, + 572.0, + 277.0, + 572.0, + 311.0, + 297.0, + 311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 279.0, + 815.0, + 279.0, + 815.0, + 311.0, + 627.0, + 311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 312.0, + 408.0, + 312.0, + 408.0, + 333.0, + 338.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 301.0, + 737.0, + 301.0, + 737.0, + 341.0, + 510.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 329.0, + 842.0, + 329.0, + 842.0, + 366.0, + 301.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 362.0, + 492.0, + 362.0, + 492.0, + 391.0, + 457.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 358.0, + 735.0, + 358.0, + 735.0, + 392.0, + 617.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 367.0, + 783.0, + 367.0, + 783.0, + 387.0, + 758.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 389.0, + 366.0, + 389.0, + 366.0, + 415.0, + 311.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 391.0, + 473.0, + 391.0, + 473.0, + 415.0, + 389.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 486.0, + 391.0, + 517.0, + 391.0, + 517.0, + 415.0, + 486.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 387.0, + 629.0, + 387.0, + 629.0, + 418.0, + 554.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 683.0, + 392.0, + 704.0, + 392.0, + 704.0, + 411.0, + 683.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 411.0, + 846.0, + 411.0, + 846.0, + 447.0, + 347.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 440.0, + 734.0, + 440.0, + 734.0, + 472.0, + 302.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 464.0, + 831.0, + 464.0, + 831.0, + 500.0, + 299.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1249.0, + 472.0, + 1274.0, + 472.0, + 1274.0, + 492.0, + 1249.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 509.0, + 500.0, + 627.0, + 500.0, + 627.0, + 536.0, + 509.0, + 536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 496.0, + 1188.0, + 496.0, + 1188.0, + 537.0, + 1037.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 817.0, + 72.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 607.0, + 552.0, + 1082.0, + 552.0, + 1082.0, + 592.0, + 607.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 607.0, + 552.0, + 1082.0, + 552.0, + 1082.0, + 592.0, + 607.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1788.0, + 1404.0, + 1788.0, + 1404.0, + 1824.0, + 294.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1822.0, + 1405.0, + 1822.0, + 1405.0, + 1855.0, + 293.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1849.0, + 1403.0, + 1849.0, + 1403.0, + 1886.0, + 294.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1883.0, + 1404.0, + 1883.0, + 1404.0, + 1913.0, + 295.0, + 1913.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": [ + 293.0, + 1942.0, + 1405.0, + 1942.0, + 1405.0, + 1976.0, + 293.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1973.0, + 1406.0, + 1973.0, + 1406.0, + 2005.0, + 292.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 2002.0, + 1406.0, + 2002.0, + 1406.0, + 2038.0, + 292.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1070.0, + 370.0, + 1070.0, + 370.0, + 1103.0, + 296.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 1070.0, + 837.0, + 1070.0, + 837.0, + 1103.0, + 414.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 1070.0, + 1186.0, + 1070.0, + 1186.0, + 1103.0, + 879.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 1070.0, + 1404.0, + 1070.0, + 1404.0, + 1103.0, + 1226.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1099.0, + 446.0, + 1099.0, + 446.0, + 1136.0, + 293.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 1099.0, + 523.0, + 1099.0, + 523.0, + 1136.0, + 474.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 553.0, + 1099.0, + 1405.0, + 1099.0, + 1405.0, + 1136.0, + 553.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1130.0, + 1404.0, + 1130.0, + 1404.0, + 1163.0, + 296.0, + 1163.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1162.0, + 1404.0, + 1162.0, + 1404.0, + 1195.0, + 296.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1190.0, + 1334.0, + 1190.0, + 1334.0, + 1228.0, + 292.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1345.0, + 1405.0, + 1345.0, + 1405.0, + 1378.0, + 296.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1373.0, + 1404.0, + 1373.0, + 1404.0, + 1409.0, + 294.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1402.0, + 1405.0, + 1402.0, + 1405.0, + 1442.0, + 293.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1434.0, + 1327.0, + 1434.0, + 1327.0, + 1471.0, + 293.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 1434.0, + 1405.0, + 1434.0, + 1405.0, + 1471.0, + 1354.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1466.0, + 297.0, + 1466.0, + 297.0, + 1500.0, + 293.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1466.0, + 584.0, + 1466.0, + 584.0, + 1500.0, + 323.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1511.0, + 1407.0, + 1511.0, + 1407.0, + 1548.0, + 293.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1542.0, + 1407.0, + 1542.0, + 1407.0, + 1579.0, + 293.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1572.0, + 725.0, + 1572.0, + 725.0, + 1610.0, + 293.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 1572.0, + 1407.0, + 1572.0, + 1407.0, + 1610.0, + 861.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1603.0, + 1261.0, + 1603.0, + 1261.0, + 1641.0, + 293.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1651.0, + 1368.0, + 1651.0, + 1368.0, + 1683.0, + 292.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 1651.0, + 1404.0, + 1651.0, + 1404.0, + 1683.0, + 1395.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1682.0, + 1404.0, + 1682.0, + 1404.0, + 1715.0, + 294.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1714.0, + 1404.0, + 1714.0, + 1404.0, + 1747.0, + 294.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1743.0, + 1372.0, + 1743.0, + 1372.0, + 1776.0, + 294.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1233.0, + 484.0, + 1233.0, + 484.0, + 1276.0, + 295.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 511.0, + 1233.0, + 667.0, + 1233.0, + 667.0, + 1276.0, + 511.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 869.0, + 1401.0, + 869.0, + 1401.0, + 900.0, + 296.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 898.0, + 1342.0, + 898.0, + 1342.0, + 933.0, + 295.0, + 933.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 229, + 1403, + 229, + 1403, + 413, + 298, + 413 + ], + "score": 0.974 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.878 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.834 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 230.0, + 1405.0, + 230.0, + 1405.0, + 265.0, + 296.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 263.0, + 1404.0, + 263.0, + 1404.0, + 294.0, + 296.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 289.0, + 1407.0, + 289.0, + 1407.0, + 327.0, + 292.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 320.0, + 1407.0, + 320.0, + 1407.0, + 358.0, + 292.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 348.0, + 1407.0, + 348.0, + 1407.0, + 391.0, + 292.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 383.0, + 584.0, + 383.0, + 584.0, + 415.0, + 297.0, + 415.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/HJWGdbbCW/images/500c4e82d7c70a53a90aba7e6097cefcf2952fcef850a953da75af3119384acf.jpg b/parse/train/HJWGdbbCW/images/500c4e82d7c70a53a90aba7e6097cefcf2952fcef850a953da75af3119384acf.jpg new file mode 100644 index 0000000000000000000000000000000000000000..74ec08e073ea91da38d3a74fbacc88da75f10faf --- /dev/null +++ b/parse/train/HJWGdbbCW/images/500c4e82d7c70a53a90aba7e6097cefcf2952fcef850a953da75af3119384acf.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df7723e1d491440dfe77d474de33ce11f5df8b3b322337d081ed5d2fff396893 +size 69726 diff --git a/parse/train/HJWGdbbCW/images/9c4f8866da7ee59654d286273a583adf6d8943ddf467cd570a7d215ca21a7ec9.jpg b/parse/train/HJWGdbbCW/images/9c4f8866da7ee59654d286273a583adf6d8943ddf467cd570a7d215ca21a7ec9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f8edc6fa0cca69ebb6cbe38c0275d0c658550a96 --- /dev/null +++ b/parse/train/HJWGdbbCW/images/9c4f8866da7ee59654d286273a583adf6d8943ddf467cd570a7d215ca21a7ec9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddc2d585dda336f1dd3a8271d8ba8e7de8aa9fa96120ddb1aff0d2b750c17c5a +size 7098 diff --git a/parse/train/HJWGdbbCW/images/b09e15623db4471ab802155e90a36c22662af4905306191d0f28a746ce0b836e.jpg b/parse/train/HJWGdbbCW/images/b09e15623db4471ab802155e90a36c22662af4905306191d0f28a746ce0b836e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dfe1e7a3715ba074c140f20c856c80168c5e72a3 --- /dev/null +++ b/parse/train/HJWGdbbCW/images/b09e15623db4471ab802155e90a36c22662af4905306191d0f28a746ce0b836e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec7b0949d4391bb440359086cf29839e36f5eac2696a099a4eba5a17578ac878 +size 6304 diff --git a/parse/train/HJg_ECEKDr/images/022c82203a080f31065c9e19aade071677755fad5c414da6010eba47a5fc3522.jpg b/parse/train/HJg_ECEKDr/images/022c82203a080f31065c9e19aade071677755fad5c414da6010eba47a5fc3522.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6db0d2a575886667957de0e5ab230024e8eec126 --- /dev/null +++ b/parse/train/HJg_ECEKDr/images/022c82203a080f31065c9e19aade071677755fad5c414da6010eba47a5fc3522.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d57587dfad01040b1ebfd3475274fa7fef68b80d2c7a4a26a89303caaa9adca0 +size 27501 diff --git a/parse/train/HJg_ECEKDr/images/3bb569aff7ce7ba27d1ff13d5c7fd17dea3b3898a66af4476e10cac105840dfd.jpg b/parse/train/HJg_ECEKDr/images/3bb569aff7ce7ba27d1ff13d5c7fd17dea3b3898a66af4476e10cac105840dfd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dc257b6ca1b208776d534eff73d43729a8373ffd --- /dev/null +++ b/parse/train/HJg_ECEKDr/images/3bb569aff7ce7ba27d1ff13d5c7fd17dea3b3898a66af4476e10cac105840dfd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41e3a4864a15f4df8636d96995d54ecd42977d181328359ed5d811fa4506a825 +size 38227 diff --git a/parse/train/HJg_ECEKDr/images/49d277cb5ff50572e19fecd88514b1c85060ffe65ddce0f9941da202d04ac620.jpg b/parse/train/HJg_ECEKDr/images/49d277cb5ff50572e19fecd88514b1c85060ffe65ddce0f9941da202d04ac620.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0b86d966b766a89bd9270af1a5470450e4561dab --- /dev/null +++ b/parse/train/HJg_ECEKDr/images/49d277cb5ff50572e19fecd88514b1c85060ffe65ddce0f9941da202d04ac620.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aa99cda4b75f87ce799410dc126462213c24a2062cf1d1d7456e3d9a5cf4adb +size 127635 diff --git a/parse/train/HJg_ECEKDr/images/4d9cfb5ecebbda63babb0143328f1ad83079642b94679822cb10e2b92b46abdf.jpg b/parse/train/HJg_ECEKDr/images/4d9cfb5ecebbda63babb0143328f1ad83079642b94679822cb10e2b92b46abdf.jpg new file mode 100644 index 0000000000000000000000000000000000000000..52cd61a5924ab834b1cc8b3188a13ecfa44175f1 --- /dev/null +++ b/parse/train/HJg_ECEKDr/images/4d9cfb5ecebbda63babb0143328f1ad83079642b94679822cb10e2b92b46abdf.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:420f5572c9914e0d216c719c76a718413cb03410c6081daf46aff7abe7eeab94 +size 61233 diff --git a/parse/train/HJg_ECEKDr/images/5048a5bc42fc2dcce91992eda84da5a48fad172d349edf65eb0135ee0dfb2603.jpg b/parse/train/HJg_ECEKDr/images/5048a5bc42fc2dcce91992eda84da5a48fad172d349edf65eb0135ee0dfb2603.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7229758c1292b4f647e6b3d2b3c5f121aaaa36f3 --- /dev/null +++ b/parse/train/HJg_ECEKDr/images/5048a5bc42fc2dcce91992eda84da5a48fad172d349edf65eb0135ee0dfb2603.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0e899a68cf58de42bf108554458179470d96c7ba0b8df8fa7b92e24c9b77730 +size 14480 diff --git a/parse/train/HJg_ECEKDr/images/565ff1ccc6be0d09a8ec44f067c7bd3b07457c35e75f20b17306d92d25e38033.jpg b/parse/train/HJg_ECEKDr/images/565ff1ccc6be0d09a8ec44f067c7bd3b07457c35e75f20b17306d92d25e38033.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e393b08f66700640acfbb6f15e27b87aed736b90 --- /dev/null +++ b/parse/train/HJg_ECEKDr/images/565ff1ccc6be0d09a8ec44f067c7bd3b07457c35e75f20b17306d92d25e38033.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04d812d771f6299718ae13ecc8502a280cd0cfe1022d03958206cc68eb336b4a +size 31504 diff --git a/parse/train/HJg_ECEKDr/images/646982993ae91d43ef39ac7565dcbf611301189c553b124cd0990d013de0f47e.jpg b/parse/train/HJg_ECEKDr/images/646982993ae91d43ef39ac7565dcbf611301189c553b124cd0990d013de0f47e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bee50b0f3c6614518fa324b1bf9a84bf6cc8e2cf --- /dev/null +++ b/parse/train/HJg_ECEKDr/images/646982993ae91d43ef39ac7565dcbf611301189c553b124cd0990d013de0f47e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d608df770609be001a439efa7ef061b0160e130ea953e7f043a6be2b451ffb2f +size 33689 diff --git a/parse/train/HJg_ECEKDr/images/80c02265c2a3f6a08bffd24c1ddff3b2b3a7007a62fc76ac329482bd3d5d8630.jpg b/parse/train/HJg_ECEKDr/images/80c02265c2a3f6a08bffd24c1ddff3b2b3a7007a62fc76ac329482bd3d5d8630.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c99e27b5d60ddeaab0915649911f1f290de3454f --- /dev/null +++ b/parse/train/HJg_ECEKDr/images/80c02265c2a3f6a08bffd24c1ddff3b2b3a7007a62fc76ac329482bd3d5d8630.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:128a57ee2d3ad0538640e3b9e6d3f68d439b2cca170e84476dda81631ef24dc1 +size 61664 diff --git a/parse/train/HJg_ECEKDr/images/928b750db1d9353a8599f9922a2465abd5255f1b26559f9c1d702c4203f6909d.jpg b/parse/train/HJg_ECEKDr/images/928b750db1d9353a8599f9922a2465abd5255f1b26559f9c1d702c4203f6909d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b5e41b6e7ac35ac23889032626793bdf5b7c6195 --- /dev/null +++ b/parse/train/HJg_ECEKDr/images/928b750db1d9353a8599f9922a2465abd5255f1b26559f9c1d702c4203f6909d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b618f78a3f56242eed05541c3751b5161be0ce220e34610d45836133467b9d26 +size 37777 diff --git a/parse/train/HJg_ECEKDr/images/97ee5c78b530acf710cd8c6412a986e8ce15c10d8c5753395a499ad2b9042422.jpg b/parse/train/HJg_ECEKDr/images/97ee5c78b530acf710cd8c6412a986e8ce15c10d8c5753395a499ad2b9042422.jpg new file mode 100644 index 0000000000000000000000000000000000000000..27a3e31fbf3c6ca99e8419194a1c71e3150d9f1a --- /dev/null +++ b/parse/train/HJg_ECEKDr/images/97ee5c78b530acf710cd8c6412a986e8ce15c10d8c5753395a499ad2b9042422.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ac149747ecd284ad630ce654794cda587b758d587f659b1d1bb66683dd16dbf +size 23531 diff --git a/parse/train/HJg_ECEKDr/images/9b996b6986691c1738f020ec4f2d0671edb64b639480d05c302ff2f90234eecf.jpg b/parse/train/HJg_ECEKDr/images/9b996b6986691c1738f020ec4f2d0671edb64b639480d05c302ff2f90234eecf.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d1f4fd4b2ca34931d0c0b33eaa129d4f2fae6c38 --- /dev/null +++ b/parse/train/HJg_ECEKDr/images/9b996b6986691c1738f020ec4f2d0671edb64b639480d05c302ff2f90234eecf.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdf39d9d382d0f03c6b143effcd7ff32f3324cf2959781d3ed91d89866d3830b +size 28867 diff --git a/parse/train/HJg_ECEKDr/images/9ffb8c381509897e48fa8227a029e95396f2438001770cd39001f90f9ce3a700.jpg b/parse/train/HJg_ECEKDr/images/9ffb8c381509897e48fa8227a029e95396f2438001770cd39001f90f9ce3a700.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7e7c813c403beae90c6d31ba968152317c81ec43 --- /dev/null +++ b/parse/train/HJg_ECEKDr/images/9ffb8c381509897e48fa8227a029e95396f2438001770cd39001f90f9ce3a700.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e65b257d7530b31341e1ea8a38426d11cd852ac87874bfe64f833a5bf46339d1 +size 12744 diff --git a/parse/train/HJg_ECEKDr/images/e3645cc371df475d99759dfb87bf3c100ce93f9621fa407111791ba0fabe5ae7.jpg b/parse/train/HJg_ECEKDr/images/e3645cc371df475d99759dfb87bf3c100ce93f9621fa407111791ba0fabe5ae7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e90037ef24b2a7f4ce3f5cb7fd081d333a806bd6 --- /dev/null +++ b/parse/train/HJg_ECEKDr/images/e3645cc371df475d99759dfb87bf3c100ce93f9621fa407111791ba0fabe5ae7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71613d6def9f1fc06345f079648e89ef9659439a7cbcf66dffe3bd28a62ba649 +size 26536 diff --git a/parse/train/HJg_ECEKDr/images/e80434e7c6b3240e90c59a86262528fe9791774dccdba3c23bf28ad9dc689d14.jpg b/parse/train/HJg_ECEKDr/images/e80434e7c6b3240e90c59a86262528fe9791774dccdba3c23bf28ad9dc689d14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..16b148debc1e2cad67dbfcefd2d4ff356465bf4f --- /dev/null +++ b/parse/train/HJg_ECEKDr/images/e80434e7c6b3240e90c59a86262528fe9791774dccdba3c23bf28ad9dc689d14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5f7cf1fb6dc8b03a91e8de857fb2e59d52f09134a6ea0a920c26811636e1746 +size 7124 diff --git a/parse/train/HJg_ECEKDr/images/e893f483d7ce90d347e517ed0e6fc5fc2b292958ead6f238da3df3398eb15144.jpg b/parse/train/HJg_ECEKDr/images/e893f483d7ce90d347e517ed0e6fc5fc2b292958ead6f238da3df3398eb15144.jpg new file mode 100644 index 0000000000000000000000000000000000000000..db2cf62c49ab06fabc8ba654df6cf8ce1a9164b6 --- /dev/null +++ b/parse/train/HJg_ECEKDr/images/e893f483d7ce90d347e517ed0e6fc5fc2b292958ead6f238da3df3398eb15144.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30c3db97001e82a0fa1be7db6badfc7273cae9bf12d095258de16ffdbcf2912d +size 19211 diff --git a/parse/train/HJg_ECEKDr/images/f937644ce92c2bd8d0834d14798c739faf67223a1512c5138e727629cc1896fd.jpg b/parse/train/HJg_ECEKDr/images/f937644ce92c2bd8d0834d14798c739faf67223a1512c5138e727629cc1896fd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..df0de379225272cf38162e1f9edf4b62d7f2a75e --- /dev/null +++ b/parse/train/HJg_ECEKDr/images/f937644ce92c2bd8d0834d14798c739faf67223a1512c5138e727629cc1896fd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6149bc0f2392c3d9c0c57a6426c38836202a3d377ea4aeb509c24c483f5edee2 +size 78243 diff --git a/parse/train/HJx-3grYDB/images/00268ff314a537ae1a3fe0731b37738303ac2577fc81638b58fd531b90140442.jpg b/parse/train/HJx-3grYDB/images/00268ff314a537ae1a3fe0731b37738303ac2577fc81638b58fd531b90140442.jpg new file mode 100644 index 0000000000000000000000000000000000000000..af66365caa686fdc2cfc977cdd6ead72e7527da7 --- /dev/null +++ b/parse/train/HJx-3grYDB/images/00268ff314a537ae1a3fe0731b37738303ac2577fc81638b58fd531b90140442.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55e89e1fb0f829f7e14be861f76a1c96cfd57928a6b4d8b393e4ea000f7d8f88 +size 42693 diff --git a/parse/train/HJx-3grYDB/images/014a831f89971af1d4b38ee009f53ad6b978c56e6e75402d02acf54f674a4c8d.jpg b/parse/train/HJx-3grYDB/images/014a831f89971af1d4b38ee009f53ad6b978c56e6e75402d02acf54f674a4c8d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a5dddebbc6a45957d3e8b26a2ec8a447c846c5f6 --- /dev/null +++ b/parse/train/HJx-3grYDB/images/014a831f89971af1d4b38ee009f53ad6b978c56e6e75402d02acf54f674a4c8d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b723891ccf1c8abf494402703f421db7e7e7ec266da35936dfcb06e5cf596ed +size 20042 diff --git a/parse/train/HJx-3grYDB/images/054e832944b5fd50cc6886d4081af179c5519a9e0b24c6d909210976319c51ef.jpg b/parse/train/HJx-3grYDB/images/054e832944b5fd50cc6886d4081af179c5519a9e0b24c6d909210976319c51ef.jpg new file mode 100644 index 0000000000000000000000000000000000000000..935fb0e7c3da1d8a5d8e360cf5c01866b22c1029 --- /dev/null +++ b/parse/train/HJx-3grYDB/images/054e832944b5fd50cc6886d4081af179c5519a9e0b24c6d909210976319c51ef.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:050145a8b3ccad99fc2631825e5e45ba4dde4baf51abad797b47cad93b03f2b9 +size 10606 diff --git a/parse/train/HJx-3grYDB/images/0b9b6ea3ede8afe0b06ae9e3c78611b9aa688625417abc6dfd6eb277ecf15018.jpg b/parse/train/HJx-3grYDB/images/0b9b6ea3ede8afe0b06ae9e3c78611b9aa688625417abc6dfd6eb277ecf15018.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2f7b501e8907443fc552acbc70533e0cb97f7cb4 --- /dev/null +++ b/parse/train/HJx-3grYDB/images/0b9b6ea3ede8afe0b06ae9e3c78611b9aa688625417abc6dfd6eb277ecf15018.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9cad3e789f1422031e163659b71db6b6a7f5fa0a1ac621b8d21e4fa0a7090fb +size 105121 diff --git a/parse/train/HJx-3grYDB/images/17fff200f9d3de5633cd253c5fa7ded2978e5a4c5ab127e2d1ec0c37e69ee15b.jpg b/parse/train/HJx-3grYDB/images/17fff200f9d3de5633cd253c5fa7ded2978e5a4c5ab127e2d1ec0c37e69ee15b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8300dff794ca4e98a58b65fac6ee3a28f494f0c0 --- /dev/null +++ b/parse/train/HJx-3grYDB/images/17fff200f9d3de5633cd253c5fa7ded2978e5a4c5ab127e2d1ec0c37e69ee15b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50a1bb4af3d7027820c0ff753cacd01bce99728f5f3b88a89c7cf2463c846d05 +size 14653 diff --git a/parse/train/HJx-3grYDB/images/27eefa79e24e86583e48b47c2fd00c9503591db86e7dba1590ef1f86876845cb.jpg b/parse/train/HJx-3grYDB/images/27eefa79e24e86583e48b47c2fd00c9503591db86e7dba1590ef1f86876845cb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3f74b5b06991b1637060804b5471281b0113f300 --- /dev/null +++ b/parse/train/HJx-3grYDB/images/27eefa79e24e86583e48b47c2fd00c9503591db86e7dba1590ef1f86876845cb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f4546d1125b6201062069316630464d05520cbca1470e46510170f5241f5737 +size 116209 diff --git a/parse/train/HJx-3grYDB/images/305b423577106f0b92d9a6846040400900dc73e9a18cf543d21da825454279e8.jpg b/parse/train/HJx-3grYDB/images/305b423577106f0b92d9a6846040400900dc73e9a18cf543d21da825454279e8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..75b4fbe33b70fae9ef00417fdae14424462323b5 --- /dev/null +++ b/parse/train/HJx-3grYDB/images/305b423577106f0b92d9a6846040400900dc73e9a18cf543d21da825454279e8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be0c49cc415ba8834e6ab3aed06de02be134729992e1b103109b62c7fa185097 +size 9835 diff --git a/parse/train/HJx-3grYDB/images/33af5199e5c3df15e2db82b60c02e23ec355cdb8567afa2f8b778965a83ca7b6.jpg b/parse/train/HJx-3grYDB/images/33af5199e5c3df15e2db82b60c02e23ec355cdb8567afa2f8b778965a83ca7b6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..259a3915f5a2041966806ccfdbfce44405af3014 --- /dev/null +++ b/parse/train/HJx-3grYDB/images/33af5199e5c3df15e2db82b60c02e23ec355cdb8567afa2f8b778965a83ca7b6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b9e354cdb4c935d0f3f5500412d0c090e8dcc5835f65f66d32c8481f15e8b77 +size 7271 diff --git a/parse/train/HJx-3grYDB/images/39990c92a2b6014799dcd5d911e5ae31de4f79d5e40ab81f0f6e249bc9299d03.jpg b/parse/train/HJx-3grYDB/images/39990c92a2b6014799dcd5d911e5ae31de4f79d5e40ab81f0f6e249bc9299d03.jpg new file mode 100644 index 0000000000000000000000000000000000000000..81bdeb6a4112ea5134d210c1456286546e154cbd --- /dev/null +++ b/parse/train/HJx-3grYDB/images/39990c92a2b6014799dcd5d911e5ae31de4f79d5e40ab81f0f6e249bc9299d03.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:775fa13db3a249f03fcba75b84c62e5194f95d9aa0e1d6ed41e5c001837b9d20 +size 12355 diff --git a/parse/train/HJx-3grYDB/images/46df6cad5f37d6aa53ac7b020727ca2f6d1a0ed1fe189527100a0485207df2c5.jpg b/parse/train/HJx-3grYDB/images/46df6cad5f37d6aa53ac7b020727ca2f6d1a0ed1fe189527100a0485207df2c5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b3588bdcd0af4e4b5558287346691c62ce0b1e67 --- /dev/null +++ b/parse/train/HJx-3grYDB/images/46df6cad5f37d6aa53ac7b020727ca2f6d1a0ed1fe189527100a0485207df2c5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb4805f4cb86df72299ec7864ca2488d64ae3c21228e7e4108c6a60b3e737d03 +size 5415 diff --git a/parse/train/HJx-3grYDB/images/4c377d1905e2b0ffb6acd283284e267da218fd4ac3cfd8cf119e3429e1d8cb21.jpg b/parse/train/HJx-3grYDB/images/4c377d1905e2b0ffb6acd283284e267da218fd4ac3cfd8cf119e3429e1d8cb21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2840947a4970cbf7dc928c342c1f0330e4433ac8 --- /dev/null +++ b/parse/train/HJx-3grYDB/images/4c377d1905e2b0ffb6acd283284e267da218fd4ac3cfd8cf119e3429e1d8cb21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eceaf2f276cf21c7f7db1be5e0facea105a35975fd949df231e5263e2a270ef4 +size 24164 diff --git a/parse/train/HJx-3grYDB/images/4e1ad3ca9c7f554550eec18375a059f0500163e00030a2afdd060a266ff3b266.jpg b/parse/train/HJx-3grYDB/images/4e1ad3ca9c7f554550eec18375a059f0500163e00030a2afdd060a266ff3b266.jpg new file mode 100644 index 0000000000000000000000000000000000000000..05fdd5999f2f7f2e4f6af892722692f3186c57b4 --- /dev/null +++ b/parse/train/HJx-3grYDB/images/4e1ad3ca9c7f554550eec18375a059f0500163e00030a2afdd060a266ff3b266.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44e1f32e4c4138d3e8b9999d5c762a8ceb787e6dc254b6e188165b71301a0081 +size 33396 diff --git a/parse/train/HJx-3grYDB/images/5f45e6d47598e7d75f3b0adab1c9a58070c4aa7539cc2d45f456d4e7cbac2868.jpg b/parse/train/HJx-3grYDB/images/5f45e6d47598e7d75f3b0adab1c9a58070c4aa7539cc2d45f456d4e7cbac2868.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d56ad45f965e2af0639d604c23e67def751808c --- /dev/null +++ b/parse/train/HJx-3grYDB/images/5f45e6d47598e7d75f3b0adab1c9a58070c4aa7539cc2d45f456d4e7cbac2868.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3881cd4ea92b5c4e5cffb9c79a2a58c2194ec78ac22a2e715da34e4ff22e8c21 +size 11014 diff --git a/parse/train/HJx-3grYDB/images/63d9ab945e9c02cabfa859366e454e7b3631713344aa910fd5984133e4e41ddd.jpg b/parse/train/HJx-3grYDB/images/63d9ab945e9c02cabfa859366e454e7b3631713344aa910fd5984133e4e41ddd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a4bdcfb81881fb8c04bd5db8171e070c39dc1806 --- /dev/null +++ b/parse/train/HJx-3grYDB/images/63d9ab945e9c02cabfa859366e454e7b3631713344aa910fd5984133e4e41ddd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:248e2f7e44a9d7ec50c3d589142628e0e4090b9e6dc655c838a01bb30ace5618 +size 18299 diff --git a/parse/train/HJx-3grYDB/images/697d563495f9bc44830ce69fbd63ac8f151af2361ff1a0400d421b2726c9f5a0.jpg b/parse/train/HJx-3grYDB/images/697d563495f9bc44830ce69fbd63ac8f151af2361ff1a0400d421b2726c9f5a0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..45494866a12266528044ecf1f6b4c325ed057622 --- /dev/null +++ b/parse/train/HJx-3grYDB/images/697d563495f9bc44830ce69fbd63ac8f151af2361ff1a0400d421b2726c9f5a0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1621512d86bfc8e82e4322d024753df5ea38928a0ca759bb71e92bcb7e5c189 +size 46890 diff --git a/parse/train/HJx-3grYDB/images/6bf3d6a764a3b180862d2f7ab36e26a25e81698603806678b3d4aa76ef03ab68.jpg b/parse/train/HJx-3grYDB/images/6bf3d6a764a3b180862d2f7ab36e26a25e81698603806678b3d4aa76ef03ab68.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c55b60246fa3288ac9cef9ee59036734f92e290d --- /dev/null +++ b/parse/train/HJx-3grYDB/images/6bf3d6a764a3b180862d2f7ab36e26a25e81698603806678b3d4aa76ef03ab68.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0de41a548d5090259af0810e5451a9a1771c8b61dab0bd09279a0dd2299bb76 +size 13298 diff --git a/parse/train/HJx-3grYDB/images/7e11c38777d9f0fc6a2b9a94fea1422876b595a2c8fc8817dbf8bfb6df47da57.jpg b/parse/train/HJx-3grYDB/images/7e11c38777d9f0fc6a2b9a94fea1422876b595a2c8fc8817dbf8bfb6df47da57.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fb01fa2d869478261ee9c2254b5ce52dac50e3bb --- /dev/null +++ b/parse/train/HJx-3grYDB/images/7e11c38777d9f0fc6a2b9a94fea1422876b595a2c8fc8817dbf8bfb6df47da57.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44117363fb9d404ec7b143fec3033add0e5ed8ea85d5c5197564308f51ca6188 +size 113786 diff --git a/parse/train/HJx-3grYDB/images/832064caa78101e55f02e76ac2dd97ff9b48c0fbe27def3509fea316d8aeede0.jpg b/parse/train/HJx-3grYDB/images/832064caa78101e55f02e76ac2dd97ff9b48c0fbe27def3509fea316d8aeede0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3328e4e099866cf5e3205e22f4b842a083ac5819 --- /dev/null +++ b/parse/train/HJx-3grYDB/images/832064caa78101e55f02e76ac2dd97ff9b48c0fbe27def3509fea316d8aeede0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b7a69eb4973d6f2bf1ba2f8434331338b699d99c1554e23d210e6fa2c560d28 +size 56080 diff --git a/parse/train/HJx-3grYDB/images/8405f5e7b2629947c5d278544b323e5f1a9128168043701266922530e4e5066d.jpg b/parse/train/HJx-3grYDB/images/8405f5e7b2629947c5d278544b323e5f1a9128168043701266922530e4e5066d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d7933aa9c138ffad5da2da7aad3baaf692168331 --- /dev/null +++ b/parse/train/HJx-3grYDB/images/8405f5e7b2629947c5d278544b323e5f1a9128168043701266922530e4e5066d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5428bcd76e7760aba44c77a5753eba121d94a9bea31a170eec3abdcfbf2a1c32 +size 7950 diff --git a/parse/train/HJx-3grYDB/images/a7268b36e6c263c29570cbdf990e701d3acd5f4843059f301acaf97d42e80666.jpg b/parse/train/HJx-3grYDB/images/a7268b36e6c263c29570cbdf990e701d3acd5f4843059f301acaf97d42e80666.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9b13f117b252cd99f085bbdf50d5af63cfc81289 --- /dev/null +++ b/parse/train/HJx-3grYDB/images/a7268b36e6c263c29570cbdf990e701d3acd5f4843059f301acaf97d42e80666.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fa6ab1e56b5a4a7457262c104b6569b3873be3d91a75d20d741f87d5681eb38 +size 12271 diff --git a/parse/train/HJx-3grYDB/images/af28aa81ce813b3f5f9c978bf5b815f556e7f0ed15c799cfb5e93f787061147d.jpg b/parse/train/HJx-3grYDB/images/af28aa81ce813b3f5f9c978bf5b815f556e7f0ed15c799cfb5e93f787061147d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e6b4bd46c786fc7ea698386797dec2ba5364b43c --- /dev/null +++ b/parse/train/HJx-3grYDB/images/af28aa81ce813b3f5f9c978bf5b815f556e7f0ed15c799cfb5e93f787061147d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0c758cc2cf6eb23532aba63367c5809827ba4bfbf7b7d3c72b659f76291fb84 +size 109592 diff --git a/parse/train/HJx-3grYDB/images/afba870d2a2086169d01038c92fb7cb153cbf0735ee52dc3947f1b0e193a81b7.jpg b/parse/train/HJx-3grYDB/images/afba870d2a2086169d01038c92fb7cb153cbf0735ee52dc3947f1b0e193a81b7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1858b9707b98462fb506d3f88710e45dbab3e277 --- /dev/null +++ b/parse/train/HJx-3grYDB/images/afba870d2a2086169d01038c92fb7cb153cbf0735ee52dc3947f1b0e193a81b7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a17858d30757353068ebba4764bebe039d46cb955bd65e04559269256895b810 +size 77039 diff --git a/parse/train/HJx-3grYDB/images/c85a259dd622d9f8e76e0344646cbc0610a9d596d517aa5bd237c4b228e9b98d.jpg b/parse/train/HJx-3grYDB/images/c85a259dd622d9f8e76e0344646cbc0610a9d596d517aa5bd237c4b228e9b98d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..42794be4d4724884775d8e577da05e998278af0d --- /dev/null +++ b/parse/train/HJx-3grYDB/images/c85a259dd622d9f8e76e0344646cbc0610a9d596d517aa5bd237c4b228e9b98d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:222bc851946b0ebfc612574bb68cb840c6f4eb4b21ffea5784cb5805053babef +size 53977 diff --git a/parse/train/HJx-3grYDB/images/ce0c797741733d2e79c6c0370c0bb35f936cca8248e7c9807de9388b027eb6da.jpg b/parse/train/HJx-3grYDB/images/ce0c797741733d2e79c6c0370c0bb35f936cca8248e7c9807de9388b027eb6da.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7b8220069e3e8e7c38ff7fd181d028731b0c136f --- /dev/null +++ b/parse/train/HJx-3grYDB/images/ce0c797741733d2e79c6c0370c0bb35f936cca8248e7c9807de9388b027eb6da.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5c79d559797238ad2e0e43dea4a6e3315e8fc610fb4d5f2af2b94e61942a97e +size 84253 diff --git a/parse/train/HJx-3grYDB/images/ea732d9e1b084543bf820030dd3c165fbccff08e937d6f14a97a6a8a4ed3921b.jpg b/parse/train/HJx-3grYDB/images/ea732d9e1b084543bf820030dd3c165fbccff08e937d6f14a97a6a8a4ed3921b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1e14921492f9047c55642891e2b9976e7c778db8 --- /dev/null +++ b/parse/train/HJx-3grYDB/images/ea732d9e1b084543bf820030dd3c165fbccff08e937d6f14a97a6a8a4ed3921b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53ae686c98bd5b7e50628c3994df839a862a133c9ba54e5bea24e4bc26d944f3 +size 3842 diff --git a/parse/train/HygjqjR9Km/images/0b9cc6a3cb30565a8c430c424751bb195cba9c562312d71927069c7774708330.jpg b/parse/train/HygjqjR9Km/images/0b9cc6a3cb30565a8c430c424751bb195cba9c562312d71927069c7774708330.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f9848b825e3f61afc68734755d2d7a8c14862bb5 --- /dev/null +++ b/parse/train/HygjqjR9Km/images/0b9cc6a3cb30565a8c430c424751bb195cba9c562312d71927069c7774708330.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c490af40fc35638f149e82778f86b7c0484f25512d4db4cffa1a53d8fd3f3cb +size 14299 diff --git a/parse/train/HygjqjR9Km/images/125c0f894051cf474131dce971c6665be43dec3a0864a7fd436d1af6276eec99.jpg b/parse/train/HygjqjR9Km/images/125c0f894051cf474131dce971c6665be43dec3a0864a7fd436d1af6276eec99.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1a7e604366e614de3933387557790c90e413c1b1 --- /dev/null +++ b/parse/train/HygjqjR9Km/images/125c0f894051cf474131dce971c6665be43dec3a0864a7fd436d1af6276eec99.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2625d7358307efde8dd8f8ec288640514e6b393120ffef4124c331713318ce4 +size 8668 diff --git a/parse/train/HygjqjR9Km/images/2af5c2c1ae392c7326b2127e5634938432888d2a89009c214b09d4d785bdb7c4.jpg b/parse/train/HygjqjR9Km/images/2af5c2c1ae392c7326b2127e5634938432888d2a89009c214b09d4d785bdb7c4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7a95ee63645b2d983359d0de5d59635eb11315d3 --- /dev/null +++ b/parse/train/HygjqjR9Km/images/2af5c2c1ae392c7326b2127e5634938432888d2a89009c214b09d4d785bdb7c4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50c1ddec51798536a62bfbc814114f64e3223370e48cd432e2aac51b8ed6684d +size 36207 diff --git a/parse/train/HygjqjR9Km/images/2ef43da3639159bcc273911cb5710d427ba04d0b051e1b5bbda8906f84e3e28e.jpg b/parse/train/HygjqjR9Km/images/2ef43da3639159bcc273911cb5710d427ba04d0b051e1b5bbda8906f84e3e28e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ae004fc0fcaac5a2c6079f20b4e4bb70ee7535ee --- /dev/null +++ b/parse/train/HygjqjR9Km/images/2ef43da3639159bcc273911cb5710d427ba04d0b051e1b5bbda8906f84e3e28e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a04b8def0af469c3f22784c0b82600f8ec37ecda6e4586f60666d6aa79f6186 +size 17378 diff --git a/parse/train/HygjqjR9Km/images/30dade280e334bc1a400edf176c6ca299cbfb8cdf55792ebb8d7f724533eb41b.jpg b/parse/train/HygjqjR9Km/images/30dade280e334bc1a400edf176c6ca299cbfb8cdf55792ebb8d7f724533eb41b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8d4dbac4339b821bcd2574dc094d56633f24a86e --- /dev/null +++ b/parse/train/HygjqjR9Km/images/30dade280e334bc1a400edf176c6ca299cbfb8cdf55792ebb8d7f724533eb41b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a4fb272b3413674f05cc8311e7d960689deb2fdd8bd35b27a6b84d380433ee5 +size 49731 diff --git a/parse/train/HygjqjR9Km/images/366d1627daea62a318e5b5b54543d58d77001707233309dc3fdaf09ae1c1b217.jpg b/parse/train/HygjqjR9Km/images/366d1627daea62a318e5b5b54543d58d77001707233309dc3fdaf09ae1c1b217.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c0b8704d1577a8913a22abecdb52cc1bcd3c4e8f --- /dev/null +++ b/parse/train/HygjqjR9Km/images/366d1627daea62a318e5b5b54543d58d77001707233309dc3fdaf09ae1c1b217.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9909d34e0a3538466eb78e3db0457521fa842e0be710a84cdfbc1e7f2eb47f8b +size 11003 diff --git a/parse/train/HygjqjR9Km/images/388571c143540f380128625fad3d6bf9d3a0514e003a980ac0be3941ebb5a2a1.jpg b/parse/train/HygjqjR9Km/images/388571c143540f380128625fad3d6bf9d3a0514e003a980ac0be3941ebb5a2a1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..391a4eb07d546d7f09567de3b0f395bae9b76c9e --- /dev/null +++ b/parse/train/HygjqjR9Km/images/388571c143540f380128625fad3d6bf9d3a0514e003a980ac0be3941ebb5a2a1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acdbc5dc861fc430b1710829213ea794474d3960aa8fc4af8678cc4b3047533e +size 5816 diff --git a/parse/train/HygjqjR9Km/images/39a5afb147cf2c853cbe508732cbef85c33609237e173688b1af2501f1f3745b.jpg b/parse/train/HygjqjR9Km/images/39a5afb147cf2c853cbe508732cbef85c33609237e173688b1af2501f1f3745b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7a00a65a6e11061197835c8d5b141d5f25a5171d --- /dev/null +++ b/parse/train/HygjqjR9Km/images/39a5afb147cf2c853cbe508732cbef85c33609237e173688b1af2501f1f3745b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b0dc198183a51f40fefb98cc89951a81f97a36fa0435d2290e253a9731973da +size 81318 diff --git a/parse/train/HygjqjR9Km/images/4535f0c0674d79b653f7b845db691ef69b8a509a4120e7039f24c149a628df9e.jpg b/parse/train/HygjqjR9Km/images/4535f0c0674d79b653f7b845db691ef69b8a509a4120e7039f24c149a628df9e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9eb50e20198e6c72c8f988e69b2a93effbfa431b --- /dev/null +++ b/parse/train/HygjqjR9Km/images/4535f0c0674d79b653f7b845db691ef69b8a509a4120e7039f24c149a628df9e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:399fa67adfc14699904ac52e61bfd70c613ae164b1b60c167a4d23471dd42367 +size 173098 diff --git a/parse/train/HygjqjR9Km/images/4e9a738f1adf704e58efed7fef63a2265c21b0946356c42a2f12aa4a4f92ade4.jpg b/parse/train/HygjqjR9Km/images/4e9a738f1adf704e58efed7fef63a2265c21b0946356c42a2f12aa4a4f92ade4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..829bd322101e0cc1d8c5f8ae01b99565f4ed1fe5 --- /dev/null +++ b/parse/train/HygjqjR9Km/images/4e9a738f1adf704e58efed7fef63a2265c21b0946356c42a2f12aa4a4f92ade4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dd4bb3d78769a2e2df75ad8e536bad7c89342d5a9d191abf5a544daf533600f +size 8493 diff --git a/parse/train/HygjqjR9Km/images/586e0063cc1b09899a1f785468e78d0bc0517db966ca525f3e0f94c033d230a7.jpg b/parse/train/HygjqjR9Km/images/586e0063cc1b09899a1f785468e78d0bc0517db966ca525f3e0f94c033d230a7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3530c2ee2bb60333f0be889b395fa4aa959e412b --- /dev/null +++ b/parse/train/HygjqjR9Km/images/586e0063cc1b09899a1f785468e78d0bc0517db966ca525f3e0f94c033d230a7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3c4fceb53a8a9ac8270c1b95ec91999c5f1def186be2307d53aafcf30186408 +size 5317 diff --git a/parse/train/HygjqjR9Km/images/5c74a71f5399d9ea6d31886f8ccc7a4b350445a03f89bb86d69c068d88603259.jpg b/parse/train/HygjqjR9Km/images/5c74a71f5399d9ea6d31886f8ccc7a4b350445a03f89bb86d69c068d88603259.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7e86648cf9f7036170b3b8a354fc90568340c784 --- /dev/null +++ b/parse/train/HygjqjR9Km/images/5c74a71f5399d9ea6d31886f8ccc7a4b350445a03f89bb86d69c068d88603259.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:202f6df7f0d6edc354ecba28def32d2517d87e11ee33a3ef5a02453cf3efaf86 +size 28603 diff --git a/parse/train/HygjqjR9Km/images/651d50f89ae3398526497e9f5bd123611f6a4068027b76467585714286be96b4.jpg b/parse/train/HygjqjR9Km/images/651d50f89ae3398526497e9f5bd123611f6a4068027b76467585714286be96b4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0caa1910bf95d22c757e2d6036bb66536fb37633 --- /dev/null +++ b/parse/train/HygjqjR9Km/images/651d50f89ae3398526497e9f5bd123611f6a4068027b76467585714286be96b4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d378113e57ab668a572cc036bd719e623b9f1598e174477f422ff8ddafe81c63 +size 334335 diff --git a/parse/train/HygjqjR9Km/images/6e6d0d0824a7ca2868f11365d43389b014ab1363e83965e23ef69b0f02b75d9b.jpg b/parse/train/HygjqjR9Km/images/6e6d0d0824a7ca2868f11365d43389b014ab1363e83965e23ef69b0f02b75d9b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..11d06acb163c2c1579e5984dc8650a99deef47c2 --- /dev/null +++ b/parse/train/HygjqjR9Km/images/6e6d0d0824a7ca2868f11365d43389b014ab1363e83965e23ef69b0f02b75d9b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99fee73d6543fe8fb77f062ed0de438f5837285d52b3955a43df87567b14c404 +size 7694 diff --git a/parse/train/HygjqjR9Km/images/7477659aeb204f334cd2c5ee8d769c1378ce408144c7deb274b05fe428bee1a4.jpg b/parse/train/HygjqjR9Km/images/7477659aeb204f334cd2c5ee8d769c1378ce408144c7deb274b05fe428bee1a4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cbac515e131fabbc3dbda7970ea0b6e979e903a0 --- /dev/null +++ b/parse/train/HygjqjR9Km/images/7477659aeb204f334cd2c5ee8d769c1378ce408144c7deb274b05fe428bee1a4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f754efbbd2b6e14d2338265888b3bc275a6194c1ce6ec5e8f74a0371c57818ee +size 11147 diff --git a/parse/train/HygjqjR9Km/images/78b51e40cdff5fc48520af277796fca6eac3dc6c4fee00e1981871289b0934c0.jpg b/parse/train/HygjqjR9Km/images/78b51e40cdff5fc48520af277796fca6eac3dc6c4fee00e1981871289b0934c0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7644ec3cf2fb3ad08111f7695a641d87b127df29 --- /dev/null +++ b/parse/train/HygjqjR9Km/images/78b51e40cdff5fc48520af277796fca6eac3dc6c4fee00e1981871289b0934c0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbd225d2d75ffdce4f5a458077aa3c5f535f6e3a6b350ca37694fb32edb2eb95 +size 6404 diff --git a/parse/train/HygjqjR9Km/images/7be613c1c9a83588e3a7fd009b46e76ce02a5bb616a24670222bf325dd10794f.jpg b/parse/train/HygjqjR9Km/images/7be613c1c9a83588e3a7fd009b46e76ce02a5bb616a24670222bf325dd10794f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2a7c599440e5cce8d1d6cd0db629c535fd53c988 --- /dev/null +++ b/parse/train/HygjqjR9Km/images/7be613c1c9a83588e3a7fd009b46e76ce02a5bb616a24670222bf325dd10794f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:965cc13695af8dd5494a816918321d8f67a4bf79bf849013b452e57818c5b19f +size 30036 diff --git a/parse/train/HygjqjR9Km/images/7c7ddbdd91c90283680ade7333a127127020f7d6ee4a0c8f301bdf3d989a1dc9.jpg b/parse/train/HygjqjR9Km/images/7c7ddbdd91c90283680ade7333a127127020f7d6ee4a0c8f301bdf3d989a1dc9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b196ff195527d08afaf65505b9cf46d67932fa80 --- /dev/null +++ b/parse/train/HygjqjR9Km/images/7c7ddbdd91c90283680ade7333a127127020f7d6ee4a0c8f301bdf3d989a1dc9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b686e0a2822db05d287a3a2aa7e031aaaee6aa69751588b6f45b00f461ba8f0 +size 37299 diff --git a/parse/train/HygjqjR9Km/images/80af05799195afdf432a17936c2f941c6c0916bcd4b4db52a9391fff6cc2df2f.jpg b/parse/train/HygjqjR9Km/images/80af05799195afdf432a17936c2f941c6c0916bcd4b4db52a9391fff6cc2df2f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f3af0917d5ab1e9aa771430907831b60fa2de93a --- /dev/null +++ b/parse/train/HygjqjR9Km/images/80af05799195afdf432a17936c2f941c6c0916bcd4b4db52a9391fff6cc2df2f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f258fad7f2a4d9a2211eda90d0c53331d2e05aa7a4106bdd9ec66c2d056cfa7 +size 48289 diff --git a/parse/train/HygjqjR9Km/images/915d92f786260c4c888839c5f8a52011335c3e2aa3037cca5b1cd6be17ca0170.jpg b/parse/train/HygjqjR9Km/images/915d92f786260c4c888839c5f8a52011335c3e2aa3037cca5b1cd6be17ca0170.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8db14d4868e749645a368bbba2cdac3cf742973b --- /dev/null +++ b/parse/train/HygjqjR9Km/images/915d92f786260c4c888839c5f8a52011335c3e2aa3037cca5b1cd6be17ca0170.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6a443205dc3caf909b765763ddf0b4ec04a3e7f52bf47ceb59cd875ef88fdef +size 345503 diff --git a/parse/train/HygjqjR9Km/images/92613c846136161dc61dea1b7ec2087c5507f2a224215a3e30c7487e341ded48.jpg b/parse/train/HygjqjR9Km/images/92613c846136161dc61dea1b7ec2087c5507f2a224215a3e30c7487e341ded48.jpg new file mode 100644 index 0000000000000000000000000000000000000000..84c478f4cd940d34312b520114bb83ec5dbffbcb --- /dev/null +++ b/parse/train/HygjqjR9Km/images/92613c846136161dc61dea1b7ec2087c5507f2a224215a3e30c7487e341ded48.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b27d52081d3d72d896b2002a05274d7ec5ea18cf51b37a93dacbaa8b36da1f8b +size 13143 diff --git a/parse/train/HygjqjR9Km/images/a3404bcdd01f7feaea933dc04b222596a2d99208dc64627487fe183f55f43e04.jpg b/parse/train/HygjqjR9Km/images/a3404bcdd01f7feaea933dc04b222596a2d99208dc64627487fe183f55f43e04.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eee5ef1f9ccb754d11dcea01393ccdec8c49ed4f --- /dev/null +++ b/parse/train/HygjqjR9Km/images/a3404bcdd01f7feaea933dc04b222596a2d99208dc64627487fe183f55f43e04.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c864e0d9fea2c430631e1b85ad8cdaf51a67a370efce0cb6de5ddbd80c184c17 +size 5785 diff --git a/parse/train/HygjqjR9Km/images/a8da475d50d62f2acf9bbdb01f8be57f2bdaebbd17f1d87a8dbaa5fe9db7d596.jpg b/parse/train/HygjqjR9Km/images/a8da475d50d62f2acf9bbdb01f8be57f2bdaebbd17f1d87a8dbaa5fe9db7d596.jpg new file mode 100644 index 0000000000000000000000000000000000000000..562a66db2b3f24d528a9dd8c9ea11ddfab349b9d --- /dev/null +++ b/parse/train/HygjqjR9Km/images/a8da475d50d62f2acf9bbdb01f8be57f2bdaebbd17f1d87a8dbaa5fe9db7d596.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57765f275b012ef088b50abcd3b9453f88184cc4717d287c05b25392e3452c24 +size 106113 diff --git a/parse/train/HygjqjR9Km/images/a9f7edc1b3b7651f12d28692efa1b05bcaa1e5a44c1269844aefd277664057b3.jpg b/parse/train/HygjqjR9Km/images/a9f7edc1b3b7651f12d28692efa1b05bcaa1e5a44c1269844aefd277664057b3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8414fb798423c412f5adbe8a012b2afbf7805e84 --- /dev/null +++ b/parse/train/HygjqjR9Km/images/a9f7edc1b3b7651f12d28692efa1b05bcaa1e5a44c1269844aefd277664057b3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c9cf2758e0077f8b64d68f60cf8077652ab21ee8890cd432740b98a17995cba +size 22307 diff --git a/parse/train/HygjqjR9Km/images/b5e0a0c350fed14c4f8b9daf15d31dde449bfcf724973ca4f935e73898f9a3cd.jpg b/parse/train/HygjqjR9Km/images/b5e0a0c350fed14c4f8b9daf15d31dde449bfcf724973ca4f935e73898f9a3cd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..11195c61807c17545845a4ba14b6605815a23f1d --- /dev/null +++ b/parse/train/HygjqjR9Km/images/b5e0a0c350fed14c4f8b9daf15d31dde449bfcf724973ca4f935e73898f9a3cd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bbdc6dc3b4949d49910b093c40378ace549ac5cf57e3e0ff3337af00f6fdd32 +size 40181 diff --git a/parse/train/HygjqjR9Km/images/ba4579566883daf396e9063dffd6fb7bdd7db08b0a8674e32f69334f07a90ebd.jpg b/parse/train/HygjqjR9Km/images/ba4579566883daf396e9063dffd6fb7bdd7db08b0a8674e32f69334f07a90ebd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3a0eae7b9f9c2c3cff6ca0c77cc21aac61271e1c --- /dev/null +++ b/parse/train/HygjqjR9Km/images/ba4579566883daf396e9063dffd6fb7bdd7db08b0a8674e32f69334f07a90ebd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e0bc09acafabe8ef161d070463a44b7833cb5b102905726615090513112bb08 +size 29141 diff --git a/parse/train/HygjqjR9Km/images/bd94f8164034d5a65843bed4463c01ab34adb3b925ac34912f64434f7a64f078.jpg b/parse/train/HygjqjR9Km/images/bd94f8164034d5a65843bed4463c01ab34adb3b925ac34912f64434f7a64f078.jpg new file mode 100644 index 0000000000000000000000000000000000000000..087120c8f88f69cd5fe3ac0bb91c786e3282f6f9 --- /dev/null +++ b/parse/train/HygjqjR9Km/images/bd94f8164034d5a65843bed4463c01ab34adb3b925ac34912f64434f7a64f078.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f3fe6a33f7ba6a68aec2d342f19363ad12b70f668a9c6ce091b4073de1a9c38 +size 69976 diff --git a/parse/train/HygjqjR9Km/images/c867f3b1351f9aaf1f17ef65bff30aa43646986020b60de7d3da101ad015167d.jpg b/parse/train/HygjqjR9Km/images/c867f3b1351f9aaf1f17ef65bff30aa43646986020b60de7d3da101ad015167d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e9580128fbf2b14fc962004157ce5422f57f4eec --- /dev/null +++ b/parse/train/HygjqjR9Km/images/c867f3b1351f9aaf1f17ef65bff30aa43646986020b60de7d3da101ad015167d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14192bb9b73cf912e30af4811971aad874f56eb87c8c30a4dcb32bb895005de2 +size 26432 diff --git a/parse/train/HygjqjR9Km/images/d062e8d5e234c52120b3dd8b2a5877aca85122a59dccb4ca2cd8c4c2d750e008.jpg b/parse/train/HygjqjR9Km/images/d062e8d5e234c52120b3dd8b2a5877aca85122a59dccb4ca2cd8c4c2d750e008.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dab6437c0ccb3d6aeae1ef61033aa0deece913d0 --- /dev/null +++ b/parse/train/HygjqjR9Km/images/d062e8d5e234c52120b3dd8b2a5877aca85122a59dccb4ca2cd8c4c2d750e008.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84c2a69830cef2d8a574dfbedf629408fee31429212cb720480c882aebd3aa22 +size 5425 diff --git a/parse/train/HygjqjR9Km/images/d26554da7790b191e2ad7716be52da773bc67155b91c5c318362fcabb455ffb8.jpg b/parse/train/HygjqjR9Km/images/d26554da7790b191e2ad7716be52da773bc67155b91c5c318362fcabb455ffb8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a2c0bacc2f10c4fd298afe6d4487127467e708cb --- /dev/null +++ b/parse/train/HygjqjR9Km/images/d26554da7790b191e2ad7716be52da773bc67155b91c5c318362fcabb455ffb8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46ccd09f28389029b741e0dfbd82aad3198dddcd7514035c89c7e3a305ad984b +size 20355 diff --git a/parse/train/HygjqjR9Km/images/d2b78adf415d4edb093a9916c69964cd1637714f8f1e07c356f82b1cf970a7f8.jpg b/parse/train/HygjqjR9Km/images/d2b78adf415d4edb093a9916c69964cd1637714f8f1e07c356f82b1cf970a7f8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fb464f76655c27578dfb575d2e8d39a68c2c5ab5 --- /dev/null +++ b/parse/train/HygjqjR9Km/images/d2b78adf415d4edb093a9916c69964cd1637714f8f1e07c356f82b1cf970a7f8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:209be570b22e0e0011fefd76acc50d552d2697a4be96c71a4fc9914165c766d4 +size 160794 diff --git a/parse/train/HygjqjR9Km/images/d55272a4d87aa3b04539423276fe1a44e5e1b7b25e3fe3d572e89f7220eccf05.jpg b/parse/train/HygjqjR9Km/images/d55272a4d87aa3b04539423276fe1a44e5e1b7b25e3fe3d572e89f7220eccf05.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7b55b12e3c1e8f5e1b24462957a2223242914aca --- /dev/null +++ b/parse/train/HygjqjR9Km/images/d55272a4d87aa3b04539423276fe1a44e5e1b7b25e3fe3d572e89f7220eccf05.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:905be0215404e612a5fbb03285db2093e4eb387ed809f54c1ea4f5ffba8281ee +size 63255 diff --git a/parse/train/HygjqjR9Km/images/e97c5c5ad57fda26e1775cb12a60b83e7777e0ecd1adb8609c2762164b0816cb.jpg b/parse/train/HygjqjR9Km/images/e97c5c5ad57fda26e1775cb12a60b83e7777e0ecd1adb8609c2762164b0816cb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..761838c593ab9013ec9213e4b90ccb4db5ed5851 --- /dev/null +++ b/parse/train/HygjqjR9Km/images/e97c5c5ad57fda26e1775cb12a60b83e7777e0ecd1adb8609c2762164b0816cb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a311643ea7db349c323b4a43730dee2a69ced177f68f6eb209039950ead1a5f6 +size 20700 diff --git a/parse/train/HygjqjR9Km/images/f15b9b934669371dc331a959c28763e512ecbf055db82283dedde2c5d8b1e32d.jpg b/parse/train/HygjqjR9Km/images/f15b9b934669371dc331a959c28763e512ecbf055db82283dedde2c5d8b1e32d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..80fcfd1730678a427e5ea8423cac50384aecdb0f --- /dev/null +++ b/parse/train/HygjqjR9Km/images/f15b9b934669371dc331a959c28763e512ecbf055db82283dedde2c5d8b1e32d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3c03d0490c5defdf1b581f52f481b8cfae7eab0de2304f962d6395956e26123 +size 27824 diff --git a/parse/train/HygjqjR9Km/images/f380266a7a246fe1cbba472918bedd6b648fd350ba253766b7d0fb38d8bed856.jpg b/parse/train/HygjqjR9Km/images/f380266a7a246fe1cbba472918bedd6b648fd350ba253766b7d0fb38d8bed856.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c708b2abb149a0d383672e3e218eb61a5d48ba2d --- /dev/null +++ b/parse/train/HygjqjR9Km/images/f380266a7a246fe1cbba472918bedd6b648fd350ba253766b7d0fb38d8bed856.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e15f4622a8b7f587e4650b78523498311b6ea7149f68de083edfdad5a01e3e24 +size 17718 diff --git a/parse/train/HyxFF34FPr/images/0c7597d7090d477001c173bda208e1b3eb08672a06c91ca2cf658b4d40794144.jpg b/parse/train/HyxFF34FPr/images/0c7597d7090d477001c173bda208e1b3eb08672a06c91ca2cf658b4d40794144.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4d462d2b3f8aac03c3a655d879cafa03f214e93f --- /dev/null +++ b/parse/train/HyxFF34FPr/images/0c7597d7090d477001c173bda208e1b3eb08672a06c91ca2cf658b4d40794144.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9d72b9b37bbf8f2a6ff694af3d056e438541919eb15d322e896a7b4e5390a82 +size 25772 diff --git a/parse/train/HyxFF34FPr/images/273cf265c0c9bca815459f17984b01507b2a37ce49c804f81a57ff6bfb71e8c2.jpg b/parse/train/HyxFF34FPr/images/273cf265c0c9bca815459f17984b01507b2a37ce49c804f81a57ff6bfb71e8c2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e88ef63867970d475e99acd579a6bd5dacb1d986 --- /dev/null +++ b/parse/train/HyxFF34FPr/images/273cf265c0c9bca815459f17984b01507b2a37ce49c804f81a57ff6bfb71e8c2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dcbaeea89654ba430e4e24b9e896176209a9d5aeb58bd8c3d9ba938deed43b5 +size 1861 diff --git a/parse/train/HyxFF34FPr/images/3b28dbf72cf972ae345f4a12eed9f3a8a579d7dff6a1d51b3a1629c1c0e4f1e8.jpg b/parse/train/HyxFF34FPr/images/3b28dbf72cf972ae345f4a12eed9f3a8a579d7dff6a1d51b3a1629c1c0e4f1e8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9b558324123c9e96acac5a895aae5efb42891018 --- /dev/null +++ b/parse/train/HyxFF34FPr/images/3b28dbf72cf972ae345f4a12eed9f3a8a579d7dff6a1d51b3a1629c1c0e4f1e8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a112134772e0f1094c74fd604ca6e6780f82adf3addd476075b6187107240fc6 +size 12678 diff --git a/parse/train/HyxFF34FPr/images/46b8093bc1aa0d0c0afb7a29fe0cee96200502baf586d2c8e65b948dfca075bd.jpg b/parse/train/HyxFF34FPr/images/46b8093bc1aa0d0c0afb7a29fe0cee96200502baf586d2c8e65b948dfca075bd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a7d36b84fc27f0ad8b1a634064176eb2171eb06f --- /dev/null +++ b/parse/train/HyxFF34FPr/images/46b8093bc1aa0d0c0afb7a29fe0cee96200502baf586d2c8e65b948dfca075bd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fc96a98d00e1b44c204591fa4fa7a38ae6fd591d5642b8e3f39abc06e0ec91a +size 57268 diff --git a/parse/train/HyxFF34FPr/images/67d428eb0fdb6dc2f4aa6384586680d763d3eaad349141bf5be83f752fa8b3e5.jpg b/parse/train/HyxFF34FPr/images/67d428eb0fdb6dc2f4aa6384586680d763d3eaad349141bf5be83f752fa8b3e5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..33a847932bc85ec70edbce03aa50fab7e21e512e --- /dev/null +++ b/parse/train/HyxFF34FPr/images/67d428eb0fdb6dc2f4aa6384586680d763d3eaad349141bf5be83f752fa8b3e5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:193e0158f4a5279006d6cbc2995ab072a37b1972c8a4dd365acd5eab3c97200f +size 9401 diff --git a/parse/train/HyxFF34FPr/images/6d45abd1a9953b76d52fc03ad3cbf4b242fb209a0261fcf24184623f32083ff0.jpg b/parse/train/HyxFF34FPr/images/6d45abd1a9953b76d52fc03ad3cbf4b242fb209a0261fcf24184623f32083ff0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7401d7f9d293628a5e2b83e85f0426045e540a1e --- /dev/null +++ b/parse/train/HyxFF34FPr/images/6d45abd1a9953b76d52fc03ad3cbf4b242fb209a0261fcf24184623f32083ff0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a778f4b67442423a068eceff6c080e8dfff5f85dc31d5d3147c142c6c27cfc6b +size 19985 diff --git a/parse/train/HyxFF34FPr/images/7d0edf63e7fd123b34f67edf62dac10ba3ba1ed7dbc2ab6e42647f9f47a867a9.jpg b/parse/train/HyxFF34FPr/images/7d0edf63e7fd123b34f67edf62dac10ba3ba1ed7dbc2ab6e42647f9f47a867a9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..29fed1aef5720f78c65b070906dd14595958eff5 --- /dev/null +++ b/parse/train/HyxFF34FPr/images/7d0edf63e7fd123b34f67edf62dac10ba3ba1ed7dbc2ab6e42647f9f47a867a9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:842268b6227fe42b886194152ab05ae51685a3eb8e6182a6fb310073c807d249 +size 32129 diff --git a/parse/train/HyxFF34FPr/images/7ea84541e51ed9d6021015c7df1c20600c4f6b2b0d334d52a02f9a138b4228cb.jpg b/parse/train/HyxFF34FPr/images/7ea84541e51ed9d6021015c7df1c20600c4f6b2b0d334d52a02f9a138b4228cb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bb82f56316aea2df6757e6605d164859d57fbeb8 --- /dev/null +++ b/parse/train/HyxFF34FPr/images/7ea84541e51ed9d6021015c7df1c20600c4f6b2b0d334d52a02f9a138b4228cb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:955f67da98f4819a05ec192e683cc1addab0023dcb14fa2580a9645eb4f7a3a4 +size 14366 diff --git a/parse/train/HyxFF34FPr/images/7ebf4c68a8b5ee3bfb72961570bc9e7549665659c202895100017fe3e39e2d3f.jpg b/parse/train/HyxFF34FPr/images/7ebf4c68a8b5ee3bfb72961570bc9e7549665659c202895100017fe3e39e2d3f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..335ae9bfd2efd25fad1fcc95440c132f86945a6c --- /dev/null +++ b/parse/train/HyxFF34FPr/images/7ebf4c68a8b5ee3bfb72961570bc9e7549665659c202895100017fe3e39e2d3f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:144d567c3c04ddfd609c912bdc9c944050b9d1241d6d7aac0b885fed54ff8e0c +size 12781 diff --git a/parse/train/HyxFF34FPr/images/83ce28fe93cfe2d18ba777fb5a4c14792b5e7fe109119a6f8665f4280aef945a.jpg b/parse/train/HyxFF34FPr/images/83ce28fe93cfe2d18ba777fb5a4c14792b5e7fe109119a6f8665f4280aef945a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5ac84f80136be4600c846a8c420181a1d4b013ca --- /dev/null +++ b/parse/train/HyxFF34FPr/images/83ce28fe93cfe2d18ba777fb5a4c14792b5e7fe109119a6f8665f4280aef945a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9e981421f5a6d5f5bd4d7611600c10e7705d13a29c1804eabc000a869aeef58 +size 52359 diff --git a/parse/train/HyxFF34FPr/images/862b43123997d3662af060569300731534469cd4e3d82efd5890e75b12ee4bee.jpg b/parse/train/HyxFF34FPr/images/862b43123997d3662af060569300731534469cd4e3d82efd5890e75b12ee4bee.jpg new file mode 100644 index 0000000000000000000000000000000000000000..949a7ce3ce7dbd53260f40d06a6a73e974706c29 --- /dev/null +++ b/parse/train/HyxFF34FPr/images/862b43123997d3662af060569300731534469cd4e3d82efd5890e75b12ee4bee.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:436bd165064c538a707cd6a46fe4e6d5a9eebf5a4e9bec5d71f059501031ef42 +size 39879 diff --git a/parse/train/HyxFF34FPr/images/8bc10160a13d4b5beae54d063f3736f43c31f1b08a0bcf27e4fd650d2e4b7115.jpg b/parse/train/HyxFF34FPr/images/8bc10160a13d4b5beae54d063f3736f43c31f1b08a0bcf27e4fd650d2e4b7115.jpg new file mode 100644 index 0000000000000000000000000000000000000000..88dd16e88ff62a98967f84ae2fad7241767a3e4f --- /dev/null +++ b/parse/train/HyxFF34FPr/images/8bc10160a13d4b5beae54d063f3736f43c31f1b08a0bcf27e4fd650d2e4b7115.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c13b7c0510e61979cd7bf18929d29c9b4080c50488f0f3b94ce68e56891508c +size 34207 diff --git a/parse/train/HyxFF34FPr/images/9ba1f5c7952a0d18aedc1bf41fc92be0d9cd9d63875d9300fe6ad6ddfda91c3d.jpg b/parse/train/HyxFF34FPr/images/9ba1f5c7952a0d18aedc1bf41fc92be0d9cd9d63875d9300fe6ad6ddfda91c3d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..51179317e83976bada4c8734d0883fbd4e702e0b --- /dev/null +++ b/parse/train/HyxFF34FPr/images/9ba1f5c7952a0d18aedc1bf41fc92be0d9cd9d63875d9300fe6ad6ddfda91c3d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4aefeca5ab8bc56958554b69d22cd4bb6f605415dfebf9a3ce2b45cb94c89d4 +size 11965 diff --git a/parse/train/HyxFF34FPr/images/9d75c5fbf37f13dc1c4aa1335506f3078e85b21adfca94ba3a80c4050cb16a64.jpg b/parse/train/HyxFF34FPr/images/9d75c5fbf37f13dc1c4aa1335506f3078e85b21adfca94ba3a80c4050cb16a64.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8a6be52f00a755c4acb97ea75043fb5640f1c7d5 --- /dev/null +++ b/parse/train/HyxFF34FPr/images/9d75c5fbf37f13dc1c4aa1335506f3078e85b21adfca94ba3a80c4050cb16a64.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5313517dc669f9eb6038a9ffa7a67eec4af66ee62cfe6c182ac1816fc15c880 +size 49325 diff --git a/parse/train/HyxFF34FPr/images/daa123700845237aff0c1602e0f807a2721b2b0ae599350fe6ae893b0fa790be.jpg b/parse/train/HyxFF34FPr/images/daa123700845237aff0c1602e0f807a2721b2b0ae599350fe6ae893b0fa790be.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b5603bdea357128cafeb5c0e241726f1fc8a750a --- /dev/null +++ b/parse/train/HyxFF34FPr/images/daa123700845237aff0c1602e0f807a2721b2b0ae599350fe6ae893b0fa790be.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f39bcf4726516ed1e55652b359c3619529d94f330fdaa2b6208e303cc168c1b +size 85342 diff --git a/parse/train/HyxFF34FPr/images/dfe718192bcb34f1770531c855ee5fe6c07a0cef4ffd8a59e987bfc67478e369.jpg b/parse/train/HyxFF34FPr/images/dfe718192bcb34f1770531c855ee5fe6c07a0cef4ffd8a59e987bfc67478e369.jpg new file mode 100644 index 0000000000000000000000000000000000000000..76b0d5c192223f15ad1b5a5881d3d010290c114b --- /dev/null +++ b/parse/train/HyxFF34FPr/images/dfe718192bcb34f1770531c855ee5fe6c07a0cef4ffd8a59e987bfc67478e369.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8e25c60ff93558796a82a698ddeb10ab8f1f00739599c37a53dd56c6c152725 +size 49987 diff --git a/parse/train/HyxFF34FPr/images/e84260c2da6b571f845c3ca8b81417be7fb4979d0c1e221bc66b6ef5d8b4b9c3.jpg b/parse/train/HyxFF34FPr/images/e84260c2da6b571f845c3ca8b81417be7fb4979d0c1e221bc66b6ef5d8b4b9c3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7bb9f4bb0fe6f141c89e69a320b21015b316fe48 --- /dev/null +++ b/parse/train/HyxFF34FPr/images/e84260c2da6b571f845c3ca8b81417be7fb4979d0c1e221bc66b6ef5d8b4b9c3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8a9c027c06b6b57db3804020da1a8d6345170fbbf4dbe3649ecfe2487f53f8e +size 154096 diff --git a/parse/train/HyxFF34FPr/images/ee0090c10ecb98878b6e27f6bf8f893fea6ad40f1a694c27deeeb73a6acadbf6.jpg b/parse/train/HyxFF34FPr/images/ee0090c10ecb98878b6e27f6bf8f893fea6ad40f1a694c27deeeb73a6acadbf6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8c25ba0ca1e071d57ad9b8b3ee83430a200530c8 --- /dev/null +++ b/parse/train/HyxFF34FPr/images/ee0090c10ecb98878b6e27f6bf8f893fea6ad40f1a694c27deeeb73a6acadbf6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36f6f1fdb7423b5c374b45caa1869a4f9655614822a4294cefe6d51ecf06bb72 +size 12299 diff --git a/parse/train/HyxFF34FPr/images/ee366a1d89befcca3152aa7a0da0daab7e6c993fa379672c26f64d97cc324079.jpg b/parse/train/HyxFF34FPr/images/ee366a1d89befcca3152aa7a0da0daab7e6c993fa379672c26f64d97cc324079.jpg new file mode 100644 index 0000000000000000000000000000000000000000..00ca3a59695a8ee9f076bc87de72c5ac8275324c --- /dev/null +++ b/parse/train/HyxFF34FPr/images/ee366a1d89befcca3152aa7a0da0daab7e6c993fa379672c26f64d97cc324079.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e0608a49dda76b8158372e126a52144809b4af0d962f5b4889a8eb9c34f5d51 +size 19759 diff --git a/parse/train/J4gRj6d5Qm/J4gRj6d5Qm_content_list.json b/parse/train/J4gRj6d5Qm/J4gRj6d5Qm_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..247541a3d60c115bb725e4d558f87999202a546e --- /dev/null +++ b/parse/train/J4gRj6d5Qm/J4gRj6d5Qm_content_list.json @@ -0,0 +1,1041 @@ +[ + { + "type": "text", + "text": "Autoformer: Decomposition Transformers with Auto-Correlation for Long-Term Series Forecasting ", + "text_level": 1, + "bbox": [ + 189, + 122, + 810, + 172 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Haixu Wu, Jiehui Xu, Jianmin Wang, Mingsheng Long $( \\boxtimes )$ School of Software, BNRist, Tsinghua University, China {whx20,xjh20}@mails.tsinghua.edu.cn, {jimwang,mingsheng}@tsinghua.edu.cn ", + "bbox": [ + 191, + 224, + 805, + 268 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Abstract ", + "text_level": 1, + "bbox": [ + 462, + 303, + 535, + 320 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Extending the forecasting time is a critical demand for real applications, such as extreme weather early warning and long-term energy consumption planning. This paper studies the long-term forecasting problem of time series. Prior Transformerbased models adopt various self-attention mechanisms to discover the long-range dependencies. However, intricate temporal patterns of the long-term future prohibit the model from finding reliable dependencies. Also, Transformers have to adopt the sparse versions of point-wise self-attentions for long series efficiency, resulting in the information utilization bottleneck. Going beyond Transformers, we design Autoformer as a novel decomposition architecture with an Auto-Correlation mechanism. We break with the pre-processing convention of series decomposition and renovate it as a basic inner block of deep models. This design empowers Autoformer with progressive decomposition capacities for complex time series. Further, inspired by the stochastic process theory, we design the Auto-Correlation mechanism based on the series periodicity, which conducts the dependencies discovery and representation aggregation at the sub-series level. Auto-Correlation outperforms self-attention in both efficiency and accuracy. In long-term forecasting, Autoformer yields stateof-the-art accuracy, with a $38 \\%$ relative improvement on six benchmarks, covering five practical applications: energy, traffic, economics, weather and disease. Code is available at this repository: https://github.com/thuml/Autoformer. ", + "bbox": [ + 232, + 335, + 766, + 599 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 Introduction ", + "text_level": 1, + "bbox": [ + 174, + 626, + 310, + 643 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Time series forecasting has been widely used in energy consumption, traffic and economics planning, weather and disease propagation forecasting. In these real-world applications, one pressing demand is to extend the forecast time into the far future, which is quite meaningful for the long-term planning and early warning. Thus, in this paper, we study the long-term forecasting problem of time series, characterizing itself by the large length of predicted time series. Recent deep forecasting models [41, 17, 20, 28, 23, 29, 19, 35] have achieved great progress, especially the Transformer-based models. Benefiting from the self-attention mechanism, Transformers obtain great advantage in modeling long-term dependencies for sequential data, which enables more powerful big models [7, 11]. ", + "bbox": [ + 174, + 657, + 825, + 768 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "However, the forecasting task is extremely challenging under the long-term setting. First, it is unreliable to discover the temporal dependencies directly from the long-term time series because the dependencies can be obscured by entangled temporal patterns. Second, canonical Transformers with self-attention mechanisms are computationally prohibitive for long-term forecasting because of the quadratic complexity of sequence length. Previous Transformer-based forecasting models [41, 17, 20] mainly focus on improving self-attention to a sparse version. While performance is significantly improved, these models still utilize the point-wise representation aggregation. Thus, in the process of efficiency improvement, they will sacrifice the information utilization because of the sparse point-wise connections, resulting in a bottleneck for long-term forecasting of time series. ", + "bbox": [ + 174, + 775, + 825, + 900 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "To reason about the intricate temporal patterns, we try to take the idea of decomposition, which is a standard method in time series analysis [1, 27]. It can be used to process the complex time series and extract more predictable components. However, under the forecasting context, it can only be used as the pre-processing of past series because the future is unknown [15]. This common usage limits the capabilities of decomposition and overlooks the potential future interactions among decomposed components. Thus, we attempt to go beyond pre-processing usage of decomposition and propose a generic architecture to empower the deep forecasting models with immanent capacity of progressive decomposition. Further, decomposition can ravel out the entangled temporal patterns and highlight the inherent properties of time series [15]. Benefiting from this, we try to take advantage of the series periodicity to renovate the point-wise connection in self-attention. We observe that the sub-series at the same phase position among periods often present similar temporal processes. Thus, we try to construct a series-level connection based on the process similarity derived by series periodicity. ", + "bbox": [ + 174, + 92, + 825, + 257 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Based on the above motivations, we propose an original Autoformer in place of the Transformers for long-term time series forecasting. Autoformer still follows residual and encoder-decoder structure but renovates Transformer into a decomposition forecasting architecture. By embedding our proposed decomposition blocks as the inner operators, Autoformer can progressively separate the long-term trend information from predicted hidden variables. This design allows our model to alternately decompose and refine the intermediate results during the forecasting procedure. Inspired by the stochastic process theory [8, 24], Autoformer introduces an Auto-Correlation mechanism in place of self-attention, which discovers the sub-series similarity based on the series periodicity and aggregates similar sub-series from underlying periods. This series-wise mechanism achieves $\\mathcal { O } ( L \\log L )$ complexity for length- $L$ series and breaks the information utilization bottleneck by expanding the point-wise representation aggregation to sub-series level. Autoformer achieves the state-of-the-art accuracy on six benchmarks. The contributions are summarized as follows: ", + "bbox": [ + 174, + 263, + 825, + 429 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "• To tackle the intricate temporal patterns of the long-term future, we present Autoformer as a decomposition architecture and design the inner decomposition block to empower the deep forecasting model with immanent progressive decomposition capacity. • We propose an Auto-Correlation mechanism with dependencies discovery and information aggregation at the series level. Our mechanism is beyond previous self-attention family and can simultaneously benefit the computation efficiency and information utilization. • Autoformer achieves a $38 \\%$ relative improvement under the long-term setting on six benchmarks, covering five real-world applications: energy, traffic, economics, weather and disease. ", + "bbox": [ + 217, + 440, + 825, + 561 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 Related Work ", + "text_level": 1, + "bbox": [ + 174, + 578, + 323, + 594 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2.1 Models for Time Series Forecasting ", + "text_level": 1, + "bbox": [ + 176, + 603, + 459, + 618 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Due to the immense importance of time series forecasting, various models have been well developed. Many time series forecasting methods start from the classic tools [32, 9]. ARIMA [6, 5] tackles the forecasting problem by transforming the non-stationary process to stationary through differencing. The filtering method is also introduced for series forecasting [18, 10]. Besides, recurrent neural networks (RNNs) models are used to model the temporal dependencies for time series [36, 26, 40, 22]. DeepAR [28] combines autoregressive methods and RNNs to model the probabilistic distribution of future series. LSTNet [19] introduces convolutional neural networks (CNNs) with recurrent-skip connections to capture the short-term and long-term temporal patterns. Attention-based RNNs [39, 30, 31] introduce the temporal attention to explore the long-range dependencies for prediction. Also, many works based on temporal convolution networks (TCN) [34, 4, 3, 29] attempt to model the temporal causality with the causal convolution. These deep forecasting models mainly focus on the temporal relation modeling by recurrent connections, temporal attention or causal convolution. ", + "bbox": [ + 173, + 628, + 826, + 794 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Recently, Transformers [35, 38] based on the self-attention mechanism shows great power in sequential data, such as natural language processing [11, 7], audio processing [14] and even computer vision [12, 21]. However, applying self-attention to long-term time series forecasting is computationally prohibitive because of the quadratic complexity of sequence length $L$ in both memory and time. LogTrans [20] introduces the local convolution to Transformer and proposes the LogSparse attention to select time steps following the exponentially increasing intervals, which reduces the complexity to $\\mathcal { O } ( L ( \\log L ) ^ { 2 } )$ . Reformer [17] presents the local-sensitive hashing (LSH) attention and reduces the complexity to $\\mathcal { O } ( L \\log L )$ . Informer [41] extends Transformer with KL-divergence based ProbSparse attention and also achieves $\\mathcal { O } ( L \\log L )$ complexity. Note that these methods are based on the vanilla Transformer and try to improve the self-attention mechanism to a sparse version, which still follows the point-wise dependency and aggregation. In this paper, our proposed Auto-Correlation mechanism is based on the inherent periodicity of time series and can provide series-wise connections. ", + "bbox": [ + 174, + 800, + 825, + 911 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 90, + 825, + 147 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.2 Decomposition of Time Series ", + "text_level": 1, + "bbox": [ + 176, + 162, + 418, + 178 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "As a standard method in time series analysis, time series decomposition [1, 27] deconstructs a time series into several components, each representing one of the underlying categories of patterns that are more predictable. It is primarily useful for exploring historical changes over time. For the forecasting tasks, decomposition is always used as the pre-processing of historical series before predicting future series [15, 2], such as Prophet [33] with trend-seasonality decomposition and N-BEATS [23] with basis expansion and DeepGLO [29] with matrix decomposition. However, such pre-processing is limited by the plain decomposition effect of historical series and overlooks the hierarchical interaction between the underlying patterns of series in the long-term future. This paper takes the decomposition idea from a new progressive dimension. Our Autoformer harnesses the decomposition as an inner block of deep models, which can progressively decompose the hidden series throughout the whole forecasting process, including both the past series and the predicted intermediate results. ", + "bbox": [ + 174, + 188, + 825, + 340 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 Autoformer ", + "text_level": 1, + "bbox": [ + 174, + 358, + 303, + 376 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The time series forecasting problem is to predict the most probable length- $O$ series in the future given the past length- ${ \\mathbf { \\nabla } } \\cdot { I }$ series, denoting as input-I-predict- $O$ . The long-term forecasting setting is to predict the long-term future, i.e. larger $O$ . As aforementioned, we have highlighted the difficulties of long-term series forecasting: handling intricate temporal patterns and breaking the bottleneck of computation efficiency and information utilization. To tackle these two challenges, we introduce the decomposition as a builtin block to the deep forecasting model and propose Autoformer as a decomposition architecture. Besides, we design the Auto-Correlation mechanism to discover the period-based dependencies and aggregate similar sub-series from underlying periods. ", + "bbox": [ + 174, + 388, + 825, + 501 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3.1 Decomposition Architecture ", + "text_level": 1, + "bbox": [ + 176, + 516, + 408, + 531 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We renovate Transformer [35] to a deep decomposition architecture (Figure 1), including the inner series decomposition block, Auto-Correlation mechanism, and corresponding Encoder and Decoder. ", + "bbox": [ + 174, + 541, + 825, + 570 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Series decomposition block To learn with the complex temporal patterns in long-term forecasting context, we take the idea of decomposition [1, 27], which can separate the series into trend-cyclical and seasonal parts. These two parts reflect the long-term progression and the seasonality of the series respectively. However, directly decomposing is unrealizable for future series because the future is just unknown. To tackle this dilemma, we present a series decomposition block as an inner operation of Autoformer (Figure 1), which can extract the long-term stationary trend from predicted intermediate hidden variables progressively. Concretely, we adapt the moving average to smooth out periodic fluctuations and highlight the long-term trends. For length- $L$ input series $\\breve { \\mathcal { X } } \\in \\mathbb { R } ^ { L \\times d }$ , the process is: ", + "bbox": [ + 173, + 577, + 825, + 689 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/282df0854e95928f14b62ed4e853f369b7025077bb7d2e1cc6605fe5b7efcf53.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathcal { X } _ { \\mathrm { t } } = \\mathrm { A v g P o o l } ( \\mathrm { P a d d i n g } ( \\mathcal { X } ) ) } \\\\ & { \\mathcal { X } _ { \\mathrm { s } } = \\mathcal { X } - \\mathcal { X } _ { \\mathrm { t } } , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 397, + 691, + 599, + 728 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $\\boldsymbol { \\mathcal { X } } _ { \\mathrm { s } } , \\boldsymbol { \\mathcal { X } } _ { \\mathrm { t } } \\in \\mathbb { R } ^ { L \\times d }$ denote the seasonal and the extracted trend-cyclical part respectively. We adopt the $\\operatorname { A v g P o o l } ( \\cdot )$ for moving average with the padding operation to keep the series length unchanged. We use $\\mathcal { X } _ { \\mathrm { s } } , \\mathcal { X } _ { \\mathrm { t } } = \\mathrm { S e r i e s D e c o m p } ( \\mathcal { X } )$ to summarize above equations, which is a model inner block. ", + "bbox": [ + 174, + 732, + 825, + 775 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Model inputs The inputs of encoder part are the past $I$ time steps $\\mathcal { X } _ { \\mathrm { e n } } \\in \\mathbb { R } ^ { I \\times d }$ . As a decomposition architecture (Figure 1), the input of Autoformer decoder contains both the seasonal part $\\chi _ { \\mathrm { d e s } } \\in$ $\\mathbb { R } ^ { ( \\frac { I } { 2 } + O ) \\times d }$ and trend-cyclical part $\\chi _ { \\mathrm { d e t } } \\in \\mathbb { R } ^ { ( \\frac { I } { 2 } + O ) \\times d }$ to be refined. Each initialization consists of two parts: the component decomposed from the latter half of encoder’s input $\\mathcal { X } _ { \\mathrm { e n } }$ with length $\\frac { I } { 2 }$ to provide recent information, placeholders with length $O$ filled by scalars. It’s formulized as follows: ", + "bbox": [ + 173, + 784, + 825, + 856 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/2ca468ee556859c90f1fc9a7b942f1134137418316e28b4815e04a5396ca9b82.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathcal { X } _ { \\mathrm { e n s } } , \\mathcal { X } _ { \\mathrm { e n t } } = \\mathrm { S e r i e s D e c o m p } ( \\mathcal { X } _ { \\mathrm { e n } \\frac { I } { 2 } : I } ) } \\\\ & { \\qquad \\mathcal { X } _ { \\mathrm { d e s } } = \\mathrm { C o n c a t } ( \\mathcal { X } _ { \\mathrm { e n s } } , \\mathcal { X } _ { 0 } ) } \\\\ & { \\qquad \\mathcal { X } _ { \\mathrm { d e t } } = \\mathrm { C o n c a t } ( \\mathcal { X } _ { \\mathrm { e n t } } , \\mathcal { X } _ { \\mathrm { M e a n } } ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 372, + 858, + 624, + 916 + ], + "page_idx": 2 + }, + { + "type": "image", + "img_path": "images/1ebb1575216e8696f19f85fe903bb441210d41e8973469f64d31b9ac1d64fa43.jpg", + "image_caption": [ + "Figure 1: Autoformer architecture. The encoder eliminates the long-term trend-cyclical part by series decomposition blocks (blue blocks) and focuses on seasonal patterns modeling. The decoder accumulates the trend part extracted from hidden variables progressively. The past seasonal information from encoder is utilized by the encoder-decoder Auto-Correlation (center green block in decoder). " + ], + "image_footnote": [], + "bbox": [ + 174, + 88, + 825, + 286 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $\\chi _ { \\mathrm { e n s } } , \\chi _ { \\mathrm { e n t } } \\in \\mathbb { R } ^ { \\frac { I } { 2 } \\times d }$ denote the seasonal and trend-cyclical parts of $\\mathcal { X } _ { \\mathrm { e n } }$ respectively, and $\\mathcal { X } _ { 0 } , \\mathcal { X } _ { \\mathrm { M e a n } } \\in \\mathbb { R } ^ { O \\times d }$ denote the placeholders filled with zero and the mean of $\\mathcal { X } _ { \\mathrm { e n } }$ respectively. ", + "bbox": [ + 174, + 368, + 823, + 400 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Encoder As shown in Figure 1, the encoder focuses on the seasonal part modeling. The output of the encoder contains the past seasonal information and will be used as the cross information to help the decoder refine prediction results. Suppose we have $N$ encoder layers. The overall equations for $l$ -th encoder layer are summarized as $\\mathcal { X } _ { \\mathrm { e n } } ^ { \\hat { l } ^ { \\mathrm { ~ \\tiny ~ \\cdot ~ } } } = \\mathrm { E n c o d e r } ( \\mathcal { X } _ { \\mathrm { e n } } ^ { l - 1 } )$ . Details are shown as follows: ", + "bbox": [ + 173, + 412, + 826, + 469 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/cf5b96dae4c206d1e884f885670db030d85b3cb046d302cbd50a4dac521f6449.jpg", + "text": "$$\n\\begin{array} { r l } & { S _ { \\mathrm { e n } } ^ { l , 1 } , \\ l _ { - } = \\mathrm { S e r i e s D e c o m p } \\Big ( \\mathrm { A u t o - C o r r e l a t i o n } ( \\mathcal { X } _ { \\mathrm { e n } } ^ { l - 1 } ) + \\mathcal { X } _ { \\mathrm { e n } } ^ { l - 1 } \\Big ) } \\\\ & { S _ { \\mathrm { e n } } ^ { l , 2 } , \\ l _ { - } = \\mathrm { S e r i e s D e c o m p } \\Big ( \\mathrm { F e e d F o r w a r d } ( S _ { \\mathrm { e n } } ^ { l , 1 } ) + S _ { \\mathrm { e n } } ^ { l , 1 } \\Big ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 292, + 474, + 704, + 529 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $\\underline { { { \\bf \\Pi } } } ^ { 6 6 } \\underline { { { \\bf \\Pi } } } ^ { 5 9 }$ is the eliminated trend part. $\\mathcal { X } _ { \\mathrm { e n } } ^ { l } = S _ { \\mathrm { e n } } ^ { l , 2 } , l \\in \\{ 1 , \\cdots , N \\}$ denotes the output of $l$ -th encoder layer and $\\mathcal { X } _ { \\mathrm { e n } } ^ { 0 }$ is the embedded $\\mathcal { X } _ { \\mathrm { e n } }$ . $S _ { \\mathrm { e n } } ^ { l , i }$ , $i \\in \\{ 1 , 2 \\}$ represents the seasonal component after the -th series decomposition block in the $l$ -th layer respectively. We will give detailed description of Auto-Correlation $( \\cdot )$ in the next section, which can seamlessly replace the self-attention. ", + "bbox": [ + 173, + 532, + 825, + 592 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Decoder The decoder contains two parts: the accumulation structure for trend-cyclical components and the stacked Auto-Correlation mechanism for seasonal components (Figure 1). Each decoder layer contains the inner Auto-Correlation and encoder-decoder Auto-Correlation, which can refine the prediction and utilize the past seasonal information respectively. Note that the model extracts the potential trend from the intermediate hidden variables during the decoder, allowing Autoformer to progressively refine the trend prediction and eliminate interference information for period-based dependencies discovery in Auto-Correlation. Suppose there are $M$ decoder layers. With the latent variable $\\chi _ { \\mathrm { e n } } ^ { N }$ from the encoder, the equations of $l$ -th decoder layer can be summarized as $\\mathcal { X } _ { \\mathrm { d e } } ^ { l } =$ $\\mathrm { D e c o d e r } ( \\mathcal { X } _ { \\mathrm { d e } } ^ { l - 1 } , \\mathcal { X } _ { \\mathrm { e n } } ^ { N } )$ . The decoder can be formalized as follows: ", + "bbox": [ + 173, + 604, + 826, + 734 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/61949f61e35543e7ee1153307307222fd6b2e0d60dadeae1cc3fce06995e170c.jpg", + "text": "$$\n\\begin{array} { r l } & { S _ { \\mathrm { d e } } ^ { l , 1 } , \\mathcal { T } _ { \\mathrm { d e } } ^ { l , 1 } = \\mathrm { S e r i e s D e c o m p } \\left( \\mathrm { A u t o - C o r r e l a t i o n } ( \\mathcal { X } _ { \\mathrm { d e } } ^ { l - 1 } ) + \\mathcal { X } _ { \\mathrm { d e } } ^ { l - 1 } \\right) } \\\\ & { S _ { \\mathrm { d e } } ^ { l , 2 } , \\mathcal { T } _ { \\mathrm { d e } } ^ { l , 2 } = \\mathrm { S e r i e s D e c o m p } \\left( \\mathrm { A u t o - C o r r e l a t i o n } ( S _ { \\mathrm { d e } } ^ { l , 1 } , \\mathcal { X } _ { \\mathrm { e n } } ^ { N } ) + S _ { \\mathrm { d e } } ^ { l , 1 } \\right) } \\\\ & { S _ { \\mathrm { d e } } ^ { l , 3 } , \\mathcal { T } _ { \\mathrm { d e } } ^ { l , 3 } = \\mathrm { S e r i e s D e c o m p } \\left( \\mathrm { F e e d F o r w a r d } ( S _ { \\mathrm { d e } } ^ { l , 2 } ) + S _ { \\mathrm { d e } } ^ { l , 2 } \\right) } \\\\ & { \\qquad \\mathcal { T } _ { \\mathrm { d e } } ^ { l } = \\mathcal { T } _ { \\mathrm { d e } } ^ { l - 1 } + \\mathcal { W } _ { l , 1 } \\ast \\mathcal { T } _ { \\mathrm { d e } } ^ { l , 1 } + \\mathcal { W } _ { l , 2 } \\ast \\mathcal { T } _ { \\mathrm { d e } } ^ { l , 2 } + \\mathcal { W } _ { l , 3 } \\ast \\mathcal { T } _ { \\mathrm { d e } } ^ { l , 3 } , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 274, + 738, + 723, + 844 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $\\mathcal { X } _ { \\mathrm { d e } } ^ { l } = { S } _ { \\mathrm { d e } } ^ { l , 3 } , l \\in \\{ 1 , \\cdots , M \\}$ denotes the output of $l$ -th decoder layer. $\\mathcal { X } _ { \\mathrm { d e } } ^ { 0 }$ is embedded from $\\mathcal { X } _ { \\mathrm { d e s } }$ de de for deep transform and $\\mathcal { T } _ { \\mathrm { d e } } ^ { 0 } = \\mathcal { X } _ { \\mathrm { d e t } }$ is for accumulatio . $S _ { \\mathrm { d e } } ^ { l , i } , T _ { \\mathrm { d e } } ^ { l , i } , i \\in \\{ 1 , 2 , 3 \\}$ represent the $i$ $l$ -th layer respectively. $\\mathcal { W } _ { l , i } , i \\in \\{ 1 , 2 , 3 \\}$ represents the projector for the $i$ -th extracted trend $\\mathcal { T } _ { \\mathrm { d e } } ^ { l , i }$ . ", + "bbox": [ + 173, + 848, + 825, + 912 + ], + "page_idx": 3 + }, + { + "type": "image", + "img_path": "images/611e264868072bea6977edb6f802f5f63a12c602deabbfe382df58f997963cca.jpg", + "image_caption": [ + "Figure 2: Auto-Correlation (left) and Time Delay Aggregation (right). We utilize the Fast Fourier Transform to calculate the autocorrelation $\\mathcal { R } ( \\tau )$ , which reflects the time-delay similarities. Then the similar sub-processes are rolled to the same index based on selected delay $\\tau$ and aggregated by $\\mathcal { R } ( \\tau )$ . " + ], + "image_footnote": [], + "bbox": [ + 173, + 90, + 826, + 272 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The final prediction is the sum of the two refined decomposed components, as $\\mathcal { W } _ { S } \\ast \\mathcal { X } _ { \\mathrm { d e } } ^ { M } + \\mathcal { T } _ { \\mathrm { d e } } ^ { M }$ where is to project the deep transformed seasonal component to the target dimension. ", + "bbox": [ + 174, + 339, + 825, + 371 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.2 Auto-Correlation Mechanism ", + "text_level": 1, + "bbox": [ + 174, + 381, + 418, + 395 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "As shown in Figure 2, we propose the Auto-Correlation mechanism with series-wise connections to expand the information utilization. Auto-Correlation discovers the period-based dependencies by calculating the series autocorrelation and aggregates similar sub-series by time delay aggregation. ", + "bbox": [ + 173, + 400, + 826, + 443 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Period-based dependencies It is observed that the same phase position among periods naturally provides similar sub-processes. Inspired by the stochastic process theory [8, 24], for a real discretetime process $\\{ \\mathcal { X } _ { t } \\}$ , we can obtain the autocorrelation $\\mathcal { R } _ { \\mathcal { X } \\mathcal { X } } ( \\tau )$ by the following equations: ", + "bbox": [ + 173, + 457, + 825, + 501 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/fb64cef2f5829fd289fb477f5c815edeb42f5543fa2e2009089f66659843dcdb.jpg", + "text": "$$\n\\mathcal { R } _ { \\mathcal { X } \\mathcal { X } } ( \\tau ) = \\operatorname* { l i m } _ { L \\infty } \\frac { 1 } { L } \\sum _ { t = 1 } ^ { L } \\mathcal { X } _ { t } \\mathcal { X } _ { t - \\tau } .\n$$", + "text_format": "latex", + "bbox": [ + 387, + 507, + 611, + 551 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "$\\mathcal { R } _ { \\mathcal { X } \\mathcal { X } } ( \\tau )$ reflects the time-delay similarity between $\\{ \\mathcal { X } _ { t } \\}$ and its $\\tau$ lag series $\\{ \\mathcal { X } _ { t - \\tau } \\}$ . As shown in Figure 2, we use the autocorrelation $\\mathcal { R } ( \\tau )$ as the unnormalized confidence of estimated period length $\\tau$ . Then, we choose the most possible $k$ period lengths $\\tau _ { 1 } , \\cdots , \\tau _ { k }$ . The period-based dependencies are derived by the above estimated periods and can be weighted by the corresponding autocorrelation. ", + "bbox": [ + 173, + 556, + 825, + 614 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "1Time delay aggregation The period-based dependencies connect the sub-series among estimated 1periods. Thus, we present the time delay aggregation block (Figure 2), which can roll the series based on selected time delay $\\tau _ { 1 } , \\cdots , \\tau _ { k }$ . This operation can align similar sub-series that are at the same phase position of estimated periods, which is different from the point-wise dot-product aggregation in self-attention family. Finally, we aggregate the sub-series by softmax normalized confidences. ", + "bbox": [ + 173, + 627, + 826, + 699 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "For the single head situation and time series $\\mathcal { X }$ with length- $L$ , after the projector, we get query $\\mathcal { Q }$ , key $\\kappa$ and value $\\nu$ . Thus, it can replace self-attention seamlessly. The Auto-Correlation mechanism is: ", + "bbox": [ + 171, + 704, + 823, + 733 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/6e1702fd112f4259c360baac62f3388d05edd202271aca6d8571fd7c14922488.jpg", + "text": "$$\n\\begin{array} { r l } & { \\qquad \\tau _ { 1 } , \\cdots , \\tau _ { k } = \\underset { \\tau \\in \\{ 1 , \\cdots , L \\} } { \\mathrm { a r g } \\mathrm { T o p k } } ( \\mathcal { R } _ { \\mathcal { Q } , \\mathcal { K } } ( \\tau ) ) } \\\\ & { \\qquad \\widehat { \\mathcal { R } } _ { \\mathcal { Q } , \\mathcal { K } } ( \\tau _ { 1 } ) , \\cdots , \\widehat { \\mathcal { R } } _ { \\mathcal { Q } , \\mathcal { K } } ( \\tau _ { k } ) = \\mathrm { S o f t M a x } ( \\mathcal { R } _ { \\mathcal { Q } , \\mathcal { K } } ( \\tau _ { 1 } ) , \\cdots , \\mathcal { R } _ { \\mathcal { Q } , \\mathcal { K } } ( \\tau _ { k } ) ) } \\\\ & { \\mathrm { A u t o - C o r r e l a t i o n } ( \\mathcal { Q } , \\mathcal { K } , \\mathcal { V } ) = \\underset { i = 1 } { \\overset { k } { \\sum } } \\mathrm { R o l l } ( \\mathcal { V } , \\tau _ { i } ) \\widehat { \\mathcal { R } } _ { \\mathcal { Q } , \\mathcal { K } } ( \\tau _ { i } ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 267, + 738, + 730, + 835 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where ar $\\boldsymbol { \\mathrm { \\xi ^ { 2 } } } \\mathrm { T o p k } ( \\cdot )$ is to get the arguments of the Topk autocorrelations and let $k = \\lfloor c \\times \\log L \\rfloor$ , $c$ is a hyper-parameter. $\\mathcal { R } _ { \\mathcal { Q } , \\kappa }$ is autocorrelation between series $\\mathcal { Q }$ and $\\kappa$ . $\\mathrm { R o l l } ( \\mathcal { X } , \\tau )$ represents the operation to $\\mathcal { X }$ with time delay $\\tau$ , during which elements that are shifted beyond the first position are re-introduced at the last position. For the encoder-decoder Auto-Correlation (Figure 1), $\\kappa , \\nu$ are from the encoder $\\chi _ { \\mathrm { e n } } ^ { N }$ and will be resized to length- $O$ , $\\mathcal { Q }$ is from the previous block of the decoder. ", + "bbox": [ + 173, + 840, + 826, + 912 + ], + "page_idx": 4 + }, + { + "type": "image", + "img_path": "images/b3a1dd188e9913684d89e9998ab12a2c0b4d1275bd0f7f003ea51f10541c2ec2.jpg", + "image_caption": [ + "Figure 3: Auto-Correlation vs. self-attention family. Full Attention [35] (a) adapts the fully connection among all time points. Sparse Attention [17, 41] (b) selects points based on the proposed similarity metrics. LogSparse Attention [20] (c) chooses points following the exponentially increasing intervals. Auto-Correlation (d) focuses on the connections of sub-series among underlying periods. " + ], + "image_footnote": [], + "bbox": [ + 176, + 88, + 823, + 292 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "For the multi-head version used in Autoformer, with hidden variables of $d _ { \\mathrm { m o d e l } }$ channels, $h$ heads, the query, key and value for $i$ -th head are $\\mathcal { Q } _ { i } , \\mathcal { K } _ { i } , \\mathcal { V } _ { i } \\in \\mathbb { R } ^ { L \\times \\frac { d _ { \\mathrm { m o d e l } } } { h } }$ , $i \\in \\{ 1 , \\cdots , h \\}$ . The process is: ", + "bbox": [ + 171, + 364, + 825, + 398 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/62c004a35e71d95d2adf122bec64c3548f70fa05424bd3536c4b4e3582ae4569.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathrm { M u l t i H e a d } ( \\mathcal { Q } , K , \\mathcal { V } ) = \\mathcal { W } _ { \\mathrm { o u t p u t } } * \\mathrm { C o n c a t } ( \\mathrm { h e a d } _ { 1 } , \\cdot \\cdot \\cdot , \\mathrm { h e a d } _ { h } ) } \\\\ & { \\quad \\quad \\quad \\mathrm { w h e r e ~ h e a d } _ { i } = \\mathrm { A u t o - C o r r e l a t i o n } ( \\mathcal { Q } _ { i } , K _ { i } , \\mathcal { V } _ { i } ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 285, + 401, + 714, + 438 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Efficient computation For period-based dependencies, these dependencies point to sub-processes at the same phase position of underlying periods and are inherently sparse. Here, we select the most possible delays to avoid picking the opposite phases. Because we aggregate ${ \\mathcal { O } } ( \\log L )$ series whose length is $L$ , the complexity of Equations 6 and 7 is $\\mathcal { O } ( L \\log L )$ . For the autocorrelation computation (Equation 5), given time series $\\{ \\mathcal { X } _ { t } \\}$ , $\\mathcal { R } _ { \\mathcal { X } \\mathcal { X } } ( \\tau )$ can be calculated by Fast Fourier Transforms (FFT) based on the Wiener–Khinchin theorem [37]: ", + "bbox": [ + 173, + 445, + 826, + 530 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/2d3d564e0485f3fffbb3432f06a689f28d47f204dc0cc229606fec48019eb783.jpg", + "text": "$$\n\\begin{array} { r l } & { \\displaystyle \\mathcal { S } _ { \\mathcal { X } \\mathcal { X } } ( f ) = \\mathcal { F } \\left( \\mathcal { X } _ { t } \\right) \\mathcal { F } ^ { * } \\left( \\mathcal { X } _ { t } \\right) = \\int _ { - \\infty } ^ { \\infty } \\mathcal { X } _ { t } e ^ { - i 2 \\pi t f } \\mathrm { d } t \\overline { { \\int _ { - \\infty } ^ { \\infty } \\mathcal { X } _ { t } e ^ { - i 2 \\pi t f } \\mathrm { d } t } } } \\\\ & { \\displaystyle \\mathcal { R } _ { \\mathcal { X } \\mathcal { X } } ( \\tau ) = \\mathcal { F } ^ { - 1 } \\left( S _ { \\mathcal { X } \\mathcal { X } } ( f ) \\right) = \\int _ { - \\infty } ^ { \\infty } S _ { \\mathcal { X } \\mathcal { X } } ( f ) e ^ { i 2 \\pi f \\tau } \\mathrm { d } f , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 276, + 534, + 722, + 606 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "where $\\tau \\in \\{ 1 , \\cdots , L \\}$ , $\\mathcal { F }$ denotes the FFT and ${ \\mathcal { F } } ^ { - 1 }$ is its inverse. $^ *$ denotes the conjugate operation and $\\mathcal { S } _ { \\mathcal { X X } } ( f )$ is in the frequency domain. Note that the series autocorrelation of all lags in $\\{ 1 , \\cdots , L \\}$ can be calculated at once by FFT. Thus, Auto-Correlation achieves the $\\mathcal { O } ( L \\log L )$ complexity. ", + "bbox": [ + 176, + 609, + 820, + 652 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Auto-Correlation vs. self-attention family Different from the point-wise self-attention family, Auto-Correlation presents the series-wise connections (Figure 3). Concretely, for the temporal dependencies, we find the dependencies among sub-series based on the periodicity. In contrast, the self-attention family only calculates the relation between scattered points. Though some selfattentions [20, 41] consider the local information, they only utilize this to help point-wise dependencies discovery. For the information aggregation, we adopt the time delay block to aggregate the similar sub-series from underlying periods. In contrast, self-attentions aggregate the selected points by dot-product. Benefiting from the inherent sparsity and sub-series-level representation aggregation, Auto-Correlation can simultaneously benefit the computation efficiency and information utilization. ", + "bbox": [ + 173, + 665, + 826, + 791 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4 Experiments ", + "text_level": 1, + "bbox": [ + 174, + 809, + 312, + 827 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We extensively evaluate the proposed Autoformer on six real-world benchmarks, covering five mainstream time series forecasting applications: energy, traffic, economics, weather and disease. ", + "bbox": [ + 173, + 840, + 823, + 869 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Datasets Here is a description of the six experiment datasets: (1) ETT [41] dataset contains the data collected from electricity transformers, including load and oil temperature that are recorded every ", + "bbox": [ + 173, + 882, + 821, + 911 + ], + "page_idx": 5 + }, + { + "type": "table", + "img_path": "images/52266c9dbd8161d0a8bdaa7f10b0a3b498678a2fbad400c2e8c8e72446796d73.jpg", + "table_caption": [ + "Table 1: Multivariate results with different prediction lengths $O \\in \\{ 9 6 , 1 9 2 , 3 3 6 , 7 2 0 \\}$ . We set the input length $I$ as 36 for ILI and 96 for the others. A lower MSE or MAE indicates a better prediction. " + ], + "table_footnote": [ + "\\* ETT means the ETTm2. See supplementary materials for the full benchmark of ETTh1, ETTh2, ETTm1. " + ], + "table_body": "
Models AutoformerInformer[41]LogTrans[20]Reformer[17]LSTNet[19]LSTM[13]TCN[3]
MetricMSEMAEMSEMAEMSEMAEMSEMAEMSE MAEMSE MAEMSEMAE
T96 192 3360.255 0.281 0.3390.339 0.3400.365 0.5330.453 0.5630.768 0.9890.642 0.7570.6580.6193.142 3.1541.365 1.3692.041 2.2491.073 1.1123.041 3.0721.330 1.339
1.078 0.827 1.549
720 960.422 0.2010.372 0.4191.363 3.3790.887 1.3883.0481.3340.872 1.3282.6310.972 1.2423.160 3.1711.369 1.368 2.7202.5681.238 1.2873.105 3.1351.348 1.354
erneera192 3360.2220.317 0.3340.274 0.2960.368 0.3860.258 0.2660.357 0.3680.312 0.3480.402 0.4330.680 0.645 0.7250.6760.375 0.4420.437 0.4730.985 0.9960.813 0.821
7200.231 0.2540.338 0.3610.300 0.3730.394 0.4390.280 0.2830.380 0.3760.350 0.3400.433 0.4200.828 0.9570.727 0.8110.439 0.9800.473 0.8141.000 1.4380.824 0.784
uepeg96 1920.1970.3230.8470.7520.9680.8121.0650.8291.5511.058 1.4531.049 3.0041.432
3360.300 0.5090.369 0.5241.2040.8951.0400.8511.1880.9061.4771.0281.8461.1793.0481.444
7201.4470.9411.672 2.4781.036 1.3101.659 1.9411.081 1.1271.357 1.5100.976 1.0161.507 2.2851.031 1.2432.136 2.9841.2313.1131.459
960.6130.3880.7190.3910.6840.3840.7320.4231.4273.1501.458
[Tjeee1920.6160.3820.6960.3790.6850.3900.7330.4201.107 1.1570.685 0.7060.843 0.8470.453 0.4531.438 1.4630.784 0.794
336 7200.6220.3370.7770.4200.7330.4080.7420.4201.2160.7300.8530.4551.4790.799
0.6600.4080.8640.4720.7170.3960.7550.4231.4810.8051.5000.8051.4990.804
waaeee960.2660.3360.3000.3840.4580.4900.6890.5960.5940.5870.3690.4060.6150.589
192 3360.3070.3670.5980.5440.6580.5890.7520.6380.5600.5650.4160.4350.6290.600
7200.3590.3950.5780.5230.7970.6520.6390.5960.5970.5870.4550.4540.6390.608
0.4190.4281.0590.7410.8690.6751.1300.7920.6180.5990.5350.5200.6390.610
243.4835.764
361.2871.6774.4801.4444.4001.3826.0261.7705.9141.7346.6241.830
483.1031.1484.7551.4674.7991.4674.7831.4485.3401.6686.6311.8456.8581.879
2.6691.0854.7631.4694.8001.4684.8321.4656.0801.7876.7361.8576.968
601.1255.2641.5645.2781.5604.8821.4835.5481.720 6.8701.8797.1271.892 1.918
2.770
", + "bbox": [ + 173, + 126, + 825, + 506 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "15 minutes between July 2016 and July 2018. (2) Electricity1 dataset contains the hourly electricity consumption of 321 customers from 2012 to 2014. (3) Exchange [19] records the daily exchange rates of eight different countries ranging from 1990 to 2016. (4) Traffic2 is a collection of hourly data from California Department of Transportation, which describes the road occupancy rates measured by different sensors on San Francisco Bay area freeways. (5) Weather3 is recorded every 10 minutes for 2020 whole year, which contains 21 meteorological indicators, such as air temperature, humidity, etc. (6) $I L I ^ { 4 }$ includes the weekly recorded influenza-like illness (ILI) patients data from Centers for Disease Control and Prevention of the United States between 2002 and 2021, which describes the ratio of patients seen with ILI and the total number of the patients. We follow standard protocol and split all datasets into training, validation and test set in chronological order by the ratio of 6:2:2 for the ETT dataset and 7:1:2 for the other datasets. ", + "bbox": [ + 173, + 531, + 825, + 684 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Implementation details Our method is trained with L2 loss, using the ADAM [16] optimizer with an initial learning rate of $1 0 ^ { - 4 }$ . Batch size is set to 32. The training process is early stopped within 10 epochs. All experiments are repeated three times, implemented in PyTorch [25] and conducted on a single NVIDIA TITAN RTX 24GB GPUs. The hyper-parameter $c$ of Auto-Correlation is in the range of 1 to 3 to trade off performance and efficiency. See supplementary materials for standard deviations and sensitivity analysis. Autoformer contains 2 encoder layers and 1 decoder layer. ", + "bbox": [ + 173, + 694, + 825, + 777 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Baselines We include 10 baseline methods. For the multivariate setting, we select three latest stateof-the-art transformer-based models: Informer [41], Reformer [17], LogTrans [20], two RNN-based models: LSTNet [19], LSTM [13] and CNN-based TCN [3] as baselines. For the univariate setting, we include more competitive baselines: N-BEATS[23], DeepAR [28], Prophet [33] and ARMIA [1]. ", + "bbox": [ + 174, + 787, + 825, + 843 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/0b627e1d44ceb110476fbbd79f418eefb3c5de77241146900a5c22035547c876.jpg", + "table_caption": [ + "Table 2: Univariate results with different prediction lengths $O \\in \\{ 9 6 , 1 9 2 , 3 3 6 , 7 2 0 \\}$ on typical datasets. We set the input length $I$ as 96. A lower MSE or MAE indicates a better prediction. " + ], + "table_footnote": [], + "table_body": "
Models Autoformer N-BEATS[23] Informer[41] LogTrans[20] Reformer[17] DeepAR[28] Prophet[33] ARIMA[1]
Metric1MSE MAE MSEMAEMSE MAEMSEMAEMSEMAEMSE MAEMSE MAE MSE MAE
960.065 0.1890.0820.2190.088 0.2250.0820.2170.1310.2880.0990.2370.287 0.456 0.211 0.362
1920.118 0.256 0.1200.2680.132 0.2830.1330.2840.1860.3540.1540.3100.312 0.483 0.261 0.406
3360.1540.305 0.2260.3700.1800.336 0.2010.3610.2200.3810.2770.4280.331 0.474 0.317 0.448
7200.182 0.335 0.1880.338 0.3000.435 0.2680.4070.2670.4300.332 0.468 0.5340.593 0.366 0.487
aepeg960.241 0.387 0.1560.2990.591(0.615 0.2790.4411.3270.9440.417 0.515 0.828 0.762 0.112 0.245
1920.273 0.403 0.6690.6651.1830.912 1.9501.0481.2580.9240.813 0.735 0.909 0.974 0.304 0.404
3360.508 0.539 0.6110.6051.367 0.984 2.4381.2622.1791.2961.331 0.962 1.304 0.988 0.736 0.598
7200.991 0.768 1.1110.8601.8721.072 2.0101.2471.2800.9531.894 1.181 3.238 1.566 1.871 0.935
", + "bbox": [ + 173, + 125, + 830, + 279 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "4.1 Main Results ", + "text_level": 1, + "bbox": [ + 173, + 299, + 305, + 314 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "To compare performances under different future horizons, we fix the input length and evaluate models with a wide range of prediction lengths: 96, 192, 336, 720. This setting precisely meets the definition of long-term forecasting. Here are results on both the multivariate and univariate settings. ", + "bbox": [ + 174, + 324, + 825, + 366 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Multivariate results As for the multivariate setting, Autoformer achieves the consistent state-ofthe-art performance in all benchmarks and all prediction length settings (Table 1). Especially, under the input-96-predict-336 setting, compared to previous state-of-the-art results, Autoformer gives $74 \\%$ $1 . 3 3 4 { } 0 . 3 3 9 _ { . }$ ) MSE reduction in ETT, $18 \\%$ $0 . 2 8 0 { } 0 . 2 3 1$ ) in Electricity, $61 \\%$ ( $1 . 3 5 7 { } 0 . 5 0 9 \\rangle$ in Exchange, $15 \\%$ $( 0 . 7 3 3 { } 0 . 6 2 2 )$ in Traffic and $21 \\%$ $( 0 . 4 5 5 { } 0 . 3 5 9 )$ ) in Weather. For the input36-predict-60 setting of ILI, Autoformer makes $43 \\%$ $4 . 8 8 2 { } 2 . 7 7 0$ ) MSE reduction. Overall, Autoformer yields a $38 \\%$ averaged MSE reduction among above settings. Note that Autoformer still provides remarkable improvements in the Exchange dataset that is without obvious periodicity. See supplementary materials for detailed showcases. Besides, we can also find that the performance of Autoformer changes quite steadily as the prediction length $O$ increases. It means that Autoformer retains better long-term robustness, which is meaningful for real-world practical applications, such as weather early warning and long-term energy consumption planning. ", + "bbox": [ + 173, + 375, + 826, + 542 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Univariate results We list the univariate results of two typical datasets in Table 2. Under the comparison with extensive baselines, our Autoformer still achieves state-of-the-art performance for the long-term forecasting tasks. In particular, for the input-96-predict-336 setting, our model achieves $14 \\%$ $0 . 1 8 0 { } 0 . 1 4 5$ MSE reduction on the ETT dataset with obvious periodicity. For the Exchange dataset without obvious periodicity, Autoformer surpasses other baselines by $17 \\%$ $( 0 . 6 1 1 { } 0 . 5 0 8 )$ and shows greater long-term forecasting capacity. Also, we find that ARIMA [1] performs best in the input-96-predict-96 setting of the Exchange dataset but fails in the long-term setting. This situation of ARIMA can be benefited from its inherent capacity for non-stationary economic data but is limited by the intricate temporal patterns of real-world series. ", + "bbox": [ + 173, + 551, + 825, + 676 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "4.2 Ablation studies ", + "text_level": 1, + "bbox": [ + 174, + 693, + 326, + 707 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/f3267c9ffb0709b04d20d44b69cea4a5d6f80e9e1ad7cf53d50e148f69ec1a8b.jpg", + "table_caption": [ + "Table 3: Ablation of decomposition in multivariate ETT with MSE metric. Ours adopts our progressive architecture into other models. Sep employs two models to forecast pre-decomposed seasonal and trend-cyclical components separately. Promotion is the MSE reduction compared to Origin. " + ], + "table_footnote": [], + "table_body": "
Input-96Transformer[35]Informer[41]LogTrans[17]Reformer[20]Promotion
Predict-O| OriginSepOursOriginSepOursOriginSepOursOrigin SepOursSepOurs
960.6040.3110.2040.3650.4900.3540.7680.8620.2310.6580.4450.2180.0690.347
1921.060 0.760(0.2660.5330.6580.4320.9890.5330.3781.0780.510 0.3360.300 0.562
3361.4130.6650.3751.3631.4690.4811.3340.7620.3621.5491.0280.3660.4341.019
7202.6723.2000.5373.3792.7660.8223.0482.6010.5392.6312.8450.5020.079 2.332
", + "bbox": [ + 173, + 771, + 825, + 868 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Decomposition architecture With our proposed progressive decomposition architecture, other models can gain consistent promotion, especially as the prediction length $O$ increases (Table 3). This verifies that our method can generalize to other models and release the capacity of other dependencies learning mechanisms, alleviate the distraction caused by intricate patterns. Besides, our architecture outperforms the pre-processing, although the latter employs a bigger model and more parameters. Especially, pre-decomposing may even bring negative effect because it neglects the interaction of components during long-term future, such as Transformer [35] predict-720, Informer [41] predict-336. ", + "bbox": [ + 173, + 883, + 823, + 911 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 92, + 825, + 161 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Auto-Correlation vs. self-attention family As shown in Table 4, our proposed Auto-Correlation achieves the best performance under various input- ${ \\mathbf { \\nabla } } J$ -predict- $O$ settings, which verifies the effectiveness of series-wise connections comparing to point-wise self-attentions (Figure 3). Furthermore, we can also observe that Auto-Correlation is memory efficiency from the last column of Table 4, which can be used in long sequence forecasting, such as input-336-predict-1440. ", + "bbox": [ + 174, + 174, + 825, + 244 + ], + "page_idx": 8 + }, + { + "type": "table", + "img_path": "images/8a1c7a7b0f3818ccf9690fa4d7b20f84d23baf3a2cad4a8205686e2fe885f2ed.jpg", + "table_caption": [ + "Table 4: Comparison of Auto-Correlation and self-attention in the multivariate ETT. We replace the Auto-Correlation in Autoformer with different self-attentions. The “-” indicates the out-of-memory. " + ], + "table_footnote": [], + "table_body": "
Input Length I Prediction Length O96192336
336720144033672014403367201440
Auto- CorrelationMSE MAE0.339 0.3720.422 0.4190.555 0.4960.355 0.3920.429 0.4300.503 0.4840.361 0.4060.425 0.4400.574 0.534
Full Attention[35]MSE MAE0.375 0.4250.537 0.5020.667 0.5890.450 0.4700.554 0.533- -0.501 0.4850.647 0.4911 =
LogSparse Attention[20]MSE MAE0.362 0.4130.539 0.5220.582 0.5290.420 0.4500.552 0.5130.958 0.7360.474 0.4740.601 0.524- =
LSH Attention[17]MSE MAE0.366 0.4040.502 0.4750.663 0.5670.407 0.4210.636 0.5711.069 0.7560.442 0.4760.615 0.5321 -
ProbSparse Attention[41]MSE MAE0.481 0.4720.822 0.5590.715 0.5860.404 0.4251.148 0.6540.732 0.6020.417 0.4340.631 0.5281.133 0.691
", + "bbox": [ + 173, + 290, + 825, + 489 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "4.3 Model Analysis ", + "text_level": 1, + "bbox": [ + 174, + 506, + 320, + 521 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Time series decomposition As shown in Figure 4, without our series decomposition block, the forecasting model cannot capture the increasing trend and peaks of the seasonal part. By adding the series decomposition blocks, Autoformer can aggregate and refine the trend-cyclical part from series progressively. This design also facilitates the learning of the seasonal part, especially the peaks and troughs. This verifies the necessity of our proposed progressive decomposition architecture. ", + "bbox": [ + 173, + 531, + 825, + 602 + ], + "page_idx": 8 + }, + { + "type": "image", + "img_path": "images/226af42008cf294d2ad17509100d9847b1a2e1adc1ae3b98a6fc44cc7d5195f9.jpg", + "image_caption": [ + "Figure 4: Visualization of learned seasonal gradually add the decomposition blocks in $\\mathcal { X } _ { \\mathrm { d e } } ^ { M }$ and trend-cyclical der from left to rig $\\mathcal { T } _ { \\mathrm { d e } } ^ { M }$ of the last decoder layer. Wehis case is from ETT dataset under input-96-predict-720 setting. For clearness, we add the linear growth to raw data additionally. " + ], + "image_footnote": [], + "bbox": [ + 176, + 611, + 821, + 733 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Dependencies learning The marked time delay sizes in Figure 5(a) indicate the most likely periods. Our learned periodicity can guide the model to aggregate the sub-series from the same or neighbor phase of periods by $\\mathrm { R o l l } ( \\mathcal { X } , \\tau _ { i } )$ , $i \\in \\{ 1 , \\cdots , 6 \\}$ . For the last time step (declining stage), AutoCorrelation fully utilizes all similar sub-series without omissions or errors compared to self-attentions. This verifies that Autoformer can discover the relevant information more sufficiently and precisely. ", + "bbox": [ + 174, + 799, + 826, + 869 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Complex seasonality modeling As shown in Figure 6, the lags that Autoformer learns from deep representations can indicate the real seasonality of raw series. For example, the learned lags of the daily recorded Exchange dataset present the monthly, quarterly and yearly periods (Figure 6 (b)). For the hourly recorded Traffic dataset (Figure 6 (c)), the learned lags show the intervals as 24-hours and 168-hours, which match the daily and weekly periods of real-world scenarios. These results show that Autoformer can capture the complex seasonalities of real-world series from deep representations and further provide a human-interpretable prediction. ", + "bbox": [ + 173, + 882, + 821, + 911 + ], + "page_idx": 8 + }, + { + "type": "image", + "img_path": "images/1f8ff11071d73f33cde0d525eb867796c34772cd0e34d9f2c2266d99a710dd8f.jpg", + "image_caption": [ + "Figure 5: Visualization of learned dependencies. For clearness, we select the top-6 time delay sizes $\\tau _ { 1 } , \\cdots , \\tau _ { 6 }$ of Auto-Correlation and mark them in raw series (red lines). For self-attentions, top-6 similar points with respect to the last time step (red stars) are also marked by orange points. " + ], + "image_footnote": [], + "bbox": [ + 173, + 88, + 821, + 203 + ], + "page_idx": 9 + }, + { + "type": "image", + "img_path": "images/487dd7c7362dd1bad3b32de704db93d0e84eac245cf0c6717299a42cde5d4a6b.jpg", + "image_caption": [ + "Figure 6: Statistics of learned lags. For each time series in the test set, we count the top 10 lags learned by decoder for the input-96-predict-336 task. Figure (a)-(d) are the density histograms. " + ], + "image_footnote": [], + "bbox": [ + 174, + 261, + 821, + 368 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 419, + 825, + 489 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Efficiency analysis We compare the running memory and time among Auto-Correlation-based and self-attention-based models (Figure 7) during the training phase. The proposed Autoformer shows $\\mathcal { O } ( L \\log L )$ complexity in both memory and time and achieves better long-term sequences efficiency. ", + "bbox": [ + 174, + 503, + 825, + 546 + ], + "page_idx": 9 + }, + { + "type": "image", + "img_path": "images/9945f941aa3e41c082433f9479d4023d07440ec79228f1bcc87357764c332377.jpg", + "image_caption": [ + "Figure 7: Efficiency Analysis. For memory, we replace Auto-Correlation with self-attention family in Autoformer and record the memory with input 96. For running time, we run the Auto-Correlation or self-attentions $1 0 ^ { 3 }$ times to get the execution time per step. The output length increases exponentially. " + ], + "image_footnote": [], + "bbox": [ + 173, + 559, + 825, + 704 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "5 Conclusions ", + "text_level": 1, + "bbox": [ + 174, + 768, + 307, + 786 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "This paper studies the long-term forecasting problem of time series, which is a pressing demand for real-world applications. However, the intricate temporal patterns prevent the model from learning reliable dependencies. We propose the Autoformer as a decomposition architecture by embedding the series decomposition block as an inner operator, which can progressively aggregate the longterm trend part from intermediate prediction. Besides, we design an efficient Auto-Correlation mechanism to conduct dependencies discovery and information aggregation at the series level, which contrasts clearly from the previous self-attention family. Autoformer can naturally achieve $\\mathcal { O } ( L \\log L )$ complexity and yield consistent state-of-the-art performance in extensive real-world datasets. ", + "bbox": [ + 173, + 800, + 826, + 911 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Acknowledgments and Disclosure of Funding ", + "text_level": 1, + "bbox": [ + 174, + 88, + 553, + 107 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "This work was supported by the National Natural Science Foundation of China under Grants 62022050 and 62021002, Beijing Nova Program under Grant Z201100006820041, China’s Ministry of Industry and Information Technology, the MOE Innovation Plan and the BNRist Innovation Fund. ", + "bbox": [ + 174, + 119, + 826, + 162 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "References ", + "text_level": 1, + "bbox": [ + 174, + 180, + 267, + 196 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "[1] O. Anderson and M. Kendall. Time-series. 2nd edn. J. R. Stat. Soc. (Series D), 1976. [2] Reza Asadi and Amelia C Regan. A spatio-temporal decomposition based deep neural network for time series forecasting. Appl. Soft Comput., 2020. [3] Shaojie Bai, J Zico Kolter, and Vladlen Koltun. An empirical evaluation of generic convolutional and recurrent networks for sequence modeling. arXiv preprint arXiv:1803.01271, 2018. [4] Anastasia Borovykh, Sander Bohte, and Cornelis W Oosterlee. Conditional time series forecasting with convolutional neural networks. arXiv preprint arXiv:1703.04691, 2017. [5] G. E. P. Box and Gwilym M. Jenkins. Time series analysis, forecasting and control. 1970. [6] George EP Box and Gwilym M Jenkins. Some recent advances in forecasting and control. J. R. Stat. Soc. (Series-C), 1968. \n[7] Tom Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared D 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 Ziegler, Jeffrey Wu, Clemens Winter, Chris 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. In NeurIPS, 2020. [8] Chris Chatfield. The analysis of time series: an introduction. 1981. [9] Renyi Chen and Molei Tao. Data-driven prediction of general hamiltonian dynamics via learning exactlysymplectic maps. ICML, 2021. \n[10] Emmanuel de Bézenac, Syama Sundar Rangapuram, Konstantinos Benidis, Michael Bohlke-Schneider, Richard Kurle, Lorenzo Stella, Hilaf Hasson, Patrick Gallinari, and Tim Januschowski. Normalizing kalman filters for multivariate time series analysis. In NeurIPS, 2020. \n[11] J. Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep bidirectional transformers for language understanding. In NAACL-HLT, 2019. \n[12] Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai, Thomas Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Sylvain Gelly, Jakob Uszkoreit, and Neil Houlsby. An image is worth 16x16 words: Transformers for image recognition at scale. In ICLR, 2021. \n[13] S. Hochreiter and J. Schmidhuber. Long short-term memory. Neural Comput., 1997. \n[14] Cheng-Zhi Anna Huang, Ashish Vaswani, Jakob Uszkoreit, Ian Simon, Curtis Hawthorne, Noam Shazeer, Andrew M. Dai, Matthew D. Hoffman, Monica Dinculescu, and Douglas Eck. Music transformer. In ICLR, 2019. \n[15] Rob J Hyndman and George Athanasopoulos. Forecasting: principles and practice. 2018. \n[16] Diederik P. Kingma and Jimmy Ba. Adam: A method for stochastic optimization. In ICLR, 2015. \n[17] Nikita Kitaev, Lukasz Kaiser, and Anselm Levskaya. Reformer: The efficient transformer. In ICLR, 2020. \n[18] Richard Kurle, Syama Sundar Rangapuram, Emmanuel de Bézenac, Stephan Günnemann, and Jan Gasthaus. Deep rao-blackwellised particle filters for time series forecasting. In NeurIPS, 2020. \n[19] Guokun Lai, Wei-Cheng Chang, Yiming Yang, and Hanxiao Liu. Modeling long-and short-term temporal patterns with deep neural networks. In SIGIR, 2018. \n[20] Shiyang Li, Xiaoyong Jin, Yao Xuan, Xiyou Zhou, Wenhu Chen, Yu-Xiang Wang, and Xifeng Yan. Enhancing the locality and breaking the memory bottleneck of transformer on time series forecasting. In NeurIPS, 2019. \n[21] Ze Liu, Yutong Lin, Yue Cao, Han Hu, Yixuan Wei, Zheng Zhang, Stephen Lin, and Baining Guo. Swin transformer: Hierarchical vision transformer using shifted windows. In ICCV, 2021. \n[22] Danielle C Maddix, Yuyang Wang, and Alex Smola. Deep factors with gaussian processes for forecasting. arXiv preprint arXiv:1812.00098, 2018. \n[23] Boris N Oreshkin, Dmitri Carpov, Nicolas Chapados, and Yoshua Bengio. N-BEATS: Neural basis expansion analysis for interpretable time series forecasting. ICLR, 2019. \n[24] Athanasios Papoulis and H Saunders. Probability, random variables and stochastic processes. 1989. \n[25] Adam Paszke, S. Gross, Francisco Massa, A. Lerer, James Bradbury, Gregory Chanan, Trevor Killeen, Z. Lin, N. Gimelshein, L. Antiga, Alban Desmaison, Andreas Köpf, Edward Yang, Zach DeVito, Martin Raison, Alykhan Tejani, Sasank Chilamkurthy, Benoit Steiner, Lu Fang, Junjie Bai, and Soumith Chintala. Pytorch: An imperative style, high-performance deep learning library. In NeurIPS, 2019. \n[26] Syama Sundar Rangapuram, Matthias W Seeger, Jan Gasthaus, Lorenzo Stella, Yuyang Wang, and Tim Januschowski. Deep state space models for time series forecasting. In NeurIPS, 2018. \n[27] Cleveland Robert, C William, and Terpenning Irma. STL: A seasonal-trend decomposition procedure based on loess. J. Off. Stat, 1990. \n[28] David Salinas, Valentin Flunkert, Jan Gasthaus, and Tim Januschowski. DeepAR: Probabilistic forecasting with autoregressive recurrent networks. Int. J. Forecast., 2020. \n[29] Rajat Sen, Hsiang-Fu Yu, and Inderjit S. Dhillon. Think globally, act locally: A deep neural network approach to high-dimensional time series forecasting. In NeurIPS, 2019. \n[30] Shun-Yao Shih, Fan-Keng Sun, and Hung-yi Lee. Temporal pattern attention for multivariate time series forecasting. Mach. Learn., 2019. \n[31] Huan Song, Deepta Rajan, Jayaraman Thiagarajan, and Andreas Spanias. Attend and diagnose: Clinical time series analysis using attention models. In AAAI, 2018. \n[32] Antti Sorjamaa, Jin Hao, Nima Reyhani, Yongnan Ji, and Amaury Lendasse. Methodology for long-term prediction of time series. Neurocomputing, 2007. \n[33] Sean J Taylor and Benjamin Letham. Forecasting at scale. Am. Stat., 2018. \n[34] Aäron van den Oord, S. Dieleman, H. Zen, K. Simonyan, Oriol Vinyals, A. Graves, Nal Kalchbrenner, A. Senior, and K. Kavukcuoglu. Wavenet: A generative model for raw audio. In SSW, 2016. \n[35] 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. \n[36] Ruofeng Wen, Kari Torkkola, Balakrishnan Narayanaswamy, and Dhruv Madeka. A multi-horizon quantile recurrent forecaster. NeurIPS, 2017. \n[37] Norbert Wiener. Generalized harmonic analysis. Acta Math, 1930. \n[38] Sifan Wu, Xi Xiao, Qianggang Ding, Peilin Zhao, Ying Wei, and Junzhou Huang. Adversarial sparse transformer for time series forecasting. In NeurIPS, 2020. \n[39] Q. Yao, D. Song, H. Chen, C. Wei, and G. W. Cottrell. A dual-stage attention-based recurrent neural network for time series prediction. In IJCAI, 2017. \n[40] Rose Yu, Stephan Zheng, Anima Anandkumar, and Yisong Yue. Long-term forecasting using tensor-train rnns. arXiv preprint arXiv:1711.00073, 2017. \n[41] Haoyi Zhou, Shanghang Zhang, Jieqi Peng, Shuai Zhang, Jianxin Li, Hui Xiong, and Wancai Zhang. Informer: Beyond efficient transformer for long sequence time-series forecasting. In AAAI, 2021. ", + "bbox": [ + 171, + 195, + 828, + 911 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 92, + 828, + 815 + ], + "page_idx": 11 + } +] \ No newline at end of file diff --git a/parse/train/JG-SlCAx5_K/images/019673aff3153b24234a310391ed42d9c81088591fddf2cc7eb418d921800332.jpg b/parse/train/JG-SlCAx5_K/images/019673aff3153b24234a310391ed42d9c81088591fddf2cc7eb418d921800332.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d588c0f6472c954afceab30b85ae8c1e0850b533 --- /dev/null +++ b/parse/train/JG-SlCAx5_K/images/019673aff3153b24234a310391ed42d9c81088591fddf2cc7eb418d921800332.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79e899bf283645fa293982753e9843a01187ce9c6e8e169ae5a5a2487ebc28ca +size 11679 diff --git a/parse/train/JG-SlCAx5_K/images/115f0ef27b3ae276645a06d8c15371d771109c767a72d8ffc95998a6ec1d55db.jpg b/parse/train/JG-SlCAx5_K/images/115f0ef27b3ae276645a06d8c15371d771109c767a72d8ffc95998a6ec1d55db.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8accddeab29b128a57be380a6e0316f61e553b89 --- /dev/null +++ b/parse/train/JG-SlCAx5_K/images/115f0ef27b3ae276645a06d8c15371d771109c767a72d8ffc95998a6ec1d55db.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a36028af997fb1706aa81d6fc4d17d6f83accf05a7555047b58758ee9e5425b +size 13672 diff --git a/parse/train/JG-SlCAx5_K/images/17478aacfa0825c24d4efefdcc10b097ca24f3d4fdf4bc8e89046ebe7f0b15a8.jpg b/parse/train/JG-SlCAx5_K/images/17478aacfa0825c24d4efefdcc10b097ca24f3d4fdf4bc8e89046ebe7f0b15a8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2052ab9142badc485bdb3136edf50f48b6a60b95 --- /dev/null +++ b/parse/train/JG-SlCAx5_K/images/17478aacfa0825c24d4efefdcc10b097ca24f3d4fdf4bc8e89046ebe7f0b15a8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14e9fc5cec42e8202889252d6844ce24894af92c981c98f35980b934d5884882 +size 7426 diff --git a/parse/train/JG-SlCAx5_K/images/1bb5cd9809445b92975f25d3de02307121f0571a65d61bf8b055406cdc447ce9.jpg b/parse/train/JG-SlCAx5_K/images/1bb5cd9809445b92975f25d3de02307121f0571a65d61bf8b055406cdc447ce9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..94df11ccd6c0e2e77526046a6f639772b17d0ac5 --- /dev/null +++ b/parse/train/JG-SlCAx5_K/images/1bb5cd9809445b92975f25d3de02307121f0571a65d61bf8b055406cdc447ce9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:def37af9ca67e6db939894cec975f7e476a0c53a5e7fb1ffa110121b8bd2c85f +size 13386 diff --git a/parse/train/JG-SlCAx5_K/images/1e60e5f175445785ae5b7f05d14eca9ff4503fbba92a5039188753eade047450.jpg b/parse/train/JG-SlCAx5_K/images/1e60e5f175445785ae5b7f05d14eca9ff4503fbba92a5039188753eade047450.jpg new file mode 100644 index 0000000000000000000000000000000000000000..510a1a061d00165bc294d0598db8f36866cc2541 --- /dev/null +++ b/parse/train/JG-SlCAx5_K/images/1e60e5f175445785ae5b7f05d14eca9ff4503fbba92a5039188753eade047450.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:754c829aa7e7ad2f72419318ffe000d4b2b69d4f240488c20bf9f9638b29ca01 +size 19870 diff --git a/parse/train/JG-SlCAx5_K/images/2de287fec84c55f2a62835e84347ec2e58c183b03740c6cd0bb69c78658d3bc9.jpg b/parse/train/JG-SlCAx5_K/images/2de287fec84c55f2a62835e84347ec2e58c183b03740c6cd0bb69c78658d3bc9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b89f6e6b6865285348edd8a82ee3106200412db7 --- /dev/null +++ b/parse/train/JG-SlCAx5_K/images/2de287fec84c55f2a62835e84347ec2e58c183b03740c6cd0bb69c78658d3bc9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a65654ab37e23dd24a04cda4b86b38872396e9c06743d982e037e618f298fe2 +size 33607 diff --git a/parse/train/JG-SlCAx5_K/images/318f4b7b85ff34c65448f1858758db87fc47d86433ef6e6cdd2a92d8816934ea.jpg b/parse/train/JG-SlCAx5_K/images/318f4b7b85ff34c65448f1858758db87fc47d86433ef6e6cdd2a92d8816934ea.jpg new file mode 100644 index 0000000000000000000000000000000000000000..de6534c50df9dbdc71d08a7a98242000ad0620bd --- /dev/null +++ b/parse/train/JG-SlCAx5_K/images/318f4b7b85ff34c65448f1858758db87fc47d86433ef6e6cdd2a92d8816934ea.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f353291de2d5cb9c4bc78a87ca6b34c8677102f3f72846b0ee2522de95e3698 +size 12782 diff --git a/parse/train/JG-SlCAx5_K/images/4b0800ba8a5e03bd4ddc57775de98cce018d0745cceb87a6a5d10c6b16f46363.jpg b/parse/train/JG-SlCAx5_K/images/4b0800ba8a5e03bd4ddc57775de98cce018d0745cceb87a6a5d10c6b16f46363.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e5410c72582f57c3812291ff324aa88ae8582d6 --- /dev/null +++ b/parse/train/JG-SlCAx5_K/images/4b0800ba8a5e03bd4ddc57775de98cce018d0745cceb87a6a5d10c6b16f46363.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:685a7e5740ca1ca376c527b1f4f717384899ac271cf779ac4da0ea9bb898443f +size 129804 diff --git a/parse/train/JG-SlCAx5_K/images/4c7abbcefd81e5539f2afe9b7ebd263d1d3dd8f74fe71abb5984c212b541028f.jpg b/parse/train/JG-SlCAx5_K/images/4c7abbcefd81e5539f2afe9b7ebd263d1d3dd8f74fe71abb5984c212b541028f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f4a4519ccfb44e5b1e9bfdd363c36495e5810556 --- /dev/null +++ b/parse/train/JG-SlCAx5_K/images/4c7abbcefd81e5539f2afe9b7ebd263d1d3dd8f74fe71abb5984c212b541028f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:259c09bd61d2108bcdefc86c76b58315631004e5cd7846466e41a10432971e43 +size 9362 diff --git a/parse/train/JG-SlCAx5_K/images/513a5400ffef192f910dfe03539db2c361a75645844fec54771cf23c63e7d2b7.jpg b/parse/train/JG-SlCAx5_K/images/513a5400ffef192f910dfe03539db2c361a75645844fec54771cf23c63e7d2b7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..73896e8d01609e2c741cc066cca64b01a9810e95 --- /dev/null +++ b/parse/train/JG-SlCAx5_K/images/513a5400ffef192f910dfe03539db2c361a75645844fec54771cf23c63e7d2b7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05fb0d2b1f1120674e7a3dab1d6f7283ada8a5602040eb56f42a9f68c9bb9fce +size 12218 diff --git a/parse/train/JG-SlCAx5_K/images/55ae1d4778cf1a5b605b4f6ba8167ec34cdc7a7d659dad5a3652492fa3cd586b.jpg b/parse/train/JG-SlCAx5_K/images/55ae1d4778cf1a5b605b4f6ba8167ec34cdc7a7d659dad5a3652492fa3cd586b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a7d9e025696c8efc0cc54d1b628410b689b66750 --- /dev/null +++ b/parse/train/JG-SlCAx5_K/images/55ae1d4778cf1a5b605b4f6ba8167ec34cdc7a7d659dad5a3652492fa3cd586b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41bc1acacf34413958e60e3facad4411a2eb049c990e233783e1960b36c535ca +size 8217 diff --git a/parse/train/JG-SlCAx5_K/images/a582fb6a973a707da2ca642467983ef490d9b46ef69834159125364e1493a4b2.jpg b/parse/train/JG-SlCAx5_K/images/a582fb6a973a707da2ca642467983ef490d9b46ef69834159125364e1493a4b2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..16602db2b7c4ab51f4008ce4402beae77ab74733 --- /dev/null +++ b/parse/train/JG-SlCAx5_K/images/a582fb6a973a707da2ca642467983ef490d9b46ef69834159125364e1493a4b2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2cef4e26ca05f9ecb27e20a0da9a33f21fb988125c0593318f888e26c1f1103 +size 70543 diff --git a/parse/train/JG-SlCAx5_K/images/bc7131e80976def89d777867f865510168603474709b0e2f96c867263c85bc6b.jpg b/parse/train/JG-SlCAx5_K/images/bc7131e80976def89d777867f865510168603474709b0e2f96c867263c85bc6b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..40b0c0c40304938a21b9b66de8097c79edfba467 --- /dev/null +++ b/parse/train/JG-SlCAx5_K/images/bc7131e80976def89d777867f865510168603474709b0e2f96c867263c85bc6b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdea3b15b731d514b25c3cfa111a34c1e5f0df67ca7e9e13ed34da77488d4814 +size 8005 diff --git a/parse/train/JG-SlCAx5_K/images/be54971a5a60e73bdcd5debb0fd63cc7fee4f4a5f165a9cbfea5a89a4ff84aef.jpg b/parse/train/JG-SlCAx5_K/images/be54971a5a60e73bdcd5debb0fd63cc7fee4f4a5f165a9cbfea5a89a4ff84aef.jpg new file mode 100644 index 0000000000000000000000000000000000000000..52c8c57d46154fb6f179012c94fb9bf394f2ea16 --- /dev/null +++ b/parse/train/JG-SlCAx5_K/images/be54971a5a60e73bdcd5debb0fd63cc7fee4f4a5f165a9cbfea5a89a4ff84aef.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95bf4feb4d3ccd9d547fbc524968759463333565f1216423e8c0a5e8257dc99f +size 10351 diff --git a/parse/train/JG-SlCAx5_K/images/d2141fab6172c932163522b1a6abc7db12b2a399d6dea33ec0fdf70bc739ed9e.jpg b/parse/train/JG-SlCAx5_K/images/d2141fab6172c932163522b1a6abc7db12b2a399d6dea33ec0fdf70bc739ed9e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d64f371b6aa3647bffe010ad2c7ab13db75fdbfa --- /dev/null +++ b/parse/train/JG-SlCAx5_K/images/d2141fab6172c932163522b1a6abc7db12b2a399d6dea33ec0fdf70bc739ed9e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf9861f1263f82120329ab5ab4f022e6575376ac14c453dff5292c257a5b10d9 +size 6837 diff --git a/parse/train/JG-SlCAx5_K/images/e2899c8e60314aa5d0d262add3c4d68fbf158450ae273c1e944f406c27384e93.jpg b/parse/train/JG-SlCAx5_K/images/e2899c8e60314aa5d0d262add3c4d68fbf158450ae273c1e944f406c27384e93.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1cd2a259d37055f864d9026e157bc0895a917dcb --- /dev/null +++ b/parse/train/JG-SlCAx5_K/images/e2899c8e60314aa5d0d262add3c4d68fbf158450ae273c1e944f406c27384e93.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:428ebb1f97934db7c7d4eb80bbf6cb5e256dc86a93515f2bd5b5b9f659ba7a81 +size 10463 diff --git a/parse/train/JG-SlCAx5_K/images/f46db6fa8fd3ad41d2bd57bfbf0b5032fd160bdb630f47e8f74bab8da49662dd.jpg b/parse/train/JG-SlCAx5_K/images/f46db6fa8fd3ad41d2bd57bfbf0b5032fd160bdb630f47e8f74bab8da49662dd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ee0652bbeaea4c2f753d2c957ad3e9482d618113 --- /dev/null +++ b/parse/train/JG-SlCAx5_K/images/f46db6fa8fd3ad41d2bd57bfbf0b5032fd160bdb630f47e8f74bab8da49662dd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:192186641418b57e86d6cec1eaeb46d77056a0a8fe743a8ebb9c74f198f486c2 +size 15581 diff --git a/parse/train/MDsQkFP1Aw/images/009325d66056abe322a9c947da3578a089fb1a41f3783fce6dabf75f2f0a2cf0.jpg b/parse/train/MDsQkFP1Aw/images/009325d66056abe322a9c947da3578a089fb1a41f3783fce6dabf75f2f0a2cf0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..00ccc1b93a780db92082c800b03a73f830aaf877 --- /dev/null +++ b/parse/train/MDsQkFP1Aw/images/009325d66056abe322a9c947da3578a089fb1a41f3783fce6dabf75f2f0a2cf0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb4911bce3695991e3f3893a8ec45486c042d4be0f1b0b89c65c356724bc024b +size 9519 diff --git a/parse/train/MDsQkFP1Aw/images/03fe16975ed35c4d137ed69323ef792912c25ef8061d400a3031ae8156ea03e6.jpg b/parse/train/MDsQkFP1Aw/images/03fe16975ed35c4d137ed69323ef792912c25ef8061d400a3031ae8156ea03e6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cdc841dc824c46ef4dfb96a1428240259909ade0 --- /dev/null +++ b/parse/train/MDsQkFP1Aw/images/03fe16975ed35c4d137ed69323ef792912c25ef8061d400a3031ae8156ea03e6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67da7573c60a4755a470551bac1d8009b2d98a0a7d4c5fa26885a9e730b13071 +size 45695 diff --git a/parse/train/MDsQkFP1Aw/images/13b96cad7fe21e0abbae43e3f1f3d4e98372ea5c6e0aa5e2f8b7089c550a1b02.jpg b/parse/train/MDsQkFP1Aw/images/13b96cad7fe21e0abbae43e3f1f3d4e98372ea5c6e0aa5e2f8b7089c550a1b02.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f011cb32c6ff6ca1aa5e93a6e64e8c9c983a8773 --- /dev/null +++ b/parse/train/MDsQkFP1Aw/images/13b96cad7fe21e0abbae43e3f1f3d4e98372ea5c6e0aa5e2f8b7089c550a1b02.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:673f26c1316cc0da0f4236a00f04799fada7e6d134cf57dff694302ded0358d4 +size 53784 diff --git a/parse/train/MDsQkFP1Aw/images/17e3062d21a74fb4dada67cde08a2b53d0647fc4e4a53b6338af695468af8be2.jpg b/parse/train/MDsQkFP1Aw/images/17e3062d21a74fb4dada67cde08a2b53d0647fc4e4a53b6338af695468af8be2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d19c71fdca6a3293f476b92c66798e66b1daf555 --- /dev/null +++ b/parse/train/MDsQkFP1Aw/images/17e3062d21a74fb4dada67cde08a2b53d0647fc4e4a53b6338af695468af8be2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:889bd0a2d1b2b05825e34329bc48c3c7d90d578f1c146aed9ed3ad8a2d70aa16 +size 266600 diff --git a/parse/train/MDsQkFP1Aw/images/1d3c9c33e44a48df97ff5a57e897c676ed3a0b33f0f28da10c18f4bcd79136b2.jpg b/parse/train/MDsQkFP1Aw/images/1d3c9c33e44a48df97ff5a57e897c676ed3a0b33f0f28da10c18f4bcd79136b2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..65da567e801a18de5e8e9a74e412b1f579854053 --- /dev/null +++ b/parse/train/MDsQkFP1Aw/images/1d3c9c33e44a48df97ff5a57e897c676ed3a0b33f0f28da10c18f4bcd79136b2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec28597f6997f2c8956b54a901c7dee9518c8f47fc8c13c21a4ff998399f5a1b +size 5552 diff --git a/parse/train/MDsQkFP1Aw/images/2e232021f75fb318bb22d55b5fa2a7d0954d48a1cc6f1bb8a3f9b834cb866e33.jpg b/parse/train/MDsQkFP1Aw/images/2e232021f75fb318bb22d55b5fa2a7d0954d48a1cc6f1bb8a3f9b834cb866e33.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d9b976131b45ee95a5ba9c6676ef3996b9559549 --- /dev/null +++ b/parse/train/MDsQkFP1Aw/images/2e232021f75fb318bb22d55b5fa2a7d0954d48a1cc6f1bb8a3f9b834cb866e33.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5064f959c3aa6ebd22c59050721bc41c3cb855bed31ea5435f0f8ed4f0cbfa3 +size 41871 diff --git a/parse/train/MDsQkFP1Aw/images/411c8a8a504c089eba7b7bacc8e4f0dccdfd635c7bdde2e1fb9ac8136ab89f45.jpg b/parse/train/MDsQkFP1Aw/images/411c8a8a504c089eba7b7bacc8e4f0dccdfd635c7bdde2e1fb9ac8136ab89f45.jpg new file mode 100644 index 0000000000000000000000000000000000000000..74b03add1c0b5c21082e51ae021e0bd0a0605412 --- /dev/null +++ b/parse/train/MDsQkFP1Aw/images/411c8a8a504c089eba7b7bacc8e4f0dccdfd635c7bdde2e1fb9ac8136ab89f45.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28e554c96cdb6572541319bf87486ef263cca3b6b22479985a58209fe38e2965 +size 74441 diff --git a/parse/train/MDsQkFP1Aw/images/473381db5ae818599c0aa7728fc9644395a788886ae4c89280f8fb411a7442c3.jpg b/parse/train/MDsQkFP1Aw/images/473381db5ae818599c0aa7728fc9644395a788886ae4c89280f8fb411a7442c3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0982a2ed175da071a1f0f963896a3b8f8a62bba7 --- /dev/null +++ b/parse/train/MDsQkFP1Aw/images/473381db5ae818599c0aa7728fc9644395a788886ae4c89280f8fb411a7442c3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8a574ce447678cae8c51c2e434cbd036f3b4670f1dabbcc967fa5fd14e1bd9b +size 9161 diff --git a/parse/train/MDsQkFP1Aw/images/6426ca37680fd4bfabaf7832c078b3cf0e221096e2de1339a49db37fb02b5eb4.jpg b/parse/train/MDsQkFP1Aw/images/6426ca37680fd4bfabaf7832c078b3cf0e221096e2de1339a49db37fb02b5eb4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9cbb240411d0029d5234339f8a1a597b3d52a3b0 --- /dev/null +++ b/parse/train/MDsQkFP1Aw/images/6426ca37680fd4bfabaf7832c078b3cf0e221096e2de1339a49db37fb02b5eb4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a87cc0d5b0fc485ed6049c9adcd56b02dcb204b01cdbc5156acd08ccba74718 +size 7950 diff --git a/parse/train/MDsQkFP1Aw/images/657bddf0fbcc588e7c98881f141fae21c472c05d8589b52ead13683fe6051403.jpg b/parse/train/MDsQkFP1Aw/images/657bddf0fbcc588e7c98881f141fae21c472c05d8589b52ead13683fe6051403.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d6ed9e7f234f517a8db86ceff3095738c2849b2c --- /dev/null +++ b/parse/train/MDsQkFP1Aw/images/657bddf0fbcc588e7c98881f141fae21c472c05d8589b52ead13683fe6051403.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d64858937d8a8e30d6c0075cf052508a30e7b977e7aeb9a4bffaa0841ac9172b +size 37626 diff --git a/parse/train/MDsQkFP1Aw/images/6b87ce102dd356d8b5e0541f4fff56cbb4857ca4087b1912e78709ed3a9650c1.jpg b/parse/train/MDsQkFP1Aw/images/6b87ce102dd356d8b5e0541f4fff56cbb4857ca4087b1912e78709ed3a9650c1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..26b45229d7eedd66d49ee6822827ecda93b3a928 --- /dev/null +++ b/parse/train/MDsQkFP1Aw/images/6b87ce102dd356d8b5e0541f4fff56cbb4857ca4087b1912e78709ed3a9650c1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e093067a7b7081553603afd80a845f35ff1f80bc1746e1c65e9a3d1d9c564050 +size 261943 diff --git a/parse/train/MDsQkFP1Aw/images/6be1d47b06ed19178ca206b652a12d5ada9b4083cffa1fceebf746e4ea6a2e08.jpg b/parse/train/MDsQkFP1Aw/images/6be1d47b06ed19178ca206b652a12d5ada9b4083cffa1fceebf746e4ea6a2e08.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b82fb24e5c3aa631cf42e285934b5ec5bcf7a53a --- /dev/null +++ b/parse/train/MDsQkFP1Aw/images/6be1d47b06ed19178ca206b652a12d5ada9b4083cffa1fceebf746e4ea6a2e08.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcd422a28cfe8f1fa42c02387355c01a431bff1a0011aec596e29b1d36116c1d +size 8238 diff --git a/parse/train/MDsQkFP1Aw/images/6deefd5e337e4f772c5def5b37143af2cd5ae84f882f04d5756569dcef90964b.jpg b/parse/train/MDsQkFP1Aw/images/6deefd5e337e4f772c5def5b37143af2cd5ae84f882f04d5756569dcef90964b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..965a548e3899df4f4b9a5c9404a9af72972eecc0 --- /dev/null +++ b/parse/train/MDsQkFP1Aw/images/6deefd5e337e4f772c5def5b37143af2cd5ae84f882f04d5756569dcef90964b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0a629fb47e59e806a35e0e0b6869e12d87d7eef4b9377669f71a5c0ce63a956 +size 52795 diff --git a/parse/train/MDsQkFP1Aw/images/6ef06085b3b6e30e7daaa1b7ef1d95d27fff7884296ce91f9e736d7c6a9b7d7f.jpg b/parse/train/MDsQkFP1Aw/images/6ef06085b3b6e30e7daaa1b7ef1d95d27fff7884296ce91f9e736d7c6a9b7d7f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..470559b9823e9fe70684baae8cab7e1c4a6d1e19 --- /dev/null +++ b/parse/train/MDsQkFP1Aw/images/6ef06085b3b6e30e7daaa1b7ef1d95d27fff7884296ce91f9e736d7c6a9b7d7f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb0d55a1fbc9079f8f4a8e792b73d1ba1343dfc644cce7312064ecf15f2cca6a +size 170852 diff --git a/parse/train/MDsQkFP1Aw/images/749d3898d9366b22fe4367d3ef4382ba46d7839cdc4b133de75ed0df1778fb65.jpg b/parse/train/MDsQkFP1Aw/images/749d3898d9366b22fe4367d3ef4382ba46d7839cdc4b133de75ed0df1778fb65.jpg new file mode 100644 index 0000000000000000000000000000000000000000..405c86f168154b84711f4108d51b77179d8a4c59 --- /dev/null +++ b/parse/train/MDsQkFP1Aw/images/749d3898d9366b22fe4367d3ef4382ba46d7839cdc4b133de75ed0df1778fb65.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e092286c2b40dcdf68b2beba5715c66bb389d9495f220fabfa5151106b9b44e0 +size 78186 diff --git a/parse/train/MDsQkFP1Aw/images/7ea8adf48b1d71cc0960212c91f8708f84d6d5cb76c7ec73074411ce726f1540.jpg b/parse/train/MDsQkFP1Aw/images/7ea8adf48b1d71cc0960212c91f8708f84d6d5cb76c7ec73074411ce726f1540.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2fcccd9066f62ec821a77e34b4582a0795d81612 --- /dev/null +++ b/parse/train/MDsQkFP1Aw/images/7ea8adf48b1d71cc0960212c91f8708f84d6d5cb76c7ec73074411ce726f1540.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c183fb79445162381b793593527cbd2e6c4886ce3246ad827df63e876154d042 +size 43043 diff --git a/parse/train/MDsQkFP1Aw/images/8266a2fa4ec53d827ec4ed06788cf3dfc28a5f6d599ed73e0dc00288ff358b45.jpg b/parse/train/MDsQkFP1Aw/images/8266a2fa4ec53d827ec4ed06788cf3dfc28a5f6d599ed73e0dc00288ff358b45.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e1295b971cbd2fdddb4ed37603c58f8858ec38e4 --- /dev/null +++ b/parse/train/MDsQkFP1Aw/images/8266a2fa4ec53d827ec4ed06788cf3dfc28a5f6d599ed73e0dc00288ff358b45.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a543aa3daf13932986a8df214934ff493d06adccd573df53028624b52a736e9a +size 109511 diff --git a/parse/train/MDsQkFP1Aw/images/82f8752379746f4cf14ac98910667f80e2b8a718528a21bf512d2ebe98fda3c0.jpg b/parse/train/MDsQkFP1Aw/images/82f8752379746f4cf14ac98910667f80e2b8a718528a21bf512d2ebe98fda3c0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9294c39b5896bbbee5393894ba3acfafbeb46957 --- /dev/null +++ b/parse/train/MDsQkFP1Aw/images/82f8752379746f4cf14ac98910667f80e2b8a718528a21bf512d2ebe98fda3c0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef53737d1abb22ca8badbcd6b61e4c62c50e2eec01ec013ada132781c585e3d4 +size 62482 diff --git a/parse/train/MDsQkFP1Aw/images/876529e1f95613a5f57732e5f0a42d1ef1b0de31d86b86ba98b7d3b8c608447a.jpg b/parse/train/MDsQkFP1Aw/images/876529e1f95613a5f57732e5f0a42d1ef1b0de31d86b86ba98b7d3b8c608447a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..25710c5c57e7ef05f9da818b440002b90b23e856 --- /dev/null +++ b/parse/train/MDsQkFP1Aw/images/876529e1f95613a5f57732e5f0a42d1ef1b0de31d86b86ba98b7d3b8c608447a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29e1e7dbbcd86696290b6c39443c373066c128707b9ca513a325522ab9deb8c7 +size 113748 diff --git a/parse/train/MDsQkFP1Aw/images/88acdb6f455a851b9691140f2519ee5f8027c200f38a2310cfd1ad5b67efd240.jpg b/parse/train/MDsQkFP1Aw/images/88acdb6f455a851b9691140f2519ee5f8027c200f38a2310cfd1ad5b67efd240.jpg new file mode 100644 index 0000000000000000000000000000000000000000..82e7cc78258b799dd4af5ffb9d6d65daf0f36fac --- /dev/null +++ b/parse/train/MDsQkFP1Aw/images/88acdb6f455a851b9691140f2519ee5f8027c200f38a2310cfd1ad5b67efd240.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7a83cc9f48e6906eee3bd057290108d18e9f9c47c72e5495242a830c514041e +size 196963 diff --git a/parse/train/MDsQkFP1Aw/images/a167c9cd5ce8b3013f075b31603a5cc7e62a66623fb5faaac95be54b50f9908a.jpg b/parse/train/MDsQkFP1Aw/images/a167c9cd5ce8b3013f075b31603a5cc7e62a66623fb5faaac95be54b50f9908a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a7873e2f10a043e778c70e99b918a707c764c918 --- /dev/null +++ b/parse/train/MDsQkFP1Aw/images/a167c9cd5ce8b3013f075b31603a5cc7e62a66623fb5faaac95be54b50f9908a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7168269e54fcf0f748d5dad291141a6e0657cbf2cc691e4b27af1c35279496f2 +size 45406 diff --git a/parse/train/MDsQkFP1Aw/images/a6ec79c34ccd0266a9b529a1560756c62ae607dfec3c7e66b625b6440c579d2f.jpg b/parse/train/MDsQkFP1Aw/images/a6ec79c34ccd0266a9b529a1560756c62ae607dfec3c7e66b625b6440c579d2f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ff31049fd64b768c356f88189d3bb8c0b52f93f4 --- /dev/null +++ b/parse/train/MDsQkFP1Aw/images/a6ec79c34ccd0266a9b529a1560756c62ae607dfec3c7e66b625b6440c579d2f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:816e859eba02c054330997292a070cd8b145901ebe3f3af7d3fb7bae93404bba +size 40128 diff --git a/parse/train/MDsQkFP1Aw/images/abac7418f05a63d1ea4163b236ff630a76eba492beed74a0d6cee3e756f3d426.jpg b/parse/train/MDsQkFP1Aw/images/abac7418f05a63d1ea4163b236ff630a76eba492beed74a0d6cee3e756f3d426.jpg new file mode 100644 index 0000000000000000000000000000000000000000..255b9d569d0cf08d13c6bfdc5df250994a36a276 --- /dev/null +++ b/parse/train/MDsQkFP1Aw/images/abac7418f05a63d1ea4163b236ff630a76eba492beed74a0d6cee3e756f3d426.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bd8b42dccd95c6d30f34a43c11053962f39a89dd0bc970137d03a4612b34174 +size 47029 diff --git a/parse/train/MDsQkFP1Aw/images/b446785af7673dfaab3f751a6b9a7ef616a8139861b59a05815c8995fd774472.jpg b/parse/train/MDsQkFP1Aw/images/b446785af7673dfaab3f751a6b9a7ef616a8139861b59a05815c8995fd774472.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cbf2e3feba2fed6beb1fdd8f76ab0da80621d71c --- /dev/null +++ b/parse/train/MDsQkFP1Aw/images/b446785af7673dfaab3f751a6b9a7ef616a8139861b59a05815c8995fd774472.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01a51ebe5277f76d490ac03e028ec772f4a20871da9f3c78036e227434a4638a +size 71088 diff --git a/parse/train/MDsQkFP1Aw/images/c9a6e1710d9873b6546c874393f5370bf474880b73292ba31901ab92a7edd120.jpg b/parse/train/MDsQkFP1Aw/images/c9a6e1710d9873b6546c874393f5370bf474880b73292ba31901ab92a7edd120.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c12c955172dacb0b4c209232289723429015cb91 --- /dev/null +++ b/parse/train/MDsQkFP1Aw/images/c9a6e1710d9873b6546c874393f5370bf474880b73292ba31901ab92a7edd120.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35d1bf3a70e01bfd471f035da6e71ef61eb728e5cec1adb730bf300cf53cf942 +size 9421 diff --git a/parse/train/MDsQkFP1Aw/images/cc852a752e1e686f3a0cdb5804b4a2d547e6a0ae6038f76e6f444d35f4eecd71.jpg b/parse/train/MDsQkFP1Aw/images/cc852a752e1e686f3a0cdb5804b4a2d547e6a0ae6038f76e6f444d35f4eecd71.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2b0de4e31d9d7bd07629185dcfba66c215fb82f2 --- /dev/null +++ b/parse/train/MDsQkFP1Aw/images/cc852a752e1e686f3a0cdb5804b4a2d547e6a0ae6038f76e6f444d35f4eecd71.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f071972a63c76169ea03c0cc91f4cbbb5a3b30d5229d2dfc540d719ca0b1e93 +size 8330 diff --git a/parse/train/MDsQkFP1Aw/images/e7a74024546f98607bce55ae4808b7762b633c8156274fe64bb5bb7ef9ba6a8c.jpg b/parse/train/MDsQkFP1Aw/images/e7a74024546f98607bce55ae4808b7762b633c8156274fe64bb5bb7ef9ba6a8c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5ff2b7efbbc5afff661ba7444015e7738447fb83 --- /dev/null +++ b/parse/train/MDsQkFP1Aw/images/e7a74024546f98607bce55ae4808b7762b633c8156274fe64bb5bb7ef9ba6a8c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bf266931e9c3b1ad77ce61598daf07da012732737aaa5c41bd957f16ed37fa6 +size 43155 diff --git a/parse/train/MDsQkFP1Aw/images/f2773279ffa7e87fb6d7bf55800f495f1c2f7d55882523842881e5b142894ab9.jpg b/parse/train/MDsQkFP1Aw/images/f2773279ffa7e87fb6d7bf55800f495f1c2f7d55882523842881e5b142894ab9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..820a9e20b8942b59a7b32d243a621d1a36a0c0a9 --- /dev/null +++ b/parse/train/MDsQkFP1Aw/images/f2773279ffa7e87fb6d7bf55800f495f1c2f7d55882523842881e5b142894ab9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:427f02c47649c31cc21148e249bc8480f6cd605e423c2502ef479aa2b1018d36 +size 46021 diff --git a/parse/train/MDsQkFP1Aw/images/f799a85f20bbe4a7e825d56a20e768d8b5d96ae22e5f37b16c2d36fe11795aa9.jpg b/parse/train/MDsQkFP1Aw/images/f799a85f20bbe4a7e825d56a20e768d8b5d96ae22e5f37b16c2d36fe11795aa9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c1e64d7a5244a2118f5bb0c1ec5a915373ee070b --- /dev/null +++ b/parse/train/MDsQkFP1Aw/images/f799a85f20bbe4a7e825d56a20e768d8b5d96ae22e5f37b16c2d36fe11795aa9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6327d6a43e9df0d3d0cfcd04b49c61c4a7a33d133342594f8070ce889d4cca18 +size 76135 diff --git a/parse/train/MDsQkFP1Aw/images/faf361b8860389d03257519e5ac3ba50205d5604b24ce703792fdd20da7220c9.jpg b/parse/train/MDsQkFP1Aw/images/faf361b8860389d03257519e5ac3ba50205d5604b24ce703792fdd20da7220c9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f6b036fecdf5c2ef86bfeb97092b6289430d1ccf --- /dev/null +++ b/parse/train/MDsQkFP1Aw/images/faf361b8860389d03257519e5ac3ba50205d5604b24ce703792fdd20da7220c9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5945a18ca8aa8a6c3664a6fe6946219ffcffe80a632b1311ea13d0b6ada894f8 +size 249767 diff --git a/parse/train/NfZ6g2OmXEk/images/12c89f9920cfbc98f039d8c26373199f00158a847648585f26e02b045624beb2.jpg b/parse/train/NfZ6g2OmXEk/images/12c89f9920cfbc98f039d8c26373199f00158a847648585f26e02b045624beb2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3d4d375d5710d0aa7ad83c7cd31bea076f39e52c --- /dev/null +++ b/parse/train/NfZ6g2OmXEk/images/12c89f9920cfbc98f039d8c26373199f00158a847648585f26e02b045624beb2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:630d6eb76bbad90e553b916509e0c41560db35982a85d6ca6d61a09c63253abe +size 7155 diff --git a/parse/train/NfZ6g2OmXEk/images/131cd4d69d9bd2a3eee25bc589fe00a03d24ad7a3362bc90878d7fe5fc86238b.jpg b/parse/train/NfZ6g2OmXEk/images/131cd4d69d9bd2a3eee25bc589fe00a03d24ad7a3362bc90878d7fe5fc86238b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..12e38d3b9762b748c0adad67119ff52b9ba2c100 --- /dev/null +++ b/parse/train/NfZ6g2OmXEk/images/131cd4d69d9bd2a3eee25bc589fe00a03d24ad7a3362bc90878d7fe5fc86238b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3345308f03caa5584293729aa1037c6230aaef86301ba33f37e356c3c884b73 +size 6436 diff --git a/parse/train/NfZ6g2OmXEk/images/16845a6072258edd4d96a130199491e0b81ff5175ebc97e7d02fd4b8b35faf8f.jpg b/parse/train/NfZ6g2OmXEk/images/16845a6072258edd4d96a130199491e0b81ff5175ebc97e7d02fd4b8b35faf8f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..02e5005555677af2e07f5313acb5db52e0328657 --- /dev/null +++ b/parse/train/NfZ6g2OmXEk/images/16845a6072258edd4d96a130199491e0b81ff5175ebc97e7d02fd4b8b35faf8f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfe73ac0a822a442b821ebf5592d90e69942104878ce8eaf35f8f08fff6a83b5 +size 110277 diff --git a/parse/train/NfZ6g2OmXEk/images/2c4f09435a0c7ffcc2ad24e12ba3d6d14620b8dc367d998e28b00d33fed40e46.jpg b/parse/train/NfZ6g2OmXEk/images/2c4f09435a0c7ffcc2ad24e12ba3d6d14620b8dc367d998e28b00d33fed40e46.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8ed1b85b7f74da7c4c8e59c0d28f9bfd4f7f2fa7 --- /dev/null +++ b/parse/train/NfZ6g2OmXEk/images/2c4f09435a0c7ffcc2ad24e12ba3d6d14620b8dc367d998e28b00d33fed40e46.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10f95a76cb61cdb35b078639d1168bbc842a76fe42edfc7e33f260dd47ebfb09 +size 112240 diff --git a/parse/train/NfZ6g2OmXEk/images/2ff7cf2b051883943b5fd87e81afce4fafa380395929908a5c70c5822c3f3742.jpg b/parse/train/NfZ6g2OmXEk/images/2ff7cf2b051883943b5fd87e81afce4fafa380395929908a5c70c5822c3f3742.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d45259ad28c36438ab2ad900b1244b56abd01e64 --- /dev/null +++ b/parse/train/NfZ6g2OmXEk/images/2ff7cf2b051883943b5fd87e81afce4fafa380395929908a5c70c5822c3f3742.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:514b58bf5aa270f1521484c6c764e5cb3dad05909bf95ff0016597267b7fab53 +size 6854 diff --git a/parse/train/NfZ6g2OmXEk/images/30579090e64f05c1c1a44946cf219fbe9fa2ff99c20336bc1de215a1a166bfcb.jpg b/parse/train/NfZ6g2OmXEk/images/30579090e64f05c1c1a44946cf219fbe9fa2ff99c20336bc1de215a1a166bfcb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5c2303fdc96d3bb2fc73c3a321baef1f97e5fd0e --- /dev/null +++ b/parse/train/NfZ6g2OmXEk/images/30579090e64f05c1c1a44946cf219fbe9fa2ff99c20336bc1de215a1a166bfcb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:937b73e8b0412ab5ff824c3b330f9bbc0954adbaf565ebe82e7eed31dc003733 +size 1260 diff --git a/parse/train/NfZ6g2OmXEk/images/3768f862b877a3924f10d320af76dbfdb4d8d52b41cea460dc20bf26cd931360.jpg b/parse/train/NfZ6g2OmXEk/images/3768f862b877a3924f10d320af76dbfdb4d8d52b41cea460dc20bf26cd931360.jpg new file mode 100644 index 0000000000000000000000000000000000000000..81edc9639a323795a4157547d50f9d3797949037 --- /dev/null +++ b/parse/train/NfZ6g2OmXEk/images/3768f862b877a3924f10d320af76dbfdb4d8d52b41cea460dc20bf26cd931360.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:733c9239ad9cdf447d30182c4ae7216afe71cec5c98a489d22edd66ca9cf031a +size 89084 diff --git a/parse/train/NfZ6g2OmXEk/images/5fea3fdb3ae040f16f67f565d062c477eefe19d91bbe6c35033a46bc00f7d12e.jpg b/parse/train/NfZ6g2OmXEk/images/5fea3fdb3ae040f16f67f565d062c477eefe19d91bbe6c35033a46bc00f7d12e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..51035928bf7d2cb9e480aeb1ce1d99e73f6e3d15 --- /dev/null +++ b/parse/train/NfZ6g2OmXEk/images/5fea3fdb3ae040f16f67f565d062c477eefe19d91bbe6c35033a46bc00f7d12e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a7a272906314df70e53a55743c4cf3d2f93b5438b36c4c5695a800eb3208f0a +size 87410 diff --git a/parse/train/NfZ6g2OmXEk/images/61bce29790bbe19ae86ee23aea4b50e9b51bf2b0ab2372c7f69de98a10c1cf40.jpg b/parse/train/NfZ6g2OmXEk/images/61bce29790bbe19ae86ee23aea4b50e9b51bf2b0ab2372c7f69de98a10c1cf40.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c23fad1bc65f8a60c90b1fe2f18ab2cbff9c015 --- /dev/null +++ b/parse/train/NfZ6g2OmXEk/images/61bce29790bbe19ae86ee23aea4b50e9b51bf2b0ab2372c7f69de98a10c1cf40.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84bc7886f0d87599ef91d3c9ba0c757631629a050112b531a1206babc99e3e31 +size 166769 diff --git a/parse/train/NfZ6g2OmXEk/images/63a1605a9507d11ea6164729f63c33139829dde0c86aabf528746fbbdf640d30.jpg b/parse/train/NfZ6g2OmXEk/images/63a1605a9507d11ea6164729f63c33139829dde0c86aabf528746fbbdf640d30.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2eb7a9255756938948b40e0ed20e7c3a2e51d9d8 --- /dev/null +++ b/parse/train/NfZ6g2OmXEk/images/63a1605a9507d11ea6164729f63c33139829dde0c86aabf528746fbbdf640d30.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a637c74ff025dcfbc7adc6b8b2c4d59abbb96e464b4effc0747907c6cbf1fa43 +size 54404 diff --git a/parse/train/NfZ6g2OmXEk/images/6957af38faad2cc22ab0cc226ee95715983a0db1f3d2dad6165a34821d6b15d3.jpg b/parse/train/NfZ6g2OmXEk/images/6957af38faad2cc22ab0cc226ee95715983a0db1f3d2dad6165a34821d6b15d3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ecbe87a93d498e08f756a2c723555e18b858c9b5 --- /dev/null +++ b/parse/train/NfZ6g2OmXEk/images/6957af38faad2cc22ab0cc226ee95715983a0db1f3d2dad6165a34821d6b15d3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca459c5f199add5a564c871bf71703c578b367070a3ed44cf602d127d59ba3d8 +size 1305 diff --git a/parse/train/NfZ6g2OmXEk/images/6bf2c9c660929dc7134339dcacab0e0a23297fe1ed5dceb44646854c54c950f8.jpg b/parse/train/NfZ6g2OmXEk/images/6bf2c9c660929dc7134339dcacab0e0a23297fe1ed5dceb44646854c54c950f8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..819b9adb3da04c1857af29481bf39e2c058f0ff9 --- /dev/null +++ b/parse/train/NfZ6g2OmXEk/images/6bf2c9c660929dc7134339dcacab0e0a23297fe1ed5dceb44646854c54c950f8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ecd126b3a3e9abd4abbc04071985d29f666ba8d5fe0b3eed0beae8a1da3c457 +size 24370 diff --git a/parse/train/NfZ6g2OmXEk/images/7a924b388fa21233ed611f472ca5f9c58d4f4032302554db4eca5ff96186b1dd.jpg b/parse/train/NfZ6g2OmXEk/images/7a924b388fa21233ed611f472ca5f9c58d4f4032302554db4eca5ff96186b1dd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f7d63b6eb40d6cceeb20e33c3d0b357f0ad6b3bb --- /dev/null +++ b/parse/train/NfZ6g2OmXEk/images/7a924b388fa21233ed611f472ca5f9c58d4f4032302554db4eca5ff96186b1dd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ca14271d01b7285872ace7fbd0bf8cdcd4a6ed5f587be191f83cf63bb94740d +size 99291 diff --git a/parse/train/NfZ6g2OmXEk/images/848290f1586be39f222f2ed2054cbb1fc530720ff74f284a4615e774a1d4ef2c.jpg b/parse/train/NfZ6g2OmXEk/images/848290f1586be39f222f2ed2054cbb1fc530720ff74f284a4615e774a1d4ef2c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d8219cd304208084019ebf38af83303209e34edd --- /dev/null +++ b/parse/train/NfZ6g2OmXEk/images/848290f1586be39f222f2ed2054cbb1fc530720ff74f284a4615e774a1d4ef2c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d13a1ce87c561fdb363d47aefc61ac124bc0d0a0ea4ca25a3abf79f1744aac3 +size 38291 diff --git a/parse/train/NfZ6g2OmXEk/images/8f0f7e62a8ada833c5c27bda9e6c49c8df87c408fbed6a9a23fa4ac0b28f3625.jpg b/parse/train/NfZ6g2OmXEk/images/8f0f7e62a8ada833c5c27bda9e6c49c8df87c408fbed6a9a23fa4ac0b28f3625.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0e0c2d1cb7e6ba2fcf05cff7cb87ff5db465bed2 --- /dev/null +++ b/parse/train/NfZ6g2OmXEk/images/8f0f7e62a8ada833c5c27bda9e6c49c8df87c408fbed6a9a23fa4ac0b28f3625.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ed750d5953ecbefe6da72d954796f156152e79e7c01294c64f9ca9ddd22db7d +size 3316 diff --git a/parse/train/NfZ6g2OmXEk/images/9282d19aed77545fdd836b3d7ed0324d9bb722a344543580184d4c8e88618351.jpg b/parse/train/NfZ6g2OmXEk/images/9282d19aed77545fdd836b3d7ed0324d9bb722a344543580184d4c8e88618351.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0604485bdcd515ea902d7804d4d46a89ff65dcba --- /dev/null +++ b/parse/train/NfZ6g2OmXEk/images/9282d19aed77545fdd836b3d7ed0324d9bb722a344543580184d4c8e88618351.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ae5b7a24de3bad9dcfc4d5e3defe4b9f4b798b1925c6fee335494f3b7e91d81 +size 45061 diff --git a/parse/train/NfZ6g2OmXEk/images/932762a5c73c85f68707c6acbac3e0540d73d244232a39da951a1748cd952ef7.jpg b/parse/train/NfZ6g2OmXEk/images/932762a5c73c85f68707c6acbac3e0540d73d244232a39da951a1748cd952ef7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e8194b64f85123149dce740c1bf5ec7d57453020 --- /dev/null +++ b/parse/train/NfZ6g2OmXEk/images/932762a5c73c85f68707c6acbac3e0540d73d244232a39da951a1748cd952ef7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9b1611ecf48be38583f5dd36f0db6165b40b914a0eb4369bd8f043c7c603234 +size 43843 diff --git a/parse/train/NfZ6g2OmXEk/images/9ec277b6169b08ced06672d32acbfc131fe3d43a4b64ea60b44a96c684ee2310.jpg b/parse/train/NfZ6g2OmXEk/images/9ec277b6169b08ced06672d32acbfc131fe3d43a4b64ea60b44a96c684ee2310.jpg new file mode 100644 index 0000000000000000000000000000000000000000..73db41d5a4e6d5e93508b9ca7ba59629dd78c060 --- /dev/null +++ b/parse/train/NfZ6g2OmXEk/images/9ec277b6169b08ced06672d32acbfc131fe3d43a4b64ea60b44a96c684ee2310.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:396f24a3e3d97f49a0e25aded7212e443116998232a7ea1b8274d2307b0b4b31 +size 30915 diff --git a/parse/train/NfZ6g2OmXEk/images/b3d61ce6717f4492969bafe4009cf6627839a32267c5d519483492d15e28b720.jpg b/parse/train/NfZ6g2OmXEk/images/b3d61ce6717f4492969bafe4009cf6627839a32267c5d519483492d15e28b720.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bbadbc0fe648b4eed70bcd233b3419cdecab07e0 --- /dev/null +++ b/parse/train/NfZ6g2OmXEk/images/b3d61ce6717f4492969bafe4009cf6627839a32267c5d519483492d15e28b720.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc3970c81ddd52a1e0c4bdde12c20dcb5915b02ec301650dcd099a355cfd104e +size 1281 diff --git a/parse/train/NfZ6g2OmXEk/images/bb639b156f137de0d0a12ff3d2ae4130292b3828b81d143610143166a5310e5c.jpg b/parse/train/NfZ6g2OmXEk/images/bb639b156f137de0d0a12ff3d2ae4130292b3828b81d143610143166a5310e5c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9cc665b545d201b7bc3eb47bbb0f927e32bbf9a9 --- /dev/null +++ b/parse/train/NfZ6g2OmXEk/images/bb639b156f137de0d0a12ff3d2ae4130292b3828b81d143610143166a5310e5c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:128dc96b75e357fcc9b07d3bb2f2ccdf48741e7a63bd193cd6e64fb22d998649 +size 119631 diff --git a/parse/train/NfZ6g2OmXEk/images/c34fcc854540b4656548fb07ceb898977c17afea97e87491f80532487a5bc4ce.jpg b/parse/train/NfZ6g2OmXEk/images/c34fcc854540b4656548fb07ceb898977c17afea97e87491f80532487a5bc4ce.jpg new file mode 100644 index 0000000000000000000000000000000000000000..53820f0c14c8cf0ebd48be95d053c6c3615c94c8 --- /dev/null +++ b/parse/train/NfZ6g2OmXEk/images/c34fcc854540b4656548fb07ceb898977c17afea97e87491f80532487a5bc4ce.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51403451847e57b3832ad5b724574628fd101457e370069065737c6dbcd83340 +size 5684 diff --git a/parse/train/NfZ6g2OmXEk/images/cb086138d2d52c30e7ea73669a606c103d5c354fe448b29233d1ee6a2b9af101.jpg b/parse/train/NfZ6g2OmXEk/images/cb086138d2d52c30e7ea73669a606c103d5c354fe448b29233d1ee6a2b9af101.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ebc29f939d5713b678f3bdf08fd3102afbcf0ae8 --- /dev/null +++ b/parse/train/NfZ6g2OmXEk/images/cb086138d2d52c30e7ea73669a606c103d5c354fe448b29233d1ee6a2b9af101.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2201c4afced624692332ea42c6a586b06bf56d936d069e7ded14c1e6c53c8dac +size 112186 diff --git a/parse/train/NfZ6g2OmXEk/images/cd89e1727b766cdb52aa0626e0b053f8980e1765de402e664778f080562e25ca.jpg b/parse/train/NfZ6g2OmXEk/images/cd89e1727b766cdb52aa0626e0b053f8980e1765de402e664778f080562e25ca.jpg new file mode 100644 index 0000000000000000000000000000000000000000..14816fe96bacc78e5c9665d3ca840e609531e207 --- /dev/null +++ b/parse/train/NfZ6g2OmXEk/images/cd89e1727b766cdb52aa0626e0b053f8980e1765de402e664778f080562e25ca.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f152d062b824d82bca78275755ee210122562f71c7fe129705bf9c40764e987 +size 60922 diff --git a/parse/train/NfZ6g2OmXEk/images/d33109dbb02e77808d0f4367a2a7e36ed1d6ee643c8dea47a7ecfc9dd1437f52.jpg b/parse/train/NfZ6g2OmXEk/images/d33109dbb02e77808d0f4367a2a7e36ed1d6ee643c8dea47a7ecfc9dd1437f52.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5ce941775ab73aac1c17756da366512716994ed8 --- /dev/null +++ b/parse/train/NfZ6g2OmXEk/images/d33109dbb02e77808d0f4367a2a7e36ed1d6ee643c8dea47a7ecfc9dd1437f52.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:636ed10018f1a2919853c1ee0e551e2e6f82942699cb8d2b685dfbb82fdc85de +size 6137 diff --git a/parse/train/NfZ6g2OmXEk/images/d781b61f9b63844e34dd5b6cff65bb84dc946f5a4e47033ed105102cb9f17708.jpg b/parse/train/NfZ6g2OmXEk/images/d781b61f9b63844e34dd5b6cff65bb84dc946f5a4e47033ed105102cb9f17708.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7c11a8c9bb8b200bace484f2f125db4f088ee5d5 --- /dev/null +++ b/parse/train/NfZ6g2OmXEk/images/d781b61f9b63844e34dd5b6cff65bb84dc946f5a4e47033ed105102cb9f17708.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:349bcc96ad26bfacb56dcb9063a780029819c8d0390bdcd694d3651a9986f3aa +size 77771 diff --git a/parse/train/NfZ6g2OmXEk/images/f70f33c1f61511649c80ec98160f8cfc4613abfe1ebd801bdab909057a088bbc.jpg b/parse/train/NfZ6g2OmXEk/images/f70f33c1f61511649c80ec98160f8cfc4613abfe1ebd801bdab909057a088bbc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f3ca3169d29e09228229e0f3f1d318cd929bb16d --- /dev/null +++ b/parse/train/NfZ6g2OmXEk/images/f70f33c1f61511649c80ec98160f8cfc4613abfe1ebd801bdab909057a088bbc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85243c0325e23359d5294427d52f5194dd6bbf12d1b8936f36fcaf7988eddd0a +size 3425 diff --git a/parse/train/SJeD3CEFPH/images/01c0ca56174998ce2e54efe808ff05b40a6a8aa5d34fdc1097886409ec4f7bad.jpg b/parse/train/SJeD3CEFPH/images/01c0ca56174998ce2e54efe808ff05b40a6a8aa5d34fdc1097886409ec4f7bad.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3efc214cdee689c160a177530d32f4206cd4fec0 --- /dev/null +++ b/parse/train/SJeD3CEFPH/images/01c0ca56174998ce2e54efe808ff05b40a6a8aa5d34fdc1097886409ec4f7bad.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d41e6278230892391221df7f7f34bd806c367f319351cc0878b08dc4f99e46b7 +size 8345 diff --git a/parse/train/SJeD3CEFPH/images/07d7de0e698367a58640db2cdbdd886a8b673b1442d6db6f5dfc3bdaf74030b0.jpg b/parse/train/SJeD3CEFPH/images/07d7de0e698367a58640db2cdbdd886a8b673b1442d6db6f5dfc3bdaf74030b0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..62d9475242e0589e85272ba56cd596937e233523 --- /dev/null +++ b/parse/train/SJeD3CEFPH/images/07d7de0e698367a58640db2cdbdd886a8b673b1442d6db6f5dfc3bdaf74030b0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:899da7cccde2c037f98270fdd86e8981fd9b5094a54f38f75dff285e181a313c +size 67478 diff --git a/parse/train/SJeD3CEFPH/images/14bcb60c20fffa3243816502ba2ff6f0942f6c6802dd0a39412c0cc0296c03be.jpg b/parse/train/SJeD3CEFPH/images/14bcb60c20fffa3243816502ba2ff6f0942f6c6802dd0a39412c0cc0296c03be.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f58cf97d6e3f87ad1186bfc81cf3e04232237e85 --- /dev/null +++ b/parse/train/SJeD3CEFPH/images/14bcb60c20fffa3243816502ba2ff6f0942f6c6802dd0a39412c0cc0296c03be.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea028db381eadca113ea8967ae41e8a88084c34d7901dd7af87239d9d1281afc +size 7026 diff --git a/parse/train/SJeD3CEFPH/images/1652e5e095c5753afe456895c6c87c36ff3305a2d59f05d43c287b871dfb6bee.jpg b/parse/train/SJeD3CEFPH/images/1652e5e095c5753afe456895c6c87c36ff3305a2d59f05d43c287b871dfb6bee.jpg new file mode 100644 index 0000000000000000000000000000000000000000..99e8ef9720682d008eb93ab362a425791b80f8bf --- /dev/null +++ b/parse/train/SJeD3CEFPH/images/1652e5e095c5753afe456895c6c87c36ff3305a2d59f05d43c287b871dfb6bee.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c2a31627efa53271067a00068aaee5f87c437672ccede0437cc199712401c2a +size 7612 diff --git a/parse/train/SJeD3CEFPH/images/342668fdc7a46d406ac42793870c44087cdad0e81ebfd0dfc4660cb5585a9e1e.jpg b/parse/train/SJeD3CEFPH/images/342668fdc7a46d406ac42793870c44087cdad0e81ebfd0dfc4660cb5585a9e1e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..945875e885ea838ff6f49fb2b13abe7ce4ae765d --- /dev/null +++ b/parse/train/SJeD3CEFPH/images/342668fdc7a46d406ac42793870c44087cdad0e81ebfd0dfc4660cb5585a9e1e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6819be9e1b6850d33e5efaeba5fddb56f1e411f0716b14689b4dbb9455186281 +size 1947 diff --git a/parse/train/SJeD3CEFPH/images/361441edf12186c8a83cb79ee8ab40a681331f05896b6d4d1a9a5be4123072eb.jpg b/parse/train/SJeD3CEFPH/images/361441edf12186c8a83cb79ee8ab40a681331f05896b6d4d1a9a5be4123072eb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e4bc74bfe776df85b77b7d7aec924019cac7e627 --- /dev/null +++ b/parse/train/SJeD3CEFPH/images/361441edf12186c8a83cb79ee8ab40a681331f05896b6d4d1a9a5be4123072eb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:744672a05ea5a4ed5adb077a93fe5461f142debed8c7a863fc11521b829b8ed0 +size 6758 diff --git a/parse/train/SJeD3CEFPH/images/36c01716fcb64d79d370b897f1c29ebb601f84dbce2eae64ed26cdd023f1eddf.jpg b/parse/train/SJeD3CEFPH/images/36c01716fcb64d79d370b897f1c29ebb601f84dbce2eae64ed26cdd023f1eddf.jpg new file mode 100644 index 0000000000000000000000000000000000000000..118c0c4d211d864a71743d6484e4883f62ce777e --- /dev/null +++ b/parse/train/SJeD3CEFPH/images/36c01716fcb64d79d370b897f1c29ebb601f84dbce2eae64ed26cdd023f1eddf.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:122cd9dca5976e52c40fcab10bb742ca7f6a566fccb76ad56b36fc1d52a6b0a7 +size 18353 diff --git a/parse/train/SJeD3CEFPH/images/38114abfb3c6ee1376d169f2cc76fe2353ff70d43903fffce6ae456bd56de064.jpg b/parse/train/SJeD3CEFPH/images/38114abfb3c6ee1376d169f2cc76fe2353ff70d43903fffce6ae456bd56de064.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e7757ffc3ccba4f2658db8718e24fa59ac070f00 --- /dev/null +++ b/parse/train/SJeD3CEFPH/images/38114abfb3c6ee1376d169f2cc76fe2353ff70d43903fffce6ae456bd56de064.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c75db0c6b462c1910dbd30380c083d38d50dc07d75e83ae3926dc6fed6b761c +size 12551 diff --git a/parse/train/SJeD3CEFPH/images/3a75c7831780c297839a8c5ceabe8a3a732ea8db34d8542fae8fd2ae7ad5af06.jpg b/parse/train/SJeD3CEFPH/images/3a75c7831780c297839a8c5ceabe8a3a732ea8db34d8542fae8fd2ae7ad5af06.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0fb265a5af389347d9659f52d0698670c59e6a92 --- /dev/null +++ b/parse/train/SJeD3CEFPH/images/3a75c7831780c297839a8c5ceabe8a3a732ea8db34d8542fae8fd2ae7ad5af06.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18b2cb6e8d7e700e6b63061d44e012ca12495570d1a6b51c85c85b9e8bb1e012 +size 3923 diff --git a/parse/train/SJeD3CEFPH/images/3f32fe7fb42551220d0b757dfa0c5c339bcd45468d3c4588cc7cdf3713411e18.jpg b/parse/train/SJeD3CEFPH/images/3f32fe7fb42551220d0b757dfa0c5c339bcd45468d3c4588cc7cdf3713411e18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..172a64d0f1d5a8d09d278fc11ed4c208e70b8ed7 --- /dev/null +++ b/parse/train/SJeD3CEFPH/images/3f32fe7fb42551220d0b757dfa0c5c339bcd45468d3c4588cc7cdf3713411e18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b7e9f33b0839085f59a31330a85ddccfc47eca277ef29983b40373f797e605d +size 5529 diff --git a/parse/train/SJeD3CEFPH/images/457771362627efc97c62fff5a17acc1db5001492655a1f785b12cc36b6d6f6e2.jpg b/parse/train/SJeD3CEFPH/images/457771362627efc97c62fff5a17acc1db5001492655a1f785b12cc36b6d6f6e2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c56f2981c665615f5d92be08091ab66e93fbf001 --- /dev/null +++ b/parse/train/SJeD3CEFPH/images/457771362627efc97c62fff5a17acc1db5001492655a1f785b12cc36b6d6f6e2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37c8ce9a3a2f8790b2fe9571059281c66706be1591db38c78caa1d16c670a14f +size 4184 diff --git a/parse/train/SJeD3CEFPH/images/48cc9e8e9bab6e0245b2760914f5730a5e6f6bd3a26f70ad7ff826c888677478.jpg b/parse/train/SJeD3CEFPH/images/48cc9e8e9bab6e0245b2760914f5730a5e6f6bd3a26f70ad7ff826c888677478.jpg new file mode 100644 index 0000000000000000000000000000000000000000..84bef70f77865b11fab27ae8614eca05d325b39d --- /dev/null +++ b/parse/train/SJeD3CEFPH/images/48cc9e8e9bab6e0245b2760914f5730a5e6f6bd3a26f70ad7ff826c888677478.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47d4fde31e6ec4a51b47570cee94fa3c0f03a97a404bf1813d8be38586af1d35 +size 3870 diff --git a/parse/train/SJeD3CEFPH/images/4a7a8dbe88887128a70b26a53895cccf9196aaeb328b0b066c9971ac3e39e529.jpg b/parse/train/SJeD3CEFPH/images/4a7a8dbe88887128a70b26a53895cccf9196aaeb328b0b066c9971ac3e39e529.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a8d1762beb0ab4003c417f31669ea4549d3cac1d --- /dev/null +++ b/parse/train/SJeD3CEFPH/images/4a7a8dbe88887128a70b26a53895cccf9196aaeb328b0b066c9971ac3e39e529.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0cdc6e905083f3be48fb5b53e8c297ebeed919058ca763ea73ed5cb533dd075 +size 7757 diff --git a/parse/train/SJeD3CEFPH/images/50ecd84362774187e893ccd7bd046411a834c2b7f94e64540448031304c5a17c.jpg b/parse/train/SJeD3CEFPH/images/50ecd84362774187e893ccd7bd046411a834c2b7f94e64540448031304c5a17c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..af82fb1cebd76527843838d8ad4ae33d69e49f9e --- /dev/null +++ b/parse/train/SJeD3CEFPH/images/50ecd84362774187e893ccd7bd046411a834c2b7f94e64540448031304c5a17c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ba759d5dbb2d0745fe6454bc08afdae251c79080a70415e70607e303cbd86ca +size 77770 diff --git a/parse/train/SJeD3CEFPH/images/5128fdf6d6ee3f9aa4b187936e2fbdbe73f675fdf553c3b2f8cd2fbdf12229c8.jpg b/parse/train/SJeD3CEFPH/images/5128fdf6d6ee3f9aa4b187936e2fbdbe73f675fdf553c3b2f8cd2fbdf12229c8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d88128e36c843e3ca706fc4ea7529430953197fe --- /dev/null +++ b/parse/train/SJeD3CEFPH/images/5128fdf6d6ee3f9aa4b187936e2fbdbe73f675fdf553c3b2f8cd2fbdf12229c8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f65710209ba6435d8221e2584053e9c04a32bf26620e67bdbb386d70a90b49ad +size 68142 diff --git a/parse/train/SJeD3CEFPH/images/536e4d33a9916c5fa1ea32db4a5093aebc3344fb15594b6f73ee82052a68d4dc.jpg b/parse/train/SJeD3CEFPH/images/536e4d33a9916c5fa1ea32db4a5093aebc3344fb15594b6f73ee82052a68d4dc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..348af70e2fd596e223704fd537eb6c37cb6f67fd --- /dev/null +++ b/parse/train/SJeD3CEFPH/images/536e4d33a9916c5fa1ea32db4a5093aebc3344fb15594b6f73ee82052a68d4dc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2888cda5709bfd2c4ae1b03880afc2a45f39be0d2e64e59d0d4d5465f38b3949 +size 34132 diff --git a/parse/train/SJeD3CEFPH/images/584357b4197c4998aa67100ec2a798971d756f2b98ea21a498b023a2938eacb5.jpg b/parse/train/SJeD3CEFPH/images/584357b4197c4998aa67100ec2a798971d756f2b98ea21a498b023a2938eacb5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d23f1cebd84c89f838cca519d32167620ec1a22f --- /dev/null +++ b/parse/train/SJeD3CEFPH/images/584357b4197c4998aa67100ec2a798971d756f2b98ea21a498b023a2938eacb5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cce12815b698c4d9ff32c12a836366c6a0724c7ca9bcbf7c64a13434e160b47 +size 69198 diff --git a/parse/train/SJeD3CEFPH/images/5e2a29f38c4d00d398359a0168f1694ffaf6f52ebd02316f1f203d2d0253d1b8.jpg b/parse/train/SJeD3CEFPH/images/5e2a29f38c4d00d398359a0168f1694ffaf6f52ebd02316f1f203d2d0253d1b8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1cbce05fe3b5bb781635ff75000a803ad123c3a0 --- /dev/null +++ b/parse/train/SJeD3CEFPH/images/5e2a29f38c4d00d398359a0168f1694ffaf6f52ebd02316f1f203d2d0253d1b8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc0f55d9f6a84f8e023268b15e26eb3934625a5da45922b0f77fca7e2e5addb5 +size 6405 diff --git a/parse/train/SJeD3CEFPH/images/5f1edbdb2dab047f17f3d1ed8007cfda7e18d8f9e38b916507c9c15a7b2e32c4.jpg b/parse/train/SJeD3CEFPH/images/5f1edbdb2dab047f17f3d1ed8007cfda7e18d8f9e38b916507c9c15a7b2e32c4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..865babb9ff434e8a8398e4429946d48b641cba3d --- /dev/null +++ b/parse/train/SJeD3CEFPH/images/5f1edbdb2dab047f17f3d1ed8007cfda7e18d8f9e38b916507c9c15a7b2e32c4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c82d970dba9c895833a35df129576170dc722b45cbc6baae94bf2109342fdf5 +size 7080 diff --git a/parse/train/SJeD3CEFPH/images/63ab6ddf3cf26ff282a8e264b7e67b84c3b016a2a7b2df8addccc866e1a533d3.jpg b/parse/train/SJeD3CEFPH/images/63ab6ddf3cf26ff282a8e264b7e67b84c3b016a2a7b2df8addccc866e1a533d3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..00235fb3383377e434d58d1b65552fd984dd9c68 --- /dev/null +++ b/parse/train/SJeD3CEFPH/images/63ab6ddf3cf26ff282a8e264b7e67b84c3b016a2a7b2df8addccc866e1a533d3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5aa0f587f7fab1c3aa28fae9fc84c8bcd6a8901997b47fafa5ae245c0f81a4c6 +size 7307 diff --git a/parse/train/SJeD3CEFPH/images/7543b1ffa2f4cafc441b9270fd2319318343cb8edcebc6d157ae52d1a9808a03.jpg b/parse/train/SJeD3CEFPH/images/7543b1ffa2f4cafc441b9270fd2319318343cb8edcebc6d157ae52d1a9808a03.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fff1951a1191891d1882d0f77179bbc792ec0f63 --- /dev/null +++ b/parse/train/SJeD3CEFPH/images/7543b1ffa2f4cafc441b9270fd2319318343cb8edcebc6d157ae52d1a9808a03.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83820e857aa4e4f2bd79227ec20ece85fbb86e35cd2605c47a96aa4874a2d7ff +size 84426 diff --git a/parse/train/SJeD3CEFPH/images/932b9eab9dbfafb3245c4048f960d6e4e67cfa524b85fbc6449b50aeaf6a9e52.jpg b/parse/train/SJeD3CEFPH/images/932b9eab9dbfafb3245c4048f960d6e4e67cfa524b85fbc6449b50aeaf6a9e52.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2f540f73e278f7ca803de6c6b50b68de224882f3 --- /dev/null +++ b/parse/train/SJeD3CEFPH/images/932b9eab9dbfafb3245c4048f960d6e4e67cfa524b85fbc6449b50aeaf6a9e52.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e7643e6a0a726a3cb519db87924bef7c41151346d2fac5831b3290760e57a36 +size 12866 diff --git a/parse/train/SJeD3CEFPH/images/a0c2e2f9b7635714b71dbadca8306be315ae3988d9318172473ef77cca68ed51.jpg b/parse/train/SJeD3CEFPH/images/a0c2e2f9b7635714b71dbadca8306be315ae3988d9318172473ef77cca68ed51.jpg new file mode 100644 index 0000000000000000000000000000000000000000..70f9e05891ca5c6dc65187a2e37d9cb23c18795a --- /dev/null +++ b/parse/train/SJeD3CEFPH/images/a0c2e2f9b7635714b71dbadca8306be315ae3988d9318172473ef77cca68ed51.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec4f930ed38b3482fb2c635af6c5e88b42f063bff041e235334a56a5babf0f02 +size 8081 diff --git a/parse/train/SJeD3CEFPH/images/a5e4ffc4e9104fac466ee09ac523a3bcc4115a1f93e779b146394ffd7f26c1b9.jpg b/parse/train/SJeD3CEFPH/images/a5e4ffc4e9104fac466ee09ac523a3bcc4115a1f93e779b146394ffd7f26c1b9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..78a3df09bd87da1f17af02395fecbc8010eb4146 --- /dev/null +++ b/parse/train/SJeD3CEFPH/images/a5e4ffc4e9104fac466ee09ac523a3bcc4115a1f93e779b146394ffd7f26c1b9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0f5404f61f0a87f9f8dd7c9d0cf46e5f6b38137e3461a32c1dbdfcc47065a5b +size 34342 diff --git a/parse/train/SJeD3CEFPH/images/b09da969763b9d654647f221b89a14b0bd0b0a2b942f525215c68114f3d0fc14.jpg b/parse/train/SJeD3CEFPH/images/b09da969763b9d654647f221b89a14b0bd0b0a2b942f525215c68114f3d0fc14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5b797be3f932343da9fe49833cd17f77a8818f97 --- /dev/null +++ b/parse/train/SJeD3CEFPH/images/b09da969763b9d654647f221b89a14b0bd0b0a2b942f525215c68114f3d0fc14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d2acfe6cb1d60e3405f32ddf76ceabf0c97e9ad72c309497a2500e8d8228b0b +size 5211 diff --git a/parse/train/SJeD3CEFPH/images/b1a6beb24d0dbc9d0d33b828a72a6b9c62826ee97037a856fc0ced54b492f7ae.jpg b/parse/train/SJeD3CEFPH/images/b1a6beb24d0dbc9d0d33b828a72a6b9c62826ee97037a856fc0ced54b492f7ae.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9a3f3f573cd0fdf4c93b1e4550bcaf015b55f490 --- /dev/null +++ b/parse/train/SJeD3CEFPH/images/b1a6beb24d0dbc9d0d33b828a72a6b9c62826ee97037a856fc0ced54b492f7ae.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13bf8f9bc0e41fd55fe0b86a75b686629d333a0bdfaf6fb06d00981a51bc0fff +size 11801 diff --git a/parse/train/SJeD3CEFPH/images/b912e63c4cff921a3d5a491cd7b951d35d047954d0f3100936e95f9aa31b0305.jpg b/parse/train/SJeD3CEFPH/images/b912e63c4cff921a3d5a491cd7b951d35d047954d0f3100936e95f9aa31b0305.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8719c13eb0af513d61cb1bf43b59a46e5e6d9382 --- /dev/null +++ b/parse/train/SJeD3CEFPH/images/b912e63c4cff921a3d5a491cd7b951d35d047954d0f3100936e95f9aa31b0305.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c6557b0f34bea53458f6a9a30ecb6b4f4c9bd6a2090f530c3dc081d3a17cebe +size 5514 diff --git a/parse/train/SJeD3CEFPH/images/bfce95903ac4bb52f5c64bb24eeb4fc3ed920c9adabb75db9f7f125c55ec8727.jpg b/parse/train/SJeD3CEFPH/images/bfce95903ac4bb52f5c64bb24eeb4fc3ed920c9adabb75db9f7f125c55ec8727.jpg new file mode 100644 index 0000000000000000000000000000000000000000..57aa91ee8ef53d6245f0ceb26ed5066fdaa7c010 --- /dev/null +++ b/parse/train/SJeD3CEFPH/images/bfce95903ac4bb52f5c64bb24eeb4fc3ed920c9adabb75db9f7f125c55ec8727.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0455b7747f1804649a994a3fefb3ec2b6aed424257c9550c8438113e5696aca7 +size 55185 diff --git a/parse/train/SJeD3CEFPH/images/d5bbcc317ee6f4554f739d8625b8567b4799a9d7019964daafb18f172d9facb4.jpg b/parse/train/SJeD3CEFPH/images/d5bbcc317ee6f4554f739d8625b8567b4799a9d7019964daafb18f172d9facb4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fe99f300eb72308b1082f04f8a894f050e15ea6c --- /dev/null +++ b/parse/train/SJeD3CEFPH/images/d5bbcc317ee6f4554f739d8625b8567b4799a9d7019964daafb18f172d9facb4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffc56dc67ccd80822031010c0506ceb52d256066b6a298a3afacac0538cc4b18 +size 6076 diff --git a/parse/train/SJeD3CEFPH/images/e58b0c971d517dac40d33263b6e8ced7c530b4827ba0c08c85a99984da9bc9ae.jpg b/parse/train/SJeD3CEFPH/images/e58b0c971d517dac40d33263b6e8ced7c530b4827ba0c08c85a99984da9bc9ae.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f6072eef768ddc46c8ba31743f42afa770a82c85 --- /dev/null +++ b/parse/train/SJeD3CEFPH/images/e58b0c971d517dac40d33263b6e8ced7c530b4827ba0c08c85a99984da9bc9ae.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2aa061b892a4c363ced73448117c725242ba897b552f24003690c0fd86bc42d +size 31295 diff --git a/parse/train/SJeD3CEFPH/images/e9e0a0a4733a4446326e8ea2b6fde6239f47b6cea29d84e8358414759da5c884.jpg b/parse/train/SJeD3CEFPH/images/e9e0a0a4733a4446326e8ea2b6fde6239f47b6cea29d84e8358414759da5c884.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ceced6ee51a692f2274e524427f3a6e6a666732f --- /dev/null +++ b/parse/train/SJeD3CEFPH/images/e9e0a0a4733a4446326e8ea2b6fde6239f47b6cea29d84e8358414759da5c884.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e0d9e72d7842700e6cae9c69ff9f7acfc7c2f0e32aedbbcdefd859d5b7d979c +size 9075 diff --git a/parse/train/SJeD3CEFPH/images/eafe95396a5aef45830b380729fae5360000332773a15ea5df288a806f78b861.jpg b/parse/train/SJeD3CEFPH/images/eafe95396a5aef45830b380729fae5360000332773a15ea5df288a806f78b861.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b4aebdae59a392593aa2b840101c4ab6850fc6b0 --- /dev/null +++ b/parse/train/SJeD3CEFPH/images/eafe95396a5aef45830b380729fae5360000332773a15ea5df288a806f78b861.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0363ee9803ef1b4fa3da30a4bfc34329e0020ee44e351bb55ed35e58a1efeaf2 +size 37498 diff --git a/parse/train/SJeD3CEFPH/images/ef1769398b5e5f06c0c58cc77eff451ddb7eb9462bcad4d93bcfa75b4d080142.jpg b/parse/train/SJeD3CEFPH/images/ef1769398b5e5f06c0c58cc77eff451ddb7eb9462bcad4d93bcfa75b4d080142.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ea78968ec0b003ed9ddd538aed0c31f56cc01e4b --- /dev/null +++ b/parse/train/SJeD3CEFPH/images/ef1769398b5e5f06c0c58cc77eff451ddb7eb9462bcad4d93bcfa75b4d080142.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b4cc877ce060b520387074307dc4b455f185a18eff9a319c8357a903b8cd9a4 +size 5072 diff --git a/parse/train/Sk9yuql0Z/Sk9yuql0Z.md b/parse/train/Sk9yuql0Z/Sk9yuql0Z.md new file mode 100644 index 0000000000000000000000000000000000000000..8592a95271e36fbdb3326ac71f5fd73f946d07b8 --- /dev/null +++ b/parse/train/Sk9yuql0Z/Sk9yuql0Z.md @@ -0,0 +1,329 @@ +# MITIGATING ADVERSARIAL EFFECTS THROUGH RAN-DOMIZATION + +Cihang Xie, Zhishuai Zhang & Alan L. Yuille + +Department of Computer Science +The Johns Hopkins University +Baltimore, MD 21218 USA +{cihangxie306, zhshuai.zhang, alan.l.yuille}@gmail.com + +Jianyu Wang Baidu Research USA Sunnyvale, CA 94089 USA wjyouch@gmail.com + +Zhou Ren +Snap Inc. +Venice, CA 90291 USA +zhou.ren@snapchat.com + +# ABSTRACT + +Convolutional neural networks have demonstrated high accuracy on various tasks in recent years. However, they are extremely vulnerable to adversarial examples. For example, imperceptible perturbations added to clean images can cause convolutional neural networks to fail. In this paper, we propose to utilize randomization at inference time to mitigate adversarial effects. Specifically, we use two randomization operations: random resizing, which resizes the input images to a random size, and random padding, which pads zeros around the input images in a random manner. Extensive experiments demonstrate that the proposed randomization method is very effective at defending against both single-step and iterative attacks. Our method provides the following advantages: 1) no additional training or fine-tuning, 2) very few additional computations, 3) compatible with other adversarial defense methods. By combining the proposed randomization method with an adversarially trained model, it achieves a normalized score of 0.924 (ranked No.2 among 107 defense teams) in the NIPS 2017 adversarial examples defense challenge, which is far better than using adversarial training alone with a normalized score of 0.773 (ranked No.56). The code is public available at https: //github.com/cihangxie/NIPS2017_adv_challenge_defense. + +# 1 INTRODUCTION + +Convolutional Neural Networks (CNNs) have been successfully applied to a wide range of vision tasks, including image classification (Krizhevsky et al., 2012; Simonyan & Zisserman, 2015; He et al., 2016a), object detection (Girshick, 2015; Ren et al., 2015; Zhang et al., 2017), semantic segmentation (Long et al., 2015; Chen et al., 2017), visual concept discovery (Wang et al., 2017) etc. However, recent works show that CNNs are extremely vulnerable to small perturbations to the input image. For example, adding visually imperceptible perturbations to the original image can result in failures for image classification (Szegedy et al., 2014; Goodfellow et al., 2015), object detection (Xie et al., 2017) and semantic segmentation (Xie et al., 2017; Fischer et al., 2017; Cisse et al., 2017). These perturbed images are called adversarial examples and Figure 1 gives an example. Adversarial examples pose a great security danger to the deployment of commercial machine learning systems. Thus, making CNNs more robust to adversarial examples is a very important yet challenging problem. Recent works (Papernot et al., 2016b; Kurakin et al., 2017; Tramer et al., 2017; Cao & Gong, \` + +![](images/48b3009e8ed26fd44338fb7b72d9eaf8e2ea6476d67d321696065b4e396f4087.jpg) +Figure 1: This is an adversarial example crafted for VGG (Simonyan & Zisserman, 2015). The left image is classified correctly as king penguin, the center image is the adversarial perturbation (magnified by 10 and enlarged by 128 for better visualization), and the right image is the adversarial example misclassfied as chihuahua. + +2017; Metzen et al., 2017; Feinman et al., 2017; Meng & Chen, 2017) are making progress on this line of research. + +Adversarial attacks can be divided into two categories: single-step attacks, which perform only one step of gradient computation, and iterative attacks, which perform multiple steps. Intuitively, the perturbation generated by iterative methods may easily get over-fitted to the specific network parameters, and thus be less transferable. On the other hand, single-step methods may not be strong enough to fool the network. For examples, it has been demonstrated that single-step attacks, like Fast Gradient Sign Method (FGSM) (Goodfellow et al., 2015), have better transferability but weaker attack rate than iterative attacks, like DeepFool (Moosavi-Dezfooli et al., 2016). + +Due to the weak generalization of iterative attacks, low-level image transformations, e.g., resizing, padding, compression, etc, may probably destroy the specific structure of adversarial perturbations, thus making it a good defense. It can even defend against white-box iterative attacks if random transformations are applied. This is because each test image goes through random transformations and the attacker does not know the specific transformation when generating adversarial noise. Recently, adversarial training (Kurakin et al., 2017; Tramer et al., 2017) was developed to defend against \` single-step attacks. Thus by adding the proposed random transformations as additional layers to an adversarially trained model (Tramer et al., 2017), it is expected that the method is able to effec- \` tively defend against both single-step and iterative attacks, including both black-box and white-box settings. + +Based on the above reasoning, in this paper, we propose a defense method by randomization at inference time, i.e., random resizing and random padding, to mitigate adversarial effects. To the best of our knowledge, this is the first work that demonstrates the effectiveness of randomization at inference time on mitigating adversarial effects on large-scale dataset, e.g., ImageNet (Deng et al., 2009). The proposed method provides the following advantages: + +• Randomization at inference time makes the network much more robust to adversarial images, especially for iterative attacks (both white-box and black box), but hardly hurts the performance on clean (non-adversarial) images. Experiments on section 4.2 support this argument. +• There is no additional training or fine-tuning required which is easy for implementation. +• Very few computations are required by adding the two randomization layers, thus there is nearly no run time increase. +• Randomization layers are compatible to different network structures and adversarial defense methods, which can serve as a basic network module for adversarial defense. + +We conduct comprehensive experiments to test the effectiveness of our defense method, using different network structures, against different attack methods, and under different attack scenarios. The results in Section 4 demonstrate that the proposed randomization layers can significantly mitigate adversarial effects, especially for iterative attack methods. Moreover, we submitted the model, which combines the proposed randomization layers and an adversarially trained model (Tramer\` et al., 2017), to the NIPS 2017 adversarial examples defense challenge. It reaches a normalized score of 0.924 (ranked No.2 among 107 defense teams), which is far better than just using adversarial training (Tramer et al., 2017) alone with a normalized score of \` 0.773 (ranked No.56). + +# 2 RELATED WORK + +# 2.1 GENERATING ADVERSARIAL EXAMPLES + +Generating adversarial examples has been extensively studied recently. (Szegedy et al., 2014) first showed that adversarial examples, computed by adding visually imperceptible perturbations to the original images, make CNNs predict wrong labels with high confidence. (Goodfellow et al., 2015) proposed the fast gradient sign method to generate adversarial examples based on the linear nature of CNNs, and also proposed adversarial training for defense. (Moosavi-Dezfooli et al., 2016) generated adversarial examples by assuming that the loss function can be linearized around the current data point at each iteration. (Carlini & Wagner, 2017) developed a stronger attack to find adversarial perturbations by introducing auxiliary variables which incooperate the pixel value constrain, e.g., pixel intensity must be within the range [0,255], naturally into the loss function and make the optimization process easier. (Liu et al., 2017) proposed an ensemble-based approaches to generate adversarial examples with stronger transferability. Unlike the works above, (Biggio & Laskov, 2012; Koh & Liang, 2017) showed that manipulating only a small fraction of the training data can significantly increase the number of misclassified samples at test time for learning algorithms, and such attacks are called poisoning attacks. + +# 2.2 DEFENDING AGAINST ADVERSARIAL EXAMPLES + +Opposite to generating adversarial examples, there is also progress on reducing the effects of adversarial examples. (Papernot et al., 2016b) showed networks trained using defensive distillation can effectively defend against adversarial examples. (Kurakin et al., 2017) proposed to replace the original clean images with a mixture of clean images and corresponding adversarial images in each training batch to improve the network robustness. (Tramer et al., 2017) improved the robustness \` further by training the network on an ensemble of adversarial images generated from the trained model itself and from a number of other pre-trained models. Cao & Gong (2017) proposed a regionbased classification to let models be robust to adversarial examples. (Metzen et al., 2017) trained a detector on the inner layer of the classifier to detect adversarial examples. (Feinman et al., 2017) detected adversarial examples by looking at the Bayesian uncertainty estimates of the input images in dropout neural networks and by performing density estimation in the subspace of deep features learned by the model. MagNet (Meng & Chen, 2017) detected adversarial examples with large perturbation using detector networks, and pushed adversarial examples with small perturbation towards the manifold of clean images. + +# 3 APPROACH + +# 3.1 AN OVERVIEW OF GENERATING ADVERSARIAL EXAMPLES + +Before introducing the proposed adversarial defense method, we give an overview of generating adversarial examples. Let $X _ { n }$ denote the $n$ -th image in a dataset containing $N$ images, and let $y _ { n } ^ { \mathrm { t r u e } }$ denote the corresponding ground-truth label. We use $\theta$ to denote the network parameters, and $L ( X _ { n } , y _ { n } ^ { \mathrm { t r u e } } ; \theta )$ to denote the loss. For the adversarial example generation, the goal is to maximize the loss $L ( X _ { n } + r _ { n } , y _ { n } ^ { \mathrm { t r u e } } ; \theta )$ for each image $X _ { n }$ , under the constraint that the generated adversarial example $X _ { n } ^ { \mathrm { a d v } } = X _ { n } + r _ { n }$ should look visually similar to the original image $X _ { n }$ , i.e., $| | r _ { n } | | \leq \epsilon$ , and the corresponding predicted label $y _ { n } ^ { \mathrm { a d v } } \neq y _ { n } ^ { \mathrm { t r u e } }$ . + +In our experiment, we consider three different attack methods, including one single-step attack method and two iterative attack methods. We use the cleverhans library (Papernot et al., 2016a) to generate adversarial examples, where all these attacks have been implemented via TensorFlow. + +• Fast Gradient Sign Method (FGSM): FGSM (Goodfellow et al., 2015) is a single-step attack method. It finds the adversarial perturbation that yields the highest increase of the linear cost function under $l _ { \infty }$ -norm. The update equation is + +$$ +X _ { n } ^ { \mathrm { a d v } } = X _ { n } + \epsilon \cdot s i g n \big ( \nabla _ { X _ { n } } L ( X _ { n } , y _ { n } ^ { \mathrm { t r u e } } ; \theta ) \big ) , +$$ + +where $\epsilon$ controls the magnitude of adversarial perturbation. In the experiment, we choose $\epsilon = \{ 2 , 5 , 1 0 \}$ , which corresponds to small, medium and high magnitude of adversarial perturbations, respectively. + +• DeepFool: DeepFool (Moosavi-Dezfooli et al., 2016) is an iterative attack method which finds the minimal perturbation to cross the decision boundary based on the linearization of the classifier at each iteration. Any $l _ { p }$ -norm can be used with DeepFool, and we choose $l _ { 2 }$ -norm for the study in this paper. + +• Carlini $\&$ Wagner (C&W): C&W (Carlini & Wagner, 2017) is a stronger iterative attack method proposed recently. It finds the adversarial perturbation $r _ { n }$ by using an auxiliary variable $\omega _ { n }$ as + +$$ +r _ { n } = { \frac { 1 } { 2 } } ( t a n h ( \omega _ { n } + 1 ) ) - X _ { n } . +$$ + +Then the loss function optimizes the auxiliary variable $\omega _ { n }$ + +$$ +\operatorname* { m i n } _ { \omega _ { n } } | | \frac { 1 } { 2 } ( t a n h ( \omega _ { n } ) + 1 ) - X _ { n } | | + c \cdot f ( \frac { 1 } { 2 } ( t a n h ( \omega _ { n } ) + 1 ) ) . +$$ + +The function $f ( \cdot )$ is defined as + +$$ +f ( x ) = \operatorname* { m a x } ( Z ( x ) _ { y ^ { \mathrm { t u e } } } - \operatorname* { m a x } \{ Z ( x ) _ { i } : i \neq y ^ { \mathrm { t r u e } } \} , - k ) , +$$ + +where $Z ( x ) _ { i }$ is the logits output for class $i$ , and $k$ controls the confidence gap between the adversarial class and true class. C&W can also work with various $l _ { p }$ -norm, and we choose $l _ { 2 }$ -norm in the experiments. + +# 3.2 DEFENDING AGAINST ADVERSARIAL EXAMPLES + +The goal of defense is to build a network that is robust to adversarial examples, i.e., it can classify adversarial images correctly with little performance loss on non-adversarial (clean) images. Towards this goal, we propose a randomization-based method, as shown in Figure 2, which adds a random resizing layer and a random padding layer to the beginning of the classification networks. There is no re-training or fine-tuning needed which makes the proposed method very easy to implement. + +# 3.2.1 RANDOMIZATION LAYERS + +The first randomization layer is a random resizing layer, which resizes the original image $X _ { n }$ with the size $W \times H \times 3$ to a new image $X _ { n } ^ { \prime }$ with random size $W ^ { \prime } \times H ^ { \prime } \times 3$ . Note that, $| W ^ { \prime } - W |$ and $| H ^ { \prime } - H |$ should be within a reasonablely small range, otherwise the network performance on non-adversarial images would significantly drop. Taking Inception-ResNet network (Szegedy et al., 2017) as an example, the original data input size is $2 9 9 \times 2 9 9 \times 3$ . Empirically we found that the network performance hardly drops if we control the height and width of the resized image $X _ { n } ^ { \prime }$ to be within the range [299, 331). + +The second randomization layer is the random padding layer, which pads zeros around the resized image in a random manner. Specifically, by padding the resized image $X _ { n } ^ { \prime }$ into a new image $X _ { n } ^ { \prime \prime }$ with the size $W ^ { \prime \prime } \times H ^ { \prime \prime } \times 3$ , we can choose to pad $w$ zero pixels on the left, $W ^ { \prime \prime } - W ^ { \prime } - w$ zero pixels on the right, $h$ zero pixels on the top and $H ^ { \prime \prime } - H ^ { \prime } - h$ zero pixels on the bottom. This results in a total number of $\left( W ^ { \prime \prime } - W ^ { \prime } + 1 \right) \times \left( H ^ { \prime \prime } - H ^ { \prime } + 1 \right)$ different possible padding patterns. + +During implementation, the original image first goes through two randomization layers, and then we pass the transformed image to the original CNN for classification. The pipeline is illustrated in Figure 2. + +# 3.2.2 RANDOMIZATION LAYERS $^ +$ ADVERSARIAL TRAINING + +Note that our randomization-based method is good at defending against iterative attacks, and adversarial training (Kurakin et al., 2017; Tramer et al., 2017) can effectively increase the robustness of \` neural networks to single-step attacks. Thus, to make the best of both worlds, we can combine the proposed randomization layers and an adversarially trained model (Tramer et al., 2017) together to \` defend against both single-step and iterative attacks. + +![](images/b391dc2283db9234f0f293be29409bb96e04b1cf038128ded1f2d00537f1f162.jpg) +Figure 2: The pipeline of our randomization-based defense mechanism. The input image $X _ { n }$ first goes through the random resizing layer with a random scale applied. Then the random padding layer pads the resized image $X _ { n } ^ { \prime }$ in a random manner. The resulting padded image $X _ { n } ^ { \prime \prime }$ is used for classification. + +# 4 EXPERIMENTS + +# 4.1 EXPERIMENT SETUP + +Dataset: It is less meaningful to attack the images that are already classified wrongly. Therefore, we randomly choose 5000 images from the ImageNet validation set that are classified correctly by all the considered networks to form our test dataset. All these images are of the size $2 9 9 \times 2 9 9 \times 3$ . + +Networks: We test with four publicly available networks1,2, including Inception- $\nu 3$ (Szegedy et al., 2016), ResNet- $\cdot \nu 2$ (He et al., 2016b) of 101 layers, Inception-ResNet- $\cdot \nu 2$ (Szegedy et al., 2017), and ens-adv-Inception-ResNet- $\nu 2$ which applies the ensemble adversarial training (Tramer et al., 2017) \` on Inception-ResNet- $\nu 2$ . These networks have been trained on ImageNet, and we do not perform any re-training or fine-tuning on them for the whole experiments. + +Defense Models: The defense models consist of the original networks (i.e., four above-mentioned networks) and two additional randomization layers. For the random resizing layer, it changes the input shape from $2 9 9 \times 2 9 9 \times 3$ to $r n d \times r n d \times 3$ , where rnd is a integer randomly sampled from the range [299, 331). For the random padding layer, it pads the resized image to the shape of $3 3 1 \times 3 3 1 \times 3$ in a random manner. By applying these two randomization layers, we can create 330 +$\sum _ { r n d = 2 9 9 } ( 3 3 1 - r n d + 1 ) ^ { 2 } = 1 2 5 2 8$ different patterns for a single image. Since there exists small variance on model performance w.r.t. different random patterns, we run the defense model three times independently and report the average accuracy. + +Target Models under Different Attack Scenarios: The strongest attack would be that the attackers consider ALL possible patterns of the defense models when generating the adversarial examples. However, this is computationally impossible, because failing a large number of patterns (e.g., 12528 here) at the same time takes extremely long time, and may not even converge. Thus, we let attackers use the target models to generate adversarial examples instead, and consider the following three different attack scenarios. + +• Vanilla Attack: The attackers do not know the existence of the randomization layers and the target model is just the original network. + +Table 1: Top-1 classification accuracy on the clean images. We see that adding random resizing and random padding cause very little accuracy drop on clean (non-adversarial) images. + +
ModelsInception-v3ResNet-v2-101Inception-ResNet-v2ens-adv-Inception-ResNet-v2
w/o randomization layers100%100%100%100%
wrandomization layers97.3%98.3%99.3%99.2%
+ +• Single-Pattern Attack: The attackers know the existence of the randomization layers. In order to mimic the structures of defense models, the target model is chosen as the original network $^ +$ randomization layers with only one predefined pattern. + +• Ensemble-Pattern Attack: The attackers know the existence of the randomization layers. In order to mimic the structures of defense models in a more representative way, the target model is chosen as the original network $^ +$ randomization layers with an ensemble of predefined patterns. + +Target Models and Defense Models: The target models and the defense models are exactly the same except for the parameter settings of the randomization layers, i.e., the randomization parameters at the target models are predefined while randomization parameters at the defense models are randomly generated at test time. The original networks (e.g., Inception- $\nu 3$ ) utilized by the target models and the defense models are the same. The attackers first generate adversarial examples using the target models, and then evaluate the classification accuracy of these generated adversarial examples on both the target and defense models. A low accuracy of the target model indicates that the attack is successful, and a high accuracy of the defense model indicates that the defense is effective. + +# 4.2 CLEAN IMAGES + +Table 1 shows the top-1 accuracy of networks with and without randomization layers on the clean images. We can see that randomization layers introduce negligible performance degradation on clean images. Specifically, we can observe that: (1) models with more advanced architectures tend to have less performance degradation, e.g., Inception-ResNet- $\cdot \nu 2$ only has $0 . 7 \%$ degradation while Inception-v3 has $2 . 7 \%$ degradation; (2) ensemble adversarial training brings nearly no performance degradation to the models, e.g., Inception-ResNet-v2 and ens-adv-Inception-ResNet-v2 have nearly the same performance degradation. + +# 4.3 VANILLA ATTACK SCENARIO + +For the vanilla attack scenario, the attackers are not aware of randomization layers, and directly use the original networks as the target model to generate adversarial examples. The attack ability on the defense models mostly rely on the transferability of adversarial examples to different resizing and padding. From the top-1 accuracy presented in Table 2, we observe that randomization layers can mitigate the adversarial effects for both single-step and iterative attacks significantly. As for singlestep attacks FGSM-, larger $\epsilon$ indicates stronger transferability, thus making it harder to defend. However, we can still get satisfactory accuracy of the defense model on single-step attacks (even with large $\epsilon$ ) using ens-adv-Inception-ResNet- $\cdot \nu 2$ $9 4 . 3 \%$ top-1 accuracy). As for iterative attacks, attackers always reach a very high attack rate on target model, but have almost no impact on models after randomization layers are applied. This is because iterative attack methods are over-fitted to the target models thus have weak transferability. + +# 4.4 SINGLE-PATTERN ATTACK SCENARIO + +For the single-pattern attack scenario, the attackers are aware of the existence of randomization layers and also the parameters of the random resizing and random padding (i.e., from $2 9 9 \times 2 9 9$ to $3 3 1 \times 3 3 1$ ), but they do not know the specific randomization patterns utilized by the defense models (even the defense models themselves do not know these specific randomization patterns since they are randomly instantiated at test time). In order to generate adversarial examples, the attackers choose the target models as the original networks $^ +$ randomization layers but with only one specific pattern to compute the gradient. In this experiment, the specific pattern that we use is to place the original input $X _ { n }$ at the center of the padded image $X _ { n } ^ { \prime \prime }$ , i.e., no resizing is applied, and 16 zeros pixels are padded on the left, right, top and bottom on the input images, respectively. Table 3 shows the top-1 accuracy of both target models and defense models, and similar results to vanilla attack scenario are observed: (1) for single-step attacks, randomization layers are less effective on mitigating adversarial effects for a larger $\epsilon$ , while the adversarially trained models are able to defend against such attacks; (2) for iterative attacks, they reach high attack rates on target models, while have nearly no impact on defense models. + +Table 2: Top-1 classification accuracy under the vanilla attack scenario. We see that randomization layers effectively mitigate adversarial effects for all attacks and all networks. Particularly, combining randomization layers with ensemble adversarial training (ens-adv-Inception-ResNet-v2) performs very well on all attacks. + +
ModelsInception-v3ResNet-v2-101Inception-ResNet-v2ens-adv-Inception-ResNet-v2
targetmodeldefensemodeltargetmodeldefensemodeltargetmodeldefensemodeltargetmodeldefensemodel
FGSM-233.2%65.1%26.3%71.8%65.3%81.0%84.4%95.7%
FGSM-531.1%54.5%20.4%54.3%61.7%74.1%87.4%94.5%
FGSM-1033.0%52.4%20.4%46.1%61.2%71.3%90.2%94.3%
DeepFool0%98.3%0%97.7%0%98.2%0.2%99.1%
C&W0%96.9%0%97.1%0.3%97.7%0.9%98.8%
+ +Table 3: Top-1 classification accuracy under the single-pattern attack scenario. We see that randomization layers effectively mitigate adversarial effects for all attacks and all networks. Particularly, combining randomization layers with ensemble adversarial training (ens-adv-Inception-ResNet- $\cdot \nu 2$ ) performs very well on all attacks. + +
ModelsInception-v3ResNet-v2-101Inception-ResNet-v2ens-adv-Inception-ResNet-v2
targetmodeldefensemodeltargetmodeldefensemodeltargetmodeldefensemodeltargetmodeldefensemodel
FGSM-235.1%63.8%29.5%70.1%71.6%83.4%86.3%96.4%
FGSM-532.4%53.9%23.2%52.3%68.3%78.2%88.4%95.4%
FGSM-1034.7%51.8%22.4%43.8%66.8%75.6%90.7%95.2%
DeepFool1.1%98.2%1.7%97.8%0.6%98.4%1.0%99.2%
C&W1.1%97.4%1.7%97.0%0.8%97.9%1.6%99.1%
+ +# 4.5 ENSEMBLE-PATTERN ATTACK SCENARIO + +For the ensemble-pattern attack scenario, similar to single-pattern attack scenario, the attackers are aware of the randomization layers and the parameters of the random resizing and random padding (i.e., starting from $2 9 9 \times 2 9 9$ to $3 3 1 \times 3 3 1$ ), but they do not know the specific patterns utilized by the defense models at test time. The target models thus are constructed in a more representative way: let randomization layers choose an ensemble of predefined patterns, and the goal of the attackers is to let all chosen patterns fail on classification. In this experiment, the specific ensemble patterns that we choose are: (1) first resize the input image to five different scales $\{ 2 9 9 , 3 0 7 , 3 1 5 , 3 2 3 , 3 3 1 \}$ ; (2) then pad each resized image to five different patterns, where the resized image is placed at the top left, top right, bottom left, bottom right, and center of the padded image, respectively. Since there is only one padding pattern for the resized image with size 331, we can obtain $4 * 5 + 1 = 2 1$ patterns in total. Due to the large computation amounts introduced by the ensemble-pattern attack scenario, we randomly choose 500 images out of the entire test dataset for this experiment. The top-1 accuracy for the target model here is calculated by summing up the number of correctly classified patterns of each image over the entire pattern number of all images. For the results presented in Table 4, we can see that the adversarial examples generated under ensemble-pattern attack scenario are much stronger. For single-step attacks, the generated adversarial examples can let the performance of the defense model with an adversarially trained network drop around $8 \%$ compared to the performance under vanilla attack and single-pattern attack scenarios, and drop much more on other defense models. For iterative attacks, we observe that the adversarial examples generated by C&W are stronger than those generated by DeepFool, e.g., the defense model with Inception- $\nu 3$ has an accuracy of $8 1 . 3 \%$ on DeepFool, while only has an accuracy of $6 2 . 9 \%$ on C&W. We argue that this is due to the more advanced loss function (i.e., introduction of auxiliary variable for pixel value control) utilized by C&W than DeepFool. Additionally, the accuracy of defense model on C&W can be improved by utilizing more advanced architecture (e.g., ResNet-v2-101 has higher accuracy than Inception-v3) and applying ensemble adversarial training (e.g., ens-adv-Inception-ResNet- $\nu 2$ has higher accuracy than Inception-ResNet-v2). For the best defense model that we have, ens-adv-Inception-ResNet- $\nu 2$ $^ +$ randomization layers reaches the top-1 accuracy of $9 3 . 5 \%$ on DeepFool and $8 6 . 1 \%$ on C&W, respectively. + +Table 4: Top-1 classification accuracy under the ensemble-pattern attack scenario. Similar to vanilla attack and single-pattern attack scenarios, we see that randomization layers increase the accuracy under all attacks and networks. This clearly demonstrates the effectiveness of the proposed randomization method on defending against adversarial examples, even under this very strong attack scenario. + +
ModelsInception-v3ResNet-v2-101Inception-ResNet-v2ens-adv-Inception-ResNet-v2
targetmodeldefensemodeltargetmodeldefensemodeltargetmodeldefensemodeltargetmodeldefensemodel
FGSM-237.3%41.2%39.2%44.9%71.5%74.3%86.2%88.9%
FGSM-531.7%34.0%24.6%29.7%65.2%67.3%85.8%87.5%
FGSM-1030.4%32.8%18.6%21.7%62.9%64.5%86.6%87.9%
DeepFool0.6%81.3%0.9%80.5%0.9%69.4%1.6%93.5%
C&W0.6%62.9%1.0%74.3%1.6%68.3%5.8%86.1%
+ +# 4.6 DIAGNOSTIC EXPERIMENT + +Due to the large amount of possible patterns introduced by randomization layers, it is hard to analyze the effectiveness of random resizing and random padding precisely. In this section, we limit the freedom of randomization to be a small number (i.e., 4 in random padding and 1 in random resizing) and analyze the effectiveness of these two operations separately. The same 500 images in section 4.5 are used in this experiment. In addition, the input images for target models and defense models are resized to the shape $3 3 0 \times 3 3 0 \times 3$ beforehand. + +# 4.6.1 ONE PIXEL PADDING + +For the random padding, there are only 4 patterns when padding the input images from $3 3 0 \times 3 3 0 \times 3$ to $3 3 1 \times 3 3 1 \times 3$ . In order to construct a stronger attack, we follow the experiment setup in section 4.5 where 3 chosen patterns are ensembled. Specifically, the target model takes an ensemble of patterns where the original images are at the top left, top right and bottom left (3 patterns) of the padded images, and the defense model takes the last pattern where the original images are at the bottom right of the padded images. Note that, since there is no randomization in the defense model, we only run the defense model once. Table 5 summaries the results, and we can see that: (1) adversarial examples generated by single-step attacks have strong transferability, but still cannot attack the defense model with an adversarially trained model successfully (i.e., the defense model with ensadv-Inception-ResNet- $\nu 2$ ); (2) adversarial examples generated by iterative attacks are much less transferable between different padding patterns even when only 4 different patterns exist. The results demonstrate that creating different padding patterns can effectively mitigate adversarial effects. + +Table 5: Top-1 classification accuracy under one pixel padding scenario. This table shows that creating different padding patterns (even 1-pixel padding) can effectively mitigate adversarial effects. + +
ModelsInception-v3ResNet-v2-101Inception-ResNet-v2ens-adv-Inception-ResNet-v2
targetmodeldefensemodeltargetmodeldefensemodeltargetmodeldefensemodeltargetmodeldefensemodel
FGSM-236.4%39.6%29.8%34.4%71.3%74.0%88.2%94.8%
FGSM-533.5%36.2%22.2%26.2%68.4%71.0%92.1%94.4%
FGSM-1034.5%38.8%21.3%23.6%67.4%70.4%93.7%94.0%
DeepFool0.9%97.2%0.9%95.2%0.9%87.6%1.5%99.2%
C&W0.8%70.2%0.9%76.8%1.0%79.4%2.4%98.2%
+ +Table 6: Top-1 classification accuracy under one pixel resizing scenario. This table shows that resizing image to a different scale (even 1-pixel scale) can effectively mitigate adversarial effects. + +
ModelsInception-v3ResNet-v2-101Inception-ResNet-v2ens-adv-Inception-ResNet-v2
targetmodeldefensemodeltargetmodeldefensemodeltargetmodeldefensemodeltargetmodeldefensemodel
FGSM-230.8%56.2%31.6%44.6%66.2%75.0%87.6%97.2%
FGSM-531.2%48.8%25.6%35.8%61.4%70.2%91.2%96.6%
FGSM-1036.4%51.0%23.8%32.6%62.8%68.2%94.8%95.2%
DeepFool2.6%99.4%1.0%98.6%1.2%97.4%1.2%99.4%
C&W2.6%97.8%1.0%94.8%2.0%94.8%1.8%99.6%
+ +# 4.6.2 ONE-PIXEL RESIZING + +For the random resizing, there is only 1 pattern that exists when the input images are resized from $3 3 0 \times 3 3 0 \times 3$ to $3 3 1 \times 3 3 1 \times 3$ . The results in Table 6 indicate that resizing the images by only 1 pixel can effectively destroy the transferability of adversarial examples by both single-step and iterative attacks. + +# 5 NIPS 2017 ADVERSARIAL EXAMPLES DEFENSE CHALLENGE + +We submitted our model to the NIPS 2017 adversarial examples defense challenge3 for a more comprehensive performance evaluation. The test dataset contains 5000 images which are all of the size $2 9 9 \times 2 9 9 \times 3$ , and their corresponding labels are the same as the ImageNet 1000-class labels. Each defense method are run on all 5000 adversarial images generated against all adversarial attacks. For each correctly classified image, the defense method gets one point. The normalized score for each defense method is computed using the following formula: + +$$ +\mathrm { s c o r e } = \frac { 1 } { M } \sum _ { \mathrm { a t t a c k } \in A } \sum _ { n = 1 } ^ { 5 0 0 0 } \left[ \mathrm { d e f e n s e } ( \mathrm { a t t a c k } ( X _ { n } ) ) = y _ { n } ^ { \mathrm { t r u e } } \right] , +$$ + +where $A$ is the set of all attacks, $M$ is the total number of generated adversarial examples by all attacks, and the function $[ \cdot ]$ is the indicator function which equals to 1 when the prediction is true. + +# 5.1 CHALLENGE RESULTS + +The best defense model in our experiments, i.e., randomization layers $^ +$ ens-adv-Inception-Resnet$\nu 2$ , was submitted to the challenge. To increase the classification accuracy, we (1) changed the resizing range from [299, 331) to [310, 331); (2) averaged the prediction results over 30 randomization patterns for each image; (3) flipped the input image with probability 0.5 for each randomization pattern. + +By evaluating our model against 156 different attacks, it reaches a normalized score of 0.924 (ranked No.2 among 107 defense models), which is far better than using ensemble adversarial training (Tramer et al., 2017) alone with a normalized score of \` 0.773 (ranked No.56). This result further demonstrates that the proposed randomization method effectively make deep networks much more robust to adversarial attacks. + +# 6 CONCLUSION + +In this paper, we propose a randomization-based mechanism to mitigate adversarial effects. We conduct comprehensive experiments to validate the effectiveness of our defense method, using different network structures, against different attack methods, and under different attack scenarios. The experimental results show that adversarial examples rarely transfer between different randomization patterns, especially for iterative attacks. In addition, the proposed randomization layers are compatible to different network structures and adversarial defense methods, which can serve as a basic module for defense against adversarial examples. By adding the proposed randomization layers to an adversarially trained model (Tramer et al., 2017), it achieves a normalized score of \` 0.924 (ranked No.2 among 107 defense models) in the NIPS 2017 adversarial examples defense challenge, which is far better than using adversarial training alone with a normalized score of 0.773 (ranked No.56). The code is public available at https://github.com/cihangxie/NIPS2017_ adv_challenge_defense. + +# ACKNOWLEDGEMENTS + +This work is supported by a gift grant from SNAP Research, ONR–N00014-15-1-2356 and NSF Visual Cortex on Silicon CCF-1317560. + +# REFERENCES + +Battista Biggio and Pavel Laskov. Poisoning attacks against support vector machines. In International Conference on Machine Learning, 2012. + +Xiaoyu Cao and Neil Zhenqiang Gong. Mitigating evasion attacks to deep neural networks via region-based classification. In Proceedings of the 33rd Annual Computer Security Applications Conference. ACM, 2017. + +Nicholas Carlini and David Wagner. Towards evaluating the robustness of neural networks. In IEEE Symposium on Security and Privacy. IEEE, 2017. + +Liang-Chieh Chen, George Papandreou, Iasonas Kokkinos, Kevin Murphy, and Alan L Yuille. Deeplab: Semantic image segmentation with deep convolutional nets, atrous convolution, and fully connected crfs. IEEE Transactions on Pattern Analysis and Machine Intelligence, 2017. + +Moustapha Cisse, Yossi Adi, Natalia Neverova, and Joseph Keshet. Houdini: Fooling deep structured prediction models. arXiv preprint arXiv:1707.05373, 2017. + +Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A large-scale hierarchical image database. In Computer Vision and Pattern Recognition. IEEE, 2009. + +Reuben Feinman, Ryan R Curtin, Saurabh Shintre, and Andrew B Gardner. Detecting adversarial samples from artifacts. arXiv preprint arXiv:1703.00410, 2017. + +Volker Fischer, Mummadi Chaithanya Kumar, Jan Hendrik Metzen, and Thomas Brox. Adversarial examples for semantic image segmentation. arXiv preprint arXiv:1703.01101, 2017. + +Ross Girshick. Fast r-cnn. In International Conference on Computer Vision. IEEE, 2015. + +Ian J Goodfellow, Jonathon Shlens, and Christian Szegedy. Explaining and harnessing adversarial examples. In International Conference on Learning Representations, 2015. + +Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Computer Vision and Pattern Recognition. IEEE, 2016a. + +Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Identity mappings in deep residual networks. In European Conference on Computer Vision. Springer, 2016b. + +Pang Wei Koh and Percy Liang. Understanding black-box predictions via influence functions. arXiv preprint arXiv:1703.04730, 2017. + +Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. Imagenet classification with deep convolutional neural networks. In Advances in Neural Information Processing Systems, 2012. + +Alexey Kurakin, Ian Goodfellow, and Samy Bengio. Adversarial machine learning at scale. In International Conference on Learning Representations, 2017. + +Yanpei Liu, Xinyun Chen, Chang Liu, and Dawn Song. Delving into transferable adversarial examples and black-box attacks. In International Conference on Learning Representations, 2017. + +Jonathan Long, Evan Shelhamer, and Trevor Darrell. Fully convolutional networks for semantic segmentation. In Computer Vision and Pattern Recognition. IEEE, 2015. + +Dongyu Meng and Hao Chen. Magnet: a two-pronged defense against adversarial examples. arXiv preprint arXiv:1705.09064, 2017. + +Jan Hendrik Metzen, Tim Genewein, Volker Fischer, and Bastian Bischoff. On detecting adversarial perturbations. In International Conference on Learning Representations, 2017. + +Seyed-Mohsen Moosavi-Dezfooli, Alhussein Fawzi, and Pascal Frossard. Deepfool: a simple and accurate method to fool deep neural networks. In Computer Vision and Pattern Recognition. IEEE, 2016. + +Nicolas Papernot, Ian Goodfellow, Ryan Sheatsley, Reuben Feinman, and Patrick McDaniel. cleverhans v1.0.0: an adversarial machine learning library. arXiv preprint arXiv:1610.00768, 2016a. + +Nicolas Papernot, Patrick McDaniel, Xi Wu, Somesh Jha, and Ananthram Swami. Distillation as a defense to adversarial perturbations against deep neural networks. In IEEE Symposium on Security and Privacy. IEEE, 2016b. + +Shaoqing Ren, Kaiming He, Ross Girshick, and Jian Sun. Faster r-cnn: Towards real-time object detection with region proposal networks. In Advances in Neural Information Processing Systems, 2015. + +Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale image recognition. In International Conference on Learning Representations, 2015. + +Christian Szegedy, Wojciech Zaremba, Ilya Sutskever, Joan Bruna, Dumitru Erhan, Ian Goodfellow, and Rob Fergus. Intriguing properties of neural networks. In International Conference on Learning Representations, 2014. + +Christian Szegedy, Vincent Vanhoucke, Sergey Ioffe, Jon Shlens, and Zbigniew Wojna. Rethinking the inception architecture for computer vision. In Computer Vision and Pattern Recognition. IEEE, 2016. + +Christian Szegedy, Sergey Ioffe, Vincent Vanhoucke, and Alexander A Alemi. Inception-v4, inception-resnet and the impact of residual connections on learning. In AAAI, 2017. + +Florian Tramer, Alexey Kurakin, Nicolas Papernot, Dan Boneh, and Patrick McDaniel. Ensemble \` adversarial training: Attacks and defenses. arXiv preprint arXiv:1705.07204, 2017. + +Jianyu Wang, Zhishuai Zhang, Cihang Xie, Yuyin Zhou, Vittal Premachandran, Jun Zhu, Lingxi Xie, and Alan Yuille. Visual concepts and compositional voting. arXiv preprint arXiv:1711.04451, 2017. + +Cihang Xie, Jianyu Wang, Zhishuai Zhang, Yuyin Zhou, Lingxi Xie, and Alan Yuille. Adversarial Examples for Semantic Segmentation and Object Detection. In International Conference on Computer Vision. IEEE, 2017. + +Zhishuai Zhang, Siyuan Qiao, Cihang Xie, Wei Shen, Bo Wang, and Alan L Yuille. Single-shot object detection with enriched semantics. arXiv preprint arXiv:1712.00433, 2017. + +# APPENDIX A OTHER RANDOMIZATION METHODS + +Besides random resizing and random padding, we further evaluate the effectiveness of four other randomization methods against adversarial examples. All these four methods are used as dataaugmentation during the standard network training. + +• Random Brightness: a brightness factor $\delta$ is randomly picked in the interval $[ - \delta _ { \mathrm { m a x } } , \delta _ { \mathrm { m a x } } ]$ to adjust the brightness of the normalized image $\hat { X _ { n } }$ . We choose $\begin{array} { r } { \delta _ { \mathrm { m a x } } = \frac { 3 2 } { 2 5 5 } } \end{array}$ . +• Random Saturation: a saturation factor $\alpha$ is randomly picked in the interval $[ \alpha _ { l o w e r } , \alpha _ { u p p e r } ]$ to adjust the saturation of the normalized image $\hat { X _ { n } }$ . We choose $\alpha _ { l o w e r } =$ 0.5 and $\alpha _ { u p p e r } = 1 . 5$ . +• Random Hue: a hue factor $\theta$ is randomly picked in the interval $[ - \theta _ { \mathrm { m a x } } , \theta _ { \mathrm { m a x } } ]$ to adjust the hue of the normalized image ${ \hat { X _ { n } } }$ . We choose $\theta _ { \mathrm { m a x } } = 0 . 2$ . +• Random Contrast: a contrast factor $\beta$ is randomly picked in the interval $[ \beta _ { l o w e r } , \beta _ { u p p e r } ]$ to adjust the contrast of the normalized image $\hat { X _ { n } }$ . We choose $\beta _ { l o w e r } = 0 . 5$ and $\beta _ { u p p e r } = 1 . 5$ . + +Note that, (1) the parameters chosen above are the same as the ones used during network training process4; (2) the pixel value of the normalized image $\hat { X _ { n } }$ are all within the interval $[ 0 , 1 ]$ , and we also use this range to clip the pixel value of the image after pre-processing. + +Following the experiment setup in section 4, we first evaluate the effectiveness of each of these randomization methods on the 5000 clean images. The results are shown in the Table 7. We can see that these methods hardly hurt the performance on clean images. We further combine the proposed randomization layers, i.e., random resizing layer and random padding layer, with each of these randomization methods (denoted as $^ { 6 6 } + + ^ { 7 }$ ). We see that the combined randomization modules only cause very little accuracy drop on clean images. + +Table 7: Top-1 classification accuracy on clean images. We see that these four randomization methods hardly hurt the performance on clean images. We use $^ { 6 6 } { + + ^ { 9 9 } }$ to denote the addition of the proposed randomization layers, i.e., random resizing and random padding, and the results indicate that combined models still performs pretty good on clean images. + +
ModelsInception-v3ResNet-v2-101Inception-ResNet-v2ens-adv-Inception-ResNet-v2
random brightness99.6%99.7%99.8%99.8%
random brightness ++98.6%98.1%99.1%99.2%
random saturation99.6%99.7%99.9%99.9%
random saturation ++98.6%98.3%99.3%99.3%
random hue99.4%99.6%99.7%99.4%
random hue ++98.6%98.3%99.2%99.1%
random contrast99.5%99.6%99.7%99.6%
random contrast ++98.6%98.2%99.3%99.1%
+ +We then evaluate the effectiveness of these randomization methods against the adversarial examples generated under the vanilla attack scenario. The results are shown in the Tables 8 - 11. Compared to the results in Table 2, all these four methods are much less effective than the proposed randomization layers. By combining the proposed randomization layers with each of these four randomization methods (denoted as $^ { 6 6 } { + } { + } ^ { , 9 } )$ , the performance can be slightly improved than using the proposed randomization layers alone. + +Since each of these four randomization methods alone are not as effective as our proposed randomization methods against adversarial examples generated under the vanilla attack scenario, we do not further investigate their effectiveness under single-pattern attack and ensemble-pattern attack scenarios. However, combining these randomization methods with our proposed randomization layers together provides a way to build a slightly stronger defense mechanism. + +Table 8: Top-1 classification accuracy by using random brightness under the vanilla attack scenario. Compared to the results in Table 2, random brightness is much less effective than the proposed randomization layers. By combing random brightness and the proposed randomization layers (denoted as random brightness $^ { + + }$ ), it reaches slightly better performance than using the proposed randomization layers alone. + +
ModelsInception-v3ResNet-v2-101Inception-ResNet-v2ens-adv-Inception-ResNet-v2
randombright-nessrandombright-ness++randombright-nessrandombright-ness++randombright-nessrandombright-ness++randombright-nessrandombright-ness++
FGSM-234.9%67.0%28.5%73.5%66.4%81.3%85.0%95.8%
FGSM-531.9%55.5%21.6%55.7%62.4%74.7%87.6%95.0%
FGSM-1033.2%52.9%20.9%47.2%61.8%71.5%90.4%94.5%
DeepFool79.4%98.1%82.3%97.5%62.8%98.3%79.0%99.1%
C&W34.5%96.9%47.7%97.2%51.3%98.0%42.3%98.6%
+ +Table 9: Top-1 classification accuracy by using random saturation under the vanilla attack scenario. Compared to the results in Table 2, random saturation is much less effective than the proposed randomization layers. By combing random saturation and the proposed randomization layers (denoted as random saturation $^ { + + }$ ), it reaches slightly better performance than using the proposed randomization layers alone. + +
ModelsInception-v3ResNet-v2-101Inception-ResNet-v2ens-adv-Inception-ResNet-v2
randomsatura-tionrandomsatura-tion++randomrandomrandomrandom satura-tion++randomsatura-tionrandom satura-tion++
satura-tionsatura-tion++satura-tion
FGSM-234.2%66.5%27.9%73.6%66.3%81.5%85.2%95.7%
FGSM-531.8%55.2%21.1%55.7%62.1%74.6%87.0%95.0%
FGSM-1033.5%52.2%20.7%46.5%61.7%71.4%90.1%93.9%
DeepFool82.6%98.1%79.6%97.6%64.7%98.2%78.5%99.0%
C&W39.2%97.2%47.5%96.9%51.7%97.7%50.9%99.1%
+ +Table 10: Top-1 classification accuracy by using random hue under the vanilla attack scenario. Compared to the results in Table 2, random hue is much less effective than the proposed randomization layers. By combing random hue and the proposed randomization layers (denoted as random $\mathbf { h u e + + }$ ), it reaches slightly better performance than using the proposed randomization layers alone. + +
ModelsInception-v3ResNet-v2-101Inception-ResNet-v2ens-adv-Inception-ResNet-v2
randomhuerandomhue++randomhuerandomhue++randomhuerandomhue++randomhuerandomhue++
FGSM-238.1%69.0%32.0%74.9%68.6%83.0%87.4%95.8%
FGSM-533.9%57.2%23.0%57.6%64.0%76.1%86.7%93.9%
FGSM-1036.4%54.2%22.1%48.4%63.0%72.5%88.0%91.3%
DeepFool95.0%97.9%91.2%97.6%86.5%98.4%96.8%99.1%
C&W72.1%97.3%74.0%97.0%77.4%98.2%81.1%98.8%
+ +Table 11: Top-1 classification accuracy by using random contrast under the vanilla attack scenario. Compared to the results in Table 2, random contrast is much less effective than the proposed randomization layers. By combing random contrast and the proposed randomization layers (denoted as random contrast $^ { + + }$ ), it reaches slightly better performance than using the proposed randomization layers alone. + +
ModelsInception-v3ResNet-v2-101Inception-ResNet-v2ens-adv-Inception-ResNet-v2
randomcon-trastrandomcon-trast++randomcon-trastrandomcon-trast++randomcon-trastrandomcon-trast++randomcon-trastrandomcon-trast++
FGSM-237.0%68.0%29.4%74.1%67.2%82.5%85.9%96.0%
FGSM-532.7%56.3%22.7%57.0%63.1%74.9%88.1%94.9%
FGSM-1034.4%53.5%21.2%47.0%62.1%72.0%90.6%94.3%
DeepFool90.4%98.1%87.5%97.5%73.8%98.1%90.8%99.0%
C&W56.8%97.0%57.1%96.7%63.7%97.9%67.6%98.8%
+ +# APPENDIX B RANDOMIZATION LAYERS WITH SMALLER SIZE + +Instead of resizing the input image to a larger size, we here resize the input image to a smaller size, i.e., the resizing parameter is randomly sampled from the range [267, 299). The random padding layer then pads the resized image to the shape of $2 9 9 \times 2 9 9 \times 3$ in a random manner. Note that, the random resizing layer and the random padding layer here have the same freedom as the ones used in the paper, i.e., they create the same number, 12528, of different patterns for a single image. We evaluate the effectiveness of this parameter setting on both the 5000 clean images and the adversarial examples generated under the vanilla attack scenario. The results are shown in the Table 12. We see that randomization layers still work well with smaller size images, but is slightly worse than using larger size images as in the paper. This is because resizing to a smaller size loses certain information of the original image. + +Table 12: Top-1 classification accuracy on the clean images and the adversarial examples generated under the vanilla attack scenario. Compared to the results in Tables 1 and 2, randomization parameters applied here (i.e., resize between [267, 299), and pad to $2 9 9 \times 2 9 9 \times 3 )$ ) is slightly worse than the randomization parameters applied in the paper (i.e., resize between [299, 331), and pad to $3 3 1 \times 3 3 1 \times 3 )$ . + +
ModelsInception-v3ResNet-v2-101Inception-ResNet-v2ens-adv-Inception-ResNet-v2
clean images98.2%97.5%99.1%98.7%
FGSM-263.1%65.0%79.9%95.0%
FGSM-553.4%48.3%73.3%94.0%
FGSM-1050.8%40.5%70.6%93.4%
DeepFool97.2%96.5%96.0%98.6%
C&W95.2%95.2%97.2%97.8%
+ +# APPENDIX C RANDOMIZATION LAYERS WITH MULTIPLE ITERATIONS + +In this section, we show the relationship between the top-1 accuracy of the defense model and the iteration number performed on each image. Specifically, we choose ens-adv-Inception-ResNet- $\nu 2 +$ randomization layers as the defense model for the experiment. The same trend can be observed for other defense models. + +For the defense model, the iteration number is chosen to be $\{ 1 , 5 , 1 0 , 2 0 , 3 0 \}$ , and it is evaluated on the 5000 clean test images and the adversarial examples generated under all three attack scenarios. The results are shown in the Figures 3 - 5. We can observe that (1) increasing the number of iteration can slightly improve the top-1 classification accuracy of the defense model on clean images and adversarial examples generated under both the vanilla attack and the single-pattern attack scenarios; (2) increasing the number of iteration has nearly no improvement for the top-1 classification accuracy of the defense model on adversarial examples generated by single-step attacks under the ensemble-pattern attack scenario; (3) increasing the number of iteration can improve the top-1 classification accuracy of the defense model on adversarial examples generated by iterative attacks under the ensemble-pattern attack scenario. + +![](images/a25aa63356ef141cc900583f46c838547d3cb72eeae8c3fce9b665da139db3ec.jpg) +Figure 3: Top-1 classification accuracy on the clean images and the adversarial examples generated under the vanilla attack scenrio. + +![](images/0cf83e4d60ebaeaa48670a3eae350647157c26303fc23d006fea2afbff49f186.jpg) +Figure 4: Top-1 classification accuracy on the adversarial examples generated under the single-pattern attack scenrio. + +![](images/49c765887d9ca814549732caf7e88c202b46e49cbcf0f3ce57891fd62a33e450.jpg) +Figure 5: Top-1 classification accuracy on the adversarial examples generated under the ensemble-pattern attack scenrio. \ No newline at end of file diff --git a/parse/train/Sk9yuql0Z/Sk9yuql0Z_content_list.json b/parse/train/Sk9yuql0Z/Sk9yuql0Z_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..2b3a01fe82a7286738c09ba2445827c5e9ed7b99 --- /dev/null +++ b/parse/train/Sk9yuql0Z/Sk9yuql0Z_content_list.json @@ -0,0 +1,1715 @@ +[ + { + "type": "text", + "text": "MITIGATING ADVERSARIAL EFFECTS THROUGH RAN-DOMIZATION", + "text_level": 1, + "bbox": [ + 174, + 99, + 820, + 145 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Cihang Xie, Zhishuai Zhang & Alan L. Yuille ", + "bbox": [ + 186, + 170, + 501, + 185 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Department of Computer Science \nThe Johns Hopkins University \nBaltimore, MD 21218 USA \n{cihangxie306, zhshuai.zhang, alan.l.yuille}@gmail.com ", + "bbox": [ + 184, + 186, + 710, + 239 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Jianyu Wang Baidu Research USA Sunnyvale, CA 94089 USA wjyouch@gmail.com ", + "bbox": [ + 184, + 261, + 367, + 316 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Zhou Ren \nSnap Inc. \nVenice, CA 90291 USA \nzhou.ren@snapchat.com ", + "bbox": [ + 183, + 338, + 392, + 393 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 431, + 544, + 445 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Convolutional neural networks have demonstrated high accuracy on various tasks in recent years. However, they are extremely vulnerable to adversarial examples. For example, imperceptible perturbations added to clean images can cause convolutional neural networks to fail. In this paper, we propose to utilize randomization at inference time to mitigate adversarial effects. Specifically, we use two randomization operations: random resizing, which resizes the input images to a random size, and random padding, which pads zeros around the input images in a random manner. Extensive experiments demonstrate that the proposed randomization method is very effective at defending against both single-step and iterative attacks. Our method provides the following advantages: 1) no additional training or fine-tuning, 2) very few additional computations, 3) compatible with other adversarial defense methods. By combining the proposed randomization method with an adversarially trained model, it achieves a normalized score of 0.924 (ranked No.2 among 107 defense teams) in the NIPS 2017 adversarial examples defense challenge, which is far better than using adversarial training alone with a normalized score of 0.773 (ranked No.56). The code is public available at https: //github.com/cihangxie/NIPS2017_adv_challenge_defense. ", + "bbox": [ + 233, + 463, + 764, + 699 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 726, + 336, + 741 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Convolutional Neural Networks (CNNs) have been successfully applied to a wide range of vision tasks, including image classification (Krizhevsky et al., 2012; Simonyan & Zisserman, 2015; He et al., 2016a), object detection (Girshick, 2015; Ren et al., 2015; Zhang et al., 2017), semantic segmentation (Long et al., 2015; Chen et al., 2017), visual concept discovery (Wang et al., 2017) etc. However, recent works show that CNNs are extremely vulnerable to small perturbations to the input image. For example, adding visually imperceptible perturbations to the original image can result in failures for image classification (Szegedy et al., 2014; Goodfellow et al., 2015), object detection (Xie et al., 2017) and semantic segmentation (Xie et al., 2017; Fischer et al., 2017; Cisse et al., 2017). These perturbed images are called adversarial examples and Figure 1 gives an example. Adversarial examples pose a great security danger to the deployment of commercial machine learning systems. Thus, making CNNs more robust to adversarial examples is a very important yet challenging problem. Recent works (Papernot et al., 2016b; Kurakin et al., 2017; Tramer et al., 2017; Cao & Gong, \\` ", + "bbox": [ + 173, + 757, + 825, + 922 + ], + "page_idx": 0 + }, + { + "type": "image", + "img_path": "images/48b3009e8ed26fd44338fb7b72d9eaf8e2ea6476d67d321696065b4e396f4087.jpg", + "image_caption": [ + "Figure 1: This is an adversarial example crafted for VGG (Simonyan & Zisserman, 2015). The left image is classified correctly as king penguin, the center image is the adversarial perturbation (magnified by 10 and enlarged by 128 for better visualization), and the right image is the adversarial example misclassfied as chihuahua. " + ], + "image_footnote": [], + "bbox": [ + 207, + 99, + 792, + 224 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2017; Metzen et al., 2017; Feinman et al., 2017; Meng & Chen, 2017) are making progress on this line of research. ", + "bbox": [ + 176, + 311, + 821, + 340 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Adversarial attacks can be divided into two categories: single-step attacks, which perform only one step of gradient computation, and iterative attacks, which perform multiple steps. Intuitively, the perturbation generated by iterative methods may easily get over-fitted to the specific network parameters, and thus be less transferable. On the other hand, single-step methods may not be strong enough to fool the network. For examples, it has been demonstrated that single-step attacks, like Fast Gradient Sign Method (FGSM) (Goodfellow et al., 2015), have better transferability but weaker attack rate than iterative attacks, like DeepFool (Moosavi-Dezfooli et al., 2016). ", + "bbox": [ + 174, + 347, + 825, + 445 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Due to the weak generalization of iterative attacks, low-level image transformations, e.g., resizing, padding, compression, etc, may probably destroy the specific structure of adversarial perturbations, thus making it a good defense. It can even defend against white-box iterative attacks if random transformations are applied. This is because each test image goes through random transformations and the attacker does not know the specific transformation when generating adversarial noise. Recently, adversarial training (Kurakin et al., 2017; Tramer et al., 2017) was developed to defend against \\` single-step attacks. Thus by adding the proposed random transformations as additional layers to an adversarially trained model (Tramer et al., 2017), it is expected that the method is able to effec- \\` tively defend against both single-step and iterative attacks, including both black-box and white-box settings. ", + "bbox": [ + 174, + 452, + 825, + 590 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Based on the above reasoning, in this paper, we propose a defense method by randomization at inference time, i.e., random resizing and random padding, to mitigate adversarial effects. To the best of our knowledge, this is the first work that demonstrates the effectiveness of randomization at inference time on mitigating adversarial effects on large-scale dataset, e.g., ImageNet (Deng et al., 2009). The proposed method provides the following advantages: ", + "bbox": [ + 174, + 598, + 825, + 667 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "• Randomization at inference time makes the network much more robust to adversarial images, especially for iterative attacks (both white-box and black box), but hardly hurts the performance on clean (non-adversarial) images. Experiments on section 4.2 support this argument. \n• There is no additional training or fine-tuning required which is easy for implementation. \n• Very few computations are required by adding the two randomization layers, thus there is nearly no run time increase. \n• Randomization layers are compatible to different network structures and adversarial defense methods, which can serve as a basic network module for adversarial defense. ", + "bbox": [ + 215, + 680, + 825, + 827 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We conduct comprehensive experiments to test the effectiveness of our defense method, using different network structures, against different attack methods, and under different attack scenarios. The results in Section 4 demonstrate that the proposed randomization layers can significantly mitigate adversarial effects, especially for iterative attack methods. Moreover, we submitted the model, which combines the proposed randomization layers and an adversarially trained model (Tramer\\` et al., 2017), to the NIPS 2017 adversarial examples defense challenge. It reaches a normalized score of 0.924 (ranked No.2 among 107 defense teams), which is far better than just using adversarial training (Tramer et al., 2017) alone with a normalized score of \\` 0.773 (ranked No.56). ", + "bbox": [ + 174, + 840, + 825, + 924 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 103, + 821, + 132 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2 RELATED WORK ", + "text_level": 1, + "bbox": [ + 176, + 155, + 344, + 171 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.1 GENERATING ADVERSARIAL EXAMPLES ", + "text_level": 1, + "bbox": [ + 176, + 189, + 495, + 202 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Generating adversarial examples has been extensively studied recently. (Szegedy et al., 2014) first showed that adversarial examples, computed by adding visually imperceptible perturbations to the original images, make CNNs predict wrong labels with high confidence. (Goodfellow et al., 2015) proposed the fast gradient sign method to generate adversarial examples based on the linear nature of CNNs, and also proposed adversarial training for defense. (Moosavi-Dezfooli et al., 2016) generated adversarial examples by assuming that the loss function can be linearized around the current data point at each iteration. (Carlini & Wagner, 2017) developed a stronger attack to find adversarial perturbations by introducing auxiliary variables which incooperate the pixel value constrain, e.g., pixel intensity must be within the range [0,255], naturally into the loss function and make the optimization process easier. (Liu et al., 2017) proposed an ensemble-based approaches to generate adversarial examples with stronger transferability. Unlike the works above, (Biggio & Laskov, 2012; Koh & Liang, 2017) showed that manipulating only a small fraction of the training data can significantly increase the number of misclassified samples at test time for learning algorithms, and such attacks are called poisoning attacks. ", + "bbox": [ + 174, + 215, + 825, + 410 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.2 DEFENDING AGAINST ADVERSARIAL EXAMPLES", + "text_level": 1, + "bbox": [ + 174, + 430, + 555, + 444 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Opposite to generating adversarial examples, there is also progress on reducing the effects of adversarial examples. (Papernot et al., 2016b) showed networks trained using defensive distillation can effectively defend against adversarial examples. (Kurakin et al., 2017) proposed to replace the original clean images with a mixture of clean images and corresponding adversarial images in each training batch to improve the network robustness. (Tramer et al., 2017) improved the robustness \\` further by training the network on an ensemble of adversarial images generated from the trained model itself and from a number of other pre-trained models. Cao & Gong (2017) proposed a regionbased classification to let models be robust to adversarial examples. (Metzen et al., 2017) trained a detector on the inner layer of the classifier to detect adversarial examples. (Feinman et al., 2017) detected adversarial examples by looking at the Bayesian uncertainty estimates of the input images in dropout neural networks and by performing density estimation in the subspace of deep features learned by the model. MagNet (Meng & Chen, 2017) detected adversarial examples with large perturbation using detector networks, and pushed adversarial examples with small perturbation towards the manifold of clean images. ", + "bbox": [ + 174, + 458, + 825, + 651 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 APPROACH", + "text_level": 1, + "bbox": [ + 176, + 675, + 297, + 690 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3.1 AN OVERVIEW OF GENERATING ADVERSARIAL EXAMPLES", + "text_level": 1, + "bbox": [ + 176, + 708, + 625, + 723 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Before introducing the proposed adversarial defense method, we give an overview of generating adversarial examples. Let $X _ { n }$ denote the $n$ -th image in a dataset containing $N$ images, and let $y _ { n } ^ { \\mathrm { t r u e } }$ denote the corresponding ground-truth label. We use $\\theta$ to denote the network parameters, and $L ( X _ { n } , y _ { n } ^ { \\mathrm { t r u e } } ; \\theta )$ to denote the loss. For the adversarial example generation, the goal is to maximize the loss $L ( X _ { n } + r _ { n } , y _ { n } ^ { \\mathrm { t r u e } } ; \\theta )$ for each image $X _ { n }$ , under the constraint that the generated adversarial example $X _ { n } ^ { \\mathrm { a d v } } = X _ { n } + r _ { n }$ should look visually similar to the original image $X _ { n }$ , i.e., $| | r _ { n } | | \\leq \\epsilon$ , and the corresponding predicted label $y _ { n } ^ { \\mathrm { a d v } } \\neq y _ { n } ^ { \\mathrm { t r u e } }$ . ", + "bbox": [ + 174, + 734, + 825, + 834 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In our experiment, we consider three different attack methods, including one single-step attack method and two iterative attack methods. We use the cleverhans library (Papernot et al., 2016a) to generate adversarial examples, where all these attacks have been implemented via TensorFlow. ", + "bbox": [ + 174, + 840, + 823, + 882 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "• Fast Gradient Sign Method (FGSM): FGSM (Goodfellow et al., 2015) is a single-step attack method. It finds the adversarial perturbation that yields the highest increase of the linear cost function under $l _ { \\infty }$ -norm. The update equation is ", + "bbox": [ + 215, + 895, + 823, + 924 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "", + "bbox": [ + 232, + 103, + 622, + 117 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/256d0580ab719538c36dbc65ddaa18b6508c027919ce8cd831ad834e72a8a2b4.jpg", + "text": "$$\nX _ { n } ^ { \\mathrm { a d v } } = X _ { n } + \\epsilon \\cdot s i g n \\big ( \\nabla _ { X _ { n } } L ( X _ { n } , y _ { n } ^ { \\mathrm { t r u e } } ; \\theta ) \\big ) ,\n$$", + "text_format": "latex", + "bbox": [ + 380, + 121, + 673, + 138 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $\\epsilon$ controls the magnitude of adversarial perturbation. In the experiment, we choose $\\epsilon = \\{ 2 , 5 , 1 0 \\}$ , which corresponds to small, medium and high magnitude of adversarial perturbations, respectively. ", + "bbox": [ + 230, + 140, + 823, + 181 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "• DeepFool: DeepFool (Moosavi-Dezfooli et al., 2016) is an iterative attack method which finds the minimal perturbation to cross the decision boundary based on the linearization of the classifier at each iteration. Any $l _ { p }$ -norm can be used with DeepFool, and we choose $l _ { 2 }$ -norm for the study in this paper. ", + "bbox": [ + 218, + 184, + 825, + 241 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "• Carlini $\\&$ Wagner (C&W): C&W (Carlini & Wagner, 2017) is a stronger iterative attack method proposed recently. It finds the adversarial perturbation $r _ { n }$ by using an auxiliary variable $\\omega _ { n }$ as ", + "bbox": [ + 215, + 244, + 823, + 285 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/6ac2e21a49ac9a59dcee26a8cc88dbc8ae952e60add70940c62a298ad305ebe3.jpg", + "text": "$$\nr _ { n } = { \\frac { 1 } { 2 } } ( t a n h ( \\omega _ { n } + 1 ) ) - X _ { n } .\n$$", + "text_format": "latex", + "bbox": [ + 424, + 284, + 632, + 313 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Then the loss function optimizes the auxiliary variable $\\omega _ { n }$ ", + "bbox": [ + 233, + 314, + 612, + 329 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/9a4c56ddb6d5a120595154f56ce8c6cdd23b4680a466e4b911993433976f94cb.jpg", + "text": "$$\n\\operatorname* { m i n } _ { \\omega _ { n } } | | \\frac { 1 } { 2 } ( t a n h ( \\omega _ { n } ) + 1 ) - X _ { n } | | + c \\cdot f ( \\frac { 1 } { 2 } ( t a n h ( \\omega _ { n } ) + 1 ) ) .\n$$", + "text_format": "latex", + "bbox": [ + 328, + 330, + 725, + 359 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The function $f ( \\cdot )$ is defined as ", + "bbox": [ + 233, + 364, + 436, + 378 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/471d0561206caf18e7dae8a27a418ea0baf79b3fc6adce078bd4d7d503c07252.jpg", + "text": "$$\nf ( x ) = \\operatorname* { m a x } ( Z ( x ) _ { y ^ { \\mathrm { t u e } } } - \\operatorname* { m a x } \\{ Z ( x ) _ { i } : i \\neq y ^ { \\mathrm { t r u e } } \\} , - k ) ,\n$$", + "text_format": "latex", + "bbox": [ + 346, + 381, + 707, + 397 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $Z ( x ) _ { i }$ is the logits output for class $i$ , and $k$ controls the confidence gap between the adversarial class and true class. C&W can also work with various $l _ { p }$ -norm, and we choose $l _ { 2 }$ -norm in the experiments. ", + "bbox": [ + 235, + 400, + 823, + 441 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.2 DEFENDING AGAINST ADVERSARIAL EXAMPLES", + "text_level": 1, + "bbox": [ + 174, + 458, + 557, + 472 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The goal of defense is to build a network that is robust to adversarial examples, i.e., it can classify adversarial images correctly with little performance loss on non-adversarial (clean) images. Towards this goal, we propose a randomization-based method, as shown in Figure 2, which adds a random resizing layer and a random padding layer to the beginning of the classification networks. There is no re-training or fine-tuning needed which makes the proposed method very easy to implement. ", + "bbox": [ + 174, + 483, + 825, + 553 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.2.1 RANDOMIZATION LAYERS ", + "text_level": 1, + "bbox": [ + 176, + 568, + 411, + 582 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The first randomization layer is a random resizing layer, which resizes the original image $X _ { n }$ with the size $W \\times H \\times 3$ to a new image $X _ { n } ^ { \\prime }$ with random size $W ^ { \\prime } \\times H ^ { \\prime } \\times 3$ . Note that, $| W ^ { \\prime } - W |$ and $| H ^ { \\prime } - H |$ should be within a reasonablely small range, otherwise the network performance on non-adversarial images would significantly drop. Taking Inception-ResNet network (Szegedy et al., 2017) as an example, the original data input size is $2 9 9 \\times 2 9 9 \\times 3$ . Empirically we found that the network performance hardly drops if we control the height and width of the resized image $X _ { n } ^ { \\prime }$ to be within the range [299, 331). ", + "bbox": [ + 173, + 592, + 825, + 690 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The second randomization layer is the random padding layer, which pads zeros around the resized image in a random manner. Specifically, by padding the resized image $X _ { n } ^ { \\prime }$ into a new image $X _ { n } ^ { \\prime \\prime }$ with the size $W ^ { \\prime \\prime } \\times H ^ { \\prime \\prime } \\times 3$ , we can choose to pad $w$ zero pixels on the left, $W ^ { \\prime \\prime } - W ^ { \\prime } - w$ zero pixels on the right, $h$ zero pixels on the top and $H ^ { \\prime \\prime } - H ^ { \\prime } - h$ zero pixels on the bottom. This results in a total number of $\\left( W ^ { \\prime \\prime } - W ^ { \\prime } + 1 \\right) \\times \\left( H ^ { \\prime \\prime } - H ^ { \\prime } + 1 \\right)$ different possible padding patterns. ", + "bbox": [ + 174, + 695, + 825, + 767 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "During implementation, the original image first goes through two randomization layers, and then we pass the transformed image to the original CNN for classification. The pipeline is illustrated in Figure 2. ", + "bbox": [ + 174, + 773, + 825, + 815 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.2.2 RANDOMIZATION LAYERS $^ +$ ADVERSARIAL TRAINING ", + "text_level": 1, + "bbox": [ + 174, + 829, + 607, + 844 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Note that our randomization-based method is good at defending against iterative attacks, and adversarial training (Kurakin et al., 2017; Tramer et al., 2017) can effectively increase the robustness of \\` neural networks to single-step attacks. Thus, to make the best of both worlds, we can combine the proposed randomization layers and an adversarially trained model (Tramer et al., 2017) together to \\` defend against both single-step and iterative attacks. ", + "bbox": [ + 174, + 853, + 825, + 924 + ], + "page_idx": 3 + }, + { + "type": "image", + "img_path": "images/b391dc2283db9234f0f293be29409bb96e04b1cf038128ded1f2d00537f1f162.jpg", + "image_caption": [ + "Figure 2: The pipeline of our randomization-based defense mechanism. The input image $X _ { n }$ first goes through the random resizing layer with a random scale applied. Then the random padding layer pads the resized image $X _ { n } ^ { \\prime }$ in a random manner. The resulting padded image $X _ { n } ^ { \\prime \\prime }$ is used for classification. " + ], + "image_footnote": [], + "bbox": [ + 183, + 106, + 826, + 338 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 434, + 326, + 449 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4.1 EXPERIMENT SETUP ", + "text_level": 1, + "bbox": [ + 176, + 467, + 356, + 481 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Dataset: It is less meaningful to attack the images that are already classified wrongly. Therefore, we randomly choose 5000 images from the ImageNet validation set that are classified correctly by all the considered networks to form our test dataset. All these images are of the size $2 9 9 \\times 2 9 9 \\times 3$ . ", + "bbox": [ + 174, + 494, + 825, + 536 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Networks: We test with four publicly available networks1,2, including Inception- $\\nu 3$ (Szegedy et al., 2016), ResNet- $\\cdot \\nu 2$ (He et al., 2016b) of 101 layers, Inception-ResNet- $\\cdot \\nu 2$ (Szegedy et al., 2017), and ens-adv-Inception-ResNet- $\\nu 2$ which applies the ensemble adversarial training (Tramer et al., 2017) \\` on Inception-ResNet- $\\nu 2$ . These networks have been trained on ImageNet, and we do not perform any re-training or fine-tuning on them for the whole experiments. ", + "bbox": [ + 173, + 542, + 825, + 613 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Defense Models: The defense models consist of the original networks (i.e., four above-mentioned networks) and two additional randomization layers. For the random resizing layer, it changes the input shape from $2 9 9 \\times 2 9 9 \\times 3$ to $r n d \\times r n d \\times 3$ , where rnd is a integer randomly sampled from the range [299, 331). For the random padding layer, it pads the resized image to the shape of $3 3 1 \\times 3 3 1 \\times 3$ in a random manner. By applying these two randomization layers, we can create 330 \n$\\sum _ { r n d = 2 9 9 } ( 3 3 1 - r n d + 1 ) ^ { 2 } = 1 2 5 2 8$ different patterns for a single image. Since there exists small variance on model performance w.r.t. different random patterns, we run the defense model three times independently and report the average accuracy. ", + "bbox": [ + 173, + 619, + 825, + 750 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Target Models under Different Attack Scenarios: The strongest attack would be that the attackers consider ALL possible patterns of the defense models when generating the adversarial examples. However, this is computationally impossible, because failing a large number of patterns (e.g., 12528 here) at the same time takes extremely long time, and may not even converge. Thus, we let attackers use the target models to generate adversarial examples instead, and consider the following three different attack scenarios. ", + "bbox": [ + 174, + 756, + 825, + 839 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "• Vanilla Attack: The attackers do not know the existence of the randomization layers and the target model is just the original network. ", + "bbox": [ + 207, + 852, + 823, + 881 + ], + "page_idx": 4 + }, + { + "type": "table", + "img_path": "images/f7a87e7b923a88f8e0adc99a1b2c5c1e87d84b1e032095c951694d1d5697a82d.jpg", + "table_caption": [ + "Table 1: Top-1 classification accuracy on the clean images. We see that adding random resizing and random padding cause very little accuracy drop on clean (non-adversarial) images. " + ], + "table_footnote": [], + "table_body": "
ModelsInception-v3ResNet-v2-101Inception-ResNet-v2ens-adv-Inception-ResNet-v2
w/o randomization layers100%100%100%100%
wrandomization layers97.3%98.3%99.3%99.2%
", + "bbox": [ + 178, + 141, + 821, + 214 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "• Single-Pattern Attack: The attackers know the existence of the randomization layers. In order to mimic the structures of defense models, the target model is chosen as the original network $^ +$ randomization layers with only one predefined pattern. ", + "bbox": [ + 217, + 241, + 825, + 284 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "• Ensemble-Pattern Attack: The attackers know the existence of the randomization layers. In order to mimic the structures of defense models in a more representative way, the target model is chosen as the original network $^ +$ randomization layers with an ensemble of predefined patterns. ", + "bbox": [ + 217, + 287, + 825, + 344 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Target Models and Defense Models: The target models and the defense models are exactly the same except for the parameter settings of the randomization layers, i.e., the randomization parameters at the target models are predefined while randomization parameters at the defense models are randomly generated at test time. The original networks (e.g., Inception- $\\nu 3$ ) utilized by the target models and the defense models are the same. The attackers first generate adversarial examples using the target models, and then evaluate the classification accuracy of these generated adversarial examples on both the target and defense models. A low accuracy of the target model indicates that the attack is successful, and a high accuracy of the defense model indicates that the defense is effective. ", + "bbox": [ + 174, + 357, + 825, + 468 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.2 CLEAN IMAGES ", + "text_level": 1, + "bbox": [ + 174, + 487, + 323, + 501 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Table 1 shows the top-1 accuracy of networks with and without randomization layers on the clean images. We can see that randomization layers introduce negligible performance degradation on clean images. Specifically, we can observe that: (1) models with more advanced architectures tend to have less performance degradation, e.g., Inception-ResNet- $\\cdot \\nu 2$ only has $0 . 7 \\%$ degradation while Inception-v3 has $2 . 7 \\%$ degradation; (2) ensemble adversarial training brings nearly no performance degradation to the models, e.g., Inception-ResNet-v2 and ens-adv-Inception-ResNet-v2 have nearly the same performance degradation. ", + "bbox": [ + 174, + 513, + 825, + 611 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.3 VANILLA ATTACK SCENARIO ", + "text_level": 1, + "bbox": [ + 176, + 628, + 416, + 643 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "For the vanilla attack scenario, the attackers are not aware of randomization layers, and directly use the original networks as the target model to generate adversarial examples. The attack ability on the defense models mostly rely on the transferability of adversarial examples to different resizing and padding. From the top-1 accuracy presented in Table 2, we observe that randomization layers can mitigate the adversarial effects for both single-step and iterative attacks significantly. As for singlestep attacks FGSM-\u000f, larger $\\epsilon$ indicates stronger transferability, thus making it harder to defend. However, we can still get satisfactory accuracy of the defense model on single-step attacks (even with large $\\epsilon$ ) using ens-adv-Inception-ResNet- $\\cdot \\nu 2$ $9 4 . 3 \\%$ top-1 accuracy). As for iterative attacks, attackers always reach a very high attack rate on target model, but have almost no impact on models after randomization layers are applied. This is because iterative attack methods are over-fitted to the target models thus have weak transferability. ", + "bbox": [ + 174, + 656, + 825, + 809 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.4 SINGLE-PATTERN ATTACK SCENARIO", + "text_level": 1, + "bbox": [ + 176, + 827, + 475, + 842 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "For the single-pattern attack scenario, the attackers are aware of the existence of randomization layers and also the parameters of the random resizing and random padding (i.e., from $2 9 9 \\times 2 9 9$ to $3 3 1 \\times 3 3 1$ ), but they do not know the specific randomization patterns utilized by the defense models (even the defense models themselves do not know these specific randomization patterns since they are randomly instantiated at test time). In order to generate adversarial examples, the attackers choose the target models as the original networks $^ +$ randomization layers but with only one specific pattern to compute the gradient. In this experiment, the specific pattern that we use is to place the original input $X _ { n }$ at the center of the padded image $X _ { n } ^ { \\prime \\prime }$ , i.e., no resizing is applied, and 16 zeros pixels are padded on the left, right, top and bottom on the input images, respectively. Table 3 shows the top-1 accuracy of both target models and defense models, and similar results to vanilla attack scenario are observed: (1) for single-step attacks, randomization layers are less effective on mitigating adversarial effects for a larger $\\epsilon$ , while the adversarially trained models are able to defend against such attacks; (2) for iterative attacks, they reach high attack rates on target models, while have nearly no impact on defense models. ", + "bbox": [ + 174, + 854, + 823, + 924 + ], + "page_idx": 5 + }, + { + "type": "table", + "img_path": "images/1850526665cf95de722fac8eb55948dd851b7674e5ed589cdafa394a060b212b.jpg", + "table_caption": [ + "Table 2: Top-1 classification accuracy under the vanilla attack scenario. We see that randomization layers effectively mitigate adversarial effects for all attacks and all networks. Particularly, combining randomization layers with ensemble adversarial training (ens-adv-Inception-ResNet-v2) performs very well on all attacks. " + ], + "table_footnote": [], + "table_body": "
ModelsInception-v3ResNet-v2-101Inception-ResNet-v2ens-adv-Inception-ResNet-v2
targetmodeldefensemodeltargetmodeldefensemodeltargetmodeldefensemodeltargetmodeldefensemodel
FGSM-233.2%65.1%26.3%71.8%65.3%81.0%84.4%95.7%
FGSM-531.1%54.5%20.4%54.3%61.7%74.1%87.4%94.5%
FGSM-1033.0%52.4%20.4%46.1%61.2%71.3%90.2%94.3%
DeepFool0%98.3%0%97.7%0%98.2%0.2%99.1%
C&W0%96.9%0%97.1%0.3%97.7%0.9%98.8%
", + "bbox": [ + 173, + 167, + 825, + 314 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/2d308f4aca054eed2b4b010547f1a317397847f183c5cd9f607fd3bdbab1d6af.jpg", + "table_caption": [ + "Table 3: Top-1 classification accuracy under the single-pattern attack scenario. We see that randomization layers effectively mitigate adversarial effects for all attacks and all networks. Particularly, combining randomization layers with ensemble adversarial training (ens-adv-Inception-ResNet- $\\cdot \\nu 2$ ) performs very well on all attacks. " + ], + "table_footnote": [], + "table_body": "
ModelsInception-v3ResNet-v2-101Inception-ResNet-v2ens-adv-Inception-ResNet-v2
targetmodeldefensemodeltargetmodeldefensemodeltargetmodeldefensemodeltargetmodeldefensemodel
FGSM-235.1%63.8%29.5%70.1%71.6%83.4%86.3%96.4%
FGSM-532.4%53.9%23.2%52.3%68.3%78.2%88.4%95.4%
FGSM-1034.7%51.8%22.4%43.8%66.8%75.6%90.7%95.2%
DeepFool1.1%98.2%1.7%97.8%0.6%98.4%1.0%99.2%
C&W1.1%97.4%1.7%97.0%0.8%97.9%1.6%99.1%
", + "bbox": [ + 173, + 397, + 826, + 542 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 570, + 825, + 696 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.5 ENSEMBLE-PATTERN ATTACK SCENARIO ", + "text_level": 1, + "bbox": [ + 176, + 717, + 500, + 731 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "For the ensemble-pattern attack scenario, similar to single-pattern attack scenario, the attackers are aware of the randomization layers and the parameters of the random resizing and random padding (i.e., starting from $2 9 9 \\times 2 9 9$ to $3 3 1 \\times 3 3 1$ ), but they do not know the specific patterns utilized by the defense models at test time. The target models thus are constructed in a more representative way: let randomization layers choose an ensemble of predefined patterns, and the goal of the attackers is to let all chosen patterns fail on classification. In this experiment, the specific ensemble patterns that we choose are: (1) first resize the input image to five different scales $\\{ 2 9 9 , 3 0 7 , 3 1 5 , 3 2 3 , 3 3 1 \\}$ ; (2) then pad each resized image to five different patterns, where the resized image is placed at the top left, top right, bottom left, bottom right, and center of the padded image, respectively. Since there is only one padding pattern for the resized image with size 331, we can obtain $4 * 5 + 1 = 2 1$ patterns in total. Due to the large computation amounts introduced by the ensemble-pattern attack scenario, we randomly choose 500 images out of the entire test dataset for this experiment. The top-1 accuracy for the target model here is calculated by summing up the number of correctly classified patterns of each image over the entire pattern number of all images. For the results presented in Table 4, we can see that the adversarial examples generated under ensemble-pattern attack scenario are much stronger. For single-step attacks, the generated adversarial examples can let the performance of the defense model with an adversarially trained network drop around $8 \\%$ compared to the performance under vanilla attack and single-pattern attack scenarios, and drop much more on other defense models. For iterative attacks, we observe that the adversarial examples generated by C&W are stronger than those generated by DeepFool, e.g., the defense model with Inception- $\\nu 3$ has an accuracy of $8 1 . 3 \\%$ on DeepFool, while only has an accuracy of $6 2 . 9 \\%$ on C&W. We argue that this is due to the more advanced loss function (i.e., introduction of auxiliary variable for pixel value control) utilized by C&W than DeepFool. Additionally, the accuracy of defense model on C&W can be improved by utilizing more advanced architecture (e.g., ResNet-v2-101 has higher accuracy than Inception-v3) and applying ensemble adversarial training (e.g., ens-adv-Inception-ResNet- $\\nu 2$ has higher accuracy than Inception-ResNet-v2). For the best defense model that we have, ens-adv-Inception-ResNet- $\\nu 2$ $^ +$ randomization layers reaches the top-1 accuracy of $9 3 . 5 \\%$ on DeepFool and $8 6 . 1 \\%$ on C&W, respectively. ", + "bbox": [ + 173, + 743, + 825, + 924 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/a5f5f049a290593d5c99320c3903b6b4ea7a50d09c509f730261fde2a47ca05a.jpg", + "table_caption": [ + "Table 4: Top-1 classification accuracy under the ensemble-pattern attack scenario. Similar to vanilla attack and single-pattern attack scenarios, we see that randomization layers increase the accuracy under all attacks and networks. This clearly demonstrates the effectiveness of the proposed randomization method on defending against adversarial examples, even under this very strong attack scenario. " + ], + "table_footnote": [], + "table_body": "
ModelsInception-v3ResNet-v2-101Inception-ResNet-v2ens-adv-Inception-ResNet-v2
targetmodeldefensemodeltargetmodeldefensemodeltargetmodeldefensemodeltargetmodeldefensemodel
FGSM-237.3%41.2%39.2%44.9%71.5%74.3%86.2%88.9%
FGSM-531.7%34.0%24.6%29.7%65.2%67.3%85.8%87.5%
FGSM-1030.4%32.8%18.6%21.7%62.9%64.5%86.6%87.9%
DeepFool0.6%81.3%0.9%80.5%0.9%69.4%1.6%93.5%
C&W0.6%62.9%1.0%74.3%1.6%68.3%5.8%86.1%
", + "bbox": [ + 173, + 180, + 825, + 325 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 358, + 825, + 566 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "4.6 DIAGNOSTIC EXPERIMENT ", + "text_level": 1, + "bbox": [ + 176, + 592, + 400, + 606 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Due to the large amount of possible patterns introduced by randomization layers, it is hard to analyze the effectiveness of random resizing and random padding precisely. In this section, we limit the freedom of randomization to be a small number (i.e., 4 in random padding and 1 in random resizing) and analyze the effectiveness of these two operations separately. The same 500 images in section 4.5 are used in this experiment. In addition, the input images for target models and defense models are resized to the shape $3 3 0 \\times 3 3 0 \\times 3$ beforehand. ", + "bbox": [ + 174, + 621, + 825, + 705 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "4.6.1 ONE PIXEL PADDING ", + "text_level": 1, + "bbox": [ + 176, + 729, + 375, + 744 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "For the random padding, there are only 4 patterns when padding the input images from $3 3 0 \\times 3 3 0 \\times 3$ to $3 3 1 \\times 3 3 1 \\times 3$ . In order to construct a stronger attack, we follow the experiment setup in section 4.5 where 3 chosen patterns are ensembled. Specifically, the target model takes an ensemble of patterns where the original images are at the top left, top right and bottom left (3 patterns) of the padded images, and the defense model takes the last pattern where the original images are at the bottom right of the padded images. Note that, since there is no randomization in the defense model, we only run the defense model once. Table 5 summaries the results, and we can see that: (1) adversarial examples generated by single-step attacks have strong transferability, but still cannot attack the defense model with an adversarially trained model successfully (i.e., the defense model with ensadv-Inception-ResNet- $\\nu 2$ ); (2) adversarial examples generated by iterative attacks are much less transferable between different padding patterns even when only 4 different patterns exist. The results demonstrate that creating different padding patterns can effectively mitigate adversarial effects. ", + "bbox": [ + 174, + 757, + 825, + 924 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/ddbf82dab98d11b4ec804e9536e64fc830a6f8fc88e592a97f1d5f2ea68f8304.jpg", + "table_caption": [ + "Table 5: Top-1 classification accuracy under one pixel padding scenario. This table shows that creating different padding patterns (even 1-pixel padding) can effectively mitigate adversarial effects. " + ], + "table_footnote": [], + "table_body": "
ModelsInception-v3ResNet-v2-101Inception-ResNet-v2ens-adv-Inception-ResNet-v2
targetmodeldefensemodeltargetmodeldefensemodeltargetmodeldefensemodeltargetmodeldefensemodel
FGSM-236.4%39.6%29.8%34.4%71.3%74.0%88.2%94.8%
FGSM-533.5%36.2%22.2%26.2%68.4%71.0%92.1%94.4%
FGSM-1034.5%38.8%21.3%23.6%67.4%70.4%93.7%94.0%
DeepFool0.9%97.2%0.9%95.2%0.9%87.6%1.5%99.2%
C&W0.8%70.2%0.9%76.8%1.0%79.4%2.4%98.2%
", + "bbox": [ + 173, + 141, + 825, + 286 + ], + "page_idx": 8 + }, + { + "type": "table", + "img_path": "images/db4fc58373e021e6bbc56ab326d0e43d13af8c9ff40303a58ff718a293bda7bd.jpg", + "table_caption": [ + "Table 6: Top-1 classification accuracy under one pixel resizing scenario. This table shows that resizing image to a different scale (even 1-pixel scale) can effectively mitigate adversarial effects. " + ], + "table_footnote": [], + "table_body": "
ModelsInception-v3ResNet-v2-101Inception-ResNet-v2ens-adv-Inception-ResNet-v2
targetmodeldefensemodeltargetmodeldefensemodeltargetmodeldefensemodeltargetmodeldefensemodel
FGSM-230.8%56.2%31.6%44.6%66.2%75.0%87.6%97.2%
FGSM-531.2%48.8%25.6%35.8%61.4%70.2%91.2%96.6%
FGSM-1036.4%51.0%23.8%32.6%62.8%68.2%94.8%95.2%
DeepFool2.6%99.4%1.0%98.6%1.2%97.4%1.2%99.4%
C&W2.6%97.8%1.0%94.8%2.0%94.8%1.8%99.6%
", + "bbox": [ + 173, + 342, + 825, + 487 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "4.6.2 ONE-PIXEL RESIZING ", + "text_level": 1, + "bbox": [ + 174, + 513, + 382, + 529 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "For the random resizing, there is only 1 pattern that exists when the input images are resized from $3 3 0 \\times 3 3 0 \\times 3$ to $3 3 1 \\times 3 3 1 \\times 3$ . The results in Table 6 indicate that resizing the images by only 1 pixel can effectively destroy the transferability of adversarial examples by both single-step and iterative attacks. ", + "bbox": [ + 173, + 539, + 825, + 594 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "5 NIPS 2017 ADVERSARIAL EXAMPLES DEFENSE CHALLENGE ", + "text_level": 1, + "bbox": [ + 174, + 616, + 714, + 633 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We submitted our model to the NIPS 2017 adversarial examples defense challenge3 for a more comprehensive performance evaluation. The test dataset contains 5000 images which are all of the size $2 9 9 \\times 2 9 9 \\times 3$ , and their corresponding labels are the same as the ImageNet 1000-class labels. Each defense method are run on all 5000 adversarial images generated against all adversarial attacks. For each correctly classified image, the defense method gets one point. The normalized score for each defense method is computed using the following formula: ", + "bbox": [ + 173, + 648, + 825, + 734 + ], + "page_idx": 8 + }, + { + "type": "equation", + "img_path": "images/bb66dddbf90ac17217662fd9866c1a815b58375accf48ddf4f55b248371231ed.jpg", + "text": "$$\n\\mathrm { s c o r e } = \\frac { 1 } { M } \\sum _ { \\mathrm { a t t a c k } \\in A } \\sum _ { n = 1 } ^ { 5 0 0 0 } \\left[ \\mathrm { d e f e n s e } ( \\mathrm { a t t a c k } ( X _ { n } ) ) = y _ { n } ^ { \\mathrm { t r u e } } \\right] ,\n$$", + "text_format": "latex", + "bbox": [ + 312, + 742, + 681, + 786 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "where $A$ is the set of all attacks, $M$ is the total number of generated adversarial examples by all attacks, and the function $[ \\cdot ]$ is the indicator function which equals to 1 when the prediction is true. ", + "bbox": [ + 174, + 792, + 825, + 823 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "5.1 CHALLENGE RESULTS ", + "text_level": 1, + "bbox": [ + 174, + 840, + 370, + 856 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "The best defense model in our experiments, i.e., randomization layers $^ +$ ens-adv-Inception-Resnet$\\nu 2$ , was submitted to the challenge. To increase the classification accuracy, we (1) changed the resizing range from [299, 331) to [310, 331); (2) averaged the prediction results over 30 randomization patterns for each image; (3) flipped the input image with probability 0.5 for each randomization pattern. ", + "bbox": [ + 176, + 867, + 823, + 897 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 821, + 146 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "By evaluating our model against 156 different attacks, it reaches a normalized score of 0.924 (ranked No.2 among 107 defense models), which is far better than using ensemble adversarial training (Tramer et al., 2017) alone with a normalized score of \\` 0.773 (ranked No.56). This result further demonstrates that the proposed randomization method effectively make deep networks much more robust to adversarial attacks. ", + "bbox": [ + 174, + 152, + 825, + 222 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "6 CONCLUSION ", + "text_level": 1, + "bbox": [ + 174, + 243, + 318, + 260 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "In this paper, we propose a randomization-based mechanism to mitigate adversarial effects. We conduct comprehensive experiments to validate the effectiveness of our defense method, using different network structures, against different attack methods, and under different attack scenarios. The experimental results show that adversarial examples rarely transfer between different randomization patterns, especially for iterative attacks. In addition, the proposed randomization layers are compatible to different network structures and adversarial defense methods, which can serve as a basic module for defense against adversarial examples. By adding the proposed randomization layers to an adversarially trained model (Tramer et al., 2017), it achieves a normalized score of \\` 0.924 (ranked No.2 among 107 defense models) in the NIPS 2017 adversarial examples defense challenge, which is far better than using adversarial training alone with a normalized score of 0.773 (ranked No.56). The code is public available at https://github.com/cihangxie/NIPS2017_ adv_challenge_defense. ", + "bbox": [ + 174, + 275, + 825, + 441 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "ACKNOWLEDGEMENTS ", + "text_level": 1, + "bbox": [ + 176, + 464, + 367, + 479 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "This work is supported by a gift grant from SNAP Research, ONR–N00014-15-1-2356 and NSF Visual Cortex on Silicon CCF-1317560. ", + "bbox": [ + 174, + 494, + 821, + 522 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 176, + 545, + 285, + 560 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Battista Biggio and Pavel Laskov. Poisoning attacks against support vector machines. In International Conference on Machine Learning, 2012. ", + "bbox": [ + 173, + 569, + 821, + 598 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Xiaoyu Cao and Neil Zhenqiang Gong. Mitigating evasion attacks to deep neural networks via region-based classification. In Proceedings of the 33rd Annual Computer Security Applications Conference. ACM, 2017. ", + "bbox": [ + 174, + 607, + 825, + 650 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Nicholas Carlini and David Wagner. Towards evaluating the robustness of neural networks. In IEEE Symposium on Security and Privacy. IEEE, 2017. ", + "bbox": [ + 173, + 660, + 823, + 689 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Liang-Chieh Chen, George Papandreou, Iasonas Kokkinos, Kevin Murphy, and Alan L Yuille. Deeplab: Semantic image segmentation with deep convolutional nets, atrous convolution, and fully connected crfs. IEEE Transactions on Pattern Analysis and Machine Intelligence, 2017. ", + "bbox": [ + 173, + 699, + 826, + 742 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Moustapha Cisse, Yossi Adi, Natalia Neverova, and Joseph Keshet. Houdini: Fooling deep structured prediction models. arXiv preprint arXiv:1707.05373, 2017. ", + "bbox": [ + 171, + 752, + 821, + 781 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A large-scale hierarchical image database. In Computer Vision and Pattern Recognition. IEEE, 2009. ", + "bbox": [ + 171, + 791, + 823, + 820 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Reuben Feinman, Ryan R Curtin, Saurabh Shintre, and Andrew B Gardner. Detecting adversarial samples from artifacts. arXiv preprint arXiv:1703.00410, 2017. ", + "bbox": [ + 171, + 830, + 823, + 859 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Volker Fischer, Mummadi Chaithanya Kumar, Jan Hendrik Metzen, and Thomas Brox. Adversarial examples for semantic image segmentation. arXiv preprint arXiv:1703.01101, 2017. ", + "bbox": [ + 174, + 869, + 825, + 898 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ross Girshick. Fast r-cnn. In International Conference on Computer Vision. IEEE, 2015. ", + "bbox": [ + 169, + 909, + 758, + 924 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ian J Goodfellow, Jonathon Shlens, and Christian Szegedy. Explaining and harnessing adversarial examples. In International Conference on Learning Representations, 2015. ", + "bbox": [ + 171, + 103, + 823, + 133 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Computer Vision and Pattern Recognition. IEEE, 2016a. ", + "bbox": [ + 173, + 140, + 821, + 170 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Identity mappings in deep residual networks. In European Conference on Computer Vision. Springer, 2016b. ", + "bbox": [ + 171, + 178, + 823, + 208 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Pang Wei Koh and Percy Liang. Understanding black-box predictions via influence functions. arXiv preprint arXiv:1703.04730, 2017. ", + "bbox": [ + 173, + 215, + 825, + 244 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. Imagenet classification with deep convolutional neural networks. In Advances in Neural Information Processing Systems, 2012. ", + "bbox": [ + 173, + 252, + 823, + 282 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Alexey Kurakin, Ian Goodfellow, and Samy Bengio. Adversarial machine learning at scale. In International Conference on Learning Representations, 2017. ", + "bbox": [ + 174, + 289, + 823, + 319 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Yanpei Liu, Xinyun Chen, Chang Liu, and Dawn Song. Delving into transferable adversarial examples and black-box attacks. In International Conference on Learning Representations, 2017. ", + "bbox": [ + 174, + 327, + 823, + 357 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jonathan Long, Evan Shelhamer, and Trevor Darrell. Fully convolutional networks for semantic segmentation. In Computer Vision and Pattern Recognition. IEEE, 2015. ", + "bbox": [ + 171, + 364, + 823, + 393 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Dongyu Meng and Hao Chen. Magnet: a two-pronged defense against adversarial examples. arXiv preprint arXiv:1705.09064, 2017. ", + "bbox": [ + 173, + 401, + 825, + 430 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jan Hendrik Metzen, Tim Genewein, Volker Fischer, and Bastian Bischoff. On detecting adversarial perturbations. In International Conference on Learning Representations, 2017. ", + "bbox": [ + 171, + 438, + 823, + 468 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Seyed-Mohsen Moosavi-Dezfooli, Alhussein Fawzi, and Pascal Frossard. Deepfool: a simple and accurate method to fool deep neural networks. In Computer Vision and Pattern Recognition. IEEE, 2016. ", + "bbox": [ + 174, + 476, + 823, + 518 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Nicolas Papernot, Ian Goodfellow, Ryan Sheatsley, Reuben Feinman, and Patrick McDaniel. cleverhans v1.0.0: an adversarial machine learning library. arXiv preprint arXiv:1610.00768, 2016a. ", + "bbox": [ + 169, + 526, + 823, + 558 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Nicolas Papernot, Patrick McDaniel, Xi Wu, Somesh Jha, and Ananthram Swami. Distillation as a defense to adversarial perturbations against deep neural networks. In IEEE Symposium on Security and Privacy. IEEE, 2016b. ", + "bbox": [ + 173, + 564, + 823, + 607 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Shaoqing Ren, Kaiming He, Ross Girshick, and Jian Sun. Faster r-cnn: Towards real-time object detection with region proposal networks. In Advances in Neural Information Processing Systems, 2015. ", + "bbox": [ + 174, + 616, + 823, + 659 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale image recognition. In International Conference on Learning Representations, 2015. ", + "bbox": [ + 171, + 666, + 823, + 696 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Christian Szegedy, Wojciech Zaremba, Ilya Sutskever, Joan Bruna, Dumitru Erhan, Ian Goodfellow, and Rob Fergus. Intriguing properties of neural networks. In International Conference on Learning Representations, 2014. ", + "bbox": [ + 178, + 704, + 823, + 747 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Christian Szegedy, Vincent Vanhoucke, Sergey Ioffe, Jon Shlens, and Zbigniew Wojna. Rethinking the inception architecture for computer vision. In Computer Vision and Pattern Recognition. IEEE, 2016. ", + "bbox": [ + 174, + 755, + 823, + 797 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Christian Szegedy, Sergey Ioffe, Vincent Vanhoucke, and Alexander A Alemi. Inception-v4, inception-resnet and the impact of residual connections on learning. In AAAI, 2017. ", + "bbox": [ + 173, + 806, + 821, + 835 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Florian Tramer, Alexey Kurakin, Nicolas Papernot, Dan Boneh, and Patrick McDaniel. Ensemble \\` adversarial training: Attacks and defenses. arXiv preprint arXiv:1705.07204, 2017. ", + "bbox": [ + 173, + 843, + 821, + 873 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jianyu Wang, Zhishuai Zhang, Cihang Xie, Yuyin Zhou, Vittal Premachandran, Jun Zhu, Lingxi Xie, and Alan Yuille. Visual concepts and compositional voting. arXiv preprint arXiv:1711.04451, 2017. ", + "bbox": [ + 174, + 881, + 825, + 922 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Cihang Xie, Jianyu Wang, Zhishuai Zhang, Yuyin Zhou, Lingxi Xie, and Alan Yuille. Adversarial Examples for Semantic Segmentation and Object Detection. In International Conference on Computer Vision. IEEE, 2017. ", + "bbox": [ + 176, + 103, + 821, + 145 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Zhishuai Zhang, Siyuan Qiao, Cihang Xie, Wei Shen, Bo Wang, and Alan L Yuille. Single-shot object detection with enriched semantics. arXiv preprint arXiv:1712.00433, 2017. ", + "bbox": [ + 174, + 155, + 823, + 184 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "APPENDIX A OTHER RANDOMIZATION METHODS ", + "text_level": 1, + "bbox": [ + 174, + 102, + 604, + 118 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Besides random resizing and random padding, we further evaluate the effectiveness of four other randomization methods against adversarial examples. All these four methods are used as dataaugmentation during the standard network training. ", + "bbox": [ + 176, + 132, + 825, + 175 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "• Random Brightness: a brightness factor $\\delta$ is randomly picked in the interval $[ - \\delta _ { \\mathrm { m a x } } , \\delta _ { \\mathrm { m a x } } ]$ to adjust the brightness of the normalized image $\\hat { X _ { n } }$ . We choose $\\begin{array} { r } { \\delta _ { \\mathrm { m a x } } = \\frac { 3 2 } { 2 5 5 } } \\end{array}$ . \n• Random Saturation: a saturation factor $\\alpha$ is randomly picked in the interval $[ \\alpha _ { l o w e r } , \\alpha _ { u p p e r } ]$ to adjust the saturation of the normalized image $\\hat { X _ { n } }$ . We choose $\\alpha _ { l o w e r } =$ 0.5 and $\\alpha _ { u p p e r } = 1 . 5$ . \n• Random Hue: a hue factor $\\theta$ is randomly picked in the interval $[ - \\theta _ { \\mathrm { m a x } } , \\theta _ { \\mathrm { m a x } } ]$ to adjust the hue of the normalized image ${ \\hat { X _ { n } } }$ . We choose $\\theta _ { \\mathrm { m a x } } = 0 . 2$ . \n• Random Contrast: a contrast factor $\\beta$ is randomly picked in the interval $[ \\beta _ { l o w e r } , \\beta _ { u p p e r } ]$ to adjust the contrast of the normalized image $\\hat { X _ { n } }$ . We choose $\\beta _ { l o w e r } = 0 . 5$ and $\\beta _ { u p p e r } = 1 . 5$ . ", + "bbox": [ + 215, + 185, + 825, + 335 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Note that, (1) the parameters chosen above are the same as the ones used during network training process4; (2) the pixel value of the normalized image $\\hat { X _ { n } }$ are all within the interval $[ 0 , 1 ]$ , and we also use this range to clip the pixel value of the image after pre-processing. ", + "bbox": [ + 176, + 345, + 825, + 390 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Following the experiment setup in section 4, we first evaluate the effectiveness of each of these randomization methods on the 5000 clean images. The results are shown in the Table 7. We can see that these methods hardly hurt the performance on clean images. We further combine the proposed randomization layers, i.e., random resizing layer and random padding layer, with each of these randomization methods (denoted as $^ { 6 6 } + + ^ { 7 }$ ). We see that the combined randomization modules only cause very little accuracy drop on clean images. ", + "bbox": [ + 174, + 396, + 825, + 479 + ], + "page_idx": 12 + }, + { + "type": "table", + "img_path": "images/ee1124c3f76bde054f599243676b17e54b17d22111dd0bac1b90566e8bc3c191.jpg", + "table_caption": [ + "Table 7: Top-1 classification accuracy on clean images. We see that these four randomization methods hardly hurt the performance on clean images. We use $^ { 6 6 } { + + ^ { 9 9 } }$ to denote the addition of the proposed randomization layers, i.e., random resizing and random padding, and the results indicate that combined models still performs pretty good on clean images. " + ], + "table_footnote": [], + "table_body": "
ModelsInception-v3ResNet-v2-101Inception-ResNet-v2ens-adv-Inception-ResNet-v2
random brightness99.6%99.7%99.8%99.8%
random brightness ++98.6%98.1%99.1%99.2%
random saturation99.6%99.7%99.9%99.9%
random saturation ++98.6%98.3%99.3%99.3%
random hue99.4%99.6%99.7%99.4%
random hue ++98.6%98.3%99.2%99.1%
random contrast99.5%99.6%99.7%99.6%
random contrast ++98.6%98.2%99.3%99.1%
", + "bbox": [ + 176, + 559, + 820, + 720 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "We then evaluate the effectiveness of these randomization methods against the adversarial examples generated under the vanilla attack scenario. The results are shown in the Tables 8 - 11. Compared to the results in Table 2, all these four methods are much less effective than the proposed randomization layers. By combining the proposed randomization layers with each of these four randomization methods (denoted as $^ { 6 6 } { + } { + } ^ { , 9 } )$ , the performance can be slightly improved than using the proposed randomization layers alone. ", + "bbox": [ + 173, + 741, + 825, + 824 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Since each of these four randomization methods alone are not as effective as our proposed randomization methods against adversarial examples generated under the vanilla attack scenario, we do not further investigate their effectiveness under single-pattern attack and ensemble-pattern attack scenarios. However, combining these randomization methods with our proposed randomization layers together provides a way to build a slightly stronger defense mechanism. ", + "bbox": [ + 174, + 830, + 825, + 901 + ], + "page_idx": 12 + }, + { + "type": "table", + "img_path": "images/241df516881557f904257b857685708c093f5a5bcd788734712e22bdd8aa507d.jpg", + "table_caption": [ + "Table 8: Top-1 classification accuracy by using random brightness under the vanilla attack scenario. Compared to the results in Table 2, random brightness is much less effective than the proposed randomization layers. By combing random brightness and the proposed randomization layers (denoted as random brightness $^ { + + }$ ), it reaches slightly better performance than using the proposed randomization layers alone. " + ], + "table_footnote": [], + "table_body": "
ModelsInception-v3ResNet-v2-101Inception-ResNet-v2ens-adv-Inception-ResNet-v2
randombright-nessrandombright-ness++randombright-nessrandombright-ness++randombright-nessrandombright-ness++randombright-nessrandombright-ness++
FGSM-234.9%67.0%28.5%73.5%66.4%81.3%85.0%95.8%
FGSM-531.9%55.5%21.6%55.7%62.4%74.7%87.6%95.0%
FGSM-1033.2%52.9%20.9%47.2%61.8%71.5%90.4%94.5%
DeepFool79.4%98.1%82.3%97.5%62.8%98.3%79.0%99.1%
C&W34.5%96.9%47.7%97.2%51.3%98.0%42.3%98.6%
", + "bbox": [ + 173, + 200, + 825, + 361 + ], + "page_idx": 13 + }, + { + "type": "table", + "img_path": "images/a77bd7ea9d65edad3499f047bba7c530008b294dd86121fa2def44e3afd05811.jpg", + "table_caption": [ + "Table 9: Top-1 classification accuracy by using random saturation under the vanilla attack scenario. Compared to the results in Table 2, random saturation is much less effective than the proposed randomization layers. By combing random saturation and the proposed randomization layers (denoted as random saturation $^ { + + }$ ), it reaches slightly better performance than using the proposed randomization layers alone. " + ], + "table_footnote": [], + "table_body": "
ModelsInception-v3ResNet-v2-101Inception-ResNet-v2ens-adv-Inception-ResNet-v2
randomsatura-tionrandomsatura-tion++randomrandomrandomrandom satura-tion++randomsatura-tionrandom satura-tion++
satura-tionsatura-tion++satura-tion
FGSM-234.2%66.5%27.9%73.6%66.3%81.5%85.2%95.7%
FGSM-531.8%55.2%21.1%55.7%62.1%74.6%87.0%95.0%
FGSM-1033.5%52.2%20.7%46.5%61.7%71.4%90.1%93.9%
DeepFool82.6%98.1%79.6%97.6%64.7%98.2%78.5%99.0%
C&W39.2%97.2%47.5%96.9%51.7%97.7%50.9%99.1%
", + "bbox": [ + 173, + 486, + 825, + 645 + ], + "page_idx": 13 + }, + { + "type": "table", + "img_path": "images/159990e9477e81f3b8b7168e7a5a656d363edfa0315ec3fe5ab3ce9c887e700d.jpg", + "table_caption": [ + "Table 10: Top-1 classification accuracy by using random hue under the vanilla attack scenario. Compared to the results in Table 2, random hue is much less effective than the proposed randomization layers. By combing random hue and the proposed randomization layers (denoted as random $\\mathbf { h u e + + }$ ), it reaches slightly better performance than using the proposed randomization layers alone. " + ], + "table_footnote": [], + "table_body": "
ModelsInception-v3ResNet-v2-101Inception-ResNet-v2ens-adv-Inception-ResNet-v2
randomhuerandomhue++randomhuerandomhue++randomhuerandomhue++randomhuerandomhue++
FGSM-238.1%69.0%32.0%74.9%68.6%83.0%87.4%95.8%
FGSM-533.9%57.2%23.0%57.6%64.0%76.1%86.7%93.9%
FGSM-1036.4%54.2%22.1%48.4%63.0%72.5%88.0%91.3%
DeepFool95.0%97.9%91.2%97.6%86.5%98.4%96.8%99.1%
C&W72.1%97.3%74.0%97.0%77.4%98.2%81.1%98.8%
", + "bbox": [ + 173, + 757, + 825, + 904 + ], + "page_idx": 13 + }, + { + "type": "table", + "img_path": "images/6f3b024c88dd017504069a106ef4000d10bd683f52dadbc7e9bf4c4674b24fb9.jpg", + "table_caption": [ + "Table 11: Top-1 classification accuracy by using random contrast under the vanilla attack scenario. Compared to the results in Table 2, random contrast is much less effective than the proposed randomization layers. By combing random contrast and the proposed randomization layers (denoted as random contrast $^ { + + }$ ), it reaches slightly better performance than using the proposed randomization layers alone. " + ], + "table_footnote": [], + "table_body": "
ModelsInception-v3ResNet-v2-101Inception-ResNet-v2ens-adv-Inception-ResNet-v2
randomcon-trastrandomcon-trast++randomcon-trastrandomcon-trast++randomcon-trastrandomcon-trast++randomcon-trastrandomcon-trast++
FGSM-237.0%68.0%29.4%74.1%67.2%82.5%85.9%96.0%
FGSM-532.7%56.3%22.7%57.0%63.1%74.9%88.1%94.9%
FGSM-1034.4%53.5%21.2%47.0%62.1%72.0%90.6%94.3%
DeepFool90.4%98.1%87.5%97.5%73.8%98.1%90.8%99.0%
C&W56.8%97.0%57.1%96.7%63.7%97.9%67.6%98.8%
", + "bbox": [ + 173, + 181, + 826, + 342 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "APPENDIX B RANDOMIZATION LAYERS WITH SMALLER SIZE ", + "text_level": 1, + "bbox": [ + 176, + 364, + 700, + 381 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Instead of resizing the input image to a larger size, we here resize the input image to a smaller size, i.e., the resizing parameter is randomly sampled from the range [267, 299). The random padding layer then pads the resized image to the shape of $2 9 9 \\times 2 9 9 \\times 3$ in a random manner. Note that, the random resizing layer and the random padding layer here have the same freedom as the ones used in the paper, i.e., they create the same number, 12528, of different patterns for a single image. We evaluate the effectiveness of this parameter setting on both the 5000 clean images and the adversarial examples generated under the vanilla attack scenario. The results are shown in the Table 12. We see that randomization layers still work well with smaller size images, but is slightly worse than using larger size images as in the paper. This is because resizing to a smaller size loses certain information of the original image. ", + "bbox": [ + 173, + 395, + 825, + 535 + ], + "page_idx": 14 + }, + { + "type": "table", + "img_path": "images/b63d8a7250398b8bd06b39e706ab64735a9a5b36a087184c416f91f69b0751b1.jpg", + "table_caption": [ + "Table 12: Top-1 classification accuracy on the clean images and the adversarial examples generated under the vanilla attack scenario. Compared to the results in Tables 1 and 2, randomization parameters applied here (i.e., resize between [267, 299), and pad to $2 9 9 \\times 2 9 9 \\times 3 )$ ) is slightly worse than the randomization parameters applied in the paper (i.e., resize between [299, 331), and pad to $3 3 1 \\times 3 3 1 \\times 3 )$ . " + ], + "table_footnote": [], + "table_body": "
ModelsInception-v3ResNet-v2-101Inception-ResNet-v2ens-adv-Inception-ResNet-v2
clean images98.2%97.5%99.1%98.7%
FGSM-263.1%65.0%79.9%95.0%
FGSM-553.4%48.3%73.3%94.0%
FGSM-1050.8%40.5%70.6%93.4%
DeepFool97.2%96.5%96.0%98.6%
C&W95.2%95.2%97.2%97.8%
", + "bbox": [ + 176, + 628, + 821, + 761 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "APPENDIX C RANDOMIZATION LAYERS WITH MULTIPLE ITERATIONS ", + "text_level": 1, + "bbox": [ + 173, + 786, + 769, + 804 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "In this section, we show the relationship between the top-1 accuracy of the defense model and the iteration number performed on each image. Specifically, we choose ens-adv-Inception-ResNet- $\\nu 2 +$ randomization layers as the defense model for the experiment. The same trend can be observed for other defense models. ", + "bbox": [ + 174, + 818, + 825, + 875 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "For the defense model, the iteration number is chosen to be $\\{ 1 , 5 , 1 0 , 2 0 , 3 0 \\}$ , and it is evaluated on the 5000 clean test images and the adversarial examples generated under all three attack scenarios. The results are shown in the Figures 3 - 5. We can observe that (1) increasing the number of iteration can slightly improve the top-1 classification accuracy of the defense model on clean images and adversarial examples generated under both the vanilla attack and the single-pattern attack scenarios; (2) increasing the number of iteration has nearly no improvement for the top-1 classification accuracy of the defense model on adversarial examples generated by single-step attacks under the ensemble-pattern attack scenario; (3) increasing the number of iteration can improve the top-1 classification accuracy of the defense model on adversarial examples generated by iterative attacks under the ensemble-pattern attack scenario. ", + "bbox": [ + 174, + 881, + 825, + 924 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 103, + 825, + 202 + ], + "page_idx": 15 + }, + { + "type": "image", + "img_path": "images/a25aa63356ef141cc900583f46c838547d3cb72eeae8c3fce9b665da139db3ec.jpg", + "image_caption": [ + "Figure 3: Top-1 classification accuracy on the clean images and the adversarial examples generated under the vanilla attack scenrio. " + ], + "image_footnote": [], + "bbox": [ + 184, + 224, + 364, + 378 + ], + "page_idx": 15 + }, + { + "type": "image", + "img_path": "images/0cf83e4d60ebaeaa48670a3eae350647157c26303fc23d006fea2afbff49f186.jpg", + "image_caption": [ + "Figure 4: Top-1 classification accuracy on the adversarial examples generated under the single-pattern attack scenrio. " + ], + "image_footnote": [], + "bbox": [ + 405, + 224, + 588, + 378 + ], + "page_idx": 15 + }, + { + "type": "image", + "img_path": "images/49c765887d9ca814549732caf7e88c202b46e49cbcf0f3ce57891fd62a33e450.jpg", + "image_caption": [ + "Figure 5: Top-1 classification accuracy on the adversarial examples generated under the ensemble-pattern attack scenrio. " + ], + "image_footnote": [], + "bbox": [ + 629, + 224, + 810, + 378 + ], + "page_idx": 15 + } +] \ No newline at end of file diff --git a/parse/train/Sk9yuql0Z/Sk9yuql0Z_model.json b/parse/train/Sk9yuql0Z/Sk9yuql0Z_model.json new file mode 100644 index 0000000000000000000000000000000000000000..d38495a69fd22db5c8ac4b17ba244e699d35cbb1 --- /dev/null +++ b/parse/train/Sk9yuql0Z/Sk9yuql0Z_model.json @@ -0,0 +1,24248 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 1020, + 1301, + 1020, + 1301, + 1540, + 398, + 1540 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 1668, + 1404, + 1668, + 1404, + 2033, + 297, + 2033 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 314, + 577, + 625, + 577, + 625, + 699, + 314, + 699 + ], + "score": 0.96 + }, + { + "category_id": 0, + "poly": [ + 299, + 220, + 1396, + 220, + 1396, + 322, + 299, + 322 + ], + "score": 0.955 + }, + { + "category_id": 0, + "poly": [ + 302, + 1598, + 573, + 1598, + 573, + 1633, + 302, + 1633 + ], + "score": 0.892 + }, + { + "category_id": 1, + "poly": [ + 313, + 747, + 668, + 747, + 668, + 869, + 313, + 869 + ], + "score": 0.879 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.87 + }, + { + "category_id": 0, + "poly": [ + 773, + 950, + 927, + 950, + 927, + 983, + 773, + 983 + ], + "score": 0.853 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 857, + 2088, + 857, + 2112, + 842, + 2112 + ], + "score": 0.65 + }, + { + "category_id": 1, + "poly": [ + 315, + 412, + 1210, + 412, + 1210, + 529, + 315, + 529 + ], + "score": 0.581 + }, + { + "category_id": 1, + "poly": [ + 317, + 377, + 854, + 377, + 854, + 409, + 317, + 409 + ], + "score": 0.565 + }, + { + "category_id": 0, + "poly": [ + 315, + 748, + 436, + 748, + 436, + 776, + 315, + 776 + ], + "score": 0.215 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 220.0, + 1401.0, + 220.0, + 1401.0, + 272.0, + 295.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 280.0, + 568.0, + 280.0, + 568.0, + 328.0, + 294.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1595.0, + 579.0, + 1595.0, + 579.0, + 1642.0, + 294.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 946.0, + 934.0, + 946.0, + 934.0, + 989.0, + 768.0, + 989.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": [ + 312.0, + 744.0, + 439.0, + 744.0, + 439.0, + 779.0, + 312.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1021.0, + 1303.0, + 1021.0, + 1303.0, + 1053.0, + 396.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1050.0, + 1304.0, + 1050.0, + 1304.0, + 1085.0, + 392.0, + 1085.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1080.0, + 1304.0, + 1080.0, + 1304.0, + 1117.0, + 393.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1110.0, + 1305.0, + 1110.0, + 1305.0, + 1146.0, + 393.0, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1144.0, + 1303.0, + 1144.0, + 1303.0, + 1173.0, + 396.0, + 1173.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1173.0, + 1305.0, + 1173.0, + 1305.0, + 1208.0, + 393.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1201.0, + 1305.0, + 1201.0, + 1305.0, + 1238.0, + 392.0, + 1238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1233.0, + 1304.0, + 1233.0, + 1304.0, + 1267.0, + 393.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1264.0, + 1305.0, + 1264.0, + 1305.0, + 1297.0, + 393.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1293.0, + 1306.0, + 1293.0, + 1306.0, + 1330.0, + 393.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1325.0, + 1306.0, + 1325.0, + 1306.0, + 1360.0, + 394.0, + 1360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1353.0, + 1306.0, + 1353.0, + 1306.0, + 1388.0, + 393.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1386.0, + 1305.0, + 1386.0, + 1305.0, + 1417.0, + 394.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1415.0, + 1305.0, + 1415.0, + 1305.0, + 1450.0, + 392.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1447.0, + 1304.0, + 1447.0, + 1304.0, + 1479.0, + 395.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1474.0, + 1302.0, + 1474.0, + 1302.0, + 1512.0, + 393.0, + 1512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 1509.0, + 1291.0, + 1509.0, + 1291.0, + 1541.0, + 398.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1669.0, + 1405.0, + 1669.0, + 1405.0, + 1703.0, + 296.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1698.0, + 1404.0, + 1698.0, + 1404.0, + 1732.0, + 295.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1725.0, + 1404.0, + 1725.0, + 1404.0, + 1767.0, + 291.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1758.0, + 1402.0, + 1758.0, + 1402.0, + 1795.0, + 292.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1789.0, + 1405.0, + 1789.0, + 1405.0, + 1824.0, + 292.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1821.0, + 1405.0, + 1821.0, + 1405.0, + 1855.0, + 294.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1849.0, + 1405.0, + 1849.0, + 1405.0, + 1886.0, + 292.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1880.0, + 1405.0, + 1880.0, + 1405.0, + 1917.0, + 292.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1912.0, + 1404.0, + 1912.0, + 1404.0, + 1946.0, + 295.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1941.0, + 1405.0, + 1941.0, + 1405.0, + 1979.0, + 292.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1972.0, + 1405.0, + 1972.0, + 1405.0, + 2009.0, + 294.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1998.0, + 1405.0, + 1998.0, + 1405.0, + 2041.0, + 292.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 573.0, + 480.0, + 573.0, + 480.0, + 615.0, + 310.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 606.0, + 557.0, + 606.0, + 557.0, + 638.0, + 311.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 637.0, + 627.0, + 637.0, + 627.0, + 672.0, + 310.0, + 672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 670.0, + 604.0, + 670.0, + 604.0, + 704.0, + 311.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 741.0, + 441.0, + 741.0, + 441.0, + 779.0, + 309.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 775.0, + 428.0, + 775.0, + 428.0, + 811.0, + 310.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 807.0, + 586.0, + 807.0, + 586.0, + 839.0, + 312.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 840.0, + 670.0, + 840.0, + 670.0, + 871.0, + 314.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 405.0, + 692.0, + 405.0, + 692.0, + 441.0, + 311.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 432.0, + 657.0, + 432.0, + 657.0, + 473.0, + 310.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 467.0, + 629.0, + 467.0, + 629.0, + 500.0, + 311.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 497.0, + 1212.0, + 497.0, + 1212.0, + 532.0, + 313.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 375.0, + 857.0, + 375.0, + 857.0, + 414.0, + 312.0, + 414.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1850, + 1403, + 1850, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1317, + 1404, + 1317, + 1404, + 1471, + 298, + 1471 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 766, + 1403, + 766, + 1403, + 981, + 298, + 981 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 996, + 1404, + 996, + 1404, + 1302, + 298, + 1302 + ], + "score": 0.974 + }, + { + "category_id": 4, + "poly": [ + 297, + 528, + 1404, + 528, + 1404, + 650, + 297, + 650 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 368, + 1499, + 1403, + 1499, + 1403, + 1822, + 368, + 1822 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 301, + 688, + 1399, + 688, + 1399, + 750, + 301, + 750 + ], + "score": 0.946 + }, + { + "category_id": 3, + "poly": [ + 354, + 220, + 1349, + 220, + 1349, + 497, + 354, + 497 + ], + "score": 0.936 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 814, + 76, + 814, + 104, + 299, + 104 + ], + "score": 0.881 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.716 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.112 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 529.0, + 1402.0, + 529.0, + 1402.0, + 561.0, + 295.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 557.0, + 1405.0, + 557.0, + 1405.0, + 595.0, + 292.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 591.0, + 1402.0, + 591.0, + 1402.0, + 624.0, + 296.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 621.0, + 697.0, + 621.0, + 697.0, + 654.0, + 296.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 231.0, + 589.0, + 231.0, + 589.0, + 456.0, + 324.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 310.0, + 685.0, + 310.0, + 685.0, + 379.0, + 625.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 234.0, + 1345.0, + 234.0, + 1345.0, + 455.0, + 1093.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 468.0, + 524.0, + 468.0, + 524.0, + 499.0, + 395.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 468.0, + 944.0, + 468.0, + 944.0, + 498.0, + 713.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1184.0, + 468.0, + 1289.0, + 468.0, + 1289.0, + 498.0, + 1184.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1848.0, + 1402.0, + 1848.0, + 1402.0, + 1884.0, + 296.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1882.0, + 1404.0, + 1882.0, + 1404.0, + 1914.0, + 296.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1910.0, + 1403.0, + 1910.0, + 1403.0, + 1946.0, + 294.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1941.0, + 1407.0, + 1941.0, + 1407.0, + 1977.0, + 292.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1974.0, + 1405.0, + 1974.0, + 1405.0, + 2005.0, + 296.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 2000.0, + 1405.0, + 2000.0, + 1405.0, + 2037.0, + 292.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1315.0, + 1406.0, + 1315.0, + 1406.0, + 1353.0, + 293.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1345.0, + 1406.0, + 1345.0, + 1406.0, + 1383.0, + 293.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1378.0, + 1405.0, + 1378.0, + 1405.0, + 1411.0, + 296.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1409.0, + 1405.0, + 1409.0, + 1405.0, + 1446.0, + 294.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1436.0, + 1019.0, + 1436.0, + 1019.0, + 1477.0, + 293.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 768.0, + 1403.0, + 768.0, + 1403.0, + 802.0, + 296.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 798.0, + 1404.0, + 798.0, + 1404.0, + 833.0, + 294.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 828.0, + 1405.0, + 828.0, + 1405.0, + 862.0, + 296.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 854.0, + 1408.0, + 854.0, + 1408.0, + 899.0, + 291.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 888.0, + 1405.0, + 888.0, + 1405.0, + 923.0, + 294.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 918.0, + 1405.0, + 918.0, + 1405.0, + 955.0, + 293.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 950.0, + 1188.0, + 950.0, + 1188.0, + 984.0, + 294.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 990.0, + 1406.0, + 990.0, + 1406.0, + 1036.0, + 292.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1026.0, + 1408.0, + 1026.0, + 1408.0, + 1065.0, + 293.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1059.0, + 1405.0, + 1059.0, + 1405.0, + 1091.0, + 296.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1087.0, + 1406.0, + 1087.0, + 1406.0, + 1126.0, + 293.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1116.0, + 1405.0, + 1116.0, + 1405.0, + 1154.0, + 293.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1148.0, + 1406.0, + 1148.0, + 1406.0, + 1185.0, + 293.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1179.0, + 1406.0, + 1179.0, + 1406.0, + 1215.0, + 294.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1209.0, + 1404.0, + 1209.0, + 1404.0, + 1243.0, + 293.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1240.0, + 1404.0, + 1240.0, + 1404.0, + 1276.0, + 293.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1265.0, + 398.0, + 1265.0, + 398.0, + 1312.0, + 292.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 1499.0, + 1403.0, + 1499.0, + 1403.0, + 1533.0, + 368.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1530.0, + 1406.0, + 1530.0, + 1406.0, + 1566.0, + 392.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1561.0, + 1406.0, + 1561.0, + 1406.0, + 1598.0, + 394.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1596.0, + 514.0, + 1596.0, + 514.0, + 1627.0, + 395.0, + 1627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 1636.0, + 1379.0, + 1636.0, + 1379.0, + 1674.0, + 379.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 1681.0, + 1406.0, + 1681.0, + 1406.0, + 1719.0, + 375.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1716.0, + 712.0, + 1716.0, + 712.0, + 1748.0, + 395.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 1760.0, + 1403.0, + 1760.0, + 1403.0, + 1794.0, + 366.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1789.0, + 1321.0, + 1789.0, + 1321.0, + 1824.0, + 393.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 684.0, + 1404.0, + 684.0, + 1404.0, + 725.0, + 293.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 719.0, + 482.0, + 719.0, + 482.0, + 752.0, + 296.0, + 752.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 477, + 1404, + 477, + 1404, + 904, + 298, + 904 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1009, + 1404, + 1009, + 1404, + 1435, + 298, + 1435 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 299, + 1619, + 1404, + 1619, + 1404, + 1837, + 299, + 1837 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1850, + 1400, + 1850, + 1400, + 1942, + 299, + 1942 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 296, + 229, + 1399, + 229, + 1399, + 293, + 296, + 293 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 368, + 1971, + 1400, + 1971, + 1400, + 2034, + 368, + 2034 + ], + "score": 0.923 + }, + { + "category_id": 0, + "poly": [ + 301, + 342, + 587, + 342, + 587, + 379, + 301, + 379 + ], + "score": 0.909 + }, + { + "category_id": 0, + "poly": [ + 299, + 949, + 947, + 949, + 947, + 980, + 299, + 980 + ], + "score": 0.893 + }, + { + "category_id": 0, + "poly": [ + 300, + 1487, + 508, + 1487, + 508, + 1522, + 300, + 1522 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 815, + 75, + 815, + 104, + 300, + 104 + ], + "score": 0.889 + }, + { + "category_id": 0, + "poly": [ + 302, + 417, + 843, + 417, + 843, + 447, + 302, + 447 + ], + "score": 0.863 + }, + { + "category_id": 0, + "poly": [ + 300, + 1561, + 1065, + 1561, + 1065, + 1592, + 300, + 1592 + ], + "score": 0.835 + }, + { + "category_id": 2, + "poly": [ + 842, + 2089, + 858, + 2089, + 858, + 2111, + 842, + 2111 + ], + "score": 0.561 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 859, + 2088, + 859, + 2111, + 842, + 2111 + ], + "score": 0.42 + }, + { + "category_id": 13, + "poly": [ + 1239, + 1773, + 1348, + 1773, + 1348, + 1807, + 1239, + 1807 + ], + "score": 0.92, + "latex": "| | r _ { n } | | \\leq \\epsilon" + }, + { + "category_id": 13, + "poly": [ + 674, + 1803, + 803, + 1803, + 803, + 1837, + 674, + 1837 + ], + "score": 0.92, + "latex": "y _ { n } ^ { \\mathrm { a d v } } \\neq y _ { n } ^ { \\mathrm { t r u e } }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1682, + 346, + 1682, + 346, + 1714, + 298, + 1714 + ], + "score": 0.91, + "latex": "y _ { n } ^ { \\mathrm { t r u e } }" + }, + { + "category_id": 13, + "poly": [ + 397, + 1775, + 587, + 1775, + 587, + 1806, + 397, + 1806 + ], + "score": 0.9, + "latex": "X _ { n } ^ { \\mathrm { a d v } } = X _ { n } + r _ { n }" + }, + { + "category_id": 13, + "poly": [ + 606, + 1652, + 647, + 1652, + 647, + 1682, + 606, + 1682 + ], + "score": 0.9, + "latex": "X _ { n }" + }, + { + "category_id": 13, + "poly": [ + 299, + 1713, + 463, + 1713, + 463, + 1745, + 299, + 1745 + ], + "score": 0.9, + "latex": "L ( X _ { n } , y _ { n } ^ { \\mathrm { t r u e } } ; \\theta )" + }, + { + "category_id": 13, + "poly": [ + 792, + 1743, + 833, + 1743, + 833, + 1773, + 792, + 1773 + ], + "score": 0.89, + "latex": "X _ { n }" + }, + { + "category_id": 13, + "poly": [ + 1139, + 1775, + 1179, + 1775, + 1179, + 1804, + 1139, + 1804 + ], + "score": 0.89, + "latex": "X _ { n }" + }, + { + "category_id": 13, + "poly": [ + 390, + 1743, + 615, + 1743, + 615, + 1775, + 390, + 1775 + ], + "score": 0.88, + "latex": "L ( X _ { n } + r _ { n } , y _ { n } ^ { \\mathrm { t r u e } } ; \\theta )" + }, + { + "category_id": 13, + "poly": [ + 1187, + 1652, + 1216, + 1652, + 1216, + 1680, + 1187, + 1680 + ], + "score": 0.8, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 782, + 1656, + 802, + 1656, + 802, + 1680, + 782, + 1680 + ], + "score": 0.79, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 949, + 1683, + 967, + 1683, + 967, + 1709, + 949, + 1709 + ], + "score": 0.78, + "latex": "\\theta" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 340.0, + 593.0, + 340.0, + 593.0, + 384.0, + 292.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 948.0, + 949.0, + 948.0, + 949.0, + 984.0, + 295.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1482.0, + 514.0, + 1482.0, + 514.0, + 1530.0, + 292.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 817.0, + 72.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 416.0, + 847.0, + 416.0, + 847.0, + 451.0, + 295.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1559.0, + 1069.0, + 1559.0, + 1069.0, + 1597.0, + 294.0, + 1597.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": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 475.0, + 1406.0, + 475.0, + 1406.0, + 512.0, + 295.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 506.0, + 1406.0, + 506.0, + 1406.0, + 544.0, + 293.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 538.0, + 1406.0, + 538.0, + 1406.0, + 574.0, + 294.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 568.0, + 1407.0, + 568.0, + 1407.0, + 604.0, + 292.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 599.0, + 1405.0, + 599.0, + 1405.0, + 635.0, + 294.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 631.0, + 1405.0, + 631.0, + 1405.0, + 663.0, + 296.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 659.0, + 1404.0, + 659.0, + 1404.0, + 694.0, + 294.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 691.0, + 1404.0, + 691.0, + 1404.0, + 726.0, + 294.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 720.0, + 1406.0, + 720.0, + 1406.0, + 756.0, + 292.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 749.0, + 1404.0, + 749.0, + 1404.0, + 788.0, + 293.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 782.0, + 1406.0, + 782.0, + 1406.0, + 817.0, + 294.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 812.0, + 1405.0, + 812.0, + 1405.0, + 848.0, + 294.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 841.0, + 1407.0, + 841.0, + 1407.0, + 878.0, + 292.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 875.0, + 758.0, + 875.0, + 758.0, + 907.0, + 296.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1006.0, + 1404.0, + 1006.0, + 1404.0, + 1044.0, + 294.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1040.0, + 1405.0, + 1040.0, + 1405.0, + 1074.0, + 293.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1068.0, + 1405.0, + 1068.0, + 1405.0, + 1106.0, + 292.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1101.0, + 1404.0, + 1101.0, + 1404.0, + 1136.0, + 294.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1132.0, + 1405.0, + 1132.0, + 1405.0, + 1164.0, + 296.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1160.0, + 1406.0, + 1160.0, + 1406.0, + 1195.0, + 294.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1189.0, + 1405.0, + 1189.0, + 1405.0, + 1227.0, + 293.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1221.0, + 1405.0, + 1221.0, + 1405.0, + 1256.0, + 294.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1254.0, + 1404.0, + 1254.0, + 1404.0, + 1285.0, + 294.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1280.0, + 1404.0, + 1280.0, + 1404.0, + 1319.0, + 293.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1313.0, + 1405.0, + 1313.0, + 1405.0, + 1348.0, + 293.0, + 1348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1342.0, + 1404.0, + 1342.0, + 1404.0, + 1379.0, + 293.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1375.0, + 1404.0, + 1375.0, + 1404.0, + 1410.0, + 294.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1401.0, + 633.0, + 1401.0, + 633.0, + 1441.0, + 293.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1616.0, + 1405.0, + 1616.0, + 1405.0, + 1658.0, + 292.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1651.0, + 605.0, + 1651.0, + 605.0, + 1686.0, + 294.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 1651.0, + 781.0, + 1651.0, + 781.0, + 1686.0, + 648.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 1651.0, + 1186.0, + 1651.0, + 1186.0, + 1686.0, + 803.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1217.0, + 1651.0, + 1406.0, + 1651.0, + 1406.0, + 1686.0, + 1217.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 1671.0, + 297.0, + 1671.0, + 297.0, + 1729.0, + 285.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1671.0, + 948.0, + 1671.0, + 948.0, + 1729.0, + 347.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 1671.0, + 1413.0, + 1671.0, + 1413.0, + 1729.0, + 968.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1708.0, + 298.0, + 1708.0, + 298.0, + 1750.0, + 293.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 1708.0, + 1405.0, + 1708.0, + 1405.0, + 1750.0, + 464.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1733.0, + 389.0, + 1733.0, + 389.0, + 1788.0, + 288.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.0, + 1733.0, + 791.0, + 1733.0, + 791.0, + 1788.0, + 616.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 834.0, + 1733.0, + 1410.0, + 1733.0, + 1410.0, + 1788.0, + 834.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1764.0, + 396.0, + 1764.0, + 396.0, + 1814.0, + 289.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 1764.0, + 1138.0, + 1764.0, + 1138.0, + 1814.0, + 588.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1180.0, + 1764.0, + 1238.0, + 1764.0, + 1238.0, + 1814.0, + 1180.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1349.0, + 1764.0, + 1409.0, + 1764.0, + 1409.0, + 1814.0, + 1349.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1794.0, + 673.0, + 1794.0, + 673.0, + 1848.0, + 289.0, + 1848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 1794.0, + 819.0, + 1794.0, + 819.0, + 1848.0, + 804.0, + 1848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1850.0, + 1404.0, + 1850.0, + 1404.0, + 1884.0, + 294.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1877.0, + 1405.0, + 1877.0, + 1405.0, + 1916.0, + 293.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1910.0, + 1381.0, + 1910.0, + 1381.0, + 1946.0, + 293.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 229.0, + 1403.0, + 229.0, + 1403.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 262.0, + 1281.0, + 262.0, + 1281.0, + 294.0, + 296.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 1968.0, + 1403.0, + 1968.0, + 1403.0, + 2009.0, + 368.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 2000.0, + 1403.0, + 2000.0, + 1403.0, + 2037.0, + 393.0, + 2037.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1303, + 1404, + 1303, + 1404, + 1520, + 297, + 1520 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1065, + 1404, + 1065, + 1404, + 1219, + 298, + 1219 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1880, + 1403, + 1880, + 1403, + 2034, + 299, + 2034 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1533, + 1403, + 1533, + 1403, + 1690, + 299, + 1690 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1703, + 1403, + 1703, + 1403, + 1796, + 298, + 1796 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 401, + 881, + 1402, + 881, + 1402, + 973, + 401, + 973 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 373, + 408, + 1403, + 408, + 1403, + 533, + 373, + 533 + ], + "score": 0.956 + }, + { + "category_id": 8, + "poly": [ + 723, + 631, + 1073, + 631, + 1073, + 689, + 723, + 689 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 590, + 840, + 1208, + 840, + 1208, + 878, + 590, + 878 + ], + "score": 0.94 + }, + { + "category_id": 8, + "poly": [ + 651, + 268, + 1148, + 268, + 1148, + 306, + 651, + 306 + ], + "score": 0.938 + }, + { + "category_id": 1, + "poly": [ + 399, + 693, + 1044, + 693, + 1044, + 725, + 399, + 725 + ], + "score": 0.926 + }, + { + "category_id": 1, + "poly": [ + 399, + 804, + 742, + 804, + 742, + 836, + 399, + 836 + ], + "score": 0.924 + }, + { + "category_id": 1, + "poly": [ + 395, + 229, + 1060, + 229, + 1060, + 261, + 395, + 261 + ], + "score": 0.921 + }, + { + "category_id": 1, + "poly": [ + 368, + 539, + 1400, + 539, + 1400, + 630, + 368, + 630 + ], + "score": 0.92 + }, + { + "category_id": 0, + "poly": [ + 298, + 1009, + 948, + 1009, + 948, + 1041, + 298, + 1041 + ], + "score": 0.914 + }, + { + "category_id": 0, + "poly": [ + 301, + 1250, + 701, + 1250, + 701, + 1282, + 301, + 1282 + ], + "score": 0.908 + }, + { + "category_id": 1, + "poly": [ + 394, + 310, + 1401, + 310, + 1401, + 402, + 394, + 402 + ], + "score": 0.906 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 815, + 75, + 815, + 105, + 300, + 105 + ], + "score": 0.901 + }, + { + "category_id": 0, + "poly": [ + 299, + 1827, + 1035, + 1827, + 1035, + 1859, + 299, + 1859 + ], + "score": 0.897 + }, + { + "category_id": 9, + "poly": [ + 1366, + 273, + 1399, + 273, + 1399, + 302, + 1366, + 302 + ], + "score": 0.891 + }, + { + "category_id": 9, + "poly": [ + 1366, + 646, + 1400, + 646, + 1400, + 675, + 1366, + 675 + ], + "score": 0.875 + }, + { + "category_id": 9, + "poly": [ + 1366, + 844, + 1400, + 844, + 1400, + 873, + 1366, + 873 + ], + "score": 0.871 + }, + { + "category_id": 9, + "poly": [ + 1366, + 748, + 1400, + 748, + 1400, + 777, + 1366, + 777 + ], + "score": 0.861 + }, + { + "category_id": 8, + "poly": [ + 558, + 732, + 1234, + 732, + 1234, + 793, + 558, + 793 + ], + "score": 0.766 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2111, + 841, + 2111 + ], + "score": 0.762 + }, + { + "category_id": 14, + "poly": [ + 723, + 626, + 1076, + 626, + 1076, + 691, + 723, + 691 + ], + "score": 0.95, + "latex": "r _ { n } = { \\frac { 1 } { 2 } } ( t a n h ( \\omega _ { n } + 1 ) ) - X _ { n } ." + }, + { + "category_id": 13, + "poly": [ + 397, + 340, + 565, + 340, + 565, + 374, + 397, + 374 + ], + "score": 0.93, + "latex": "\\epsilon = \\{ 2 , 5 , 1 0 \\}" + }, + { + "category_id": 13, + "poly": [ + 1298, + 1458, + 1339, + 1458, + 1339, + 1490, + 1298, + 1490 + ], + "score": 0.93, + "latex": "X _ { n } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 978, + 1335, + 1139, + 1335, + 1139, + 1365, + 978, + 1365 + ], + "score": 0.93, + "latex": "W ^ { \\prime } \\times H ^ { \\prime } \\times 3" + }, + { + "category_id": 14, + "poly": [ + 560, + 729, + 1236, + 729, + 1236, + 794, + 560, + 794 + ], + "score": 0.93, + "latex": "\\operatorname* { m i n } _ { \\omega _ { n } } | | \\frac { 1 } { 2 } ( t a n h ( \\omega _ { n } ) + 1 ) - X _ { n } | | + c \\cdot f ( \\frac { 1 } { 2 } ( t a n h ( \\omega _ { n } ) + 1 ) ) ." + }, + { + "category_id": 14, + "poly": [ + 649, + 269, + 1146, + 269, + 1146, + 306, + 649, + 306 + ], + "score": 0.93, + "latex": "X _ { n } ^ { \\mathrm { a d v } } = X _ { n } + \\epsilon \\cdot s i g n \\big ( \\nabla _ { X _ { n } } L ( X _ { n } , y _ { n } ^ { \\mathrm { t r u e } } ; \\theta ) \\big ) ," + }, + { + "category_id": 13, + "poly": [ + 472, + 880, + 542, + 880, + 542, + 914, + 472, + 914 + ], + "score": 0.92, + "latex": "Z ( x ) _ { i }" + }, + { + "category_id": 13, + "poly": [ + 346, + 1366, + 457, + 1366, + 457, + 1399, + 346, + 1399 + ], + "score": 0.92, + "latex": "| H ^ { \\prime } - H |" + }, + { + "category_id": 13, + "poly": [ + 447, + 1595, + 619, + 1595, + 619, + 1625, + 447, + 1625 + ], + "score": 0.92, + "latex": "W ^ { \\prime \\prime } \\times H ^ { \\prime \\prime } \\times 3" + }, + { + "category_id": 13, + "poly": [ + 876, + 1427, + 1047, + 1427, + 1047, + 1456, + 876, + 1456 + ], + "score": 0.92, + "latex": "2 9 9 \\times 2 9 9 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 523, + 1656, + 920, + 1656, + 920, + 1690, + 523, + 1690 + ], + "score": 0.92, + "latex": "\\left( W ^ { \\prime \\prime } - W ^ { \\prime } + 1 \\right) \\times \\left( H ^ { \\prime \\prime } - H ^ { \\prime } + 1 \\right)" + }, + { + "category_id": 13, + "poly": [ + 726, + 1336, + 767, + 1336, + 767, + 1369, + 726, + 1369 + ], + "score": 0.92, + "latex": "X _ { n } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1279, + 1336, + 1400, + 1336, + 1400, + 1369, + 1279, + 1369 + ], + "score": 0.91, + "latex": "| W ^ { \\prime } - W |" + }, + { + "category_id": 13, + "poly": [ + 547, + 804, + 595, + 804, + 595, + 838, + 547, + 838 + ], + "score": 0.91, + "latex": "f ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 1169, + 1595, + 1345, + 1595, + 1345, + 1625, + 1169, + 1625 + ], + "score": 0.91, + "latex": "W ^ { \\prime \\prime } - W ^ { \\prime } - w" + }, + { + "category_id": 13, + "poly": [ + 821, + 1626, + 973, + 1626, + 973, + 1654, + 821, + 1654 + ], + "score": 0.91, + "latex": "H ^ { \\prime \\prime } - H ^ { \\prime } - h" + }, + { + "category_id": 13, + "poly": [ + 393, + 1336, + 539, + 1336, + 539, + 1364, + 393, + 1364 + ], + "score": 0.91, + "latex": "W \\times H \\times 3" + }, + { + "category_id": 13, + "poly": [ + 1107, + 1565, + 1148, + 1565, + 1148, + 1597, + 1107, + 1597 + ], + "score": 0.9, + "latex": "X _ { n } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1358, + 1564, + 1400, + 1564, + 1400, + 1598, + 1358, + 1598 + ], + "score": 0.89, + "latex": "X _ { n } ^ { \\prime \\prime }" + }, + { + "category_id": 13, + "poly": [ + 687, + 232, + 721, + 232, + 721, + 261, + 687, + 261 + ], + "score": 0.89, + "latex": "l _ { \\infty }" + }, + { + "category_id": 13, + "poly": [ + 806, + 472, + 830, + 472, + 830, + 505, + 806, + 505 + ], + "score": 0.88, + "latex": "l _ { p }" + }, + { + "category_id": 13, + "poly": [ + 1303, + 1306, + 1343, + 1306, + 1343, + 1335, + 1303, + 1335 + ], + "score": 0.87, + "latex": "X _ { n }" + }, + { + "category_id": 13, + "poly": [ + 1131, + 913, + 1155, + 913, + 1155, + 945, + 1131, + 945 + ], + "score": 0.87, + "latex": "l _ { p }" + }, + { + "category_id": 13, + "poly": [ + 492, + 605, + 527, + 605, + 527, + 632, + 492, + 632 + ], + "score": 0.86, + "latex": "\\omega _ { n }" + }, + { + "category_id": 14, + "poly": [ + 591, + 840, + 1205, + 840, + 1205, + 877, + 591, + 877 + ], + "score": 0.86, + "latex": "f ( x ) = \\operatorname* { m a x } ( Z ( x ) _ { y ^ { \\mathrm { t u e } } } - \\operatorname* { m a x } \\{ Z ( x ) _ { i } : i \\neq y ^ { \\mathrm { t r u e } } \\} , - k ) ," + }, + { + "category_id": 13, + "poly": [ + 1119, + 575, + 1150, + 575, + 1150, + 601, + 1119, + 601 + ], + "score": 0.86, + "latex": "r _ { n }" + }, + { + "category_id": 13, + "poly": [ + 397, + 943, + 420, + 943, + 420, + 972, + 397, + 972 + ], + "score": 0.86, + "latex": "l _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 396, + 502, + 420, + 502, + 420, + 533, + 396, + 533 + ], + "score": 0.85, + "latex": "l _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1007, + 699, + 1041, + 699, + 1041, + 724, + 1007, + 724 + ], + "score": 0.85, + "latex": "\\omega _ { n }" + }, + { + "category_id": 13, + "poly": [ + 931, + 882, + 950, + 882, + 950, + 908, + 931, + 908 + ], + "score": 0.83, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 509, + 1628, + 529, + 1628, + 529, + 1653, + 509, + 1653 + ], + "score": 0.76, + "latex": "h" + }, + { + "category_id": 13, + "poly": [ + 860, + 884, + 872, + 884, + 872, + 909, + 860, + 909 + ], + "score": 0.75, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 472, + 316, + 488, + 316, + 488, + 337, + 472, + 337 + ], + "score": 0.74, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 881, + 1601, + 904, + 1601, + 904, + 1623, + 881, + 1623 + ], + "score": 0.67, + "latex": "w" + }, + { + "category_id": 13, + "poly": [ + 702, + 1832, + 726, + 1832, + 726, + 1855, + 702, + 1855 + ], + "score": 0.53, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 483, + 541, + 508, + 541, + 508, + 569, + 483, + 569 + ], + "score": 0.25, + "latex": "\\&" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1007.0, + 949.0, + 1007.0, + 949.0, + 1044.0, + 295.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1250.0, + 704.0, + 1250.0, + 704.0, + 1286.0, + 295.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1825.0, + 701.0, + 1825.0, + 701.0, + 1862.0, + 295.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 1825.0, + 1037.0, + 1825.0, + 1037.0, + 1862.0, + 727.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2086.0, + 862.0, + 2086.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1303.0, + 1302.0, + 1303.0, + 1302.0, + 1341.0, + 294.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1344.0, + 1303.0, + 1405.0, + 1303.0, + 1405.0, + 1341.0, + 1344.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1333.0, + 392.0, + 1333.0, + 392.0, + 1372.0, + 294.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 1333.0, + 725.0, + 1333.0, + 725.0, + 1372.0, + 540.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 1333.0, + 977.0, + 1333.0, + 977.0, + 1372.0, + 768.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 1333.0, + 1278.0, + 1333.0, + 1278.0, + 1372.0, + 1140.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1333.0, + 1405.0, + 1333.0, + 1405.0, + 1372.0, + 1401.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1363.0, + 345.0, + 1363.0, + 345.0, + 1400.0, + 294.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 458.0, + 1363.0, + 1405.0, + 1363.0, + 1405.0, + 1400.0, + 458.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1397.0, + 1405.0, + 1397.0, + 1405.0, + 1431.0, + 294.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1423.0, + 875.0, + 1423.0, + 875.0, + 1462.0, + 292.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 1423.0, + 1406.0, + 1423.0, + 1406.0, + 1462.0, + 1048.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1456.0, + 1297.0, + 1456.0, + 1297.0, + 1494.0, + 292.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1340.0, + 1456.0, + 1405.0, + 1456.0, + 1405.0, + 1494.0, + 1340.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1487.0, + 613.0, + 1487.0, + 613.0, + 1523.0, + 296.0, + 1523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1065.0, + 1400.0, + 1065.0, + 1400.0, + 1098.0, + 297.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1096.0, + 1401.0, + 1096.0, + 1401.0, + 1129.0, + 294.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1126.0, + 1405.0, + 1126.0, + 1405.0, + 1163.0, + 293.0, + 1163.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": [ + 294.0, + 1190.0, + 1360.0, + 1190.0, + 1360.0, + 1223.0, + 294.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1882.0, + 1404.0, + 1882.0, + 1404.0, + 1915.0, + 295.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1912.0, + 1405.0, + 1912.0, + 1405.0, + 1942.0, + 294.0, + 1942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1942.0, + 1404.0, + 1942.0, + 1404.0, + 1976.0, + 293.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1970.0, + 1407.0, + 1970.0, + 1407.0, + 2010.0, + 292.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2003.0, + 879.0, + 2003.0, + 879.0, + 2036.0, + 295.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1534.0, + 1404.0, + 1534.0, + 1404.0, + 1567.0, + 295.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1555.0, + 1106.0, + 1555.0, + 1106.0, + 1610.0, + 290.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 1555.0, + 1357.0, + 1555.0, + 1357.0, + 1610.0, + 1149.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1555.0, + 1408.0, + 1555.0, + 1408.0, + 1610.0, + 1401.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1591.0, + 446.0, + 1591.0, + 446.0, + 1632.0, + 293.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 1591.0, + 880.0, + 1591.0, + 880.0, + 1632.0, + 620.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 905.0, + 1591.0, + 1168.0, + 1591.0, + 1168.0, + 1632.0, + 905.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1346.0, + 1591.0, + 1408.0, + 1591.0, + 1408.0, + 1632.0, + 1346.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1624.0, + 508.0, + 1624.0, + 508.0, + 1660.0, + 294.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 1624.0, + 820.0, + 1624.0, + 820.0, + 1660.0, + 530.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 1624.0, + 1405.0, + 1624.0, + 1405.0, + 1660.0, + 974.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1653.0, + 522.0, + 1653.0, + 522.0, + 1693.0, + 293.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 1653.0, + 1320.0, + 1653.0, + 1320.0, + 1693.0, + 921.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1701.0, + 1405.0, + 1701.0, + 1405.0, + 1739.0, + 294.0, + 1739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1734.0, + 1404.0, + 1734.0, + 1404.0, + 1768.0, + 294.0, + 1768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1762.0, + 407.0, + 1762.0, + 407.0, + 1801.0, + 291.0, + 1801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 878.0, + 471.0, + 878.0, + 471.0, + 916.0, + 395.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 878.0, + 859.0, + 878.0, + 859.0, + 916.0, + 543.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 878.0, + 930.0, + 878.0, + 930.0, + 916.0, + 873.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 951.0, + 878.0, + 1405.0, + 878.0, + 1405.0, + 916.0, + 951.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 910.0, + 1130.0, + 910.0, + 1130.0, + 946.0, + 395.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 910.0, + 1405.0, + 910.0, + 1405.0, + 946.0, + 1156.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 421.0, + 943.0, + 709.0, + 943.0, + 709.0, + 976.0, + 421.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 407.0, + 1405.0, + 407.0, + 1405.0, + 444.0, + 370.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 439.0, + 1406.0, + 439.0, + 1406.0, + 474.0, + 394.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 468.0, + 805.0, + 468.0, + 805.0, + 507.0, + 392.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 468.0, + 1406.0, + 468.0, + 1406.0, + 507.0, + 831.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 421.0, + 499.0, + 788.0, + 499.0, + 788.0, + 539.0, + 421.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 686.0, + 1006.0, + 686.0, + 1006.0, + 734.0, + 393.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 686.0, + 1048.0, + 686.0, + 1048.0, + 734.0, + 1042.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 799.0, + 546.0, + 799.0, + 546.0, + 841.0, + 395.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 596.0, + 799.0, + 744.0, + 799.0, + 744.0, + 841.0, + 596.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 225.0, + 686.0, + 225.0, + 686.0, + 269.0, + 392.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 225.0, + 1062.0, + 225.0, + 1062.0, + 269.0, + 722.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 537.0, + 482.0, + 537.0, + 482.0, + 577.0, + 366.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 509.0, + 537.0, + 1405.0, + 537.0, + 1405.0, + 577.0, + 509.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 568.0, + 1118.0, + 568.0, + 1118.0, + 608.0, + 394.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 568.0, + 1403.0, + 568.0, + 1403.0, + 608.0, + 1151.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 599.0, + 491.0, + 599.0, + 491.0, + 637.0, + 394.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 528.0, + 599.0, + 564.0, + 599.0, + 564.0, + 637.0, + 528.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 308.0, + 471.0, + 308.0, + 471.0, + 345.0, + 396.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 489.0, + 308.0, + 1404.0, + 308.0, + 1404.0, + 345.0, + 489.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 339.0, + 1405.0, + 339.0, + 1405.0, + 376.0, + 566.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 370.0, + 701.0, + 370.0, + 701.0, + 406.0, + 392.0, + 406.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1364, + 1405, + 1364, + 1405, + 1651, + 296, + 1651 + ], + "score": 0.978 + }, + { + "category_id": 3, + "poly": [ + 312, + 235, + 1407, + 235, + 1407, + 745, + 312, + 745 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 298, + 1664, + 1405, + 1664, + 1405, + 1849, + 298, + 1849 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 298, + 1089, + 1404, + 1089, + 1404, + 1181, + 298, + 1181 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 297, + 1195, + 1404, + 1195, + 1404, + 1350, + 297, + 1350 + ], + "score": 0.967 + }, + { + "category_id": 2, + "poly": [ + 328, + 1974, + 1210, + 1974, + 1210, + 2034, + 328, + 2034 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 354, + 1877, + 1402, + 1877, + 1402, + 1940, + 354, + 1940 + ], + "score": 0.932 + }, + { + "category_id": 4, + "poly": [ + 296, + 802, + 1406, + 802, + 1406, + 925, + 296, + 925 + ], + "score": 0.903 + }, + { + "category_id": 0, + "poly": [ + 300, + 1028, + 608, + 1028, + 608, + 1060, + 300, + 1060 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 814, + 76, + 814, + 104, + 300, + 104 + ], + "score": 0.885 + }, + { + "category_id": 0, + "poly": [ + 301, + 956, + 558, + 956, + 558, + 990, + 301, + 990 + ], + "score": 0.786 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.757 + }, + { + "category_id": 1, + "poly": [ + 301, + 956, + 558, + 956, + 558, + 990, + 301, + 990 + ], + "score": 0.105 + }, + { + "category_id": 13, + "poly": [ + 502, + 1427, + 681, + 1427, + 681, + 1456, + 502, + 1456 + ], + "score": 0.93, + "latex": "2 9 9 \\times 2 9 9 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 720, + 1427, + 903, + 1427, + 903, + 1456, + 720, + 1456 + ], + "score": 0.92, + "latex": "r n d \\times r n d \\times 3" + }, + { + "category_id": 13, + "poly": [ + 1229, + 1151, + 1393, + 1151, + 1393, + 1180, + 1229, + 1180 + ], + "score": 0.91, + "latex": "2 9 9 \\times 2 9 9 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 1232, + 864, + 1275, + 864, + 1275, + 898, + 1232, + 898 + ], + "score": 0.91, + "latex": "X _ { n } ^ { \\prime \\prime }" + }, + { + "category_id": 13, + "poly": [ + 623, + 865, + 664, + 865, + 664, + 898, + 623, + 898 + ], + "score": 0.9, + "latex": "X _ { n } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1488, + 472, + 1488, + 472, + 1517, + 297, + 1517 + ], + "score": 0.9, + "latex": "3 3 1 \\times 3 3 1 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 1308, + 804, + 1349, + 804, + 1349, + 834, + 1308, + 834 + ], + "score": 0.89, + "latex": "X _ { n }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1533, + 706, + 1533, + 706, + 1590, + 297, + 1590 + ], + "score": 0.75, + "latex": "\\sum _ { r n d = 2 9 9 } ( 3 3 1 - r n d + 1 ) ^ { 2 } = 1 2 5 2 8" + }, + { + "category_id": 13, + "poly": [ + 1196, + 1199, + 1225, + 1199, + 1225, + 1226, + 1196, + 1226 + ], + "score": 0.56, + "latex": "\\nu 3" + }, + { + "category_id": 13, + "poly": [ + 535, + 1289, + 564, + 1289, + 564, + 1317, + 535, + 1317 + ], + "score": 0.56, + "latex": "\\nu 2" + }, + { + "category_id": 13, + "poly": [ + 1065, + 1229, + 1095, + 1229, + 1095, + 1256, + 1065, + 1256 + ], + "score": 0.54, + "latex": "\\cdot \\nu 2" + }, + { + "category_id": 13, + "poly": [ + 464, + 1229, + 495, + 1229, + 495, + 1256, + 464, + 1256 + ], + "score": 0.45, + "latex": "\\cdot \\nu 2" + }, + { + "category_id": 13, + "poly": [ + 595, + 1259, + 624, + 1259, + 624, + 1286, + 595, + 1286 + ], + "score": 0.42, + "latex": "\\nu 2" + }, + { + "category_id": 13, + "poly": [ + 355, + 267, + 404, + 267, + 404, + 304, + 355, + 304 + ], + "score": 0.32, + "latex": "X _ { n }" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 231.0, + 664.0, + 231.0, + 664.0, + 275.0, + 310.0, + 275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 233.0, + 943.0, + 233.0, + 943.0, + 274.0, + 762.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 256.0, + 354.0, + 256.0, + 354.0, + 316.0, + 350.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 256.0, + 418.0, + 256.0, + 418.0, + 316.0, + 405.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 260.0, + 588.0, + 260.0, + 588.0, + 308.0, + 535.0, + 308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 820.0, + 254.0, + 884.0, + 254.0, + 884.0, + 315.0, + 820.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1299.0, + 482.0, + 1347.0, + 482.0, + 1347.0, + 512.0, + 1299.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.0, + 554.0, + 1274.0, + 554.0, + 1274.0, + 584.0, + 1214.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1181.0, + 579.0, + 1308.0, + 579.0, + 1308.0, + 611.0, + 1181.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 431.0, + 657.0, + 521.0, + 657.0, + 521.0, + 694.0, + 431.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 662.0, + 713.0, + 662.0, + 713.0, + 691.0, + 623.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 656.0, + 1090.0, + 656.0, + 1090.0, + 695.0, + 984.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 681.0, + 522.0, + 681.0, + 522.0, + 722.0, + 432.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 683.0, + 713.0, + 683.0, + 713.0, + 721.0, + 623.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 684.0, + 1091.0, + 684.0, + 1091.0, + 720.0, + 985.0, + 720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 440.0, + 709.0, + 511.0, + 709.0, + 511.0, + 747.0, + 440.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 708.0, + 703.0, + 708.0, + 703.0, + 746.0, + 632.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 995.0, + 708.0, + 1079.0, + 708.0, + 1079.0, + 745.0, + 995.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1972.0, + 978.0, + 1972.0, + 978.0, + 2006.0, + 332.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 2001.0, + 1211.0, + 2001.0, + 1211.0, + 2038.0, + 329.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 802.0, + 1307.0, + 802.0, + 1307.0, + 838.0, + 294.0, + 838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1350.0, + 802.0, + 1407.0, + 802.0, + 1407.0, + 838.0, + 1350.0, + 838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 831.0, + 1407.0, + 831.0, + 1407.0, + 872.0, + 291.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 861.0, + 622.0, + 861.0, + 622.0, + 901.0, + 293.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 665.0, + 861.0, + 1231.0, + 861.0, + 1231.0, + 901.0, + 665.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1276.0, + 861.0, + 1407.0, + 861.0, + 1407.0, + 901.0, + 1276.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 892.0, + 455.0, + 892.0, + 455.0, + 929.0, + 294.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1029.0, + 611.0, + 1029.0, + 611.0, + 1062.0, + 295.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 953.0, + 562.0, + 953.0, + 562.0, + 997.0, + 293.0, + 997.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, + 1365.0, + 1405.0, + 1365.0, + 1405.0, + 1399.0, + 294.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1399.0, + 1403.0, + 1399.0, + 1403.0, + 1429.0, + 295.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1426.0, + 501.0, + 1426.0, + 501.0, + 1460.0, + 295.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 1426.0, + 719.0, + 1426.0, + 719.0, + 1460.0, + 682.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 1426.0, + 1405.0, + 1426.0, + 1405.0, + 1460.0, + 904.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1458.0, + 1406.0, + 1458.0, + 1406.0, + 1492.0, + 294.0, + 1492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1486.0, + 296.0, + 1486.0, + 296.0, + 1523.0, + 293.0, + 1523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 1486.0, + 1405.0, + 1486.0, + 1405.0, + 1523.0, + 473.0, + 1523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1515.0, + 367.0, + 1515.0, + 367.0, + 1545.0, + 320.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 707.0, + 1535.0, + 1403.0, + 1535.0, + 1403.0, + 1573.0, + 707.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1568.0, + 296.0, + 1568.0, + 296.0, + 1593.0, + 292.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1589.0, + 1405.0, + 1589.0, + 1405.0, + 1620.0, + 293.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1616.0, + 890.0, + 1616.0, + 890.0, + 1655.0, + 294.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1665.0, + 1403.0, + 1665.0, + 1403.0, + 1697.0, + 297.0, + 1697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1697.0, + 1402.0, + 1697.0, + 1402.0, + 1729.0, + 295.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1725.0, + 1405.0, + 1725.0, + 1405.0, + 1760.0, + 293.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1756.0, + 1405.0, + 1756.0, + 1405.0, + 1792.0, + 293.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1788.0, + 1403.0, + 1788.0, + 1403.0, + 1820.0, + 296.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1816.0, + 588.0, + 1816.0, + 588.0, + 1851.0, + 295.0, + 1851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1086.0, + 1405.0, + 1086.0, + 1405.0, + 1125.0, + 292.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1117.0, + 1404.0, + 1117.0, + 1404.0, + 1155.0, + 292.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1151.0, + 1228.0, + 1151.0, + 1228.0, + 1184.0, + 294.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1151.0, + 1405.0, + 1151.0, + 1405.0, + 1184.0, + 1394.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1191.0, + 1195.0, + 1191.0, + 1195.0, + 1237.0, + 292.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 1191.0, + 1406.0, + 1191.0, + 1406.0, + 1237.0, + 1226.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1226.0, + 463.0, + 1226.0, + 463.0, + 1263.0, + 295.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 1226.0, + 1064.0, + 1226.0, + 1064.0, + 1263.0, + 496.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 1226.0, + 1405.0, + 1226.0, + 1405.0, + 1263.0, + 1096.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1257.0, + 594.0, + 1257.0, + 594.0, + 1294.0, + 294.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 1257.0, + 1404.0, + 1257.0, + 1404.0, + 1294.0, + 625.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1287.0, + 534.0, + 1287.0, + 534.0, + 1324.0, + 294.0, + 1324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 1287.0, + 1404.0, + 1287.0, + 1404.0, + 1324.0, + 565.0, + 1324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1319.0, + 1074.0, + 1319.0, + 1074.0, + 1353.0, + 293.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 1875.0, + 1403.0, + 1875.0, + 1403.0, + 1911.0, + 370.0, + 1911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1907.0, + 902.0, + 1907.0, + 902.0, + 1942.0, + 394.0, + 1942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 953.0, + 562.0, + 953.0, + 562.0, + 997.0, + 293.0, + 997.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1445, + 1404, + 1445, + 1404, + 1781, + 298, + 1781 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 787, + 1403, + 787, + 1403, + 1033, + 298, + 1033 + ], + "score": 0.982 + }, + { + "category_id": 5, + "poly": [ + 303, + 312, + 1398, + 312, + 1398, + 473, + 303, + 473 + ], + "score": 0.98, + "html": "
ModelsInception-v3ResNet-v2-101Inception-ResNet-v2ens-adv-Inception-ResNet-v2
w/o randomization layers100%100%100%100%
wrandomization layers97.3%98.3%99.3%99.2%
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1132, + 1403, + 1132, + 1403, + 1347, + 298, + 1347 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1881, + 1402, + 1881, + 1402, + 2034, + 299, + 2034 + ], + "score": 0.976 + }, + { + "category_id": 6, + "poly": [ + 297, + 249, + 1401, + 249, + 1401, + 310, + 297, + 310 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 371, + 636, + 1403, + 636, + 1403, + 760, + 371, + 760 + ], + "score": 0.919 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.893 + }, + { + "category_id": 1, + "poly": [ + 371, + 531, + 1403, + 531, + 1403, + 626, + 371, + 626 + ], + "score": 0.893 + }, + { + "category_id": 0, + "poly": [ + 301, + 1386, + 710, + 1386, + 710, + 1418, + 301, + 1418 + ], + "score": 0.892 + }, + { + "category_id": 0, + "poly": [ + 299, + 1074, + 552, + 1074, + 552, + 1105, + 299, + 1105 + ], + "score": 0.891 + }, + { + "category_id": 0, + "poly": [ + 301, + 1821, + 809, + 1821, + 809, + 1853, + 301, + 1853 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2112, + 840, + 2112 + ], + "score": 0.768 + }, + { + "category_id": 13, + "poly": [ + 329, + 1943, + 455, + 1943, + 455, + 1973, + 329, + 1973 + ], + "score": 0.88, + "latex": "3 3 1 \\times 3 3 1" + }, + { + "category_id": 13, + "poly": [ + 1129, + 1223, + 1192, + 1223, + 1192, + 1254, + 1129, + 1254 + ], + "score": 0.87, + "latex": "0 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 488, + 1254, + 551, + 1254, + 551, + 1285, + 488, + 1285 + ], + "score": 0.87, + "latex": "2 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 1277, + 1911, + 1402, + 1911, + 1402, + 1941, + 1277, + 1941 + ], + "score": 0.87, + "latex": "2 9 9 \\times 2 9 9" + }, + { + "category_id": 13, + "poly": [ + 1264, + 435, + 1340, + 435, + 1340, + 464, + 1264, + 464 + ], + "score": 0.83, + "latex": "9 9 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1269, + 403, + 1336, + 403, + 1336, + 431, + 1269, + 431 + ], + "score": 0.83, + "latex": "100 \\%" + }, + { + "category_id": 13, + "poly": [ + 858, + 1660, + 933, + 1660, + 933, + 1690, + 858, + 1690 + ], + "score": 0.82, + "latex": "9 4 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 1087, + 404, + 1153, + 404, + 1153, + 431, + 1087, + 431 + ], + "score": 0.79, + "latex": "100 \\%" + }, + { + "category_id": 13, + "poly": [ + 1081, + 436, + 1157, + 436, + 1157, + 465, + 1081, + 465 + ], + "score": 0.79, + "latex": "9 9 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 899, + 702, + 923, + 702, + 923, + 727, + 899, + 727 + ], + "score": 0.78, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 715, + 436, + 790, + 436, + 790, + 465, + 715, + 465 + ], + "score": 0.77, + "latex": "9 7 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 898, + 436, + 974, + 436, + 974, + 465, + 898, + 465 + ], + "score": 0.77, + "latex": "9 8 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 720, + 404, + 787, + 404, + 787, + 431, + 720, + 431 + ], + "score": 0.74, + "latex": "100 \\%" + }, + { + "category_id": 13, + "poly": [ + 492, + 597, + 516, + 597, + 516, + 621, + 492, + 621 + ], + "score": 0.73, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 904, + 404, + 969, + 404, + 969, + 431, + 904, + 431 + ], + "score": 0.72, + "latex": "100 \\%" + }, + { + "category_id": 13, + "poly": [ + 626, + 1604, + 643, + 1604, + 643, + 1626, + 626, + 1626 + ], + "score": 0.66, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 814, + 1661, + 844, + 1661, + 844, + 1688, + 814, + 1688 + ], + "score": 0.54, + "latex": "\\cdot \\nu 2" + }, + { + "category_id": 13, + "poly": [ + 991, + 1225, + 1021, + 1225, + 1021, + 1252, + 991, + 1252 + ], + "score": 0.54, + "latex": "\\cdot \\nu 2" + }, + { + "category_id": 13, + "poly": [ + 418, + 1665, + 435, + 1665, + 435, + 1688, + 418, + 1688 + ], + "score": 0.51, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1118, + 882, + 1147, + 882, + 1147, + 908, + 1118, + 908 + ], + "score": 0.3, + "latex": "\\nu 3" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 248.0, + 1405.0, + 248.0, + 1405.0, + 283.0, + 296.0, + 283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 279.0, + 1218.0, + 279.0, + 1218.0, + 315.0, + 295.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1386.0, + 712.0, + 1386.0, + 712.0, + 1422.0, + 295.0, + 1422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1069.0, + 557.0, + 1069.0, + 557.0, + 1111.0, + 293.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1819.0, + 812.0, + 1819.0, + 812.0, + 1857.0, + 294.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1443.0, + 1404.0, + 1443.0, + 1404.0, + 1480.0, + 293.0, + 1480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1477.0, + 1404.0, + 1477.0, + 1404.0, + 1511.0, + 294.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1503.0, + 1406.0, + 1503.0, + 1406.0, + 1544.0, + 292.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1536.0, + 1406.0, + 1536.0, + 1406.0, + 1575.0, + 292.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1566.0, + 1404.0, + 1566.0, + 1404.0, + 1603.0, + 293.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1598.0, + 625.0, + 1598.0, + 625.0, + 1633.0, + 293.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 1598.0, + 1404.0, + 1598.0, + 1404.0, + 1633.0, + 644.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1627.0, + 1405.0, + 1627.0, + 1405.0, + 1664.0, + 293.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1660.0, + 417.0, + 1660.0, + 417.0, + 1695.0, + 296.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 436.0, + 1660.0, + 813.0, + 1660.0, + 813.0, + 1695.0, + 436.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1660.0, + 857.0, + 1660.0, + 857.0, + 1695.0, + 845.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 934.0, + 1660.0, + 1405.0, + 1660.0, + 1405.0, + 1695.0, + 934.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1690.0, + 1404.0, + 1690.0, + 1404.0, + 1724.0, + 294.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1718.0, + 1406.0, + 1718.0, + 1406.0, + 1757.0, + 293.0, + 1757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1752.0, + 796.0, + 1752.0, + 796.0, + 1786.0, + 294.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 790.0, + 1402.0, + 790.0, + 1402.0, + 820.0, + 298.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 820.0, + 1403.0, + 820.0, + 1403.0, + 854.0, + 294.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 851.0, + 1405.0, + 851.0, + 1405.0, + 882.0, + 293.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 879.0, + 1117.0, + 879.0, + 1117.0, + 916.0, + 293.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 879.0, + 1405.0, + 879.0, + 1405.0, + 916.0, + 1148.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 908.0, + 1407.0, + 908.0, + 1407.0, + 948.0, + 292.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 940.0, + 1405.0, + 940.0, + 1405.0, + 976.0, + 293.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 972.0, + 1405.0, + 972.0, + 1405.0, + 1006.0, + 296.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1001.0, + 1405.0, + 1001.0, + 1405.0, + 1035.0, + 294.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1130.0, + 1405.0, + 1130.0, + 1405.0, + 1167.0, + 293.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1163.0, + 1405.0, + 1163.0, + 1405.0, + 1198.0, + 294.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1195.0, + 1404.0, + 1195.0, + 1404.0, + 1226.0, + 296.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1224.0, + 990.0, + 1224.0, + 990.0, + 1258.0, + 294.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 1224.0, + 1128.0, + 1224.0, + 1128.0, + 1258.0, + 1022.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 1224.0, + 1405.0, + 1224.0, + 1405.0, + 1258.0, + 1193.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1254.0, + 487.0, + 1254.0, + 487.0, + 1289.0, + 294.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 1254.0, + 1405.0, + 1254.0, + 1405.0, + 1289.0, + 552.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1284.0, + 1404.0, + 1284.0, + 1404.0, + 1322.0, + 293.0, + 1322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1316.0, + 692.0, + 1316.0, + 692.0, + 1350.0, + 296.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1882.0, + 1404.0, + 1882.0, + 1404.0, + 1915.0, + 295.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1911.0, + 1276.0, + 1911.0, + 1276.0, + 1944.0, + 295.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1942.0, + 328.0, + 1942.0, + 328.0, + 1979.0, + 294.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 1942.0, + 1406.0, + 1942.0, + 1406.0, + 1979.0, + 456.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1972.0, + 1406.0, + 1972.0, + 1406.0, + 2009.0, + 295.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2004.0, + 1404.0, + 2004.0, + 1404.0, + 2037.0, + 295.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 635.0, + 1405.0, + 635.0, + 1405.0, + 671.0, + 367.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 668.0, + 1405.0, + 668.0, + 1405.0, + 702.0, + 392.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 699.0, + 898.0, + 699.0, + 898.0, + 733.0, + 392.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 924.0, + 699.0, + 1407.0, + 699.0, + 1407.0, + 733.0, + 924.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 731.0, + 622.0, + 731.0, + 622.0, + 764.0, + 394.0, + 764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 532.0, + 1403.0, + 532.0, + 1403.0, + 566.0, + 371.0, + 566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 564.0, + 1405.0, + 564.0, + 1405.0, + 598.0, + 394.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 591.0, + 491.0, + 591.0, + 491.0, + 631.0, + 394.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 517.0, + 591.0, + 1129.0, + 591.0, + 1129.0, + 631.0, + 517.0, + 631.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 297, + 371, + 1405, + 371, + 1405, + 694, + 297, + 694 + ], + "score": 0.985, + "html": "
ModelsInception-v3ResNet-v2-101Inception-ResNet-v2ens-adv-Inception-ResNet-v2
targetmodeldefensemodeltargetmodeldefensemodeltargetmodeldefensemodeltargetmodeldefensemodel
FGSM-233.2%65.1%26.3%71.8%65.3%81.0%84.4%95.7%
FGSM-531.1%54.5%20.4%54.3%61.7%74.1%87.4%94.5%
FGSM-1033.0%52.4%20.4%46.1%61.2%71.3%90.2%94.3%
DeepFool0%98.3%0%97.7%0%98.2%0.2%99.1%
C&W0%96.9%0%97.1%0.3%97.7%0.9%98.8%
" + }, + { + "category_id": 5, + "poly": [ + 297, + 875, + 1406, + 875, + 1406, + 1197, + 297, + 1197 + ], + "score": 0.984, + "html": "
ModelsInception-v3ResNet-v2-101Inception-ResNet-v2ens-adv-Inception-ResNet-v2
targetmodeldefensemodeltargetmodeldefensemodeltargetmodeldefensemodeltargetmodeldefensemodel
FGSM-235.1%63.8%29.5%70.1%71.6%83.4%86.3%96.4%
FGSM-532.4%53.9%23.2%52.3%68.3%78.2%88.4%95.4%
FGSM-1034.7%51.8%22.4%43.8%66.8%75.6%90.7%95.2%
DeepFool1.1%98.2%1.7%97.8%0.6%98.4%1.0%99.2%
C&W1.1%97.4%1.7%97.0%0.8%97.9%1.6%99.1%
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1637, + 1404, + 1637, + 1404, + 2034, + 297, + 2034 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 1257, + 1404, + 1257, + 1404, + 1534, + 297, + 1534 + ], + "score": 0.982 + }, + { + "category_id": 6, + "poly": [ + 297, + 248, + 1404, + 248, + 1404, + 369, + 297, + 369 + ], + "score": 0.969 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 815, + 75, + 815, + 105, + 300, + 105 + ], + "score": 0.897 + }, + { + "category_id": 0, + "poly": [ + 301, + 1578, + 850, + 1578, + 850, + 1610, + 301, + 1610 + ], + "score": 0.883 + }, + { + "category_id": 6, + "poly": [ + 296, + 751, + 1405, + 751, + 1405, + 872, + 296, + 872 + ], + "score": 0.859 + }, + { + "category_id": 2, + "poly": [ + 842, + 2087, + 858, + 2087, + 858, + 2111, + 842, + 2111 + ], + "score": 0.657 + }, + { + "category_id": 6, + "poly": [ + 295, + 751, + 1405, + 751, + 1405, + 873, + 295, + 873 + ], + "score": 0.421 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 859, + 2087, + 859, + 2111, + 841, + 2111 + ], + "score": 0.306 + }, + { + "category_id": 13, + "poly": [ + 1128, + 1912, + 1280, + 1912, + 1280, + 1941, + 1128, + 1941 + ], + "score": 0.93, + "latex": "4 * 5 + 1 = 2 1" + }, + { + "category_id": 13, + "poly": [ + 502, + 1699, + 617, + 1699, + 617, + 1728, + 502, + 1728 + ], + "score": 0.9, + "latex": "2 9 9 \\times 2 9 9" + }, + { + "category_id": 13, + "poly": [ + 975, + 1320, + 1016, + 1320, + 1016, + 1353, + 975, + 1353 + ], + "score": 0.9, + "latex": "X _ { n } ^ { \\prime \\prime }" + }, + { + "category_id": 13, + "poly": [ + 559, + 1321, + 599, + 1321, + 599, + 1350, + 559, + 1350 + ], + "score": 0.89, + "latex": "X _ { n }" + }, + { + "category_id": 13, + "poly": [ + 647, + 1699, + 763, + 1699, + 763, + 1729, + 647, + 1729 + ], + "score": 0.88, + "latex": "3 3 1 \\times 3 3 1" + }, + { + "category_id": 13, + "poly": [ + 726, + 661, + 764, + 661, + 764, + 683, + 726, + 683 + ], + "score": 0.87, + "latex": "0 \\%" + }, + { + "category_id": 13, + "poly": [ + 589, + 560, + 662, + 560, + 662, + 586, + 589, + 586 + ], + "score": 0.86, + "latex": "5 4 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 954, + 659, + 1013, + 659, + 1013, + 684, + 954, + 684 + ], + "score": 0.86, + "latex": "0 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 487, + 660, + 525, + 660, + 525, + 683, + 487, + 683 + ], + "score": 0.86, + "latex": "0 \\%" + }, + { + "category_id": 13, + "poly": [ + 708, + 594, + 781, + 594, + 781, + 619, + 708, + 619 + ], + "score": 0.85, + "latex": "2 0 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 947, + 526, + 1020, + 526, + 1020, + 555, + 947, + 555 + ], + "score": 0.85, + "latex": "6 5 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 1186, + 592, + 1258, + 592, + 1258, + 619, + 1186, + 619 + ], + "score": 0.85, + "latex": "9 0 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 947, + 594, + 1020, + 594, + 1020, + 619, + 947, + 619 + ], + "score": 0.85, + "latex": "6 1 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1304, + 1063, + 1378, + 1063, + 1378, + 1090, + 1304, + 1090 + ], + "score": 0.85, + "latex": "9 5 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 1186, + 1029, + 1259, + 1029, + 1259, + 1058, + 1186, + 1058 + ], + "score": 0.85, + "latex": "8 6 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 708, + 1097, + 781, + 1097, + 781, + 1122, + 708, + 1122 + ], + "score": 0.85, + "latex": "2 2 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 954, + 1162, + 1013, + 1162, + 1013, + 1186, + 954, + 1186 + ], + "score": 0.84, + "latex": "0 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 954, + 1130, + 1013, + 1130, + 1013, + 1154, + 954, + 1154 + ], + "score": 0.84, + "latex": "0 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 1304, + 1095, + 1378, + 1095, + 1378, + 1122, + 1304, + 1122 + ], + "score": 0.84, + "latex": "9 5 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1192, + 657, + 1252, + 657, + 1252, + 684, + 1192, + 684 + ], + "score": 0.84, + "latex": "\\overline { { 0 . 9 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 1185, + 1095, + 1258, + 1095, + 1258, + 1122, + 1185, + 1122 + ], + "score": 0.84, + "latex": "9 0 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 1186, + 526, + 1259, + 526, + 1259, + 555, + 1186, + 555 + ], + "score": 0.84, + "latex": "8 4 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 717, + 1163, + 774, + 1163, + 774, + 1186, + 717, + 1186 + ], + "score": 0.84, + "latex": "1 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 1304, + 592, + 1378, + 592, + 1378, + 619, + 1304, + 619 + ], + "score": 0.84, + "latex": "9 4 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 1066, + 1029, + 1140, + 1029, + 1140, + 1057, + 1066, + 1057 + ], + "score": 0.84, + "latex": "8 3 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 1304, + 526, + 1379, + 526, + 1379, + 555, + 1304, + 555 + ], + "score": 0.84, + "latex": "9 5 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 947, + 1096, + 1020, + 1096, + 1020, + 1122, + 947, + 1122 + ], + "score": 0.84, + "latex": "6 6 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 1304, + 1028, + 1379, + 1028, + 1379, + 1058, + 1304, + 1058 + ], + "score": 0.84, + "latex": "9 6 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 1304, + 559, + 1378, + 559, + 1378, + 586, + 1304, + 586 + ], + "score": 0.84, + "latex": "9 4 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 726, + 630, + 764, + 630, + 764, + 650, + 726, + 650 + ], + "score": 0.84, + "latex": "0 \\%" + }, + { + "category_id": 13, + "poly": [ + 1193, + 625, + 1252, + 625, + 1252, + 651, + 1193, + 651 + ], + "score": 0.84, + "latex": "0 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 708, + 1063, + 781, + 1063, + 781, + 1089, + 708, + 1089 + ], + "score": 0.84, + "latex": "2 3 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 828, + 595, + 900, + 595, + 900, + 619, + 828, + 619 + ], + "score": 0.84, + "latex": "4 6 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 1066, + 594, + 1139, + 594, + 1139, + 619, + 1066, + 619 + ], + "score": 0.84, + "latex": "7 1 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 589, + 593, + 661, + 593, + 661, + 619, + 589, + 619 + ], + "score": 0.84, + "latex": "5 2 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 589, + 1029, + 662, + 1029, + 662, + 1058, + 589, + 1058 + ], + "score": 0.84, + "latex": "6 3 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 947, + 1029, + 1020, + 1029, + 1020, + 1058, + 947, + 1058 + ], + "score": 0.84, + "latex": "7 1 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 708, + 1029, + 781, + 1029, + 781, + 1058, + 708, + 1058 + ], + "score": 0.84, + "latex": "2 9 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 589, + 526, + 662, + 526, + 662, + 555, + 589, + 555 + ], + "score": 0.83, + "latex": "6 5 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 1194, + 1129, + 1252, + 1129, + 1252, + 1154, + 1194, + 1154 + ], + "score": 0.83, + "latex": "\\overline { { 1 . 0 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 1194, + 1161, + 1252, + 1161, + 1252, + 1187, + 1194, + 1187 + ], + "score": 0.83, + "latex": "\\overline { { 1 . 6 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 1067, + 527, + 1139, + 527, + 1139, + 555, + 1067, + 555 + ], + "score": 0.83, + "latex": "8 1 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 828, + 1029, + 901, + 1029, + 901, + 1057, + 828, + 1057 + ], + "score": 0.83, + "latex": "7 0 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 589, + 657, + 662, + 657, + 662, + 684, + 589, + 684 + ], + "score": 0.83, + "latex": "9 6 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 589, + 1063, + 662, + 1063, + 662, + 1089, + 589, + 1089 + ], + "score": 0.83, + "latex": "5 3 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 827, + 1161, + 901, + 1161, + 901, + 1186, + 827, + 1186 + ], + "score": 0.83, + "latex": "9 7 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 1066, + 1129, + 1139, + 1129, + 1139, + 1154, + 1066, + 1154 + ], + "score": 0.83, + "latex": "9 8 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 1186, + 1063, + 1259, + 1063, + 1259, + 1089, + 1186, + 1089 + ], + "score": 0.83, + "latex": "8 8 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 1305, + 656, + 1378, + 656, + 1378, + 684, + 1305, + 684 + ], + "score": 0.83, + "latex": "9 8 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 1066, + 656, + 1140, + 656, + 1140, + 684, + 1066, + 684 + ], + "score": 0.83, + "latex": "9 7 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 708, + 526, + 781, + 526, + 781, + 555, + 708, + 555 + ], + "score": 0.83, + "latex": "2 6 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 1305, + 1128, + 1378, + 1128, + 1378, + 1154, + 1305, + 1154 + ], + "score": 0.83, + "latex": "9 9 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1186, + 560, + 1259, + 560, + 1259, + 586, + 1186, + 586 + ], + "score": 0.83, + "latex": "8 7 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 1305, + 625, + 1378, + 625, + 1378, + 651, + 1305, + 651 + ], + "score": 0.83, + "latex": "9 9 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 827, + 659, + 901, + 659, + 901, + 684, + 827, + 684 + ], + "score": 0.83, + "latex": "9 7 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 828, + 1063, + 901, + 1063, + 901, + 1089, + 828, + 1089 + ], + "score": 0.83, + "latex": "5 2 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 1305, + 1160, + 1378, + 1160, + 1378, + 1187, + 1305, + 1187 + ], + "score": 0.83, + "latex": "9 9 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 588, + 1160, + 662, + 1160, + 662, + 1186, + 588, + 1186 + ], + "score": 0.83, + "latex": "9 7 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 589, + 1096, + 661, + 1096, + 661, + 1122, + 589, + 1122 + ], + "score": 0.83, + "latex": "5 1 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 1066, + 1096, + 1139, + 1096, + 1139, + 1122, + 1066, + 1122 + ], + "score": 0.83, + "latex": "7 5 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 589, + 1129, + 661, + 1129, + 661, + 1154, + 589, + 1154 + ], + "score": 0.83, + "latex": "9 8 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 828, + 527, + 901, + 527, + 901, + 555, + 828, + 555 + ], + "score": 0.83, + "latex": "\\overline { { 7 1 . 8 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 828, + 1096, + 900, + 1096, + 900, + 1122, + 828, + 1122 + ], + "score": 0.83, + "latex": "4 3 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 1066, + 1160, + 1139, + 1160, + 1139, + 1186, + 1066, + 1186 + ], + "score": 0.83, + "latex": "9 7 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 717, + 1130, + 774, + 1130, + 774, + 1154, + 717, + 1154 + ], + "score": 0.83, + "latex": "1 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 469, + 526, + 543, + 526, + 543, + 555, + 469, + 555 + ], + "score": 0.83, + "latex": "3 3 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 708, + 560, + 781, + 560, + 781, + 586, + 708, + 586 + ], + "score": 0.82, + "latex": "2 0 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 947, + 560, + 1020, + 560, + 1020, + 586, + 947, + 586 + ], + "score": 0.82, + "latex": "6 1 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 469, + 1095, + 542, + 1095, + 542, + 1122, + 469, + 1122 + ], + "score": 0.82, + "latex": "3 4 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 469, + 1029, + 543, + 1029, + 543, + 1058, + 469, + 1058 + ], + "score": 0.82, + "latex": "3 5 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 1066, + 560, + 1139, + 560, + 1139, + 586, + 1066, + 586 + ], + "score": 0.82, + "latex": "7 4 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 1066, + 626, + 1139, + 626, + 1139, + 651, + 1066, + 651 + ], + "score": 0.81, + "latex": "9 8 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 469, + 1063, + 543, + 1063, + 543, + 1089, + 469, + 1089 + ], + "score": 0.81, + "latex": "3 2 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 1065, + 1063, + 1139, + 1063, + 1139, + 1089, + 1065, + 1089 + ], + "score": 0.81, + "latex": "7 8 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 469, + 592, + 542, + 592, + 542, + 619, + 469, + 619 + ], + "score": 0.81, + "latex": "3 3 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 947, + 1063, + 1020, + 1063, + 1020, + 1089, + 947, + 1089 + ], + "score": 0.81, + "latex": "6 8 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 828, + 627, + 901, + 627, + 901, + 651, + 828, + 651 + ], + "score": 0.81, + "latex": "9 7 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 589, + 626, + 661, + 626, + 661, + 651, + 589, + 651 + ], + "score": 0.81, + "latex": "9 8 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 965, + 629, + 1002, + 629, + 1002, + 650, + 965, + 650 + ], + "score": 0.81, + "latex": "0 \\%" + }, + { + "category_id": 13, + "poly": [ + 828, + 1130, + 901, + 1130, + 901, + 1154, + 828, + 1154 + ], + "score": 0.81, + "latex": "9 7 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 828, + 561, + 901, + 561, + 901, + 586, + 828, + 586 + ], + "score": 0.81, + "latex": "5 4 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 477, + 1161, + 536, + 1161, + 536, + 1187, + 477, + 1187 + ], + "score": 0.8, + "latex": "\\overline { { 1 . 1 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 469, + 560, + 542, + 560, + 542, + 586, + 469, + 586 + ], + "score": 0.8, + "latex": "3 1 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 487, + 626, + 525, + 626, + 525, + 651, + 487, + 651 + ], + "score": 0.79, + "latex": "0 \\%" + }, + { + "category_id": 13, + "poly": [ + 477, + 1129, + 536, + 1129, + 536, + 1154, + 477, + 1154 + ], + "score": 0.79, + "latex": "1 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 974, + 1263, + 998, + 1263, + 998, + 1287, + 974, + 1287 + ], + "score": 0.79, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 1067, + 1820, + 1353, + 1820, + 1353, + 1854, + 1067, + 1854 + ], + "score": 0.74, + "latex": "\\{ 2 9 9 , 3 0 7 , 3 1 5 , 3 2 3 , 3 3 1 \\}" + }, + { + "category_id": 13, + "poly": [ + 751, + 1448, + 766, + 1448, + 766, + 1469, + 751, + 1469 + ], + "score": 0.35, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1362, + 815, + 1391, + 815, + 1391, + 841, + 1362, + 841 + ], + "score": 0.28, + "latex": "\\cdot \\nu 2" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 249.0, + 1405.0, + 249.0, + 1405.0, + 284.0, + 295.0, + 284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 275.0, + 1404.0, + 275.0, + 1404.0, + 318.0, + 292.0, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 308.0, + 1402.0, + 308.0, + 1402.0, + 346.0, + 294.0, + 346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 340.0, + 566.0, + 340.0, + 566.0, + 375.0, + 296.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1575.0, + 853.0, + 1575.0, + 853.0, + 1613.0, + 294.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 752.0, + 1402.0, + 752.0, + 1402.0, + 787.0, + 296.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 782.0, + 1403.0, + 782.0, + 1403.0, + 817.0, + 295.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 810.0, + 1361.0, + 810.0, + 1361.0, + 850.0, + 294.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1392.0, + 810.0, + 1405.0, + 810.0, + 1405.0, + 850.0, + 1392.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 843.0, + 673.0, + 843.0, + 673.0, + 878.0, + 294.0, + 878.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": [ + 294.0, + 750.0, + 1403.0, + 750.0, + 1403.0, + 787.0, + 294.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 783.0, + 1403.0, + 783.0, + 1403.0, + 815.0, + 294.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 814.0, + 1361.0, + 814.0, + 1361.0, + 847.0, + 295.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1392.0, + 814.0, + 1402.0, + 814.0, + 1402.0, + 847.0, + 1392.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 844.0, + 675.0, + 844.0, + 675.0, + 877.0, + 294.0, + 877.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": [ + 292.0, + 1635.0, + 1406.0, + 1635.0, + 1406.0, + 1674.0, + 292.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1665.0, + 1405.0, + 1665.0, + 1405.0, + 1707.0, + 291.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1698.0, + 501.0, + 1698.0, + 501.0, + 1735.0, + 294.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 1698.0, + 646.0, + 1698.0, + 646.0, + 1735.0, + 618.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 1698.0, + 1405.0, + 1698.0, + 1405.0, + 1735.0, + 764.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1723.0, + 1405.0, + 1723.0, + 1405.0, + 1768.0, + 291.0, + 1768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1758.0, + 1405.0, + 1758.0, + 1405.0, + 1794.0, + 294.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1789.0, + 1406.0, + 1789.0, + 1406.0, + 1825.0, + 294.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1816.0, + 1066.0, + 1816.0, + 1066.0, + 1859.0, + 291.0, + 1859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 1816.0, + 1405.0, + 1816.0, + 1405.0, + 1859.0, + 1354.0, + 1859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1846.0, + 1406.0, + 1846.0, + 1406.0, + 1890.0, + 291.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1879.0, + 1406.0, + 1879.0, + 1406.0, + 1918.0, + 292.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1912.0, + 1127.0, + 1912.0, + 1127.0, + 1948.0, + 295.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1281.0, + 1912.0, + 1406.0, + 1912.0, + 1406.0, + 1948.0, + 1281.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1943.0, + 1406.0, + 1943.0, + 1406.0, + 1979.0, + 295.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1973.0, + 1405.0, + 1973.0, + 1405.0, + 2009.0, + 294.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2001.0, + 1405.0, + 2001.0, + 1405.0, + 2037.0, + 295.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1255.0, + 973.0, + 1255.0, + 973.0, + 1295.0, + 294.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 1255.0, + 1404.0, + 1255.0, + 1404.0, + 1295.0, + 999.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1289.0, + 1406.0, + 1289.0, + 1406.0, + 1325.0, + 294.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1314.0, + 558.0, + 1314.0, + 558.0, + 1363.0, + 291.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 1314.0, + 974.0, + 1314.0, + 974.0, + 1363.0, + 600.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1017.0, + 1314.0, + 1410.0, + 1314.0, + 1410.0, + 1363.0, + 1017.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1348.0, + 1406.0, + 1348.0, + 1406.0, + 1385.0, + 294.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1380.0, + 1406.0, + 1380.0, + 1406.0, + 1416.0, + 295.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1410.0, + 1406.0, + 1410.0, + 1406.0, + 1447.0, + 294.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1441.0, + 750.0, + 1441.0, + 750.0, + 1474.0, + 295.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 1441.0, + 1404.0, + 1441.0, + 1404.0, + 1474.0, + 767.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1470.0, + 1407.0, + 1470.0, + 1407.0, + 1507.0, + 292.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1504.0, + 766.0, + 1504.0, + 766.0, + 1537.0, + 295.0, + 1537.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 297, + 398, + 1405, + 398, + 1405, + 719, + 297, + 719 + ], + "score": 0.984, + "html": "
ModelsInception-v3ResNet-v2-101Inception-ResNet-v2ens-adv-Inception-ResNet-v2
targetmodeldefensemodeltargetmodeldefensemodeltargetmodeldefensemodeltargetmodeldefensemodel
FGSM-237.3%41.2%39.2%44.9%71.5%74.3%86.2%88.9%
FGSM-531.7%34.0%24.6%29.7%65.2%67.3%85.8%87.5%
FGSM-1030.4%32.8%18.6%21.7%62.9%64.5%86.6%87.9%
DeepFool0.6%81.3%0.9%80.5%0.9%69.4%1.6%93.5%
C&W0.6%62.9%1.0%74.3%1.6%68.3%5.8%86.1%
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1668, + 1404, + 1668, + 1404, + 2034, + 298, + 2034 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 791, + 1404, + 791, + 1404, + 1249, + 297, + 1249 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1369, + 1404, + 1369, + 1404, + 1553, + 298, + 1553 + ], + "score": 0.981 + }, + { + "category_id": 0, + "poly": [ + 300, + 1606, + 641, + 1606, + 641, + 1639, + 300, + 1639 + ], + "score": 0.901 + }, + { + "category_id": 0, + "poly": [ + 300, + 1304, + 683, + 1304, + 683, + 1336, + 300, + 1336 + ], + "score": 0.9 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.891 + }, + { + "category_id": 6, + "poly": [ + 296, + 248, + 1404, + 248, + 1404, + 397, + 296, + 397 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.794 + }, + { + "category_id": 13, + "poly": [ + 563, + 1523, + 731, + 1523, + 731, + 1552, + 563, + 1552 + ], + "score": 0.92, + "latex": "3 3 0 \\times 3 3 0 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 325, + 1699, + 473, + 1699, + 473, + 1728, + 325, + 1728 + ], + "score": 0.9, + "latex": "3 3 1 \\times 3 3 1 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 916, + 1187, + 994, + 1187, + 994, + 1218, + 916, + 1218 + ], + "score": 0.89, + "latex": "9 3 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1249, + 1668, + 1402, + 1668, + 1402, + 1698, + 1249, + 1698 + ], + "score": 0.89, + "latex": "3 3 0 \\times 3 3 0 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 795, + 1004, + 872, + 1004, + 872, + 1034, + 795, + 1034 + ], + "score": 0.88, + "latex": "6 2 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 1206, + 1187, + 1283, + 1187, + 1283, + 1218, + 1206, + 1218 + ], + "score": 0.88, + "latex": "8 6 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 1325, + 973, + 1402, + 973, + 1402, + 1005, + 1325, + 1005 + ], + "score": 0.87, + "latex": "8 1 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 1065, + 550, + 1140, + 550, + 1140, + 579, + 1065, + 579 + ], + "score": 0.87, + "latex": "7 4 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 954, + 651, + 1013, + 651, + 1013, + 676, + 954, + 676 + ], + "score": 0.86, + "latex": "0 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 948, + 882, + 990, + 882, + 990, + 912, + 948, + 912 + ], + "score": 0.86, + "latex": "8 \\%" + }, + { + "category_id": 13, + "poly": [ + 716, + 651, + 774, + 651, + 774, + 676, + 716, + 676 + ], + "score": 0.86, + "latex": "0 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 1305, + 584, + 1378, + 584, + 1378, + 612, + 1305, + 612 + ], + "score": 0.86, + "latex": "8 7 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1305, + 551, + 1378, + 551, + 1378, + 579, + 1305, + 579 + ], + "score": 0.86, + "latex": "8 8 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 708, + 584, + 781, + 584, + 781, + 612, + 708, + 612 + ], + "score": 0.85, + "latex": "2 4 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 828, + 551, + 901, + 551, + 901, + 579, + 828, + 579 + ], + "score": 0.85, + "latex": "\\overline { { 4 4 . 9 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 1186, + 584, + 1259, + 584, + 1259, + 612, + 1186, + 612 + ], + "score": 0.85, + "latex": "8 5 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 589, + 584, + 662, + 584, + 662, + 612, + 589, + 612 + ], + "score": 0.85, + "latex": "3 4 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 947, + 584, + 1020, + 584, + 1020, + 611, + 947, + 611 + ], + "score": 0.85, + "latex": "6 5 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 708, + 550, + 781, + 550, + 781, + 579, + 708, + 579 + ], + "score": 0.85, + "latex": "3 9 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1185, + 550, + 1259, + 550, + 1259, + 580, + 1185, + 580 + ], + "score": 0.85, + "latex": "8 6 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 946, + 551, + 1020, + 551, + 1020, + 579, + 946, + 579 + ], + "score": 0.85, + "latex": "7 1 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 829, + 651, + 900, + 651, + 900, + 676, + 829, + 676 + ], + "score": 0.85, + "latex": "8 0 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 590, + 651, + 661, + 651, + 661, + 676, + 590, + 676 + ], + "score": 0.84, + "latex": "8 1 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 1066, + 584, + 1139, + 584, + 1139, + 611, + 1066, + 611 + ], + "score": 0.84, + "latex": "6 7 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 588, + 550, + 662, + 550, + 662, + 579, + 588, + 579 + ], + "score": 0.84, + "latex": "4 1 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 469, + 550, + 543, + 550, + 543, + 579, + 469, + 579 + ], + "score": 0.84, + "latex": "3 7 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 947, + 617, + 1020, + 617, + 1020, + 643, + 947, + 643 + ], + "score": 0.84, + "latex": "6 2 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 1066, + 651, + 1139, + 651, + 1139, + 676, + 1066, + 676 + ], + "score": 0.84, + "latex": "6 9 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 1305, + 650, + 1378, + 650, + 1378, + 676, + 1305, + 676 + ], + "score": 0.84, + "latex": "9 3 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 828, + 584, + 901, + 584, + 901, + 611, + 828, + 611 + ], + "score": 0.84, + "latex": "2 9 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 1194, + 651, + 1252, + 651, + 1252, + 677, + 1194, + 677 + ], + "score": 0.84, + "latex": "1 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 1305, + 616, + 1378, + 616, + 1378, + 643, + 1305, + 643 + ], + "score": 0.84, + "latex": "8 7 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 469, + 584, + 543, + 584, + 543, + 611, + 469, + 611 + ], + "score": 0.83, + "latex": "3 1 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 1305, + 682, + 1378, + 682, + 1378, + 709, + 1305, + 709 + ], + "score": 0.83, + "latex": "8 6 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 589, + 617, + 661, + 617, + 661, + 643, + 589, + 643 + ], + "score": 0.82, + "latex": "3 2 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 589, + 682, + 662, + 682, + 662, + 709, + 589, + 709 + ], + "score": 0.82, + "latex": "6 2 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 709, + 617, + 781, + 617, + 781, + 643, + 709, + 643 + ], + "score": 0.82, + "latex": "1 8 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 1193, + 683, + 1252, + 683, + 1252, + 709, + 1193, + 709 + ], + "score": 0.82, + "latex": "5 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 1186, + 617, + 1258, + 617, + 1258, + 643, + 1186, + 643 + ], + "score": 0.82, + "latex": "8 6 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 476, + 649, + 535, + 649, + 535, + 677, + 476, + 677 + ], + "score": 0.82, + "latex": "\\overline { { 0 . 6 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 717, + 684, + 774, + 684, + 774, + 709, + 717, + 709 + ], + "score": 0.82, + "latex": "1 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 955, + 684, + 1013, + 684, + 1013, + 709, + 955, + 709 + ], + "score": 0.82, + "latex": "1 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 1066, + 617, + 1139, + 617, + 1139, + 643, + 1066, + 643 + ], + "score": 0.82, + "latex": "6 4 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 828, + 683, + 900, + 683, + 900, + 708, + 828, + 708 + ], + "score": 0.82, + "latex": "7 4 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 469, + 616, + 542, + 616, + 542, + 643, + 469, + 643 + ], + "score": 0.82, + "latex": "3 0 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 1066, + 682, + 1139, + 682, + 1139, + 709, + 1066, + 709 + ], + "score": 0.8, + "latex": "6 8 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 828, + 618, + 900, + 618, + 900, + 643, + 828, + 643 + ], + "score": 0.79, + "latex": "2 1 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 476, + 682, + 536, + 682, + 536, + 709, + 476, + 709 + ], + "score": 0.78, + "latex": "\\overline { { 0 . 6 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 295, + 1191, + 320, + 1191, + 320, + 1216, + 295, + 1216 + ], + "score": 0.7, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 1144, + 1128, + 1173, + 1128, + 1173, + 1155, + 1144, + 1155 + ], + "score": 0.5, + "latex": "\\nu 2" + }, + { + "category_id": 13, + "poly": [ + 1076, + 976, + 1106, + 976, + 1106, + 1003, + 1076, + 1003 + ], + "score": 0.37, + "latex": "\\nu 3" + }, + { + "category_id": 13, + "poly": [ + 1372, + 1157, + 1402, + 1157, + 1402, + 1185, + 1372, + 1185 + ], + "score": 0.37, + "latex": "\\nu 2" + }, + { + "category_id": 13, + "poly": [ + 549, + 1945, + 578, + 1945, + 578, + 1971, + 549, + 1971 + ], + "score": 0.29, + "latex": "\\nu 2" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1602.0, + 645.0, + 1602.0, + 645.0, + 1643.0, + 294.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1305.0, + 687.0, + 1305.0, + 687.0, + 1338.0, + 296.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 250.0, + 1405.0, + 250.0, + 1405.0, + 282.0, + 296.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 277.0, + 1404.0, + 277.0, + 1404.0, + 316.0, + 293.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 310.0, + 1402.0, + 310.0, + 1402.0, + 345.0, + 294.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 338.0, + 1406.0, + 338.0, + 1406.0, + 376.0, + 293.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 374.0, + 402.0, + 374.0, + 402.0, + 404.0, + 295.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 860.0, + 2085.0, + 860.0, + 2116.0, + 839.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1665.0, + 1248.0, + 1665.0, + 1248.0, + 1705.0, + 292.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1665.0, + 1408.0, + 1665.0, + 1408.0, + 1705.0, + 1403.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1696.0, + 324.0, + 1696.0, + 324.0, + 1735.0, + 292.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 1696.0, + 1406.0, + 1696.0, + 1406.0, + 1735.0, + 474.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1730.0, + 1404.0, + 1730.0, + 1404.0, + 1764.0, + 296.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1760.0, + 1405.0, + 1760.0, + 1405.0, + 1794.0, + 296.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1790.0, + 1405.0, + 1790.0, + 1405.0, + 1824.0, + 294.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1821.0, + 1406.0, + 1821.0, + 1406.0, + 1855.0, + 294.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1851.0, + 1405.0, + 1851.0, + 1405.0, + 1884.0, + 294.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1883.0, + 1405.0, + 1883.0, + 1405.0, + 1914.0, + 293.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1912.0, + 1405.0, + 1912.0, + 1405.0, + 1946.0, + 294.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1943.0, + 548.0, + 1943.0, + 548.0, + 1977.0, + 294.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 1943.0, + 1404.0, + 1943.0, + 1404.0, + 1977.0, + 579.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1974.0, + 1404.0, + 1974.0, + 1404.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2001.0, + 1357.0, + 2001.0, + 1357.0, + 2038.0, + 295.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 793.0, + 1404.0, + 793.0, + 1404.0, + 824.0, + 296.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 819.0, + 1404.0, + 819.0, + 1404.0, + 858.0, + 294.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 854.0, + 1402.0, + 854.0, + 1402.0, + 885.0, + 296.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 884.0, + 947.0, + 884.0, + 947.0, + 915.0, + 296.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 991.0, + 884.0, + 1402.0, + 884.0, + 1402.0, + 915.0, + 991.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 913.0, + 1404.0, + 913.0, + 1404.0, + 947.0, + 294.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 942.0, + 1405.0, + 942.0, + 1405.0, + 979.0, + 292.0, + 979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 973.0, + 1075.0, + 973.0, + 1075.0, + 1009.0, + 292.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1107.0, + 973.0, + 1324.0, + 973.0, + 1324.0, + 1009.0, + 1107.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1005.0, + 794.0, + 1005.0, + 794.0, + 1039.0, + 294.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 1005.0, + 1406.0, + 1005.0, + 1406.0, + 1039.0, + 873.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1035.0, + 1404.0, + 1035.0, + 1404.0, + 1070.0, + 295.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1066.0, + 1404.0, + 1066.0, + 1404.0, + 1101.0, + 295.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1096.0, + 1405.0, + 1096.0, + 1405.0, + 1131.0, + 295.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1125.0, + 1143.0, + 1125.0, + 1143.0, + 1164.0, + 292.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1174.0, + 1125.0, + 1406.0, + 1125.0, + 1406.0, + 1164.0, + 1174.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1156.0, + 1371.0, + 1156.0, + 1371.0, + 1191.0, + 295.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1187.0, + 915.0, + 1187.0, + 915.0, + 1226.0, + 321.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 995.0, + 1187.0, + 1205.0, + 1187.0, + 1205.0, + 1226.0, + 995.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1284.0, + 1187.0, + 1406.0, + 1187.0, + 1406.0, + 1226.0, + 1284.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1217.0, + 443.0, + 1217.0, + 443.0, + 1257.0, + 292.0, + 1257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1368.0, + 1406.0, + 1368.0, + 1406.0, + 1405.0, + 293.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1400.0, + 1406.0, + 1400.0, + 1406.0, + 1436.0, + 294.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1428.0, + 1404.0, + 1428.0, + 1404.0, + 1467.0, + 293.0, + 1467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1460.0, + 1405.0, + 1460.0, + 1405.0, + 1497.0, + 293.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1494.0, + 1404.0, + 1494.0, + 1404.0, + 1526.0, + 294.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1524.0, + 562.0, + 1524.0, + 562.0, + 1554.0, + 294.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 732.0, + 1524.0, + 871.0, + 1524.0, + 871.0, + 1554.0, + 732.0, + 1554.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 297, + 753, + 1405, + 753, + 1405, + 1073, + 297, + 1073 + ], + "score": 0.984, + "html": "
ModelsInception-v3ResNet-v2-101Inception-ResNet-v2ens-adv-Inception-ResNet-v2
targetmodeldefensemodeltargetmodeldefensemodeltargetmodeldefensemodeltargetmodeldefensemodel
FGSM-230.8%56.2%31.6%44.6%66.2%75.0%87.6%97.2%
FGSM-531.2%48.8%25.6%35.8%61.4%70.2%91.2%96.6%
FGSM-1036.4%51.0%23.8%32.6%62.8%68.2%94.8%95.2%
DeepFool2.6%99.4%1.0%98.6%1.2%97.4%1.2%99.4%
C&W2.6%97.8%1.0%94.8%2.0%94.8%1.8%99.6%
" + }, + { + "category_id": 5, + "poly": [ + 297, + 313, + 1405, + 313, + 1405, + 633, + 297, + 633 + ], + "score": 0.984, + "html": "
ModelsInception-v3ResNet-v2-101Inception-ResNet-v2ens-adv-Inception-ResNet-v2
targetmodeldefensemodeltargetmodeldefensemodeltargetmodeldefensemodeltargetmodeldefensemodel
FGSM-236.4%39.6%29.8%34.4%71.3%74.0%88.2%94.8%
FGSM-533.5%36.2%22.2%26.2%68.4%71.0%92.1%94.4%
FGSM-1034.5%38.8%21.3%23.6%67.4%70.4%93.7%94.0%
DeepFool0.9%97.2%0.9%95.2%0.9%87.6%1.5%99.2%
C&W0.8%70.2%0.9%76.8%1.0%79.4%2.4%98.2%
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1429, + 1405, + 1429, + 1405, + 1617, + 297, + 1617 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1187, + 1405, + 1187, + 1405, + 1311, + 297, + 1311 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 1747, + 1404, + 1747, + 1404, + 1813, + 299, + 1813 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 533, + 1637, + 1163, + 1637, + 1163, + 1730, + 533, + 1730 + ], + "score": 0.952 + }, + { + "category_id": 6, + "poly": [ + 296, + 249, + 1397, + 249, + 1397, + 311, + 296, + 311 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 301, + 1910, + 1402, + 1910, + 1402, + 1976, + 301, + 1976 + ], + "score": 0.946 + }, + { + "category_id": 6, + "poly": [ + 297, + 689, + 1401, + 689, + 1401, + 751, + 297, + 751 + ], + "score": 0.943 + }, + { + "category_id": 2, + "poly": [ + 329, + 2004, + 1063, + 2004, + 1063, + 2035, + 329, + 2035 + ], + "score": 0.922 + }, + { + "category_id": 0, + "poly": [ + 298, + 1132, + 652, + 1132, + 652, + 1165, + 298, + 1165 + ], + "score": 0.921 + }, + { + "category_id": 0, + "poly": [ + 298, + 1358, + 1214, + 1358, + 1214, + 1396, + 298, + 1396 + ], + "score": 0.916 + }, + { + "category_id": 0, + "poly": [ + 299, + 1852, + 631, + 1852, + 631, + 1885, + 299, + 1885 + ], + "score": 0.913 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.904 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1667, + 1400, + 1667, + 1400, + 1698, + 1366, + 1698 + ], + "score": 0.878 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2111, + 840, + 2111 + ], + "score": 0.816 + }, + { + "category_id": 14, + "poly": [ + 532, + 1635, + 1161, + 1635, + 1161, + 1731, + 532, + 1731 + ], + "score": 0.93, + "latex": "\\mathrm { s c o r e } = \\frac { 1 } { M } \\sum _ { \\mathrm { a t t a c k } \\in A } \\sum _ { n = 1 } ^ { 5 0 0 0 } \\left[ \\mathrm { d e f e n s e } ( \\mathrm { a t t a c k } ( X _ { n } ) ) = y _ { n } ^ { \\mathrm { t r u e } } \\right] ," + }, + { + "category_id": 13, + "poly": [ + 503, + 1219, + 675, + 1219, + 675, + 1248, + 503, + 1248 + ], + "score": 0.92, + "latex": "3 3 1 \\times 3 3 1 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 298, + 1219, + 469, + 1219, + 469, + 1248, + 298, + 1248 + ], + "score": 0.91, + "latex": "3 3 0 \\times 3 3 0 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 348, + 1494, + 516, + 1494, + 516, + 1523, + 348, + 1523 + ], + "score": 0.91, + "latex": "2 9 9 \\times 2 9 9 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 588, + 905, + 662, + 905, + 662, + 933, + 588, + 933 + ], + "score": 0.88, + "latex": "5 6 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 708, + 465, + 781, + 465, + 781, + 493, + 708, + 493 + ], + "score": 0.88, + "latex": "2 9 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 1305, + 465, + 1378, + 465, + 1378, + 494, + 1305, + 494 + ], + "score": 0.87, + "latex": "9 4 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 708, + 940, + 781, + 940, + 781, + 966, + 708, + 966 + ], + "score": 0.86, + "latex": "2 5 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 1194, + 1005, + 1252, + 1005, + 1252, + 1030, + 1194, + 1030 + ], + "score": 0.86, + "latex": "\\overline { { 1 . 2 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 1304, + 904, + 1378, + 904, + 1378, + 933, + 1304, + 933 + ], + "score": 0.86, + "latex": "9 7 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1304, + 498, + 1378, + 498, + 1378, + 525, + 1304, + 525 + ], + "score": 0.85, + "latex": "\\overline { { 9 4 . 4 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 947, + 940, + 1020, + 940, + 1020, + 966, + 947, + 966 + ], + "score": 0.85, + "latex": "6 1 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 828, + 465, + 901, + 465, + 901, + 493, + 828, + 493 + ], + "score": 0.85, + "latex": "3 4 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 1185, + 939, + 1258, + 939, + 1258, + 966, + 1185, + 966 + ], + "score": 0.85, + "latex": "9 1 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 954, + 565, + 1013, + 565, + 1013, + 590, + 954, + 590 + ], + "score": 0.85, + "latex": "0 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 1304, + 532, + 1378, + 532, + 1378, + 558, + 1304, + 558 + ], + "score": 0.85, + "latex": "\\overline { { 9 4 . 0 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 1185, + 498, + 1259, + 498, + 1259, + 525, + 1185, + 525 + ], + "score": 0.85, + "latex": "9 2 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 717, + 1005, + 774, + 1005, + 774, + 1030, + 717, + 1030 + ], + "score": 0.85, + "latex": "\\overline { { 1 . 0 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 708, + 498, + 781, + 498, + 781, + 525, + 708, + 525 + ], + "score": 0.85, + "latex": "2 2 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 589, + 498, + 662, + 498, + 662, + 525, + 589, + 525 + ], + "score": 0.85, + "latex": "3 6 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 947, + 532, + 1020, + 532, + 1020, + 558, + 947, + 558 + ], + "score": 0.85, + "latex": "6 7 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 716, + 565, + 774, + 565, + 774, + 590, + 716, + 590 + ], + "score": 0.85, + "latex": "\\overline { { 0 . 9 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 947, + 975, + 1020, + 975, + 1020, + 998, + 947, + 998 + ], + "score": 0.85, + "latex": "6 2 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 1304, + 939, + 1378, + 939, + 1378, + 967, + 1304, + 967 + ], + "score": 0.85, + "latex": "9 6 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 947, + 465, + 1020, + 465, + 1020, + 493, + 947, + 493 + ], + "score": 0.85, + "latex": "7 1 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 589, + 1004, + 661, + 1004, + 661, + 1030, + 589, + 1030 + ], + "score": 0.85, + "latex": "9 9 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 589, + 465, + 662, + 465, + 662, + 494, + 589, + 494 + ], + "score": 0.85, + "latex": "3 9 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 947, + 904, + 1020, + 904, + 1020, + 933, + 947, + 933 + ], + "score": 0.85, + "latex": "6 6 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 588, + 939, + 662, + 939, + 662, + 966, + 588, + 966 + ], + "score": 0.85, + "latex": "4 8 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 1305, + 1005, + 1378, + 1005, + 1378, + 1030, + 1305, + 1030 + ], + "score": 0.85, + "latex": "9 9 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 1066, + 939, + 1139, + 939, + 1139, + 966, + 1066, + 966 + ], + "score": 0.85, + "latex": "\\overline { { 7 0 . 2 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 1186, + 905, + 1259, + 905, + 1259, + 933, + 1186, + 933 + ], + "score": 0.85, + "latex": "8 7 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 828, + 498, + 901, + 498, + 901, + 525, + 828, + 525 + ], + "score": 0.85, + "latex": "2 6 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 828, + 905, + 901, + 905, + 901, + 933, + 828, + 933 + ], + "score": 0.84, + "latex": "\\overline { { 4 4 . 6 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 955, + 1005, + 1013, + 1005, + 1013, + 1030, + 955, + 1030 + ], + "score": 0.84, + "latex": "\\overline { { 1 . 2 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 1194, + 1038, + 1252, + 1038, + 1252, + 1064, + 1194, + 1064 + ], + "score": 0.84, + "latex": "1 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 1194, + 565, + 1252, + 565, + 1252, + 590, + 1194, + 590 + ], + "score": 0.84, + "latex": "\\overline { { 1 . 5 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 1065, + 905, + 1139, + 905, + 1139, + 934, + 1065, + 934 + ], + "score": 0.84, + "latex": "7 5 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 947, + 498, + 1020, + 498, + 1020, + 525, + 947, + 525 + ], + "score": 0.84, + "latex": "6 8 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 1066, + 498, + 1139, + 498, + 1139, + 525, + 1066, + 525 + ], + "score": 0.84, + "latex": "7 1 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 469, + 498, + 543, + 498, + 543, + 525, + 469, + 525 + ], + "score": 0.84, + "latex": "3 3 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1066, + 1005, + 1139, + 1005, + 1139, + 1030, + 1066, + 1030 + ], + "score": 0.84, + "latex": "9 7 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 954, + 1037, + 1013, + 1037, + 1013, + 1064, + 954, + 1064 + ], + "score": 0.84, + "latex": "2 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 708, + 532, + 781, + 532, + 781, + 558, + 708, + 558 + ], + "score": 0.84, + "latex": "2 1 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 708, + 905, + 781, + 905, + 781, + 933, + 708, + 933 + ], + "score": 0.84, + "latex": "3 1 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 1186, + 465, + 1259, + 465, + 1259, + 493, + 1186, + 493 + ], + "score": 0.84, + "latex": "8 8 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1305, + 1037, + 1378, + 1037, + 1378, + 1064, + 1305, + 1064 + ], + "score": 0.84, + "latex": "9 9 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 708, + 973, + 781, + 973, + 781, + 998, + 708, + 998 + ], + "score": 0.84, + "latex": "2 3 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 1186, + 973, + 1258, + 973, + 1258, + 998, + 1186, + 998 + ], + "score": 0.84, + "latex": "9 4 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 1185, + 532, + 1259, + 532, + 1259, + 558, + 1185, + 558 + ], + "score": 0.84, + "latex": "9 3 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 828, + 939, + 901, + 939, + 901, + 967, + 828, + 967 + ], + "score": 0.84, + "latex": "3 5 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 1066, + 465, + 1139, + 465, + 1139, + 493, + 1066, + 493 + ], + "score": 0.84, + "latex": "7 4 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 469, + 939, + 543, + 939, + 543, + 966, + 469, + 966 + ], + "score": 0.84, + "latex": "3 1 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 469, + 905, + 543, + 905, + 543, + 934, + 469, + 934 + ], + "score": 0.83, + "latex": "3 0 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 469, + 465, + 543, + 465, + 543, + 494, + 469, + 494 + ], + "score": 0.83, + "latex": "3 6 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 589, + 564, + 661, + 564, + 661, + 590, + 589, + 590 + ], + "score": 0.83, + "latex": "9 7 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 828, + 1005, + 900, + 1005, + 900, + 1030, + 828, + 1030 + ], + "score": 0.83, + "latex": "9 8 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 476, + 563, + 535, + 563, + 535, + 590, + 476, + 590 + ], + "score": 0.83, + "latex": "\\overline { { 0 . 9 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 1305, + 973, + 1378, + 973, + 1378, + 998, + 1305, + 998 + ], + "score": 0.83, + "latex": "9 5 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 828, + 974, + 900, + 974, + 900, + 998, + 828, + 998 + ], + "score": 0.83, + "latex": "3 2 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 1305, + 564, + 1378, + 564, + 1378, + 590, + 1305, + 590 + ], + "score": 0.83, + "latex": "9 9 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 469, + 531, + 543, + 531, + 543, + 558, + 469, + 558 + ], + "score": 0.83, + "latex": "3 4 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 828, + 1037, + 901, + 1037, + 901, + 1064, + 828, + 1064 + ], + "score": 0.83, + "latex": "\\overline { { 9 4 . 8 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 589, + 972, + 661, + 972, + 661, + 998, + 589, + 998 + ], + "score": 0.83, + "latex": "5 1 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 1066, + 532, + 1139, + 532, + 1139, + 558, + 1066, + 558 + ], + "score": 0.83, + "latex": "7 0 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 589, + 1036, + 662, + 1036, + 662, + 1064, + 589, + 1064 + ], + "score": 0.83, + "latex": "9 7 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 1066, + 1037, + 1139, + 1037, + 1139, + 1064, + 1066, + 1064 + ], + "score": 0.83, + "latex": "\\overline { { 9 4 . 8 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 1067, + 565, + 1139, + 565, + 1139, + 590, + 1067, + 590 + ], + "score": 0.83, + "latex": "8 7 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 589, + 532, + 662, + 532, + 662, + 558, + 589, + 558 + ], + "score": 0.82, + "latex": "3 8 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 828, + 532, + 901, + 532, + 901, + 558, + 828, + 558 + ], + "score": 0.82, + "latex": "2 3 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 828, + 564, + 900, + 564, + 900, + 590, + 828, + 590 + ], + "score": 0.82, + "latex": "9 5 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 476, + 1003, + 535, + 1003, + 535, + 1031, + 476, + 1031 + ], + "score": 0.82, + "latex": "2 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 678, + 1749, + 711, + 1749, + 711, + 1777, + 678, + 1777 + ], + "score": 0.82, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 1304, + 596, + 1378, + 596, + 1378, + 623, + 1304, + 623 + ], + "score": 0.82, + "latex": "9 8 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 717, + 1037, + 774, + 1037, + 774, + 1064, + 717, + 1064 + ], + "score": 0.82, + "latex": "\\overline { { 1 . 0 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 1067, + 974, + 1139, + 974, + 1139, + 998, + 1067, + 998 + ], + "score": 0.81, + "latex": "6 8 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 715, + 597, + 775, + 597, + 775, + 623, + 715, + 623 + ], + "score": 0.81, + "latex": "\\overline { { 0 . 9 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 588, + 596, + 662, + 596, + 662, + 623, + 588, + 623 + ], + "score": 0.81, + "latex": "\\overline { { 7 0 . 2 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 955, + 597, + 1013, + 597, + 1013, + 623, + 955, + 623 + ], + "score": 0.81, + "latex": "\\overline { { 1 . 0 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 828, + 597, + 901, + 597, + 901, + 623, + 828, + 623 + ], + "score": 0.8, + "latex": "7 6 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 1193, + 597, + 1252, + 597, + 1252, + 622, + 1193, + 622 + ], + "score": 0.8, + "latex": "2 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 469, + 972, + 542, + 972, + 542, + 998, + 469, + 998 + ], + "score": 0.8, + "latex": "3 6 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 374, + 1750, + 399, + 1750, + 399, + 1776, + 374, + 1776 + ], + "score": 0.8, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 1066, + 596, + 1140, + 596, + 1140, + 622, + 1066, + 622 + ], + "score": 0.79, + "latex": "7 9 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 476, + 1036, + 536, + 1036, + 536, + 1064, + 476, + 1064 + ], + "score": 0.78, + "latex": "2 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 476, + 596, + 536, + 596, + 536, + 623, + 476, + 623 + ], + "score": 0.77, + "latex": "\\overline { { 0 . 8 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 1081, + 1917, + 1103, + 1917, + 1103, + 1939, + 1081, + 1939 + ], + "score": 0.73, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 576, + 1779, + 601, + 1779, + 601, + 1813, + 576, + 1813 + ], + "score": 0.71, + "latex": "[ \\cdot ]" + }, + { + "category_id": 13, + "poly": [ + 297, + 1944, + 326, + 1944, + 326, + 1970, + 297, + 1970 + ], + "score": 0.7, + "latex": "\\nu 2" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 247.0, + 1401.0, + 247.0, + 1401.0, + 284.0, + 295.0, + 284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 280.0, + 1391.0, + 280.0, + 1391.0, + 315.0, + 296.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 687.0, + 1403.0, + 687.0, + 1403.0, + 723.0, + 296.0, + 723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 723.0, + 1382.0, + 723.0, + 1382.0, + 754.0, + 296.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1999.0, + 1066.0, + 1999.0, + 1066.0, + 2040.0, + 331.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1131.0, + 653.0, + 1131.0, + 653.0, + 1167.0, + 296.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1359.0, + 1220.0, + 1359.0, + 1220.0, + 1400.0, + 294.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1850.0, + 632.0, + 1850.0, + 632.0, + 1889.0, + 293.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1427.0, + 1406.0, + 1427.0, + 1406.0, + 1469.0, + 294.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1461.0, + 1405.0, + 1461.0, + 1405.0, + 1497.0, + 294.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1492.0, + 347.0, + 1492.0, + 347.0, + 1528.0, + 294.0, + 1528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 517.0, + 1492.0, + 1403.0, + 1492.0, + 1403.0, + 1528.0, + 517.0, + 1528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1523.0, + 1403.0, + 1523.0, + 1403.0, + 1559.0, + 295.0, + 1559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1553.0, + 1406.0, + 1553.0, + 1406.0, + 1590.0, + 294.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1586.0, + 999.0, + 1586.0, + 999.0, + 1618.0, + 296.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1188.0, + 1403.0, + 1188.0, + 1403.0, + 1221.0, + 295.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1217.0, + 297.0, + 1217.0, + 297.0, + 1253.0, + 294.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.0, + 1217.0, + 502.0, + 1217.0, + 502.0, + 1253.0, + 470.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 1217.0, + 1403.0, + 1217.0, + 1403.0, + 1253.0, + 676.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1249.0, + 1405.0, + 1249.0, + 1405.0, + 1284.0, + 295.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1279.0, + 484.0, + 1279.0, + 484.0, + 1312.0, + 294.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1748.0, + 373.0, + 1748.0, + 373.0, + 1784.0, + 295.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 1748.0, + 677.0, + 1748.0, + 677.0, + 1784.0, + 400.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 1748.0, + 1404.0, + 1748.0, + 1404.0, + 1784.0, + 712.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1776.0, + 575.0, + 1776.0, + 575.0, + 1816.0, + 294.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 1776.0, + 1386.0, + 1776.0, + 1386.0, + 1816.0, + 602.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1908.0, + 1080.0, + 1908.0, + 1080.0, + 1947.0, + 296.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1104.0, + 1908.0, + 1404.0, + 1908.0, + 1404.0, + 1947.0, + 1104.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1940.0, + 1404.0, + 1940.0, + 1404.0, + 1978.0, + 327.0, + 1978.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 608, + 1405, + 608, + 1405, + 973, + 298, + 973 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 338, + 1403, + 338, + 1403, + 490, + 298, + 490 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 299, + 229, + 1399, + 229, + 1399, + 323, + 299, + 323 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 298, + 1091, + 1398, + 1091, + 1398, + 1152, + 298, + 1152 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 297, + 1254, + 1399, + 1254, + 1399, + 1317, + 297, + 1317 + ], + "score": 0.899 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.892 + }, + { + "category_id": 0, + "poly": [ + 299, + 538, + 543, + 538, + 543, + 574, + 299, + 574 + ], + "score": 0.883 + }, + { + "category_id": 0, + "poly": [ + 302, + 1024, + 625, + 1024, + 625, + 1056, + 302, + 1056 + ], + "score": 0.879 + }, + { + "category_id": 1, + "poly": [ + 296, + 1455, + 1401, + 1455, + 1401, + 1519, + 296, + 1519 + ], + "score": 0.843 + }, + { + "category_id": 2, + "poly": [ + 837, + 2088, + 865, + 2088, + 865, + 2112, + 837, + 2112 + ], + "score": 0.826 + }, + { + "category_id": 0, + "poly": [ + 300, + 1202, + 488, + 1202, + 488, + 1235, + 300, + 1235 + ], + "score": 0.805 + }, + { + "category_id": 1, + "poly": [ + 298, + 1338, + 1404, + 1338, + 1404, + 1433, + 298, + 1433 + ], + "score": 0.793 + }, + { + "category_id": 1, + "poly": [ + 290, + 2001, + 1290, + 2001, + 1290, + 2034, + 290, + 2034 + ], + "score": 0.725 + }, + { + "category_id": 1, + "poly": [ + 292, + 1658, + 1399, + 1658, + 1399, + 1722, + 292, + 1722 + ], + "score": 0.714 + }, + { + "category_id": 1, + "poly": [ + 294, + 1743, + 1401, + 1743, + 1401, + 1808, + 294, + 1808 + ], + "score": 0.667 + }, + { + "category_id": 1, + "poly": [ + 298, + 1915, + 1403, + 1915, + 1403, + 1980, + 298, + 1980 + ], + "score": 0.639 + }, + { + "category_id": 1, + "poly": [ + 296, + 1540, + 1406, + 1540, + 1406, + 1635, + 296, + 1635 + ], + "score": 0.639 + }, + { + "category_id": 1, + "poly": [ + 293, + 1830, + 1402, + 1830, + 1402, + 1894, + 293, + 1894 + ], + "score": 0.61 + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 531.0, + 549.0, + 531.0, + 549.0, + 583.0, + 292.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1019.0, + 630.0, + 1019.0, + 630.0, + 1064.0, + 298.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2125.0, + 831.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1201.0, + 491.0, + 1201.0, + 491.0, + 1239.0, + 295.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 609.0, + 1405.0, + 609.0, + 1405.0, + 643.0, + 295.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 642.0, + 1402.0, + 642.0, + 1402.0, + 672.0, + 295.0, + 672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 668.0, + 1405.0, + 668.0, + 1405.0, + 703.0, + 293.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 700.0, + 1403.0, + 700.0, + 1403.0, + 735.0, + 293.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 731.0, + 1405.0, + 731.0, + 1405.0, + 765.0, + 295.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 760.0, + 1407.0, + 760.0, + 1407.0, + 797.0, + 293.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 790.0, + 1405.0, + 790.0, + 1405.0, + 826.0, + 293.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 821.0, + 1406.0, + 821.0, + 1406.0, + 855.0, + 292.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 850.0, + 1405.0, + 850.0, + 1405.0, + 890.0, + 293.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 883.0, + 1405.0, + 883.0, + 1405.0, + 916.0, + 296.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 913.0, + 1405.0, + 913.0, + 1405.0, + 949.0, + 293.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 947.0, + 659.0, + 947.0, + 659.0, + 977.0, + 297.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 338.0, + 1403.0, + 338.0, + 1403.0, + 371.0, + 296.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 367.0, + 1403.0, + 367.0, + 1403.0, + 404.0, + 294.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 398.0, + 1405.0, + 398.0, + 1405.0, + 434.0, + 292.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 427.0, + 1405.0, + 427.0, + 1405.0, + 465.0, + 293.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 463.0, + 617.0, + 463.0, + 617.0, + 491.0, + 296.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 229.0, + 1403.0, + 229.0, + 1403.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 260.0, + 1405.0, + 260.0, + 1405.0, + 297.0, + 293.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 293.0, + 388.0, + 293.0, + 388.0, + 327.0, + 291.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1090.0, + 1403.0, + 1090.0, + 1403.0, + 1125.0, + 294.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1119.0, + 745.0, + 1119.0, + 745.0, + 1154.0, + 297.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1252.0, + 1401.0, + 1252.0, + 1401.0, + 1288.0, + 295.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1284.0, + 852.0, + 1284.0, + 852.0, + 1319.0, + 322.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1455.0, + 1406.0, + 1455.0, + 1406.0, + 1491.0, + 295.0, + 1491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1488.0, + 880.0, + 1488.0, + 880.0, + 1520.0, + 323.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1337.0, + 1405.0, + 1337.0, + 1405.0, + 1376.0, + 293.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1372.0, + 1402.0, + 1372.0, + 1402.0, + 1406.0, + 323.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1401.0, + 612.0, + 1401.0, + 612.0, + 1435.0, + 325.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2000.0, + 1293.0, + 2000.0, + 1293.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1655.0, + 1403.0, + 1655.0, + 1403.0, + 1695.0, + 294.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1689.0, + 1057.0, + 1689.0, + 1057.0, + 1722.0, + 324.0, + 1722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1745.0, + 1403.0, + 1745.0, + 1403.0, + 1781.0, + 294.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1774.0, + 1299.0, + 1774.0, + 1299.0, + 1809.0, + 321.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1913.0, + 1404.0, + 1913.0, + 1404.0, + 1950.0, + 296.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1946.0, + 1270.0, + 1946.0, + 1270.0, + 1981.0, + 323.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1542.0, + 1403.0, + 1542.0, + 1403.0, + 1577.0, + 295.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1570.0, + 1406.0, + 1570.0, + 1406.0, + 1611.0, + 320.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1603.0, + 1365.0, + 1603.0, + 1365.0, + 1637.0, + 323.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1830.0, + 1403.0, + 1830.0, + 1403.0, + 1866.0, + 295.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1859.0, + 1039.0, + 1859.0, + 1039.0, + 1895.0, + 322.0, + 1895.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2113, + 836, + 2113 + ], + "score": 0.825 + }, + { + "category_id": 1, + "poly": [ + 299, + 1356, + 1401, + 1356, + 1401, + 1450, + 299, + 1450 + ], + "score": 0.749 + }, + { + "category_id": 1, + "poly": [ + 299, + 1663, + 1401, + 1663, + 1401, + 1758, + 299, + 1758 + ], + "score": 0.743 + }, + { + "category_id": 1, + "poly": [ + 297, + 1243, + 1400, + 1243, + 1400, + 1338, + 297, + 1338 + ], + "score": 0.741 + }, + { + "category_id": 1, + "poly": [ + 293, + 966, + 1401, + 966, + 1401, + 1033, + 293, + 1033 + ], + "score": 0.736 + }, + { + "category_id": 1, + "poly": [ + 297, + 885, + 1403, + 885, + 1403, + 949, + 297, + 949 + ], + "score": 0.735 + }, + { + "category_id": 1, + "poly": [ + 303, + 1550, + 1400, + 1550, + 1400, + 1646, + 303, + 1646 + ], + "score": 0.701 + }, + { + "category_id": 1, + "poly": [ + 291, + 1161, + 1400, + 1161, + 1400, + 1228, + 291, + 1228 + ], + "score": 0.699 + }, + { + "category_id": 1, + "poly": [ + 299, + 1049, + 1400, + 1049, + 1400, + 1144, + 299, + 1144 + ], + "score": 0.693 + }, + { + "category_id": 1, + "poly": [ + 293, + 1468, + 1401, + 1468, + 1401, + 1534, + 293, + 1534 + ], + "score": 0.691 + }, + { + "category_id": 1, + "poly": [ + 295, + 1775, + 1398, + 1775, + 1398, + 1841, + 295, + 1841 + ], + "score": 0.686 + }, + { + "category_id": 1, + "poly": [ + 295, + 1858, + 1399, + 1858, + 1399, + 1923, + 295, + 1923 + ], + "score": 0.666 + }, + { + "category_id": 1, + "poly": [ + 294, + 803, + 1400, + 803, + 1400, + 869, + 294, + 869 + ], + "score": 0.664 + }, + { + "category_id": 1, + "poly": [ + 298, + 720, + 1400, + 720, + 1400, + 787, + 298, + 787 + ], + "score": 0.648 + }, + { + "category_id": 1, + "poly": [ + 298, + 638, + 1401, + 638, + 1401, + 705, + 298, + 705 + ], + "score": 0.628 + }, + { + "category_id": 1, + "poly": [ + 295, + 475, + 1403, + 475, + 1403, + 540, + 295, + 540 + ], + "score": 0.617 + }, + { + "category_id": 1, + "poly": [ + 296, + 556, + 1400, + 556, + 1400, + 623, + 296, + 623 + ], + "score": 0.61 + }, + { + "category_id": 1, + "poly": [ + 299, + 1941, + 1403, + 1941, + 1403, + 2033, + 299, + 2033 + ], + "score": 0.59 + }, + { + "category_id": 1, + "poly": [ + 293, + 228, + 1401, + 228, + 1401, + 295, + 293, + 295 + ], + "score": 0.581 + }, + { + "category_id": 1, + "poly": [ + 294, + 392, + 1401, + 392, + 1401, + 459, + 294, + 459 + ], + "score": 0.565 + }, + { + "category_id": 1, + "poly": [ + 297, + 310, + 1398, + 310, + 1398, + 376, + 297, + 376 + ], + "score": 0.551 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1356.0, + 1406.0, + 1356.0, + 1406.0, + 1393.0, + 295.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1386.0, + 1405.0, + 1386.0, + 1405.0, + 1425.0, + 322.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1415.0, + 398.0, + 1415.0, + 398.0, + 1453.0, + 320.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1661.0, + 1406.0, + 1661.0, + 1406.0, + 1702.0, + 294.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1696.0, + 1405.0, + 1696.0, + 1405.0, + 1730.0, + 323.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1726.0, + 468.0, + 1726.0, + 468.0, + 1758.0, + 323.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1242.0, + 1404.0, + 1242.0, + 1404.0, + 1280.0, + 295.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1277.0, + 1405.0, + 1277.0, + 1405.0, + 1311.0, + 322.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1306.0, + 727.0, + 1306.0, + 727.0, + 1340.0, + 325.0, + 1340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 968.0, + 1403.0, + 968.0, + 1403.0, + 1005.0, + 295.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1000.0, + 1208.0, + 1000.0, + 1208.0, + 1033.0, + 321.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 886.0, + 1405.0, + 886.0, + 1405.0, + 922.0, + 295.0, + 922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 917.0, + 708.0, + 917.0, + 708.0, + 949.0, + 320.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 1551.0, + 1404.0, + 1551.0, + 1404.0, + 1586.0, + 299.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1581.0, + 1404.0, + 1581.0, + 1404.0, + 1619.0, + 322.0, + 1619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1614.0, + 696.0, + 1614.0, + 696.0, + 1648.0, + 324.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1163.0, + 1402.0, + 1163.0, + 1402.0, + 1196.0, + 296.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1193.0, + 1402.0, + 1193.0, + 1402.0, + 1230.0, + 323.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1050.0, + 1405.0, + 1050.0, + 1405.0, + 1084.0, + 295.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1082.0, + 1404.0, + 1082.0, + 1404.0, + 1116.0, + 322.0, + 1116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1112.0, + 468.0, + 1112.0, + 468.0, + 1144.0, + 323.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1465.0, + 1404.0, + 1465.0, + 1404.0, + 1510.0, + 293.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1501.0, + 1188.0, + 1501.0, + 1188.0, + 1535.0, + 321.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1774.0, + 1402.0, + 1774.0, + 1402.0, + 1811.0, + 296.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1808.0, + 1260.0, + 1808.0, + 1260.0, + 1842.0, + 323.0, + 1842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1858.0, + 1404.0, + 1858.0, + 1404.0, + 1894.0, + 295.0, + 1894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1891.0, + 1257.0, + 1891.0, + 1257.0, + 1924.0, + 321.0, + 1924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 806.0, + 1402.0, + 806.0, + 1402.0, + 839.0, + 297.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 836.0, + 1141.0, + 836.0, + 1141.0, + 868.0, + 321.0, + 868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 721.0, + 1402.0, + 721.0, + 1402.0, + 757.0, + 297.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 754.0, + 1355.0, + 754.0, + 1355.0, + 787.0, + 321.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 639.0, + 1405.0, + 639.0, + 1405.0, + 675.0, + 296.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 670.0, + 1016.0, + 670.0, + 1016.0, + 705.0, + 322.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 475.0, + 1405.0, + 475.0, + 1405.0, + 511.0, + 294.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 509.0, + 706.0, + 509.0, + 706.0, + 538.0, + 320.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 556.0, + 1404.0, + 556.0, + 1404.0, + 593.0, + 295.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 587.0, + 1302.0, + 587.0, + 1302.0, + 623.0, + 323.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1940.0, + 1403.0, + 1940.0, + 1403.0, + 1977.0, + 294.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1971.0, + 1407.0, + 1971.0, + 1407.0, + 2009.0, + 320.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1999.0, + 399.0, + 1999.0, + 399.0, + 2035.0, + 320.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 229.0, + 1403.0, + 229.0, + 1403.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 262.0, + 1167.0, + 262.0, + 1167.0, + 295.0, + 322.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 393.0, + 1403.0, + 393.0, + 1403.0, + 429.0, + 296.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 426.0, + 1147.0, + 426.0, + 1147.0, + 459.0, + 321.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 307.0, + 1403.0, + 307.0, + 1403.0, + 352.0, + 293.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 342.0, + 1068.0, + 342.0, + 1068.0, + 378.0, + 322.0, + 378.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.862 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.831 + }, + { + "category_id": 1, + "poly": [ + 298, + 343, + 1401, + 343, + 1401, + 406, + 298, + 406 + ], + "score": 0.759 + }, + { + "category_id": 1, + "poly": [ + 302, + 228, + 1399, + 228, + 1399, + 322, + 302, + 322 + ], + "score": 0.751 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 341.0, + 1405.0, + 341.0, + 1405.0, + 380.0, + 293.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 373.0, + 1245.0, + 373.0, + 1245.0, + 408.0, + 323.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 230.0, + 1403.0, + 230.0, + 1403.0, + 264.0, + 298.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 262.0, + 1404.0, + 262.0, + 1404.0, + 296.0, + 323.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 292.0, + 670.0, + 292.0, + 670.0, + 326.0, + 326.0, + 326.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 301, + 1232, + 1397, + 1232, + 1397, + 1587, + 301, + 1587 + ], + "score": 0.985, + "html": "
ModelsInception-v3ResNet-v2-101Inception-ResNet-v2ens-adv-Inception-ResNet-v2
random brightness99.6%99.7%99.8%99.8%
random brightness ++98.6%98.1%99.1%99.2%
random saturation99.6%99.7%99.9%99.9%
random saturation ++98.6%98.3%99.3%99.3%
random hue99.4%99.6%99.7%99.4%
random hue ++98.6%98.3%99.2%99.1%
random contrast99.5%99.6%99.7%99.6%
random contrast ++98.6%98.2%99.3%99.1%
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1631, + 1404, + 1631, + 1404, + 1816, + 297, + 1816 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 874, + 1404, + 874, + 1404, + 1058, + 298, + 1058 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1830, + 1403, + 1830, + 1403, + 1986, + 299, + 1986 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 367, + 410, + 1404, + 410, + 1404, + 739, + 367, + 739 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 300, + 293, + 1404, + 293, + 1404, + 388, + 300, + 388 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 301, + 762, + 1405, + 762, + 1405, + 859, + 301, + 859 + ], + "score": 0.964 + }, + { + "category_id": 6, + "poly": [ + 297, + 1108, + 1403, + 1108, + 1403, + 1231, + 297, + 1231 + ], + "score": 0.949 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.892 + }, + { + "category_id": 0, + "poly": [ + 298, + 225, + 1030, + 225, + 1030, + 263, + 298, + 263 + ], + "score": 0.88 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.858 + }, + { + "category_id": 2, + "poly": [ + 323, + 2004, + 1410, + 2004, + 1410, + 2034, + 323, + 2034 + ], + "score": 0.736 + }, + { + "category_id": 1, + "poly": [ + 323, + 2004, + 1410, + 2004, + 1410, + 2034, + 323, + 2034 + ], + "score": 0.151 + }, + { + "category_id": 13, + "poly": [ + 1117, + 445, + 1250, + 445, + 1250, + 485, + 1117, + 485 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\delta _ { \\mathrm { m a x } } = \\frac { 3 2 } { 2 5 5 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1048, + 705, + 1197, + 705, + 1197, + 737, + 1048, + 737 + ], + "score": 0.93, + "latex": "\\beta _ { l o w e r } = 0 . 5" + }, + { + "category_id": 13, + "poly": [ + 1097, + 593, + 1258, + 593, + 1258, + 627, + 1097, + 627 + ], + "score": 0.92, + "latex": "[ - \\theta _ { \\mathrm { m a x } } , \\theta _ { \\mathrm { m a x } } ]" + }, + { + "category_id": 13, + "poly": [ + 906, + 793, + 947, + 793, + 947, + 828, + 906, + 828 + ], + "score": 0.91, + "latex": "\\hat { X _ { n } }" + }, + { + "category_id": 13, + "poly": [ + 1196, + 668, + 1372, + 668, + 1372, + 703, + 1196, + 703 + ], + "score": 0.91, + "latex": "[ \\beta _ { l o w e r } , \\beta _ { u p p e r } ]" + }, + { + "category_id": 13, + "poly": [ + 721, + 624, + 761, + 624, + 761, + 660, + 721, + 660 + ], + "score": 0.91, + "latex": "{ \\hat { X _ { n } } }" + }, + { + "category_id": 13, + "poly": [ + 901, + 628, + 1032, + 628, + 1032, + 661, + 901, + 661 + ], + "score": 0.91, + "latex": "\\theta _ { \\mathrm { m a x } } = 0 . 2" + }, + { + "category_id": 13, + "poly": [ + 871, + 700, + 911, + 700, + 911, + 736, + 871, + 736 + ], + "score": 0.9, + "latex": "\\hat { X _ { n } }" + }, + { + "category_id": 13, + "poly": [ + 936, + 444, + 977, + 444, + 977, + 479, + 936, + 479 + ], + "score": 0.9, + "latex": "\\hat { X _ { n } }" + }, + { + "category_id": 13, + "poly": [ + 1114, + 518, + 1154, + 518, + 1154, + 553, + 1114, + 553 + ], + "score": 0.9, + "latex": "\\hat { X _ { n } }" + }, + { + "category_id": 13, + "poly": [ + 1241, + 411, + 1401, + 411, + 1401, + 446, + 1241, + 446 + ], + "score": 0.9, + "latex": "[ - \\delta _ { \\mathrm { m a x } } , \\delta _ { \\mathrm { m a x } } ]" + }, + { + "category_id": 13, + "poly": [ + 487, + 556, + 637, + 556, + 637, + 588, + 487, + 588 + ], + "score": 0.89, + "latex": "\\alpha _ { u p p e r } = 1 . 5" + }, + { + "category_id": 13, + "poly": [ + 1244, + 706, + 1393, + 706, + 1393, + 740, + 1244, + 740 + ], + "score": 0.89, + "latex": "\\beta _ { u p p e r } = 1 . 5" + }, + { + "category_id": 13, + "poly": [ + 398, + 521, + 579, + 521, + 579, + 556, + 398, + 556 + ], + "score": 0.89, + "latex": "[ \\alpha _ { l o w e r } , \\alpha _ { u p p e r } ]" + }, + { + "category_id": 13, + "poly": [ + 980, + 1140, + 1046, + 1140, + 1046, + 1168, + 980, + 1168 + ], + "score": 0.86, + "latex": "^ { 6 6 } { + + ^ { 9 9 } }" + }, + { + "category_id": 13, + "poly": [ + 1264, + 1324, + 1339, + 1324, + 1339, + 1353, + 1264, + 1353 + ], + "score": 0.86, + "latex": "\\overline { { 9 9 . 8 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 792, + 669, + 813, + 669, + 813, + 700, + 792, + 700 + ], + "score": 0.85, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 1265, + 1388, + 1339, + 1388, + 1339, + 1416, + 1265, + 1416 + ], + "score": 0.84, + "latex": "9 9 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 1265, + 1357, + 1339, + 1357, + 1339, + 1384, + 1265, + 1384 + ], + "score": 0.84, + "latex": "9 9 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 543, + 1756, + 609, + 1756, + 609, + 1785, + 543, + 1785 + ], + "score": 0.84, + "latex": "^ { 6 6 } { + } { + } ^ { , 9 } )" + }, + { + "category_id": 13, + "poly": [ + 1265, + 1422, + 1339, + 1422, + 1339, + 1450, + 1265, + 1450 + ], + "score": 0.83, + "latex": "9 9 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 899, + 1486, + 973, + 1486, + 973, + 1514, + 899, + 1514 + ], + "score": 0.83, + "latex": "9 8 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 1082, + 1325, + 1156, + 1325, + 1156, + 1353, + 1082, + 1353 + ], + "score": 0.83, + "latex": "\\overline { { 9 9 . 8 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 898, + 1551, + 974, + 1551, + 974, + 1580, + 898, + 1580 + ], + "score": 0.83, + "latex": "9 8 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1265, + 1486, + 1339, + 1486, + 1339, + 1513, + 1265, + 1513 + ], + "score": 0.83, + "latex": "9 9 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 701, + 998, + 763, + 998, + 763, + 1026, + 701, + 1026 + ], + "score": 0.83, + "latex": "^ { 6 6 } + + ^ { 7 }" + }, + { + "category_id": 13, + "poly": [ + 1265, + 1551, + 1340, + 1551, + 1340, + 1579, + 1265, + 1579 + ], + "score": 0.83, + "latex": "9 9 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 1293, + 525, + 1404, + 525, + 1404, + 554, + 1293, + 554 + ], + "score": 0.83, + "latex": "\\alpha _ { l o w e r } =" + }, + { + "category_id": 13, + "poly": [ + 1265, + 1519, + 1339, + 1519, + 1339, + 1546, + 1265, + 1546 + ], + "score": 0.82, + "latex": "9 9 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 1082, + 1422, + 1156, + 1422, + 1156, + 1450, + 1082, + 1450 + ], + "score": 0.82, + "latex": "9 9 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 1081, + 1388, + 1156, + 1388, + 1156, + 1416, + 1081, + 1416 + ], + "score": 0.82, + "latex": "9 9 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 1082, + 1551, + 1156, + 1551, + 1156, + 1580, + 1082, + 1580 + ], + "score": 0.82, + "latex": "9 9 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 899, + 1423, + 973, + 1423, + 973, + 1450, + 899, + 1450 + ], + "score": 0.82, + "latex": "9 8 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 898, + 1357, + 973, + 1357, + 973, + 1385, + 898, + 1385 + ], + "score": 0.82, + "latex": "9 8 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 716, + 1486, + 790, + 1486, + 790, + 1514, + 716, + 1514 + ], + "score": 0.82, + "latex": "9 8 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 715, + 1551, + 790, + 1551, + 790, + 1580, + 715, + 1580 + ], + "score": 0.82, + "latex": "9 8 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 716, + 1326, + 790, + 1326, + 790, + 1353, + 716, + 1353 + ], + "score": 0.82, + "latex": "9 9 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 898, + 1325, + 973, + 1325, + 973, + 1352, + 898, + 1352 + ], + "score": 0.81, + "latex": "{ \\overline { { 9 9 . 7 \\% } } }" + }, + { + "category_id": 13, + "poly": [ + 1082, + 1486, + 1156, + 1486, + 1156, + 1514, + 1082, + 1514 + ], + "score": 0.81, + "latex": "9 9 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1082, + 1357, + 1156, + 1357, + 1156, + 1385, + 1082, + 1385 + ], + "score": 0.81, + "latex": "9 9 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 716, + 1520, + 790, + 1520, + 790, + 1546, + 716, + 1546 + ], + "score": 0.81, + "latex": "9 9 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1082, + 1520, + 1156, + 1520, + 1156, + 1546, + 1082, + 1546 + ], + "score": 0.81, + "latex": "9 9 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 716, + 1423, + 790, + 1423, + 790, + 1450, + 716, + 1450 + ], + "score": 0.8, + "latex": "9 8 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 1265, + 1455, + 1339, + 1455, + 1339, + 1481, + 1265, + 1481 + ], + "score": 0.8, + "latex": "9 9 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 899, + 1520, + 973, + 1520, + 973, + 1546, + 899, + 1546 + ], + "score": 0.8, + "latex": "9 9 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 716, + 1358, + 790, + 1358, + 790, + 1385, + 716, + 1385 + ], + "score": 0.8, + "latex": "9 8 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 697, + 595, + 714, + 595, + 714, + 621, + 697, + 621 + ], + "score": 0.8, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 716, + 1388, + 790, + 1388, + 790, + 1416, + 716, + 1416 + ], + "score": 0.8, + "latex": "9 9 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 842, + 414, + 859, + 414, + 859, + 440, + 842, + 440 + ], + "score": 0.79, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 898, + 1389, + 973, + 1389, + 973, + 1416, + 898, + 1416 + ], + "score": 0.79, + "latex": "9 9 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 899, + 1455, + 973, + 1455, + 973, + 1481, + 899, + 1481 + ], + "score": 0.79, + "latex": "9 9 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 716, + 1455, + 789, + 1455, + 789, + 1481, + 716, + 1481 + ], + "score": 0.77, + "latex": "9 9 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 1082, + 1454, + 1156, + 1454, + 1156, + 1481, + 1082, + 1481 + ], + "score": 0.77, + "latex": "9 9 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 917, + 494, + 940, + 494, + 940, + 516, + 917, + 516 + ], + "score": 0.77, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 1246, + 796, + 1304, + 796, + 1304, + 831, + 1246, + 831 + ], + "score": 0.74, + "latex": "[ 0 , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 568, + 1427, + 606, + 1427, + 606, + 1450, + 568, + 1450 + ], + "score": 0.64, + "latex": "^ { + + }" + }, + { + "category_id": 13, + "poly": [ + 557, + 1556, + 595, + 1556, + 595, + 1579, + 557, + 1579 + ], + "score": 0.56, + "latex": "^ { + + }" + }, + { + "category_id": 13, + "poly": [ + 534, + 1491, + 571, + 1491, + 571, + 1514, + 534, + 1514 + ], + "score": 0.46, + "latex": "^ { + + }" + }, + { + "category_id": 13, + "poly": [ + 570, + 1362, + 607, + 1362, + 607, + 1385, + 570, + 1385 + ], + "score": 0.43, + "latex": "^ { + + }" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1107.0, + 1404.0, + 1107.0, + 1404.0, + 1144.0, + 292.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1140.0, + 979.0, + 1140.0, + 979.0, + 1173.0, + 295.0, + 1173.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1047.0, + 1140.0, + 1405.0, + 1140.0, + 1405.0, + 1173.0, + 1047.0, + 1173.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1171.0, + 1404.0, + 1171.0, + 1404.0, + 1203.0, + 292.0, + 1203.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1198.0, + 1081.0, + 1198.0, + 1081.0, + 1237.0, + 292.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 224.0, + 1032.0, + 224.0, + 1032.0, + 268.0, + 297.0, + 268.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": [ + 331.0, + 1999.0, + 1413.0, + 1999.0, + 1413.0, + 2039.0, + 331.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1633.0, + 1402.0, + 1633.0, + 1402.0, + 1665.0, + 297.0, + 1665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1661.0, + 1407.0, + 1661.0, + 1407.0, + 1698.0, + 292.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1694.0, + 1404.0, + 1694.0, + 1404.0, + 1726.0, + 296.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1722.0, + 1405.0, + 1722.0, + 1405.0, + 1758.0, + 294.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1753.0, + 542.0, + 1753.0, + 542.0, + 1790.0, + 292.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 1753.0, + 1406.0, + 1753.0, + 1406.0, + 1790.0, + 610.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1785.0, + 613.0, + 1785.0, + 613.0, + 1820.0, + 294.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 873.0, + 1405.0, + 873.0, + 1405.0, + 909.0, + 294.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 906.0, + 1405.0, + 906.0, + 1405.0, + 938.0, + 294.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 933.0, + 1405.0, + 933.0, + 1405.0, + 970.0, + 293.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 966.0, + 1404.0, + 966.0, + 1404.0, + 1002.0, + 294.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 995.0, + 700.0, + 995.0, + 700.0, + 1032.0, + 293.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 995.0, + 1404.0, + 995.0, + 1404.0, + 1032.0, + 764.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1027.0, + 833.0, + 1027.0, + 833.0, + 1062.0, + 294.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1831.0, + 1400.0, + 1831.0, + 1400.0, + 1864.0, + 297.0, + 1864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1863.0, + 1404.0, + 1863.0, + 1404.0, + 1896.0, + 295.0, + 1896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1893.0, + 1404.0, + 1893.0, + 1404.0, + 1927.0, + 295.0, + 1927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1923.0, + 1404.0, + 1923.0, + 1404.0, + 1960.0, + 294.0, + 1960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1955.0, + 1097.0, + 1955.0, + 1097.0, + 1988.0, + 297.0, + 1988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 406.0, + 841.0, + 406.0, + 841.0, + 450.0, + 364.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 406.0, + 1240.0, + 406.0, + 1240.0, + 450.0, + 860.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 439.0, + 935.0, + 439.0, + 935.0, + 490.0, + 389.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 439.0, + 1116.0, + 439.0, + 1116.0, + 490.0, + 978.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1251.0, + 460.0, + 1261.0, + 460.0, + 1261.0, + 489.0, + 1251.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 486.0, + 916.0, + 486.0, + 916.0, + 523.0, + 367.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 941.0, + 486.0, + 1405.0, + 486.0, + 1405.0, + 523.0, + 941.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 518.0, + 397.0, + 518.0, + 397.0, + 562.0, + 394.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 580.0, + 518.0, + 1113.0, + 518.0, + 1113.0, + 562.0, + 580.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1155.0, + 518.0, + 1292.0, + 518.0, + 1292.0, + 562.0, + 1155.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 553.0, + 486.0, + 553.0, + 486.0, + 592.0, + 394.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 638.0, + 553.0, + 650.0, + 553.0, + 650.0, + 592.0, + 638.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 592.0, + 696.0, + 592.0, + 696.0, + 629.0, + 366.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 592.0, + 1096.0, + 592.0, + 1096.0, + 629.0, + 715.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1259.0, + 592.0, + 1403.0, + 592.0, + 1403.0, + 629.0, + 1259.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 627.0, + 720.0, + 627.0, + 720.0, + 665.0, + 393.0, + 665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 627.0, + 900.0, + 627.0, + 900.0, + 665.0, + 762.0, + 665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1033.0, + 627.0, + 1043.0, + 627.0, + 1043.0, + 665.0, + 1033.0, + 665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 661.0, + 791.0, + 661.0, + 791.0, + 707.0, + 366.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 814.0, + 661.0, + 1195.0, + 661.0, + 1195.0, + 707.0, + 814.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 661.0, + 1406.0, + 661.0, + 1406.0, + 707.0, + 1373.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 701.0, + 870.0, + 701.0, + 870.0, + 744.0, + 392.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 912.0, + 701.0, + 1047.0, + 701.0, + 1047.0, + 744.0, + 912.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1198.0, + 701.0, + 1243.0, + 701.0, + 1243.0, + 744.0, + 1198.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 701.0, + 1407.0, + 701.0, + 1407.0, + 744.0, + 1394.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 294.0, + 1405.0, + 294.0, + 1405.0, + 328.0, + 296.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 326.0, + 1404.0, + 326.0, + 1404.0, + 360.0, + 295.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 355.0, + 871.0, + 355.0, + 871.0, + 393.0, + 295.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 759.0, + 1405.0, + 759.0, + 1405.0, + 799.0, + 294.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 796.0, + 905.0, + 796.0, + 905.0, + 833.0, + 295.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 796.0, + 1245.0, + 796.0, + 1245.0, + 833.0, + 948.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1305.0, + 796.0, + 1405.0, + 796.0, + 1405.0, + 833.0, + 1305.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 825.0, + 1133.0, + 825.0, + 1133.0, + 866.0, + 296.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1999.0, + 1413.0, + 1999.0, + 1413.0, + 2039.0, + 331.0, + 2039.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 297, + 1071, + 1405, + 1071, + 1405, + 1422, + 297, + 1422 + ], + "score": 0.985, + "html": "
ModelsInception-v3ResNet-v2-101Inception-ResNet-v2ens-adv-Inception-ResNet-v2
randomsatura-tionrandomsatura-tion++randomrandomrandomrandom satura-tion++randomsatura-tionrandom satura-tion++
satura-tionsatura-tion++satura-tion
FGSM-234.2%66.5%27.9%73.6%66.3%81.5%85.2%95.7%
FGSM-531.8%55.2%21.1%55.7%62.1%74.6%87.0%95.0%
FGSM-1033.5%52.2%20.7%46.5%61.7%71.4%90.1%93.9%
DeepFool82.6%98.1%79.6%97.6%64.7%98.2%78.5%99.0%
C&W39.2%97.2%47.5%96.9%51.7%97.7%50.9%99.1%
" + }, + { + "category_id": 5, + "poly": [ + 297, + 444, + 1405, + 444, + 1405, + 796, + 297, + 796 + ], + "score": 0.984, + "html": "
ModelsInception-v3ResNet-v2-101Inception-ResNet-v2ens-adv-Inception-ResNet-v2
randombright-nessrandombright-ness++randombright-nessrandombright-ness++randombright-nessrandombright-ness++randombright-nessrandombright-ness++
FGSM-234.9%67.0%28.5%73.5%66.4%81.3%85.0%95.8%
FGSM-531.9%55.5%21.6%55.7%62.4%74.7%87.6%95.0%
FGSM-1033.2%52.9%20.9%47.2%61.8%71.5%90.4%94.5%
DeepFool79.4%98.1%82.3%97.5%62.8%98.3%79.0%99.1%
C&W34.5%96.9%47.7%97.2%51.3%98.0%42.3%98.6%
" + }, + { + "category_id": 5, + "poly": [ + 297, + 1668, + 1405, + 1668, + 1405, + 1989, + 297, + 1989 + ], + "score": 0.984, + "html": "
ModelsInception-v3ResNet-v2-101Inception-ResNet-v2ens-adv-Inception-ResNet-v2
randomhuerandomhue++randomhuerandomhue++randomhuerandomhue++randomhuerandomhue++
FGSM-238.1%69.0%32.0%74.9%68.6%83.0%87.4%95.8%
FGSM-533.9%57.2%23.0%57.6%64.0%76.1%86.7%93.9%
FGSM-1036.4%54.2%22.1%48.4%63.0%72.5%88.0%91.3%
DeepFool95.0%97.9%91.2%97.6%86.5%98.4%96.8%99.1%
C&W72.1%97.3%74.0%97.0%77.4%98.2%81.1%98.8%
" + }, + { + "category_id": 6, + "poly": [ + 295, + 1544, + 1405, + 1544, + 1405, + 1667, + 295, + 1667 + ], + "score": 0.961 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.908 + }, + { + "category_id": 6, + "poly": [ + 295, + 287, + 1405, + 287, + 1405, + 441, + 295, + 441 + ], + "score": 0.88 + }, + { + "category_id": 2, + "poly": [ + 836, + 2087, + 865, + 2087, + 865, + 2113, + 836, + 2113 + ], + "score": 0.862 + }, + { + "category_id": 6, + "poly": [ + 295, + 915, + 1405, + 915, + 1405, + 1069, + 295, + 1069 + ], + "score": 0.835 + }, + { + "category_id": 1, + "poly": [ + 295, + 915, + 1405, + 915, + 1405, + 1069, + 295, + 1069 + ], + "score": 0.241 + }, + { + "category_id": 13, + "poly": [ + 1185, + 726, + 1258, + 726, + 1258, + 752, + 1185, + 752 + ], + "score": 0.87, + "latex": "\\overline { { 7 9 . 0 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 708, + 1255, + 781, + 1255, + 781, + 1283, + 708, + 1283 + ], + "score": 0.86, + "latex": "2 7 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 828, + 1823, + 901, + 1823, + 901, + 1850, + 828, + 1850 + ], + "score": 0.86, + "latex": "\\overline { { 7 4 . 9 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 1304, + 1321, + 1378, + 1321, + 1378, + 1347, + 1304, + 1347 + ], + "score": 0.86, + "latex": "\\overline { { 9 3 . 9 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 1304, + 1823, + 1378, + 1823, + 1378, + 1851, + 1304, + 1851 + ], + "score": 0.85, + "latex": "9 5 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 1186, + 1322, + 1258, + 1322, + 1258, + 1347, + 1186, + 1347 + ], + "score": 0.85, + "latex": "9 0 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 589, + 1823, + 662, + 1823, + 662, + 1850, + 589, + 1850 + ], + "score": 0.85, + "latex": "\\overline { { 6 9 . 0 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 708, + 1891, + 781, + 1891, + 781, + 1914, + 708, + 1914 + ], + "score": 0.85, + "latex": "2 2 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 589, + 726, + 662, + 726, + 662, + 752, + 589, + 752 + ], + "score": 0.85, + "latex": "9 8 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 1066, + 727, + 1139, + 727, + 1139, + 752, + 1066, + 752 + ], + "score": 0.85, + "latex": "9 8 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 708, + 1388, + 781, + 1388, + 781, + 1412, + 708, + 1412 + ], + "score": 0.85, + "latex": "4 7 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 589, + 1321, + 661, + 1321, + 661, + 1347, + 589, + 1347 + ], + "score": 0.85, + "latex": "5 2 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1304, + 1255, + 1378, + 1255, + 1378, + 1283, + 1304, + 1283 + ], + "score": 0.85, + "latex": "9 5 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 588, + 1256, + 662, + 1256, + 662, + 1283, + 588, + 1283 + ], + "score": 0.85, + "latex": "6 6 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1066, + 1323, + 1139, + 1323, + 1139, + 1347, + 1066, + 1347 + ], + "score": 0.85, + "latex": "7 1 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 708, + 1823, + 781, + 1823, + 781, + 1851, + 708, + 1851 + ], + "score": 0.85, + "latex": "3 2 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 1304, + 1855, + 1378, + 1855, + 1378, + 1882, + 1304, + 1882 + ], + "score": 0.85, + "latex": "9 3 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 1304, + 661, + 1378, + 661, + 1378, + 688, + 1304, + 688 + ], + "score": 0.85, + "latex": "9 5 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 1067, + 1256, + 1139, + 1256, + 1139, + 1283, + 1067, + 1283 + ], + "score": 0.85, + "latex": "8 1 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 828, + 1891, + 900, + 1891, + 900, + 1914, + 828, + 1914 + ], + "score": 0.85, + "latex": "4 8 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 1186, + 1823, + 1259, + 1823, + 1259, + 1851, + 1186, + 1851 + ], + "score": 0.85, + "latex": "8 7 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 828, + 1322, + 900, + 1322, + 900, + 1347, + 828, + 1347 + ], + "score": 0.85, + "latex": "4 6 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 708, + 661, + 781, + 661, + 781, + 687, + 708, + 687 + ], + "score": 0.85, + "latex": "2 1 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 1305, + 1389, + 1378, + 1389, + 1378, + 1412, + 1305, + 1412 + ], + "score": 0.85, + "latex": "9 9 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 1067, + 1823, + 1139, + 1823, + 1139, + 1851, + 1067, + 1851 + ], + "score": 0.84, + "latex": "\\overline { { 8 3 . 0 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 708, + 1321, + 781, + 1321, + 781, + 1347, + 708, + 1347 + ], + "score": 0.84, + "latex": "2 0 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 1186, + 1255, + 1258, + 1255, + 1258, + 1283, + 1186, + 1283 + ], + "score": 0.84, + "latex": "8 5 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1186, + 627, + 1259, + 627, + 1259, + 656, + 1186, + 656 + ], + "score": 0.84, + "latex": "8 5 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 828, + 1388, + 901, + 1388, + 901, + 1412, + 828, + 1412 + ], + "score": 0.84, + "latex": "9 6 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 947, + 1322, + 1020, + 1322, + 1020, + 1347, + 947, + 1347 + ], + "score": 0.84, + "latex": "6 1 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 1066, + 628, + 1140, + 628, + 1140, + 655, + 1066, + 655 + ], + "score": 0.84, + "latex": "8 1 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 1304, + 1288, + 1378, + 1288, + 1378, + 1315, + 1304, + 1315 + ], + "score": 0.84, + "latex": "9 5 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 708, + 1856, + 781, + 1856, + 781, + 1882, + 708, + 1882 + ], + "score": 0.84, + "latex": "2 3 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 589, + 1889, + 661, + 1889, + 661, + 1914, + 589, + 1914 + ], + "score": 0.84, + "latex": "5 4 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 828, + 1256, + 901, + 1256, + 901, + 1283, + 828, + 1283 + ], + "score": 0.84, + "latex": "7 3 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 1186, + 1388, + 1258, + 1388, + 1258, + 1412, + 1186, + 1412 + ], + "score": 0.84, + "latex": "5 0 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 589, + 661, + 662, + 661, + 662, + 687, + 589, + 687 + ], + "score": 0.84, + "latex": "5 5 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1304, + 628, + 1378, + 628, + 1378, + 656, + 1304, + 656 + ], + "score": 0.84, + "latex": "9 5 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 947, + 1389, + 1020, + 1389, + 1020, + 1412, + 947, + 1412 + ], + "score": 0.84, + "latex": "5 1 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 469, + 627, + 543, + 627, + 543, + 655, + 469, + 655 + ], + "score": 0.84, + "latex": "3 4 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 708, + 627, + 781, + 627, + 781, + 655, + 708, + 655 + ], + "score": 0.84, + "latex": "2 8 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 588, + 628, + 662, + 628, + 662, + 655, + 588, + 655 + ], + "score": 0.84, + "latex": "6 7 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 1304, + 1354, + 1378, + 1354, + 1378, + 1380, + 1304, + 1380 + ], + "score": 0.84, + "latex": "\\overline { { 9 9 . 0 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 828, + 1355, + 900, + 1355, + 900, + 1380, + 828, + 1380 + ], + "score": 0.84, + "latex": "9 7 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 1066, + 1890, + 1139, + 1890, + 1139, + 1914, + 1066, + 1914 + ], + "score": 0.84, + "latex": "7 2 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 589, + 1289, + 661, + 1289, + 661, + 1315, + 589, + 1315 + ], + "score": 0.84, + "latex": "5 5 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 948, + 1890, + 1020, + 1890, + 1020, + 1914, + 948, + 1914 + ], + "score": 0.84, + "latex": "6 3 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 1186, + 695, + 1258, + 695, + 1258, + 720, + 1186, + 720 + ], + "score": 0.84, + "latex": "9 0 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 827, + 628, + 901, + 628, + 901, + 655, + 827, + 655 + ], + "score": 0.84, + "latex": "7 3 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 946, + 627, + 1020, + 627, + 1020, + 655, + 946, + 655 + ], + "score": 0.84, + "latex": "6 6 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 947, + 1255, + 1020, + 1255, + 1020, + 1283, + 947, + 1283 + ], + "score": 0.84, + "latex": "6 6 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 708, + 694, + 781, + 694, + 781, + 720, + 708, + 720 + ], + "score": 0.83, + "latex": "2 0 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 1066, + 1856, + 1139, + 1856, + 1139, + 1882, + 1066, + 1882 + ], + "score": 0.83, + "latex": "7 6 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 1186, + 1855, + 1258, + 1855, + 1258, + 1882, + 1186, + 1882 + ], + "score": 0.83, + "latex": "8 6 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 588, + 1855, + 661, + 1855, + 661, + 1882, + 588, + 1882 + ], + "score": 0.83, + "latex": "5 7 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 589, + 1387, + 662, + 1387, + 662, + 1412, + 589, + 1412 + ], + "score": 0.83, + "latex": "9 7 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1186, + 1889, + 1258, + 1889, + 1258, + 1914, + 1186, + 1914 + ], + "score": 0.83, + "latex": "\\overline { { 8 8 . 0 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 1185, + 1354, + 1258, + 1354, + 1258, + 1380, + 1185, + 1380 + ], + "score": 0.83, + "latex": "7 8 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 708, + 1355, + 781, + 1355, + 781, + 1380, + 708, + 1380 + ], + "score": 0.83, + "latex": "7 9 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 1066, + 1924, + 1139, + 1924, + 1139, + 1946, + 1066, + 1946 + ], + "score": 0.83, + "latex": "9 8 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 1186, + 1289, + 1258, + 1289, + 1258, + 1315, + 1186, + 1315 + ], + "score": 0.83, + "latex": "8 7 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 947, + 1823, + 1020, + 1823, + 1020, + 1851, + 947, + 1851 + ], + "score": 0.83, + "latex": "6 8 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 828, + 1856, + 901, + 1856, + 901, + 1882, + 828, + 1882 + ], + "score": 0.83, + "latex": "5 7 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 589, + 694, + 661, + 694, + 661, + 720, + 589, + 720 + ], + "score": 0.83, + "latex": "5 2 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 1186, + 661, + 1259, + 661, + 1259, + 687, + 1186, + 687 + ], + "score": 0.83, + "latex": "8 7 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 947, + 1290, + 1020, + 1290, + 1020, + 1315, + 947, + 1315 + ], + "score": 0.83, + "latex": "6 2 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 1304, + 726, + 1378, + 726, + 1378, + 752, + 1304, + 752 + ], + "score": 0.83, + "latex": "9 9 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 1066, + 1388, + 1139, + 1388, + 1139, + 1412, + 1066, + 1412 + ], + "score": 0.83, + "latex": "9 7 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 469, + 660, + 543, + 660, + 543, + 687, + 469, + 687 + ], + "score": 0.83, + "latex": "3 1 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 709, + 726, + 781, + 726, + 781, + 752, + 709, + 752 + ], + "score": 0.83, + "latex": "8 2 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 947, + 661, + 1020, + 661, + 1020, + 687, + 947, + 687 + ], + "score": 0.83, + "latex": "6 2 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 1186, + 1955, + 1258, + 1955, + 1258, + 1979, + 1186, + 1979 + ], + "score": 0.83, + "latex": "8 1 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 589, + 1354, + 661, + 1354, + 661, + 1380, + 589, + 1380 + ], + "score": 0.83, + "latex": "9 8 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 709, + 1924, + 781, + 1924, + 781, + 1947, + 709, + 1947 + ], + "score": 0.83, + "latex": "9 1 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1066, + 694, + 1139, + 694, + 1139, + 720, + 1066, + 720 + ], + "score": 0.83, + "latex": "7 1 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 469, + 1254, + 543, + 1254, + 543, + 1283, + 469, + 1283 + ], + "score": 0.83, + "latex": "3 4 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 947, + 1856, + 1020, + 1856, + 1020, + 1882, + 947, + 1882 + ], + "score": 0.83, + "latex": "6 4 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 1305, + 694, + 1378, + 694, + 1378, + 720, + 1305, + 720 + ], + "score": 0.83, + "latex": "9 4 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 469, + 1887, + 542, + 1887, + 542, + 1914, + 469, + 1914 + ], + "score": 0.83, + "latex": "3 6 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 468, + 1855, + 543, + 1855, + 543, + 1882, + 468, + 1882 + ], + "score": 0.82, + "latex": "3 3 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 1305, + 1889, + 1378, + 1889, + 1378, + 1914, + 1305, + 1914 + ], + "score": 0.82, + "latex": "9 1 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 1305, + 1955, + 1378, + 1955, + 1378, + 1979, + 1305, + 1979 + ], + "score": 0.82, + "latex": "9 8 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 828, + 726, + 900, + 726, + 900, + 752, + 828, + 752 + ], + "score": 0.82, + "latex": "9 7 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 589, + 1923, + 661, + 1923, + 661, + 1947, + 589, + 1947 + ], + "score": 0.82, + "latex": "9 7 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 828, + 1956, + 900, + 1956, + 900, + 1979, + 828, + 1979 + ], + "score": 0.82, + "latex": "9 7 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 947, + 695, + 1020, + 695, + 1020, + 720, + 947, + 720 + ], + "score": 0.82, + "latex": "6 1 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 828, + 695, + 900, + 695, + 900, + 720, + 828, + 720 + ], + "score": 0.82, + "latex": "4 7 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 709, + 1955, + 781, + 1955, + 781, + 1979, + 709, + 1979 + ], + "score": 0.82, + "latex": "7 4 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 469, + 1320, + 542, + 1320, + 542, + 1347, + 469, + 1347 + ], + "score": 0.82, + "latex": "3 3 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 828, + 661, + 901, + 661, + 901, + 687, + 828, + 687 + ], + "score": 0.82, + "latex": "5 5 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 469, + 1822, + 543, + 1822, + 543, + 1851, + 469, + 1851 + ], + "score": 0.82, + "latex": "3 8 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 1066, + 1955, + 1139, + 1955, + 1139, + 1979, + 1066, + 1979 + ], + "score": 0.82, + "latex": "9 8 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1066, + 1289, + 1139, + 1289, + 1139, + 1315, + 1066, + 1315 + ], + "score": 0.82, + "latex": "7 4 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 828, + 1289, + 900, + 1289, + 900, + 1315, + 828, + 1315 + ], + "score": 0.82, + "latex": "5 5 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 1185, + 759, + 1259, + 759, + 1259, + 786, + 1185, + 786 + ], + "score": 0.82, + "latex": "4 2 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 708, + 1290, + 781, + 1290, + 781, + 1315, + 708, + 1315 + ], + "score": 0.82, + "latex": "2 1 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 828, + 1924, + 900, + 1924, + 900, + 1947, + 828, + 1947 + ], + "score": 0.82, + "latex": "9 7 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 588, + 758, + 662, + 758, + 662, + 786, + 588, + 786 + ], + "score": 0.82, + "latex": "9 6 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 1305, + 1925, + 1377, + 1925, + 1377, + 1947, + 1305, + 1947 + ], + "score": 0.82, + "latex": "9 9 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 1304, + 759, + 1378, + 759, + 1378, + 786, + 1304, + 786 + ], + "score": 0.81, + "latex": "9 8 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 1065, + 660, + 1139, + 660, + 1139, + 687, + 1065, + 687 + ], + "score": 0.81, + "latex": "7 4 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 1186, + 1923, + 1258, + 1923, + 1258, + 1947, + 1186, + 1947 + ], + "score": 0.81, + "latex": "9 6 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 948, + 1924, + 1020, + 1924, + 1020, + 1946, + 948, + 1946 + ], + "score": 0.81, + "latex": "8 6 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 827, + 759, + 901, + 759, + 901, + 785, + 827, + 785 + ], + "score": 0.81, + "latex": "9 7 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1066, + 1355, + 1139, + 1355, + 1139, + 1380, + 1066, + 1380 + ], + "score": 0.81, + "latex": "9 8 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 469, + 693, + 542, + 693, + 542, + 720, + 469, + 720 + ], + "score": 0.81, + "latex": "3 3 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 947, + 1956, + 1020, + 1956, + 1020, + 1979, + 947, + 1979 + ], + "score": 0.81, + "latex": "7 7 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 947, + 1355, + 1019, + 1355, + 1019, + 1380, + 947, + 1380 + ], + "score": 0.81, + "latex": "6 4 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 469, + 1288, + 542, + 1288, + 542, + 1315, + 469, + 1315 + ], + "score": 0.81, + "latex": "3 1 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 468, + 725, + 543, + 725, + 543, + 752, + 468, + 752 + ], + "score": 0.8, + "latex": "7 9 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 947, + 727, + 1020, + 727, + 1020, + 752, + 947, + 752 + ], + "score": 0.8, + "latex": "6 2 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 708, + 758, + 781, + 758, + 781, + 786, + 708, + 786 + ], + "score": 0.8, + "latex": "4 7 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 589, + 1955, + 661, + 1955, + 661, + 1979, + 589, + 1979 + ], + "score": 0.8, + "latex": "9 7 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 1066, + 759, + 1139, + 759, + 1139, + 786, + 1066, + 786 + ], + "score": 0.8, + "latex": "9 8 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 469, + 1921, + 542, + 1921, + 542, + 1947, + 469, + 1947 + ], + "score": 0.8, + "latex": "9 5 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 469, + 1385, + 543, + 1385, + 543, + 1413, + 469, + 1413 + ], + "score": 0.79, + "latex": "{ \\overline { { 3 9 . 2 \\% } } }" + }, + { + "category_id": 13, + "poly": [ + 947, + 760, + 1020, + 760, + 1020, + 786, + 947, + 786 + ], + "score": 0.79, + "latex": "5 1 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 469, + 1952, + 542, + 1952, + 542, + 1980, + 469, + 1980 + ], + "score": 0.79, + "latex": "7 2 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 470, + 1353, + 542, + 1353, + 542, + 1380, + 470, + 1380 + ], + "score": 0.78, + "latex": "8 2 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 469, + 758, + 543, + 758, + 543, + 786, + 469, + 786 + ], + "score": 0.77, + "latex": "3 4 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1300, + 601, + 1384, + 601, + 1384, + 623, + 1300, + 623 + ], + "score": 0.69, + "latex": "\\mathrm { n e s s { + + } }" + }, + { + "category_id": 13, + "poly": [ + 553, + 1013, + 586, + 1013, + 586, + 1037, + 553, + 1037 + ], + "score": 0.64, + "latex": "^ { + + }" + }, + { + "category_id": 13, + "poly": [ + 1063, + 1228, + 1143, + 1228, + 1143, + 1251, + 1063, + 1251 + ], + "score": 0.6, + "latex": "\\mathrm { { t i o n + + } }" + }, + { + "category_id": 13, + "poly": [ + 1062, + 601, + 1145, + 601, + 1145, + 623, + 1062, + 623 + ], + "score": 0.59, + "latex": "\\mathrm { n e s s { + + } }" + }, + { + "category_id": 13, + "poly": [ + 1302, + 1227, + 1382, + 1227, + 1382, + 1251, + 1302, + 1251 + ], + "score": 0.56, + "latex": "\\mathrm { t i o n + + }" + }, + { + "category_id": 13, + "poly": [ + 822, + 601, + 906, + 601, + 906, + 623, + 822, + 623 + ], + "score": 0.56, + "latex": "\\mathrm { n e s s { + + } }" + }, + { + "category_id": 13, + "poly": [ + 584, + 601, + 668, + 601, + 668, + 623, + 584, + 623 + ], + "score": 0.55, + "latex": "\\mathrm { n e s s { + + } }" + }, + { + "category_id": 13, + "poly": [ + 1347, + 1795, + 1379, + 1795, + 1379, + 1818, + 1347, + 1818 + ], + "score": 0.54, + "latex": "^ { + + }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1638, + 378, + 1638, + 378, + 1667, + 296, + 1667 + ], + "score": 0.53, + "latex": "\\mathbf { h u e + + }" + }, + { + "category_id": 13, + "poly": [ + 554, + 385, + 588, + 385, + 588, + 410, + 554, + 410 + ], + "score": 0.51, + "latex": "^ { + + }" + }, + { + "category_id": 13, + "poly": [ + 586, + 1227, + 666, + 1227, + 666, + 1252, + 586, + 1252 + ], + "score": 0.5, + "latex": "\\mathrm { t i o n + + }" + }, + { + "category_id": 13, + "poly": [ + 630, + 1795, + 664, + 1795, + 664, + 1818, + 630, + 1818 + ], + "score": 0.48, + "latex": "^ { + + }" + }, + { + "category_id": 13, + "poly": [ + 825, + 1227, + 905, + 1227, + 905, + 1251, + 825, + 1251 + ], + "score": 0.42, + "latex": "\\mathrm { { t i o n + + } }" + }, + { + "category_id": 13, + "poly": [ + 868, + 1795, + 902, + 1795, + 902, + 1818, + 868, + 1818 + ], + "score": 0.38, + "latex": "^ { + + }" + }, + { + "category_id": 13, + "poly": [ + 1108, + 1795, + 1141, + 1795, + 1141, + 1818, + 1108, + 1818 + ], + "score": 0.29, + "latex": "^ { + + }" + }, + { + "category_id": 13, + "poly": [ + 826, + 1794, + 903, + 1794, + 903, + 1819, + 826, + 1819 + ], + "score": 0.26, + "latex": "{ \\mathrm { h u e } } + +" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1543.0, + 1405.0, + 1543.0, + 1405.0, + 1580.0, + 293.0, + 1580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1574.0, + 1403.0, + 1574.0, + 1403.0, + 1609.0, + 294.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1607.0, + 1403.0, + 1607.0, + 1403.0, + 1639.0, + 294.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 1636.0, + 1400.0, + 1636.0, + 1400.0, + 1671.0, + 379.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 289.0, + 1402.0, + 289.0, + 1402.0, + 322.0, + 295.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 318.0, + 1403.0, + 318.0, + 1403.0, + 356.0, + 293.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 349.0, + 1405.0, + 349.0, + 1405.0, + 386.0, + 294.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 381.0, + 553.0, + 381.0, + 553.0, + 418.0, + 293.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 381.0, + 1403.0, + 381.0, + 1403.0, + 418.0, + 589.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 410.0, + 525.0, + 410.0, + 525.0, + 447.0, + 294.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 871.0, + 2085.0, + 871.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 918.0, + 1403.0, + 918.0, + 1403.0, + 951.0, + 295.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 948.0, + 1402.0, + 948.0, + 1402.0, + 981.0, + 297.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 977.0, + 1405.0, + 977.0, + 1405.0, + 1014.0, + 294.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1008.0, + 552.0, + 1008.0, + 552.0, + 1045.0, + 293.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 587.0, + 1008.0, + 1403.0, + 1008.0, + 1403.0, + 1045.0, + 587.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1041.0, + 526.0, + 1041.0, + 526.0, + 1074.0, + 295.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 918.0, + 1403.0, + 918.0, + 1403.0, + 951.0, + 295.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 948.0, + 1402.0, + 948.0, + 1402.0, + 981.0, + 297.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 977.0, + 1405.0, + 977.0, + 1405.0, + 1014.0, + 294.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1008.0, + 552.0, + 1008.0, + 552.0, + 1045.0, + 293.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 587.0, + 1008.0, + 1403.0, + 1008.0, + 1403.0, + 1045.0, + 587.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1041.0, + 526.0, + 1041.0, + 526.0, + 1074.0, + 295.0, + 1074.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 297, + 402, + 1406, + 402, + 1406, + 754, + 297, + 754 + ], + "score": 0.985, + "html": "
ModelsInception-v3ResNet-v2-101Inception-ResNet-v2ens-adv-Inception-ResNet-v2
randomcon-trastrandomcon-trast++randomcon-trastrandomcon-trast++randomcon-trastrandomcon-trast++randomcon-trastrandomcon-trast++
FGSM-237.0%68.0%29.4%74.1%67.2%82.5%85.9%96.0%
FGSM-532.7%56.3%22.7%57.0%63.1%74.9%88.1%94.9%
FGSM-1034.4%53.5%21.2%47.0%62.1%72.0%90.6%94.3%
DeepFool90.4%98.1%87.5%97.5%73.8%98.1%90.8%99.0%
C&W56.8%97.0%57.1%96.7%63.7%97.9%67.6%98.8%
" + }, + { + "category_id": 1, + "poly": [ + 297, + 871, + 1405, + 871, + 1405, + 1180, + 297, + 1180 + ], + "score": 0.983 + }, + { + "category_id": 5, + "poly": [ + 302, + 1385, + 1398, + 1385, + 1398, + 1676, + 302, + 1676 + ], + "score": 0.982, + "html": "
ModelsInception-v3ResNet-v2-101Inception-ResNet-v2ens-adv-Inception-ResNet-v2
clean images98.2%97.5%99.1%98.7%
FGSM-263.1%65.0%79.9%95.0%
FGSM-553.4%48.3%73.3%94.0%
FGSM-1050.8%40.5%70.6%93.4%
DeepFool97.2%96.5%96.0%98.6%
C&W95.2%95.2%97.2%97.8%
" + }, + { + "category_id": 1, + "poly": [ + 299, + 1802, + 1404, + 1802, + 1404, + 1926, + 299, + 1926 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1941, + 1403, + 1941, + 1403, + 2035, + 299, + 2035 + ], + "score": 0.972 + }, + { + "category_id": 6, + "poly": [ + 295, + 248, + 1404, + 248, + 1404, + 401, + 295, + 401 + ], + "score": 0.927 + }, + { + "category_id": 6, + "poly": [ + 296, + 1231, + 1403, + 1231, + 1403, + 1383, + 296, + 1383 + ], + "score": 0.917 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 815, + 75, + 815, + 105, + 300, + 105 + ], + "score": 0.899 + }, + { + "category_id": 0, + "poly": [ + 297, + 1733, + 1309, + 1733, + 1309, + 1771, + 297, + 1771 + ], + "score": 0.856 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.852 + }, + { + "category_id": 0, + "poly": [ + 300, + 804, + 1192, + 804, + 1192, + 841, + 300, + 841 + ], + "score": 0.781 + }, + { + "category_id": 13, + "poly": [ + 841, + 935, + 1008, + 935, + 1008, + 964, + 841, + 964 + ], + "score": 0.92, + "latex": "2 9 9 \\times 2 9 9 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 1042, + 1293, + 1210, + 1293, + 1210, + 1323, + 1042, + 1323 + ], + "score": 0.91, + "latex": "2 9 9 \\times 2 9 9 \\times 3 )" + }, + { + "category_id": 13, + "poly": [ + 987, + 1942, + 1176, + 1942, + 1176, + 1976, + 987, + 1976 + ], + "score": 0.91, + "latex": "\\{ 1 , 5 , 1 0 , 2 0 , 3 0 \\}" + }, + { + "category_id": 13, + "poly": [ + 947, + 622, + 1020, + 622, + 1020, + 647, + 947, + 647 + ], + "score": 0.86, + "latex": "6 3 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 1186, + 622, + 1258, + 622, + 1258, + 647, + 1186, + 647 + ], + "score": 0.85, + "latex": "8 8 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 1304, + 621, + 1378, + 621, + 1378, + 647, + 1304, + 647 + ], + "score": 0.85, + "latex": "\\overline { { 9 4 . 9 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 589, + 621, + 661, + 621, + 661, + 647, + 589, + 647 + ], + "score": 0.85, + "latex": "56 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 708, + 620, + 781, + 620, + 781, + 647, + 708, + 647 + ], + "score": 0.85, + "latex": "2 2 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 828, + 688, + 900, + 688, + 900, + 712, + 828, + 712 + ], + "score": 0.84, + "latex": "9 7 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1066, + 621, + 1139, + 621, + 1139, + 647, + 1066, + 647 + ], + "score": 0.84, + "latex": "\\overline { { 7 4 . 9 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 1066, + 718, + 1139, + 718, + 1139, + 744, + 1066, + 744 + ], + "score": 0.84, + "latex": "9 7 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 828, + 622, + 900, + 622, + 900, + 647, + 828, + 647 + ], + "score": 0.84, + "latex": "5 7 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 708, + 587, + 781, + 587, + 781, + 615, + 708, + 615 + ], + "score": 0.84, + "latex": "2 9 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 1186, + 587, + 1258, + 587, + 1258, + 615, + 1186, + 615 + ], + "score": 0.84, + "latex": "8 5 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 947, + 658, + 1020, + 658, + 1020, + 680, + 947, + 680 + ], + "score": 0.84, + "latex": "6 2 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 589, + 687, + 661, + 687, + 661, + 712, + 589, + 712 + ], + "score": 0.84, + "latex": "9 8 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 298, + 1354, + 470, + 1354, + 470, + 1384, + 298, + 1384 + ], + "score": 0.84, + "latex": "3 3 1 \\times 3 3 1 \\times 3 )" + }, + { + "category_id": 13, + "poly": [ + 1304, + 588, + 1378, + 588, + 1378, + 615, + 1304, + 615 + ], + "score": 0.83, + "latex": "9 6 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 947, + 587, + 1020, + 587, + 1020, + 615, + 947, + 615 + ], + "score": 0.83, + "latex": "6 7 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 947, + 688, + 1020, + 688, + 1020, + 712, + 947, + 712 + ], + "score": 0.83, + "latex": "7 3 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 709, + 687, + 781, + 687, + 781, + 712, + 709, + 712 + ], + "score": 0.83, + "latex": "8 7 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 469, + 620, + 542, + 620, + 542, + 648, + 469, + 648 + ], + "score": 0.83, + "latex": "3 2 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 589, + 655, + 661, + 655, + 661, + 680, + 589, + 680 + ], + "score": 0.83, + "latex": "5 3 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 708, + 719, + 781, + 719, + 781, + 744, + 708, + 744 + ], + "score": 0.83, + "latex": "5 7 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 1186, + 687, + 1258, + 687, + 1258, + 712, + 1186, + 712 + ], + "score": 0.83, + "latex": "9 0 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 1265, + 1542, + 1339, + 1542, + 1339, + 1569, + 1265, + 1569 + ], + "score": 0.83, + "latex": "\\overline { { 9 4 . 0 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 1264, + 1476, + 1340, + 1476, + 1340, + 1505, + 1264, + 1505 + ], + "score": 0.83, + "latex": "9 8 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 469, + 587, + 542, + 587, + 542, + 615, + 469, + 615 + ], + "score": 0.83, + "latex": "3 7 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 1265, + 1575, + 1339, + 1575, + 1339, + 1601, + 1265, + 1601 + ], + "score": 0.83, + "latex": "9 3 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 1066, + 689, + 1139, + 689, + 1139, + 712, + 1066, + 712 + ], + "score": 0.83, + "latex": "9 8 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 1265, + 1509, + 1339, + 1509, + 1339, + 1537, + 1265, + 1537 + ], + "score": 0.83, + "latex": "9 5 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 708, + 656, + 781, + 656, + 781, + 680, + 708, + 680 + ], + "score": 0.83, + "latex": "2 1 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 828, + 658, + 900, + 658, + 900, + 680, + 828, + 680 + ], + "score": 0.82, + "latex": "4 7 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 1305, + 688, + 1378, + 688, + 1378, + 712, + 1305, + 712 + ], + "score": 0.82, + "latex": "9 9 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 1186, + 656, + 1258, + 656, + 1258, + 680, + 1186, + 680 + ], + "score": 0.82, + "latex": "9 0 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 898, + 1477, + 973, + 1477, + 973, + 1505, + 898, + 1505 + ], + "score": 0.82, + "latex": "9 7 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 588, + 588, + 661, + 588, + 661, + 615, + 588, + 615 + ], + "score": 0.82, + "latex": "6 8 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 1067, + 588, + 1139, + 588, + 1139, + 615, + 1067, + 615 + ], + "score": 0.82, + "latex": "8 2 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 588, + 718, + 662, + 718, + 662, + 745, + 588, + 745 + ], + "score": 0.82, + "latex": "9 7 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 716, + 1542, + 790, + 1542, + 790, + 1569, + 716, + 1569 + ], + "score": 0.82, + "latex": "5 3 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 1305, + 657, + 1378, + 657, + 1378, + 680, + 1305, + 680 + ], + "score": 0.82, + "latex": "9 4 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 898, + 1542, + 973, + 1542, + 973, + 1569, + 898, + 1569 + ], + "score": 0.81, + "latex": "\\overline { { 4 8 . 3 \\% } }" + }, + { + "category_id": 13, + "poly": [ + 1305, + 718, + 1378, + 718, + 1378, + 745, + 1305, + 745 + ], + "score": 0.81, + "latex": "9 8 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 1066, + 657, + 1139, + 657, + 1139, + 680, + 1066, + 680 + ], + "score": 0.81, + "latex": "7 2 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 469, + 686, + 542, + 686, + 542, + 712, + 469, + 712 + ], + "score": 0.81, + "latex": "9 0 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 1265, + 1606, + 1339, + 1606, + 1339, + 1634, + 1265, + 1634 + ], + "score": 0.81, + "latex": "9 8 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 899, + 1606, + 973, + 1606, + 973, + 1634, + 899, + 1634 + ], + "score": 0.81, + "latex": "9 6 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1081, + 1477, + 1156, + 1477, + 1156, + 1505, + 1081, + 1505 + ], + "score": 0.81, + "latex": "9 9 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 716, + 1606, + 789, + 1606, + 789, + 1633, + 716, + 1633 + ], + "score": 0.81, + "latex": "9 7 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 827, + 719, + 901, + 719, + 901, + 744, + 827, + 744 + ], + "score": 0.81, + "latex": "9 6 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 828, + 589, + 900, + 589, + 900, + 615, + 828, + 615 + ], + "score": 0.8, + "latex": "7 4 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 1082, + 1542, + 1156, + 1542, + 1156, + 1569, + 1082, + 1569 + ], + "score": 0.8, + "latex": "7 3 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 469, + 654, + 542, + 654, + 542, + 680, + 469, + 680 + ], + "score": 0.8, + "latex": "3 4 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 1349, + 1835, + 1403, + 1835, + 1403, + 1863, + 1349, + 1863 + ], + "score": 0.8, + "latex": "\\nu 2 +" + }, + { + "category_id": 13, + "poly": [ + 1185, + 719, + 1259, + 719, + 1259, + 745, + 1185, + 745 + ], + "score": 0.8, + "latex": "6 7 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 716, + 1477, + 790, + 1477, + 790, + 1505, + 716, + 1505 + ], + "score": 0.8, + "latex": "9 8 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1082, + 1606, + 1156, + 1606, + 1156, + 1634, + 1082, + 1634 + ], + "score": 0.8, + "latex": "9 6 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 947, + 719, + 1020, + 719, + 1020, + 744, + 947, + 744 + ], + "score": 0.79, + "latex": "6 3 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 1082, + 1509, + 1156, + 1509, + 1156, + 1536, + 1082, + 1536 + ], + "score": 0.79, + "latex": "7 9 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 716, + 1510, + 790, + 1510, + 790, + 1537, + 716, + 1537 + ], + "score": 0.79, + "latex": "6 3 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 716, + 1575, + 790, + 1575, + 790, + 1601, + 716, + 1601 + ], + "score": 0.79, + "latex": "5 0 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 1082, + 1575, + 1156, + 1575, + 1156, + 1601, + 1082, + 1601 + ], + "score": 0.78, + "latex": "7 0 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 469, + 717, + 543, + 717, + 543, + 745, + 469, + 745 + ], + "score": 0.78, + "latex": "5 6 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 898, + 1575, + 973, + 1575, + 973, + 1601, + 898, + 1601 + ], + "score": 0.77, + "latex": "4 0 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1265, + 1640, + 1339, + 1640, + 1339, + 1667, + 1265, + 1667 + ], + "score": 0.77, + "latex": "9 7 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 716, + 1639, + 790, + 1639, + 790, + 1667, + 716, + 1667 + ], + "score": 0.77, + "latex": "9 5 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 898, + 1510, + 974, + 1510, + 974, + 1537, + 898, + 1537 + ], + "score": 0.77, + "latex": "6 5 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 898, + 1639, + 974, + 1639, + 974, + 1667, + 898, + 1667 + ], + "score": 0.75, + "latex": "9 5 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1082, + 1639, + 1156, + 1639, + 1156, + 1667, + 1082, + 1667 + ], + "score": 0.74, + "latex": "9 7 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 497, + 344, + 530, + 344, + 530, + 369, + 497, + 369 + ], + "score": 0.55, + "latex": "^ { + + }" + }, + { + "category_id": 13, + "poly": [ + 584, + 561, + 667, + 561, + 667, + 584, + 584, + 584 + ], + "score": 0.46, + "latex": "\\mathrm { { \\ t r a s t { + + } } }" + }, + { + "category_id": 13, + "poly": [ + 1061, + 560, + 1145, + 560, + 1145, + 584, + 1061, + 584 + ], + "score": 0.46, + "latex": "\\mathrm { \\ t r a s t { + + } }" + }, + { + "category_id": 13, + "poly": [ + 1299, + 560, + 1384, + 560, + 1384, + 584, + 1299, + 584 + ], + "score": 0.44, + "latex": "\\mathrm { { t r a s t } } { + } +" + }, + { + "category_id": 13, + "poly": [ + 822, + 560, + 906, + 560, + 906, + 584, + 822, + 584 + ], + "score": 0.39, + "latex": "\\mathrm { { t r a s t } } + +" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 249.0, + 1404.0, + 249.0, + 1404.0, + 282.0, + 295.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 277.0, + 1404.0, + 277.0, + 1404.0, + 315.0, + 294.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 307.0, + 1405.0, + 307.0, + 1405.0, + 347.0, + 294.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 338.0, + 496.0, + 338.0, + 496.0, + 377.0, + 293.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 338.0, + 1405.0, + 338.0, + 1405.0, + 377.0, + 531.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 371.0, + 441.0, + 371.0, + 441.0, + 405.0, + 294.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1230.0, + 1405.0, + 1230.0, + 1405.0, + 1268.0, + 294.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1264.0, + 1404.0, + 1264.0, + 1404.0, + 1297.0, + 295.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1290.0, + 1041.0, + 1290.0, + 1041.0, + 1331.0, + 291.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1211.0, + 1290.0, + 1408.0, + 1290.0, + 1408.0, + 1331.0, + 1211.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1323.0, + 1405.0, + 1323.0, + 1405.0, + 1359.0, + 294.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1350.0, + 297.0, + 1350.0, + 297.0, + 1387.0, + 294.0, + 1387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 471.0, + 1350.0, + 484.0, + 1350.0, + 484.0, + 1387.0, + 471.0, + 1387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1733.0, + 1310.0, + 1733.0, + 1310.0, + 1774.0, + 297.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 801.0, + 1198.0, + 801.0, + 1198.0, + 846.0, + 295.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 871.0, + 1405.0, + 871.0, + 1405.0, + 909.0, + 292.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 900.0, + 1406.0, + 900.0, + 1406.0, + 942.0, + 291.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 933.0, + 840.0, + 933.0, + 840.0, + 968.0, + 292.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 933.0, + 1406.0, + 933.0, + 1406.0, + 968.0, + 1009.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 964.0, + 1406.0, + 964.0, + 1406.0, + 1000.0, + 294.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 995.0, + 1407.0, + 995.0, + 1407.0, + 1031.0, + 294.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1027.0, + 1405.0, + 1027.0, + 1405.0, + 1059.0, + 296.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1055.0, + 1406.0, + 1055.0, + 1406.0, + 1092.0, + 294.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1082.0, + 1406.0, + 1082.0, + 1406.0, + 1125.0, + 292.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1118.0, + 1405.0, + 1118.0, + 1405.0, + 1153.0, + 294.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1144.0, + 543.0, + 1144.0, + 543.0, + 1185.0, + 294.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1802.0, + 1405.0, + 1802.0, + 1405.0, + 1838.0, + 294.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1834.0, + 1348.0, + 1834.0, + 1348.0, + 1870.0, + 294.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1865.0, + 1405.0, + 1865.0, + 1405.0, + 1898.0, + 294.0, + 1898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1896.0, + 545.0, + 1896.0, + 545.0, + 1925.0, + 297.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1938.0, + 986.0, + 1938.0, + 986.0, + 1977.0, + 292.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 1938.0, + 1407.0, + 1938.0, + 1407.0, + 1977.0, + 1177.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1972.0, + 1405.0, + 1972.0, + 1405.0, + 2005.0, + 293.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2003.0, + 1407.0, + 2003.0, + 1407.0, + 2037.0, + 295.0, + 2037.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 229, + 1404, + 229, + 1404, + 445, + 297, + 445 + ], + "score": 0.979 + }, + { + "category_id": 3, + "poly": [ + 689, + 496, + 1000, + 496, + 1000, + 834, + 689, + 834 + ], + "score": 0.965 + }, + { + "category_id": 4, + "poly": [ + 295, + 881, + 643, + 881, + 643, + 1036, + 295, + 1036 + ], + "score": 0.959 + }, + { + "category_id": 3, + "poly": [ + 1071, + 497, + 1379, + 497, + 1379, + 834, + 1071, + 834 + ], + "score": 0.959 + }, + { + "category_id": 4, + "poly": [ + 1054, + 882, + 1403, + 882, + 1403, + 1034, + 1054, + 1034 + ], + "score": 0.957 + }, + { + "category_id": 3, + "poly": [ + 314, + 496, + 620, + 496, + 620, + 834, + 314, + 834 + ], + "score": 0.956 + }, + { + "category_id": 4, + "poly": [ + 674, + 882, + 1022, + 882, + 1022, + 1035, + 674, + 1035 + ], + "score": 0.953 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.896 + }, + { + "category_id": 2, + "poly": [ + 836, + 2089, + 865, + 2089, + 865, + 2112, + 836, + 2112 + ], + "score": 0.844 + }, + { + "category_id": 15, + "poly": [ + 707.0, + 500.0, + 724.0, + 500.0, + 724.0, + 512.0, + 707.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 514.0, + 907.0, + 514.0, + 907.0, + 536.0, + 893.0, + 536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 982.0, + 515.0, + 996.0, + 515.0, + 996.0, + 536.0, + 982.0, + 536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 528.0, + 725.0, + 528.0, + 725.0, + 542.0, + 702.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 531.0, + 816.0, + 531.0, + 816.0, + 539.0, + 809.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 710.0, + 559.0, + 724.0, + 559.0, + 724.0, + 570.0, + 710.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 589.0, + 725.0, + 589.0, + 725.0, + 602.0, + 702.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 710.0, + 620.0, + 724.0, + 620.0, + 724.0, + 632.0, + 710.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 626.0, + 710.0, + 626.0, + 710.0, + 689.0, + 691.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 648.0, + 725.0, + 648.0, + 725.0, + 663.0, + 702.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 669.0, + 904.0, + 669.0, + 904.0, + 679.0, + 896.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 807.0, + 676.0, + 815.0, + 676.0, + 815.0, + 683.0, + 807.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 710.0, + 681.0, + 723.0, + 681.0, + 723.0, + 693.0, + 710.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 710.0, + 725.0, + 710.0, + 725.0, + 725.0, + 702.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 716.0, + 740.0, + 716.0, + 740.0, + 728.0, + 728.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 726.0, + 905.0, + 726.0, + 905.0, + 733.0, + 896.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 741.0, + 724.0, + 741.0, + 724.0, + 753.0, + 709.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 757.0, + 980.0, + 757.0, + 980.0, + 770.0, + 947.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 770.0, + 725.0, + 770.0, + 725.0, + 784.0, + 702.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 767.0, + 747.0, + 767.0, + 747.0, + 805.0, + 729.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 765.0, + 982.0, + 765.0, + 982.0, + 785.0, + 939.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.0, + 781.0, + 981.0, + 781.0, + 981.0, + 794.0, + 942.0, + 794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 790.0, + 968.0, + 790.0, + 968.0, + 801.0, + 947.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 801.0, + 726.0, + 801.0, + 726.0, + 816.0, + 708.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 717.0, + 810.0, + 729.0, + 810.0, + 729.0, + 821.0, + 717.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 810.0, + 774.0, + 810.0, + 774.0, + 821.0, + 762.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 808.0, + 821.0, + 808.0, + 821.0, + 822.0, + 804.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 809.0, + 863.0, + 809.0, + 863.0, + 821.0, + 849.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 808.0, + 909.0, + 808.0, + 909.0, + 822.0, + 892.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 935.0, + 808.0, + 952.0, + 808.0, + 952.0, + 822.0, + 935.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 981.0, + 809.0, + 996.0, + 809.0, + 996.0, + 820.0, + 981.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 818.0, + 876.0, + 818.0, + 876.0, + 831.0, + 836.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.0, + 540.0, + 767.0, + 540.0, + 767.0, + 558.0, + 714.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 881.0, + 644.0, + 881.0, + 644.0, + 916.0, + 296.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 914.0, + 644.0, + 914.0, + 644.0, + 946.0, + 296.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 944.0, + 644.0, + 944.0, + 644.0, + 975.0, + 296.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 974.0, + 646.0, + 974.0, + 646.0, + 1004.0, + 294.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1004.0, + 444.0, + 1004.0, + 444.0, + 1036.0, + 295.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1085.0, + 499.0, + 1106.0, + 499.0, + 1106.0, + 512.0, + 1085.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 524.0, + 1196.0, + 524.0, + 1196.0, + 532.0, + 1188.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1273.0, + 516.0, + 1286.0, + 516.0, + 1286.0, + 529.0, + 1273.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1362.0, + 515.0, + 1374.0, + 515.0, + 1374.0, + 527.0, + 1362.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 534.0, + 1105.0, + 534.0, + 1105.0, + 546.0, + 1089.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1088.0, + 569.0, + 1106.0, + 569.0, + 1106.0, + 584.0, + 1088.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 606.0, + 1103.0, + 606.0, + 1103.0, + 618.0, + 1089.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1108.0, + 616.0, + 1117.0, + 616.0, + 1117.0, + 625.0, + 1108.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1073.0, + 626.0, + 1092.0, + 626.0, + 1092.0, + 690.0, + 1073.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 640.0, + 1102.0, + 640.0, + 1102.0, + 653.0, + 1090.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 676.0, + 1103.0, + 676.0, + 1103.0, + 725.0, + 1089.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 681.0, + 1288.0, + 681.0, + 1288.0, + 722.0, + 1272.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1362.0, + 679.0, + 1373.0, + 679.0, + 1373.0, + 692.0, + 1362.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 748.0, + 1102.0, + 748.0, + 1102.0, + 759.0, + 1089.0, + 759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1110.0, + 751.0, + 1115.0, + 751.0, + 1115.0, + 756.0, + 1110.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1328.0, + 758.0, + 1358.0, + 758.0, + 1358.0, + 768.0, + 1328.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1320.0, + 766.0, + 1358.0, + 766.0, + 1358.0, + 776.0, + 1320.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1324.0, + 773.0, + 1361.0, + 773.0, + 1361.0, + 785.0, + 1324.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 785.0, + 1104.0, + 785.0, + 1104.0, + 795.0, + 1089.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1318.0, + 781.0, + 1361.0, + 781.0, + 1361.0, + 796.0, + 1318.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1322.0, + 789.0, + 1348.0, + 789.0, + 1348.0, + 802.0, + 1322.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 812.0, + 1107.0, + 812.0, + 1107.0, + 820.0, + 1099.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1142.0, + 809.0, + 1152.0, + 809.0, + 1152.0, + 822.0, + 1142.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1185.0, + 809.0, + 1199.0, + 809.0, + 1199.0, + 822.0, + 1185.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 808.0, + 1244.0, + 808.0, + 1244.0, + 823.0, + 1227.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1271.0, + 808.0, + 1288.0, + 808.0, + 1288.0, + 823.0, + 1271.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1315.0, + 808.0, + 1332.0, + 808.0, + 1332.0, + 823.0, + 1315.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1360.0, + 809.0, + 1374.0, + 809.0, + 1374.0, + 821.0, + 1360.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 819.0, + 1254.0, + 819.0, + 1254.0, + 831.0, + 1215.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 881.0, + 1403.0, + 881.0, + 1403.0, + 916.0, + 1055.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 914.0, + 1403.0, + 914.0, + 1403.0, + 942.0, + 1053.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 944.0, + 1403.0, + 944.0, + 1403.0, + 975.0, + 1054.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 975.0, + 1404.0, + 975.0, + 1404.0, + 1005.0, + 1055.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 1004.0, + 1102.0, + 1004.0, + 1102.0, + 1037.0, + 1051.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 500.0, + 344.0, + 500.0, + 344.0, + 512.0, + 327.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.0, + 519.0, + 527.0, + 519.0, + 527.0, + 531.0, + 515.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 549.0, + 343.0, + 549.0, + 343.0, + 561.0, + 330.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 561.0, + 358.0, + 561.0, + 358.0, + 569.0, + 349.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 600.0, + 344.0, + 600.0, + 344.0, + 612.0, + 330.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 626.0, + 332.0, + 626.0, + 332.0, + 689.0, + 314.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 647.0, + 344.0, + 647.0, + 344.0, + 665.0, + 328.0, + 665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 667.0, + 524.0, + 667.0, + 524.0, + 677.0, + 516.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 667.0, + 613.0, + 667.0, + 613.0, + 676.0, + 605.0, + 676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 701.0, + 344.0, + 701.0, + 344.0, + 714.0, + 330.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 715.0, + 361.0, + 715.0, + 361.0, + 727.0, + 349.0, + 727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 751.0, + 344.0, + 751.0, + 344.0, + 763.0, + 330.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 748.0, + 603.0, + 748.0, + 603.0, + 761.0, + 561.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 756.0, + 593.0, + 756.0, + 593.0, + 770.0, + 560.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 765.0, + 593.0, + 765.0, + 593.0, + 777.0, + 551.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 772.0, + 597.0, + 772.0, + 597.0, + 787.0, + 555.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 787.0, + 358.0, + 787.0, + 358.0, + 797.0, + 349.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 779.0, + 598.0, + 779.0, + 598.0, + 804.0, + 551.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 802.0, + 346.0, + 802.0, + 346.0, + 814.0, + 330.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 811.0, + 349.0, + 811.0, + 349.0, + 819.0, + 340.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 810.0, + 394.0, + 810.0, + 394.0, + 821.0, + 382.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 809.0, + 440.0, + 809.0, + 440.0, + 821.0, + 426.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 468.0, + 808.0, + 485.0, + 808.0, + 485.0, + 822.0, + 468.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 512.0, + 808.0, + 528.0, + 808.0, + 528.0, + 822.0, + 512.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 809.0, + 571.0, + 809.0, + 571.0, + 821.0, + 558.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 809.0, + 615.0, + 809.0, + 615.0, + 820.0, + 602.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 818.0, + 496.0, + 818.0, + 496.0, + 831.0, + 456.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 880.0, + 1022.0, + 880.0, + 1022.0, + 915.0, + 675.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 913.0, + 1023.0, + 913.0, + 1023.0, + 945.0, + 675.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 942.0, + 1025.0, + 942.0, + 1025.0, + 976.0, + 673.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 672.0, + 971.0, + 1024.0, + 971.0, + 1024.0, + 1008.0, + 672.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 1002.0, + 724.0, + 1002.0, + 724.0, + 1038.0, + 671.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 871.0, + 2085.0, + 871.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 227.0, + 1405.0, + 227.0, + 1405.0, + 267.0, + 292.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 263.0, + 1405.0, + 263.0, + 1405.0, + 295.0, + 293.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 291.0, + 1402.0, + 291.0, + 1402.0, + 326.0, + 294.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 322.0, + 1404.0, + 322.0, + 1404.0, + 357.0, + 295.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 353.0, + 1404.0, + 353.0, + 1404.0, + 388.0, + 295.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 383.0, + 1404.0, + 383.0, + 1404.0, + 417.0, + 296.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 416.0, + 781.0, + 416.0, + 781.0, + 447.0, + 297.0, + 447.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 15, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/Sy0GnUxCb/Sy0GnUxCb.md b/parse/train/Sy0GnUxCb/Sy0GnUxCb.md new file mode 100644 index 0000000000000000000000000000000000000000..5cfab65022bf1f2a6d4d49a8963a84a9386dde6e --- /dev/null +++ b/parse/train/Sy0GnUxCb/Sy0GnUxCb.md @@ -0,0 +1,250 @@ +# EMERGENT COMPLEXITY VIA MULTI-AGENT COMPETITION + +Trapit Bansal∗ UMass Amherst + +Jakub Pachocki OpenAI + +Szymon Sidor OpenAI + +Ilya Sutskever OpenAI + +Igor Mordatch OpenAI + +# ABSTRACT + +Reinforcement learning algorithms can train agents that solve problems in complex, interesting environments. Normally, the complexity of the trained agent is closely related to the complexity of the environment. This suggests that a highly capable agent requires a complex environment for training. In this paper, we point out that a competitive multi-agent environment trained with self-play can produce behaviors that are far more complex than the environment itself. We also point out that such environments come with a natural curriculum, because for any skill level, an environment full of agents of this level will have the right level of difficulty. + +This work introduces several competitive multi-agent environments where agents compete in a 3D world with simulated physics. The trained agents learn a wide variety of complex and interesting skills, even though the environment themselves are relatively simple. The skills include behaviors such as running, blocking, ducking, tackling, fooling opponents, kicking, and defending using both arms and legs. A highlight of the learned behaviors can be found here: https://goo.gl/eR7fbX. + +# 1 INTRODUCTION + +Reinforcement Learning (RL) is exciting because good reinforcement learning algorithms exist (Mnih et al., 2015; Silver et al., 2016; Schulman et al., 2015a; Mnih et al., 2016; Schulman et al., 2015b; Lillicrap et al., 2015; Schulman et al., 2017), allowing us to train agents that accomplish a great variety of interesting tasks. We can train an agent to play Atari games from pixels (Mnih et al., 2015) or get humanoids to walk (Schulman et al., 2017). RL is exciting partly because it is easy to envision an RL algorithm producing a broadly competent agent when trained on an appropriate curriculum of environments. + +In general, training an agent to perform a highly complex task requires a highly complex environment, and these can be difficult to create. However, there exists a class of environments where the behavior produced by the agents can be far more complex than the environments; this is the class of the competitive multi-agent environments trained with self-play. Such environments have two very attractive properties: (1) Even very simple competitive multi-agent environments can produce extremely complex behaviors. For example, the game of Go has very simple rules, but the strategies needed to win are extremely complex. This is because the complexity of these environments is produced by the competing agents that act in it. Thus, as the other agents become more competent, the environment effectively becomes more complex. (2) When trained with self-play, the competitive multi-agent environment provides the agents with a perfect curriculum. This happens because no matter how weak or strong an agent is, an environment populated with other agents of comparable strength provides the right challenge to the agent, facilitating maximally rapid learning and avoiding getting stuck. + +Self-play in competitive multi-agent environments is not a new idea – it has already been explored in TD-gammon (Tesauro, 1995) and refined in AlphaGo (Silver et al., 2016) and Dota 2 (OpenAI). In both cases, the resulting behavior was far more complex than the environment itself, and the self-play approach provided the agents with a perfectly tuned curriculum for each task. In this paper, we investigate whether the idea of competitive multi-agent environments can yield fruit in other domains: specifically, in the domain of continuous control, where balance, dexterity, and manipulation are the key skills. + +In more detail, we introduce several multi-agent tasks with competing goals in a 3D world with simulated physics, using the MuJoCo framework (Todorov et al., 2012), where the agents would need to learn highly developed motor skills in order to succeed in the competitive environment. We train the agents using a distributed implementation of a recent policy gradient algorithm, Proximal Policy Optimization (Schulman et al., 2017). By adding a simple exploration curriculum to aid exploration in the environment we find that agents learn a high level of dexterity in order to achieve their goals, in particular we find numerous emergent skills for which it may be difficult to engineer a reward. Specifically, the agents learned a wide variety of skills and behaviors that include running, blocking, ducking, tackling, fooling opponents, kicking, and defending using arms and legs. Highlight of the learned behaviors on the various tasks can be found here: https://goo.gl/eR7fbX + +# 2 PRELIMINARIES + +In this section, we review some background on policy gradient methods, Proximal Policy Optimization and related work in the multi-agent reinforcement learning domain. + +Notation: We consider multi-agent Markov games (Littman, 1994). A Markov game for $N$ agents is a partially observable Markov decision process (MDP) defined by: a set of states $s$ describing the state of the world and the possible joint configuration of all the agents, a set of observations $\mathcal { O } ^ { 1 } , \ldots , \mathcal { O } ^ { N }$ of each agent, a set of actions of each agent $\mathcal { A } ^ { 1 } , \ldots , \mathcal { A } ^ { \tilde { N } }$ , a transition function $\tau :$ $\mathcal { S } \times \mathcal { A } ^ { 1 } \cdot \cdot \cdot \mathcal { A } ^ { N } \to \mathcal { S }$ determining distribution over next states, and a reward for each agent $i$ which is a function of the state and the agent’s action $r ^ { i } : \mathcal { S } \times \mathcal { A } ^ { i } \to \mathbb { R }$ . Agents choose their actions according to a stochastic policy $\pi _ { \theta ^ { i } } : \mathcal { O } ^ { i } \times \mathcal { A } ^ { i } [ 0 , 1 ]$ , where $\theta ^ { i }$ are the parameters of the policy. For continuous control problems considered here, $\pi _ { \theta }$ is Gaussian where the mean and variance are deep neural networks with parameter $\theta$ . Each agent $i$ aims to maximize its own total expected return $\begin{array} { r } { R ^ { i } = \sum _ { t = 0 } ^ { T } \gamma ^ { t } r _ { t } ^ { i } } \end{array}$ , where $\gamma$ is a discount factor and $T$ is the time horizon + +Policy Gradient: Policy gradient methods work by directly computing an estimate of the gradient of policy parameters in order to maximize the expected return using stochastic gradient descent. These methods are behind much of the recent success in using deep neural networks for control (Schulman et al., 2015b; Heess et al., 2017; Lillicrap et al., 2015; Silver et al., 2016). Such methods are also attractive because they don’t require an explicit model of the world. There are several different expressions for the policy gradient estimator which have the form $g : = \mathbb { E } \left[ A _ { t } \nabla _ { \theta } \log \pi _ { \theta } \right]$ . Different choices of $A _ { t }$ lead to different algorithms, for example taking the sample return of a trajectory $\boldsymbol { A } _ { t } = \sum _ { t } \boldsymbol { r } _ { t }$ leads to the REINFORCE algorithm (Williams, 1992). However, such algorithms suffer from high variance in the gradient estimates and it’s typical to use a baseline, such as a value function baseline, to ameliorate the high variance. Generalized advantage estimation (Schulman et al., 2015b) takes this approach of using a learned value function to reduce variance at the cost of some bias and using an exponentially weighted estimator of the advantage function. + +Proximal Policy Optimization (PPO): Achieving good results with policy gradient algorithms requires carefully tuning the step-size (Schulman et al., 2015a). Moreover, most policy gradient methods perform one gradient update per sampled trajectory and have high sample complexity. Recently, Schulman et al. (2017) proposed the PPO algorithm which addresses both these problems. This uses a surrogate objective which is maximized while penalizing large changes to the policy. Let $\begin{array} { r } { l _ { t } ( \theta ) ~ = ~ \frac { \pi _ { \theta } ^ { - } \left( a _ { t } | s _ { t } \right) ^ { - } } { \pi _ { \theta _ { o l d } } \left( a _ { t } | s _ { t } \right) } } \end{array}$ denote the likelihood ratio. Then PPO optimizes the objective: $L = \mathbb { E } \left[ \operatorname* { m i n } ( l _ { t } ( \theta ) \hat { A } _ { t } , \operatorname { c l i p } ( l _ { t } ( \theta ) , 1 - \epsilon , 1 + \epsilon ) \hat { A } _ { t } ) \right]$ , where $\hat { A } _ { t }$ is the generalized advantage estimate and $\mathrm { c l i p } ( l _ { t } ( \theta ) , 1 - \epsilon , 1 + \epsilon )$ clips $l _ { t } ( \theta )$ in the interval $[ 1 - \epsilon , 1 + \epsilon ]$ . The algorithm alternates between sampling multiple trajectories from the policy and performing several epochs of SGD on the sampled dataset to optimize this surrogate objective. Since the state value function is also simultaneously approximated, the error for the value function approximation is also added to the surrogate objective to compute the complete objective function (Schulman et al., 2017). + +Related Work: Tan (1993) explored the multi-agent setting with independently learning agents using Q-learning, in particular exploring advantages of cooperative agents over independent agents in a 2D grid world. This was further explored by Matignon et al. (2012) again in the cooperative setting. A lot of the work on multi-agent RL is focused on cooperative settings, see Busoniu et al. (2008) for a review of multi-agent RL and Panait & Luke (2005) for a review focused on cooperative settings. Stanley & Miikkulainen (2004) trained agents in a competitive 2D world, using evolutionary strategies to evolve both weights and structure of policies with competition as a fitness measure. Tampuu et al. (2017) studied the application of deep Q-learning to train Pong agents with competitive and collaborative rewarding schemes. He et al. (2016) used deep Q-learning to model competitive games where only one agent is learning and the Q network implicitly models the opponent. Silver et al. (2016) used self-play with deep reinforcement learning techniques to master the game of Go. Sukhbaatar et al. (2017) introduced a self-play method for generating an automatic training curriculum in single-agent environments. From a game-theoretic perspective, Heinrich & Silver (2016) studied fictitious self-play for achieving approximate Nash equilibrium in zero-sum games like Poker. Recently, Foerster et al. (2017a) introduced an algorithm which explicitly accounts for the fact that the opponent is also learning and showed that it can achieve cooperation in iterated prisoner’s dilemma, however the algorithm requires access to the opponent’s parameters. Recently, Lowe et al. (2017) and Foerster et al. (2017b) proposed methods for centralized learning in multi-agent domains, where the idea is to use an actor-critic method with a central critic which can observe the joint state and actions of all agents in order to reduce variance, evaluating on 2D games and StarCraft. In this work, we do not rely on centralized training and address the variance problem by using very large batchsize through a distributed implementation of the PPO algorithm. Moreover, we study fully competitive settings in a 3D world with simulated physics whereas prior applications have focused on toy 2D worlds or game-theoretic problems. Recent work on learning dexterous locomotion skills in 3D environments by adding complexity in the agent’s environment (Heess et al., 2017) is also related. However, whereas Heess et al. (2017) learn complex behaviours by engineering complexity into the environment design and by engineering dense reward functions for these environments, the resultant complexity in our work is due to the presence of other learning agents in a simple environment. Our work is also related to early work in the graphics community (Sims, 1994) on evolving creature morphology in varying environments using genetic algorithm and work in animation (Wampler et al., 2010) for adversarial games. The competitive multi-agent learning framework is also related to generative adversarial networks (Goodfellow et al., 2014) and work on learning robust grasping policies through an adversary (Pinto et al., 2017). + +# 3 COMPETITIVE ENVIRONMENTS + +![](images/0bc53a965370e58dc6fba3823a2d9d3f433c6c327fbd86c872932af6f33f371e.jpg) +Figure 1: Illustrations of competitive environments we consider in our work: Run to Goal, You Shall Not Pass, Sumo, and Kick and Defend. + +We introduce four competitive environments and experiment with two types of agents. In this paper we focus on two agent worlds, that is 1-vs-1 games, though these environments can be extended to include multiple agents for a mixed competitive and co-operative setup. We will now describe the four environments and the competitive rewards in each environment. Figure 1 shows a rendering of the environments. We consider two three-dimensional agent bodies: ant and humanoid. The ant is a quadrupedal body with $1 2 \mathrm { D o F }$ and 8 actuated joints. Humanoid has 23 DoF and 17 actuated joints. + +Run to Goal: The agents start by facing each other in a 3D world and they each have goals on the opposite side of the word (see Fig.1a). The agent that reaches its goal first wins. Reaching the goal before the opponent gives a reward of $+ 1 0 0 0$ to the agent and -1000 to the opponent. If no agent reaches its goal then they both get -1000. + +You Shall Not Pass: This is the same world as the previous task, but one agent (the blocker) now has the objective of blocking the other agent from reaching it’s goal while not falling down. If the blocker is successful in preventing the opponent from reaching the goal and is standing at the end of episode then it gets $+ 1 0 0 0$ reward, if it is not standing then it gets 0 reward, and the opponent gets -1000 reward. If the opponent is successful in reaching it’s goal then it gets $+ 1 0 0 0$ reward and the blocker gets -1000 reward. + +Sumo: The agents compete on a round arena (see Fig.1c) and the goal of each agent is to either knock the other agent to the ground or to push them out of the ring. The winner gets $+ 1 0 0 0$ and the other agent gets -1000. If there is a draw then both agents get -1000. + +Kick and Defend: This a standard penalty shootout (see Fig.1d). One agent has to kick a ball through the goal, which has a fixed width of 6 units, while the other agent defends. Successful kick or defend gives the agent $+ 1 0 0 0$ reward and the opponent -1000 reward. The defender cannot go beyond the goal-keeping area which is a distance 3 units from the goal, doing so terminates the game with a penalty of -1000 for the defender. We give two additional rewards for defender: if defender is successful and it made contact with the ball then it gets additional $+ 5 0 0$ reward, and if the defender is successful and still standing at the end of the game then it gets another additional reward of $+ 5 0 0$ . We found the latter two rewards to yield more realistic looking defending behaviors. + +# 4 TRAINING COMPETITIVE AGENTS + +In this section we describe the multi-agent training framework. We use a policy gradient algorithm, Proximal Policy Optimization (PPO) (Schulman et al., 2017), described previously. We adopt a decentralized training approach and use a distributed implementation of PPO for very large scale multi-agent training. This allows us to use really large batch-sizes during training ameliorating the variance problem to some extent while also aiding in exploration. Our distributed PPO implementation is similar to the implementation of Heess et al. (2017), where instead of the KL penalty we used the clipped objective as proposed in PPO (Schulman et al., 2017). We do multiple rollouts in parallel for each agent and have separate optimizers for each agent. We collect a large amount of rollouts from the parallel workers and for each agent optimize the objective with the collected batch on 4 GPUs. The approach is same as synchronous actor critic of Mnih et al. (2016). Instead of estimating a truncated generalized advantage estimate (GAE) from a small number of steps per rollout, as in Schulman et al. (2017); Heess et al. (2017), we estimate GAE from the full rollouts. This is important as the competition reward is a sparse reward given at the termination of the episode. + +There are further challenges in applying distributed PPO to train multiple competitive agents. One is the problem of exploration with sparse reward and second is the choice of opponent during training which effects the stability of training. We now turn our attention to these issues. + +# 4.1 EXPLORATION CURRICULUM + +The success of agents in the competitive games requires the agents to occasionally solve the task (i.e. win the competition) by random actions. The probability of this happening in most games is minuscule as they require as a prerequisite some fundamental motor skills like the ability to walk. For example, the only way a kicker in the kick-and-defend task would achieve any positive reward is if it moves towards the ball and causes sufficient displacement to it so as to make it go past the goal boundaries which is also obstructed by a defender. This is a problem of training from sparse reward which is an active area of current research (Andrychowicz et al., 2017). To overcome this problem, we can use simple dense rewards at each step to allow the agents to learn basic motor skills initially. Such rewards have been previously researched for tasks like walking forward and standing up, see for e.g. Schulman et al. (2015b) and Duan et al. (2016). However, engineering such dense rewards for the competitive tasks is not straight forward. Moreover, such engineered rewards defeat the purpose of the competitive multi-agent training as we would like the agents to benefit from the natural curriculum arising from the multi-agent training. To overcome this chicken-and-egg problem, we instead propose to use a simple curriculum for training. + +We use a dense reward at every step in the beginning phase of the training to allow agents to learn basic motor skills, like walking forward or being able to stand, which would increase the probability of random actions from the agent yielding a positive reward. We refer to this reward as the exploration reward. The exploration reward is gradually annealed to zero, in favor of the competition reward, to allow the agents to train for the majority of the training using the sparse competition reward. This is achieved using a linear annealing factor $\alpha$ . So, at time-step $t$ , if the exploration reward is $s _ { t }$ , the competition reward is $R$ and $T$ is the termination time-step, then the reward is: + +![](images/611e1d088992578d7def0edfa3a82e9cac54d0c160389f20d84a21b79c6c4f59.jpg) +Figure 2: Opponent Sampling: Training rewards for two opponent sampling strategies. + +$$ +r _ { t } = \alpha _ { t } s _ { t } + ( 1 - \alpha _ { t } ) \mathbb { I } [ t = = T ] R +$$ + +This ameliorates the problem of exploration with the sparse reward, which is particularly tough in a 3D world with simulated physics and complex agents like humanoid, while still benefiting from training for the sparse competition reward for the majority of the training. During a typical training run, the agents would train on the dense reward for only about $10 \mathrm { - } 1 5 \%$ of the training epochs. The dense rewards used are described in the Appendix A and are generally composed of the following terms: distance to goal, velocity in $\mathbf { X }$ -direction, control cost, impact cost, standing reward. These rewards are adopted from existing work and we did not tune weights on the various reward terms. In particular, it is important to note that there is no dense reward term for many of the complex emergent behaviors and we also show in the experiment section how the learned behaviors are affected if we do not anneal the dense reward to benefit from optimizing the sparse competition reward. + +# 4.2 OPPONENT SAMPLING + +In the competitive multi-agent framework, all agents are simultaneously training in opponent pairs. Thus, the skill of opponents encountered during training could have significant impact on the learning of the agents. We found that training agents against the most recent opponent leads to imbalance in training where one agent becomes more skilled than the other agent early in training and the other agent is unable to recover. Fig. 2a shows the rewards during training with this naive approach (for the “run to goal” task with ant). Instead, we found that training against random old versions of the opponent to work much better. Thus, during training, for each rollout for an agent we sample old parameters for the opponent. Fig. 2b shows the rewards for agents trained using this strategy. This leads to more stable training and more robust policies. We further analyze the effect of this opponent sampling in the experiments section. Note that for self-play this means that the policy at any time should be able to defeat random older versions of itself, thus ensuring continual learning. + +# 5 EXPERIMENTS + +We train agents for the four competitive tasks using the training methods described previously. Our aim is to show that competitive multi-agent training provides a natural curriculum during learning which allows agents to learn complex behaviors. We provide additional training details and analyze various aspects of the competitive multi-agent training in this section. A highlight of the learned behaviors can be seen in the videos. Code for the environments as well as learned policy parameters for agents on all the environments are available: https://github.com/openai/multiagent-competition. + +# 5.1 EXPERIMENTAL DETAILS + +Policies and Value Functions: We compare both MLP and LSTM for the policies and the value functions. MLP had 2 hidden layers with 128 units each. For LSTM networks, the input was first projected to a 128 dimensional embedding using a fully connected layer with ReLU activation which is then fed into a single-layer LSTM with 128 hidden state dimension and the output is projected to the action dimension using another fully connected layer. We used Gaussian policies with mean given by the output of the networks and a diagonal covariance matrix whose entries are also treated as trianable parameters. The policy outputs are clipped to lie within the control range. We used + +MLP policy and value functions for the run-to-goal and you-shall-not-pass environments, and LSTM policy and value function for sumo and kick-and-defend. This is because earlier experiments did not yield good results with MLP policy on these tasks. For LSTM policy we used truncated BPTT with a truncation of 10 timesteps. The policy and the value functions have separate parameters. For the asymmetric games, you-shall-not-pass and kick-and-defend, we use separate policies for the two agents in a game. + +Observations: For the Ant body we use all the joint angles of the agent, its velocity of all its joints, the contact forces acting on the body and the relative position and all the joint angles for the opponent. For the Humanoid body, in addition to the above we also give the centre-of-mass based inertia tensor, velocity vector and the actuator forces for the body. In addition to these, there are other environment specific observations. For the Sumo environment, we give the torso’s orientation vector as the input, the radial distance from the edge of the ring of all the agents and the time remaining in the game. For kick-and-defend, we give the relative position of the ball from the agent, the relative distance of the ball from goal and the relative position of the ball from the two goal posts. Note that none of the agents observe the complete global state of the multi-agent world and only observe relevant sub-parts of the state vector to keep observations as close to real-world scenarios as possible. + +Algorithm Parameters: We use Adam (Kingma & Ba, 2014) with learning rate 0.001. The clipping parameter in PPO $\epsilon = 0 . 2$ , discounting factor $\gamma = 0 . 9 9 5$ and generalized advantage estimate parameter $\lambda = 0 . 9 5$ . Each iteration, we collect 409600 samples from the parallel rollouts and perform multiple epochs of PPO training in mini-batches consisting of 5120 samples. For MLP policies we did 6 epochs of SGD per iteration and for LSTM policies we did 3 epochs. We don’t use any entropy bonus. We found $l _ { 2 }$ regularization of the policy and value network parameters to be useful. The co-efficient $\alpha _ { t }$ in eq. 1 for the exploration reward is annealed to 0 in 500 iterations for all the environments except for kick-and-defend in which it is annealed in 1000 iterations. + +# 5.2 LEARNED BEHAVIORS + +We observe numerous interesting learned behaviors demonstrated by the agents as a result of the complexity arising out of the competitive multi-agent training. Different random seeds often lead to somewhat different behaviors. Refer to the videos for highlights of the learned policies on all the tasks. On Run-to-Goal, we observe the quadruped Ants demonstrate behaviors like blocking, standing robustly, using legs to topple the opponent and running towards the goal. Humanoids try to avoid each other and run towards their goal really fast, occasionally they will bump into each other with force and try to recover from the impact. On You-Shall-Not-Pass, we observe the blocking humanoid learn to block by raising its hand while the other humanoid eventually learned to duck in order to cross. On Sumo, we observe multiple different strategies used by the Ant and Humanoid. Humanoids, for example, demonstrate a stable fighting stance and learned to knock the opponent using their heads. In a different run, we observe that one agent learned to charge towards the opponent whereas the opponent tried to fool it by stepping out of the opponents way at the edge of the ring. On kick-and-defend, we observe that the kicker learned a good kicking policy where it can go towards random ball positions, uses its feet to kick the ball high and tries to avoid the defender. We also see a fooling behavior in the kicker’s motions where it moves left and right quickly once close to the ball to fool the defender. The defender learned to defend by moving in response to the motion of the kicker and using its hands and legs to obstruct the ball. + +These movement strategies are not just useful in competition, for example the skills learned in the Sumo can transfer to other situations even without other agents. In one case, we took the agent trained on the multi-agent Sumo task and faced it with the task of standing while being perturbed by wind forces. The agent receives the zero vector for parts of the opponent observation. We found that the agent managed to stay upright despite never seeing the windy environment or observing wind forces. Please see Appendix B.1 for details of the experiment and quantitative results. Refer to the video for a demonstration. + +# 5.3 EFFECT OF EXPLORATION CURRICULUM + +In section 4.1 we introduced an exploration curriculum to help agents explore in a 3D world. One question that arises is the extent to which the outcome of learning is affected by this exploration reward and to explore the benefit of this exploration reward. As already argued, we found the exploration reward to be crucial for learning as otherwise the agents are unable to explore the sparse competition reward. However, the learned behaviors are mostly a result of the natural curriculum arising out of the multi-agent competition and not due to the dense exploration reward. To see this, first note that we do not give any reward for many of the complex learned behaviours described previously. We further test this by not annealing the exploration reward and always having a dense reward which is a sum of the exploration reward and the competition reward. We take these agents trained without curriculum and pit them against agents trained with exploration curriculum. We plot the average win-rates over 800 games at various intervals during training in Fig. 3, for the sumo and kick-and-defend environments. For kick-and-defend there are two plots, one where kicker is trained with curriculum while keeper without it and vice versa. Observe that the agents trained with curriculum beat the non-curriculum agents by a margin. We found agents trained without curriculum exhibit either non-optimal behaviors for the competition or end up optimizing for a particular component of the dense reward. For example, for Sumo, the agents just learn to stand and move towards center of the arena, and for kick-and-defend, the defender optimizes for being able to stand up but doesn’t learn to defend while the kicker learns a non-optimal strategy of carrying the ball with itself to the goal (rather than kicking) – a policy which is easily defeated by a defender trained with curriculum. Moreover, training without curriculum also takes more samples to learn. We also show these behaviours qualitatively in the videos. These results echo some recent findings (albeit in the single agent case), like Andrychowicz et al. (2017) who found that optimizing for the sparse reward yields better return than optimizing for hand crafted dense rewards. For the competitive multi-agent case, these results shed further light on the importance of the natural curriculum. + +![](images/b945f11d066fc08722a430402c33d364604cc71ecf37dc98786df3ca4e0addcf.jpg) +Figure 3: Effect for exploration curriculum: win-rate of agents trained by annealing the exploration reward against agents which constantly receive the dense exploration reward. The agents which optimized for the sparse competition reward benefit from the natural curriculum of multi-agent training and defeat the other agent by a margin. + +
8 1.0 0.8 0.51.0 - 0.36 0.360.8 0.37 1 0.390.5 0.35 0.38 10.0 0.29 0.33 0.33E[Win] 0.34 0.36 0.36
0.0 E[Loss]0.51 0.410.49 0.420.49 0.41- 0.320.50 1
+ +Table 1: The effect of opponent sampling. $\mathbb { E } [ \mathrm { L o s s } ]$ and $\mathbb { E } [ \mathrm { W i n } ]$ are the expected loss and win-rates for agents trained with a particular $\delta$ as described in 5.4. For humanoid $\delta \ : = \ : 0 . 5$ gives highest win-rate and lowest loss, whereas for Ant $\delta = 0$ was best. + +
81.00.80.50.0E[Win]
1.010.260.130.370.25
0.80.50.4610.220.520.400.630.35
0.590.5810.73
0.00.550.360.16-
E[Loss]0.530.400.170.541
+ +# 5.4 EFFECT OF OPPONENT SAMPLING + +In section 4.2, we introduced the past opponent sampling method for training competitive agents simultaneously. This choice of opponent could be important as it affects the natural curriculum for the agents. We test different opponent sampling strategies by considering a threshold on the oldest opponent for each agent. That is, instead of uniform random over the entire history, we can consider sampling opponent from $\mathrm { U n i f o r m } ( \delta v , v )$ where $v$ is the iteration number for the latest available parameters of the opponent and $\delta \in [ 0 , 1 ]$ is a threshold. Thus, $\delta = 1 . 0$ corresponds to the latest available opponent and $\delta = 0 . 0$ corresponds to uniform sampling over the entire history. We train agents on the Sumo task via self-play, using a $\delta \in \{ 1 . 0 , 0 . 8 , \bar { 0 . 5 } , \bar { 0 . 0 } \}$ and pit the four agents against each other to understand which sampling strategy leads to more robust policies. Since the agents have different skills and strengths at various points during training, we compute a Monte Carlo estimate of the expected win-rate for two agents that have seen the same number of samples taken at a random point during training. This is done by taking average of the win-rates of 30 agents at intervals of 100 iterations after a burn-in of 3000 iterations, where each win-rate is computed from an average over 800 episodes. Table 1a reports the results for Humanoid and Table 1b reports the results for Ant. First note that training against the latest opponent leads to worst performance, as argued earlier. Surprisingly, we found that uniform random $\delta = 0 . 0$ ) over the entire history to have the highest win-rate for Ant and $\delta = 0 . 5$ to have the highest win-rate for Humanoid. This could be because Ant with random policy on a small arena is still a good opponent while a Humanoid with random policy is unable to stand and thus always looses in a few steps. The differences in these win-rates for different sampling strategies show that the choice of the opponent during sampling is important and care must be taken while designing training algorithms for such competitive environments. + +# 5.5 LEARNING ROBUST POLICIES + +Over-fitting to a particular dataset is often a problem in supervised learning. Similar problems can arise in reinforcement learning setups when there is no or little variation in the environment. We discovered two such problems in our competitive multi-agent training framework and we analyze and propose solutions to address these issues. + +# 5.5.1 RANDOMIZATION IN WORLD + +In order to learn robust policies which generalize better we can introduce randomness in the environment, for example the arena radius for the sumo environment can be randomized, the ball position for the kick-and-defend environment can be randomized, agent start positions can be randomized. However, we found that while randomization is crucial to learn policies which generalize better, it might hinder learning early on as there might be too many things for the agents to explore. Indeed, we observe that in kick-and-defend the agents are unable to learn to kick with a lot of randomization in both the ball and agent positions, whereas when trained with no randomization the learned policies are overfit to the particular position of the ball (see Fig. 4). Thus, in order to learn policies that generalize well, we introduce a simple curriculum in the randomization where we start with a small amount of randomization which is easier to solve and then gradually increase the randomization during training. We found this curriculum to work well for all the environments. + +# 5.5.2 COMPETING AGAINST ENSEMBLE OF POLICIES + +Another related problem that we observed is over-fitting to the behavior of the opponent when trained for very long. This results in policies which are good against particular types of opponents but do not generalize to other opponents (say opponents trained with a different random seed). This overfitting can also be observed in win-rates against opponent during training, where one would see oscillations as agents try to adapt to their particular opponent and changes in their strategies. To overcome this we propose learning multiple policies simultaneously. Thus, there is a pool of policies and in each rollout for a particular policy one of the other policies is selected at random as the opponent (in symmetric games, the same policy can also be an opponent). This is similar to multi-task learning (Caruana, 1998) where the same network is used to model multiple related tasks which allows sharing of statistical strength among tasks and reduces overfitting. In this case, the pool of all policies as opponents – current and throughout the history of training – creates a natural distribution over related tasks for multi-task learning. We found random policy initialization to provide enough diversity between agent policies, however techniques that explicitly encourage diversity (Liu & Wang, 2016) can potentially be incorporated in the future. + +In order to test the robustness of training policies in an ensemble, we experiment on the Sumo environment with Ant and Humanoid bodies. We train a pool of three policies in an ensemble and take the policy with the highest average training reward in the last 500 iterations as the best ensemble policy. We also train three independent policies via self-play, that is just a single policy is trained in a run, and again take the policy with the highest average training reward in last 500 iterations as the best self-play policy. Then we pit the best ensemble policy against the best self-play policy and record average win-rates over 800 games. Fig. 5 shows the win-rates over training iterations (after 1000 iterations of training). We find that training in ensemble performs significantly better for the humanoid body, whereas for ant the performance is similar to training a single policy. Again we suspect this is because there is not enough variability in the behavior of ant across different runs. While training single policies might occasionally get stuck in a local minima and learn suboptimal behaviors, we found that when training in an ensemble to be more robust to such minima. Qualitatively, we see more robust behavior of the humanoid trained in ensemble (see video). + +![](images/152bfacb47e873bf346837e201498b80a5c6447de979e7d7bfc9455e1f8b8c6a.jpg) +Figure 4: Win-rate of kicker vs iterations with full randomization + +![](images/f5e400e02f6c6d1d2a0808d79e102f4c6f33d5a9225e9a4aafd4f4d34c22885b.jpg) +Figure 5: $\%$ Win-rate of agents trained in ensemble vs agents trained with just a single policy. Humanoid Sumo (left) and Ant Sumo (right). + +# 6 CONCLUSION + +We have presented several new competitive multi-agent 3D physically simulated environments. We demonstrate the development of highly complex skills in simple environments with simple rewards. In future work, it would be interesting to conduct larger scale experiments in more complex environments that encourage agents to both compete and cooperate with each other. Incorporation of additional skills, such as reasoning about other agents, potentially via techniques from Foerster et al. (2017a), may also be important in our setting. + +# REFERENCES + +Marcin Andrychowicz, Filip Wolski, Alex Ray, Jonas Schneider, Rachel Fong, Peter Welinder, Bob McGrew, Josh Tobin, Pieter Abbeel, and Wojciech Zaremba. Hindsight experience replay. arXiv preprint arXiv:1707.01495, 2017. +Lucian Busoniu, Robert Babuska, and Bart De Schutter. A comprehensive survey of multiagent reinforcement learning. IEEE Transactions on Systems, Man, And Cybernetics-Part C: Applications and Reviews, 38 (2), 2008, 2008. +Rich Caruana. Multitask learning. In Learning to learn, pp. 95–133. Springer, 1998. +Yan Duan, Xi Chen, Rein Houthooft, John Schulman, and Pieter Abbeel. Benchmarking deep reinforcement learning for continuous control. In International Conference on Machine Learning, pp. 1329–1338, 2016. +Jakob Foerster, Richard Chen, Maruan Al-Shedivat, Shimon Whiteson, Pieter Abbeel, and Igor Mordatch. Learning with opponent-learning awareness. arXiv preprint arXiv:1709.04326, 2017a. +Jakob Foerster, Gregory Farquhar, Triantafyllos Afouras, Nantas Nardelli, and Shimon Whiteson. Counterfactual multi-agent policy gradients. arXiv preprint arXiv:1705.08926, 2017b. +Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In Advances in neural information processing systems, pp. 2672–2680, 2014. +He He, Jordan Boyd-Graber, Kevin Kwok, and Hal Daume III. Opponent modeling in deep rein- ´ forcement learning. In International Conference on Machine Learning, pp. 1804–1813, 2016. +Nicolas Heess, Srinivasan Sriram, Jay Lemmon, Josh Merel, Greg Wayne, Yuval Tassa, Tom Erez, Ziyu Wang, Ali Eslami, Martin Riedmiller, et al. Emergence of locomotion behaviours in rich environments. arXiv preprint arXiv:1707.02286, 2017. + +Johannes Heinrich and David Silver. Deep reinforcement learning from self-play in imperfectinformation games. arXiv preprint arXiv:1603.01121, 2016. + +Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980, 2014. + +Timothy P Lillicrap, Jonathan J Hunt, Alexander Pritzel, Nicolas Heess, Tom Erez, Yuval Tassa, David Silver, and Daan Wierstra. Continuous control with deep reinforcement learning. arXiv preprint arXiv:1509.02971, 2015. + +Michael L Littman. Markov games as a framework for multi-agent reinforcement learning. In Proceedings of the eleventh international conference on machine learning, volume 157, pp. 157– 163, 1994. + +Qiang Liu and Dilin Wang. Stein variational gradient descent: A general purpose bayesian inference algorithm. In Advances In Neural Information Processing Systems, pp. 2378–2386, 2016. + +Ryan Lowe, Yi Wu, Aviv Tamar, Jean Harb, Pieter Abbeel, and Igor Mordatch. Multi-agent actorcritic for mixed cooperative-competitive environments. arXiv preprint arXiv:1706.02275, 2017. + +Laetitia Matignon, Guillaume J Laurent, and Nadine Le Fort-Piat. Independent reinforcement learners in cooperative Markov games: a survey regarding coordination problems. The Knowledge Engineering Review, 27(1):1–31, 2012. + +Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Andrei A Rusu, Joel Veness, Marc G Bellemare, Alex Graves, Martin Riedmiller, Andreas K Fidjeland, Georg Ostrovski, et al. Human-level control through deep reinforcement learning. Nature, 518(7540):529–533, 2015. + +Volodymyr Mnih, Adria Puigdomenech Badia, Mehdi Mirza, Alex Graves, Timothy Lillicrap, Tim Harley, David Silver, and Koray Kavukcuoglu. Asynchronous methods for deep reinforcement learning. In International Conference on Machine Learning, pp. 1928–1937, 2016. + +OpenAI. OpenAI Dota 2 1v1 bot, 2017. URL https://openai.com/ the-international/. + +Liviu Panait and Sean Luke. Cooperative multi-agent learning: The state of the art. Autonomous agents and multi-agent systems, 11(3):387–434, 2005. + +Lerrel Pinto, James Davidson, and Abhinav Gupta. Supervision via competition: Robot adversaries for learning tasks. In Robotics and Automation (ICRA), 2017 IEEE International Conference on, pp. 1601–1608. IEEE, 2017. + +John Schulman, Sergey Levine, Pieter Abbeel, Michael Jordan, and Philipp Moritz. Trust region policy optimization. In Proceedings of the 32nd International Conference on Machine Learning (ICML-15), pp. 1889–1897, 2015a. + +John Schulman, Philipp Moritz, Sergey Levine, Michael Jordan, and Pieter Abbeel. Highdimensional continuous control using generalized advantage estimation. arXiv preprint arXiv:1506.02438, 2015b. + +John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov. Proximal policy optimization algorithms. arXiv preprint arXiv:1707.06347, 2017. + +David Silver, Aja Huang, Chris J Maddison, Arthur Guez, Laurent Sifre, George Van Den Driessche, Julian Schrittwieser, Ioannis Antonoglou, Veda Panneershelvam, Marc Lanctot, et al. Mastering the game of go with deep neural networks and tree search. Nature, 529(7587):484–489, 2016. + +Karl Sims. Evolving virtual creatures. In Proceedings of the 21st annual conference on Computer graphics and interactive techniques, pp. 15–22. ACM, 1994. + +Kenneth O Stanley and Risto Miikkulainen. Competitive coevolution through evolutionary complexification. Journal of Artificial Intelligence Research, 21:63–100, 2004. + +Sainbayar Sukhbaatar, Ilya Kostrikov, Arthur Szlam, and Rob Fergus. Intrinsic motivation and automatic curricula via asymmetric self-play. arXiv preprint arXiv:1703.05407, 2017. + +Ardi Tampuu, Tambet Matiisen, Dorian Kodelja, Ilya Kuzovkin, Kristjan Korjus, Juhan Aru, Jaan Aru, and Raul Vicente. Multiagent cooperation and competition with deep reinforcement learning. PloS one, 12(4):e0172395, 2017. + +Ming Tan. Multi-agent reinforcement learning: Independent vs. cooperative agents. In Proceedings of the tenth international conference on machine learning, pp. 330–337, 1993. + +Gerald Tesauro. Temporal difference learning and td-gammon. Communications of the ACM, 38(3): 58–68, 1995. + +Emanuel Todorov, Tom Erez, and Yuval Tassa. Mujoco: A physics engine for model-based control. In Intelligent Robots and Systems (IROS), 2012 IEEE/RSJ International Conference on, pp. 5026– 5033. IEEE, 2012. + +Kevin Wampler, Erik Andersen, Evan Herbst, Yongjoon Lee, and Zoran Popovic. Character anima- ´ tion in two-player adversarial games. ACM Transactions on Graphics (TOG), 29(3):26, 2010. + +Ronald J Williams. Simple statistical gradient-following algorithms for connectionist reinforcement learning. Machine learning, 8(3-4):229–256, 1992. + +# A EXPLORATION REWARDS + +We define the dense exploration rewards used for the tasks in this section. Our exploration reward terms are based on adapting the rewards defined previously for the training humanoids and quadrupeds to walk (Duan et al., 2016; Schulman et al., 2015b). We first review this locomotion reward and then define the task-specific dense rewards. These rewards take the form $r _ { t } ( s , a ) = v _ { f w d } + c _ { t } ( s , a ) + C _ { a l i v e }$ where $v _ { f w d }$ is the velocity in the forward direction, a bonus for standing $C _ { a l i v e }$ and costs for impact and action $c _ { t } ( s , a )$ . We considered the following locomotion reward defined for Humanoid-v1 environment in OpenAI Gym package: + +$$ +r _ { t } ^ { h } ( s , a ) = v _ { f w d } + c ^ { h } ( s , a ) + C _ { a l i v e } = v _ { f w d } - 0 . 1 | a | | ^ { 2 } - 5 \cdot 1 0 ^ { - 7 } | | F _ { i m p a c t } | | ^ { 2 } + C _ { a l i v e } +$$ + +where $F _ { i m p a c t }$ is the contact force vector clipped to values between 1 and 1, and $C _ { a l i v e }$ is a bonus for the center of the body being at a certain height, defined as $C _ { a l i v e } = + 5$ if $2 . 0 \geq z _ { b o d y } \geq 1 . 0$ , else 0. + +Similarly, the following is the reward for quadruped locomotion: + +$$ +r _ { t } ^ { q } ( s , a ) = v _ { f w d } + c ^ { q } ( s , a ) = v _ { f w d } - 0 . 5 | a | | ^ { 2 } - 5 \cdot 1 0 ^ { - 4 } | | F _ { i m p a c t } | | ^ { 2 } + C _ { a l i v e } +$$ + +where $C _ { a l i v e } = + 1$ if $1 . 0 \geq z _ { b o d y } \geq 0 . 2$ , else 0. + +In the following, superscript $h$ refers to humanoid agents and superscript $q$ refers to quadruped. We redefine $C _ { a l i v e }$ to be $+ 5$ if $z _ { b o d y } \ge 1 . 0$ , else $- 5$ for humanoid, and $C _ { a l i v e } = + 1$ if $z _ { b o d y } \ge 0 . 2 8$ else $- 1$ for quadruped. + +Run to Goal For humanoids, reward is $r ^ { h } ( s , a ) - | x - g |$ where $x - g$ is the $l _ { 1 }$ distance of the agent from the goal $g$ along the $x$ -axis. For ant, reward is similar $r ^ { q } ( s , a ) - | x - g |$ . + +You Shall not Pass For the agent whose goal is to reach the other side, the reward is same as for run-to-goal. For the blocking agent, the reward for humanoid is $c ^ { h } ( s , a ) + C _ { a l i v e } + | x ^ { \prime } - g |$ where $| x ^ { \prime } - g |$ is the distance of opponent to the goal. + +Sumo For humanoids, reward is $c ^ { h } ( s , a ) + C _ { a l i v e } - ( x ^ { 2 } + y ^ { 2 } ) ^ { 0 . 5 }$ , where the last term is distance from the center of the ring. Similarly for ant: $c ^ { q } ( s , a ) + C _ { a l i v e } - ( x ^ { 2 } + y ^ { 2 } ) ^ { 0 . 5 }$ + +Kick and Defend: For kicker, reward is $r ^ { h } ( s , a ) - | | x - b | | - | b _ { x } - g |$ , where $b$ is the $( x , y )$ position of the ball, $b _ { x }$ is the $x$ -coordinate of the ball and $g$ is the $x$ -coordinate of the goal-post. For defender, reward is $c ^ { h } ( s , a ) + C _ { a l i v e } + | b _ { x } - g |$ where for $C _ { a l i v e }$ we only gave positive reward if the defender was in front of the goal area. + +Table 2: Average number of steps before agent falls. Sumo Agent refers to the agent trained in Sumo environment whereas Walker Agent refers to the agent trained to walk in a single agent environment. + +
Force Magnitude
200300400500600
Sumo Agent372 ± 146327±150247± 143181 ± 114123 ± 57
Walker Agent179± 54139± 42116± 32103±2395 ± 20
+ +# B ADDITIONAL RESULTS + +# B.1 TRANSFER RESULTS + +We took the agent trained on the multi-agent Sumo task and faced it with the task of standing while being perturbed by wind forces. The agent receives a zero vector for parts of the observation space which correspond to the opponent. We calculate the number of steps before the agent falls down (i.e. when $z _ { b o d y } \le 0 . 5$ ) or the agent is pushed out of the arena and report the average steps over 200 episodes. Episodes last a maximum of 500 time steps. In half the episodes the wind force is applied in a radially outwards direction and in the remaining half it is applied in the radially inwards direction. We allow 50 steps for the agent to stabilize and apply the force at intervals of 50 steps where in between the intervals the force magnitude is decayed at a constant rate: + +$$ +F _ { t } = { \left\{ \begin{array} { l l } { \qquad F } & { { \mathrm { i f ~ } } t \equiv 0 { \pmod { 5 0 } } } \\ { 0 . 9 * F _ { t - 1 } } & { { \mathrm { o t h e r w i s e } } } \end{array} \right. } +$$ + +where $F \in \{ 2 0 0 , 3 0 0 , 4 0 0 , 5 0 0 , 6 0 0 \}$ . + +We compare with a humanoid agent trained in a single agent environment for the task of walking. We used same LSTM policy architecture as used for the Sumo agent and trained the humanoid in the publicly available OpenAI Gym Humanoid-v1 environment using PPO. We then apply force on this agent using the same method as above where the direction of the force is in the direction the agent is walking in half the episodes and opposite to it in the remaining half. We record average number of steps to fall using the same condition as for the Sumo agent. + +Table 2 shows the average number of steps over 200 episodes along with the standard deviation. We see that the humanoid trained in Sumo is more robust to adversarial forces and able to withstand large magnitude of force for many steps. \ No newline at end of file diff --git a/parse/train/Sy0GnUxCb/Sy0GnUxCb_content_list.json b/parse/train/Sy0GnUxCb/Sy0GnUxCb_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..f3948f4b369c121bcf8fd0a27993cefa6449bba5 --- /dev/null +++ b/parse/train/Sy0GnUxCb/Sy0GnUxCb_content_list.json @@ -0,0 +1,1384 @@ +[ + { + "type": "text", + "text": "EMERGENT COMPLEXITY VIA MULTI-AGENT COMPETITION ", + "text_level": 1, + "bbox": [ + 174, + 99, + 720, + 145 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Trapit Bansal∗ UMass Amherst ", + "bbox": [ + 184, + 170, + 292, + 198 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Jakub Pachocki OpenAI ", + "bbox": [ + 316, + 170, + 429, + 199 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Szymon Sidor OpenAI ", + "bbox": [ + 452, + 171, + 552, + 199 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Ilya Sutskever OpenAI ", + "bbox": [ + 575, + 171, + 678, + 199 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Igor Mordatch OpenAI ", + "bbox": [ + 699, + 171, + 807, + 199 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 236, + 544, + 251 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Reinforcement learning algorithms can train agents that solve problems in complex, interesting environments. Normally, the complexity of the trained agent is closely related to the complexity of the environment. This suggests that a highly capable agent requires a complex environment for training. In this paper, we point out that a competitive multi-agent environment trained with self-play can produce behaviors that are far more complex than the environment itself. We also point out that such environments come with a natural curriculum, because for any skill level, an environment full of agents of this level will have the right level of difficulty. ", + "bbox": [ + 233, + 267, + 764, + 378 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "This work introduces several competitive multi-agent environments where agents compete in a 3D world with simulated physics. The trained agents learn a wide variety of complex and interesting skills, even though the environment themselves are relatively simple. The skills include behaviors such as running, blocking, ducking, tackling, fooling opponents, kicking, and defending using both arms and legs. A highlight of the learned behaviors can be found here: https://goo.gl/eR7fbX. ", + "bbox": [ + 233, + 381, + 764, + 478 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 506, + 336, + 522 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Reinforcement Learning (RL) is exciting because good reinforcement learning algorithms exist (Mnih et al., 2015; Silver et al., 2016; Schulman et al., 2015a; Mnih et al., 2016; Schulman et al., 2015b; Lillicrap et al., 2015; Schulman et al., 2017), allowing us to train agents that accomplish a great variety of interesting tasks. We can train an agent to play Atari games from pixels (Mnih et al., 2015) or get humanoids to walk (Schulman et al., 2017). RL is exciting partly because it is easy to envision an RL algorithm producing a broadly competent agent when trained on an appropriate curriculum of environments. ", + "bbox": [ + 174, + 537, + 825, + 635 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "In general, training an agent to perform a highly complex task requires a highly complex environment, and these can be difficult to create. However, there exists a class of environments where the behavior produced by the agents can be far more complex than the environments; this is the class of the competitive multi-agent environments trained with self-play. Such environments have two very attractive properties: (1) Even very simple competitive multi-agent environments can produce extremely complex behaviors. For example, the game of Go has very simple rules, but the strategies needed to win are extremely complex. This is because the complexity of these environments is produced by the competing agents that act in it. Thus, as the other agents become more competent, the environment effectively becomes more complex. (2) When trained with self-play, the competitive multi-agent environment provides the agents with a perfect curriculum. This happens because no matter how weak or strong an agent is, an environment populated with other agents of comparable strength provides the right challenge to the agent, facilitating maximally rapid learning and avoiding getting stuck. ", + "bbox": [ + 174, + 643, + 825, + 823 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Self-play in competitive multi-agent environments is not a new idea – it has already been explored in TD-gammon (Tesauro, 1995) and refined in AlphaGo (Silver et al., 2016) and Dota 2 (OpenAI). In both cases, the resulting behavior was far more complex than the environment itself, and the self-play approach provided the agents with a perfectly tuned curriculum for each task. In this paper, we investigate whether the idea of competitive multi-agent environments can yield fruit in other domains: specifically, in the domain of continuous control, where balance, dexterity, and manipulation are the key skills. ", + "bbox": [ + 174, + 830, + 823, + 900 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 103, + 823, + 132 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In more detail, we introduce several multi-agent tasks with competing goals in a 3D world with simulated physics, using the MuJoCo framework (Todorov et al., 2012), where the agents would need to learn highly developed motor skills in order to succeed in the competitive environment. We train the agents using a distributed implementation of a recent policy gradient algorithm, Proximal Policy Optimization (Schulman et al., 2017). By adding a simple exploration curriculum to aid exploration in the environment we find that agents learn a high level of dexterity in order to achieve their goals, in particular we find numerous emergent skills for which it may be difficult to engineer a reward. Specifically, the agents learned a wide variety of skills and behaviors that include running, blocking, ducking, tackling, fooling opponents, kicking, and defending using arms and legs. Highlight of the learned behaviors on the various tasks can be found here: https://goo.gl/eR7fbX ", + "bbox": [ + 173, + 138, + 825, + 279 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 PRELIMINARIES ", + "text_level": 1, + "bbox": [ + 176, + 300, + 339, + 315 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In this section, we review some background on policy gradient methods, Proximal Policy Optimization and related work in the multi-agent reinforcement learning domain. ", + "bbox": [ + 174, + 333, + 820, + 361 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Notation: We consider multi-agent Markov games (Littman, 1994). A Markov game for $N$ agents is a partially observable Markov decision process (MDP) defined by: a set of states $s$ describing the state of the world and the possible joint configuration of all the agents, a set of observations $\\mathcal { O } ^ { 1 } , \\ldots , \\mathcal { O } ^ { N }$ of each agent, a set of actions of each agent $\\mathcal { A } ^ { 1 } , \\ldots , \\mathcal { A } ^ { \\tilde { N } }$ , a transition function $\\tau :$ $\\mathcal { S } \\times \\mathcal { A } ^ { 1 } \\cdot \\cdot \\cdot \\mathcal { A } ^ { N } \\to \\mathcal { S }$ determining distribution over next states, and a reward for each agent $i$ which is a function of the state and the agent’s action $r ^ { i } : \\mathcal { S } \\times \\mathcal { A } ^ { i } \\to \\mathbb { R }$ . Agents choose their actions according to a stochastic policy $\\pi _ { \\theta ^ { i } } : \\mathcal { O } ^ { i } \\times \\mathcal { A } ^ { i } [ 0 , 1 ]$ , where $\\theta ^ { i }$ are the parameters of the policy. For continuous control problems considered here, $\\pi _ { \\theta }$ is Gaussian where the mean and variance are deep neural networks with parameter $\\theta$ . Each agent $i$ aims to maximize its own total expected return $\\begin{array} { r } { R ^ { i } = \\sum _ { t = 0 } ^ { T } \\gamma ^ { t } r _ { t } ^ { i } } \\end{array}$ , where $\\gamma$ is a discount factor and $T$ is the time horizon ", + "bbox": [ + 173, + 367, + 825, + 511 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Policy Gradient: Policy gradient methods work by directly computing an estimate of the gradient of policy parameters in order to maximize the expected return using stochastic gradient descent. These methods are behind much of the recent success in using deep neural networks for control (Schulman et al., 2015b; Heess et al., 2017; Lillicrap et al., 2015; Silver et al., 2016). Such methods are also attractive because they don’t require an explicit model of the world. There are several different expressions for the policy gradient estimator which have the form $g : = \\mathbb { E } \\left[ A _ { t } \\nabla _ { \\theta } \\log \\pi _ { \\theta } \\right]$ . Different choices of $A _ { t }$ lead to different algorithms, for example taking the sample return of a trajectory $\\boldsymbol { A } _ { t } = \\sum _ { t } \\boldsymbol { r } _ { t }$ leads to the REINFORCE algorithm (Williams, 1992). However, such algorithms suffer from high variance in the gradient estimates and it’s typical to use a baseline, such as a value function baseline, to ameliorate the high variance. Generalized advantage estimation (Schulman et al., 2015b) takes this approach of using a learned value function to reduce variance at the cost of some bias and using an exponentially weighted estimator of the advantage function. ", + "bbox": [ + 173, + 517, + 825, + 684 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Proximal Policy Optimization (PPO): Achieving good results with policy gradient algorithms requires carefully tuning the step-size (Schulman et al., 2015a). Moreover, most policy gradient methods perform one gradient update per sampled trajectory and have high sample complexity. Recently, Schulman et al. (2017) proposed the PPO algorithm which addresses both these problems. This uses a surrogate objective which is maximized while penalizing large changes to the policy. Let $\\begin{array} { r } { l _ { t } ( \\theta ) ~ = ~ \\frac { \\pi _ { \\theta } ^ { - } \\left( a _ { t } | s _ { t } \\right) ^ { - } } { \\pi _ { \\theta _ { o l d } } \\left( a _ { t } | s _ { t } \\right) } } \\end{array}$ denote the likelihood ratio. Then PPO optimizes the objective: $L = \\mathbb { E } \\left[ \\operatorname* { m i n } ( l _ { t } ( \\theta ) \\hat { A } _ { t } , \\operatorname { c l i p } ( l _ { t } ( \\theta ) , 1 - \\epsilon , 1 + \\epsilon ) \\hat { A } _ { t } ) \\right]$ , where $\\hat { A } _ { t }$ is the generalized advantage estimate and $\\mathrm { c l i p } ( l _ { t } ( \\theta ) , 1 - \\epsilon , 1 + \\epsilon )$ clips $l _ { t } ( \\theta )$ in the interval $[ 1 - \\epsilon , 1 + \\epsilon ]$ . The algorithm alternates between sampling multiple trajectories from the policy and performing several epochs of SGD on the sampled dataset to optimize this surrogate objective. Since the state value function is also simultaneously approximated, the error for the value function approximation is also added to the surrogate objective to compute the complete objective function (Schulman et al., 2017). ", + "bbox": [ + 173, + 690, + 825, + 875 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Related Work: Tan (1993) explored the multi-agent setting with independently learning agents using Q-learning, in particular exploring advantages of cooperative agents over independent agents in a 2D grid world. This was further explored by Matignon et al. (2012) again in the cooperative setting. A lot of the work on multi-agent RL is focused on cooperative settings, see Busoniu et al. (2008) for a review of multi-agent RL and Panait & Luke (2005) for a review focused on cooperative settings. Stanley & Miikkulainen (2004) trained agents in a competitive 2D world, using evolutionary strategies to evolve both weights and structure of policies with competition as a fitness measure. Tampuu et al. (2017) studied the application of deep Q-learning to train Pong agents with competitive and collaborative rewarding schemes. He et al. (2016) used deep Q-learning to model competitive games where only one agent is learning and the Q network implicitly models the opponent. Silver et al. (2016) used self-play with deep reinforcement learning techniques to master the game of Go. Sukhbaatar et al. (2017) introduced a self-play method for generating an automatic training curriculum in single-agent environments. From a game-theoretic perspective, Heinrich & Silver (2016) studied fictitious self-play for achieving approximate Nash equilibrium in zero-sum games like Poker. Recently, Foerster et al. (2017a) introduced an algorithm which explicitly accounts for the fact that the opponent is also learning and showed that it can achieve cooperation in iterated prisoner’s dilemma, however the algorithm requires access to the opponent’s parameters. Recently, Lowe et al. (2017) and Foerster et al. (2017b) proposed methods for centralized learning in multi-agent domains, where the idea is to use an actor-critic method with a central critic which can observe the joint state and actions of all agents in order to reduce variance, evaluating on 2D games and StarCraft. In this work, we do not rely on centralized training and address the variance problem by using very large batchsize through a distributed implementation of the PPO algorithm. Moreover, we study fully competitive settings in a 3D world with simulated physics whereas prior applications have focused on toy 2D worlds or game-theoretic problems. Recent work on learning dexterous locomotion skills in 3D environments by adding complexity in the agent’s environment (Heess et al., 2017) is also related. However, whereas Heess et al. (2017) learn complex behaviours by engineering complexity into the environment design and by engineering dense reward functions for these environments, the resultant complexity in our work is due to the presence of other learning agents in a simple environment. Our work is also related to early work in the graphics community (Sims, 1994) on evolving creature morphology in varying environments using genetic algorithm and work in animation (Wampler et al., 2010) for adversarial games. The competitive multi-agent learning framework is also related to generative adversarial networks (Goodfellow et al., 2014) and work on learning robust grasping policies through an adversary (Pinto et al., 2017). ", + "bbox": [ + 176, + 882, + 823, + 924 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 825, + 518 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 COMPETITIVE ENVIRONMENTS ", + "text_level": 1, + "bbox": [ + 176, + 541, + 465, + 556 + ], + "page_idx": 2 + }, + { + "type": "image", + "img_path": "images/0bc53a965370e58dc6fba3823a2d9d3f433c6c327fbd86c872932af6f33f371e.jpg", + "image_caption": [ + "Figure 1: Illustrations of competitive environments we consider in our work: Run to Goal, You Shall Not Pass, Sumo, and Kick and Defend. " + ], + "image_footnote": [], + "bbox": [ + 174, + 577, + 823, + 670 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We introduce four competitive environments and experiment with two types of agents. In this paper we focus on two agent worlds, that is 1-vs-1 games, though these environments can be extended to include multiple agents for a mixed competitive and co-operative setup. We will now describe the four environments and the competitive rewards in each environment. Figure 1 shows a rendering of the environments. We consider two three-dimensional agent bodies: ant and humanoid. The ant is a quadrupedal body with $1 2 \\mathrm { D o F }$ and 8 actuated joints. Humanoid has 23 DoF and 17 actuated joints. ", + "bbox": [ + 174, + 728, + 825, + 811 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Run to Goal: The agents start by facing each other in a 3D world and they each have goals on the opposite side of the word (see Fig.1a). The agent that reaches its goal first wins. Reaching the goal before the opponent gives a reward of $+ 1 0 0 0$ to the agent and -1000 to the opponent. If no agent reaches its goal then they both get -1000. ", + "bbox": [ + 174, + 819, + 823, + 875 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "You Shall Not Pass: This is the same world as the previous task, but one agent (the blocker) now has the objective of blocking the other agent from reaching it’s goal while not falling down. If the blocker is successful in preventing the opponent from reaching the goal and is standing at the end of episode then it gets $+ 1 0 0 0$ reward, if it is not standing then it gets 0 reward, and the opponent gets -1000 reward. If the opponent is successful in reaching it’s goal then it gets $+ 1 0 0 0$ reward and the blocker gets -1000 reward. ", + "bbox": [ + 174, + 882, + 823, + 924 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "", + "bbox": [ + 176, + 103, + 821, + 145 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Sumo: The agents compete on a round arena (see Fig.1c) and the goal of each agent is to either knock the other agent to the ground or to push them out of the ring. The winner gets $+ 1 0 0 0$ and the other agent gets -1000. If there is a draw then both agents get -1000. ", + "bbox": [ + 174, + 152, + 823, + 195 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Kick and Defend: This a standard penalty shootout (see Fig.1d). One agent has to kick a ball through the goal, which has a fixed width of 6 units, while the other agent defends. Successful kick or defend gives the agent $+ 1 0 0 0$ reward and the opponent -1000 reward. The defender cannot go beyond the goal-keeping area which is a distance 3 units from the goal, doing so terminates the game with a penalty of -1000 for the defender. We give two additional rewards for defender: if defender is successful and it made contact with the ball then it gets additional $+ 5 0 0$ reward, and if the defender is successful and still standing at the end of the game then it gets another additional reward of $+ 5 0 0$ . We found the latter two rewards to yield more realistic looking defending behaviors. ", + "bbox": [ + 174, + 202, + 825, + 313 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "4 TRAINING COMPETITIVE AGENTS ", + "text_level": 1, + "bbox": [ + 176, + 333, + 488, + 349 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In this section we describe the multi-agent training framework. We use a policy gradient algorithm, Proximal Policy Optimization (PPO) (Schulman et al., 2017), described previously. We adopt a decentralized training approach and use a distributed implementation of PPO for very large scale multi-agent training. This allows us to use really large batch-sizes during training ameliorating the variance problem to some extent while also aiding in exploration. Our distributed PPO implementation is similar to the implementation of Heess et al. (2017), where instead of the KL penalty we used the clipped objective as proposed in PPO (Schulman et al., 2017). We do multiple rollouts in parallel for each agent and have separate optimizers for each agent. We collect a large amount of rollouts from the parallel workers and for each agent optimize the objective with the collected batch on 4 GPUs. The approach is same as synchronous actor critic of Mnih et al. (2016). Instead of estimating a truncated generalized advantage estimate (GAE) from a small number of steps per rollout, as in Schulman et al. (2017); Heess et al. (2017), we estimate GAE from the full rollouts. This is important as the competition reward is a sparse reward given at the termination of the episode. ", + "bbox": [ + 174, + 366, + 825, + 546 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "There are further challenges in applying distributed PPO to train multiple competitive agents. One is the problem of exploration with sparse reward and second is the choice of opponent during training which effects the stability of training. We now turn our attention to these issues. ", + "bbox": [ + 176, + 553, + 820, + 595 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "4.1 EXPLORATION CURRICULUM", + "text_level": 1, + "bbox": [ + 176, + 613, + 416, + 626 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The success of agents in the competitive games requires the agents to occasionally solve the task (i.e. win the competition) by random actions. The probability of this happening in most games is minuscule as they require as a prerequisite some fundamental motor skills like the ability to walk. For example, the only way a kicker in the kick-and-defend task would achieve any positive reward is if it moves towards the ball and causes sufficient displacement to it so as to make it go past the goal boundaries which is also obstructed by a defender. This is a problem of training from sparse reward which is an active area of current research (Andrychowicz et al., 2017). To overcome this problem, we can use simple dense rewards at each step to allow the agents to learn basic motor skills initially. Such rewards have been previously researched for tasks like walking forward and standing up, see for e.g. Schulman et al. (2015b) and Duan et al. (2016). However, engineering such dense rewards for the competitive tasks is not straight forward. Moreover, such engineered rewards defeat the purpose of the competitive multi-agent training as we would like the agents to benefit from the natural curriculum arising from the multi-agent training. To overcome this chicken-and-egg problem, we instead propose to use a simple curriculum for training. ", + "bbox": [ + 174, + 638, + 825, + 833 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We use a dense reward at every step in the beginning phase of the training to allow agents to learn basic motor skills, like walking forward or being able to stand, which would increase the probability of random actions from the agent yielding a positive reward. We refer to this reward as the exploration reward. The exploration reward is gradually annealed to zero, in favor of the competition reward, to allow the agents to train for the majority of the training using the sparse competition reward. This is achieved using a linear annealing factor $\\alpha$ . So, at time-step $t$ , if the exploration reward is $s _ { t }$ , the competition reward is $R$ and $T$ is the termination time-step, then the reward is: ", + "bbox": [ + 174, + 840, + 823, + 924 + ], + "page_idx": 3 + }, + { + "type": "image", + "img_path": "images/611e1d088992578d7def0edfa3a82e9cac54d0c160389f20d84a21b79c6c4f59.jpg", + "image_caption": [ + "Figure 2: Opponent Sampling: Training rewards for two opponent sampling strategies. " + ], + "image_footnote": [], + "bbox": [ + 183, + 101, + 818, + 213 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 266, + 687, + 281 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/f545273695d1fea526ce9d5faa51fb178d327fa4a5bccb1363ff43021ef47541.jpg", + "text": "$$\nr _ { t } = \\alpha _ { t } s _ { t } + ( 1 - \\alpha _ { t } ) \\mathbb { I } [ t = = T ] R\n$$", + "text_format": "latex", + "bbox": [ + 385, + 287, + 612, + 305 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "This ameliorates the problem of exploration with the sparse reward, which is particularly tough in a 3D world with simulated physics and complex agents like humanoid, while still benefiting from training for the sparse competition reward for the majority of the training. During a typical training run, the agents would train on the dense reward for only about $10 \\mathrm { - } 1 5 \\%$ of the training epochs. The dense rewards used are described in the Appendix A and are generally composed of the following terms: distance to goal, velocity in $\\mathbf { X }$ -direction, control cost, impact cost, standing reward. These rewards are adopted from existing work and we did not tune weights on the various reward terms. In particular, it is important to note that there is no dense reward term for many of the complex emergent behaviors and we also show in the experiment section how the learned behaviors are affected if we do not anneal the dense reward to benefit from optimizing the sparse competition reward. ", + "bbox": [ + 173, + 311, + 825, + 450 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4.2 OPPONENT SAMPLING ", + "text_level": 1, + "bbox": [ + 176, + 468, + 370, + 482 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In the competitive multi-agent framework, all agents are simultaneously training in opponent pairs. Thus, the skill of opponents encountered during training could have significant impact on the learning of the agents. We found that training agents against the most recent opponent leads to imbalance in training where one agent becomes more skilled than the other agent early in training and the other agent is unable to recover. Fig. 2a shows the rewards during training with this naive approach (for the “run to goal” task with ant). Instead, we found that training against random old versions of the opponent to work much better. Thus, during training, for each rollout for an agent we sample old parameters for the opponent. Fig. 2b shows the rewards for agents trained using this strategy. This leads to more stable training and more robust policies. We further analyze the effect of this opponent sampling in the experiments section. Note that for self-play this means that the policy at any time should be able to defeat random older versions of itself, thus ensuring continual learning. ", + "bbox": [ + 174, + 494, + 825, + 647 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "5 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 667, + 326, + 684 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We train agents for the four competitive tasks using the training methods described previously. Our aim is to show that competitive multi-agent training provides a natural curriculum during learning which allows agents to learn complex behaviors. We provide additional training details and analyze various aspects of the competitive multi-agent training in this section. A highlight of the learned behaviors can be seen in the videos. Code for the environments as well as learned policy parameters for agents on all the environments are available: https://github.com/openai/multiagent-competition. ", + "bbox": [ + 174, + 699, + 825, + 784 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "5.1 EXPERIMENTAL DETAILS ", + "text_level": 1, + "bbox": [ + 176, + 800, + 390, + 814 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Policies and Value Functions: We compare both MLP and LSTM for the policies and the value functions. MLP had 2 hidden layers with 128 units each. For LSTM networks, the input was first projected to a 128 dimensional embedding using a fully connected layer with ReLU activation which is then fed into a single-layer LSTM with 128 hidden state dimension and the output is projected to the action dimension using another fully connected layer. We used Gaussian policies with mean given by the output of the networks and a diagonal covariance matrix whose entries are also treated as trianable parameters. The policy outputs are clipped to lie within the control range. We used ", + "bbox": [ + 174, + 825, + 825, + 924 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "MLP policy and value functions for the run-to-goal and you-shall-not-pass environments, and LSTM policy and value function for sumo and kick-and-defend. This is because earlier experiments did not yield good results with MLP policy on these tasks. For LSTM policy we used truncated BPTT with a truncation of 10 timesteps. The policy and the value functions have separate parameters. For the asymmetric games, you-shall-not-pass and kick-and-defend, we use separate policies for the two agents in a game. ", + "bbox": [ + 174, + 103, + 825, + 188 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Observations: For the Ant body we use all the joint angles of the agent, its velocity of all its joints, the contact forces acting on the body and the relative position and all the joint angles for the opponent. For the Humanoid body, in addition to the above we also give the centre-of-mass based inertia tensor, velocity vector and the actuator forces for the body. In addition to these, there are other environment specific observations. For the Sumo environment, we give the torso’s orientation vector as the input, the radial distance from the edge of the ring of all the agents and the time remaining in the game. For kick-and-defend, we give the relative position of the ball from the agent, the relative distance of the ball from goal and the relative position of the ball from the two goal posts. Note that none of the agents observe the complete global state of the multi-agent world and only observe relevant sub-parts of the state vector to keep observations as close to real-world scenarios as possible. ", + "bbox": [ + 174, + 194, + 825, + 333 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Algorithm Parameters: We use Adam (Kingma & Ba, 2014) with learning rate 0.001. The clipping parameter in PPO $\\epsilon = 0 . 2$ , discounting factor $\\gamma = 0 . 9 9 5$ and generalized advantage estimate parameter $\\lambda = 0 . 9 5$ . Each iteration, we collect 409600 samples from the parallel rollouts and perform multiple epochs of PPO training in mini-batches consisting of 5120 samples. For MLP policies we did 6 epochs of SGD per iteration and for LSTM policies we did 3 epochs. We don’t use any entropy bonus. We found $l _ { 2 }$ regularization of the policy and value network parameters to be useful. The co-efficient $\\alpha _ { t }$ in eq. 1 for the exploration reward is annealed to 0 in 500 iterations for all the environments except for kick-and-defend in which it is annealed in 1000 iterations. ", + "bbox": [ + 174, + 340, + 825, + 450 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "5.2 LEARNED BEHAVIORS ", + "text_level": 1, + "bbox": [ + 176, + 469, + 369, + 483 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We observe numerous interesting learned behaviors demonstrated by the agents as a result of the complexity arising out of the competitive multi-agent training. Different random seeds often lead to somewhat different behaviors. Refer to the videos for highlights of the learned policies on all the tasks. On Run-to-Goal, we observe the quadruped Ants demonstrate behaviors like blocking, standing robustly, using legs to topple the opponent and running towards the goal. Humanoids try to avoid each other and run towards their goal really fast, occasionally they will bump into each other with force and try to recover from the impact. On You-Shall-Not-Pass, we observe the blocking humanoid learn to block by raising its hand while the other humanoid eventually learned to duck in order to cross. On Sumo, we observe multiple different strategies used by the Ant and Humanoid. Humanoids, for example, demonstrate a stable fighting stance and learned to knock the opponent using their heads. In a different run, we observe that one agent learned to charge towards the opponent whereas the opponent tried to fool it by stepping out of the opponents way at the edge of the ring. On kick-and-defend, we observe that the kicker learned a good kicking policy where it can go towards random ball positions, uses its feet to kick the ball high and tries to avoid the defender. We also see a fooling behavior in the kicker’s motions where it moves left and right quickly once close to the ball to fool the defender. The defender learned to defend by moving in response to the motion of the kicker and using its hands and legs to obstruct the ball. ", + "bbox": [ + 174, + 496, + 825, + 732 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "These movement strategies are not just useful in competition, for example the skills learned in the Sumo can transfer to other situations even without other agents. In one case, we took the agent trained on the multi-agent Sumo task and faced it with the task of standing while being perturbed by wind forces. The agent receives the zero vector for parts of the opponent observation. We found that the agent managed to stay upright despite never seeing the windy environment or observing wind forces. Please see Appendix B.1 for details of the experiment and quantitative results. Refer to the video for a demonstration. ", + "bbox": [ + 174, + 739, + 823, + 837 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "5.3 EFFECT OF EXPLORATION CURRICULUM", + "text_level": 1, + "bbox": [ + 174, + 854, + 495, + 869 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "In section 4.1 we introduced an exploration curriculum to help agents explore in a 3D world. One question that arises is the extent to which the outcome of learning is affected by this exploration reward and to explore the benefit of this exploration reward. As already argued, we found the exploration reward to be crucial for learning as otherwise the agents are unable to explore the sparse competition reward. However, the learned behaviors are mostly a result of the natural curriculum arising out of the multi-agent competition and not due to the dense exploration reward. To see this, first note that we do not give any reward for many of the complex learned behaviours described previously. We further test this by not annealing the exploration reward and always having a dense reward which is a sum of the exploration reward and the competition reward. We take these agents trained without curriculum and pit them against agents trained with exploration curriculum. We plot the average win-rates over 800 games at various intervals during training in Fig. 3, for the sumo and kick-and-defend environments. For kick-and-defend there are two plots, one where kicker is trained with curriculum while keeper without it and vice versa. Observe that the agents trained with curriculum beat the non-curriculum agents by a margin. We found agents trained without curriculum exhibit either non-optimal behaviors for the competition or end up optimizing for a particular component of the dense reward. For example, for Sumo, the agents just learn to stand and move towards center of the arena, and for kick-and-defend, the defender optimizes for being able to stand up but doesn’t learn to defend while the kicker learns a non-optimal strategy of carrying the ball with itself to the goal (rather than kicking) – a policy which is easily defeated by a defender trained with curriculum. Moreover, training without curriculum also takes more samples to learn. We also show these behaviours qualitatively in the videos. These results echo some recent findings (albeit in the single agent case), like Andrychowicz et al. (2017) who found that optimizing for the sparse reward yields better return than optimizing for hand crafted dense rewards. For the competitive multi-agent case, these results shed further light on the importance of the natural curriculum. ", + "bbox": [ + 176, + 882, + 823, + 924 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/b945f11d066fc08722a430402c33d364604cc71ecf37dc98786df3ca4e0addcf.jpg", + "image_caption": [ + "Figure 3: Effect for exploration curriculum: win-rate of agents trained by annealing the exploration reward against agents which constantly receive the dense exploration reward. The agents which optimized for the sparse competition reward benefit from the natural curriculum of multi-agent training and defeat the other agent by a margin. " + ], + "image_footnote": [], + "bbox": [ + 179, + 101, + 812, + 222 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/069c1227b382b2ce30262126022418f6704cfd94e0ce61369066d86c4670c2a2.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
8 1.0 0.8 0.51.0 - 0.36 0.360.8 0.37 1 0.390.5 0.35 0.38 10.0 0.29 0.33 0.33E[Win] 0.34 0.36 0.36
0.0 E[Loss]0.51 0.410.49 0.420.49 0.41- 0.320.50 1
", + "bbox": [ + 534, + 303, + 820, + 378 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/feb7f23a62523fe691a6ec555233a99c1dae552f0e8ed0d3a946c4e8fadbd1ee.jpg", + "table_caption": [ + "Table 1: The effect of opponent sampling. $\\mathbb { E } [ \\mathrm { L o s s } ]$ and $\\mathbb { E } [ \\mathrm { W i n } ]$ are the expected loss and win-rates for agents trained with a particular $\\delta$ as described in 5.4. For humanoid $\\delta \\ : = \\ : 0 . 5$ gives highest win-rate and lowest loss, whereas for Ant $\\delta = 0$ was best. " + ], + "table_footnote": [], + "table_body": "
81.00.80.50.0E[Win]
1.010.260.130.370.25
0.80.50.4610.220.520.400.630.35
0.590.5810.73
0.00.550.360.16-
E[Loss]0.530.400.170.541
", + "bbox": [ + 179, + 303, + 465, + 378 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 478, + 825, + 768 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5.4 EFFECT OF OPPONENT SAMPLING ", + "text_level": 1, + "bbox": [ + 176, + 786, + 449, + 800 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "In section 4.2, we introduced the past opponent sampling method for training competitive agents simultaneously. This choice of opponent could be important as it affects the natural curriculum for the agents. We test different opponent sampling strategies by considering a threshold on the oldest opponent for each agent. That is, instead of uniform random over the entire history, we can consider sampling opponent from $\\mathrm { U n i f o r m } ( \\delta v , v )$ where $v$ is the iteration number for the latest available parameters of the opponent and $\\delta \\in [ 0 , 1 ]$ is a threshold. Thus, $\\delta = 1 . 0$ corresponds to the latest available opponent and $\\delta = 0 . 0$ corresponds to uniform sampling over the entire history. We train agents on the Sumo task via self-play, using a $\\delta \\in \\{ 1 . 0 , 0 . 8 , \\bar { 0 . 5 } , \\bar { 0 . 0 } \\}$ and pit the four agents against each other to understand which sampling strategy leads to more robust policies. Since the agents have different skills and strengths at various points during training, we compute a Monte Carlo estimate of the expected win-rate for two agents that have seen the same number of samples taken at a random point during training. This is done by taking average of the win-rates of 30 agents at intervals of 100 iterations after a burn-in of 3000 iterations, where each win-rate is computed from an average over 800 episodes. Table 1a reports the results for Humanoid and Table 1b reports the results for Ant. First note that training against the latest opponent leads to worst performance, as argued earlier. Surprisingly, we found that uniform random $\\delta = 0 . 0$ ) over the entire history to have the highest win-rate for Ant and $\\delta = 0 . 5$ to have the highest win-rate for Humanoid. This could be because Ant with random policy on a small arena is still a good opponent while a Humanoid with random policy is unable to stand and thus always looses in a few steps. The differences in these win-rates for different sampling strategies show that the choice of the opponent during sampling is important and care must be taken while designing training algorithms for such competitive environments. ", + "bbox": [ + 174, + 813, + 825, + 924 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 104, + 825, + 284 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5.5 LEARNING ROBUST POLICIES ", + "text_level": 1, + "bbox": [ + 176, + 304, + 419, + 318 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Over-fitting to a particular dataset is often a problem in supervised learning. Similar problems can arise in reinforcement learning setups when there is no or little variation in the environment. We discovered two such problems in our competitive multi-agent training framework and we analyze and propose solutions to address these issues. ", + "bbox": [ + 174, + 330, + 823, + 386 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5.5.1 RANDOMIZATION IN WORLD ", + "text_level": 1, + "bbox": [ + 176, + 404, + 428, + 417 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "In order to learn robust policies which generalize better we can introduce randomness in the environment, for example the arena radius for the sumo environment can be randomized, the ball position for the kick-and-defend environment can be randomized, agent start positions can be randomized. However, we found that while randomization is crucial to learn policies which generalize better, it might hinder learning early on as there might be too many things for the agents to explore. Indeed, we observe that in kick-and-defend the agents are unable to learn to kick with a lot of randomization in both the ball and agent positions, whereas when trained with no randomization the learned policies are overfit to the particular position of the ball (see Fig. 4). Thus, in order to learn policies that generalize well, we introduce a simple curriculum in the randomization where we start with a small amount of randomization which is easier to solve and then gradually increase the randomization during training. We found this curriculum to work well for all the environments. ", + "bbox": [ + 174, + 429, + 825, + 582 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5.5.2 COMPETING AGAINST ENSEMBLE OF POLICIES ", + "text_level": 1, + "bbox": [ + 174, + 601, + 549, + 614 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Another related problem that we observed is over-fitting to the behavior of the opponent when trained for very long. This results in policies which are good against particular types of opponents but do not generalize to other opponents (say opponents trained with a different random seed). This overfitting can also be observed in win-rates against opponent during training, where one would see oscillations as agents try to adapt to their particular opponent and changes in their strategies. To overcome this we propose learning multiple policies simultaneously. Thus, there is a pool of policies and in each rollout for a particular policy one of the other policies is selected at random as the opponent (in symmetric games, the same policy can also be an opponent). This is similar to multi-task learning (Caruana, 1998) where the same network is used to model multiple related tasks which allows sharing of statistical strength among tasks and reduces overfitting. In this case, the pool of all policies as opponents – current and throughout the history of training – creates a natural distribution over related tasks for multi-task learning. We found random policy initialization to provide enough diversity between agent policies, however techniques that explicitly encourage diversity (Liu & Wang, 2016) can potentially be incorporated in the future. ", + "bbox": [ + 174, + 625, + 825, + 819 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "In order to test the robustness of training policies in an ensemble, we experiment on the Sumo environment with Ant and Humanoid bodies. We train a pool of three policies in an ensemble and take the policy with the highest average training reward in the last 500 iterations as the best ensemble policy. We also train three independent policies via self-play, that is just a single policy is trained in a run, and again take the policy with the highest average training reward in last 500 iterations as the best self-play policy. Then we pit the best ensemble policy against the best self-play policy and record average win-rates over 800 games. Fig. 5 shows the win-rates over training iterations (after 1000 iterations of training). We find that training in ensemble performs significantly better for the humanoid body, whereas for ant the performance is similar to training a single policy. Again we suspect this is because there is not enough variability in the behavior of ant across different runs. While training single policies might occasionally get stuck in a local minima and learn suboptimal behaviors, we found that when training in an ensemble to be more robust to such minima. Qualitatively, we see more robust behavior of the humanoid trained in ensemble (see video). ", + "bbox": [ + 174, + 827, + 823, + 924 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/152bfacb47e873bf346837e201498b80a5c6447de979e7d7bfc9455e1f8b8c6a.jpg", + "image_caption": [ + "Figure 4: Win-rate of kicker vs iterations with full randomization " + ], + "image_footnote": [], + "bbox": [ + 176, + 113, + 346, + 207 + ], + "page_idx": 8 + }, + { + "type": "image", + "img_path": "images/f5e400e02f6c6d1d2a0808d79e102f4c6f33d5a9225e9a4aafd4f4d34c22885b.jpg", + "image_caption": [ + "Figure 5: $\\%$ Win-rate of agents trained in ensemble vs agents trained with just a single policy. Humanoid Sumo (left) and Ant Sumo (right). " + ], + "image_footnote": [], + "bbox": [ + 370, + 114, + 820, + 207 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 285, + 825, + 369 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "6 CONCLUSION ", + "text_level": 1, + "bbox": [ + 176, + 388, + 318, + 405 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We have presented several new competitive multi-agent 3D physically simulated environments. We demonstrate the development of highly complex skills in simple environments with simple rewards. In future work, it would be interesting to conduct larger scale experiments in more complex environments that encourage agents to both compete and cooperate with each other. Incorporation of additional skills, such as reasoning about other agents, potentially via techniques from Foerster et al. (2017a), may also be important in our setting. ", + "bbox": [ + 174, + 420, + 825, + 503 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 174, + 525, + 285, + 539 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Marcin Andrychowicz, Filip Wolski, Alex Ray, Jonas Schneider, Rachel Fong, Peter Welinder, Bob McGrew, Josh Tobin, Pieter Abbeel, and Wojciech Zaremba. Hindsight experience replay. arXiv preprint arXiv:1707.01495, 2017. \nLucian Busoniu, Robert Babuska, and Bart De Schutter. A comprehensive survey of multiagent reinforcement learning. IEEE Transactions on Systems, Man, And Cybernetics-Part C: Applications and Reviews, 38 (2), 2008, 2008. \nRich Caruana. Multitask learning. In Learning to learn, pp. 95–133. Springer, 1998. \nYan Duan, Xi Chen, Rein Houthooft, John Schulman, and Pieter Abbeel. Benchmarking deep reinforcement learning for continuous control. In International Conference on Machine Learning, pp. 1329–1338, 2016. \nJakob Foerster, Richard Chen, Maruan Al-Shedivat, Shimon Whiteson, Pieter Abbeel, and Igor Mordatch. Learning with opponent-learning awareness. arXiv preprint arXiv:1709.04326, 2017a. \nJakob Foerster, Gregory Farquhar, Triantafyllos Afouras, Nantas Nardelli, and Shimon Whiteson. Counterfactual multi-agent policy gradients. arXiv preprint arXiv:1705.08926, 2017b. \nIan Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In Advances in neural information processing systems, pp. 2672–2680, 2014. \nHe He, Jordan Boyd-Graber, Kevin Kwok, and Hal Daume III. Opponent modeling in deep rein- ´ forcement learning. In International Conference on Machine Learning, pp. 1804–1813, 2016. \nNicolas Heess, Srinivasan Sriram, Jay Lemmon, Josh Merel, Greg Wayne, Yuval Tassa, Tom Erez, Ziyu Wang, Ali Eslami, Martin Riedmiller, et al. Emergence of locomotion behaviours in rich environments. arXiv preprint arXiv:1707.02286, 2017. ", + "bbox": [ + 171, + 546, + 826, + 925 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Johannes Heinrich and David Silver. Deep reinforcement learning from self-play in imperfectinformation games. arXiv preprint arXiv:1603.01121, 2016. ", + "bbox": [ + 169, + 103, + 823, + 133 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980, 2014. ", + "bbox": [ + 173, + 140, + 823, + 170 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Timothy P Lillicrap, Jonathan J Hunt, Alexander Pritzel, Nicolas Heess, Tom Erez, Yuval Tassa, David Silver, and Daan Wierstra. Continuous control with deep reinforcement learning. arXiv preprint arXiv:1509.02971, 2015. ", + "bbox": [ + 174, + 176, + 823, + 220 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Michael L Littman. Markov games as a framework for multi-agent reinforcement learning. In Proceedings of the eleventh international conference on machine learning, volume 157, pp. 157– 163, 1994. ", + "bbox": [ + 174, + 228, + 823, + 271 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Qiang Liu and Dilin Wang. Stein variational gradient descent: A general purpose bayesian inference algorithm. In Advances In Neural Information Processing Systems, pp. 2378–2386, 2016. ", + "bbox": [ + 174, + 279, + 823, + 309 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ryan Lowe, Yi Wu, Aviv Tamar, Jean Harb, Pieter Abbeel, and Igor Mordatch. Multi-agent actorcritic for mixed cooperative-competitive environments. arXiv preprint arXiv:1706.02275, 2017. ", + "bbox": [ + 171, + 315, + 821, + 345 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Laetitia Matignon, Guillaume J Laurent, and Nadine Le Fort-Piat. Independent reinforcement learners in cooperative Markov games: a survey regarding coordination problems. The Knowledge Engineering Review, 27(1):1–31, 2012. ", + "bbox": [ + 176, + 353, + 823, + 396 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Andrei A Rusu, Joel Veness, Marc G Bellemare, Alex Graves, Martin Riedmiller, Andreas K Fidjeland, Georg Ostrovski, et al. Human-level control through deep reinforcement learning. Nature, 518(7540):529–533, 2015. ", + "bbox": [ + 176, + 404, + 821, + 448 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Volodymyr Mnih, Adria Puigdomenech Badia, Mehdi Mirza, Alex Graves, Timothy Lillicrap, Tim Harley, David Silver, and Koray Kavukcuoglu. Asynchronous methods for deep reinforcement learning. In International Conference on Machine Learning, pp. 1928–1937, 2016. ", + "bbox": [ + 176, + 454, + 821, + 498 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "OpenAI. OpenAI Dota 2 1v1 bot, 2017. URL https://openai.com/ the-international/. ", + "bbox": [ + 176, + 505, + 823, + 535 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Liviu Panait and Sean Luke. Cooperative multi-agent learning: The state of the art. Autonomous agents and multi-agent systems, 11(3):387–434, 2005. ", + "bbox": [ + 171, + 542, + 823, + 571 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Lerrel Pinto, James Davidson, and Abhinav Gupta. Supervision via competition: Robot adversaries for learning tasks. In Robotics and Automation (ICRA), 2017 IEEE International Conference on, pp. 1601–1608. IEEE, 2017. ", + "bbox": [ + 174, + 579, + 823, + 623 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "John Schulman, Sergey Levine, Pieter Abbeel, Michael Jordan, and Philipp Moritz. Trust region policy optimization. In Proceedings of the 32nd International Conference on Machine Learning (ICML-15), pp. 1889–1897, 2015a. ", + "bbox": [ + 173, + 631, + 823, + 674 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "John Schulman, Philipp Moritz, Sergey Levine, Michael Jordan, and Pieter Abbeel. Highdimensional continuous control using generalized advantage estimation. arXiv preprint arXiv:1506.02438, 2015b. ", + "bbox": [ + 171, + 681, + 823, + 724 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov. Proximal policy optimization algorithms. arXiv preprint arXiv:1707.06347, 2017. ", + "bbox": [ + 171, + 732, + 821, + 762 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "David Silver, Aja Huang, Chris J Maddison, Arthur Guez, Laurent Sifre, George Van Den Driessche, Julian Schrittwieser, Ioannis Antonoglou, Veda Panneershelvam, Marc Lanctot, et al. Mastering the game of go with deep neural networks and tree search. Nature, 529(7587):484–489, 2016. ", + "bbox": [ + 173, + 770, + 825, + 814 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Karl Sims. Evolving virtual creatures. In Proceedings of the 21st annual conference on Computer graphics and interactive techniques, pp. 15–22. ACM, 1994. ", + "bbox": [ + 173, + 820, + 823, + 851 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Kenneth O Stanley and Risto Miikkulainen. Competitive coevolution through evolutionary complexification. Journal of Artificial Intelligence Research, 21:63–100, 2004. ", + "bbox": [ + 174, + 857, + 821, + 887 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Sainbayar Sukhbaatar, Ilya Kostrikov, Arthur Szlam, and Rob Fergus. Intrinsic motivation and automatic curricula via asymmetric self-play. arXiv preprint arXiv:1703.05407, 2017. ", + "bbox": [ + 174, + 895, + 823, + 924 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ardi Tampuu, Tambet Matiisen, Dorian Kodelja, Ilya Kuzovkin, Kristjan Korjus, Juhan Aru, Jaan Aru, and Raul Vicente. Multiagent cooperation and competition with deep reinforcement learning. PloS one, 12(4):e0172395, 2017. ", + "bbox": [ + 176, + 103, + 823, + 146 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Ming Tan. Multi-agent reinforcement learning: Independent vs. cooperative agents. In Proceedings of the tenth international conference on machine learning, pp. 330–337, 1993. ", + "bbox": [ + 174, + 156, + 821, + 185 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Gerald Tesauro. Temporal difference learning and td-gammon. Communications of the ACM, 38(3): 58–68, 1995. ", + "bbox": [ + 174, + 194, + 821, + 224 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Emanuel Todorov, Tom Erez, and Yuval Tassa. Mujoco: A physics engine for model-based control. In Intelligent Robots and Systems (IROS), 2012 IEEE/RSJ International Conference on, pp. 5026– 5033. IEEE, 2012. ", + "bbox": [ + 173, + 233, + 826, + 276 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Kevin Wampler, Erik Andersen, Evan Herbst, Yongjoon Lee, and Zoran Popovic. Character anima- ´ tion in two-player adversarial games. ACM Transactions on Graphics (TOG), 29(3):26, 2010. ", + "bbox": [ + 174, + 286, + 823, + 316 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Ronald J Williams. Simple statistical gradient-following algorithms for connectionist reinforcement learning. Machine learning, 8(3-4):229–256, 1992. ", + "bbox": [ + 173, + 325, + 823, + 354 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "A EXPLORATION REWARDS ", + "text_level": 1, + "bbox": [ + 176, + 382, + 419, + 398 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "We define the dense exploration rewards used for the tasks in this section. Our exploration reward terms are based on adapting the rewards defined previously for the training humanoids and quadrupeds to walk (Duan et al., 2016; Schulman et al., 2015b). We first review this locomotion reward and then define the task-specific dense rewards. These rewards take the form $r _ { t } ( s , a ) = v _ { f w d } + c _ { t } ( s , a ) + C _ { a l i v e }$ where $v _ { f w d }$ is the velocity in the forward direction, a bonus for standing $C _ { a l i v e }$ and costs for impact and action $c _ { t } ( s , a )$ . We considered the following locomotion reward defined for Humanoid-v1 environment in OpenAI Gym package: ", + "bbox": [ + 173, + 414, + 825, + 512 + ], + "page_idx": 10 + }, + { + "type": "equation", + "img_path": "images/8271a92c7b2da20ed5c446c3f4511d88f0a02cb7e4fd2df531900c1362e14023.jpg", + "text": "$$\nr _ { t } ^ { h } ( s , a ) = v _ { f w d } + c ^ { h } ( s , a ) + C _ { a l i v e } = v _ { f w d } - 0 . 1 | a | | ^ { 2 } - 5 \\cdot 1 0 ^ { - 7 } | | F _ { i m p a c t } | | ^ { 2 } + C _ { a l i v e }\n$$", + "text_format": "latex", + "bbox": [ + 196, + 518, + 782, + 539 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "where $F _ { i m p a c t }$ is the contact force vector clipped to values between 1 and 1, and $C _ { a l i v e }$ is a bonus for the center of the body being at a certain height, defined as $C _ { a l i v e } = + 5$ if $2 . 0 \\geq z _ { b o d y } \\geq 1 . 0$ , else 0. ", + "bbox": [ + 174, + 545, + 825, + 588 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Similarly, the following is the reward for quadruped locomotion: ", + "bbox": [ + 174, + 594, + 598, + 609 + ], + "page_idx": 10 + }, + { + "type": "equation", + "img_path": "images/8f49cdb2b1d236de7d32e669a52e207c0a44f7e3f0cfb5c86d994125b69059ba.jpg", + "text": "$$\nr _ { t } ^ { q } ( s , a ) = v _ { f w d } + c ^ { q } ( s , a ) = v _ { f w d } - 0 . 5 | a | | ^ { 2 } - 5 \\cdot 1 0 ^ { - 4 } | | F _ { i m p a c t } | | ^ { 2 } + C _ { a l i v e }\n$$", + "text_format": "latex", + "bbox": [ + 238, + 614, + 759, + 633 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "where $C _ { a l i v e } = + 1$ if $1 . 0 \\geq z _ { b o d y } \\geq 0 . 2$ , else 0. ", + "bbox": [ + 174, + 640, + 491, + 656 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "In the following, superscript $h$ refers to humanoid agents and superscript $q$ refers to quadruped. We redefine $C _ { a l i v e }$ to be $+ 5$ if $z _ { b o d y } \\ge 1 . 0$ , else $- 5$ for humanoid, and $C _ { a l i v e } = + 1$ if $z _ { b o d y } \\ge 0 . 2 8$ else $- 1$ for quadruped. ", + "bbox": [ + 174, + 662, + 823, + 705 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Run to Goal For humanoids, reward is $r ^ { h } ( s , a ) - | x - g |$ where $x - g$ is the $l _ { 1 }$ distance of the agent from the goal $g$ along the $x$ -axis. For ant, reward is similar $r ^ { q } ( s , a ) - | x - g |$ . ", + "bbox": [ + 173, + 719, + 823, + 750 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "You Shall not Pass For the agent whose goal is to reach the other side, the reward is same as for run-to-goal. For the blocking agent, the reward for humanoid is $c ^ { h } ( s , a ) + C _ { a l i v e } + | x ^ { \\prime } - g |$ where $| x ^ { \\prime } - g |$ is the distance of opponent to the goal. ", + "bbox": [ + 174, + 765, + 823, + 808 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Sumo For humanoids, reward is $c ^ { h } ( s , a ) + C _ { a l i v e } - ( x ^ { 2 } + y ^ { 2 } ) ^ { 0 . 5 }$ , where the last term is distance from the center of the ring. Similarly for ant: $c ^ { q } ( s , a ) + C _ { a l i v e } - ( x ^ { 2 } + y ^ { 2 } ) ^ { 0 . 5 }$ ", + "bbox": [ + 173, + 821, + 821, + 853 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Kick and Defend: For kicker, reward is $r ^ { h } ( s , a ) - | | x - b | | - | b _ { x } - g |$ , where $b$ is the $( x , y )$ position of the ball, $b _ { x }$ is the $x$ -coordinate of the ball and $g$ is the $x$ -coordinate of the goal-post. For defender, reward is $c ^ { h } ( s , a ) + C _ { a l i v e } + | b _ { x } - g |$ where for $C _ { a l i v e }$ we only gave positive reward if the defender was in front of the goal area. ", + "bbox": [ + 174, + 867, + 823, + 924 + ], + "page_idx": 10 + }, + { + "type": "table", + "img_path": "images/f75253e2221d8b44fb99c2bd37b6851dec021ae2e228de525188c17d3b7ff086.jpg", + "table_caption": [ + "Table 2: Average number of steps before agent falls. Sumo Agent refers to the agent trained in Sumo environment whereas Walker Agent refers to the agent trained to walk in a single agent environment. " + ], + "table_footnote": [], + "table_body": "
Force Magnitude
200300400500600
Sumo Agent372 ± 146327±150247± 143181 ± 114123 ± 57
Walker Agent179± 54139± 42116± 32103±2395 ± 20
", + "bbox": [ + 222, + 101, + 774, + 160 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "B ADDITIONAL RESULTS ", + "text_level": 1, + "bbox": [ + 174, + 224, + 398, + 241 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "B.1 TRANSFER RESULTS ", + "text_level": 1, + "bbox": [ + 174, + 256, + 357, + 270 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "We took the agent trained on the multi-agent Sumo task and faced it with the task of standing while being perturbed by wind forces. The agent receives a zero vector for parts of the observation space which correspond to the opponent. We calculate the number of steps before the agent falls down (i.e. when $z _ { b o d y } \\le 0 . 5$ ) or the agent is pushed out of the arena and report the average steps over 200 episodes. Episodes last a maximum of 500 time steps. In half the episodes the wind force is applied in a radially outwards direction and in the remaining half it is applied in the radially inwards direction. We allow 50 steps for the agent to stabilize and apply the force at intervals of 50 steps where in between the intervals the force magnitude is decayed at a constant rate: ", + "bbox": [ + 173, + 281, + 825, + 393 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/28957d3b59adcd66bdd352d2787ef82f430257231afb79ed6d116c37acc9b288.jpg", + "text": "$$\nF _ { t } = { \\left\\{ \\begin{array} { l l } { \\qquad F } & { { \\mathrm { i f ~ } } t \\equiv 0 { \\pmod { 5 0 } } } \\\\ { 0 . 9 * F _ { t - 1 } } & { { \\mathrm { o t h e r w i s e } } } \\end{array} \\right. }\n$$", + "text_format": "latex", + "bbox": [ + 351, + 398, + 635, + 434 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "where $F \\in \\{ 2 0 0 , 3 0 0 , 4 0 0 , 5 0 0 , 6 0 0 \\}$ . ", + "bbox": [ + 176, + 440, + 424, + 455 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "We compare with a humanoid agent trained in a single agent environment for the task of walking. We used same LSTM policy architecture as used for the Sumo agent and trained the humanoid in the publicly available OpenAI Gym Humanoid-v1 environment using PPO. We then apply force on this agent using the same method as above where the direction of the force is in the direction the agent is walking in half the episodes and opposite to it in the remaining half. We record average number of steps to fall using the same condition as for the Sumo agent. ", + "bbox": [ + 173, + 455, + 825, + 539 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Table 2 shows the average number of steps over 200 episodes along with the standard deviation. We see that the humanoid trained in Sumo is more robust to adversarial forces and able to withstand large magnitude of force for many steps. ", + "bbox": [ + 174, + 539, + 823, + 580 + ], + "page_idx": 11 + } +] \ No newline at end of file diff --git a/parse/train/Sy0GnUxCb/Sy0GnUxCb_middle.json b/parse/train/Sy0GnUxCb/Sy0GnUxCb_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..5daf2ac2f1b749f58c1487331ed05febe1f4cffa --- /dev/null +++ b/parse/train/Sy0GnUxCb/Sy0GnUxCb_middle.json @@ -0,0 +1,33791 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 79, + 441, + 115 + ], + "lines": [ + { + "bbox": [ + 105, + 77, + 442, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 442, + 97 + ], + "score": 1.0, + "content": "EMERGENT COMPLEXITY VIA MULTI-AGENT", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 98, + 215, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 98, + 215, + 118 + ], + "score": 1.0, + "content": "COMPETITION", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 135, + 179, + 157 + ], + "lines": [ + { + "bbox": [ + 111, + 135, + 177, + 147 + ], + "spans": [ + { + "bbox": [ + 111, + 135, + 177, + 147 + ], + "score": 1.0, + "content": "Trapit Bansal∗", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 146, + 181, + 158 + ], + "spans": [ + { + "bbox": [ + 112, + 146, + 181, + 158 + ], + "score": 1.0, + "content": "UMass Amherst", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 194, + 135, + 263, + 158 + ], + "lines": [ + { + "bbox": [ + 192, + 135, + 264, + 147 + ], + "spans": [ + { + "bbox": [ + 192, + 135, + 264, + 147 + ], + "score": 1.0, + "content": "Jakub Pachocki", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 191, + 145, + 229, + 159 + ], + "spans": [ + { + "bbox": [ + 191, + 145, + 229, + 159 + ], + "score": 1.0, + "content": "OpenAI", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 277, + 136, + 338, + 158 + ], + "lines": [ + { + "bbox": [ + 276, + 135, + 339, + 148 + ], + "spans": [ + { + "bbox": [ + 276, + 135, + 339, + 148 + ], + "score": 1.0, + "content": "Szymon Sidor", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 275, + 145, + 313, + 159 + ], + "spans": [ + { + "bbox": [ + 275, + 145, + 313, + 159 + ], + "score": 1.0, + "content": "OpenAI", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 352, + 136, + 415, + 158 + ], + "lines": [ + { + "bbox": [ + 352, + 134, + 417, + 148 + ], + "spans": [ + { + "bbox": [ + 352, + 134, + 417, + 148 + ], + "score": 1.0, + "content": "Ilya Sutskever", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 351, + 145, + 388, + 159 + ], + "spans": [ + { + "bbox": [ + 351, + 145, + 388, + 159 + ], + "score": 1.0, + "content": "OpenAI", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 428, + 136, + 494, + 158 + ], + "lines": [ + { + "bbox": [ + 428, + 134, + 495, + 147 + ], + "spans": [ + { + "bbox": [ + 428, + 134, + 495, + 147 + ], + "score": 1.0, + "content": "Igor Mordatch", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 428, + 145, + 465, + 160 + ], + "spans": [ + { + "bbox": [ + 428, + 145, + 465, + 160 + ], + "score": 1.0, + "content": "OpenAI", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "title", + "bbox": [ + 278, + 187, + 333, + 199 + ], + "lines": [ + { + "bbox": [ + 276, + 185, + 336, + 201 + ], + "spans": [ + { + "bbox": [ + 276, + 185, + 336, + 201 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 143, + 212, + 468, + 300 + ], + "lines": [ + { + "bbox": [ + 142, + 213, + 469, + 225 + ], + "spans": [ + { + "bbox": [ + 142, + 213, + 469, + 225 + ], + "score": 1.0, + "content": "Reinforcement learning algorithms can train agents that solve problems in com-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 223, + 469, + 235 + ], + "spans": [ + { + "bbox": [ + 141, + 223, + 469, + 235 + ], + "score": 1.0, + "content": "plex, interesting environments. Normally, the complexity of the trained agent is", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 234, + 469, + 247 + ], + "spans": [ + { + "bbox": [ + 141, + 234, + 469, + 247 + ], + "score": 1.0, + "content": "closely related to the complexity of the environment. This suggests that a highly", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 245, + 470, + 258 + ], + "spans": [ + { + "bbox": [ + 141, + 245, + 470, + 258 + ], + "score": 1.0, + "content": "capable agent requires a complex environment for training. In this paper, we point", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 257, + 470, + 268 + ], + "spans": [ + { + "bbox": [ + 141, + 257, + 470, + 268 + ], + "score": 1.0, + "content": "out that a competitive multi-agent environment trained with self-play can produce", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 266, + 470, + 280 + ], + "spans": [ + { + "bbox": [ + 141, + 266, + 470, + 280 + ], + "score": 1.0, + "content": "behaviors that are far more complex than the environment itself. We also point out", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 278, + 469, + 290 + ], + "spans": [ + { + "bbox": [ + 141, + 278, + 469, + 290 + ], + "score": 1.0, + "content": "that such environments come with a natural curriculum, because for any skill level,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 288, + 459, + 302 + ], + "spans": [ + { + "bbox": [ + 141, + 288, + 459, + 302 + ], + "score": 1.0, + "content": "an environment full of agents of this level will have the right level of difficulty.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 143, + 302, + 468, + 379 + ], + "lines": [ + { + "bbox": [ + 142, + 302, + 469, + 315 + ], + "spans": [ + { + "bbox": [ + 142, + 302, + 469, + 315 + ], + "score": 1.0, + "content": "This work introduces several competitive multi-agent environments where agents", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 312, + 470, + 326 + ], + "spans": [ + { + "bbox": [ + 141, + 312, + 470, + 326 + ], + "score": 1.0, + "content": "compete in a 3D world with simulated physics. The trained agents learn a", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 324, + 470, + 336 + ], + "spans": [ + { + "bbox": [ + 141, + 324, + 470, + 336 + ], + "score": 1.0, + "content": "wide variety of complex and interesting skills, even though the environment", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 334, + 470, + 348 + ], + "spans": [ + { + "bbox": [ + 141, + 334, + 470, + 348 + ], + "score": 1.0, + "content": "themselves are relatively simple. The skills include behaviors such as running,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 345, + 470, + 359 + ], + "spans": [ + { + "bbox": [ + 141, + 345, + 470, + 359 + ], + "score": 1.0, + "content": "blocking, ducking, tackling, fooling opponents, kicking, and defending using", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 141, + 356, + 469, + 369 + ], + "spans": [ + { + "bbox": [ + 141, + 356, + 469, + 369 + ], + "score": 1.0, + "content": "both arms and legs. A highlight of the learned behaviors can be found here:", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 141, + 367, + 234, + 380 + ], + "spans": [ + { + "bbox": [ + 141, + 367, + 234, + 380 + ], + "score": 1.0, + "content": "https://goo.gl/eR7fbX.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24 + }, + { + "type": "title", + "bbox": [ + 108, + 401, + 206, + 414 + ], + "lines": [ + { + "bbox": [ + 105, + 400, + 208, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 208, + 416 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 426, + 505, + 503 + ], + "lines": [ + { + "bbox": [ + 105, + 426, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 505, + 438 + ], + "score": 1.0, + "content": "Reinforcement Learning (RL) is exciting because good reinforcement learning algorithms exist", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 437, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 505, + 450 + ], + "score": 1.0, + "content": "(Mnih et al., 2015; Silver et al., 2016; Schulman et al., 2015a; Mnih et al., 2016; Schulman et al.,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 448, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 505, + 460 + ], + "score": 1.0, + "content": "2015b; Lillicrap et al., 2015; Schulman et al., 2017), allowing us to train agents that accomplish a", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 459, + 505, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 505, + 472 + ], + "score": 1.0, + "content": "great variety of interesting tasks. We can train an agent to play Atari games from pixels (Mnih et al.,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 470, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 505, + 483 + ], + "score": 1.0, + "content": "2015) or get humanoids to walk (Schulman et al., 2017). RL is exciting partly because it is easy", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 481, + 505, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 505, + 494 + ], + "score": 1.0, + "content": "to envision an RL algorithm producing a broadly competent agent when trained on an appropriate", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 493, + 222, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 222, + 504 + ], + "score": 1.0, + "content": "curriculum of environments.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 510, + 505, + 652 + ], + "lines": [ + { + "bbox": [ + 106, + 510, + 504, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 504, + 522 + ], + "score": 1.0, + "content": "In general, training an agent to perform a highly complex task requires a highly complex environ-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 520, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 505, + 532 + ], + "score": 1.0, + "content": "ment, and these can be difficult to create. However, there exists a class of environments where the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 532, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 505, + 543 + ], + "score": 1.0, + "content": "behavior produced by the agents can be far more complex than the environments; this is the class", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 541, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 506, + 556 + ], + "score": 1.0, + "content": "of the competitive multi-agent environments trained with self-play. Such environments have two", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 554, + 505, + 566 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 505, + 566 + ], + "score": 1.0, + "content": "very attractive properties: (1) Even very simple competitive multi-agent environments can produce", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 564, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 505, + 577 + ], + "score": 1.0, + "content": "extremely complex behaviors. For example, the game of Go has very simple rules, but the strategies", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 576, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 505, + 588 + ], + "score": 1.0, + "content": "needed to win are extremely complex. This is because the complexity of these environments is pro-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 585, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 505, + 599 + ], + "score": 1.0, + "content": "duced by the competing agents that act in it. Thus, as the other agents become more competent, the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 596, + 506, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 611 + ], + "score": 1.0, + "content": "environment effectively becomes more complex. (2) When trained with self-play, the competitive", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 607, + 506, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 506, + 622 + ], + "score": 1.0, + "content": "multi-agent environment provides the agents with a perfect curriculum. This happens because no", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 619, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 505, + 632 + ], + "score": 1.0, + "content": "matter how weak or strong an agent is, an environment populated with other agents of comparable", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 104, + 628, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 104, + 628, + 505, + 645 + ], + "score": 1.0, + "content": "strength provides the right challenge to the agent, facilitating maximally rapid learning and avoiding", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 641, + 162, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 162, + 654 + ], + "score": 1.0, + "content": "getting stuck.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 107, + 658, + 504, + 713 + ], + "lines": [ + { + "bbox": [ + 106, + 658, + 505, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 658, + 505, + 669 + ], + "score": 1.0, + "content": "Self-play in competitive multi-agent environments is not a new idea – it has already been explored", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 669, + 504, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 504, + 681 + ], + "score": 1.0, + "content": "in TD-gammon (Tesauro, 1995) and refined in AlphaGo (Silver et al., 2016) and Dota 2 (OpenAI).", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 679, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 505, + 692 + ], + "score": 1.0, + "content": "In both cases, the resulting behavior was far more complex than the environment itself, and the", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 691, + 506, + 704 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 506, + 704 + ], + "score": 1.0, + "content": "self-play approach provided the agents with a perfectly tuned curriculum for each task. In this", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 701, + 506, + 715 + ], + "spans": [ + { + "bbox": [ + 105, + 701, + 506, + 715 + ], + "score": 1.0, + "content": "paper, we investigate whether the idea of competitive multi-agent environments can yield fruit in", + "type": "text" + } + ], + "index": 53 + } + ], + "index": 51 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 116, + 722, + 429, + 731 + ], + "lines": [ + { + "bbox": [ + 118, + 720, + 430, + 733 + ], + "spans": [ + { + "bbox": [ + 118, + 720, + 430, + 733 + ], + "score": 1.0, + "content": "∗Work done as an intern at OpenAI. Correspondence to tbansal@cs.umass.edu", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 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": [ + 107, + 79, + 441, + 115 + ], + "lines": [ + { + "bbox": [ + 105, + 77, + 442, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 442, + 97 + ], + "score": 1.0, + "content": "EMERGENT COMPLEXITY VIA MULTI-AGENT", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 98, + 215, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 98, + 215, + 118 + ], + "score": 1.0, + "content": "COMPETITION", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 135, + 179, + 157 + ], + "lines": [ + { + "bbox": [ + 111, + 135, + 177, + 147 + ], + "spans": [ + { + "bbox": [ + 111, + 135, + 177, + 147 + ], + "score": 1.0, + "content": "Trapit Bansal∗", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 146, + 181, + 158 + ], + "spans": [ + { + "bbox": [ + 112, + 146, + 181, + 158 + ], + "score": 1.0, + "content": "UMass Amherst", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 111, + 135, + 181, + 158 + ] + }, + { + "type": "text", + "bbox": [ + 194, + 135, + 263, + 158 + ], + "lines": [ + { + "bbox": [ + 192, + 135, + 264, + 147 + ], + "spans": [ + { + "bbox": [ + 192, + 135, + 264, + 147 + ], + "score": 1.0, + "content": "Jakub Pachocki", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 191, + 145, + 229, + 159 + ], + "spans": [ + { + "bbox": [ + 191, + 145, + 229, + 159 + ], + "score": 1.0, + "content": "OpenAI", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 191, + 135, + 264, + 159 + ] + }, + { + "type": "text", + "bbox": [ + 277, + 136, + 338, + 158 + ], + "lines": [ + { + "bbox": [ + 276, + 135, + 339, + 148 + ], + "spans": [ + { + "bbox": [ + 276, + 135, + 339, + 148 + ], + "score": 1.0, + "content": "Szymon Sidor", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 275, + 145, + 313, + 159 + ], + "spans": [ + { + "bbox": [ + 275, + 145, + 313, + 159 + ], + "score": 1.0, + "content": "OpenAI", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 275, + 135, + 339, + 159 + ] + }, + { + "type": "text", + "bbox": [ + 352, + 136, + 415, + 158 + ], + "lines": [ + { + "bbox": [ + 352, + 134, + 417, + 148 + ], + "spans": [ + { + "bbox": [ + 352, + 134, + 417, + 148 + ], + "score": 1.0, + "content": "Ilya Sutskever", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 351, + 145, + 388, + 159 + ], + "spans": [ + { + "bbox": [ + 351, + 145, + 388, + 159 + ], + "score": 1.0, + "content": "OpenAI", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 351, + 134, + 417, + 159 + ] + }, + { + "type": "text", + "bbox": [ + 428, + 136, + 494, + 158 + ], + "lines": [ + { + "bbox": [ + 428, + 134, + 495, + 147 + ], + "spans": [ + { + "bbox": [ + 428, + 134, + 495, + 147 + ], + "score": 1.0, + "content": "Igor Mordatch", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 428, + 145, + 465, + 160 + ], + "spans": [ + { + "bbox": [ + 428, + 145, + 465, + 160 + ], + "score": 1.0, + "content": "OpenAI", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 428, + 134, + 495, + 160 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 187, + 333, + 199 + ], + "lines": [ + { + "bbox": [ + 276, + 185, + 336, + 201 + ], + "spans": [ + { + "bbox": [ + 276, + 185, + 336, + 201 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 143, + 212, + 468, + 300 + ], + "lines": [ + { + "bbox": [ + 142, + 213, + 469, + 225 + ], + "spans": [ + { + "bbox": [ + 142, + 213, + 469, + 225 + ], + "score": 1.0, + "content": "Reinforcement learning algorithms can train agents that solve problems in com-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 223, + 469, + 235 + ], + "spans": [ + { + "bbox": [ + 141, + 223, + 469, + 235 + ], + "score": 1.0, + "content": "plex, interesting environments. Normally, the complexity of the trained agent is", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 234, + 469, + 247 + ], + "spans": [ + { + "bbox": [ + 141, + 234, + 469, + 247 + ], + "score": 1.0, + "content": "closely related to the complexity of the environment. This suggests that a highly", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 245, + 470, + 258 + ], + "spans": [ + { + "bbox": [ + 141, + 245, + 470, + 258 + ], + "score": 1.0, + "content": "capable agent requires a complex environment for training. In this paper, we point", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 257, + 470, + 268 + ], + "spans": [ + { + "bbox": [ + 141, + 257, + 470, + 268 + ], + "score": 1.0, + "content": "out that a competitive multi-agent environment trained with self-play can produce", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 266, + 470, + 280 + ], + "spans": [ + { + "bbox": [ + 141, + 266, + 470, + 280 + ], + "score": 1.0, + "content": "behaviors that are far more complex than the environment itself. We also point out", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 278, + 469, + 290 + ], + "spans": [ + { + "bbox": [ + 141, + 278, + 469, + 290 + ], + "score": 1.0, + "content": "that such environments come with a natural curriculum, because for any skill level,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 288, + 459, + 302 + ], + "spans": [ + { + "bbox": [ + 141, + 288, + 459, + 302 + ], + "score": 1.0, + "content": "an environment full of agents of this level will have the right level of difficulty.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 16.5, + "bbox_fs": [ + 141, + 213, + 470, + 302 + ] + }, + { + "type": "text", + "bbox": [ + 143, + 302, + 468, + 379 + ], + "lines": [ + { + "bbox": [ + 142, + 302, + 469, + 315 + ], + "spans": [ + { + "bbox": [ + 142, + 302, + 469, + 315 + ], + "score": 1.0, + "content": "This work introduces several competitive multi-agent environments where agents", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 312, + 470, + 326 + ], + "spans": [ + { + "bbox": [ + 141, + 312, + 470, + 326 + ], + "score": 1.0, + "content": "compete in a 3D world with simulated physics. The trained agents learn a", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 324, + 470, + 336 + ], + "spans": [ + { + "bbox": [ + 141, + 324, + 470, + 336 + ], + "score": 1.0, + "content": "wide variety of complex and interesting skills, even though the environment", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 334, + 470, + 348 + ], + "spans": [ + { + "bbox": [ + 141, + 334, + 470, + 348 + ], + "score": 1.0, + "content": "themselves are relatively simple. The skills include behaviors such as running,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 345, + 470, + 359 + ], + "spans": [ + { + "bbox": [ + 141, + 345, + 470, + 359 + ], + "score": 1.0, + "content": "blocking, ducking, tackling, fooling opponents, kicking, and defending using", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 141, + 356, + 469, + 369 + ], + "spans": [ + { + "bbox": [ + 141, + 356, + 469, + 369 + ], + "score": 1.0, + "content": "both arms and legs. A highlight of the learned behaviors can be found here:", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 141, + 367, + 234, + 380 + ], + "spans": [ + { + "bbox": [ + 141, + 367, + 234, + 380 + ], + "score": 1.0, + "content": "https://goo.gl/eR7fbX.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24, + "bbox_fs": [ + 141, + 302, + 470, + 380 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 401, + 206, + 414 + ], + "lines": [ + { + "bbox": [ + 105, + 400, + 208, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 208, + 416 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 426, + 505, + 503 + ], + "lines": [ + { + "bbox": [ + 105, + 426, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 505, + 438 + ], + "score": 1.0, + "content": "Reinforcement Learning (RL) is exciting because good reinforcement learning algorithms exist", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 437, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 505, + 450 + ], + "score": 1.0, + "content": "(Mnih et al., 2015; Silver et al., 2016; Schulman et al., 2015a; Mnih et al., 2016; Schulman et al.,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 448, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 505, + 460 + ], + "score": 1.0, + "content": "2015b; Lillicrap et al., 2015; Schulman et al., 2017), allowing us to train agents that accomplish a", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 459, + 505, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 505, + 472 + ], + "score": 1.0, + "content": "great variety of interesting tasks. We can train an agent to play Atari games from pixels (Mnih et al.,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 470, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 505, + 483 + ], + "score": 1.0, + "content": "2015) or get humanoids to walk (Schulman et al., 2017). RL is exciting partly because it is easy", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 481, + 505, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 505, + 494 + ], + "score": 1.0, + "content": "to envision an RL algorithm producing a broadly competent agent when trained on an appropriate", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 493, + 222, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 222, + 504 + ], + "score": 1.0, + "content": "curriculum of environments.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 426, + 505, + 504 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 510, + 505, + 652 + ], + "lines": [ + { + "bbox": [ + 106, + 510, + 504, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 504, + 522 + ], + "score": 1.0, + "content": "In general, training an agent to perform a highly complex task requires a highly complex environ-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 520, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 505, + 532 + ], + "score": 1.0, + "content": "ment, and these can be difficult to create. However, there exists a class of environments where the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 532, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 505, + 543 + ], + "score": 1.0, + "content": "behavior produced by the agents can be far more complex than the environments; this is the class", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 541, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 506, + 556 + ], + "score": 1.0, + "content": "of the competitive multi-agent environments trained with self-play. Such environments have two", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 554, + 505, + 566 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 505, + 566 + ], + "score": 1.0, + "content": "very attractive properties: (1) Even very simple competitive multi-agent environments can produce", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 564, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 505, + 577 + ], + "score": 1.0, + "content": "extremely complex behaviors. For example, the game of Go has very simple rules, but the strategies", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 576, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 505, + 588 + ], + "score": 1.0, + "content": "needed to win are extremely complex. This is because the complexity of these environments is pro-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 585, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 505, + 599 + ], + "score": 1.0, + "content": "duced by the competing agents that act in it. Thus, as the other agents become more competent, the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 596, + 506, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 611 + ], + "score": 1.0, + "content": "environment effectively becomes more complex. (2) When trained with self-play, the competitive", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 607, + 506, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 506, + 622 + ], + "score": 1.0, + "content": "multi-agent environment provides the agents with a perfect curriculum. This happens because no", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 619, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 505, + 632 + ], + "score": 1.0, + "content": "matter how weak or strong an agent is, an environment populated with other agents of comparable", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 104, + 628, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 104, + 628, + 505, + 645 + ], + "score": 1.0, + "content": "strength provides the right challenge to the agent, facilitating maximally rapid learning and avoiding", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 641, + 162, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 162, + 654 + ], + "score": 1.0, + "content": "getting stuck.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 42, + "bbox_fs": [ + 104, + 510, + 506, + 654 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 658, + 504, + 713 + ], + "lines": [ + { + "bbox": [ + 106, + 658, + 505, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 658, + 505, + 669 + ], + "score": 1.0, + "content": "Self-play in competitive multi-agent environments is not a new idea – it has already been explored", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 669, + 504, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 504, + 681 + ], + "score": 1.0, + "content": "in TD-gammon (Tesauro, 1995) and refined in AlphaGo (Silver et al., 2016) and Dota 2 (OpenAI).", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 679, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 505, + 692 + ], + "score": 1.0, + "content": "In both cases, the resulting behavior was far more complex than the environment itself, and the", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 691, + 506, + 704 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 506, + 704 + ], + "score": 1.0, + "content": "self-play approach provided the agents with a perfectly tuned curriculum for each task. In this", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 701, + 506, + 715 + ], + "spans": [ + { + "bbox": [ + 105, + 701, + 506, + 715 + ], + "score": 1.0, + "content": "paper, we investigate whether the idea of competitive multi-agent environments can yield fruit in", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "other domains: specifically, in the domain of continuous control, where balance, dexterity, and", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 234, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 234, + 105 + ], + "score": 1.0, + "content": "manipulation are the key skills.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 51, + "bbox_fs": [ + 105, + 658, + 506, + 715 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "other domains: specifically, in the domain of continuous control, where balance, dexterity, and", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 234, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 234, + 105 + ], + "score": 1.0, + "content": "manipulation are the key skills.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 106, + 110, + 505, + 221 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 505, + 123 + ], + "score": 1.0, + "content": "In more detail, we introduce several multi-agent tasks with competing goals in a 3D world with sim-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 122, + 505, + 133 + ], + "spans": [ + { + "bbox": [ + 106, + 122, + 505, + 133 + ], + "score": 1.0, + "content": "ulated physics, using the MuJoCo framework (Todorov et al., 2012), where the agents would need", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 133, + 505, + 144 + ], + "spans": [ + { + "bbox": [ + 106, + 133, + 505, + 144 + ], + "score": 1.0, + "content": "to learn highly developed motor skills in order to succeed in the competitive environment. We train", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "the agents using a distributed implementation of a recent policy gradient algorithm, Proximal Policy", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "Optimization (Schulman et al., 2017). By adding a simple exploration curriculum to aid exploration", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 164, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 505, + 178 + ], + "score": 1.0, + "content": "in the environment we find that agents learn a high level of dexterity in order to achieve their goals,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 176, + 504, + 188 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 504, + 188 + ], + "score": 1.0, + "content": "in particular we find numerous emergent skills for which it may be difficult to engineer a reward.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 186, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 505, + 201 + ], + "score": 1.0, + "content": "Specifically, the agents learned a wide variety of skills and behaviors that include running, blocking,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 198, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 505, + 211 + ], + "score": 1.0, + "content": "ducking, tackling, fooling opponents, kicking, and defending using arms and legs. Highlight of the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 209, + 428, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 428, + 222 + ], + "score": 1.0, + "content": "learned behaviors on the various tasks can be found here: https://goo.gl/eR7fbX", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 6.5 + }, + { + "type": "title", + "bbox": [ + 108, + 238, + 208, + 250 + ], + "lines": [ + { + "bbox": [ + 105, + 237, + 209, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 209, + 253 + ], + "score": 1.0, + "content": "2 PRELIMINARIES", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 264, + 502, + 286 + ], + "lines": [ + { + "bbox": [ + 106, + 264, + 504, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 504, + 277 + ], + "score": 1.0, + "content": "In this section, we review some background on policy gradient methods, Proximal Policy Optimiza-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 274, + 395, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 395, + 288 + ], + "score": 1.0, + "content": "tion and related work in the multi-agent reinforcement learning domain.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 106, + 291, + 505, + 405 + ], + "lines": [ + { + "bbox": [ + 105, + 291, + 506, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 465, + 305 + ], + "score": 1.0, + "content": "Notation: We consider multi-agent Markov games (Littman, 1994). A Markov game for", + "type": "text" + }, + { + "bbox": [ + 466, + 293, + 476, + 302 + ], + "score": 0.82, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 291, + 506, + 305 + ], + "score": 1.0, + "content": "agents", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 302, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 451, + 316 + ], + "score": 1.0, + "content": "is a partially observable Markov decision process (MDP) defined by: a set of states", + "type": "text" + }, + { + "bbox": [ + 451, + 304, + 459, + 313 + ], + "score": 0.79, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 302, + 505, + 316 + ], + "score": 1.0, + "content": "describing", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "score": 1.0, + "content": "the state of the world and the possible joint configuration of all the agents, a set of observations", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 107, + 321, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 107, + 324, + 158, + 336 + ], + "score": 0.89, + "content": "\\mathcal { O } ^ { 1 } , \\ldots , \\mathcal { O } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 321, + 345, + 339 + ], + "score": 1.0, + "content": "of each agent, a set of actions of each agent", + "type": "text" + }, + { + "bbox": [ + 346, + 324, + 397, + 336 + ], + "score": 0.93, + "content": "\\mathcal { A } ^ { 1 } , \\ldots , \\mathcal { A } ^ { \\tilde { N } }", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 321, + 487, + 339 + ], + "score": 1.0, + "content": ", a transition function", + "type": "text" + }, + { + "bbox": [ + 487, + 325, + 505, + 336 + ], + "score": 0.41, + "content": "\\tau :", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 333, + 506, + 350 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 192, + 347 + ], + "score": 0.9, + "content": "\\mathcal { S } \\times \\mathcal { A } ^ { 1 } \\cdot \\cdot \\cdot \\mathcal { A } ^ { N } \\to \\mathcal { S }", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 333, + 472, + 350 + ], + "score": 1.0, + "content": "determining distribution over next states, and a reward for each agent", + "type": "text" + }, + { + "bbox": [ + 472, + 337, + 477, + 346 + ], + "score": 0.73, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 333, + 506, + 350 + ], + "score": 1.0, + "content": "which", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 346, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 104, + 346, + 303, + 360 + ], + "score": 1.0, + "content": "is a function of the state and the agent’s action", + "type": "text" + }, + { + "bbox": [ + 303, + 347, + 383, + 357 + ], + "score": 0.91, + "content": "r ^ { i } : \\mathcal { S } \\times \\mathcal { A } ^ { i } \\to \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 346, + 505, + 360 + ], + "score": 1.0, + "content": ". Agents choose their actions", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 357, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 235, + 371 + ], + "score": 1.0, + "content": "according to a stochastic policy", + "type": "text" + }, + { + "bbox": [ + 236, + 357, + 331, + 370 + ], + "score": 0.92, + "content": "\\pi _ { \\theta ^ { i } } : \\mathcal { O } ^ { i } \\times \\mathcal { A } ^ { i } [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 357, + 362, + 371 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 363, + 358, + 372, + 368 + ], + "score": 0.85, + "content": "\\theta ^ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 357, + 505, + 371 + ], + "score": 1.0, + "content": "are the parameters of the policy.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 367, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 308, + 381 + ], + "score": 1.0, + "content": "For continuous control problems considered here,", + "type": "text" + }, + { + "bbox": [ + 309, + 371, + 320, + 380 + ], + "score": 0.86, + "content": "\\pi _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 367, + 505, + 381 + ], + "score": 1.0, + "content": "is Gaussian where the mean and variance are", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 380, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 255, + 393 + ], + "score": 1.0, + "content": "deep neural networks with parameter", + "type": "text" + }, + { + "bbox": [ + 255, + 380, + 262, + 390 + ], + "score": 0.74, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 380, + 312, + 393 + ], + "score": 1.0, + "content": ". Each agent", + "type": "text" + }, + { + "bbox": [ + 312, + 381, + 317, + 390 + ], + "score": 0.8, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 380, + 505, + 393 + ], + "score": 1.0, + "content": "aims to maximize its own total expected return", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 107, + 389, + 397, + 410 + ], + "spans": [ + { + "bbox": [ + 107, + 390, + 175, + 406 + ], + "score": 0.93, + "content": "\\begin{array} { r } { R ^ { i } = \\sum _ { t = 0 } ^ { T } \\gamma ^ { t } r _ { t } ^ { i } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 389, + 205, + 410 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 205, + 394, + 213, + 405 + ], + "score": 0.82, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 389, + 308, + 410 + ], + "score": 1.0, + "content": "is a discount factor and", + "type": "text" + }, + { + "bbox": [ + 309, + 393, + 317, + 403 + ], + "score": 0.83, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 389, + 397, + 410 + ], + "score": 1.0, + "content": "is the time horizon", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 106, + 410, + 505, + 542 + ], + "lines": [ + { + "bbox": [ + 105, + 408, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 505, + 423 + ], + "score": 1.0, + "content": "Policy Gradient: Policy gradient methods work by directly computing an estimate of the gradient", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 420, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 505, + 434 + ], + "score": 1.0, + "content": "of policy parameters in order to maximize the expected return using stochastic gradient descent.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "score": 1.0, + "content": "These methods are behind much of the recent success in using deep neural networks for control", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 442, + 504, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 442, + 504, + 455 + ], + "score": 1.0, + "content": "(Schulman et al., 2015b; Heess et al., 2017; Lillicrap et al., 2015; Silver et al., 2016). Such meth-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 454, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 106, + 454, + 505, + 465 + ], + "score": 1.0, + "content": "ods are also attractive because they don’t require an explicit model of the world. There are several", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 463, + 504, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 413, + 477 + ], + "score": 1.0, + "content": "different expressions for the policy gradient estimator which have the form", + "type": "text" + }, + { + "bbox": [ + 414, + 464, + 501, + 477 + ], + "score": 0.93, + "content": "g : = \\mathbb { E } \\left[ A _ { t } \\nabla _ { \\theta } \\log \\pi _ { \\theta } \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 463, + 504, + 477 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 476, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 476, + 187, + 488 + ], + "score": 1.0, + "content": "Different choices of", + "type": "text" + }, + { + "bbox": [ + 188, + 476, + 199, + 487 + ], + "score": 0.88, + "content": "A _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 476, + 505, + 488 + ], + "score": 1.0, + "content": "lead to different algorithms, for example taking the sample return of a trajec-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 486, + 505, + 499 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 125, + 499 + ], + "score": 1.0, + "content": "tory", + "type": "text" + }, + { + "bbox": [ + 126, + 486, + 175, + 499 + ], + "score": 0.92, + "content": "\\boldsymbol { A } _ { t } = \\sum _ { t } \\boldsymbol { r } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 486, + 505, + 499 + ], + "score": 1.0, + "content": "leads to the REINFORCE algorithm (Williams, 1992). However, such algorithms", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 496, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 506, + 510 + ], + "score": 1.0, + "content": "suffer from high variance in the gradient estimates and it’s typical to use a baseline, such as a value", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 508, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 505, + 520 + ], + "score": 1.0, + "content": "function baseline, to ameliorate the high variance. Generalized advantage estimation (Schulman", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 519, + 506, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 506, + 532 + ], + "score": 1.0, + "content": "et al., 2015b) takes this approach of using a learned value function to reduce variance at the cost of", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 531, + 443, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 443, + 543 + ], + "score": 1.0, + "content": "some bias and using an exponentially weighted estimator of the advantage function.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 106, + 547, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 105, + 546, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 505, + 560 + ], + "score": 1.0, + "content": "Proximal Policy Optimization (PPO): Achieving good results with policy gradient algorithms", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 558, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 505, + 570 + ], + "score": 1.0, + "content": "requires carefully tuning the step-size (Schulman et al., 2015a). Moreover, most policy gradient", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 568, + 504, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 504, + 582 + ], + "score": 1.0, + "content": "methods perform one gradient update per sampled trajectory and have high sample complexity.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 580, + 504, + 592 + ], + "spans": [ + { + "bbox": [ + 106, + 580, + 504, + 592 + ], + "score": 1.0, + "content": "Recently, Schulman et al. (2017) proposed the PPO algorithm which addresses both these prob-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 590, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 104, + 590, + 505, + 604 + ], + "score": 1.0, + "content": "lems. This uses a surrogate objective which is maximized while penalizing large changes to the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 601, + 505, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 156, + 621 + ], + "score": 1.0, + "content": "policy. Let", + "type": "text" + }, + { + "bbox": [ + 157, + 602, + 239, + 620 + ], + "score": 0.93, + "content": "\\begin{array} { r } { l _ { t } ( \\theta ) ~ = ~ \\frac { \\pi _ { \\theta } ^ { - } \\left( a _ { t } | s _ { t } \\right) ^ { - } } { \\pi _ { \\theta _ { o l d } } \\left( a _ { t } | s _ { t } \\right) } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 601, + 505, + 621 + ], + "score": 1.0, + "content": "denote the likelihood ratio. Then PPO optimizes the objective:", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 619, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 619, + 309, + 639 + ], + "score": 0.9, + "content": "L = \\mathbb { E } \\left[ \\operatorname* { m i n } ( l _ { t } ( \\theta ) \\hat { A } _ { t } , \\operatorname { c l i p } ( l _ { t } ( \\theta ) , 1 - \\epsilon , 1 + \\epsilon ) \\hat { A } _ { t } ) \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 619, + 340, + 637 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 340, + 621, + 352, + 634 + ], + "score": 0.89, + "content": "\\hat { A } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 619, + 506, + 637 + ], + "score": 1.0, + "content": "is the generalized advantage estimate", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 637, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 124, + 650 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 639, + 220, + 650 + ], + "score": 0.79, + "content": "\\mathrm { c l i p } ( l _ { t } ( \\theta ) , 1 - \\epsilon , 1 + \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 637, + 244, + 650 + ], + "score": 1.0, + "content": "clips", + "type": "text" + }, + { + "bbox": [ + 244, + 638, + 264, + 650 + ], + "score": 0.87, + "content": "l _ { t } ( \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 637, + 326, + 650 + ], + "score": 1.0, + "content": "in the interval", + "type": "text" + }, + { + "bbox": [ + 326, + 637, + 381, + 650 + ], + "score": 0.92, + "content": "[ 1 - \\epsilon , 1 + \\epsilon ]", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 637, + 505, + 650 + ], + "score": 1.0, + "content": ". The algorithm alternates be-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 648, + 504, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 504, + 660 + ], + "score": 1.0, + "content": "tween sampling multiple trajectories from the policy and performing several epochs of SGD on the", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 505, + 672 + ], + "score": 1.0, + "content": "sampled dataset to optimize this surrogate objective. Since the state value function is also simulta-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 671, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 106, + 671, + 505, + 683 + ], + "score": 1.0, + "content": "neously approximated, the error for the value function approximation is also added to the surrogate", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 682, + 417, + 693 + ], + "spans": [ + { + "bbox": [ + 106, + 682, + 417, + 693 + ], + "score": 1.0, + "content": "objective to compute the complete objective function (Schulman et al., 2017).", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 42.5 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "Related Work: Tan (1993) explored the multi-agent setting with independently learning agents", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "using Q-learning, in particular exploring advantages of cooperative agents over independent agents", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "in a 2D grid world. This was further explored by Matignon et al. (2012) again in the cooperative", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 50 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 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": [ + 106, + 82, + 504, + 105 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 106, + 82, + 505, + 105 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 110, + 505, + 221 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 505, + 123 + ], + "score": 1.0, + "content": "In more detail, we introduce several multi-agent tasks with competing goals in a 3D world with sim-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 122, + 505, + 133 + ], + "spans": [ + { + "bbox": [ + 106, + 122, + 505, + 133 + ], + "score": 1.0, + "content": "ulated physics, using the MuJoCo framework (Todorov et al., 2012), where the agents would need", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 133, + 505, + 144 + ], + "spans": [ + { + "bbox": [ + 106, + 133, + 505, + 144 + ], + "score": 1.0, + "content": "to learn highly developed motor skills in order to succeed in the competitive environment. We train", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "the agents using a distributed implementation of a recent policy gradient algorithm, Proximal Policy", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "Optimization (Schulman et al., 2017). By adding a simple exploration curriculum to aid exploration", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 164, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 505, + 178 + ], + "score": 1.0, + "content": "in the environment we find that agents learn a high level of dexterity in order to achieve their goals,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 176, + 504, + 188 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 504, + 188 + ], + "score": 1.0, + "content": "in particular we find numerous emergent skills for which it may be difficult to engineer a reward.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 186, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 505, + 201 + ], + "score": 1.0, + "content": "Specifically, the agents learned a wide variety of skills and behaviors that include running, blocking,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 198, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 505, + 211 + ], + "score": 1.0, + "content": "ducking, tackling, fooling opponents, kicking, and defending using arms and legs. Highlight of the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 209, + 428, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 428, + 222 + ], + "score": 1.0, + "content": "learned behaviors on the various tasks can be found here: https://goo.gl/eR7fbX", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 110, + 505, + 222 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 238, + 208, + 250 + ], + "lines": [ + { + "bbox": [ + 105, + 237, + 209, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 209, + 253 + ], + "score": 1.0, + "content": "2 PRELIMINARIES", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 264, + 502, + 286 + ], + "lines": [ + { + "bbox": [ + 106, + 264, + 504, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 504, + 277 + ], + "score": 1.0, + "content": "In this section, we review some background on policy gradient methods, Proximal Policy Optimiza-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 274, + 395, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 395, + 288 + ], + "score": 1.0, + "content": "tion and related work in the multi-agent reinforcement learning domain.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 264, + 504, + 288 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 291, + 505, + 405 + ], + "lines": [ + { + "bbox": [ + 105, + 291, + 506, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 465, + 305 + ], + "score": 1.0, + "content": "Notation: We consider multi-agent Markov games (Littman, 1994). A Markov game for", + "type": "text" + }, + { + "bbox": [ + 466, + 293, + 476, + 302 + ], + "score": 0.82, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 291, + 506, + 305 + ], + "score": 1.0, + "content": "agents", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 302, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 451, + 316 + ], + "score": 1.0, + "content": "is a partially observable Markov decision process (MDP) defined by: a set of states", + "type": "text" + }, + { + "bbox": [ + 451, + 304, + 459, + 313 + ], + "score": 0.79, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 302, + 505, + 316 + ], + "score": 1.0, + "content": "describing", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "score": 1.0, + "content": "the state of the world and the possible joint configuration of all the agents, a set of observations", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 107, + 321, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 107, + 324, + 158, + 336 + ], + "score": 0.89, + "content": "\\mathcal { O } ^ { 1 } , \\ldots , \\mathcal { O } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 321, + 345, + 339 + ], + "score": 1.0, + "content": "of each agent, a set of actions of each agent", + "type": "text" + }, + { + "bbox": [ + 346, + 324, + 397, + 336 + ], + "score": 0.93, + "content": "\\mathcal { A } ^ { 1 } , \\ldots , \\mathcal { A } ^ { \\tilde { N } }", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 321, + 487, + 339 + ], + "score": 1.0, + "content": ", a transition function", + "type": "text" + }, + { + "bbox": [ + 487, + 325, + 505, + 336 + ], + "score": 0.41, + "content": "\\tau :", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 333, + 506, + 350 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 192, + 347 + ], + "score": 0.9, + "content": "\\mathcal { S } \\times \\mathcal { A } ^ { 1 } \\cdot \\cdot \\cdot \\mathcal { A } ^ { N } \\to \\mathcal { S }", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 333, + 472, + 350 + ], + "score": 1.0, + "content": "determining distribution over next states, and a reward for each agent", + "type": "text" + }, + { + "bbox": [ + 472, + 337, + 477, + 346 + ], + "score": 0.73, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 333, + 506, + 350 + ], + "score": 1.0, + "content": "which", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 346, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 104, + 346, + 303, + 360 + ], + "score": 1.0, + "content": "is a function of the state and the agent’s action", + "type": "text" + }, + { + "bbox": [ + 303, + 347, + 383, + 357 + ], + "score": 0.91, + "content": "r ^ { i } : \\mathcal { S } \\times \\mathcal { A } ^ { i } \\to \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 346, + 505, + 360 + ], + "score": 1.0, + "content": ". Agents choose their actions", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 357, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 235, + 371 + ], + "score": 1.0, + "content": "according to a stochastic policy", + "type": "text" + }, + { + "bbox": [ + 236, + 357, + 331, + 370 + ], + "score": 0.92, + "content": "\\pi _ { \\theta ^ { i } } : \\mathcal { O } ^ { i } \\times \\mathcal { A } ^ { i } [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 357, + 362, + 371 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 363, + 358, + 372, + 368 + ], + "score": 0.85, + "content": "\\theta ^ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 357, + 505, + 371 + ], + "score": 1.0, + "content": "are the parameters of the policy.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 367, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 308, + 381 + ], + "score": 1.0, + "content": "For continuous control problems considered here,", + "type": "text" + }, + { + "bbox": [ + 309, + 371, + 320, + 380 + ], + "score": 0.86, + "content": "\\pi _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 367, + 505, + 381 + ], + "score": 1.0, + "content": "is Gaussian where the mean and variance are", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 380, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 255, + 393 + ], + "score": 1.0, + "content": "deep neural networks with parameter", + "type": "text" + }, + { + "bbox": [ + 255, + 380, + 262, + 390 + ], + "score": 0.74, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 380, + 312, + 393 + ], + "score": 1.0, + "content": ". Each agent", + "type": "text" + }, + { + "bbox": [ + 312, + 381, + 317, + 390 + ], + "score": 0.8, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 380, + 505, + 393 + ], + "score": 1.0, + "content": "aims to maximize its own total expected return", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 107, + 389, + 397, + 410 + ], + "spans": [ + { + "bbox": [ + 107, + 390, + 175, + 406 + ], + "score": 0.93, + "content": "\\begin{array} { r } { R ^ { i } = \\sum _ { t = 0 } ^ { T } \\gamma ^ { t } r _ { t } ^ { i } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 389, + 205, + 410 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 205, + 394, + 213, + 405 + ], + "score": 0.82, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 389, + 308, + 410 + ], + "score": 1.0, + "content": "is a discount factor and", + "type": "text" + }, + { + "bbox": [ + 309, + 393, + 317, + 403 + ], + "score": 0.83, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 389, + 397, + 410 + ], + "score": 1.0, + "content": "is the time horizon", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 19.5, + "bbox_fs": [ + 104, + 291, + 506, + 410 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 410, + 505, + 542 + ], + "lines": [ + { + "bbox": [ + 105, + 408, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 505, + 423 + ], + "score": 1.0, + "content": "Policy Gradient: Policy gradient methods work by directly computing an estimate of the gradient", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 420, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 505, + 434 + ], + "score": 1.0, + "content": "of policy parameters in order to maximize the expected return using stochastic gradient descent.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "score": 1.0, + "content": "These methods are behind much of the recent success in using deep neural networks for control", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 442, + 504, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 442, + 504, + 455 + ], + "score": 1.0, + "content": "(Schulman et al., 2015b; Heess et al., 2017; Lillicrap et al., 2015; Silver et al., 2016). Such meth-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 454, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 106, + 454, + 505, + 465 + ], + "score": 1.0, + "content": "ods are also attractive because they don’t require an explicit model of the world. There are several", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 463, + 504, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 413, + 477 + ], + "score": 1.0, + "content": "different expressions for the policy gradient estimator which have the form", + "type": "text" + }, + { + "bbox": [ + 414, + 464, + 501, + 477 + ], + "score": 0.93, + "content": "g : = \\mathbb { E } \\left[ A _ { t } \\nabla _ { \\theta } \\log \\pi _ { \\theta } \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 463, + 504, + 477 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 476, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 476, + 187, + 488 + ], + "score": 1.0, + "content": "Different choices of", + "type": "text" + }, + { + "bbox": [ + 188, + 476, + 199, + 487 + ], + "score": 0.88, + "content": "A _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 476, + 505, + 488 + ], + "score": 1.0, + "content": "lead to different algorithms, for example taking the sample return of a trajec-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 486, + 505, + 499 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 125, + 499 + ], + "score": 1.0, + "content": "tory", + "type": "text" + }, + { + "bbox": [ + 126, + 486, + 175, + 499 + ], + "score": 0.92, + "content": "\\boldsymbol { A } _ { t } = \\sum _ { t } \\boldsymbol { r } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 486, + 505, + 499 + ], + "score": 1.0, + "content": "leads to the REINFORCE algorithm (Williams, 1992). However, such algorithms", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 496, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 506, + 510 + ], + "score": 1.0, + "content": "suffer from high variance in the gradient estimates and it’s typical to use a baseline, such as a value", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 508, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 505, + 520 + ], + "score": 1.0, + "content": "function baseline, to ameliorate the high variance. Generalized advantage estimation (Schulman", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 519, + 506, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 506, + 532 + ], + "score": 1.0, + "content": "et al., 2015b) takes this approach of using a learned value function to reduce variance at the cost of", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 531, + 443, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 443, + 543 + ], + "score": 1.0, + "content": "some bias and using an exponentially weighted estimator of the advantage function.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 408, + 506, + 543 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 547, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 105, + 546, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 505, + 560 + ], + "score": 1.0, + "content": "Proximal Policy Optimization (PPO): Achieving good results with policy gradient algorithms", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 558, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 505, + 570 + ], + "score": 1.0, + "content": "requires carefully tuning the step-size (Schulman et al., 2015a). Moreover, most policy gradient", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 568, + 504, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 504, + 582 + ], + "score": 1.0, + "content": "methods perform one gradient update per sampled trajectory and have high sample complexity.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 580, + 504, + 592 + ], + "spans": [ + { + "bbox": [ + 106, + 580, + 504, + 592 + ], + "score": 1.0, + "content": "Recently, Schulman et al. (2017) proposed the PPO algorithm which addresses both these prob-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 590, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 104, + 590, + 505, + 604 + ], + "score": 1.0, + "content": "lems. This uses a surrogate objective which is maximized while penalizing large changes to the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 601, + 505, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 156, + 621 + ], + "score": 1.0, + "content": "policy. Let", + "type": "text" + }, + { + "bbox": [ + 157, + 602, + 239, + 620 + ], + "score": 0.93, + "content": "\\begin{array} { r } { l _ { t } ( \\theta ) ~ = ~ \\frac { \\pi _ { \\theta } ^ { - } \\left( a _ { t } | s _ { t } \\right) ^ { - } } { \\pi _ { \\theta _ { o l d } } \\left( a _ { t } | s _ { t } \\right) } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 601, + 505, + 621 + ], + "score": 1.0, + "content": "denote the likelihood ratio. Then PPO optimizes the objective:", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 619, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 619, + 309, + 639 + ], + "score": 0.9, + "content": "L = \\mathbb { E } \\left[ \\operatorname* { m i n } ( l _ { t } ( \\theta ) \\hat { A } _ { t } , \\operatorname { c l i p } ( l _ { t } ( \\theta ) , 1 - \\epsilon , 1 + \\epsilon ) \\hat { A } _ { t } ) \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 619, + 340, + 637 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 340, + 621, + 352, + 634 + ], + "score": 0.89, + "content": "\\hat { A } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 619, + 506, + 637 + ], + "score": 1.0, + "content": "is the generalized advantage estimate", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 637, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 124, + 650 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 639, + 220, + 650 + ], + "score": 0.79, + "content": "\\mathrm { c l i p } ( l _ { t } ( \\theta ) , 1 - \\epsilon , 1 + \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 637, + 244, + 650 + ], + "score": 1.0, + "content": "clips", + "type": "text" + }, + { + "bbox": [ + 244, + 638, + 264, + 650 + ], + "score": 0.87, + "content": "l _ { t } ( \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 637, + 326, + 650 + ], + "score": 1.0, + "content": "in the interval", + "type": "text" + }, + { + "bbox": [ + 326, + 637, + 381, + 650 + ], + "score": 0.92, + "content": "[ 1 - \\epsilon , 1 + \\epsilon ]", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 637, + 505, + 650 + ], + "score": 1.0, + "content": ". The algorithm alternates be-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 648, + 504, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 504, + 660 + ], + "score": 1.0, + "content": "tween sampling multiple trajectories from the policy and performing several epochs of SGD on the", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 505, + 672 + ], + "score": 1.0, + "content": "sampled dataset to optimize this surrogate objective. Since the state value function is also simulta-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 671, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 106, + 671, + 505, + 683 + ], + "score": 1.0, + "content": "neously approximated, the error for the value function approximation is also added to the surrogate", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 682, + 417, + 693 + ], + "spans": [ + { + "bbox": [ + 106, + 682, + 417, + 693 + ], + "score": 1.0, + "content": "objective to compute the complete objective function (Schulman et al., 2017).", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 42.5, + "bbox_fs": [ + 104, + 546, + 506, + 693 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "Related Work: Tan (1993) explored the multi-agent setting with independently learning agents", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "using Q-learning, in particular exploring advantages of cooperative agents over independent agents", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "in a 2D grid world. This was further explored by Matignon et al. (2012) again in the cooperative", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "setting. A lot of the work on multi-agent RL is focused on cooperative settings, see Busoniu et al.", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 505, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 505, + 108 + ], + "score": 1.0, + "content": "(2008) for a review of multi-agent RL and Panait & Luke (2005) for a review focused on coop-", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 104, + 102, + 507, + 119 + ], + "spans": [ + { + "bbox": [ + 104, + 102, + 507, + 119 + ], + "score": 1.0, + "content": "erative settings. Stanley & Miikkulainen (2004) trained agents in a competitive 2D world, using", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "evolutionary strategies to evolve both weights and structure of policies with competition as a fitness", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 126, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 104, + 126, + 506, + 139 + ], + "score": 1.0, + "content": "measure. Tampuu et al. (2017) studied the application of deep Q-learning to train Pong agents with", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "competitive and collaborative rewarding schemes. He et al. (2016) used deep Q-learning to model", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 146, + 506, + 163 + ], + "spans": [ + { + "bbox": [ + 104, + 146, + 506, + 163 + ], + "score": 1.0, + "content": "competitive games where only one agent is learning and the Q network implicitly models the op-", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 159, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 104, + 159, + 506, + 172 + ], + "score": 1.0, + "content": "ponent. Silver et al. (2016) used self-play with deep reinforcement learning techniques to master", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 171, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 505, + 183 + ], + "score": 1.0, + "content": "the game of Go. Sukhbaatar et al. (2017) introduced a self-play method for generating an automatic", + "type": "text", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 181, + 505, + 193 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 505, + 193 + ], + "score": 1.0, + "content": "training curriculum in single-agent environments. From a game-theoretic perspective, Heinrich &", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 192, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 505, + 205 + ], + "score": 1.0, + "content": "Silver (2016) studied fictitious self-play for achieving approximate Nash equilibrium in zero-sum", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 202, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 505, + 217 + ], + "score": 1.0, + "content": "games like Poker. Recently, Foerster et al. (2017a) introduced an algorithm which explicitly ac-", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 215, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 215, + 505, + 226 + ], + "score": 1.0, + "content": "counts for the fact that the opponent is also learning and showed that it can achieve cooperation in", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 225, + 505, + 237 + ], + "spans": [ + { + "bbox": [ + 106, + 225, + 505, + 237 + ], + "score": 1.0, + "content": "iterated prisoner’s dilemma, however the algorithm requires access to the opponent’s parameters.", + "type": "text", + "cross_page": true + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 234, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 506, + 250 + ], + "score": 1.0, + "content": "Recently, Lowe et al. (2017) and Foerster et al. (2017b) proposed methods for centralized learning", + "type": "text", + "cross_page": true + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 248, + 504, + 259 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 504, + 259 + ], + "score": 1.0, + "content": "in multi-agent domains, where the idea is to use an actor-critic method with a central critic which", + "type": "text", + "cross_page": true + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 258, + 505, + 270 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 505, + 270 + ], + "score": 1.0, + "content": "can observe the joint state and actions of all agents in order to reduce variance, evaluating on 2D", + "type": "text", + "cross_page": true + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 268, + 506, + 283 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 506, + 283 + ], + "score": 1.0, + "content": "games and StarCraft. In this work, we do not rely on centralized training and address the variance", + "type": "text", + "cross_page": true + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 280, + 505, + 292 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 505, + 292 + ], + "score": 1.0, + "content": "problem by using very large batchsize through a distributed implementation of the PPO algorithm.", + "type": "text", + "cross_page": true + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 290, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 506, + 304 + ], + "score": 1.0, + "content": "Moreover, we study fully competitive settings in a 3D world with simulated physics whereas prior", + "type": "text", + "cross_page": true + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 300, + 506, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 506, + 317 + ], + "score": 1.0, + "content": "applications have focused on toy 2D worlds or game-theoretic problems. Recent work on learning", + "type": "text", + "cross_page": true + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 312, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 506, + 326 + ], + "score": 1.0, + "content": "dexterous locomotion skills in 3D environments by adding complexity in the agent’s environment", + "type": "text", + "cross_page": true + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 322, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 505, + 336 + ], + "score": 1.0, + "content": "(Heess et al., 2017) is also related. However, whereas Heess et al. (2017) learn complex behaviours", + "type": "text", + "cross_page": true + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 335, + 504, + 346 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 504, + 346 + ], + "score": 1.0, + "content": "by engineering complexity into the environment design and by engineering dense reward functions", + "type": "text", + "cross_page": true + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 344, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 104, + 344, + 506, + 360 + ], + "score": 1.0, + "content": "for these environments, the resultant complexity in our work is due to the presence of other learning", + "type": "text", + "cross_page": true + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 356, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 104, + 356, + 505, + 370 + ], + "score": 1.0, + "content": "agents in a simple environment. Our work is also related to early work in the graphics community", + "type": "text", + "cross_page": true + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 367, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 505, + 380 + ], + "score": 1.0, + "content": "(Sims, 1994) on evolving creature morphology in varying environments using genetic algorithm and", + "type": "text", + "cross_page": true + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 378, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 505, + 391 + ], + "score": 1.0, + "content": "work in animation (Wampler et al., 2010) for adversarial games. The competitive multi-agent learn-", + "type": "text", + "cross_page": true + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 389, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 505, + 402 + ], + "score": 1.0, + "content": "ing framework is also related to generative adversarial networks (Goodfellow et al., 2014) and work", + "type": "text", + "cross_page": true + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 401, + 417, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 417, + 414 + ], + "score": 1.0, + "content": "on learning robust grasping policies through an adversary (Pinto et al., 2017).", + "type": "text", + "cross_page": true + } + ], + "index": 29 + } + ], + "index": 50, + "bbox_fs": [ + 105, + 698, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 411 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "setting. A lot of the work on multi-agent RL is focused on cooperative settings, see Busoniu et al.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 505, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 505, + 108 + ], + "score": 1.0, + "content": "(2008) for a review of multi-agent RL and Panait & Luke (2005) for a review focused on coop-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 104, + 102, + 507, + 119 + ], + "spans": [ + { + "bbox": [ + 104, + 102, + 507, + 119 + ], + "score": 1.0, + "content": "erative settings. Stanley & Miikkulainen (2004) trained agents in a competitive 2D world, using", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "evolutionary strategies to evolve both weights and structure of policies with competition as a fitness", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 126, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 104, + 126, + 506, + 139 + ], + "score": 1.0, + "content": "measure. Tampuu et al. (2017) studied the application of deep Q-learning to train Pong agents with", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "competitive and collaborative rewarding schemes. He et al. (2016) used deep Q-learning to model", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 146, + 506, + 163 + ], + "spans": [ + { + "bbox": [ + 104, + 146, + 506, + 163 + ], + "score": 1.0, + "content": "competitive games where only one agent is learning and the Q network implicitly models the op-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 159, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 104, + 159, + 506, + 172 + ], + "score": 1.0, + "content": "ponent. Silver et al. (2016) used self-play with deep reinforcement learning techniques to master", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 171, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 505, + 183 + ], + "score": 1.0, + "content": "the game of Go. Sukhbaatar et al. (2017) introduced a self-play method for generating an automatic", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 181, + 505, + 193 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 505, + 193 + ], + "score": 1.0, + "content": "training curriculum in single-agent environments. From a game-theoretic perspective, Heinrich &", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 192, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 505, + 205 + ], + "score": 1.0, + "content": "Silver (2016) studied fictitious self-play for achieving approximate Nash equilibrium in zero-sum", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 202, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 505, + 217 + ], + "score": 1.0, + "content": "games like Poker. Recently, Foerster et al. (2017a) introduced an algorithm which explicitly ac-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 215, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 215, + 505, + 226 + ], + "score": 1.0, + "content": "counts for the fact that the opponent is also learning and showed that it can achieve cooperation in", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 225, + 505, + 237 + ], + "spans": [ + { + "bbox": [ + 106, + 225, + 505, + 237 + ], + "score": 1.0, + "content": "iterated prisoner’s dilemma, however the algorithm requires access to the opponent’s parameters.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 234, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 506, + 250 + ], + "score": 1.0, + "content": "Recently, Lowe et al. (2017) and Foerster et al. (2017b) proposed methods for centralized learning", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 248, + 504, + 259 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 504, + 259 + ], + "score": 1.0, + "content": "in multi-agent domains, where the idea is to use an actor-critic method with a central critic which", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 258, + 505, + 270 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 505, + 270 + ], + "score": 1.0, + "content": "can observe the joint state and actions of all agents in order to reduce variance, evaluating on 2D", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 268, + 506, + 283 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 506, + 283 + ], + "score": 1.0, + "content": "games and StarCraft. In this work, we do not rely on centralized training and address the variance", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 280, + 505, + 292 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 505, + 292 + ], + "score": 1.0, + "content": "problem by using very large batchsize through a distributed implementation of the PPO algorithm.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 290, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 506, + 304 + ], + "score": 1.0, + "content": "Moreover, we study fully competitive settings in a 3D world with simulated physics whereas prior", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 300, + 506, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 506, + 317 + ], + "score": 1.0, + "content": "applications have focused on toy 2D worlds or game-theoretic problems. Recent work on learning", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 312, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 506, + 326 + ], + "score": 1.0, + "content": "dexterous locomotion skills in 3D environments by adding complexity in the agent’s environment", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 322, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 505, + 336 + ], + "score": 1.0, + "content": "(Heess et al., 2017) is also related. However, whereas Heess et al. (2017) learn complex behaviours", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 335, + 504, + 346 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 504, + 346 + ], + "score": 1.0, + "content": "by engineering complexity into the environment design and by engineering dense reward functions", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 344, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 104, + 344, + 506, + 360 + ], + "score": 1.0, + "content": "for these environments, the resultant complexity in our work is due to the presence of other learning", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 356, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 104, + 356, + 505, + 370 + ], + "score": 1.0, + "content": "agents in a simple environment. Our work is also related to early work in the graphics community", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 367, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 505, + 380 + ], + "score": 1.0, + "content": "(Sims, 1994) on evolving creature morphology in varying environments using genetic algorithm and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 378, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 505, + 391 + ], + "score": 1.0, + "content": "work in animation (Wampler et al., 2010) for adversarial games. The competitive multi-agent learn-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 389, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 505, + 402 + ], + "score": 1.0, + "content": "ing framework is also related to generative adversarial networks (Goodfellow et al., 2014) and work", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 401, + 417, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 417, + 414 + ], + "score": 1.0, + "content": "on learning robust grasping policies through an adversary (Pinto et al., 2017).", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 14.5 + }, + { + "type": "title", + "bbox": [ + 108, + 429, + 285, + 441 + ], + "lines": [ + { + "bbox": [ + 104, + 426, + 287, + 443 + ], + "spans": [ + { + "bbox": [ + 104, + 426, + 287, + 443 + ], + "score": 1.0, + "content": "3 COMPETITIVE ENVIRONMENTS", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "image", + "bbox": [ + 107, + 457, + 504, + 531 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 457, + 504, + 531 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 457, + 504, + 531 + ], + "spans": [ + { + "bbox": [ + 107, + 457, + 504, + 531 + ], + "score": 0.965, + "type": "image", + "image_path": "0bc53a965370e58dc6fba3823a2d9d3f433c6c327fbd86c872932af6f33f371e.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 107, + 457, + 504, + 481.6666666666667 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 107, + 481.6666666666667, + 504, + 506.33333333333337 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 107, + 506.33333333333337, + 504, + 531.0 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 539, + 504, + 561 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 538, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 505, + 551 + ], + "score": 1.0, + "content": "Figure 1: Illustrations of competitive environments we consider in our work: Run to Goal, You Shall", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 551, + 262, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 262, + 562 + ], + "score": 1.0, + "content": "Not Pass, Sumo, and Kick and Defend.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + } + ], + "index": 33.25 + }, + { + "type": "text", + "bbox": [ + 107, + 577, + 505, + 643 + ], + "lines": [ + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "score": 1.0, + "content": "We introduce four competitive environments and experiment with two types of agents. In this paper", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 588, + 506, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 506, + 600 + ], + "score": 1.0, + "content": "we focus on two agent worlds, that is 1-vs-1 games, though these environments can be extended to", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 599, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 106, + 599, + 505, + 611 + ], + "score": 1.0, + "content": "include multiple agents for a mixed competitive and co-operative setup. We will now describe the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 610, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 505, + 622 + ], + "score": 1.0, + "content": "four environments and the competitive rewards in each environment. Figure 1 shows a rendering of", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 621, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 106, + 621, + 505, + 633 + ], + "score": 1.0, + "content": "the environments. We consider two three-dimensional agent bodies: ant and humanoid. The ant is a", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 631, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 201, + 645 + ], + "score": 1.0, + "content": "quadrupedal body with", + "type": "text" + }, + { + "bbox": [ + 201, + 632, + 232, + 642 + ], + "score": 0.27, + "content": "1 2 \\mathrm { D o F }", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 631, + 506, + 645 + ], + "score": 1.0, + "content": "and 8 actuated joints. Humanoid has 23 DoF and 17 actuated joints.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 107, + 649, + 504, + 693 + ], + "lines": [ + { + "bbox": [ + 105, + 648, + 506, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 506, + 661 + ], + "score": 1.0, + "content": "Run to Goal: The agents start by facing each other in a 3D world and they each have goals on the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 660, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 506, + 672 + ], + "score": 1.0, + "content": "opposite side of the word (see Fig.1a). The agent that reaches its goal first wins. Reaching the goal", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 671, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 263, + 684 + ], + "score": 1.0, + "content": "before the opponent gives a reward of", + "type": "text" + }, + { + "bbox": [ + 263, + 671, + 291, + 681 + ], + "score": 0.87, + "content": "+ 1 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 671, + 506, + 684 + ], + "score": 1.0, + "content": "to the agent and -1000 to the opponent. If no agent", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 682, + 272, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 272, + 693 + ], + "score": 1.0, + "content": "reaches its goal then they both get -1000.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 43.5 + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "You Shall Not Pass: This is the same world as the previous task, but one agent (the blocker) now", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "has the objective of blocking the other agent from reaching it’s goal while not falling down. If the", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 720, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 734 + ], + "score": 1.0, + "content": "blocker is successful in preventing the opponent from reaching the goal and is standing at the end of", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 47 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 411 + ], + "lines": [], + "index": 14.5, + "bbox_fs": [ + 104, + 82, + 507, + 414 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 429, + 285, + 441 + ], + "lines": [ + { + "bbox": [ + 104, + 426, + 287, + 443 + ], + "spans": [ + { + "bbox": [ + 104, + 426, + 287, + 443 + ], + "score": 1.0, + "content": "3 COMPETITIVE ENVIRONMENTS", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "image", + "bbox": [ + 107, + 457, + 504, + 531 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 457, + 504, + 531 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 457, + 504, + 531 + ], + "spans": [ + { + "bbox": [ + 107, + 457, + 504, + 531 + ], + "score": 0.965, + "type": "image", + "image_path": "0bc53a965370e58dc6fba3823a2d9d3f433c6c327fbd86c872932af6f33f371e.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 107, + 457, + 504, + 481.6666666666667 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 107, + 481.6666666666667, + 504, + 506.33333333333337 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 107, + 506.33333333333337, + 504, + 531.0 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 539, + 504, + 561 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 538, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 505, + 551 + ], + "score": 1.0, + "content": "Figure 1: Illustrations of competitive environments we consider in our work: Run to Goal, You Shall", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 551, + 262, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 262, + 562 + ], + "score": 1.0, + "content": "Not Pass, Sumo, and Kick and Defend.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + } + ], + "index": 33.25 + }, + { + "type": "text", + "bbox": [ + 107, + 577, + 505, + 643 + ], + "lines": [ + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "score": 1.0, + "content": "We introduce four competitive environments and experiment with two types of agents. In this paper", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 588, + 506, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 506, + 600 + ], + "score": 1.0, + "content": "we focus on two agent worlds, that is 1-vs-1 games, though these environments can be extended to", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 599, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 106, + 599, + 505, + 611 + ], + "score": 1.0, + "content": "include multiple agents for a mixed competitive and co-operative setup. We will now describe the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 610, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 505, + 622 + ], + "score": 1.0, + "content": "four environments and the competitive rewards in each environment. Figure 1 shows a rendering of", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 621, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 106, + 621, + 505, + 633 + ], + "score": 1.0, + "content": "the environments. We consider two three-dimensional agent bodies: ant and humanoid. The ant is a", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 631, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 201, + 645 + ], + "score": 1.0, + "content": "quadrupedal body with", + "type": "text" + }, + { + "bbox": [ + 201, + 632, + 232, + 642 + ], + "score": 0.27, + "content": "1 2 \\mathrm { D o F }", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 631, + 506, + 645 + ], + "score": 1.0, + "content": "and 8 actuated joints. Humanoid has 23 DoF and 17 actuated joints.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 577, + 506, + 645 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 649, + 504, + 693 + ], + "lines": [ + { + "bbox": [ + 105, + 648, + 506, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 506, + 661 + ], + "score": 1.0, + "content": "Run to Goal: The agents start by facing each other in a 3D world and they each have goals on the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 660, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 506, + 672 + ], + "score": 1.0, + "content": "opposite side of the word (see Fig.1a). The agent that reaches its goal first wins. Reaching the goal", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 671, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 263, + 684 + ], + "score": 1.0, + "content": "before the opponent gives a reward of", + "type": "text" + }, + { + "bbox": [ + 263, + 671, + 291, + 681 + ], + "score": 0.87, + "content": "+ 1 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 671, + 506, + 684 + ], + "score": 1.0, + "content": "to the agent and -1000 to the opponent. If no agent", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 682, + 272, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 272, + 693 + ], + "score": 1.0, + "content": "reaches its goal then they both get -1000.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 648, + 506, + 693 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "You Shall Not Pass: This is the same world as the previous task, but one agent (the blocker) now", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "has the objective of blocking the other agent from reaching it’s goal while not falling down. If the", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 720, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 734 + ], + "score": 1.0, + "content": "blocker is successful in preventing the opponent from reaching the goal and is standing at the end of", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 186, + 96 + ], + "score": 1.0, + "content": "episode then it gets", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 187, + 83, + 214, + 93 + ], + "score": 0.89, + "content": "+ 1 0 0 0", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 214, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "reward, if it is not standing then it gets 0 reward, and the opponent gets", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 414, + 107 + ], + "score": 1.0, + "content": "-1000 reward. If the opponent is successful in reaching it’s goal then it gets", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 414, + 94, + 442, + 104 + ], + "score": 0.87, + "content": "+ 1 0 0 0", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 442, + 92, + 506, + 107 + ], + "score": 1.0, + "content": "reward and the", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 215, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 215, + 116 + ], + "score": 1.0, + "content": "blocker gets -1000 reward.", + "type": "text", + "cross_page": true + } + ], + "index": 2 + } + ], + "index": 47, + "bbox_fs": [ + 105, + 698, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 503, + 115 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 186, + 96 + ], + "score": 1.0, + "content": "episode then it gets", + "type": "text" + }, + { + "bbox": [ + 187, + 83, + 214, + 93 + ], + "score": 0.89, + "content": "+ 1 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "reward, if it is not standing then it gets 0 reward, and the opponent gets", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 414, + 107 + ], + "score": 1.0, + "content": "-1000 reward. If the opponent is successful in reaching it’s goal then it gets", + "type": "text" + }, + { + "bbox": [ + 414, + 94, + 442, + 104 + ], + "score": 0.87, + "content": "+ 1 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 92, + 506, + 107 + ], + "score": 1.0, + "content": "reward and the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 215, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 215, + 116 + ], + "score": 1.0, + "content": "blocker gets -1000 reward.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 121, + 504, + 155 + ], + "lines": [ + { + "bbox": [ + 105, + 120, + 506, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 506, + 134 + ], + "score": 1.0, + "content": "Sumo: The agents compete on a round arena (see Fig.1c) and the goal of each agent is to either", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 445, + 145 + ], + "score": 1.0, + "content": "knock the other agent to the ground or to push them out of the ring. The winner gets", + "type": "text" + }, + { + "bbox": [ + 445, + 132, + 473, + 143 + ], + "score": 0.87, + "content": "+ 1 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 132, + 505, + 145 + ], + "score": 1.0, + "content": "and the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 381, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 381, + 156 + ], + "score": 1.0, + "content": "other agent gets -1000. If there is a draw then both agents get -1000.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 107, + 160, + 505, + 248 + ], + "lines": [ + { + "bbox": [ + 105, + 160, + 505, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 505, + 173 + ], + "score": 1.0, + "content": "Kick and Defend: This a standard penalty shootout (see Fig.1d). One agent has to kick a ball", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 171, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 505, + 183 + ], + "score": 1.0, + "content": "through the goal, which has a fixed width of 6 units, while the other agent defends. Successful kick", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 181, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 212, + 196 + ], + "score": 1.0, + "content": "or defend gives the agent", + "type": "text" + }, + { + "bbox": [ + 212, + 182, + 239, + 193 + ], + "score": 0.87, + "content": "+ 1 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 181, + 505, + 196 + ], + "score": 1.0, + "content": "reward and the opponent -1000 reward. The defender cannot go", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 193, + 506, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 506, + 206 + ], + "score": 1.0, + "content": "beyond the goal-keeping area which is a distance 3 units from the goal, doing so terminates the game", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 204, + 506, + 216 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 506, + 216 + ], + "score": 1.0, + "content": "with a penalty of -1000 for the defender. We give two additional rewards for defender: if defender is", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 215, + 506, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 371, + 227 + ], + "score": 1.0, + "content": "successful and it made contact with the ball then it gets additional", + "type": "text" + }, + { + "bbox": [ + 372, + 215, + 394, + 226 + ], + "score": 0.86, + "content": "+ 5 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 215, + 506, + 227 + ], + "score": 1.0, + "content": "reward, and if the defender", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 226, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 479, + 238 + ], + "score": 1.0, + "content": "is successful and still standing at the end of the game then it gets another additional reward of", + "type": "text" + }, + { + "bbox": [ + 479, + 226, + 501, + 237 + ], + "score": 0.86, + "content": "+ 5 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 226, + 505, + 238 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 236, + 445, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 445, + 249 + ], + "score": 1.0, + "content": "We found the latter two rewards to yield more realistic looking defending behaviors.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 9.5 + }, + { + "type": "title", + "bbox": [ + 108, + 264, + 299, + 277 + ], + "lines": [ + { + "bbox": [ + 105, + 263, + 300, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 300, + 279 + ], + "score": 1.0, + "content": "4 TRAINING COMPETITIVE AGENTS", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 290, + 505, + 433 + ], + "lines": [ + { + "bbox": [ + 105, + 289, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 505, + 302 + ], + "score": 1.0, + "content": "In this section we describe the multi-agent training framework. We use a policy gradient algorithm,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 300, + 506, + 314 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 506, + 314 + ], + "score": 1.0, + "content": "Proximal Policy Optimization (PPO) (Schulman et al., 2017), described previously. We adopt a", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 312, + 506, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 506, + 325 + ], + "score": 1.0, + "content": "decentralized training approach and use a distributed implementation of PPO for very large scale", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 324, + 504, + 335 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 504, + 335 + ], + "score": 1.0, + "content": "multi-agent training. This allows us to use really large batch-sizes during training ameliorating the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 334, + 504, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 334, + 504, + 345 + ], + "score": 1.0, + "content": "variance problem to some extent while also aiding in exploration. Our distributed PPO implemen-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 344, + 506, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 506, + 358 + ], + "score": 1.0, + "content": "tation is similar to the implementation of Heess et al. (2017), where instead of the KL penalty we", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 356, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 506, + 369 + ], + "score": 1.0, + "content": "used the clipped objective as proposed in PPO (Schulman et al., 2017). We do multiple rollouts in", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 366, + 506, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 506, + 379 + ], + "score": 1.0, + "content": "parallel for each agent and have separate optimizers for each agent. We collect a large amount of", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 378, + 506, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 506, + 390 + ], + "score": 1.0, + "content": "rollouts from the parallel workers and for each agent optimize the objective with the collected batch", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 388, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 505, + 401 + ], + "score": 1.0, + "content": "on 4 GPUs. The approach is same as synchronous actor critic of Mnih et al. (2016). Instead of esti-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 399, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 505, + 412 + ], + "score": 1.0, + "content": "mating a truncated generalized advantage estimate (GAE) from a small number of steps per rollout,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "score": 1.0, + "content": "as in Schulman et al. (2017); Heess et al. (2017), we estimate GAE from the full rollouts. This is", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 421, + 484, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 484, + 434 + ], + "score": 1.0, + "content": "important as the competition reward is a sparse reward given at the termination of the episode.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 108, + 438, + 502, + 472 + ], + "lines": [ + { + "bbox": [ + 106, + 437, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 505, + 452 + ], + "score": 1.0, + "content": "There are further challenges in applying distributed PPO to train multiple competitive agents. One is", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 448, + 505, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 505, + 463 + ], + "score": 1.0, + "content": "the problem of exploration with sparse reward and second is the choice of opponent during training", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 461, + 428, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 428, + 473 + ], + "score": 1.0, + "content": "which effects the stability of training. We now turn our attention to these issues.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + }, + { + "type": "title", + "bbox": [ + 108, + 486, + 255, + 496 + ], + "lines": [ + { + "bbox": [ + 106, + 485, + 256, + 498 + ], + "spans": [ + { + "bbox": [ + 106, + 485, + 256, + 498 + ], + "score": 1.0, + "content": "4.1 EXPLORATION CURRICULUM", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 506, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 505, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 506, + 519 + ], + "score": 1.0, + "content": "The success of agents in the competitive games requires the agents to occasionally solve the task", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 518, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 505, + 529 + ], + "score": 1.0, + "content": "(i.e. win the competition) by random actions. The probability of this happening in most games is", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "minuscule as they require as a prerequisite some fundamental motor skills like the ability to walk.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 539, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 505, + 552 + ], + "score": 1.0, + "content": "For example, the only way a kicker in the kick-and-defend task would achieve any positive reward", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "is if it moves towards the ball and causes sufficient displacement to it so as to make it go past the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "goal boundaries which is also obstructed by a defender. This is a problem of training from sparse", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 572, + 506, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 584 + ], + "score": 1.0, + "content": "reward which is an active area of current research (Andrychowicz et al., 2017). To overcome this", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 583, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 506, + 595 + ], + "score": 1.0, + "content": "problem, we can use simple dense rewards at each step to allow the agents to learn basic motor skills", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 593, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 505, + 607 + ], + "score": 1.0, + "content": "initially. Such rewards have been previously researched for tasks like walking forward and standing", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 604, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 506, + 618 + ], + "score": 1.0, + "content": "up, see for e.g. Schulman et al. (2015b) and Duan et al. (2016). However, engineering such dense", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 616, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 506, + 628 + ], + "score": 1.0, + "content": "rewards for the competitive tasks is not straight forward. Moreover, such engineered rewards defeat", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 627, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 640 + ], + "score": 1.0, + "content": "the purpose of the competitive multi-agent training as we would like the agents to benefit from", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 637, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 505, + 652 + ], + "score": 1.0, + "content": "the natural curriculum arising from the multi-agent training. To overcome this chicken-and-egg", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 649, + 381, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 381, + 662 + ], + "score": 1.0, + "content": "problem, we instead propose to use a simple curriculum for training.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "We use a dense reward at every step in the beginning phase of the training to allow agents to learn ba-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "sic motor skills, like walking forward or being able to stand, which would increase the probability of", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "random actions from the agent yielding a positive reward. We refer to this reward as the exploration", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "reward. The exploration reward is gradually annealed to zero, in favor of the competition reward, to", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "allow the agents to train for the majority of the training using the sparse competition reward. This", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 721, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 279, + 732 + ], + "score": 1.0, + "content": "is achieved using a linear annealing factor", + "type": "text" + }, + { + "bbox": [ + 279, + 725, + 285, + 730 + ], + "score": 0.78, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 721, + 357, + 732 + ], + "score": 1.0, + "content": ". So, at time-step", + "type": "text" + }, + { + "bbox": [ + 357, + 722, + 361, + 730 + ], + "score": 0.68, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 721, + 477, + 732 + ], + "score": 1.0, + "content": ", if the exploration reward is", + "type": "text" + }, + { + "bbox": [ + 477, + 722, + 486, + 732 + ], + "score": 0.85, + "content": "s _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 721, + 505, + 732 + ], + "score": 1.0, + "content": ", the", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 48.5 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 503, + 115 + ], + "lines": [], + "index": 1, + "bbox_fs": [ + 105, + 81, + 506, + 116 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 121, + 504, + 155 + ], + "lines": [ + { + "bbox": [ + 105, + 120, + 506, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 506, + 134 + ], + "score": 1.0, + "content": "Sumo: The agents compete on a round arena (see Fig.1c) and the goal of each agent is to either", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 445, + 145 + ], + "score": 1.0, + "content": "knock the other agent to the ground or to push them out of the ring. The winner gets", + "type": "text" + }, + { + "bbox": [ + 445, + 132, + 473, + 143 + ], + "score": 0.87, + "content": "+ 1 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 132, + 505, + 145 + ], + "score": 1.0, + "content": "and the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 381, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 381, + 156 + ], + "score": 1.0, + "content": "other agent gets -1000. If there is a draw then both agents get -1000.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 120, + 506, + 156 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 160, + 505, + 248 + ], + "lines": [ + { + "bbox": [ + 105, + 160, + 505, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 505, + 173 + ], + "score": 1.0, + "content": "Kick and Defend: This a standard penalty shootout (see Fig.1d). One agent has to kick a ball", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 171, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 505, + 183 + ], + "score": 1.0, + "content": "through the goal, which has a fixed width of 6 units, while the other agent defends. Successful kick", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 181, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 212, + 196 + ], + "score": 1.0, + "content": "or defend gives the agent", + "type": "text" + }, + { + "bbox": [ + 212, + 182, + 239, + 193 + ], + "score": 0.87, + "content": "+ 1 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 181, + 505, + 196 + ], + "score": 1.0, + "content": "reward and the opponent -1000 reward. The defender cannot go", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 193, + 506, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 506, + 206 + ], + "score": 1.0, + "content": "beyond the goal-keeping area which is a distance 3 units from the goal, doing so terminates the game", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 204, + 506, + 216 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 506, + 216 + ], + "score": 1.0, + "content": "with a penalty of -1000 for the defender. We give two additional rewards for defender: if defender is", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 215, + 506, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 371, + 227 + ], + "score": 1.0, + "content": "successful and it made contact with the ball then it gets additional", + "type": "text" + }, + { + "bbox": [ + 372, + 215, + 394, + 226 + ], + "score": 0.86, + "content": "+ 5 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 215, + 506, + 227 + ], + "score": 1.0, + "content": "reward, and if the defender", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 226, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 479, + 238 + ], + "score": 1.0, + "content": "is successful and still standing at the end of the game then it gets another additional reward of", + "type": "text" + }, + { + "bbox": [ + 479, + 226, + 501, + 237 + ], + "score": 0.86, + "content": "+ 5 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 226, + 505, + 238 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 236, + 445, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 445, + 249 + ], + "score": 1.0, + "content": "We found the latter two rewards to yield more realistic looking defending behaviors.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 160, + 506, + 249 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 264, + 299, + 277 + ], + "lines": [ + { + "bbox": [ + 105, + 263, + 300, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 300, + 279 + ], + "score": 1.0, + "content": "4 TRAINING COMPETITIVE AGENTS", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 290, + 505, + 433 + ], + "lines": [ + { + "bbox": [ + 105, + 289, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 505, + 302 + ], + "score": 1.0, + "content": "In this section we describe the multi-agent training framework. We use a policy gradient algorithm,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 300, + 506, + 314 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 506, + 314 + ], + "score": 1.0, + "content": "Proximal Policy Optimization (PPO) (Schulman et al., 2017), described previously. We adopt a", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 312, + 506, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 506, + 325 + ], + "score": 1.0, + "content": "decentralized training approach and use a distributed implementation of PPO for very large scale", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 324, + 504, + 335 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 504, + 335 + ], + "score": 1.0, + "content": "multi-agent training. This allows us to use really large batch-sizes during training ameliorating the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 334, + 504, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 334, + 504, + 345 + ], + "score": 1.0, + "content": "variance problem to some extent while also aiding in exploration. Our distributed PPO implemen-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 344, + 506, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 506, + 358 + ], + "score": 1.0, + "content": "tation is similar to the implementation of Heess et al. (2017), where instead of the KL penalty we", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 356, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 506, + 369 + ], + "score": 1.0, + "content": "used the clipped objective as proposed in PPO (Schulman et al., 2017). We do multiple rollouts in", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 366, + 506, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 506, + 379 + ], + "score": 1.0, + "content": "parallel for each agent and have separate optimizers for each agent. We collect a large amount of", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 378, + 506, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 506, + 390 + ], + "score": 1.0, + "content": "rollouts from the parallel workers and for each agent optimize the objective with the collected batch", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 388, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 505, + 401 + ], + "score": 1.0, + "content": "on 4 GPUs. The approach is same as synchronous actor critic of Mnih et al. (2016). Instead of esti-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 399, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 505, + 412 + ], + "score": 1.0, + "content": "mating a truncated generalized advantage estimate (GAE) from a small number of steps per rollout,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "score": 1.0, + "content": "as in Schulman et al. (2017); Heess et al. (2017), we estimate GAE from the full rollouts. This is", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 421, + 484, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 484, + 434 + ], + "score": 1.0, + "content": "important as the competition reward is a sparse reward given at the termination of the episode.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 289, + 506, + 434 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 438, + 502, + 472 + ], + "lines": [ + { + "bbox": [ + 106, + 437, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 505, + 452 + ], + "score": 1.0, + "content": "There are further challenges in applying distributed PPO to train multiple competitive agents. One is", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 448, + 505, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 505, + 463 + ], + "score": 1.0, + "content": "the problem of exploration with sparse reward and second is the choice of opponent during training", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 461, + 428, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 428, + 473 + ], + "score": 1.0, + "content": "which effects the stability of training. We now turn our attention to these issues.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 437, + 505, + 473 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 486, + 255, + 496 + ], + "lines": [ + { + "bbox": [ + 106, + 485, + 256, + 498 + ], + "spans": [ + { + "bbox": [ + 106, + 485, + 256, + 498 + ], + "score": 1.0, + "content": "4.1 EXPLORATION CURRICULUM", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 506, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 505, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 506, + 519 + ], + "score": 1.0, + "content": "The success of agents in the competitive games requires the agents to occasionally solve the task", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 518, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 505, + 529 + ], + "score": 1.0, + "content": "(i.e. win the competition) by random actions. The probability of this happening in most games is", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "minuscule as they require as a prerequisite some fundamental motor skills like the ability to walk.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 539, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 505, + 552 + ], + "score": 1.0, + "content": "For example, the only way a kicker in the kick-and-defend task would achieve any positive reward", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "is if it moves towards the ball and causes sufficient displacement to it so as to make it go past the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "goal boundaries which is also obstructed by a defender. This is a problem of training from sparse", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 572, + 506, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 584 + ], + "score": 1.0, + "content": "reward which is an active area of current research (Andrychowicz et al., 2017). To overcome this", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 583, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 506, + 595 + ], + "score": 1.0, + "content": "problem, we can use simple dense rewards at each step to allow the agents to learn basic motor skills", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 593, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 505, + 607 + ], + "score": 1.0, + "content": "initially. Such rewards have been previously researched for tasks like walking forward and standing", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 604, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 506, + 618 + ], + "score": 1.0, + "content": "up, see for e.g. Schulman et al. (2015b) and Duan et al. (2016). However, engineering such dense", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 616, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 506, + 628 + ], + "score": 1.0, + "content": "rewards for the competitive tasks is not straight forward. Moreover, such engineered rewards defeat", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 627, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 640 + ], + "score": 1.0, + "content": "the purpose of the competitive multi-agent training as we would like the agents to benefit from", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 637, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 505, + 652 + ], + "score": 1.0, + "content": "the natural curriculum arising from the multi-agent training. To overcome this chicken-and-egg", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 649, + 381, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 381, + 662 + ], + "score": 1.0, + "content": "problem, we instead propose to use a simple curriculum for training.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 505, + 506, + 662 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "We use a dense reward at every step in the beginning phase of the training to allow agents to learn ba-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "sic motor skills, like walking forward or being able to stand, which would increase the probability of", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "random actions from the agent yielding a positive reward. We refer to this reward as the exploration", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "reward. The exploration reward is gradually annealed to zero, in favor of the competition reward, to", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "allow the agents to train for the majority of the training using the sparse competition reward. This", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 721, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 279, + 732 + ], + "score": 1.0, + "content": "is achieved using a linear annealing factor", + "type": "text" + }, + { + "bbox": [ + 279, + 725, + 285, + 730 + ], + "score": 0.78, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 721, + 357, + 732 + ], + "score": 1.0, + "content": ". So, at time-step", + "type": "text" + }, + { + "bbox": [ + 357, + 722, + 361, + 730 + ], + "score": 0.68, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 721, + 477, + 732 + ], + "score": 1.0, + "content": ", if the exploration reward is", + "type": "text" + }, + { + "bbox": [ + 477, + 722, + 486, + 732 + ], + "score": 0.85, + "content": "s _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 721, + 505, + 732 + ], + "score": 1.0, + "content": ", the", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 106, + 210, + 423, + 224 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 195, + 224 + ], + "score": 1.0, + "content": "competition reward is", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 196, + 212, + 205, + 221 + ], + "score": 0.84, + "content": "R", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 205, + 210, + 222, + 224 + ], + "score": 1.0, + "content": "and", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 222, + 212, + 231, + 221 + ], + "score": 0.84, + "content": "T", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 231, + 210, + 423, + 224 + ], + "score": 1.0, + "content": "is the termination time-step, then the reward is:", + "type": "text", + "cross_page": true + } + ], + "index": 4 + } + ], + "index": 48.5, + "bbox_fs": [ + 105, + 665, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 112, + 80, + 501, + 169 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 112, + 80, + 501, + 169 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 112, + 80, + 501, + 169 + ], + "spans": [ + { + "bbox": [ + 112, + 80, + 501, + 169 + ], + "score": 0.954, + "type": "image", + "image_path": "611e1d088992578d7def0edfa3a82e9cac54d0c160389f20d84a21b79c6c4f59.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 112, + 80, + 501, + 109.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 112, + 109.66666666666667, + 501, + 139.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 112, + 139.33333333333334, + 501, + 169.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 131, + 178, + 478, + 190 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 130, + 176, + 480, + 193 + ], + "spans": [ + { + "bbox": [ + 130, + 176, + 480, + 193 + ], + "score": 1.0, + "content": "Figure 2: Opponent Sampling: Training rewards for two opponent sampling strategies.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 106, + 211, + 421, + 223 + ], + "lines": [ + { + "bbox": [ + 106, + 210, + 423, + 224 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 195, + 224 + ], + "score": 1.0, + "content": "competition reward is", + "type": "text" + }, + { + "bbox": [ + 196, + 212, + 205, + 221 + ], + "score": 0.84, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 210, + 222, + 224 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 222, + 212, + 231, + 221 + ], + "score": 0.84, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 210, + 423, + 224 + ], + "score": 1.0, + "content": "is the termination time-step, then the reward is:", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "interline_equation", + "bbox": [ + 236, + 228, + 375, + 242 + ], + "lines": [ + { + "bbox": [ + 236, + 228, + 375, + 242 + ], + "spans": [ + { + "bbox": [ + 236, + 228, + 375, + 242 + ], + "score": 0.92, + "content": "r _ { t } = \\alpha _ { t } s _ { t } + ( 1 - \\alpha _ { t } ) \\mathbb { I } [ t = = T ] R", + "type": "interline_equation", + "image_path": "f545273695d1fea526ce9d5faa51fb178d327fa4a5bccb1363ff43021ef47541.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 236, + 228, + 375, + 242 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 247, + 505, + 357 + ], + "lines": [ + { + "bbox": [ + 105, + 246, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 505, + 260 + ], + "score": 1.0, + "content": "This ameliorates the problem of exploration with the sparse reward, which is particularly tough in", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 257, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 104, + 257, + 505, + 272 + ], + "score": 1.0, + "content": "a 3D world with simulated physics and complex agents like humanoid, while still benefiting from", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 268, + 506, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 506, + 284 + ], + "score": 1.0, + "content": "training for the sparse competition reward for the majority of the training. During a typical training", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 280, + 506, + 294 + ], + "spans": [ + { + "bbox": [ + 104, + 280, + 359, + 294 + ], + "score": 1.0, + "content": "run, the agents would train on the dense reward for only about", + "type": "text" + }, + { + "bbox": [ + 360, + 281, + 392, + 291 + ], + "score": 0.88, + "content": "10 \\mathrm { - } 1 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 280, + 506, + 294 + ], + "score": 1.0, + "content": "of the training epochs. The", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 289, + 506, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 506, + 306 + ], + "score": 1.0, + "content": "dense rewards used are described in the Appendix A and are generally composed of the following", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 303, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 251, + 315 + ], + "score": 1.0, + "content": "terms: distance to goal, velocity in", + "type": "text" + }, + { + "bbox": [ + 252, + 304, + 258, + 313 + ], + "score": 0.44, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 303, + 505, + 315 + ], + "score": 1.0, + "content": "-direction, control cost, impact cost, standing reward. These", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 313, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 506, + 326 + ], + "score": 1.0, + "content": "rewards are adopted from existing work and we did not tune weights on the various reward terms. In", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "score": 1.0, + "content": "particular, it is important to note that there is no dense reward term for many of the complex emergent", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 335, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 506, + 348 + ], + "score": 1.0, + "content": "behaviors and we also show in the experiment section how the learned behaviors are affected if we", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 345, + 464, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 464, + 359 + ], + "score": 1.0, + "content": "do not anneal the dense reward to benefit from optimizing the sparse competition reward.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 10.5 + }, + { + "type": "title", + "bbox": [ + 108, + 371, + 227, + 382 + ], + "lines": [ + { + "bbox": [ + 106, + 371, + 228, + 383 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 228, + 383 + ], + "score": 1.0, + "content": "4.2 OPPONENT SAMPLING", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 392, + 505, + 513 + ], + "lines": [ + { + "bbox": [ + 105, + 392, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 505, + 405 + ], + "score": 1.0, + "content": "In the competitive multi-agent framework, all agents are simultaneously training in opponent pairs.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 403, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 403, + 505, + 416 + ], + "score": 1.0, + "content": "Thus, the skill of opponents encountered during training could have significant impact on the learn-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 413, + 506, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 506, + 427 + ], + "score": 1.0, + "content": "ing of the agents. We found that training agents against the most recent opponent leads to imbalance", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 425, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 106, + 425, + 505, + 438 + ], + "score": 1.0, + "content": "in training where one agent becomes more skilled than the other agent early in training and the other", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 435, + 506, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 449 + ], + "score": 1.0, + "content": "agent is unable to recover. Fig. 2a shows the rewards during training with this naive approach (for", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 447, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 106, + 447, + 505, + 459 + ], + "score": 1.0, + "content": "the “run to goal” task with ant). Instead, we found that training against random old versions of the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 457, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 506, + 470 + ], + "score": 1.0, + "content": "opponent to work much better. Thus, during training, for each rollout for an agent we sample old", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 469, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 106, + 469, + 505, + 482 + ], + "score": 1.0, + "content": "parameters for the opponent. Fig. 2b shows the rewards for agents trained using this strategy. This", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 478, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 506, + 493 + ], + "score": 1.0, + "content": "leads to more stable training and more robust policies. We further analyze the effect of this opponent", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 490, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 490, + 505, + 504 + ], + "score": 1.0, + "content": "sampling in the experiments section. Note that for self-play this means that the policy at any time", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 501, + 463, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 463, + 515 + ], + "score": 1.0, + "content": "should be able to defeat random older versions of itself, thus ensuring continual learning.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 22 + }, + { + "type": "title", + "bbox": [ + 108, + 529, + 200, + 542 + ], + "lines": [ + { + "bbox": [ + 104, + 528, + 202, + 544 + ], + "spans": [ + { + "bbox": [ + 104, + 528, + 202, + 544 + ], + "score": 1.0, + "content": "5 EXPERIMENTS", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 554, + 505, + 621 + ], + "lines": [ + { + "bbox": [ + 107, + 555, + 505, + 566 + ], + "spans": [ + { + "bbox": [ + 107, + 555, + 505, + 566 + ], + "score": 1.0, + "content": "We train agents for the four competitive tasks using the training methods described previously. Our", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 564, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 505, + 578 + ], + "score": 1.0, + "content": "aim is to show that competitive multi-agent training provides a natural curriculum during learning", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 577, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 505, + 588 + ], + "score": 1.0, + "content": "which allows agents to learn complex behaviors. We provide additional training details and analyze", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 587, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 505, + 600 + ], + "score": 1.0, + "content": "various aspects of the competitive multi-agent training in this section. A highlight of the learned", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 597, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 505, + 610 + ], + "score": 1.0, + "content": "behaviors can be seen in the videos. Code for the environments as well as learned policy parameters", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 609, + 504, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 504, + 622 + ], + "score": 1.0, + "content": "for agents on all the environments are available: https://github.com/openai/multiagent-competition.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5 + }, + { + "type": "title", + "bbox": [ + 108, + 634, + 239, + 645 + ], + "lines": [ + { + "bbox": [ + 105, + 633, + 240, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 240, + 647 + ], + "score": 1.0, + "content": "5.1 EXPERIMENTAL DETAILS", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 667 + ], + "score": 1.0, + "content": "Policies and Value Functions: We compare both MLP and LSTM for the policies and the value", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "functions. MLP had 2 hidden layers with 128 units each. For LSTM networks, the input was first", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "projected to a 128 dimensional embedding using a fully connected layer with ReLU activation which", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "is then fed into a single-layer LSTM with 128 hidden state dimension and the output is projected", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "to the action dimension using another fully connected layer. We used Gaussian policies with mean", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "given by the output of the networks and a diagonal covariance matrix whose entries are also treated", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "as trianable parameters. The policy outputs are clipped to lie within the control range. We used", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 39 + } + ], + "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 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 112, + 80, + 501, + 169 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 112, + 80, + 501, + 169 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 112, + 80, + 501, + 169 + ], + "spans": [ + { + "bbox": [ + 112, + 80, + 501, + 169 + ], + "score": 0.954, + "type": "image", + "image_path": "611e1d088992578d7def0edfa3a82e9cac54d0c160389f20d84a21b79c6c4f59.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 112, + 80, + 501, + 109.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 112, + 109.66666666666667, + 501, + 139.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 112, + 139.33333333333334, + 501, + 169.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 131, + 178, + 478, + 190 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 130, + 176, + 480, + 193 + ], + "spans": [ + { + "bbox": [ + 130, + 176, + 480, + 193 + ], + "score": 1.0, + "content": "Figure 2: Opponent Sampling: Training rewards for two opponent sampling strategies.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 106, + 211, + 421, + 223 + ], + "lines": [], + "index": 4, + "bbox_fs": [ + 106, + 210, + 423, + 224 + ], + "lines_deleted": true + }, + { + "type": "interline_equation", + "bbox": [ + 236, + 228, + 375, + 242 + ], + "lines": [ + { + "bbox": [ + 236, + 228, + 375, + 242 + ], + "spans": [ + { + "bbox": [ + 236, + 228, + 375, + 242 + ], + "score": 0.92, + "content": "r _ { t } = \\alpha _ { t } s _ { t } + ( 1 - \\alpha _ { t } ) \\mathbb { I } [ t = = T ] R", + "type": "interline_equation", + "image_path": "f545273695d1fea526ce9d5faa51fb178d327fa4a5bccb1363ff43021ef47541.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 236, + 228, + 375, + 242 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 247, + 505, + 357 + ], + "lines": [ + { + "bbox": [ + 105, + 246, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 505, + 260 + ], + "score": 1.0, + "content": "This ameliorates the problem of exploration with the sparse reward, which is particularly tough in", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 257, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 104, + 257, + 505, + 272 + ], + "score": 1.0, + "content": "a 3D world with simulated physics and complex agents like humanoid, while still benefiting from", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 268, + 506, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 506, + 284 + ], + "score": 1.0, + "content": "training for the sparse competition reward for the majority of the training. During a typical training", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 280, + 506, + 294 + ], + "spans": [ + { + "bbox": [ + 104, + 280, + 359, + 294 + ], + "score": 1.0, + "content": "run, the agents would train on the dense reward for only about", + "type": "text" + }, + { + "bbox": [ + 360, + 281, + 392, + 291 + ], + "score": 0.88, + "content": "10 \\mathrm { - } 1 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 280, + 506, + 294 + ], + "score": 1.0, + "content": "of the training epochs. The", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 289, + 506, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 506, + 306 + ], + "score": 1.0, + "content": "dense rewards used are described in the Appendix A and are generally composed of the following", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 303, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 251, + 315 + ], + "score": 1.0, + "content": "terms: distance to goal, velocity in", + "type": "text" + }, + { + "bbox": [ + 252, + 304, + 258, + 313 + ], + "score": 0.44, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 303, + 505, + 315 + ], + "score": 1.0, + "content": "-direction, control cost, impact cost, standing reward. These", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 313, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 506, + 326 + ], + "score": 1.0, + "content": "rewards are adopted from existing work and we did not tune weights on the various reward terms. In", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "score": 1.0, + "content": "particular, it is important to note that there is no dense reward term for many of the complex emergent", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 335, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 506, + 348 + ], + "score": 1.0, + "content": "behaviors and we also show in the experiment section how the learned behaviors are affected if we", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 345, + 464, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 464, + 359 + ], + "score": 1.0, + "content": "do not anneal the dense reward to benefit from optimizing the sparse competition reward.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 10.5, + "bbox_fs": [ + 104, + 246, + 506, + 359 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 371, + 227, + 382 + ], + "lines": [ + { + "bbox": [ + 106, + 371, + 228, + 383 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 228, + 383 + ], + "score": 1.0, + "content": "4.2 OPPONENT SAMPLING", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 392, + 505, + 513 + ], + "lines": [ + { + "bbox": [ + 105, + 392, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 505, + 405 + ], + "score": 1.0, + "content": "In the competitive multi-agent framework, all agents are simultaneously training in opponent pairs.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 403, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 403, + 505, + 416 + ], + "score": 1.0, + "content": "Thus, the skill of opponents encountered during training could have significant impact on the learn-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 413, + 506, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 506, + 427 + ], + "score": 1.0, + "content": "ing of the agents. We found that training agents against the most recent opponent leads to imbalance", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 425, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 106, + 425, + 505, + 438 + ], + "score": 1.0, + "content": "in training where one agent becomes more skilled than the other agent early in training and the other", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 435, + 506, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 449 + ], + "score": 1.0, + "content": "agent is unable to recover. Fig. 2a shows the rewards during training with this naive approach (for", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 447, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 106, + 447, + 505, + 459 + ], + "score": 1.0, + "content": "the “run to goal” task with ant). Instead, we found that training against random old versions of the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 457, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 506, + 470 + ], + "score": 1.0, + "content": "opponent to work much better. Thus, during training, for each rollout for an agent we sample old", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 469, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 106, + 469, + 505, + 482 + ], + "score": 1.0, + "content": "parameters for the opponent. Fig. 2b shows the rewards for agents trained using this strategy. This", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 478, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 506, + 493 + ], + "score": 1.0, + "content": "leads to more stable training and more robust policies. We further analyze the effect of this opponent", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 490, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 490, + 505, + 504 + ], + "score": 1.0, + "content": "sampling in the experiments section. Note that for self-play this means that the policy at any time", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 501, + 463, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 463, + 515 + ], + "score": 1.0, + "content": "should be able to defeat random older versions of itself, thus ensuring continual learning.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 392, + 506, + 515 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 529, + 200, + 542 + ], + "lines": [ + { + "bbox": [ + 104, + 528, + 202, + 544 + ], + "spans": [ + { + "bbox": [ + 104, + 528, + 202, + 544 + ], + "score": 1.0, + "content": "5 EXPERIMENTS", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 554, + 505, + 621 + ], + "lines": [ + { + "bbox": [ + 107, + 555, + 505, + 566 + ], + "spans": [ + { + "bbox": [ + 107, + 555, + 505, + 566 + ], + "score": 1.0, + "content": "We train agents for the four competitive tasks using the training methods described previously. Our", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 564, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 505, + 578 + ], + "score": 1.0, + "content": "aim is to show that competitive multi-agent training provides a natural curriculum during learning", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 577, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 505, + 588 + ], + "score": 1.0, + "content": "which allows agents to learn complex behaviors. We provide additional training details and analyze", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 587, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 505, + 600 + ], + "score": 1.0, + "content": "various aspects of the competitive multi-agent training in this section. A highlight of the learned", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 597, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 505, + 610 + ], + "score": 1.0, + "content": "behaviors can be seen in the videos. Code for the environments as well as learned policy parameters", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 609, + 504, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 504, + 622 + ], + "score": 1.0, + "content": "for agents on all the environments are available: https://github.com/openai/multiagent-competition.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 555, + 505, + 622 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 634, + 239, + 645 + ], + "lines": [ + { + "bbox": [ + 105, + 633, + 240, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 240, + 647 + ], + "score": 1.0, + "content": "5.1 EXPERIMENTAL DETAILS", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 667 + ], + "score": 1.0, + "content": "Policies and Value Functions: We compare both MLP and LSTM for the policies and the value", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "functions. MLP had 2 hidden layers with 128 units each. For LSTM networks, the input was first", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "projected to a 128 dimensional embedding using a fully connected layer with ReLU activation which", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "is then fed into a single-layer LSTM with 128 hidden state dimension and the output is projected", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "to the action dimension using another fully connected layer. We used Gaussian policies with mean", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "given by the output of the networks and a diagonal covariance matrix whose entries are also treated", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "as trianable parameters. The policy outputs are clipped to lie within the control range. We used", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 654, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 149 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "MLP policy and value functions for the run-to-goal and you-shall-not-pass environments, and LSTM", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "policy and value function for sumo and kick-and-defend. This is because earlier experiments did not", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 118 + ], + "score": 1.0, + "content": "yield good results with MLP policy on these tasks. For LSTM policy we used truncated BPTT with", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "a truncation of 10 timesteps. The policy and the value functions have separate parameters. For the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 127, + 505, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 505, + 140 + ], + "score": 1.0, + "content": "asymmetric games, you-shall-not-pass and kick-and-defend, we use separate policies for the two", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 138, + 178, + 150 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 178, + 150 + ], + "score": 1.0, + "content": "agents in a game.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 154, + 505, + 264 + ], + "lines": [ + { + "bbox": [ + 105, + 153, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 505, + 167 + ], + "score": 1.0, + "content": "Observations: For the Ant body we use all the joint angles of the agent, its velocity of all its", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 506, + 178 + ], + "score": 1.0, + "content": "joints, the contact forces acting on the body and the relative position and all the joint angles for the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "score": 1.0, + "content": "opponent. For the Humanoid body, in addition to the above we also give the centre-of-mass based", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 188, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 188, + 505, + 199 + ], + "score": 1.0, + "content": "inertia tensor, velocity vector and the actuator forces for the body. In addition to these, there are other", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 506, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 506, + 211 + ], + "score": 1.0, + "content": "environment specific observations. For the Sumo environment, we give the torso’s orientation vector", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 209, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 505, + 222 + ], + "score": 1.0, + "content": "as the input, the radial distance from the edge of the ring of all the agents and the time remaining in", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 220, + 506, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 506, + 232 + ], + "score": 1.0, + "content": "the game. For kick-and-defend, we give the relative position of the ball from the agent, the relative", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 231, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 505, + 244 + ], + "score": 1.0, + "content": "distance of the ball from goal and the relative position of the ball from the two goal posts. Note", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 241, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 506, + 255 + ], + "score": 1.0, + "content": "that none of the agents observe the complete global state of the multi-agent world and only observe", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 253, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 505, + 265 + ], + "score": 1.0, + "content": "relevant sub-parts of the state vector to keep observations as close to real-world scenarios as possible.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 107, + 270, + 505, + 357 + ], + "lines": [ + { + "bbox": [ + 105, + 268, + 505, + 283 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 505, + 283 + ], + "score": 1.0, + "content": "Algorithm Parameters: We use Adam (Kingma & Ba, 2014) with learning rate 0.001. The clip-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 281, + 506, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 201, + 294 + ], + "score": 1.0, + "content": "ping parameter in PPO", + "type": "text" + }, + { + "bbox": [ + 201, + 281, + 235, + 291 + ], + "score": 0.88, + "content": "\\epsilon = 0 . 2", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 281, + 313, + 294 + ], + "score": 1.0, + "content": ", discounting factor", + "type": "text" + }, + { + "bbox": [ + 314, + 281, + 359, + 292 + ], + "score": 0.89, + "content": "\\gamma = 0 . 9 9 5", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 281, + 506, + 294 + ], + "score": 1.0, + "content": "and generalized advantage estimate", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 291, + 505, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 149, + 305 + ], + "score": 1.0, + "content": "parameter", + "type": "text" + }, + { + "bbox": [ + 149, + 292, + 188, + 302 + ], + "score": 0.9, + "content": "\\lambda = 0 . 9 5", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 291, + 505, + 305 + ], + "score": 1.0, + "content": ". Each iteration, we collect 409600 samples from the parallel rollouts and per-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 303, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 505, + 315 + ], + "score": 1.0, + "content": "form multiple epochs of PPO training in mini-batches consisting of 5120 samples. For MLP policies", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 313, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 505, + 327 + ], + "score": 1.0, + "content": "we did 6 epochs of SGD per iteration and for LSTM policies we did 3 epochs. We don’t use any", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 325, + 505, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 210, + 337 + ], + "score": 1.0, + "content": "entropy bonus. We found", + "type": "text" + }, + { + "bbox": [ + 210, + 325, + 219, + 336 + ], + "score": 0.86, + "content": "l _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 325, + 505, + 337 + ], + "score": 1.0, + "content": "regularization of the policy and value network parameters to be useful.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 336, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 173, + 348 + ], + "score": 1.0, + "content": "The co-efficient", + "type": "text" + }, + { + "bbox": [ + 173, + 337, + 184, + 347 + ], + "score": 0.85, + "content": "\\alpha _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 336, + 505, + 348 + ], + "score": 1.0, + "content": "in eq. 1 for the exploration reward is annealed to 0 in 500 iterations for all the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 347, + 440, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 440, + 358 + ], + "score": 1.0, + "content": "environments except for kick-and-defend in which it is annealed in 1000 iterations.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 19.5 + }, + { + "type": "title", + "bbox": [ + 108, + 372, + 226, + 383 + ], + "lines": [ + { + "bbox": [ + 105, + 372, + 227, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 227, + 385 + ], + "score": 1.0, + "content": "5.2 LEARNED BEHAVIORS", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 393, + 505, + 580 + ], + "lines": [ + { + "bbox": [ + 106, + 394, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 505, + 406 + ], + "score": 1.0, + "content": "We observe numerous interesting learned behaviors demonstrated by the agents as a result of the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 405, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 505, + 417 + ], + "score": 1.0, + "content": "complexity arising out of the competitive multi-agent training. Different random seeds often lead", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "score": 1.0, + "content": "to somewhat different behaviors. Refer to the videos for highlights of the learned policies on all", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 424, + 506, + 440 + ], + "spans": [ + { + "bbox": [ + 104, + 424, + 506, + 440 + ], + "score": 1.0, + "content": "the tasks. On Run-to-Goal, we observe the quadruped Ants demonstrate behaviors like blocking,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 437, + 506, + 451 + ], + "spans": [ + { + "bbox": [ + 104, + 437, + 506, + 451 + ], + "score": 1.0, + "content": "standing robustly, using legs to topple the opponent and running towards the goal. Humanoids", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 448, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 505, + 461 + ], + "score": 1.0, + "content": "try to avoid each other and run towards their goal really fast, occasionally they will bump into", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 460, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 505, + 471 + ], + "score": 1.0, + "content": "each other with force and try to recover from the impact. On You-Shall-Not-Pass, we observe the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 470, + 506, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 506, + 483 + ], + "score": 1.0, + "content": "blocking humanoid learn to block by raising its hand while the other humanoid eventually learned", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 480, + 506, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 506, + 495 + ], + "score": 1.0, + "content": "to duck in order to cross. On Sumo, we observe multiple different strategies used by the Ant and", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 492, + 505, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 505, + 505 + ], + "score": 1.0, + "content": "Humanoid. Humanoids, for example, demonstrate a stable fighting stance and learned to knock the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 503, + 506, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 506, + 517 + ], + "score": 1.0, + "content": "opponent using their heads. In a different run, we observe that one agent learned to charge towards", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "score": 1.0, + "content": "the opponent whereas the opponent tried to fool it by stepping out of the opponents way at the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "score": 1.0, + "content": "edge of the ring. On kick-and-defend, we observe that the kicker learned a good kicking policy", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 536, + 505, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 505, + 548 + ], + "score": 1.0, + "content": "where it can go towards random ball positions, uses its feet to kick the ball high and tries to avoid", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 547, + 504, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 504, + 559 + ], + "score": 1.0, + "content": "the defender. We also see a fooling behavior in the kicker’s motions where it moves left and right", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 558, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 506, + 572 + ], + "score": 1.0, + "content": "quickly once close to the ball to fool the defender. The defender learned to defend by moving in", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 569, + 446, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 446, + 581 + ], + "score": 1.0, + "content": "response to the motion of the kicker and using its hands and legs to obstruct the ball.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 586, + 504, + 663 + ], + "lines": [ + { + "bbox": [ + 106, + 586, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 506, + 598 + ], + "score": 1.0, + "content": "These movement strategies are not just useful in competition, for example the skills learned in the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 596, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 610 + ], + "score": 1.0, + "content": "Sumo can transfer to other situations even without other agents. In one case, we took the agent", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 607, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 506, + 621 + ], + "score": 1.0, + "content": "trained on the multi-agent Sumo task and faced it with the task of standing while being perturbed by", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 619, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 506, + 631 + ], + "score": 1.0, + "content": "wind forces. The agent receives the zero vector for parts of the opponent observation. We found that", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 630, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 506, + 642 + ], + "score": 1.0, + "content": "the agent managed to stay upright despite never seeing the windy environment or observing wind", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 640, + 506, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 506, + 654 + ], + "score": 1.0, + "content": "forces. Please see Appendix B.1 for details of the experiment and quantitative results. Refer to the", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 652, + 213, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 652, + 213, + 663 + ], + "score": 1.0, + "content": "video for a demonstration.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 45 + }, + { + "type": "title", + "bbox": [ + 107, + 677, + 303, + 689 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 305, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 305, + 690 + ], + "score": 1.0, + "content": "5.3 EFFECT OF EXPLORATION CURRICULUM", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 49 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "In section 4.1 we introduced an exploration curriculum to help agents explore in a 3D world. One", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "question that arises is the extent to which the outcome of learning is affected by this exploration", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 106, + 721, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 506, + 733 + ], + "score": 1.0, + "content": "reward and to explore the benefit of this exploration reward. As already argued, we found the", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 51 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 149 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "MLP policy and value functions for the run-to-goal and you-shall-not-pass environments, and LSTM", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "policy and value function for sumo and kick-and-defend. This is because earlier experiments did not", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 118 + ], + "score": 1.0, + "content": "yield good results with MLP policy on these tasks. For LSTM policy we used truncated BPTT with", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "a truncation of 10 timesteps. The policy and the value functions have separate parameters. For the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 127, + 505, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 505, + 140 + ], + "score": 1.0, + "content": "asymmetric games, you-shall-not-pass and kick-and-defend, we use separate policies for the two", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 138, + 178, + 150 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 178, + 150 + ], + "score": 1.0, + "content": "agents in a game.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 82, + 506, + 150 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 154, + 505, + 264 + ], + "lines": [ + { + "bbox": [ + 105, + 153, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 505, + 167 + ], + "score": 1.0, + "content": "Observations: For the Ant body we use all the joint angles of the agent, its velocity of all its", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 506, + 178 + ], + "score": 1.0, + "content": "joints, the contact forces acting on the body and the relative position and all the joint angles for the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "score": 1.0, + "content": "opponent. For the Humanoid body, in addition to the above we also give the centre-of-mass based", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 188, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 188, + 505, + 199 + ], + "score": 1.0, + "content": "inertia tensor, velocity vector and the actuator forces for the body. In addition to these, there are other", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 506, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 506, + 211 + ], + "score": 1.0, + "content": "environment specific observations. For the Sumo environment, we give the torso’s orientation vector", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 209, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 505, + 222 + ], + "score": 1.0, + "content": "as the input, the radial distance from the edge of the ring of all the agents and the time remaining in", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 220, + 506, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 506, + 232 + ], + "score": 1.0, + "content": "the game. For kick-and-defend, we give the relative position of the ball from the agent, the relative", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 231, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 505, + 244 + ], + "score": 1.0, + "content": "distance of the ball from goal and the relative position of the ball from the two goal posts. Note", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 241, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 506, + 255 + ], + "score": 1.0, + "content": "that none of the agents observe the complete global state of the multi-agent world and only observe", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 253, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 505, + 265 + ], + "score": 1.0, + "content": "relevant sub-parts of the state vector to keep observations as close to real-world scenarios as possible.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 153, + 506, + 265 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 270, + 505, + 357 + ], + "lines": [ + { + "bbox": [ + 105, + 268, + 505, + 283 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 505, + 283 + ], + "score": 1.0, + "content": "Algorithm Parameters: We use Adam (Kingma & Ba, 2014) with learning rate 0.001. The clip-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 281, + 506, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 201, + 294 + ], + "score": 1.0, + "content": "ping parameter in PPO", + "type": "text" + }, + { + "bbox": [ + 201, + 281, + 235, + 291 + ], + "score": 0.88, + "content": "\\epsilon = 0 . 2", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 281, + 313, + 294 + ], + "score": 1.0, + "content": ", discounting factor", + "type": "text" + }, + { + "bbox": [ + 314, + 281, + 359, + 292 + ], + "score": 0.89, + "content": "\\gamma = 0 . 9 9 5", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 281, + 506, + 294 + ], + "score": 1.0, + "content": "and generalized advantage estimate", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 291, + 505, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 149, + 305 + ], + "score": 1.0, + "content": "parameter", + "type": "text" + }, + { + "bbox": [ + 149, + 292, + 188, + 302 + ], + "score": 0.9, + "content": "\\lambda = 0 . 9 5", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 291, + 505, + 305 + ], + "score": 1.0, + "content": ". Each iteration, we collect 409600 samples from the parallel rollouts and per-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 303, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 505, + 315 + ], + "score": 1.0, + "content": "form multiple epochs of PPO training in mini-batches consisting of 5120 samples. For MLP policies", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 313, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 505, + 327 + ], + "score": 1.0, + "content": "we did 6 epochs of SGD per iteration and for LSTM policies we did 3 epochs. We don’t use any", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 325, + 505, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 210, + 337 + ], + "score": 1.0, + "content": "entropy bonus. We found", + "type": "text" + }, + { + "bbox": [ + 210, + 325, + 219, + 336 + ], + "score": 0.86, + "content": "l _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 325, + 505, + 337 + ], + "score": 1.0, + "content": "regularization of the policy and value network parameters to be useful.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 336, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 173, + 348 + ], + "score": 1.0, + "content": "The co-efficient", + "type": "text" + }, + { + "bbox": [ + 173, + 337, + 184, + 347 + ], + "score": 0.85, + "content": "\\alpha _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 336, + 505, + 348 + ], + "score": 1.0, + "content": "in eq. 1 for the exploration reward is annealed to 0 in 500 iterations for all the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 347, + 440, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 440, + 358 + ], + "score": 1.0, + "content": "environments except for kick-and-defend in which it is annealed in 1000 iterations.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 268, + 506, + 358 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 372, + 226, + 383 + ], + "lines": [ + { + "bbox": [ + 105, + 372, + 227, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 227, + 385 + ], + "score": 1.0, + "content": "5.2 LEARNED BEHAVIORS", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 393, + 505, + 580 + ], + "lines": [ + { + "bbox": [ + 106, + 394, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 505, + 406 + ], + "score": 1.0, + "content": "We observe numerous interesting learned behaviors demonstrated by the agents as a result of the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 405, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 505, + 417 + ], + "score": 1.0, + "content": "complexity arising out of the competitive multi-agent training. Different random seeds often lead", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "score": 1.0, + "content": "to somewhat different behaviors. Refer to the videos for highlights of the learned policies on all", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 424, + 506, + 440 + ], + "spans": [ + { + "bbox": [ + 104, + 424, + 506, + 440 + ], + "score": 1.0, + "content": "the tasks. On Run-to-Goal, we observe the quadruped Ants demonstrate behaviors like blocking,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 437, + 506, + 451 + ], + "spans": [ + { + "bbox": [ + 104, + 437, + 506, + 451 + ], + "score": 1.0, + "content": "standing robustly, using legs to topple the opponent and running towards the goal. Humanoids", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 448, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 505, + 461 + ], + "score": 1.0, + "content": "try to avoid each other and run towards their goal really fast, occasionally they will bump into", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 460, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 505, + 471 + ], + "score": 1.0, + "content": "each other with force and try to recover from the impact. On You-Shall-Not-Pass, we observe the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 470, + 506, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 506, + 483 + ], + "score": 1.0, + "content": "blocking humanoid learn to block by raising its hand while the other humanoid eventually learned", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 480, + 506, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 506, + 495 + ], + "score": 1.0, + "content": "to duck in order to cross. On Sumo, we observe multiple different strategies used by the Ant and", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 492, + 505, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 505, + 505 + ], + "score": 1.0, + "content": "Humanoid. Humanoids, for example, demonstrate a stable fighting stance and learned to knock the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 503, + 506, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 506, + 517 + ], + "score": 1.0, + "content": "opponent using their heads. In a different run, we observe that one agent learned to charge towards", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "score": 1.0, + "content": "the opponent whereas the opponent tried to fool it by stepping out of the opponents way at the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "score": 1.0, + "content": "edge of the ring. On kick-and-defend, we observe that the kicker learned a good kicking policy", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 536, + 505, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 505, + 548 + ], + "score": 1.0, + "content": "where it can go towards random ball positions, uses its feet to kick the ball high and tries to avoid", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 547, + 504, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 504, + 559 + ], + "score": 1.0, + "content": "the defender. We also see a fooling behavior in the kicker’s motions where it moves left and right", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 558, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 506, + 572 + ], + "score": 1.0, + "content": "quickly once close to the ball to fool the defender. The defender learned to defend by moving in", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 569, + 446, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 446, + 581 + ], + "score": 1.0, + "content": "response to the motion of the kicker and using its hands and legs to obstruct the ball.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 33, + "bbox_fs": [ + 104, + 394, + 506, + 581 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 586, + 504, + 663 + ], + "lines": [ + { + "bbox": [ + 106, + 586, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 506, + 598 + ], + "score": 1.0, + "content": "These movement strategies are not just useful in competition, for example the skills learned in the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 596, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 610 + ], + "score": 1.0, + "content": "Sumo can transfer to other situations even without other agents. In one case, we took the agent", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 607, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 506, + 621 + ], + "score": 1.0, + "content": "trained on the multi-agent Sumo task and faced it with the task of standing while being perturbed by", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 619, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 506, + 631 + ], + "score": 1.0, + "content": "wind forces. The agent receives the zero vector for parts of the opponent observation. We found that", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 630, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 506, + 642 + ], + "score": 1.0, + "content": "the agent managed to stay upright despite never seeing the windy environment or observing wind", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 640, + 506, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 506, + 654 + ], + "score": 1.0, + "content": "forces. Please see Appendix B.1 for details of the experiment and quantitative results. Refer to the", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 652, + 213, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 652, + 213, + 663 + ], + "score": 1.0, + "content": "video for a demonstration.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 586, + 506, + 663 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 677, + 303, + 689 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 305, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 305, + 690 + ], + "score": 1.0, + "content": "5.3 EFFECT OF EXPLORATION CURRICULUM", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 49 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "In section 4.1 we introduced an exploration curriculum to help agents explore in a 3D world. One", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "question that arises is the extent to which the outcome of learning is affected by this exploration", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 106, + 721, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 506, + 733 + ], + "score": 1.0, + "content": "reward and to explore the benefit of this exploration reward. As already argued, we found the", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 379, + 506, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 506, + 392 + ], + "score": 1.0, + "content": "exploration reward to be crucial for learning as otherwise the agents are unable to explore the sparse", + "type": "text", + "cross_page": true + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 390, + 506, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 506, + 402 + ], + "score": 1.0, + "content": "competition reward. However, the learned behaviors are mostly a result of the natural curriculum", + "type": "text", + "cross_page": true + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 401, + 504, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 504, + 412 + ], + "score": 1.0, + "content": "arising out of the multi-agent competition and not due to the dense exploration reward. To see this,", + "type": "text", + "cross_page": true + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 412, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 505, + 424 + ], + "score": 1.0, + "content": "first note that we do not give any reward for many of the complex learned behaviours described", + "type": "text", + "cross_page": true + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 423, + 506, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 506, + 435 + ], + "score": 1.0, + "content": "previously. We further test this by not annealing the exploration reward and always having a dense", + "type": "text", + "cross_page": true + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "score": 1.0, + "content": "reward which is a sum of the exploration reward and the competition reward. We take these agents", + "type": "text", + "cross_page": true + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 444, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 505, + 457 + ], + "score": 1.0, + "content": "trained without curriculum and pit them against agents trained with exploration curriculum. We plot", + "type": "text", + "cross_page": true + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 455, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 506, + 469 + ], + "score": 1.0, + "content": "the average win-rates over 800 games at various intervals during training in Fig. 3, for the sumo", + "type": "text", + "cross_page": true + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 467, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 106, + 467, + 505, + 479 + ], + "score": 1.0, + "content": "and kick-and-defend environments. For kick-and-defend there are two plots, one where kicker is", + "type": "text", + "cross_page": true + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 477, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 505, + 489 + ], + "score": 1.0, + "content": "trained with curriculum while keeper without it and vice versa. Observe that the agents trained", + "type": "text", + "cross_page": true + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "with curriculum beat the non-curriculum agents by a margin. We found agents trained without", + "type": "text", + "cross_page": true + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 498, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 506, + 513 + ], + "score": 1.0, + "content": "curriculum exhibit either non-optimal behaviors for the competition or end up optimizing for a", + "type": "text", + "cross_page": true + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 510, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 506, + 523 + ], + "score": 1.0, + "content": "particular component of the dense reward. For example, for Sumo, the agents just learn to stand and", + "type": "text", + "cross_page": true + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 520, + 506, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 506, + 535 + ], + "score": 1.0, + "content": "move towards center of the arena, and for kick-and-defend, the defender optimizes for being able to", + "type": "text", + "cross_page": true + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 532, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 505, + 545 + ], + "score": 1.0, + "content": "stand up but doesn’t learn to defend while the kicker learns a non-optimal strategy of carrying the ball", + "type": "text", + "cross_page": true + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 543, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 543, + 506, + 556 + ], + "score": 1.0, + "content": "with itself to the goal (rather than kicking) – a policy which is easily defeated by a defender trained", + "type": "text", + "cross_page": true + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 554, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 505, + 567 + ], + "score": 1.0, + "content": "with curriculum. Moreover, training without curriculum also takes more samples to learn. We also", + "type": "text", + "cross_page": true + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 564, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 505, + 578 + ], + "score": 1.0, + "content": "show these behaviours qualitatively in the videos. These results echo some recent findings (albeit", + "type": "text", + "cross_page": true + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 576, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 505, + 589 + ], + "score": 1.0, + "content": "in the single agent case), like Andrychowicz et al. (2017) who found that optimizing for the sparse", + "type": "text", + "cross_page": true + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 587, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 505, + 600 + ], + "score": 1.0, + "content": "reward yields better return than optimizing for hand crafted dense rewards. For the competitive", + "type": "text", + "cross_page": true + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 599, + 478, + 610 + ], + "spans": [ + { + "bbox": [ + 106, + 599, + 478, + 610 + ], + "score": 1.0, + "content": "multi-agent case, these results shed further light on the importance of the natural curriculum.", + "type": "text", + "cross_page": true + } + ], + "index": 38 + } + ], + "index": 51, + "bbox_fs": [ + 105, + 698, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 110, + 80, + 497, + 176 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 80, + 497, + 176 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 80, + 497, + 176 + ], + "spans": [ + { + "bbox": [ + 110, + 80, + 497, + 176 + ], + "score": 0.969, + "type": "image", + "image_path": "b945f11d066fc08722a430402c33d364604cc71ecf37dc98786df3ca4e0addcf.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 110, + 80, + 497, + 112.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 110, + 112.0, + 497, + 144.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 110, + 144.0, + 497, + 176.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 185, + 505, + 230 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 185, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 106, + 185, + 505, + 198 + ], + "score": 1.0, + "content": "Figure 3: Effect for exploration curriculum: win-rate of agents trained by annealing the exploration", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 196, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 104, + 196, + 505, + 209 + ], + "score": 1.0, + "content": "reward against agents which constantly receive the dense exploration reward. The agents which op-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 207, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 207, + 505, + 221 + ], + "score": 1.0, + "content": "timized for the sparse competition reward benefit from the natural curriculum of multi-agent training", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 218, + 264, + 231 + ], + "spans": [ + { + "bbox": [ + 106, + 218, + 264, + 231 + ], + "score": 1.0, + "content": "and defeat the other agent by a margin.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "table", + "bbox": [ + 327, + 240, + 502, + 300 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 327, + 240, + 502, + 300 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 327, + 240, + 502, + 300 + ], + "spans": [ + { + "bbox": [ + 327, + 240, + 502, + 300 + ], + "score": 0.247, + "html": "
8 1.0 0.8 0.51.0 - 0.36 0.360.8 0.37 1 0.390.5 0.35 0.38 10.0 0.29 0.33 0.33E[Win] 0.34 0.36 0.36
0.0 E[Loss]0.51 0.410.49 0.420.49 0.41- 0.320.50 1
", + "type": "table", + "image_path": "069c1227b382b2ce30262126022418f6704cfd94e0ce61369066d86c4670c2a2.jpg" + } + ] + } + ], + "index": 11.0, + "virtual_lines": [ + { + "bbox": [ + 327, + 240, + 502, + 255.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 327, + 255.0, + 502, + 270.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 327, + 270.0, + 502, + 285.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 327, + 285.0, + 502, + 300.0 + ], + "spans": [], + "index": 14 + } + ] + } + ], + "index": 11.0 + }, + { + "type": "table", + "bbox": [ + 110, + 240, + 285, + 300 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 110, + 240, + 285, + 300 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 240, + 285, + 300 + ], + "spans": [ + { + "bbox": [ + 110, + 240, + 285, + 300 + ], + "score": 0.434, + "html": "
81.00.80.50.0E[Win]
1.010.260.130.370.25
0.80.50.4610.220.520.400.630.35
0.590.5810.73
0.00.550.360.16-
E[Loss]0.530.400.170.541
", + "type": "table", + "image_path": "feb7f23a62523fe691a6ec555233a99c1dae552f0e8ed0d3a946c4e8fadbd1ee.jpg" + } + ] + } + ], + "index": 10.0, + "virtual_lines": [ + { + "bbox": [ + 110, + 240, + 285, + 255.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 110, + 255.0, + 285, + 270.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 110, + 270.0, + 285, + 285.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 110, + 285.0, + 285, + 300.0 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 107, + 323, + 505, + 356 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 322, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 278, + 336 + ], + "score": 1.0, + "content": "Table 1: The effect of opponent sampling.", + "type": "text" + }, + { + "bbox": [ + 278, + 323, + 311, + 335 + ], + "score": 0.36, + "content": "\\mathbb { E } [ \\mathrm { L o s s } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 322, + 329, + 336 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 329, + 323, + 361, + 335 + ], + "score": 0.7, + "content": "\\mathbb { E } [ \\mathrm { W i n } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 322, + 505, + 336 + ], + "score": 1.0, + "content": "are the expected loss and win-rates", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 334, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 334, + 253, + 347 + ], + "score": 1.0, + "content": "for agents trained with a particular", + "type": "text" + }, + { + "bbox": [ + 254, + 335, + 260, + 344 + ], + "score": 0.69, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 334, + 410, + 347 + ], + "score": 1.0, + "content": "as described in 5.4. For humanoid", + "type": "text" + }, + { + "bbox": [ + 410, + 334, + 447, + 345 + ], + "score": 0.9, + "content": "\\delta \\ : = \\ : 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 334, + 505, + 347 + ], + "score": 1.0, + "content": "gives highest", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 345, + 339, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 274, + 357 + ], + "score": 1.0, + "content": "win-rate and lowest loss, whereas for Ant", + "type": "text" + }, + { + "bbox": [ + 275, + 345, + 299, + 356 + ], + "score": 0.9, + "content": "\\delta = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 345, + 339, + 357 + ], + "score": 1.0, + "content": "was best.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + } + ], + "index": 13.0 + }, + { + "type": "text", + "bbox": [ + 106, + 379, + 505, + 609 + ], + "lines": [ + { + "bbox": [ + 106, + 379, + 506, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 506, + 392 + ], + "score": 1.0, + "content": "exploration reward to be crucial for learning as otherwise the agents are unable to explore the sparse", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 390, + 506, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 506, + 402 + ], + "score": 1.0, + "content": "competition reward. However, the learned behaviors are mostly a result of the natural curriculum", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 401, + 504, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 504, + 412 + ], + "score": 1.0, + "content": "arising out of the multi-agent competition and not due to the dense exploration reward. To see this,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 412, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 505, + 424 + ], + "score": 1.0, + "content": "first note that we do not give any reward for many of the complex learned behaviours described", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 423, + 506, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 506, + 435 + ], + "score": 1.0, + "content": "previously. We further test this by not annealing the exploration reward and always having a dense", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "score": 1.0, + "content": "reward which is a sum of the exploration reward and the competition reward. We take these agents", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 444, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 505, + 457 + ], + "score": 1.0, + "content": "trained without curriculum and pit them against agents trained with exploration curriculum. We plot", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 455, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 506, + 469 + ], + "score": 1.0, + "content": "the average win-rates over 800 games at various intervals during training in Fig. 3, for the sumo", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 467, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 106, + 467, + 505, + 479 + ], + "score": 1.0, + "content": "and kick-and-defend environments. For kick-and-defend there are two plots, one where kicker is", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 477, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 505, + 489 + ], + "score": 1.0, + "content": "trained with curriculum while keeper without it and vice versa. Observe that the agents trained", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "with curriculum beat the non-curriculum agents by a margin. We found agents trained without", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 498, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 506, + 513 + ], + "score": 1.0, + "content": "curriculum exhibit either non-optimal behaviors for the competition or end up optimizing for a", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 510, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 506, + 523 + ], + "score": 1.0, + "content": "particular component of the dense reward. For example, for Sumo, the agents just learn to stand and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 520, + 506, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 506, + 535 + ], + "score": 1.0, + "content": "move towards center of the arena, and for kick-and-defend, the defender optimizes for being able to", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 532, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 505, + 545 + ], + "score": 1.0, + "content": "stand up but doesn’t learn to defend while the kicker learns a non-optimal strategy of carrying the ball", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 543, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 543, + 506, + 556 + ], + "score": 1.0, + "content": "with itself to the goal (rather than kicking) – a policy which is easily defeated by a defender trained", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 554, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 505, + 567 + ], + "score": 1.0, + "content": "with curriculum. Moreover, training without curriculum also takes more samples to learn. We also", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 564, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 505, + 578 + ], + "score": 1.0, + "content": "show these behaviours qualitatively in the videos. These results echo some recent findings (albeit", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 576, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 505, + 589 + ], + "score": 1.0, + "content": "in the single agent case), like Andrychowicz et al. (2017) who found that optimizing for the sparse", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 587, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 505, + 600 + ], + "score": 1.0, + "content": "reward yields better return than optimizing for hand crafted dense rewards. For the competitive", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 599, + 478, + 610 + ], + "spans": [ + { + "bbox": [ + 106, + 599, + 478, + 610 + ], + "score": 1.0, + "content": "multi-agent case, these results shed further light on the importance of the natural curriculum.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 28 + }, + { + "type": "title", + "bbox": [ + 108, + 623, + 275, + 634 + ], + "lines": [ + { + "bbox": [ + 106, + 623, + 277, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 277, + 636 + ], + "score": 1.0, + "content": "5.4 EFFECT OF OPPONENT SAMPLING", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 644, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 643, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 506, + 657 + ], + "score": 1.0, + "content": "In section 4.2, we introduced the past opponent sampling method for training competitive agents", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 655, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 668 + ], + "score": 1.0, + "content": "simultaneously. This choice of opponent could be important as it affects the natural curriculum for", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "the agents. We test different opponent sampling strategies by considering a threshold on the oldest", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "score": 1.0, + "content": "opponent for each agent. That is, instead of uniform random over the entire history, we can consider", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 210, + 700 + ], + "score": 1.0, + "content": "sampling opponent from", + "type": "text" + }, + { + "bbox": [ + 211, + 687, + 275, + 699 + ], + "score": 0.75, + "content": "\\mathrm { U n i f o r m } ( \\delta v , v )", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 687, + 305, + 700 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 306, + 690, + 312, + 698 + ], + "score": 0.73, + "content": "v", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "is the iteration number for the latest available", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 238, + 712 + ], + "score": 1.0, + "content": "parameters of the opponent and", + "type": "text" + }, + { + "bbox": [ + 238, + 699, + 278, + 711 + ], + "score": 0.91, + "content": "\\delta \\in [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 698, + 367, + 712 + ], + "score": 1.0, + "content": "is a threshold. Thus,", + "type": "text" + }, + { + "bbox": [ + 368, + 699, + 402, + 709 + ], + "score": 0.89, + "content": "\\delta = 1 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "corresponds to the latest", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 202, + 722 + ], + "score": 1.0, + "content": "available opponent and", + "type": "text" + }, + { + "bbox": [ + 202, + 710, + 236, + 720 + ], + "score": 0.91, + "content": "\\delta = 0 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "corresponds to uniform sampling over the entire history. We train", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 720, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 290, + 734 + ], + "score": 1.0, + "content": "agents on the Sumo task via self-play, using a", + "type": "text" + }, + { + "bbox": [ + 290, + 720, + 382, + 732 + ], + "score": 0.92, + "content": "\\delta \\in \\{ 1 . 0 , 0 . 8 , \\bar { 0 . 5 } , \\bar { 0 . 0 } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 720, + 506, + 734 + ], + "score": 1.0, + "content": "and pit the four agents against", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 43.5 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 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, + 80, + 497, + 176 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 80, + 497, + 176 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 80, + 497, + 176 + ], + "spans": [ + { + "bbox": [ + 110, + 80, + 497, + 176 + ], + "score": 0.969, + "type": "image", + "image_path": "b945f11d066fc08722a430402c33d364604cc71ecf37dc98786df3ca4e0addcf.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 110, + 80, + 497, + 112.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 110, + 112.0, + 497, + 144.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 110, + 144.0, + 497, + 176.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 185, + 505, + 230 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 185, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 106, + 185, + 505, + 198 + ], + "score": 1.0, + "content": "Figure 3: Effect for exploration curriculum: win-rate of agents trained by annealing the exploration", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 196, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 104, + 196, + 505, + 209 + ], + "score": 1.0, + "content": "reward against agents which constantly receive the dense exploration reward. The agents which op-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 207, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 207, + 505, + 221 + ], + "score": 1.0, + "content": "timized for the sparse competition reward benefit from the natural curriculum of multi-agent training", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 218, + 264, + 231 + ], + "spans": [ + { + "bbox": [ + 106, + 218, + 264, + 231 + ], + "score": 1.0, + "content": "and defeat the other agent by a margin.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "table", + "bbox": [ + 327, + 240, + 502, + 300 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 327, + 240, + 502, + 300 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 327, + 240, + 502, + 300 + ], + "spans": [ + { + "bbox": [ + 327, + 240, + 502, + 300 + ], + "score": 0.247, + "html": "
8 1.0 0.8 0.51.0 - 0.36 0.360.8 0.37 1 0.390.5 0.35 0.38 10.0 0.29 0.33 0.33E[Win] 0.34 0.36 0.36
0.0 E[Loss]0.51 0.410.49 0.420.49 0.41- 0.320.50 1
", + "type": "table", + "image_path": "069c1227b382b2ce30262126022418f6704cfd94e0ce61369066d86c4670c2a2.jpg" + } + ] + } + ], + "index": 11.0, + "virtual_lines": [ + { + "bbox": [ + 327, + 240, + 502, + 255.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 327, + 255.0, + 502, + 270.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 327, + 270.0, + 502, + 285.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 327, + 285.0, + 502, + 300.0 + ], + "spans": [], + "index": 14 + } + ] + } + ], + "index": 11.0 + }, + { + "type": "table", + "bbox": [ + 110, + 240, + 285, + 300 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 110, + 240, + 285, + 300 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 240, + 285, + 300 + ], + "spans": [ + { + "bbox": [ + 110, + 240, + 285, + 300 + ], + "score": 0.434, + "html": "
81.00.80.50.0E[Win]
1.010.260.130.370.25
0.80.50.4610.220.520.400.630.35
0.590.5810.73
0.00.550.360.16-
E[Loss]0.530.400.170.541
", + "type": "table", + "image_path": "feb7f23a62523fe691a6ec555233a99c1dae552f0e8ed0d3a946c4e8fadbd1ee.jpg" + } + ] + } + ], + "index": 10.0, + "virtual_lines": [ + { + "bbox": [ + 110, + 240, + 285, + 255.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 110, + 255.0, + 285, + 270.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 110, + 270.0, + 285, + 285.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 110, + 285.0, + 285, + 300.0 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 107, + 323, + 505, + 356 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 322, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 278, + 336 + ], + "score": 1.0, + "content": "Table 1: The effect of opponent sampling.", + "type": "text" + }, + { + "bbox": [ + 278, + 323, + 311, + 335 + ], + "score": 0.36, + "content": "\\mathbb { E } [ \\mathrm { L o s s } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 322, + 329, + 336 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 329, + 323, + 361, + 335 + ], + "score": 0.7, + "content": "\\mathbb { E } [ \\mathrm { W i n } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 322, + 505, + 336 + ], + "score": 1.0, + "content": "are the expected loss and win-rates", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 334, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 334, + 253, + 347 + ], + "score": 1.0, + "content": "for agents trained with a particular", + "type": "text" + }, + { + "bbox": [ + 254, + 335, + 260, + 344 + ], + "score": 0.69, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 334, + 410, + 347 + ], + "score": 1.0, + "content": "as described in 5.4. For humanoid", + "type": "text" + }, + { + "bbox": [ + 410, + 334, + 447, + 345 + ], + "score": 0.9, + "content": "\\delta \\ : = \\ : 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 334, + 505, + 347 + ], + "score": 1.0, + "content": "gives highest", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 345, + 339, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 274, + 357 + ], + "score": 1.0, + "content": "win-rate and lowest loss, whereas for Ant", + "type": "text" + }, + { + "bbox": [ + 275, + 345, + 299, + 356 + ], + "score": 0.9, + "content": "\\delta = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 345, + 339, + 357 + ], + "score": 1.0, + "content": "was best.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + } + ], + "index": 13.0 + }, + { + "type": "text", + "bbox": [ + 106, + 379, + 505, + 609 + ], + "lines": [], + "index": 28, + "bbox_fs": [ + 105, + 379, + 506, + 610 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 623, + 275, + 634 + ], + "lines": [ + { + "bbox": [ + 106, + 623, + 277, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 277, + 636 + ], + "score": 1.0, + "content": "5.4 EFFECT OF OPPONENT SAMPLING", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 644, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 643, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 506, + 657 + ], + "score": 1.0, + "content": "In section 4.2, we introduced the past opponent sampling method for training competitive agents", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 655, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 668 + ], + "score": 1.0, + "content": "simultaneously. This choice of opponent could be important as it affects the natural curriculum for", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "the agents. We test different opponent sampling strategies by considering a threshold on the oldest", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "score": 1.0, + "content": "opponent for each agent. That is, instead of uniform random over the entire history, we can consider", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 210, + 700 + ], + "score": 1.0, + "content": "sampling opponent from", + "type": "text" + }, + { + "bbox": [ + 211, + 687, + 275, + 699 + ], + "score": 0.75, + "content": "\\mathrm { U n i f o r m } ( \\delta v , v )", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 687, + 305, + 700 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 306, + 690, + 312, + 698 + ], + "score": 0.73, + "content": "v", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "is the iteration number for the latest available", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 238, + 712 + ], + "score": 1.0, + "content": "parameters of the opponent and", + "type": "text" + }, + { + "bbox": [ + 238, + 699, + 278, + 711 + ], + "score": 0.91, + "content": "\\delta \\in [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 698, + 367, + 712 + ], + "score": 1.0, + "content": "is a threshold. Thus,", + "type": "text" + }, + { + "bbox": [ + 368, + 699, + 402, + 709 + ], + "score": 0.89, + "content": "\\delta = 1 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "corresponds to the latest", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 202, + 722 + ], + "score": 1.0, + "content": "available opponent and", + "type": "text" + }, + { + "bbox": [ + 202, + 710, + 236, + 720 + ], + "score": 0.91, + "content": "\\delta = 0 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "corresponds to uniform sampling over the entire history. We train", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 720, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 290, + 734 + ], + "score": 1.0, + "content": "agents on the Sumo task via self-play, using a", + "type": "text" + }, + { + "bbox": [ + 290, + 720, + 382, + 732 + ], + "score": 0.92, + "content": "\\delta \\in \\{ 1 . 0 , 0 . 8 , \\bar { 0 . 5 } , \\bar { 0 . 0 } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 720, + 506, + 734 + ], + "score": 1.0, + "content": "and pit the four agents against", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "each other to understand which sampling strategy leads to more robust policies. Since the agents", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 108 + ], + "score": 1.0, + "content": "have different skills and strengths at various points during training, we compute a Monte Carlo", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "estimate of the expected win-rate for two agents that have seen the same number of samples taken at a", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 116, + 504, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 504, + 127 + ], + "score": 1.0, + "content": "random point during training. This is done by taking average of the win-rates of 30 agents at intervals", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 125, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 506, + 140 + ], + "score": 1.0, + "content": "of 100 iterations after a burn-in of 3000 iterations, where each win-rate is computed from an average", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 136, + 506, + 151 + ], + "spans": [ + { + "bbox": [ + 104, + 136, + 506, + 151 + ], + "score": 1.0, + "content": "over 800 episodes. Table 1a reports the results for Humanoid and Table 1b reports the results for", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 147, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 505, + 162 + ], + "score": 1.0, + "content": "Ant. First note that training against the latest opponent leads to worst performance, as argued earlier.", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 292, + 172 + ], + "score": 1.0, + "content": "Surprisingly, we found that uniform random", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 292, + 159, + 328, + 170 + ], + "score": 0.86, + "content": "\\delta = 0 . 0", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 328, + 159, + 506, + 172 + ], + "score": 1.0, + "content": ") over the entire history to have the highest", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 171, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 194, + 182 + ], + "score": 1.0, + "content": "win-rate for Ant and", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 194, + 171, + 229, + 181 + ], + "score": 0.9, + "content": "\\delta = 0 . 5", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 229, + 171, + 505, + 182 + ], + "score": 1.0, + "content": "to have the highest win-rate for Humanoid. This could be because", + "type": "text", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 181, + 504, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 504, + 194 + ], + "score": 1.0, + "content": "Ant with random policy on a small arena is still a good opponent while a Humanoid with random", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 191, + 506, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 506, + 205 + ], + "score": 1.0, + "content": "policy is unable to stand and thus always looses in a few steps. The differences in these win-rates", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 202, + 506, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 506, + 216 + ], + "score": 1.0, + "content": "for different sampling strategies show that the choice of the opponent during sampling is important", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 213, + 488, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 488, + 227 + ], + "score": 1.0, + "content": "and care must be taken while designing training algorithms for such competitive environments.", + "type": "text", + "cross_page": true + } + ], + "index": 12 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 643, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 83, + 505, + 225 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "each other to understand which sampling strategy leads to more robust policies. Since the agents", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 108 + ], + "score": 1.0, + "content": "have different skills and strengths at various points during training, we compute a Monte Carlo", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "estimate of the expected win-rate for two agents that have seen the same number of samples taken at a", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 116, + 504, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 504, + 127 + ], + "score": 1.0, + "content": "random point during training. This is done by taking average of the win-rates of 30 agents at intervals", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 125, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 506, + 140 + ], + "score": 1.0, + "content": "of 100 iterations after a burn-in of 3000 iterations, where each win-rate is computed from an average", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 136, + 506, + 151 + ], + "spans": [ + { + "bbox": [ + 104, + 136, + 506, + 151 + ], + "score": 1.0, + "content": "over 800 episodes. Table 1a reports the results for Humanoid and Table 1b reports the results for", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 147, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 505, + 162 + ], + "score": 1.0, + "content": "Ant. First note that training against the latest opponent leads to worst performance, as argued earlier.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 292, + 172 + ], + "score": 1.0, + "content": "Surprisingly, we found that uniform random", + "type": "text" + }, + { + "bbox": [ + 292, + 159, + 328, + 170 + ], + "score": 0.86, + "content": "\\delta = 0 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 159, + 506, + 172 + ], + "score": 1.0, + "content": ") over the entire history to have the highest", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 171, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 194, + 182 + ], + "score": 1.0, + "content": "win-rate for Ant and", + "type": "text" + }, + { + "bbox": [ + 194, + 171, + 229, + 181 + ], + "score": 0.9, + "content": "\\delta = 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 171, + 505, + 182 + ], + "score": 1.0, + "content": "to have the highest win-rate for Humanoid. This could be because", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 181, + 504, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 504, + 194 + ], + "score": 1.0, + "content": "Ant with random policy on a small arena is still a good opponent while a Humanoid with random", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 191, + 506, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 506, + 205 + ], + "score": 1.0, + "content": "policy is unable to stand and thus always looses in a few steps. The differences in these win-rates", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 202, + 506, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 506, + 216 + ], + "score": 1.0, + "content": "for different sampling strategies show that the choice of the opponent during sampling is important", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 213, + 488, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 488, + 227 + ], + "score": 1.0, + "content": "and care must be taken while designing training algorithms for such competitive environments.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 6 + }, + { + "type": "title", + "bbox": [ + 108, + 241, + 257, + 252 + ], + "lines": [ + { + "bbox": [ + 105, + 239, + 259, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 259, + 254 + ], + "score": 1.0, + "content": "5.5 LEARNING ROBUST POLICIES", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 262, + 504, + 306 + ], + "lines": [ + { + "bbox": [ + 105, + 262, + 506, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 506, + 275 + ], + "score": 1.0, + "content": "Over-fitting to a particular dataset is often a problem in supervised learning. Similar problems can", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 273, + 506, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 506, + 285 + ], + "score": 1.0, + "content": "arise in reinforcement learning setups when there is no or little variation in the environment. We", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 283, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 283, + 506, + 298 + ], + "score": 1.0, + "content": "discovered two such problems in our competitive multi-agent training framework and we analyze", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 295, + 290, + 307 + ], + "spans": [ + { + "bbox": [ + 106, + 295, + 290, + 307 + ], + "score": 1.0, + "content": "and propose solutions to address these issues.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5 + }, + { + "type": "title", + "bbox": [ + 108, + 320, + 262, + 331 + ], + "lines": [ + { + "bbox": [ + 106, + 320, + 263, + 333 + ], + "spans": [ + { + "bbox": [ + 106, + 320, + 263, + 333 + ], + "score": 1.0, + "content": "5.5.1 RANDOMIZATION IN WORLD", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 340, + 505, + 461 + ], + "lines": [ + { + "bbox": [ + 105, + 340, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 505, + 353 + ], + "score": 1.0, + "content": "In order to learn robust policies which generalize better we can introduce randomness in the environ-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 351, + 504, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 504, + 363 + ], + "score": 1.0, + "content": "ment, for example the arena radius for the sumo environment can be randomized, the ball position", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 362, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 505, + 375 + ], + "score": 1.0, + "content": "for the kick-and-defend environment can be randomized, agent start positions can be randomized.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 373, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 505, + 386 + ], + "score": 1.0, + "content": "However, we found that while randomization is crucial to learn policies which generalize better, it", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 384, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 505, + 397 + ], + "score": 1.0, + "content": "might hinder learning early on as there might be too many things for the agents to explore. Indeed,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 395, + 506, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 506, + 408 + ], + "score": 1.0, + "content": "we observe that in kick-and-defend the agents are unable to learn to kick with a lot of randomization", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 406, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 505, + 419 + ], + "score": 1.0, + "content": "in both the ball and agent positions, whereas when trained with no randomization the learned poli-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 417, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 506, + 429 + ], + "score": 1.0, + "content": "cies are overfit to the particular position of the ball (see Fig. 4). Thus, in order to learn policies that", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 428, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 440 + ], + "score": 1.0, + "content": "generalize well, we introduce a simple curriculum in the randomization where we start with a small", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 440, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 106, + 440, + 505, + 451 + ], + "score": 1.0, + "content": "amount of randomization which is easier to solve and then gradually increase the randomization", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 451, + 428, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 428, + 462 + ], + "score": 1.0, + "content": "during training. We found this curriculum to work well for all the environments.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 24 + }, + { + "type": "title", + "bbox": [ + 107, + 476, + 336, + 487 + ], + "lines": [ + { + "bbox": [ + 106, + 475, + 338, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 338, + 488 + ], + "score": 1.0, + "content": "5.5.2 COMPETING AGAINST ENSEMBLE OF POLICIES", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 495, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 105, + 495, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 505, + 508 + ], + "score": 1.0, + "content": "Another related problem that we observed is over-fitting to the behavior of the opponent when", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 506, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 505, + 519 + ], + "score": 1.0, + "content": "trained for very long. This results in policies which are good against particular types of opponents", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 518, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 505, + 530 + ], + "score": 1.0, + "content": "but do not generalize to other opponents (say opponents trained with a different random seed). This", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "overfitting can also be observed in win-rates against opponent during training, where one would", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 539, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 506, + 552 + ], + "score": 1.0, + "content": "see oscillations as agents try to adapt to their particular opponent and changes in their strategies.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "score": 1.0, + "content": "To overcome this we propose learning multiple policies simultaneously. Thus, there is a pool of", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "policies and in each rollout for a particular policy one of the other policies is selected at random", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 573, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 505, + 584 + ], + "score": 1.0, + "content": "as the opponent (in symmetric games, the same policy can also be an opponent). This is similar", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 583, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 506, + 596 + ], + "score": 1.0, + "content": "to multi-task learning (Caruana, 1998) where the same network is used to model multiple related", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 592, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 506, + 608 + ], + "score": 1.0, + "content": "tasks which allows sharing of statistical strength among tasks and reduces overfitting. In this case,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 604, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 506, + 618 + ], + "score": 1.0, + "content": "the pool of all policies as opponents – current and throughout the history of training – creates a", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 617, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 505, + 628 + ], + "score": 1.0, + "content": "natural distribution over related tasks for multi-task learning. We found random policy initialization", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 104, + 626, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 104, + 626, + 506, + 641 + ], + "score": 1.0, + "content": "to provide enough diversity between agent policies, however techniques that explicitly encourage", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 638, + 407, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 407, + 651 + ], + "score": 1.0, + "content": "diversity (Liu & Wang, 2016) can potentially be incorporated in the future.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 655, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 667 + ], + "score": 1.0, + "content": "In order to test the robustness of training policies in an ensemble, we experiment on the Sumo", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "environment with Ant and Humanoid bodies. We train a pool of three policies in an ensemble and", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "score": 1.0, + "content": "take the policy with the highest average training reward in the last 500 iterations as the best ensemble", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "policy. We also train three independent policies via self-play, that is just a single policy is trained", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "in a run, and again take the policy with the highest average training reward in last 500 iterations", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "as the best self-play policy. Then we pit the best ensemble policy against the best self-play policy", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 721, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 734 + ], + "score": 1.0, + "content": "and record average win-rates over 800 games. Fig. 5 shows the win-rates over training iterations", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 48 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 83, + 505, + 225 + ], + "lines": [], + "index": 6, + "bbox_fs": [ + 104, + 82, + 506, + 227 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 241, + 257, + 252 + ], + "lines": [ + { + "bbox": [ + 105, + 239, + 259, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 259, + 254 + ], + "score": 1.0, + "content": "5.5 LEARNING ROBUST POLICIES", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 262, + 504, + 306 + ], + "lines": [ + { + "bbox": [ + 105, + 262, + 506, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 506, + 275 + ], + "score": 1.0, + "content": "Over-fitting to a particular dataset is often a problem in supervised learning. Similar problems can", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 273, + 506, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 506, + 285 + ], + "score": 1.0, + "content": "arise in reinforcement learning setups when there is no or little variation in the environment. We", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 283, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 283, + 506, + 298 + ], + "score": 1.0, + "content": "discovered two such problems in our competitive multi-agent training framework and we analyze", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 295, + 290, + 307 + ], + "spans": [ + { + "bbox": [ + 106, + 295, + 290, + 307 + ], + "score": 1.0, + "content": "and propose solutions to address these issues.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 262, + 506, + 307 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 320, + 262, + 331 + ], + "lines": [ + { + "bbox": [ + 106, + 320, + 263, + 333 + ], + "spans": [ + { + "bbox": [ + 106, + 320, + 263, + 333 + ], + "score": 1.0, + "content": "5.5.1 RANDOMIZATION IN WORLD", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 340, + 505, + 461 + ], + "lines": [ + { + "bbox": [ + 105, + 340, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 505, + 353 + ], + "score": 1.0, + "content": "In order to learn robust policies which generalize better we can introduce randomness in the environ-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 351, + 504, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 504, + 363 + ], + "score": 1.0, + "content": "ment, for example the arena radius for the sumo environment can be randomized, the ball position", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 362, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 505, + 375 + ], + "score": 1.0, + "content": "for the kick-and-defend environment can be randomized, agent start positions can be randomized.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 373, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 505, + 386 + ], + "score": 1.0, + "content": "However, we found that while randomization is crucial to learn policies which generalize better, it", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 384, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 505, + 397 + ], + "score": 1.0, + "content": "might hinder learning early on as there might be too many things for the agents to explore. Indeed,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 395, + 506, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 506, + 408 + ], + "score": 1.0, + "content": "we observe that in kick-and-defend the agents are unable to learn to kick with a lot of randomization", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 406, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 505, + 419 + ], + "score": 1.0, + "content": "in both the ball and agent positions, whereas when trained with no randomization the learned poli-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 417, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 506, + 429 + ], + "score": 1.0, + "content": "cies are overfit to the particular position of the ball (see Fig. 4). Thus, in order to learn policies that", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 428, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 440 + ], + "score": 1.0, + "content": "generalize well, we introduce a simple curriculum in the randomization where we start with a small", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 440, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 106, + 440, + 505, + 451 + ], + "score": 1.0, + "content": "amount of randomization which is easier to solve and then gradually increase the randomization", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 451, + 428, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 428, + 462 + ], + "score": 1.0, + "content": "during training. We found this curriculum to work well for all the environments.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 340, + 506, + 462 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 476, + 336, + 487 + ], + "lines": [ + { + "bbox": [ + 106, + 475, + 338, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 338, + 488 + ], + "score": 1.0, + "content": "5.5.2 COMPETING AGAINST ENSEMBLE OF POLICIES", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 495, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 105, + 495, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 505, + 508 + ], + "score": 1.0, + "content": "Another related problem that we observed is over-fitting to the behavior of the opponent when", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 506, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 505, + 519 + ], + "score": 1.0, + "content": "trained for very long. This results in policies which are good against particular types of opponents", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 518, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 505, + 530 + ], + "score": 1.0, + "content": "but do not generalize to other opponents (say opponents trained with a different random seed). This", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "overfitting can also be observed in win-rates against opponent during training, where one would", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 539, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 506, + 552 + ], + "score": 1.0, + "content": "see oscillations as agents try to adapt to their particular opponent and changes in their strategies.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "score": 1.0, + "content": "To overcome this we propose learning multiple policies simultaneously. Thus, there is a pool of", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "policies and in each rollout for a particular policy one of the other policies is selected at random", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 573, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 505, + 584 + ], + "score": 1.0, + "content": "as the opponent (in symmetric games, the same policy can also be an opponent). This is similar", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 583, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 506, + 596 + ], + "score": 1.0, + "content": "to multi-task learning (Caruana, 1998) where the same network is used to model multiple related", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 592, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 506, + 608 + ], + "score": 1.0, + "content": "tasks which allows sharing of statistical strength among tasks and reduces overfitting. In this case,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 604, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 506, + 618 + ], + "score": 1.0, + "content": "the pool of all policies as opponents – current and throughout the history of training – creates a", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 617, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 505, + 628 + ], + "score": 1.0, + "content": "natural distribution over related tasks for multi-task learning. We found random policy initialization", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 104, + 626, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 104, + 626, + 506, + 641 + ], + "score": 1.0, + "content": "to provide enough diversity between agent policies, however techniques that explicitly encourage", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 638, + 407, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 407, + 651 + ], + "score": 1.0, + "content": "diversity (Liu & Wang, 2016) can potentially be incorporated in the future.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 37.5, + "bbox_fs": [ + 104, + 495, + 506, + 651 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 655, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 667 + ], + "score": 1.0, + "content": "In order to test the robustness of training policies in an ensemble, we experiment on the Sumo", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "environment with Ant and Humanoid bodies. We train a pool of three policies in an ensemble and", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "score": 1.0, + "content": "take the policy with the highest average training reward in the last 500 iterations as the best ensemble", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "policy. We also train three independent policies via self-play, that is just a single policy is trained", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "in a run, and again take the policy with the highest average training reward in last 500 iterations", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "as the best self-play policy. Then we pit the best ensemble policy against the best self-play policy", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 721, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 734 + ], + "score": 1.0, + "content": "and record average win-rates over 800 games. Fig. 5 shows the win-rates over training iterations", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 106, + 226, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 506, + 239 + ], + "score": 1.0, + "content": "(after 1000 iterations of training). We find that training in ensemble performs significantly better", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 237, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 505, + 250 + ], + "score": 1.0, + "content": "for the humanoid body, whereas for ant the performance is similar to training a single policy. Again", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 248, + 506, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 506, + 261 + ], + "score": 1.0, + "content": "we suspect this is because there is not enough variability in the behavior of ant across different", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 259, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 505, + 271 + ], + "score": 1.0, + "content": "runs. While training single policies might occasionally get stuck in a local minima and learn sub-", + "type": "text", + "cross_page": true + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 269, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 505, + 282 + ], + "score": 1.0, + "content": "optimal behaviors, we found that when training in an ensemble to be more robust to such minima.", + "type": "text", + "cross_page": true + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 282, + 475, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 475, + 293 + ], + "score": 1.0, + "content": "Qualitatively, we see more robust behavior of the humanoid trained in ensemble (see video).", + "type": "text", + "cross_page": true + } + ], + "index": 15 + } + ], + "index": 48, + "bbox_fs": [ + 105, + 655, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 90, + 212, + 164 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 90, + 212, + 164 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 90, + 212, + 164 + ], + "spans": [ + { + "bbox": [ + 108, + 90, + 212, + 164 + ], + "score": 0.949, + "type": "image", + "image_path": "152bfacb47e873bf346837e201498b80a5c6447de979e7d7bfc9455e1f8b8c6a.jpg" + } + ] + } + ], + "index": 1.5, + "virtual_lines": [ + { + "bbox": [ + 108, + 90, + 212, + 127.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 127.0, + 212, + 164.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 173, + 216, + 206 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 172, + 217, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 217, + 185 + ], + "score": 1.0, + "content": "Figure 4: Win-rate of", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 183, + 216, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 216, + 195 + ], + "score": 1.0, + "content": "kicker vs iterations with", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 194, + 183, + 206 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 183, + 206 + ], + "score": 1.0, + "content": "full randomization", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7 + } + ], + "index": 4.25 + }, + { + "type": "image", + "bbox": [ + 227, + 91, + 502, + 164 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 227, + 91, + 502, + 164 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 227, + 91, + 502, + 164 + ], + "spans": [ + { + "bbox": [ + 227, + 91, + 502, + 164 + ], + "score": 0.967, + "type": "image", + "image_path": "f5e400e02f6c6d1d2a0808d79e102f4c6f33d5a9225e9a4aafd4f4d34c22885b.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 227, + 91, + 502, + 115.33333333333333 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 227, + 115.33333333333333, + 502, + 139.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 227, + 139.66666666666666, + 502, + 164.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 225, + 173, + 504, + 196 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 225, + 173, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 225, + 173, + 265, + 185 + ], + "score": 1.0, + "content": "Figure 5:", + "type": "text" + }, + { + "bbox": [ + 265, + 174, + 275, + 183 + ], + "score": 0.64, + "content": "\\%", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 173, + 505, + 185 + ], + "score": 1.0, + "content": "Win-rate of agents trained in ensemble vs agents trained", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 225, + 183, + 505, + 197 + ], + "spans": [ + { + "bbox": [ + 225, + 183, + 505, + 197 + ], + "score": 1.0, + "content": "with just a single policy. Humanoid Sumo (left) and Ant Sumo (right).", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.0 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 107, + 226, + 505, + 293 + ], + "lines": [ + { + "bbox": [ + 106, + 226, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 506, + 239 + ], + "score": 1.0, + "content": "(after 1000 iterations of training). We find that training in ensemble performs significantly better", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 237, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 505, + 250 + ], + "score": 1.0, + "content": "for the humanoid body, whereas for ant the performance is similar to training a single policy. Again", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 248, + 506, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 506, + 261 + ], + "score": 1.0, + "content": "we suspect this is because there is not enough variability in the behavior of ant across different", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 259, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 505, + 271 + ], + "score": 1.0, + "content": "runs. While training single policies might occasionally get stuck in a local minima and learn sub-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 269, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 505, + 282 + ], + "score": 1.0, + "content": "optimal behaviors, we found that when training in an ensemble to be more robust to such minima.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 282, + 475, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 475, + 293 + ], + "score": 1.0, + "content": "Qualitatively, we see more robust behavior of the humanoid trained in ensemble (see video).", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12.5 + }, + { + "type": "title", + "bbox": [ + 108, + 308, + 195, + 321 + ], + "lines": [ + { + "bbox": [ + 105, + 306, + 197, + 324 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 197, + 324 + ], + "score": 1.0, + "content": "6 CONCLUSION", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 333, + 505, + 399 + ], + "lines": [ + { + "bbox": [ + 106, + 333, + 505, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 505, + 344 + ], + "score": 1.0, + "content": "We have presented several new competitive multi-agent 3D physically simulated environments. We", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 343, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 505, + 356 + ], + "score": 1.0, + "content": "demonstrate the development of highly complex skills in simple environments with simple rewards.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 354, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 505, + 367 + ], + "score": 1.0, + "content": "In future work, it would be interesting to conduct larger scale experiments in more complex en-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 366, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 505, + 378 + ], + "score": 1.0, + "content": "vironments that encourage agents to both compete and cooperate with each other. Incorporation of", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 376, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 106, + 376, + 505, + 389 + ], + "score": 1.0, + "content": "additional skills, such as reasoning about other agents, potentially via techniques from Foerster et al.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 387, + 291, + 401 + ], + "spans": [ + { + "bbox": [ + 106, + 387, + 291, + 401 + ], + "score": 1.0, + "content": "(2017a), may also be important in our setting.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19.5 + }, + { + "type": "title", + "bbox": [ + 107, + 416, + 175, + 427 + ], + "lines": [ + { + "bbox": [ + 106, + 415, + 176, + 429 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 176, + 429 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 105, + 433, + 506, + 733 + ], + "lines": [ + { + "bbox": [ + 105, + 434, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 505, + 446 + ], + "score": 1.0, + "content": "Marcin Andrychowicz, Filip Wolski, Alex Ray, Jonas Schneider, Rachel Fong, Peter Welinder, Bob", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 445, + 505, + 458 + ], + "spans": [ + { + "bbox": [ + 115, + 445, + 505, + 458 + ], + "score": 1.0, + "content": "McGrew, Josh Tobin, Pieter Abbeel, and Wojciech Zaremba. Hindsight experience replay. arXiv", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 114, + 456, + 254, + 468 + ], + "spans": [ + { + "bbox": [ + 114, + 456, + 254, + 468 + ], + "score": 1.0, + "content": "preprint arXiv:1707.01495, 2017.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 473, + 504, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 504, + 487 + ], + "score": 1.0, + "content": "Lucian Busoniu, Robert Babuska, and Bart De Schutter. A comprehensive survey of multiagent rein-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 485, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 115, + 485, + 505, + 498 + ], + "score": 1.0, + "content": "forcement learning. IEEE Transactions on Systems, Man, And Cybernetics-Part C: Applications", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 496, + 250, + 508 + ], + "spans": [ + { + "bbox": [ + 116, + 496, + 250, + 508 + ], + "score": 1.0, + "content": "and Reviews, 38 (2), 2008, 2008.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 513, + 446, + 526 + ], + "spans": [ + { + "bbox": [ + 106, + 513, + 446, + 526 + ], + "score": 1.0, + "content": "Rich Caruana. Multitask learning. In Learning to learn, pp. 95–133. Springer, 1998.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 530, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 530, + 505, + 546 + ], + "score": 1.0, + "content": "Yan Duan, Xi Chen, Rein Houthooft, John Schulman, and Pieter Abbeel. Benchmarking deep", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 114, + 542, + 505, + 557 + ], + "spans": [ + { + "bbox": [ + 114, + 542, + 505, + 557 + ], + "score": 1.0, + "content": "reinforcement learning for continuous control. In International Conference on Machine Learning,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 114, + 554, + 207, + 566 + ], + "spans": [ + { + "bbox": [ + 114, + 554, + 207, + 566 + ], + "score": 1.0, + "content": "pp. 1329–1338, 2016.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "score": 1.0, + "content": "Jakob Foerster, Richard Chen, Maruan Al-Shedivat, Shimon Whiteson, Pieter Abbeel, and Igor", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 583, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 116, + 583, + 505, + 596 + ], + "score": 1.0, + "content": "Mordatch. Learning with opponent-learning awareness. arXiv preprint arXiv:1709.04326, 2017a.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 601, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 505, + 614 + ], + "score": 1.0, + "content": "Jakob Foerster, Gregory Farquhar, Triantafyllos Afouras, Nantas Nardelli, and Shimon Whiteson.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 612, + 463, + 624 + ], + "spans": [ + { + "bbox": [ + 115, + 612, + 463, + 624 + ], + "score": 1.0, + "content": "Counterfactual multi-agent policy gradients. arXiv preprint arXiv:1705.08926, 2017b.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 629, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 104, + 629, + 505, + 644 + ], + "score": 1.0, + "content": "Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 640, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 116, + 640, + 505, + 654 + ], + "score": 1.0, + "content": "Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In Advances in neural infor-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 652, + 317, + 665 + ], + "spans": [ + { + "bbox": [ + 115, + 652, + 317, + 665 + ], + "score": 1.0, + "content": "mation processing systems, pp. 2672–2680, 2014.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 669, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 505, + 684 + ], + "score": 1.0, + "content": "He He, Jordan Boyd-Graber, Kevin Kwok, and Hal Daume III. Opponent modeling in deep rein- ´", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 680, + 493, + 694 + ], + "spans": [ + { + "bbox": [ + 115, + 680, + 493, + 694 + ], + "score": 1.0, + "content": "forcement learning. In International Conference on Machine Learning, pp. 1804–1813, 2016.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 698, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 713 + ], + "score": 1.0, + "content": "Nicolas Heess, Srinivasan Sriram, Jay Lemmon, Josh Merel, Greg Wayne, Yuval Tassa, Tom Erez,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 116, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "Ziyu Wang, Ali Eslami, Martin Riedmiller, et al. Emergence of locomotion behaviours in rich", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 116, + 721, + 339, + 733 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 339, + 733 + ], + "score": 1.0, + "content": "environments. arXiv preprint arXiv:1707.02286, 2017.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 34.5 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 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": [ + 108, + 90, + 212, + 164 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 90, + 212, + 164 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 90, + 212, + 164 + ], + "spans": [ + { + "bbox": [ + 108, + 90, + 212, + 164 + ], + "score": 0.949, + "type": "image", + "image_path": "152bfacb47e873bf346837e201498b80a5c6447de979e7d7bfc9455e1f8b8c6a.jpg" + } + ] + } + ], + "index": 1.5, + "virtual_lines": [ + { + "bbox": [ + 108, + 90, + 212, + 127.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 127.0, + 212, + 164.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 173, + 216, + 206 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 172, + 217, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 217, + 185 + ], + "score": 1.0, + "content": "Figure 4: Win-rate of", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 183, + 216, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 216, + 195 + ], + "score": 1.0, + "content": "kicker vs iterations with", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 194, + 183, + 206 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 183, + 206 + ], + "score": 1.0, + "content": "full randomization", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7 + } + ], + "index": 4.25 + }, + { + "type": "image", + "bbox": [ + 227, + 91, + 502, + 164 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 227, + 91, + 502, + 164 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 227, + 91, + 502, + 164 + ], + "spans": [ + { + "bbox": [ + 227, + 91, + 502, + 164 + ], + "score": 0.967, + "type": "image", + "image_path": "f5e400e02f6c6d1d2a0808d79e102f4c6f33d5a9225e9a4aafd4f4d34c22885b.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 227, + 91, + 502, + 115.33333333333333 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 227, + 115.33333333333333, + 502, + 139.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 227, + 139.66666666666666, + 502, + 164.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 225, + 173, + 504, + 196 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 225, + 173, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 225, + 173, + 265, + 185 + ], + "score": 1.0, + "content": "Figure 5:", + "type": "text" + }, + { + "bbox": [ + 265, + 174, + 275, + 183 + ], + "score": 0.64, + "content": "\\%", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 173, + 505, + 185 + ], + "score": 1.0, + "content": "Win-rate of agents trained in ensemble vs agents trained", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 225, + 183, + 505, + 197 + ], + "spans": [ + { + "bbox": [ + 225, + 183, + 505, + 197 + ], + "score": 1.0, + "content": "with just a single policy. Humanoid Sumo (left) and Ant Sumo (right).", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.0 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 107, + 226, + 505, + 293 + ], + "lines": [], + "index": 12.5, + "bbox_fs": [ + 105, + 226, + 506, + 293 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 308, + 195, + 321 + ], + "lines": [ + { + "bbox": [ + 105, + 306, + 197, + 324 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 197, + 324 + ], + "score": 1.0, + "content": "6 CONCLUSION", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 333, + 505, + 399 + ], + "lines": [ + { + "bbox": [ + 106, + 333, + 505, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 505, + 344 + ], + "score": 1.0, + "content": "We have presented several new competitive multi-agent 3D physically simulated environments. We", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 343, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 505, + 356 + ], + "score": 1.0, + "content": "demonstrate the development of highly complex skills in simple environments with simple rewards.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 354, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 505, + 367 + ], + "score": 1.0, + "content": "In future work, it would be interesting to conduct larger scale experiments in more complex en-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 366, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 505, + 378 + ], + "score": 1.0, + "content": "vironments that encourage agents to both compete and cooperate with each other. Incorporation of", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 376, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 106, + 376, + 505, + 389 + ], + "score": 1.0, + "content": "additional skills, such as reasoning about other agents, potentially via techniques from Foerster et al.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 387, + 291, + 401 + ], + "spans": [ + { + "bbox": [ + 106, + 387, + 291, + 401 + ], + "score": 1.0, + "content": "(2017a), may also be important in our setting.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 333, + 505, + 401 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 416, + 175, + 427 + ], + "lines": [ + { + "bbox": [ + 106, + 415, + 176, + 429 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 176, + 429 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "list", + "bbox": [ + 105, + 433, + 506, + 733 + ], + "lines": [ + { + "bbox": [ + 105, + 434, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 505, + 446 + ], + "score": 1.0, + "content": "Marcin Andrychowicz, Filip Wolski, Alex Ray, Jonas Schneider, Rachel Fong, Peter Welinder, Bob", + "type": "text" + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 445, + 505, + 458 + ], + "spans": [ + { + "bbox": [ + 115, + 445, + 505, + 458 + ], + "score": 1.0, + "content": "McGrew, Josh Tobin, Pieter Abbeel, and Wojciech Zaremba. Hindsight experience replay. arXiv", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 114, + 456, + 254, + 468 + ], + "spans": [ + { + "bbox": [ + 114, + 456, + 254, + 468 + ], + "score": 1.0, + "content": "preprint arXiv:1707.01495, 2017.", + "type": "text" + } + ], + "index": 26, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 473, + 504, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 504, + 487 + ], + "score": 1.0, + "content": "Lucian Busoniu, Robert Babuska, and Bart De Schutter. A comprehensive survey of multiagent rein-", + "type": "text" + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 485, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 115, + 485, + 505, + 498 + ], + "score": 1.0, + "content": "forcement learning. IEEE Transactions on Systems, Man, And Cybernetics-Part C: Applications", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 496, + 250, + 508 + ], + "spans": [ + { + "bbox": [ + 116, + 496, + 250, + 508 + ], + "score": 1.0, + "content": "and Reviews, 38 (2), 2008, 2008.", + "type": "text" + } + ], + "index": 29, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 513, + 446, + 526 + ], + "spans": [ + { + "bbox": [ + 106, + 513, + 446, + 526 + ], + "score": 1.0, + "content": "Rich Caruana. Multitask learning. In Learning to learn, pp. 95–133. Springer, 1998.", + "type": "text" + } + ], + "index": 30, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 530, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 530, + 505, + 546 + ], + "score": 1.0, + "content": "Yan Duan, Xi Chen, Rein Houthooft, John Schulman, and Pieter Abbeel. Benchmarking deep", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 542, + 505, + 557 + ], + "spans": [ + { + "bbox": [ + 114, + 542, + 505, + 557 + ], + "score": 1.0, + "content": "reinforcement learning for continuous control. In International Conference on Machine Learning,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 114, + 554, + 207, + 566 + ], + "spans": [ + { + "bbox": [ + 114, + 554, + 207, + 566 + ], + "score": 1.0, + "content": "pp. 1329–1338, 2016.", + "type": "text" + } + ], + "index": 33, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "score": 1.0, + "content": "Jakob Foerster, Richard Chen, Maruan Al-Shedivat, Shimon Whiteson, Pieter Abbeel, and Igor", + "type": "text" + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 583, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 116, + 583, + 505, + 596 + ], + "score": 1.0, + "content": "Mordatch. Learning with opponent-learning awareness. arXiv preprint arXiv:1709.04326, 2017a.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 601, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 505, + 614 + ], + "score": 1.0, + "content": "Jakob Foerster, Gregory Farquhar, Triantafyllos Afouras, Nantas Nardelli, and Shimon Whiteson.", + "type": "text" + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 612, + 463, + 624 + ], + "spans": [ + { + "bbox": [ + 115, + 612, + 463, + 624 + ], + "score": 1.0, + "content": "Counterfactual multi-agent policy gradients. arXiv preprint arXiv:1705.08926, 2017b.", + "type": "text" + } + ], + "index": 37, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 629, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 104, + 629, + 505, + 644 + ], + "score": 1.0, + "content": "Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair,", + "type": "text" + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 640, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 116, + 640, + 505, + 654 + ], + "score": 1.0, + "content": "Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In Advances in neural infor-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 652, + 317, + 665 + ], + "spans": [ + { + "bbox": [ + 115, + 652, + 317, + 665 + ], + "score": 1.0, + "content": "mation processing systems, pp. 2672–2680, 2014.", + "type": "text" + } + ], + "index": 40, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 669, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 505, + 684 + ], + "score": 1.0, + "content": "He He, Jordan Boyd-Graber, Kevin Kwok, and Hal Daume III. Opponent modeling in deep rein- ´", + "type": "text" + } + ], + "index": 41, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 680, + 493, + 694 + ], + "spans": [ + { + "bbox": [ + 115, + 680, + 493, + 694 + ], + "score": 1.0, + "content": "forcement learning. In International Conference on Machine Learning, pp. 1804–1813, 2016.", + "type": "text" + } + ], + "index": 42, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 698, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 713 + ], + "score": 1.0, + "content": "Nicolas Heess, Srinivasan Sriram, Jay Lemmon, Josh Merel, Greg Wayne, Yuval Tassa, Tom Erez,", + "type": "text" + } + ], + "index": 43, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 116, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "Ziyu Wang, Ali Eslami, Martin Riedmiller, et al. Emergence of locomotion behaviours in rich", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 116, + 721, + 339, + 733 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 339, + 733 + ], + "score": 1.0, + "content": "environments. arXiv preprint arXiv:1707.02286, 2017.", + "type": "text" + } + ], + "index": 45, + "is_list_end_line": true + } + ], + "index": 34.5, + "bbox_fs": [ + 104, + 434, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 82, + 504, + 106 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "Johannes Heinrich and David Silver. Deep reinforcement learning from self-play in imperfect-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 117, + 94, + 359, + 105 + ], + "spans": [ + { + "bbox": [ + 117, + 94, + 359, + 105 + ], + "score": 1.0, + "content": "information games. arXiv preprint arXiv:1603.01121, 2016.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 106, + 111, + 504, + 135 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 506, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 506, + 126 + ], + "score": 1.0, + "content": "Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 122, + 215, + 134 + ], + "spans": [ + { + "bbox": [ + 115, + 122, + 215, + 134 + ], + "score": 1.0, + "content": "arXiv:1412.6980, 2014.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 140, + 504, + 175 + ], + "lines": [ + { + "bbox": [ + 105, + 140, + 505, + 154 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 505, + 154 + ], + "score": 1.0, + "content": "Timothy P Lillicrap, Jonathan J Hunt, Alexander Pritzel, Nicolas Heess, Tom Erez, Yuval Tassa,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 152, + 505, + 165 + ], + "spans": [ + { + "bbox": [ + 115, + 152, + 505, + 165 + ], + "score": 1.0, + "content": "David Silver, and Daan Wierstra. Continuous control with deep reinforcement learning. arXiv", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 164, + 254, + 174 + ], + "spans": [ + { + "bbox": [ + 115, + 164, + 254, + 174 + ], + "score": 1.0, + "content": "preprint arXiv:1509.02971, 2015.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 181, + 504, + 215 + ], + "lines": [ + { + "bbox": [ + 105, + 180, + 506, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 506, + 194 + ], + "score": 1.0, + "content": "Michael L Littman. Markov games as a framework for multi-agent reinforcement learning. In", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 192, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 116, + 192, + 505, + 205 + ], + "score": 1.0, + "content": "Proceedings of the eleventh international conference on machine learning, volume 157, pp. 157–", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 203, + 163, + 216 + ], + "spans": [ + { + "bbox": [ + 116, + 203, + 163, + 216 + ], + "score": 1.0, + "content": "163, 1994.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 221, + 504, + 245 + ], + "lines": [ + { + "bbox": [ + 106, + 221, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 505, + 235 + ], + "score": 1.0, + "content": "Qiang Liu and Dilin Wang. Stein variational gradient descent: A general purpose bayesian inference", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 233, + 476, + 245 + ], + "spans": [ + { + "bbox": [ + 115, + 233, + 476, + 245 + ], + "score": 1.0, + "content": "algorithm. In Advances In Neural Information Processing Systems, pp. 2378–2386, 2016.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 105, + 250, + 503, + 274 + ], + "lines": [ + { + "bbox": [ + 106, + 252, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 106, + 252, + 505, + 263 + ], + "score": 1.0, + "content": "Ryan Lowe, Yi Wu, Aviv Tamar, Jean Harb, Pieter Abbeel, and Igor Mordatch. Multi-agent actor-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 262, + 502, + 275 + ], + "spans": [ + { + "bbox": [ + 115, + 262, + 502, + 275 + ], + "score": 1.0, + "content": "critic for mixed cooperative-competitive environments. arXiv preprint arXiv:1706.02275, 2017.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 108, + 280, + 504, + 314 + ], + "lines": [ + { + "bbox": [ + 105, + 279, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 505, + 293 + ], + "score": 1.0, + "content": "Laetitia Matignon, Guillaume J Laurent, and Nadine Le Fort-Piat. Independent reinforcement learn-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 292, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 116, + 292, + 505, + 304 + ], + "score": 1.0, + "content": "ers in cooperative Markov games: a survey regarding coordination problems. The Knowledge", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 117, + 303, + 276, + 315 + ], + "spans": [ + { + "bbox": [ + 117, + 303, + 276, + 315 + ], + "score": 1.0, + "content": "Engineering Review, 27(1):1–31, 2012.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 108, + 320, + 503, + 355 + ], + "lines": [ + { + "bbox": [ + 106, + 320, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 320, + 505, + 334 + ], + "score": 1.0, + "content": "Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Andrei A Rusu, Joel Veness, Marc G Belle-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 332, + 505, + 344 + ], + "spans": [ + { + "bbox": [ + 115, + 332, + 505, + 344 + ], + "score": 1.0, + "content": "mare, Alex Graves, Martin Riedmiller, Andreas K Fidjeland, Georg Ostrovski, et al. Human-level", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 343, + 441, + 356 + ], + "spans": [ + { + "bbox": [ + 115, + 343, + 441, + 356 + ], + "score": 1.0, + "content": "control through deep reinforcement learning. Nature, 518(7540):529–533, 2015.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 108, + 360, + 503, + 395 + ], + "lines": [ + { + "bbox": [ + 107, + 361, + 504, + 373 + ], + "spans": [ + { + "bbox": [ + 107, + 361, + 504, + 373 + ], + "score": 1.0, + "content": "Volodymyr Mnih, Adria Puigdomenech Badia, Mehdi Mirza, Alex Graves, Timothy Lillicrap, Tim", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 371, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 115, + 371, + 505, + 385 + ], + "score": 1.0, + "content": "Harley, David Silver, and Koray Kavukcuoglu. Asynchronous methods for deep reinforcement", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 383, + 450, + 396 + ], + "spans": [ + { + "bbox": [ + 116, + 383, + 450, + 396 + ], + "score": 1.0, + "content": "learning. In International Conference on Machine Learning, pp. 1928–1937, 2016.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 108, + 400, + 504, + 424 + ], + "lines": [ + { + "bbox": [ + 105, + 399, + 504, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 145, + 413 + ], + "score": 1.0, + "content": "OpenAI.", + "type": "text" + }, + { + "bbox": [ + 168, + 399, + 335, + 414 + ], + "score": 1.0, + "content": "OpenAI Dota 2 1v1 bot, 2017.", + "type": "text" + }, + { + "bbox": [ + 357, + 399, + 504, + 415 + ], + "score": 1.0, + "content": "URL https://openai.com/", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 412, + 230, + 425 + ], + "spans": [ + { + "bbox": [ + 115, + 412, + 230, + 425 + ], + "score": 1.0, + "content": "the-international/.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 105, + 430, + 504, + 453 + ], + "lines": [ + { + "bbox": [ + 105, + 429, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 444 + ], + "score": 1.0, + "content": "Liviu Panait and Sean Luke. Cooperative multi-agent learning: The state of the art. Autonomous", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 442, + 335, + 454 + ], + "spans": [ + { + "bbox": [ + 116, + 442, + 335, + 454 + ], + "score": 1.0, + "content": "agents and multi-agent systems, 11(3):387–434, 2005.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 107, + 459, + 504, + 494 + ], + "lines": [ + { + "bbox": [ + 105, + 459, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 505, + 473 + ], + "score": 1.0, + "content": "Lerrel Pinto, James Davidson, and Abhinav Gupta. Supervision via competition: Robot adversaries", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 114, + 470, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 114, + 470, + 505, + 485 + ], + "score": 1.0, + "content": "for learning tasks. In Robotics and Automation (ICRA), 2017 IEEE International Conference on,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 483, + 234, + 494 + ], + "spans": [ + { + "bbox": [ + 115, + 483, + 234, + 494 + ], + "score": 1.0, + "content": "pp. 1601–1608. IEEE, 2017.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 500, + 504, + 534 + ], + "lines": [ + { + "bbox": [ + 104, + 499, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 104, + 499, + 505, + 513 + ], + "score": 1.0, + "content": "John Schulman, Sergey Levine, Pieter Abbeel, Michael Jordan, and Philipp Moritz. Trust region", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 511, + 506, + 525 + ], + "spans": [ + { + "bbox": [ + 115, + 511, + 506, + 525 + ], + "score": 1.0, + "content": "policy optimization. In Proceedings of the 32nd International Conference on Machine Learning", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 522, + 259, + 534 + ], + "spans": [ + { + "bbox": [ + 115, + 522, + 259, + 534 + ], + "score": 1.0, + "content": "(ICML-15), pp. 1889–1897, 2015a.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 105, + 540, + 504, + 574 + ], + "lines": [ + { + "bbox": [ + 105, + 540, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 505, + 554 + ], + "score": 1.0, + "content": "John Schulman, Philipp Moritz, Sergey Levine, Michael Jordan, and Pieter Abbeel. High-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 117, + 552, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 117, + 552, + 505, + 564 + ], + "score": 1.0, + "content": "dimensional continuous control using generalized advantage estimation. arXiv preprint", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 563, + 224, + 573 + ], + "spans": [ + { + "bbox": [ + 116, + 563, + 224, + 573 + ], + "score": 1.0, + "content": "arXiv:1506.02438, 2015b.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 105, + 580, + 503, + 604 + ], + "lines": [ + { + "bbox": [ + 105, + 579, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 505, + 595 + ], + "score": 1.0, + "content": "John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov. Proximal policy", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 592, + 380, + 604 + ], + "spans": [ + { + "bbox": [ + 116, + 592, + 380, + 604 + ], + "score": 1.0, + "content": "optimization algorithms. arXiv preprint arXiv:1707.06347, 2017.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 106, + 610, + 505, + 645 + ], + "lines": [ + { + "bbox": [ + 105, + 610, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 505, + 623 + ], + "score": 1.0, + "content": "David Silver, Aja Huang, Chris J Maddison, Arthur Guez, Laurent Sifre, George Van Den Driessche,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 621, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 115, + 621, + 505, + 635 + ], + "score": 1.0, + "content": "Julian Schrittwieser, Ioannis Antonoglou, Veda Panneershelvam, Marc Lanctot, et al. Mastering", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 633, + 493, + 645 + ], + "spans": [ + { + "bbox": [ + 116, + 633, + 493, + 645 + ], + "score": 1.0, + "content": "the game of go with deep neural networks and tree search. Nature, 529(7587):484–489, 2016.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 106, + 650, + 504, + 674 + ], + "lines": [ + { + "bbox": [ + 106, + 650, + 505, + 664 + ], + "spans": [ + { + "bbox": [ + 106, + 650, + 505, + 664 + ], + "score": 1.0, + "content": "Karl Sims. Evolving virtual creatures. In Proceedings of the 21st annual conference on Computer", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 662, + 361, + 674 + ], + "spans": [ + { + "bbox": [ + 115, + 662, + 361, + 674 + ], + "score": 1.0, + "content": "graphics and interactive techniques, pp. 15–22. ACM, 1994.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + }, + { + "type": "text", + "bbox": [ + 107, + 679, + 503, + 703 + ], + "lines": [ + { + "bbox": [ + 105, + 678, + 504, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 504, + 693 + ], + "score": 1.0, + "content": "Kenneth O Stanley and Risto Miikkulainen. Competitive coevolution through evolutionary com-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 691, + 417, + 703 + ], + "spans": [ + { + "bbox": [ + 115, + 691, + 417, + 703 + ], + "score": 1.0, + "content": "plexification. Journal of Artificial Intelligence Research, 21:63–100, 2004.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Sainbayar Sukhbaatar, Ilya Kostrikov, Arthur Szlam, and Rob Fergus. Intrinsic motivation and", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 116, + 720, + 462, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 462, + 732 + ], + "score": 1.0, + "content": "automatic curricula via asymmetric self-play. arXiv preprint arXiv:1703.05407, 2017.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 82, + 504, + 106 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "Johannes Heinrich and David Silver. Deep reinforcement learning from self-play in imperfect-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 117, + 94, + 359, + 105 + ], + "spans": [ + { + "bbox": [ + 117, + 94, + 359, + 105 + ], + "score": 1.0, + "content": "information games. arXiv preprint arXiv:1603.01121, 2016.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 505, + 105 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 111, + 504, + 135 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 506, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 506, + 126 + ], + "score": 1.0, + "content": "Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 122, + 215, + 134 + ], + "spans": [ + { + "bbox": [ + 115, + 122, + 215, + 134 + ], + "score": 1.0, + "content": "arXiv:1412.6980, 2014.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 110, + 506, + 134 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 140, + 504, + 175 + ], + "lines": [ + { + "bbox": [ + 105, + 140, + 505, + 154 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 505, + 154 + ], + "score": 1.0, + "content": "Timothy P Lillicrap, Jonathan J Hunt, Alexander Pritzel, Nicolas Heess, Tom Erez, Yuval Tassa,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 152, + 505, + 165 + ], + "spans": [ + { + "bbox": [ + 115, + 152, + 505, + 165 + ], + "score": 1.0, + "content": "David Silver, and Daan Wierstra. Continuous control with deep reinforcement learning. arXiv", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 164, + 254, + 174 + ], + "spans": [ + { + "bbox": [ + 115, + 164, + 254, + 174 + ], + "score": 1.0, + "content": "preprint arXiv:1509.02971, 2015.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 140, + 505, + 174 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 181, + 504, + 215 + ], + "lines": [ + { + "bbox": [ + 105, + 180, + 506, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 506, + 194 + ], + "score": 1.0, + "content": "Michael L Littman. Markov games as a framework for multi-agent reinforcement learning. In", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 192, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 116, + 192, + 505, + 205 + ], + "score": 1.0, + "content": "Proceedings of the eleventh international conference on machine learning, volume 157, pp. 157–", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 203, + 163, + 216 + ], + "spans": [ + { + "bbox": [ + 116, + 203, + 163, + 216 + ], + "score": 1.0, + "content": "163, 1994.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 180, + 506, + 216 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 221, + 504, + 245 + ], + "lines": [ + { + "bbox": [ + 106, + 221, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 505, + 235 + ], + "score": 1.0, + "content": "Qiang Liu and Dilin Wang. Stein variational gradient descent: A general purpose bayesian inference", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 233, + 476, + 245 + ], + "spans": [ + { + "bbox": [ + 115, + 233, + 476, + 245 + ], + "score": 1.0, + "content": "algorithm. In Advances In Neural Information Processing Systems, pp. 2378–2386, 2016.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 106, + 221, + 505, + 245 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 250, + 503, + 274 + ], + "lines": [ + { + "bbox": [ + 106, + 252, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 106, + 252, + 505, + 263 + ], + "score": 1.0, + "content": "Ryan Lowe, Yi Wu, Aviv Tamar, Jean Harb, Pieter Abbeel, and Igor Mordatch. Multi-agent actor-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 262, + 502, + 275 + ], + "spans": [ + { + "bbox": [ + 115, + 262, + 502, + 275 + ], + "score": 1.0, + "content": "critic for mixed cooperative-competitive environments. arXiv preprint arXiv:1706.02275, 2017.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 106, + 252, + 505, + 275 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 280, + 504, + 314 + ], + "lines": [ + { + "bbox": [ + 105, + 279, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 505, + 293 + ], + "score": 1.0, + "content": "Laetitia Matignon, Guillaume J Laurent, and Nadine Le Fort-Piat. Independent reinforcement learn-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 292, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 116, + 292, + 505, + 304 + ], + "score": 1.0, + "content": "ers in cooperative Markov games: a survey regarding coordination problems. The Knowledge", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 117, + 303, + 276, + 315 + ], + "spans": [ + { + "bbox": [ + 117, + 303, + 276, + 315 + ], + "score": 1.0, + "content": "Engineering Review, 27(1):1–31, 2012.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 279, + 505, + 315 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 320, + 503, + 355 + ], + "lines": [ + { + "bbox": [ + 106, + 320, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 320, + 505, + 334 + ], + "score": 1.0, + "content": "Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Andrei A Rusu, Joel Veness, Marc G Belle-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 332, + 505, + 344 + ], + "spans": [ + { + "bbox": [ + 115, + 332, + 505, + 344 + ], + "score": 1.0, + "content": "mare, Alex Graves, Martin Riedmiller, Andreas K Fidjeland, Georg Ostrovski, et al. Human-level", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 343, + 441, + 356 + ], + "spans": [ + { + "bbox": [ + 115, + 343, + 441, + 356 + ], + "score": 1.0, + "content": "control through deep reinforcement learning. Nature, 518(7540):529–533, 2015.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 106, + 320, + 505, + 356 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 360, + 503, + 395 + ], + "lines": [ + { + "bbox": [ + 107, + 361, + 504, + 373 + ], + "spans": [ + { + "bbox": [ + 107, + 361, + 504, + 373 + ], + "score": 1.0, + "content": "Volodymyr Mnih, Adria Puigdomenech Badia, Mehdi Mirza, Alex Graves, Timothy Lillicrap, Tim", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 371, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 115, + 371, + 505, + 385 + ], + "score": 1.0, + "content": "Harley, David Silver, and Koray Kavukcuoglu. Asynchronous methods for deep reinforcement", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 383, + 450, + 396 + ], + "spans": [ + { + "bbox": [ + 116, + 383, + 450, + 396 + ], + "score": 1.0, + "content": "learning. In International Conference on Machine Learning, pp. 1928–1937, 2016.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21, + "bbox_fs": [ + 107, + 361, + 505, + 396 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 400, + 504, + 424 + ], + "lines": [ + { + "bbox": [ + 105, + 399, + 504, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 145, + 413 + ], + "score": 1.0, + "content": "OpenAI.", + "type": "text" + }, + { + "bbox": [ + 168, + 399, + 335, + 414 + ], + "score": 1.0, + "content": "OpenAI Dota 2 1v1 bot, 2017.", + "type": "text" + }, + { + "bbox": [ + 357, + 399, + 504, + 415 + ], + "score": 1.0, + "content": "URL https://openai.com/", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 412, + 230, + 425 + ], + "spans": [ + { + "bbox": [ + 115, + 412, + 230, + 425 + ], + "score": 1.0, + "content": "the-international/.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 399, + 504, + 425 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 430, + 504, + 453 + ], + "lines": [ + { + "bbox": [ + 105, + 429, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 444 + ], + "score": 1.0, + "content": "Liviu Panait and Sean Luke. Cooperative multi-agent learning: The state of the art. Autonomous", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 442, + 335, + 454 + ], + "spans": [ + { + "bbox": [ + 116, + 442, + 335, + 454 + ], + "score": 1.0, + "content": "agents and multi-agent systems, 11(3):387–434, 2005.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 429, + 505, + 454 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 459, + 504, + 494 + ], + "lines": [ + { + "bbox": [ + 105, + 459, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 505, + 473 + ], + "score": 1.0, + "content": "Lerrel Pinto, James Davidson, and Abhinav Gupta. Supervision via competition: Robot adversaries", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 114, + 470, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 114, + 470, + 505, + 485 + ], + "score": 1.0, + "content": "for learning tasks. In Robotics and Automation (ICRA), 2017 IEEE International Conference on,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 483, + 234, + 494 + ], + "spans": [ + { + "bbox": [ + 115, + 483, + 234, + 494 + ], + "score": 1.0, + "content": "pp. 1601–1608. IEEE, 2017.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 459, + 505, + 494 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 500, + 504, + 534 + ], + "lines": [ + { + "bbox": [ + 104, + 499, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 104, + 499, + 505, + 513 + ], + "score": 1.0, + "content": "John Schulman, Sergey Levine, Pieter Abbeel, Michael Jordan, and Philipp Moritz. Trust region", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 511, + 506, + 525 + ], + "spans": [ + { + "bbox": [ + 115, + 511, + 506, + 525 + ], + "score": 1.0, + "content": "policy optimization. In Proceedings of the 32nd International Conference on Machine Learning", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 522, + 259, + 534 + ], + "spans": [ + { + "bbox": [ + 115, + 522, + 259, + 534 + ], + "score": 1.0, + "content": "(ICML-15), pp. 1889–1897, 2015a.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31, + "bbox_fs": [ + 104, + 499, + 506, + 534 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 540, + 504, + 574 + ], + "lines": [ + { + "bbox": [ + 105, + 540, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 505, + 554 + ], + "score": 1.0, + "content": "John Schulman, Philipp Moritz, Sergey Levine, Michael Jordan, and Pieter Abbeel. High-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 117, + 552, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 117, + 552, + 505, + 564 + ], + "score": 1.0, + "content": "dimensional continuous control using generalized advantage estimation. arXiv preprint", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 563, + 224, + 573 + ], + "spans": [ + { + "bbox": [ + 116, + 563, + 224, + 573 + ], + "score": 1.0, + "content": "arXiv:1506.02438, 2015b.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 540, + 505, + 573 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 580, + 503, + 604 + ], + "lines": [ + { + "bbox": [ + 105, + 579, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 505, + 595 + ], + "score": 1.0, + "content": "John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov. Proximal policy", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 592, + 380, + 604 + ], + "spans": [ + { + "bbox": [ + 116, + 592, + 380, + 604 + ], + "score": 1.0, + "content": "optimization algorithms. arXiv preprint arXiv:1707.06347, 2017.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 579, + 505, + 604 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 610, + 505, + 645 + ], + "lines": [ + { + "bbox": [ + 105, + 610, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 505, + 623 + ], + "score": 1.0, + "content": "David Silver, Aja Huang, Chris J Maddison, Arthur Guez, Laurent Sifre, George Van Den Driessche,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 621, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 115, + 621, + 505, + 635 + ], + "score": 1.0, + "content": "Julian Schrittwieser, Ioannis Antonoglou, Veda Panneershelvam, Marc Lanctot, et al. Mastering", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 633, + 493, + 645 + ], + "spans": [ + { + "bbox": [ + 116, + 633, + 493, + 645 + ], + "score": 1.0, + "content": "the game of go with deep neural networks and tree search. Nature, 529(7587):484–489, 2016.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 610, + 505, + 645 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 650, + 504, + 674 + ], + "lines": [ + { + "bbox": [ + 106, + 650, + 505, + 664 + ], + "spans": [ + { + "bbox": [ + 106, + 650, + 505, + 664 + ], + "score": 1.0, + "content": "Karl Sims. Evolving virtual creatures. In Proceedings of the 21st annual conference on Computer", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 662, + 361, + 674 + ], + "spans": [ + { + "bbox": [ + 115, + 662, + 361, + 674 + ], + "score": 1.0, + "content": "graphics and interactive techniques, pp. 15–22. ACM, 1994.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5, + "bbox_fs": [ + 106, + 650, + 505, + 674 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 679, + 503, + 703 + ], + "lines": [ + { + "bbox": [ + 105, + 678, + 504, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 504, + 693 + ], + "score": 1.0, + "content": "Kenneth O Stanley and Risto Miikkulainen. Competitive coevolution through evolutionary com-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 691, + 417, + 703 + ], + "spans": [ + { + "bbox": [ + 115, + 691, + 417, + 703 + ], + "score": 1.0, + "content": "plexification. Journal of Artificial Intelligence Research, 21:63–100, 2004.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 678, + 504, + 703 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Sainbayar Sukhbaatar, Ilya Kostrikov, Arthur Szlam, and Rob Fergus. Intrinsic motivation and", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 116, + 720, + 462, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 462, + 732 + ], + "score": 1.0, + "content": "automatic curricula via asymmetric self-play. arXiv preprint arXiv:1703.05407, 2017.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5, + "bbox_fs": [ + 106, + 709, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Ardi Tampuu, Tambet Matiisen, Dorian Kodelja, Ilya Kuzovkin, Kristjan Korjus, Juhan Aru, Jaan", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 92, + 505, + 108 + ], + "spans": [ + { + "bbox": [ + 115, + 92, + 505, + 108 + ], + "score": 1.0, + "content": "Aru, and Raul Vicente. Multiagent cooperation and competition with deep reinforcement learning.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 105, + 250, + 116 + ], + "spans": [ + { + "bbox": [ + 116, + 105, + 250, + 116 + ], + "score": 1.0, + "content": "PloS one, 12(4):e0172395, 2017.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 124, + 503, + 147 + ], + "lines": [ + { + "bbox": [ + 105, + 123, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 123, + 505, + 137 + ], + "score": 1.0, + "content": "Ming Tan. Multi-agent reinforcement learning: Independent vs. cooperative agents. In Proceedings", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 135, + 431, + 147 + ], + "spans": [ + { + "bbox": [ + 116, + 135, + 431, + 147 + ], + "score": 1.0, + "content": "of the tenth international conference on machine learning, pp. 330–337, 1993.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 107, + 154, + 503, + 178 + ], + "lines": [ + { + "bbox": [ + 105, + 154, + 505, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 168 + ], + "score": 1.0, + "content": "Gerald Tesauro. Temporal difference learning and td-gammon. Communications of the ACM, 38(3):", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 166, + 172, + 178 + ], + "spans": [ + { + "bbox": [ + 116, + 166, + 172, + 178 + ], + "score": 1.0, + "content": "58–68, 1995.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 106, + 185, + 506, + 219 + ], + "lines": [ + { + "bbox": [ + 105, + 185, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 185, + 505, + 199 + ], + "score": 1.0, + "content": "Emanuel Todorov, Tom Erez, and Yuval Tassa. Mujoco: A physics engine for model-based control.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 197, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 116, + 197, + 505, + 209 + ], + "score": 1.0, + "content": "In Intelligent Robots and Systems (IROS), 2012 IEEE/RSJ International Conference on, pp. 5026–", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 208, + 193, + 219 + ], + "spans": [ + { + "bbox": [ + 116, + 208, + 193, + 219 + ], + "score": 1.0, + "content": "5033. IEEE, 2012.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 227, + 504, + 251 + ], + "lines": [ + { + "bbox": [ + 105, + 227, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 505, + 241 + ], + "score": 1.0, + "content": "Kevin Wampler, Erik Andersen, Evan Herbst, Yongjoon Lee, and Zoran Popovic. Character anima- ´", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 239, + 492, + 252 + ], + "spans": [ + { + "bbox": [ + 115, + 239, + 492, + 252 + ], + "score": 1.0, + "content": "tion in two-player adversarial games. ACM Transactions on Graphics (TOG), 29(3):26, 2010.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 106, + 258, + 504, + 281 + ], + "lines": [ + { + "bbox": [ + 105, + 258, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 505, + 272 + ], + "score": 1.0, + "content": "Ronald J Williams. Simple statistical gradient-following algorithms for connectionist reinforcement", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 269, + 324, + 282 + ], + "spans": [ + { + "bbox": [ + 115, + 269, + 324, + 282 + ], + "score": 1.0, + "content": "learning. Machine learning, 8(3-4):229–256, 1992.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "title", + "bbox": [ + 108, + 303, + 257, + 316 + ], + "lines": [ + { + "bbox": [ + 105, + 302, + 258, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 258, + 318 + ], + "score": 1.0, + "content": "A EXPLORATION REWARDS", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 328, + 505, + 406 + ], + "lines": [ + { + "bbox": [ + 106, + 328, + 505, + 341 + ], + "spans": [ + { + "bbox": [ + 106, + 328, + 505, + 341 + ], + "score": 1.0, + "content": "We define the dense exploration rewards used for the tasks in this section. Our exploration re-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 340, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 340, + 505, + 351 + ], + "score": 1.0, + "content": "ward terms are based on adapting the rewards defined previously for the training humanoids", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 351, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 505, + 362 + ], + "score": 1.0, + "content": "and quadrupeds to walk (Duan et al., 2016; Schulman et al., 2015b). We first review this lo-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 362, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 106, + 362, + 505, + 373 + ], + "score": 1.0, + "content": "comotion reward and then define the task-specific dense rewards. These rewards take the form", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 372, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 250, + 384 + ], + "score": 0.92, + "content": "r _ { t } ( s , a ) = v _ { f w d } + c _ { t } ( s , a ) + C _ { a l i v e }", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 372, + 278, + 385 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 278, + 374, + 299, + 385 + ], + "score": 0.89, + "content": "v _ { f w d }", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 372, + 506, + 385 + ], + "score": 1.0, + "content": "is the velocity in the forward direction, a bonus for", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 143, + 396 + ], + "score": 1.0, + "content": "standing", + "type": "text" + }, + { + "bbox": [ + 144, + 385, + 170, + 395 + ], + "score": 0.9, + "content": "C _ { a l i v e }", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 383, + 301, + 396 + ], + "score": 1.0, + "content": "and costs for impact and action", + "type": "text" + }, + { + "bbox": [ + 302, + 384, + 332, + 396 + ], + "score": 0.92, + "content": "c _ { t } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 383, + 505, + 396 + ], + "score": 1.0, + "content": ". We considered the following locomotion", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 393, + 398, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 398, + 407 + ], + "score": 1.0, + "content": "reward defined for Humanoid-v1 environment in OpenAI Gym package:", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18 + }, + { + "type": "interline_equation", + "bbox": [ + 120, + 411, + 479, + 427 + ], + "lines": [ + { + "bbox": [ + 120, + 411, + 479, + 427 + ], + "spans": [ + { + "bbox": [ + 120, + 411, + 479, + 427 + ], + "score": 0.91, + "content": "r _ { t } ^ { h } ( s , a ) = v _ { f w d } + c ^ { h } ( s , a ) + C _ { a l i v e } = v _ { f w d } - 0 . 1 | a | | ^ { 2 } - 5 \\cdot 1 0 ^ { - 7 } | | F _ { i m p a c t } | | ^ { 2 } + C _ { a l i v e }", + "type": "interline_equation", + "image_path": "8271a92c7b2da20ed5c446c3f4511d88f0a02cb7e4fd2df531900c1362e14023.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 120, + 411, + 479, + 427 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 432, + 505, + 466 + ], + "lines": [ + { + "bbox": [ + 105, + 431, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 133, + 446 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 433, + 167, + 444 + ], + "score": 0.92, + "content": "F _ { i m p a c t }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 431, + 434, + 446 + ], + "score": 1.0, + "content": "is the contact force vector clipped to values between 1 and 1, and", + "type": "text" + }, + { + "bbox": [ + 434, + 433, + 461, + 443 + ], + "score": 0.91, + "content": "C _ { a l i v e }", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 431, + 506, + 446 + ], + "score": 1.0, + "content": "is a bonus", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 441, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 104, + 441, + 359, + 457 + ], + "score": 1.0, + "content": "for the center of the body being at a certain height, defined as", + "type": "text" + }, + { + "bbox": [ + 359, + 443, + 414, + 455 + ], + "score": 0.92, + "content": "C _ { a l i v e } = + 5", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 441, + 424, + 457 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 424, + 444, + 502, + 456 + ], + "score": 0.91, + "content": "2 . 0 \\geq z _ { b o d y } \\geq 1 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 441, + 506, + 457 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 453, + 136, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 136, + 466 + ], + "score": 1.0, + "content": "else 0.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 471, + 366, + 483 + ], + "lines": [ + { + "bbox": [ + 105, + 469, + 367, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 367, + 486 + ], + "score": 1.0, + "content": "Similarly, the following is the reward for quadruped locomotion:", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "interline_equation", + "bbox": [ + 146, + 487, + 465, + 502 + ], + "lines": [ + { + "bbox": [ + 146, + 487, + 465, + 502 + ], + "spans": [ + { + "bbox": [ + 146, + 487, + 465, + 502 + ], + "score": 0.87, + "content": "r _ { t } ^ { q } ( s , a ) = v _ { f w d } + c ^ { q } ( s , a ) = v _ { f w d } - 0 . 5 | a | | ^ { 2 } - 5 \\cdot 1 0 ^ { - 4 } | | F _ { i m p a c t } | | ^ { 2 } + C _ { a l i v e }", + "type": "interline_equation", + "image_path": "8f49cdb2b1d236de7d32e669a52e207c0a44f7e3f0cfb5c86d994125b69059ba.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 146, + 487, + 465, + 502 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 507, + 301, + 520 + ], + "lines": [ + { + "bbox": [ + 106, + 506, + 302, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 133, + 522 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 508, + 186, + 519 + ], + "score": 0.93, + "content": "C _ { a l i v e } = + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 506, + 196, + 522 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 196, + 508, + 270, + 520 + ], + "score": 0.93, + "content": "1 . 0 \\geq z _ { b o d y } \\geq 0 . 2", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 506, + 302, + 522 + ], + "score": 1.0, + "content": ", else 0.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 525, + 504, + 559 + ], + "lines": [ + { + "bbox": [ + 105, + 524, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 222, + 538 + ], + "score": 1.0, + "content": "In the following, superscript", + "type": "text" + }, + { + "bbox": [ + 222, + 525, + 229, + 535 + ], + "score": 0.83, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 524, + 399, + 538 + ], + "score": 1.0, + "content": "refers to humanoid agents and superscript", + "type": "text" + }, + { + "bbox": [ + 399, + 527, + 405, + 536 + ], + "score": 0.8, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 524, + 505, + 538 + ], + "score": 1.0, + "content": "refers to quadruped. We", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 535, + 501, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 141, + 550 + ], + "score": 1.0, + "content": "redefine", + "type": "text" + }, + { + "bbox": [ + 141, + 536, + 168, + 547 + ], + "score": 0.92, + "content": "C _ { a l i v e }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 535, + 192, + 550 + ], + "score": 1.0, + "content": "to be", + "type": "text" + }, + { + "bbox": [ + 192, + 537, + 207, + 547 + ], + "score": 0.84, + "content": "+ 5", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 535, + 217, + 550 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 217, + 536, + 267, + 548 + ], + "score": 0.91, + "content": "z _ { b o d y } \\ge 1 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 535, + 289, + 550 + ], + "score": 1.0, + "content": ", else", + "type": "text" + }, + { + "bbox": [ + 289, + 537, + 303, + 547 + ], + "score": 0.76, + "content": "- 5", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 535, + 382, + 550 + ], + "score": 1.0, + "content": "for humanoid, and", + "type": "text" + }, + { + "bbox": [ + 383, + 537, + 436, + 547 + ], + "score": 0.91, + "content": "C _ { a l i v e } = + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 535, + 447, + 550 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 447, + 537, + 501, + 548 + ], + "score": 0.93, + "content": "z _ { b o d y } \\ge 0 . 2 8", + "type": "inline_equation" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 547, + 200, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 124, + 559 + ], + "score": 1.0, + "content": "else", + "type": "text" + }, + { + "bbox": [ + 125, + 548, + 138, + 558 + ], + "score": 0.73, + "content": "- 1", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 547, + 200, + 559 + ], + "score": 1.0, + "content": "for quadruped.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 106, + 570, + 504, + 594 + ], + "lines": [ + { + "bbox": [ + 105, + 569, + 506, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 276, + 584 + ], + "score": 1.0, + "content": "Run to Goal For humanoids, reward is", + "type": "text" + }, + { + "bbox": [ + 276, + 570, + 352, + 583 + ], + "score": 0.93, + "content": "r ^ { h } ( s , a ) - | x - g |", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 569, + 380, + 584 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 381, + 572, + 406, + 582 + ], + "score": 0.88, + "content": "x - g", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 569, + 433, + 584 + ], + "score": 1.0, + "content": "is the", + "type": "text" + }, + { + "bbox": [ + 433, + 572, + 441, + 582 + ], + "score": 0.87, + "content": "l _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 569, + 506, + 584 + ], + "score": 1.0, + "content": "distance of the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 581, + 444, + 596 + ], + "spans": [ + { + "bbox": [ + 106, + 581, + 186, + 596 + ], + "score": 1.0, + "content": "agent from the goal", + "type": "text" + }, + { + "bbox": [ + 187, + 584, + 193, + 594 + ], + "score": 0.79, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 581, + 234, + 596 + ], + "score": 1.0, + "content": "along the", + "type": "text" + }, + { + "bbox": [ + 234, + 584, + 240, + 592 + ], + "score": 0.78, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 581, + 367, + 596 + ], + "score": 1.0, + "content": "-axis. For ant, reward is similar", + "type": "text" + }, + { + "bbox": [ + 367, + 582, + 440, + 594 + ], + "score": 0.92, + "content": "r ^ { q } ( s , a ) - | x - g |", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 581, + 444, + 596 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 107, + 606, + 504, + 640 + ], + "lines": [ + { + "bbox": [ + 106, + 606, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 505, + 618 + ], + "score": 1.0, + "content": "You Shall not Pass For the agent whose goal is to reach the other side, the reward is same as for", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 617, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 363, + 630 + ], + "score": 1.0, + "content": "run-to-goal. For the blocking agent, the reward for humanoid is", + "type": "text" + }, + { + "bbox": [ + 363, + 617, + 477, + 630 + ], + "score": 0.92, + "content": "c ^ { h } ( s , a ) + C _ { a l i v e } + | x ^ { \\prime } - g |", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 617, + 505, + 630 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 107, + 628, + 297, + 641 + ], + "spans": [ + { + "bbox": [ + 107, + 628, + 139, + 640 + ], + "score": 0.92, + "content": "| x ^ { \\prime } - g |", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 628, + 297, + 641 + ], + "score": 1.0, + "content": "is the distance of opponent to the goal.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 106, + 651, + 503, + 676 + ], + "lines": [ + { + "bbox": [ + 105, + 650, + 506, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 245, + 666 + ], + "score": 1.0, + "content": "Sumo For humanoids, reward is", + "type": "text" + }, + { + "bbox": [ + 245, + 651, + 378, + 664 + ], + "score": 0.91, + "content": "c ^ { h } ( s , a ) + C _ { a l i v e } - ( x ^ { 2 } + y ^ { 2 } ) ^ { 0 . 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 650, + 506, + 666 + ], + "score": 1.0, + "content": ", where the last term is distance", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 103, + 660, + 421, + 678 + ], + "spans": [ + { + "bbox": [ + 103, + 660, + 289, + 678 + ], + "score": 1.0, + "content": "from the center of the ring. Similarly for ant:", + "type": "text" + }, + { + "bbox": [ + 289, + 663, + 421, + 676 + ], + "score": 0.77, + "content": "c ^ { q } ( s , a ) + C _ { a l i v e } - ( x ^ { 2 } + y ^ { 2 } ) ^ { 0 . 5 }", + "type": "inline_equation" + } + ], + "index": 38 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 686, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 274, + 700 + ], + "score": 1.0, + "content": "Kick and Defend: For kicker, reward is", + "type": "text" + }, + { + "bbox": [ + 275, + 687, + 386, + 700 + ], + "score": 0.93, + "content": "r ^ { h } ( s , a ) - | | x - b | | - | b _ { x } - g |", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 686, + 415, + 700 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 416, + 688, + 421, + 698 + ], + "score": 0.78, + "content": "b", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 686, + 446, + 700 + ], + "score": 1.0, + "content": "is the", + "type": "text" + }, + { + "bbox": [ + 446, + 688, + 469, + 700 + ], + "score": 0.92, + "content": "( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 686, + 506, + 700 + ], + "score": 1.0, + "content": "position", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 151, + 711 + ], + "score": 1.0, + "content": "of the ball,", + "type": "text" + }, + { + "bbox": [ + 151, + 699, + 162, + 709 + ], + "score": 0.87, + "content": "b _ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 698, + 186, + 711 + ], + "score": 1.0, + "content": "is the", + "type": "text" + }, + { + "bbox": [ + 186, + 700, + 193, + 709 + ], + "score": 0.8, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 698, + 298, + 711 + ], + "score": 1.0, + "content": "-coordinate of the ball and", + "type": "text" + }, + { + "bbox": [ + 298, + 701, + 304, + 710 + ], + "score": 0.81, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 698, + 329, + 711 + ], + "score": 1.0, + "content": "is the", + "type": "text" + }, + { + "bbox": [ + 329, + 702, + 336, + 709 + ], + "score": 0.78, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "-coordinate of the goal-post. For defender,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 145, + 723 + ], + "score": 1.0, + "content": "reward is", + "type": "text" + }, + { + "bbox": [ + 146, + 710, + 257, + 722 + ], + "score": 0.93, + "content": "c ^ { h } ( s , a ) + C _ { a l i v e } + | b _ { x } - g |", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 709, + 299, + 723 + ], + "score": 1.0, + "content": "where for", + "type": "text" + }, + { + "bbox": [ + 299, + 710, + 325, + 721 + ], + "score": 0.91, + "content": "C _ { a l i v e }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "we only gave positive reward if the defender", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 720, + 223, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 223, + 733 + ], + "score": 1.0, + "content": "was in front of the goal area.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40.5 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Ardi Tampuu, Tambet Matiisen, Dorian Kodelja, Ilya Kuzovkin, Kristjan Korjus, Juhan Aru, Jaan", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 92, + 505, + 108 + ], + "spans": [ + { + "bbox": [ + 115, + 92, + 505, + 108 + ], + "score": 1.0, + "content": "Aru, and Raul Vicente. Multiagent cooperation and competition with deep reinforcement learning.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 105, + 250, + 116 + ], + "spans": [ + { + "bbox": [ + 116, + 105, + 250, + 116 + ], + "score": 1.0, + "content": "PloS one, 12(4):e0172395, 2017.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 106, + 82, + 505, + 116 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 124, + 503, + 147 + ], + "lines": [ + { + "bbox": [ + 105, + 123, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 123, + 505, + 137 + ], + "score": 1.0, + "content": "Ming Tan. Multi-agent reinforcement learning: Independent vs. cooperative agents. In Proceedings", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 135, + 431, + 147 + ], + "spans": [ + { + "bbox": [ + 116, + 135, + 431, + 147 + ], + "score": 1.0, + "content": "of the tenth international conference on machine learning, pp. 330–337, 1993.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 123, + 505, + 147 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 154, + 503, + 178 + ], + "lines": [ + { + "bbox": [ + 105, + 154, + 505, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 168 + ], + "score": 1.0, + "content": "Gerald Tesauro. Temporal difference learning and td-gammon. Communications of the ACM, 38(3):", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 166, + 172, + 178 + ], + "spans": [ + { + "bbox": [ + 116, + 166, + 172, + 178 + ], + "score": 1.0, + "content": "58–68, 1995.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5, + "bbox_fs": [ + 105, + 154, + 505, + 178 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 185, + 506, + 219 + ], + "lines": [ + { + "bbox": [ + 105, + 185, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 185, + 505, + 199 + ], + "score": 1.0, + "content": "Emanuel Todorov, Tom Erez, and Yuval Tassa. Mujoco: A physics engine for model-based control.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 197, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 116, + 197, + 505, + 209 + ], + "score": 1.0, + "content": "In Intelligent Robots and Systems (IROS), 2012 IEEE/RSJ International Conference on, pp. 5026–", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 208, + 193, + 219 + ], + "spans": [ + { + "bbox": [ + 116, + 208, + 193, + 219 + ], + "score": 1.0, + "content": "5033. IEEE, 2012.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 185, + 505, + 219 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 227, + 504, + 251 + ], + "lines": [ + { + "bbox": [ + 105, + 227, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 505, + 241 + ], + "score": 1.0, + "content": "Kevin Wampler, Erik Andersen, Evan Herbst, Yongjoon Lee, and Zoran Popovic. Character anima- ´", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 239, + 492, + 252 + ], + "spans": [ + { + "bbox": [ + 115, + 239, + 492, + 252 + ], + "score": 1.0, + "content": "tion in two-player adversarial games. ACM Transactions on Graphics (TOG), 29(3):26, 2010.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 227, + 505, + 252 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 258, + 504, + 281 + ], + "lines": [ + { + "bbox": [ + 105, + 258, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 505, + 272 + ], + "score": 1.0, + "content": "Ronald J Williams. Simple statistical gradient-following algorithms for connectionist reinforcement", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 269, + 324, + 282 + ], + "spans": [ + { + "bbox": [ + 115, + 269, + 324, + 282 + ], + "score": 1.0, + "content": "learning. Machine learning, 8(3-4):229–256, 1992.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 258, + 505, + 282 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 303, + 257, + 316 + ], + "lines": [ + { + "bbox": [ + 105, + 302, + 258, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 258, + 318 + ], + "score": 1.0, + "content": "A EXPLORATION REWARDS", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 328, + 505, + 406 + ], + "lines": [ + { + "bbox": [ + 106, + 328, + 505, + 341 + ], + "spans": [ + { + "bbox": [ + 106, + 328, + 505, + 341 + ], + "score": 1.0, + "content": "We define the dense exploration rewards used for the tasks in this section. Our exploration re-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 340, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 340, + 505, + 351 + ], + "score": 1.0, + "content": "ward terms are based on adapting the rewards defined previously for the training humanoids", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 351, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 505, + 362 + ], + "score": 1.0, + "content": "and quadrupeds to walk (Duan et al., 2016; Schulman et al., 2015b). We first review this lo-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 362, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 106, + 362, + 505, + 373 + ], + "score": 1.0, + "content": "comotion reward and then define the task-specific dense rewards. These rewards take the form", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 372, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 250, + 384 + ], + "score": 0.92, + "content": "r _ { t } ( s , a ) = v _ { f w d } + c _ { t } ( s , a ) + C _ { a l i v e }", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 372, + 278, + 385 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 278, + 374, + 299, + 385 + ], + "score": 0.89, + "content": "v _ { f w d }", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 372, + 506, + 385 + ], + "score": 1.0, + "content": "is the velocity in the forward direction, a bonus for", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 143, + 396 + ], + "score": 1.0, + "content": "standing", + "type": "text" + }, + { + "bbox": [ + 144, + 385, + 170, + 395 + ], + "score": 0.9, + "content": "C _ { a l i v e }", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 383, + 301, + 396 + ], + "score": 1.0, + "content": "and costs for impact and action", + "type": "text" + }, + { + "bbox": [ + 302, + 384, + 332, + 396 + ], + "score": 0.92, + "content": "c _ { t } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 383, + 505, + 396 + ], + "score": 1.0, + "content": ". We considered the following locomotion", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 393, + 398, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 398, + 407 + ], + "score": 1.0, + "content": "reward defined for Humanoid-v1 environment in OpenAI Gym package:", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 328, + 506, + 407 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 120, + 411, + 479, + 427 + ], + "lines": [ + { + "bbox": [ + 120, + 411, + 479, + 427 + ], + "spans": [ + { + "bbox": [ + 120, + 411, + 479, + 427 + ], + "score": 0.91, + "content": "r _ { t } ^ { h } ( s , a ) = v _ { f w d } + c ^ { h } ( s , a ) + C _ { a l i v e } = v _ { f w d } - 0 . 1 | a | | ^ { 2 } - 5 \\cdot 1 0 ^ { - 7 } | | F _ { i m p a c t } | | ^ { 2 } + C _ { a l i v e }", + "type": "interline_equation", + "image_path": "8271a92c7b2da20ed5c446c3f4511d88f0a02cb7e4fd2df531900c1362e14023.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 120, + 411, + 479, + 427 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 432, + 505, + 466 + ], + "lines": [ + { + "bbox": [ + 105, + 431, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 133, + 446 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 433, + 167, + 444 + ], + "score": 0.92, + "content": "F _ { i m p a c t }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 431, + 434, + 446 + ], + "score": 1.0, + "content": "is the contact force vector clipped to values between 1 and 1, and", + "type": "text" + }, + { + "bbox": [ + 434, + 433, + 461, + 443 + ], + "score": 0.91, + "content": "C _ { a l i v e }", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 431, + 506, + 446 + ], + "score": 1.0, + "content": "is a bonus", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 441, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 104, + 441, + 359, + 457 + ], + "score": 1.0, + "content": "for the center of the body being at a certain height, defined as", + "type": "text" + }, + { + "bbox": [ + 359, + 443, + 414, + 455 + ], + "score": 0.92, + "content": "C _ { a l i v e } = + 5", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 441, + 424, + 457 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 424, + 444, + 502, + 456 + ], + "score": 0.91, + "content": "2 . 0 \\geq z _ { b o d y } \\geq 1 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 441, + 506, + 457 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 453, + 136, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 136, + 466 + ], + "score": 1.0, + "content": "else 0.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24, + "bbox_fs": [ + 104, + 431, + 506, + 466 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 471, + 366, + 483 + ], + "lines": [ + { + "bbox": [ + 105, + 469, + 367, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 367, + 486 + ], + "score": 1.0, + "content": "Similarly, the following is the reward for quadruped locomotion:", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 469, + 367, + 486 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 146, + 487, + 465, + 502 + ], + "lines": [ + { + "bbox": [ + 146, + 487, + 465, + 502 + ], + "spans": [ + { + "bbox": [ + 146, + 487, + 465, + 502 + ], + "score": 0.87, + "content": "r _ { t } ^ { q } ( s , a ) = v _ { f w d } + c ^ { q } ( s , a ) = v _ { f w d } - 0 . 5 | a | | ^ { 2 } - 5 \\cdot 1 0 ^ { - 4 } | | F _ { i m p a c t } | | ^ { 2 } + C _ { a l i v e }", + "type": "interline_equation", + "image_path": "8f49cdb2b1d236de7d32e669a52e207c0a44f7e3f0cfb5c86d994125b69059ba.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 146, + 487, + 465, + 502 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 507, + 301, + 520 + ], + "lines": [ + { + "bbox": [ + 106, + 506, + 302, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 133, + 522 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 508, + 186, + 519 + ], + "score": 0.93, + "content": "C _ { a l i v e } = + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 506, + 196, + 522 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 196, + 508, + 270, + 520 + ], + "score": 0.93, + "content": "1 . 0 \\geq z _ { b o d y } \\geq 0 . 2", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 506, + 302, + 522 + ], + "score": 1.0, + "content": ", else 0.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28, + "bbox_fs": [ + 106, + 506, + 302, + 522 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 525, + 504, + 559 + ], + "lines": [ + { + "bbox": [ + 105, + 524, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 222, + 538 + ], + "score": 1.0, + "content": "In the following, superscript", + "type": "text" + }, + { + "bbox": [ + 222, + 525, + 229, + 535 + ], + "score": 0.83, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 524, + 399, + 538 + ], + "score": 1.0, + "content": "refers to humanoid agents and superscript", + "type": "text" + }, + { + "bbox": [ + 399, + 527, + 405, + 536 + ], + "score": 0.8, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 524, + 505, + 538 + ], + "score": 1.0, + "content": "refers to quadruped. We", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 535, + 501, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 141, + 550 + ], + "score": 1.0, + "content": "redefine", + "type": "text" + }, + { + "bbox": [ + 141, + 536, + 168, + 547 + ], + "score": 0.92, + "content": "C _ { a l i v e }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 535, + 192, + 550 + ], + "score": 1.0, + "content": "to be", + "type": "text" + }, + { + "bbox": [ + 192, + 537, + 207, + 547 + ], + "score": 0.84, + "content": "+ 5", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 535, + 217, + 550 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 217, + 536, + 267, + 548 + ], + "score": 0.91, + "content": "z _ { b o d y } \\ge 1 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 535, + 289, + 550 + ], + "score": 1.0, + "content": ", else", + "type": "text" + }, + { + "bbox": [ + 289, + 537, + 303, + 547 + ], + "score": 0.76, + "content": "- 5", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 535, + 382, + 550 + ], + "score": 1.0, + "content": "for humanoid, and", + "type": "text" + }, + { + "bbox": [ + 383, + 537, + 436, + 547 + ], + "score": 0.91, + "content": "C _ { a l i v e } = + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 535, + 447, + 550 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 447, + 537, + 501, + 548 + ], + "score": 0.93, + "content": "z _ { b o d y } \\ge 0 . 2 8", + "type": "inline_equation" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 547, + 200, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 124, + 559 + ], + "score": 1.0, + "content": "else", + "type": "text" + }, + { + "bbox": [ + 125, + 548, + 138, + 558 + ], + "score": 0.73, + "content": "- 1", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 547, + 200, + 559 + ], + "score": 1.0, + "content": "for quadruped.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 524, + 505, + 559 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 570, + 504, + 594 + ], + "lines": [ + { + "bbox": [ + 105, + 569, + 506, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 276, + 584 + ], + "score": 1.0, + "content": "Run to Goal For humanoids, reward is", + "type": "text" + }, + { + "bbox": [ + 276, + 570, + 352, + 583 + ], + "score": 0.93, + "content": "r ^ { h } ( s , a ) - | x - g |", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 569, + 380, + 584 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 381, + 572, + 406, + 582 + ], + "score": 0.88, + "content": "x - g", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 569, + 433, + 584 + ], + "score": 1.0, + "content": "is the", + "type": "text" + }, + { + "bbox": [ + 433, + 572, + 441, + 582 + ], + "score": 0.87, + "content": "l _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 569, + 506, + 584 + ], + "score": 1.0, + "content": "distance of the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 581, + 444, + 596 + ], + "spans": [ + { + "bbox": [ + 106, + 581, + 186, + 596 + ], + "score": 1.0, + "content": "agent from the goal", + "type": "text" + }, + { + "bbox": [ + 187, + 584, + 193, + 594 + ], + "score": 0.79, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 581, + 234, + 596 + ], + "score": 1.0, + "content": "along the", + "type": "text" + }, + { + "bbox": [ + 234, + 584, + 240, + 592 + ], + "score": 0.78, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 581, + 367, + 596 + ], + "score": 1.0, + "content": "-axis. For ant, reward is similar", + "type": "text" + }, + { + "bbox": [ + 367, + 582, + 440, + 594 + ], + "score": 0.92, + "content": "r ^ { q } ( s , a ) - | x - g |", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 581, + 444, + 596 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 569, + 506, + 596 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 606, + 504, + 640 + ], + "lines": [ + { + "bbox": [ + 106, + 606, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 505, + 618 + ], + "score": 1.0, + "content": "You Shall not Pass For the agent whose goal is to reach the other side, the reward is same as for", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 617, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 363, + 630 + ], + "score": 1.0, + "content": "run-to-goal. For the blocking agent, the reward for humanoid is", + "type": "text" + }, + { + "bbox": [ + 363, + 617, + 477, + 630 + ], + "score": 0.92, + "content": "c ^ { h } ( s , a ) + C _ { a l i v e } + | x ^ { \\prime } - g |", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 617, + 505, + 630 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 107, + 628, + 297, + 641 + ], + "spans": [ + { + "bbox": [ + 107, + 628, + 139, + 640 + ], + "score": 0.92, + "content": "| x ^ { \\prime } - g |", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 628, + 297, + 641 + ], + "score": 1.0, + "content": "is the distance of opponent to the goal.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 606, + 505, + 641 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 651, + 503, + 676 + ], + "lines": [ + { + "bbox": [ + 105, + 650, + 506, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 245, + 666 + ], + "score": 1.0, + "content": "Sumo For humanoids, reward is", + "type": "text" + }, + { + "bbox": [ + 245, + 651, + 378, + 664 + ], + "score": 0.91, + "content": "c ^ { h } ( s , a ) + C _ { a l i v e } - ( x ^ { 2 } + y ^ { 2 } ) ^ { 0 . 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 650, + 506, + 666 + ], + "score": 1.0, + "content": ", where the last term is distance", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 103, + 660, + 421, + 678 + ], + "spans": [ + { + "bbox": [ + 103, + 660, + 289, + 678 + ], + "score": 1.0, + "content": "from the center of the ring. Similarly for ant:", + "type": "text" + }, + { + "bbox": [ + 289, + 663, + 421, + 676 + ], + "score": 0.77, + "content": "c ^ { q } ( s , a ) + C _ { a l i v e } - ( x ^ { 2 } + y ^ { 2 } ) ^ { 0 . 5 }", + "type": "inline_equation" + } + ], + "index": 38 + } + ], + "index": 37.5, + "bbox_fs": [ + 103, + 650, + 506, + 678 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 686, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 274, + 700 + ], + "score": 1.0, + "content": "Kick and Defend: For kicker, reward is", + "type": "text" + }, + { + "bbox": [ + 275, + 687, + 386, + 700 + ], + "score": 0.93, + "content": "r ^ { h } ( s , a ) - | | x - b | | - | b _ { x } - g |", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 686, + 415, + 700 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 416, + 688, + 421, + 698 + ], + "score": 0.78, + "content": "b", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 686, + 446, + 700 + ], + "score": 1.0, + "content": "is the", + "type": "text" + }, + { + "bbox": [ + 446, + 688, + 469, + 700 + ], + "score": 0.92, + "content": "( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 686, + 506, + 700 + ], + "score": 1.0, + "content": "position", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 151, + 711 + ], + "score": 1.0, + "content": "of the ball,", + "type": "text" + }, + { + "bbox": [ + 151, + 699, + 162, + 709 + ], + "score": 0.87, + "content": "b _ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 698, + 186, + 711 + ], + "score": 1.0, + "content": "is the", + "type": "text" + }, + { + "bbox": [ + 186, + 700, + 193, + 709 + ], + "score": 0.8, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 698, + 298, + 711 + ], + "score": 1.0, + "content": "-coordinate of the ball and", + "type": "text" + }, + { + "bbox": [ + 298, + 701, + 304, + 710 + ], + "score": 0.81, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 698, + 329, + 711 + ], + "score": 1.0, + "content": "is the", + "type": "text" + }, + { + "bbox": [ + 329, + 702, + 336, + 709 + ], + "score": 0.78, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "-coordinate of the goal-post. For defender,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 145, + 723 + ], + "score": 1.0, + "content": "reward is", + "type": "text" + }, + { + "bbox": [ + 146, + 710, + 257, + 722 + ], + "score": 0.93, + "content": "c ^ { h } ( s , a ) + C _ { a l i v e } + | b _ { x } - g |", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 709, + 299, + 723 + ], + "score": 1.0, + "content": "where for", + "type": "text" + }, + { + "bbox": [ + 299, + 710, + 325, + 721 + ], + "score": 0.91, + "content": "C _ { a l i v e }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "we only gave positive reward if the defender", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 720, + 223, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 223, + 733 + ], + "score": 1.0, + "content": "was in front of the goal area.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 686, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 136, + 80, + 474, + 127 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 136, + 80, + 474, + 127 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 136, + 80, + 474, + 127 + ], + "spans": [ + { + "bbox": [ + 136, + 80, + 474, + 127 + ], + "score": 0.977, + "html": "
Force Magnitude
200300400500600
Sumo Agent372 ± 146327±150247± 143181 ± 114123 ± 57
Walker Agent179± 54139± 42116± 32103±2395 ± 20
", + "type": "table", + "image_path": "f75253e2221d8b44fb99c2bd37b6851dec021ae2e228de525188c17d3b7ff086.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 136, + 80, + 474, + 95.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 136, + 95.66666666666667, + 474, + 111.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 136, + 111.33333333333334, + 474, + 127.00000000000001 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 135, + 504, + 158 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 135, + 505, + 148 + ], + "spans": [ + { + "bbox": [ + 106, + 135, + 505, + 148 + ], + "score": 1.0, + "content": "Table 2: Average number of steps before agent falls. Sumo Agent refers to the agent trained in Sumo", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 145, + 505, + 159 + ], + "spans": [ + { + "bbox": [ + 105, + 145, + 505, + 159 + ], + "score": 1.0, + "content": "environment whereas Walker Agent refers to the agent trained to walk in a single agent environment.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "title", + "bbox": [ + 107, + 178, + 244, + 191 + ], + "lines": [ + { + "bbox": [ + 105, + 176, + 246, + 192 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 246, + 192 + ], + "score": 1.0, + "content": "B ADDITIONAL RESULTS", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "title", + "bbox": [ + 107, + 203, + 219, + 214 + ], + "lines": [ + { + "bbox": [ + 105, + 202, + 220, + 215 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 220, + 215 + ], + "score": 1.0, + "content": "B.1 TRANSFER RESULTS", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 223, + 505, + 312 + ], + "lines": [ + { + "bbox": [ + 106, + 223, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 505, + 236 + ], + "score": 1.0, + "content": "We took the agent trained on the multi-agent Sumo task and faced it with the task of standing while", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 234, + 506, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 506, + 248 + ], + "score": 1.0, + "content": "being perturbed by wind forces. The agent receives a zero vector for parts of the observation space", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 244, + 506, + 259 + ], + "spans": [ + { + "bbox": [ + 104, + 244, + 506, + 259 + ], + "score": 1.0, + "content": "which correspond to the opponent. We calculate the number of steps before the agent falls down", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 255, + 506, + 270 + ], + "spans": [ + { + "bbox": [ + 104, + 255, + 150, + 270 + ], + "score": 1.0, + "content": "(i.e. when", + "type": "text" + }, + { + "bbox": [ + 150, + 257, + 203, + 268 + ], + "score": 0.89, + "content": "z _ { b o d y } \\le 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 255, + 506, + 270 + ], + "score": 1.0, + "content": ") or the agent is pushed out of the arena and report the average steps over", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 267, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 506, + 280 + ], + "score": 1.0, + "content": "200 episodes. Episodes last a maximum of 500 time steps. In half the episodes the wind force is", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 278, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 506, + 290 + ], + "score": 1.0, + "content": "applied in a radially outwards direction and in the remaining half it is applied in the radially inwards", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 289, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 505, + 302 + ], + "score": 1.0, + "content": "direction. We allow 50 steps for the agent to stabilize and apply the force at intervals of 50 steps", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 300, + 429, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 429, + 313 + ], + "score": 1.0, + "content": "where in between the intervals the force magnitude is decayed at a constant rate:", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 10.5 + }, + { + "type": "interline_equation", + "bbox": [ + 215, + 316, + 389, + 344 + ], + "lines": [ + { + "bbox": [ + 215, + 316, + 389, + 344 + ], + "spans": [ + { + "bbox": [ + 215, + 316, + 389, + 344 + ], + "score": 0.92, + "content": "F _ { t } = { \\left\\{ \\begin{array} { l l } { \\qquad F } & { { \\mathrm { i f ~ } } t \\equiv 0 { \\pmod { 5 0 } } } \\\\ { 0 . 9 * F _ { t - 1 } } & { { \\mathrm { o t h e r w i s e } } } \\end{array} \\right. }", + "type": "interline_equation", + "image_path": "28957d3b59adcd66bdd352d2787ef82f430257231afb79ed6d116c37acc9b288.jpg" + } + ] + } + ], + "index": 15.5, + "virtual_lines": [ + { + "bbox": [ + 215, + 316, + 389, + 330.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 215, + 330.0, + 389, + 344.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 349, + 260, + 361 + ], + "lines": [ + { + "bbox": [ + 106, + 348, + 261, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 348, + 133, + 363 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 349, + 257, + 362 + ], + "score": 0.9, + "content": "F \\in \\{ 2 0 0 , 3 0 0 , 4 0 0 , 5 0 0 , 6 0 0 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 348, + 261, + 363 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 106, + 361, + 505, + 427 + ], + "lines": [ + { + "bbox": [ + 106, + 360, + 504, + 373 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 504, + 373 + ], + "score": 1.0, + "content": "We compare with a humanoid agent trained in a single agent environment for the task of walking.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 371, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 505, + 384 + ], + "score": 1.0, + "content": "We used same LSTM policy architecture as used for the Sumo agent and trained the humanoid in the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 382, + 505, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 382, + 505, + 395 + ], + "score": 1.0, + "content": "publicly available OpenAI Gym Humanoid-v1 environment using PPO. We then apply force on this", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 393, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 506, + 407 + ], + "score": 1.0, + "content": "agent using the same method as above where the direction of the force is in the direction the agent", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 405, + 506, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 506, + 417 + ], + "score": 1.0, + "content": "is walking in half the episodes and opposite to it in the remaining half. We record average number", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 415, + 360, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 360, + 429 + ], + "score": 1.0, + "content": "of steps to fall using the same condition as for the Sumo agent.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 107, + 427, + 504, + 460 + ], + "lines": [ + { + "bbox": [ + 105, + 426, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 505, + 438 + ], + "score": 1.0, + "content": "Table 2 shows the average number of steps over 200 episodes along with the standard deviation. We", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 437, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 505, + 449 + ], + "score": 1.0, + "content": "see that the humanoid trained in Sumo is more robust to adversarial forces and able to withstand", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 448, + 270, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 270, + 461 + ], + "score": 1.0, + "content": "large magnitude of force for many steps.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 136, + 80, + 474, + 127 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 136, + 80, + 474, + 127 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 136, + 80, + 474, + 127 + ], + "spans": [ + { + "bbox": [ + 136, + 80, + 474, + 127 + ], + "score": 0.977, + "html": "
Force Magnitude
200300400500600
Sumo Agent372 ± 146327±150247± 143181 ± 114123 ± 57
Walker Agent179± 54139± 42116± 32103±2395 ± 20
", + "type": "table", + "image_path": "f75253e2221d8b44fb99c2bd37b6851dec021ae2e228de525188c17d3b7ff086.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 136, + 80, + 474, + 95.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 136, + 95.66666666666667, + 474, + 111.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 136, + 111.33333333333334, + 474, + 127.00000000000001 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 135, + 504, + 158 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 135, + 505, + 148 + ], + "spans": [ + { + "bbox": [ + 106, + 135, + 505, + 148 + ], + "score": 1.0, + "content": "Table 2: Average number of steps before agent falls. Sumo Agent refers to the agent trained in Sumo", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 145, + 505, + 159 + ], + "spans": [ + { + "bbox": [ + 105, + 145, + 505, + 159 + ], + "score": 1.0, + "content": "environment whereas Walker Agent refers to the agent trained to walk in a single agent environment.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "title", + "bbox": [ + 107, + 178, + 244, + 191 + ], + "lines": [ + { + "bbox": [ + 105, + 176, + 246, + 192 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 246, + 192 + ], + "score": 1.0, + "content": "B ADDITIONAL RESULTS", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "title", + "bbox": [ + 107, + 203, + 219, + 214 + ], + "lines": [ + { + "bbox": [ + 105, + 202, + 220, + 215 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 220, + 215 + ], + "score": 1.0, + "content": "B.1 TRANSFER RESULTS", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 223, + 505, + 312 + ], + "lines": [ + { + "bbox": [ + 106, + 223, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 505, + 236 + ], + "score": 1.0, + "content": "We took the agent trained on the multi-agent Sumo task and faced it with the task of standing while", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 234, + 506, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 506, + 248 + ], + "score": 1.0, + "content": "being perturbed by wind forces. The agent receives a zero vector for parts of the observation space", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 244, + 506, + 259 + ], + "spans": [ + { + "bbox": [ + 104, + 244, + 506, + 259 + ], + "score": 1.0, + "content": "which correspond to the opponent. We calculate the number of steps before the agent falls down", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 255, + 506, + 270 + ], + "spans": [ + { + "bbox": [ + 104, + 255, + 150, + 270 + ], + "score": 1.0, + "content": "(i.e. when", + "type": "text" + }, + { + "bbox": [ + 150, + 257, + 203, + 268 + ], + "score": 0.89, + "content": "z _ { b o d y } \\le 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 255, + 506, + 270 + ], + "score": 1.0, + "content": ") or the agent is pushed out of the arena and report the average steps over", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 267, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 506, + 280 + ], + "score": 1.0, + "content": "200 episodes. Episodes last a maximum of 500 time steps. In half the episodes the wind force is", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 278, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 506, + 290 + ], + "score": 1.0, + "content": "applied in a radially outwards direction and in the remaining half it is applied in the radially inwards", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 289, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 505, + 302 + ], + "score": 1.0, + "content": "direction. We allow 50 steps for the agent to stabilize and apply the force at intervals of 50 steps", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 300, + 429, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 429, + 313 + ], + "score": 1.0, + "content": "where in between the intervals the force magnitude is decayed at a constant rate:", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 10.5, + "bbox_fs": [ + 104, + 223, + 506, + 313 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 215, + 316, + 389, + 344 + ], + "lines": [ + { + "bbox": [ + 215, + 316, + 389, + 344 + ], + "spans": [ + { + "bbox": [ + 215, + 316, + 389, + 344 + ], + "score": 0.92, + "content": "F _ { t } = { \\left\\{ \\begin{array} { l l } { \\qquad F } & { { \\mathrm { i f ~ } } t \\equiv 0 { \\pmod { 5 0 } } } \\\\ { 0 . 9 * F _ { t - 1 } } & { { \\mathrm { o t h e r w i s e } } } \\end{array} \\right. }", + "type": "interline_equation", + "image_path": "28957d3b59adcd66bdd352d2787ef82f430257231afb79ed6d116c37acc9b288.jpg" + } + ] + } + ], + "index": 15.5, + "virtual_lines": [ + { + "bbox": [ + 215, + 316, + 389, + 330.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 215, + 330.0, + 389, + 344.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 349, + 260, + 361 + ], + "lines": [ + { + "bbox": [ + 106, + 348, + 261, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 348, + 133, + 363 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 349, + 257, + 362 + ], + "score": 0.9, + "content": "F \\in \\{ 2 0 0 , 3 0 0 , 4 0 0 , 5 0 0 , 6 0 0 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 348, + 261, + 363 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17, + "bbox_fs": [ + 106, + 348, + 261, + 363 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 361, + 505, + 427 + ], + "lines": [ + { + "bbox": [ + 106, + 360, + 504, + 373 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 504, + 373 + ], + "score": 1.0, + "content": "We compare with a humanoid agent trained in a single agent environment for the task of walking.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 371, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 505, + 384 + ], + "score": 1.0, + "content": "We used same LSTM policy architecture as used for the Sumo agent and trained the humanoid in the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 382, + 505, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 382, + 505, + 395 + ], + "score": 1.0, + "content": "publicly available OpenAI Gym Humanoid-v1 environment using PPO. We then apply force on this", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 393, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 506, + 407 + ], + "score": 1.0, + "content": "agent using the same method as above where the direction of the force is in the direction the agent", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 405, + 506, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 506, + 417 + ], + "score": 1.0, + "content": "is walking in half the episodes and opposite to it in the remaining half. We record average number", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 415, + 360, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 360, + 429 + ], + "score": 1.0, + "content": "of steps to fall using the same condition as for the Sumo agent.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 360, + 506, + 429 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 427, + 504, + 460 + ], + "lines": [ + { + "bbox": [ + 105, + 426, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 505, + 438 + ], + "score": 1.0, + "content": "Table 2 shows the average number of steps over 200 episodes along with the standard deviation. We", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 437, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 505, + 449 + ], + "score": 1.0, + "content": "see that the humanoid trained in Sumo is more robust to adversarial forces and able to withstand", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 448, + 270, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 270, + 461 + ], + "score": 1.0, + "content": "large magnitude of force for many steps.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 426, + 505, + 461 + ] + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/Sy0GnUxCb/Sy0GnUxCb_model.json b/parse/train/Sy0GnUxCb/Sy0GnUxCb_model.json new file mode 100644 index 0000000000000000000000000000000000000000..0f59ffc72643828daf7e452ed658b34aa68aa76e --- /dev/null +++ b/parse/train/Sy0GnUxCb/Sy0GnUxCb_model.json @@ -0,0 +1,15973 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1417, + 1404, + 1417, + 1404, + 1812, + 298, + 1812 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1186, + 1404, + 1186, + 1404, + 1399, + 298, + 1399 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 398, + 590, + 1302, + 590, + 1302, + 834, + 398, + 834 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 398, + 841, + 1302, + 841, + 1302, + 1053, + 398, + 1053 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 299, + 1828, + 1401, + 1828, + 1401, + 1982, + 299, + 1982 + ], + "score": 0.969 + }, + { + "category_id": 0, + "poly": [ + 299, + 220, + 1225, + 220, + 1225, + 322, + 299, + 322 + ], + "score": 0.946 + }, + { + "category_id": 2, + "poly": [ + 324, + 2006, + 1192, + 2006, + 1192, + 2033, + 324, + 2033 + ], + "score": 0.898 + }, + { + "category_id": 0, + "poly": [ + 302, + 1116, + 573, + 1116, + 573, + 1150, + 302, + 1150 + ], + "score": 0.892 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.883 + }, + { + "category_id": 1, + "poly": [ + 539, + 377, + 731, + 377, + 731, + 439, + 539, + 439 + ], + "score": 0.875 + }, + { + "category_id": 0, + "poly": [ + 773, + 520, + 927, + 520, + 927, + 553, + 773, + 553 + ], + "score": 0.844 + }, + { + "category_id": 1, + "poly": [ + 770, + 378, + 941, + 378, + 941, + 439, + 770, + 439 + ], + "score": 0.814 + }, + { + "category_id": 1, + "poly": [ + 979, + 378, + 1154, + 378, + 1154, + 439, + 979, + 439 + ], + "score": 0.783 + }, + { + "category_id": 1, + "poly": [ + 1189, + 379, + 1373, + 379, + 1373, + 440, + 1189, + 440 + ], + "score": 0.724 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 857, + 2089, + 857, + 2112, + 841, + 2112 + ], + "score": 0.68 + }, + { + "category_id": 1, + "poly": [ + 314, + 377, + 498, + 377, + 498, + 438, + 314, + 438 + ], + "score": 0.446 + }, + { + "category_id": 15, + "poly": [ + 294.0, + 215.0, + 1229.0, + 215.0, + 1229.0, + 272.0, + 294.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 274.0, + 598.0, + 274.0, + 598.0, + 328.0, + 297.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 2002.0, + 1196.0, + 2002.0, + 1196.0, + 2038.0, + 328.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1112.0, + 579.0, + 1112.0, + 579.0, + 1158.0, + 294.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 516.0, + 934.0, + 516.0, + 934.0, + 559.0, + 768.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2088.0, + 861.0, + 2088.0, + 861.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1419.0, + 1402.0, + 1419.0, + 1402.0, + 1451.0, + 296.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1446.0, + 1404.0, + 1446.0, + 1404.0, + 1480.0, + 293.0, + 1480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1479.0, + 1404.0, + 1479.0, + 1404.0, + 1511.0, + 296.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1504.0, + 1406.0, + 1504.0, + 1406.0, + 1545.0, + 293.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1541.0, + 1404.0, + 1541.0, + 1404.0, + 1573.0, + 296.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1568.0, + 1404.0, + 1568.0, + 1404.0, + 1605.0, + 293.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1602.0, + 1404.0, + 1602.0, + 1404.0, + 1634.0, + 294.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1627.0, + 1405.0, + 1627.0, + 1405.0, + 1665.0, + 293.0, + 1665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1657.0, + 1406.0, + 1657.0, + 1406.0, + 1698.0, + 292.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1687.0, + 1406.0, + 1687.0, + 1406.0, + 1728.0, + 292.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1720.0, + 1404.0, + 1720.0, + 1404.0, + 1756.0, + 294.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1745.0, + 1405.0, + 1745.0, + 1405.0, + 1794.0, + 291.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1782.0, + 452.0, + 1782.0, + 452.0, + 1817.0, + 293.0, + 1817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1185.0, + 1405.0, + 1185.0, + 1405.0, + 1219.0, + 294.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1215.0, + 1403.0, + 1215.0, + 1403.0, + 1251.0, + 295.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1245.0, + 1405.0, + 1245.0, + 1405.0, + 1280.0, + 295.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1277.0, + 1404.0, + 1277.0, + 1404.0, + 1313.0, + 293.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1306.0, + 1404.0, + 1306.0, + 1404.0, + 1343.0, + 293.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1338.0, + 1405.0, + 1338.0, + 1405.0, + 1373.0, + 293.0, + 1373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1371.0, + 619.0, + 1371.0, + 619.0, + 1401.0, + 296.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 592.0, + 1305.0, + 592.0, + 1305.0, + 625.0, + 395.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 622.0, + 1305.0, + 622.0, + 1305.0, + 655.0, + 394.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 650.0, + 1305.0, + 650.0, + 1305.0, + 688.0, + 393.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 682.0, + 1307.0, + 682.0, + 1307.0, + 717.0, + 393.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 714.0, + 1306.0, + 714.0, + 1306.0, + 747.0, + 394.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 741.0, + 1306.0, + 741.0, + 1306.0, + 778.0, + 393.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 774.0, + 1305.0, + 774.0, + 1305.0, + 808.0, + 394.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 802.0, + 1276.0, + 802.0, + 1276.0, + 840.0, + 392.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 839.0, + 1304.0, + 839.0, + 1304.0, + 876.0, + 395.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 869.0, + 1308.0, + 869.0, + 1308.0, + 906.0, + 394.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 900.0, + 1306.0, + 900.0, + 1306.0, + 935.0, + 394.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 930.0, + 1306.0, + 930.0, + 1306.0, + 967.0, + 393.0, + 967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 960.0, + 1306.0, + 960.0, + 1306.0, + 999.0, + 392.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 990.0, + 1305.0, + 990.0, + 1305.0, + 1026.0, + 393.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1022.0, + 652.0, + 1022.0, + 652.0, + 1057.0, + 392.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1828.0, + 1403.0, + 1828.0, + 1403.0, + 1861.0, + 297.0, + 1861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1859.0, + 1402.0, + 1859.0, + 1402.0, + 1892.0, + 295.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1888.0, + 1405.0, + 1888.0, + 1405.0, + 1924.0, + 294.0, + 1924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1920.0, + 1406.0, + 1920.0, + 1406.0, + 1957.0, + 294.0, + 1957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1949.0, + 1407.0, + 1949.0, + 1407.0, + 1987.0, + 292.0, + 1987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 375.0, + 735.0, + 375.0, + 735.0, + 410.0, + 535.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 533.0, + 404.0, + 638.0, + 404.0, + 638.0, + 442.0, + 533.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 375.0, + 944.0, + 375.0, + 944.0, + 412.0, + 768.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 405.0, + 872.0, + 405.0, + 872.0, + 442.0, + 764.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 373.0, + 1159.0, + 373.0, + 1159.0, + 412.0, + 978.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 405.0, + 1079.0, + 405.0, + 1079.0, + 442.0, + 975.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 374.0, + 1377.0, + 374.0, + 1377.0, + 410.0, + 1189.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 404.0, + 1294.0, + 404.0, + 1294.0, + 445.0, + 1189.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 375.0, + 493.0, + 375.0, + 493.0, + 411.0, + 311.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 406.0, + 503.0, + 406.0, + 503.0, + 439.0, + 313.0, + 439.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 308, + 1404, + 308, + 1404, + 614, + 297, + 614 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 811, + 1405, + 811, + 1405, + 1125, + 297, + 1125 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1139, + 1404, + 1139, + 1404, + 1506, + 297, + 1506 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 296, + 1520, + 1404, + 1520, + 1404, + 1926, + 296, + 1926 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 300, + 1942, + 1402, + 1942, + 1402, + 2034, + 300, + 2034 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 299, + 734, + 1397, + 734, + 1397, + 797, + 299, + 797 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 296, + 229, + 1401, + 229, + 1401, + 292, + 296, + 292 + ], + "score": 0.945 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.896 + }, + { + "category_id": 0, + "poly": [ + 300, + 662, + 578, + 662, + 578, + 697, + 300, + 697 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.708 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.107 + }, + { + "category_id": 13, + "poly": [ + 437, + 1673, + 665, + 1673, + 665, + 1723, + 437, + 1723 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { l _ { t } ( \\theta ) ~ = ~ \\frac { \\pi _ { \\theta } ^ { - } \\left( a _ { t } | s _ { t } \\right) ^ { - } } { \\pi _ { \\theta _ { o l d } } \\left( a _ { t } | s _ { t } \\right) } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 298, + 1086, + 487, + 1086, + 487, + 1129, + 298, + 1129 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { R ^ { i } = \\sum _ { t = 0 } ^ { T } \\gamma ^ { t } r _ { t } ^ { i } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1150, + 1291, + 1393, + 1291, + 1393, + 1325, + 1150, + 1325 + ], + "score": 0.93, + "latex": "g : = \\mathbb { E } \\left[ A _ { t } \\nabla _ { \\theta } \\log \\pi _ { \\theta } \\right]" + }, + { + "category_id": 13, + "poly": [ + 962, + 902, + 1103, + 902, + 1103, + 936, + 962, + 936 + ], + "score": 0.93, + "latex": "\\mathcal { A } ^ { 1 } , \\ldots , \\mathcal { A } ^ { \\tilde { N } }" + }, + { + "category_id": 13, + "poly": [ + 908, + 1772, + 1061, + 1772, + 1061, + 1806, + 908, + 1806 + ], + "score": 0.92, + "latex": "[ 1 - \\epsilon , 1 + \\epsilon ]" + }, + { + "category_id": 13, + "poly": [ + 350, + 1351, + 487, + 1351, + 487, + 1387, + 350, + 1387 + ], + "score": 0.92, + "latex": "\\boldsymbol { A } _ { t } = \\sum _ { t } \\boldsymbol { r } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 656, + 994, + 922, + 994, + 922, + 1028, + 656, + 1028 + ], + "score": 0.92, + "latex": "\\pi _ { \\theta ^ { i } } : \\mathcal { O } ^ { i } \\times \\mathcal { A } ^ { i } [ 0 , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 844, + 964, + 1064, + 964, + 1064, + 994, + 844, + 994 + ], + "score": 0.91, + "latex": "r ^ { i } : \\mathcal { S } \\times \\mathcal { A } ^ { i } \\to \\mathbb { R }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1720, + 860, + 1720, + 860, + 1775, + 296, + 1775 + ], + "score": 0.9, + "latex": "L = \\mathbb { E } \\left[ \\operatorname* { m i n } ( l _ { t } ( \\theta ) \\hat { A } _ { t } , \\operatorname { c l i p } ( l _ { t } ( \\theta ) , 1 - \\epsilon , 1 + \\epsilon ) \\hat { A } _ { t } ) \\right]" + }, + { + "category_id": 13, + "poly": [ + 297, + 933, + 536, + 933, + 536, + 964, + 297, + 964 + ], + "score": 0.9, + "latex": "\\mathcal { S } \\times \\mathcal { A } ^ { 1 } \\cdot \\cdot \\cdot \\mathcal { A } ^ { N } \\to \\mathcal { S }" + }, + { + "category_id": 13, + "poly": [ + 298, + 902, + 441, + 902, + 441, + 934, + 298, + 934 + ], + "score": 0.89, + "latex": "\\mathcal { O } ^ { 1 } , \\ldots , \\mathcal { O } ^ { N }" + }, + { + "category_id": 13, + "poly": [ + 946, + 1726, + 980, + 1726, + 980, + 1762, + 946, + 1762 + ], + "score": 0.89, + "latex": "\\hat { A } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 523, + 1323, + 555, + 1323, + 555, + 1353, + 523, + 1353 + ], + "score": 0.88, + "latex": "A _ { t }" + }, + { + "category_id": 13, + "poly": [ + 680, + 1774, + 736, + 1774, + 736, + 1807, + 680, + 1807 + ], + "score": 0.87, + "latex": "l _ { t } ( \\theta )" + }, + { + "category_id": 13, + "poly": [ + 859, + 1031, + 890, + 1031, + 890, + 1057, + 859, + 1057 + ], + "score": 0.86, + "latex": "\\pi _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 1009, + 995, + 1035, + 995, + 1035, + 1023, + 1009, + 1023 + ], + "score": 0.85, + "latex": "\\theta ^ { i }" + }, + { + "category_id": 13, + "poly": [ + 859, + 1093, + 883, + 1093, + 883, + 1120, + 859, + 1120 + ], + "score": 0.83, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 572, + 1097, + 593, + 1097, + 593, + 1125, + 572, + 1125 + ], + "score": 0.82, + "latex": "\\gamma" + }, + { + "category_id": 13, + "poly": [ + 1295, + 814, + 1323, + 814, + 1323, + 840, + 1295, + 840 + ], + "score": 0.82, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 868, + 1060, + 881, + 1060, + 881, + 1084, + 868, + 1084 + ], + "score": 0.8, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 346, + 1775, + 612, + 1775, + 612, + 1807, + 346, + 1807 + ], + "score": 0.79, + "latex": "\\mathrm { c l i p } ( l _ { t } ( \\theta ) , 1 - \\epsilon , 1 + \\epsilon )" + }, + { + "category_id": 13, + "poly": [ + 1254, + 845, + 1277, + 845, + 1277, + 871, + 1254, + 871 + ], + "score": 0.79, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 711, + 1058, + 728, + 1058, + 728, + 1084, + 711, + 1084 + ], + "score": 0.74, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 1313, + 937, + 1327, + 937, + 1327, + 962, + 1313, + 962 + ], + "score": 0.73, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 1355, + 904, + 1404, + 904, + 1404, + 934, + 1355, + 934 + ], + "score": 0.41, + "latex": "\\tau :" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 659.0, + 582.0, + 659.0, + 582.0, + 703.0, + 293.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 307.0, + 1405.0, + 307.0, + 1405.0, + 343.0, + 294.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 339.0, + 1404.0, + 339.0, + 1404.0, + 371.0, + 296.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 370.0, + 1405.0, + 370.0, + 1405.0, + 401.0, + 295.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 399.0, + 1404.0, + 399.0, + 1404.0, + 434.0, + 295.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 429.0, + 1405.0, + 429.0, + 1405.0, + 465.0, + 295.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 458.0, + 1405.0, + 458.0, + 1405.0, + 495.0, + 292.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 491.0, + 1402.0, + 491.0, + 1402.0, + 523.0, + 295.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 518.0, + 1405.0, + 518.0, + 1405.0, + 559.0, + 292.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 551.0, + 1405.0, + 551.0, + 1405.0, + 587.0, + 295.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 582.0, + 1189.0, + 582.0, + 1189.0, + 617.0, + 294.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 809.0, + 1294.0, + 809.0, + 1294.0, + 848.0, + 294.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1324.0, + 809.0, + 1406.0, + 809.0, + 1406.0, + 848.0, + 1324.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 841.0, + 1253.0, + 841.0, + 1253.0, + 879.0, + 292.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1278.0, + 841.0, + 1405.0, + 841.0, + 1405.0, + 879.0, + 1278.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 871.0, + 1403.0, + 871.0, + 1403.0, + 907.0, + 294.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 894.0, + 297.0, + 894.0, + 297.0, + 943.0, + 294.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 442.0, + 894.0, + 961.0, + 894.0, + 961.0, + 943.0, + 442.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1104.0, + 894.0, + 1354.0, + 894.0, + 1354.0, + 943.0, + 1104.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 925.0, + 296.0, + 925.0, + 296.0, + 973.0, + 291.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 537.0, + 925.0, + 1312.0, + 925.0, + 1312.0, + 973.0, + 537.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1328.0, + 925.0, + 1406.0, + 925.0, + 1406.0, + 973.0, + 1328.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 963.0, + 843.0, + 963.0, + 843.0, + 1000.0, + 291.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 963.0, + 1405.0, + 963.0, + 1405.0, + 1000.0, + 1065.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 993.0, + 655.0, + 993.0, + 655.0, + 1031.0, + 292.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 923.0, + 993.0, + 1008.0, + 993.0, + 1008.0, + 1031.0, + 923.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 993.0, + 1405.0, + 993.0, + 1405.0, + 1031.0, + 1036.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1022.0, + 858.0, + 1022.0, + 858.0, + 1061.0, + 294.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 1022.0, + 1405.0, + 1022.0, + 1405.0, + 1061.0, + 891.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1056.0, + 710.0, + 1056.0, + 710.0, + 1092.0, + 295.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 1056.0, + 867.0, + 1056.0, + 867.0, + 1092.0, + 729.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 1056.0, + 1405.0, + 1056.0, + 1405.0, + 1092.0, + 882.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1082.0, + 297.0, + 1082.0, + 297.0, + 1139.0, + 290.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 1082.0, + 571.0, + 1082.0, + 571.0, + 1139.0, + 488.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 594.0, + 1082.0, + 858.0, + 1082.0, + 858.0, + 1139.0, + 594.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 1082.0, + 1105.0, + 1082.0, + 1105.0, + 1139.0, + 884.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1136.0, + 1405.0, + 1136.0, + 1405.0, + 1175.0, + 292.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1167.0, + 1405.0, + 1167.0, + 1405.0, + 1206.0, + 292.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1196.0, + 1405.0, + 1196.0, + 1405.0, + 1236.0, + 292.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1230.0, + 1402.0, + 1230.0, + 1402.0, + 1264.0, + 296.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1263.0, + 1404.0, + 1263.0, + 1404.0, + 1293.0, + 296.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1288.0, + 1149.0, + 1288.0, + 1149.0, + 1327.0, + 294.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1288.0, + 1402.0, + 1288.0, + 1402.0, + 1327.0, + 1394.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1323.0, + 522.0, + 1323.0, + 522.0, + 1357.0, + 295.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 1323.0, + 1404.0, + 1323.0, + 1404.0, + 1357.0, + 556.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1350.0, + 349.0, + 1350.0, + 349.0, + 1387.0, + 292.0, + 1387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 1350.0, + 1405.0, + 1350.0, + 1405.0, + 1387.0, + 488.0, + 1387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1380.0, + 1406.0, + 1380.0, + 1406.0, + 1419.0, + 292.0, + 1419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1412.0, + 1405.0, + 1412.0, + 1405.0, + 1447.0, + 295.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1444.0, + 1406.0, + 1444.0, + 1406.0, + 1478.0, + 295.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1475.0, + 1231.0, + 1475.0, + 1231.0, + 1509.0, + 295.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1517.0, + 1404.0, + 1517.0, + 1404.0, + 1556.0, + 293.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1551.0, + 1405.0, + 1551.0, + 1405.0, + 1586.0, + 295.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1579.0, + 1402.0, + 1579.0, + 1402.0, + 1618.0, + 294.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1612.0, + 1402.0, + 1612.0, + 1402.0, + 1646.0, + 295.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1640.0, + 1405.0, + 1640.0, + 1405.0, + 1679.0, + 291.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1671.0, + 436.0, + 1671.0, + 436.0, + 1726.0, + 293.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 1671.0, + 1405.0, + 1671.0, + 1405.0, + 1726.0, + 666.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1722.0, + 295.0, + 1722.0, + 295.0, + 1770.0, + 291.0, + 1770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 1722.0, + 945.0, + 1722.0, + 945.0, + 1770.0, + 861.0, + 1770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 981.0, + 1722.0, + 1406.0, + 1722.0, + 1406.0, + 1770.0, + 981.0, + 1770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1770.0, + 345.0, + 1770.0, + 345.0, + 1808.0, + 295.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 1770.0, + 679.0, + 1770.0, + 679.0, + 1808.0, + 613.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 1770.0, + 907.0, + 1770.0, + 907.0, + 1808.0, + 737.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 1770.0, + 1404.0, + 1770.0, + 1404.0, + 1808.0, + 1062.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1802.0, + 1402.0, + 1802.0, + 1402.0, + 1836.0, + 295.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1835.0, + 1404.0, + 1835.0, + 1404.0, + 1869.0, + 295.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1865.0, + 1405.0, + 1865.0, + 1405.0, + 1899.0, + 295.0, + 1899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1895.0, + 1161.0, + 1895.0, + 1161.0, + 1927.0, + 295.0, + 1927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1939.0, + 1406.0, + 1939.0, + 1406.0, + 1978.0, + 293.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1974.0, + 1404.0, + 1974.0, + 1404.0, + 2007.0, + 296.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2004.0, + 1404.0, + 2004.0, + 1404.0, + 2037.0, + 295.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 735.0, + 1401.0, + 735.0, + 1401.0, + 771.0, + 295.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 763.0, + 1099.0, + 763.0, + 1099.0, + 800.0, + 294.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 229.0, + 1405.0, + 229.0, + 1405.0, + 264.0, + 296.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 262.0, + 650.0, + 262.0, + 650.0, + 294.0, + 296.0, + 294.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 229, + 1405, + 229, + 1405, + 1144, + 298, + 1144 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1603, + 1403, + 1603, + 1403, + 1788, + 298, + 1788 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 1803, + 1402, + 1803, + 1402, + 1926, + 299, + 1926 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 299, + 1942, + 1402, + 1942, + 1402, + 2035, + 299, + 2035 + ], + "score": 0.972 + }, + { + "category_id": 3, + "poly": [ + 298, + 1272, + 1400, + 1272, + 1400, + 1477, + 298, + 1477 + ], + "score": 0.965 + }, + { + "category_id": 4, + "poly": [ + 296, + 1499, + 1400, + 1499, + 1400, + 1561, + 296, + 1561 + ], + "score": 0.92 + }, + { + "category_id": 0, + "poly": [ + 301, + 1192, + 792, + 1192, + 792, + 1226, + 301, + 1226 + ], + "score": 0.906 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.889 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.595 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 859, + 2088, + 859, + 2111, + 842, + 2111 + ], + "score": 0.422 + }, + { + "category_id": 13, + "poly": [ + 733, + 1865, + 810, + 1865, + 810, + 1893, + 733, + 1893 + ], + "score": 0.87, + "latex": "+ 1 0 0 0" + }, + { + "category_id": 13, + "poly": [ + 560, + 1757, + 647, + 1757, + 647, + 1786, + 560, + 1786 + ], + "score": 0.27, + "latex": "1 2 \\mathrm { D o F }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1497.0, + 1404.0, + 1497.0, + 1404.0, + 1533.0, + 295.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1531.0, + 729.0, + 1531.0, + 729.0, + 1563.0, + 295.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1185.0, + 798.0, + 1185.0, + 798.0, + 1233.0, + 290.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 860.0, + 2085.0, + 860.0, + 2116.0, + 839.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 230.0, + 1403.0, + 230.0, + 1403.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 256.0, + 1405.0, + 256.0, + 1405.0, + 300.0, + 292.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 284.0, + 1409.0, + 284.0, + 1409.0, + 333.0, + 291.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 321.0, + 1405.0, + 321.0, + 1405.0, + 357.0, + 293.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 352.0, + 1406.0, + 352.0, + 1406.0, + 388.0, + 291.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 382.0, + 1405.0, + 382.0, + 1405.0, + 418.0, + 293.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 407.0, + 1406.0, + 407.0, + 1406.0, + 454.0, + 291.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 442.0, + 1407.0, + 442.0, + 1407.0, + 480.0, + 291.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 475.0, + 1405.0, + 475.0, + 1405.0, + 510.0, + 295.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 504.0, + 1405.0, + 504.0, + 1405.0, + 538.0, + 292.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 534.0, + 1405.0, + 534.0, + 1405.0, + 570.0, + 295.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 563.0, + 1405.0, + 563.0, + 1405.0, + 603.0, + 292.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 598.0, + 1403.0, + 598.0, + 1403.0, + 629.0, + 295.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 626.0, + 1403.0, + 626.0, + 1403.0, + 661.0, + 295.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 651.0, + 1406.0, + 651.0, + 1406.0, + 695.0, + 292.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 689.0, + 1402.0, + 689.0, + 1402.0, + 721.0, + 296.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 717.0, + 1405.0, + 717.0, + 1405.0, + 751.0, + 293.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 746.0, + 1406.0, + 746.0, + 1406.0, + 787.0, + 292.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 778.0, + 1405.0, + 778.0, + 1405.0, + 813.0, + 293.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 806.0, + 1406.0, + 806.0, + 1406.0, + 846.0, + 292.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 835.0, + 1406.0, + 835.0, + 1406.0, + 881.0, + 292.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 868.0, + 1406.0, + 868.0, + 1406.0, + 906.0, + 293.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 897.0, + 1405.0, + 897.0, + 1405.0, + 936.0, + 293.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 931.0, + 1402.0, + 931.0, + 1402.0, + 963.0, + 296.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 957.0, + 1406.0, + 957.0, + 1406.0, + 1000.0, + 291.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 991.0, + 1405.0, + 991.0, + 1405.0, + 1029.0, + 291.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1020.0, + 1405.0, + 1020.0, + 1405.0, + 1058.0, + 293.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1051.0, + 1405.0, + 1051.0, + 1405.0, + 1087.0, + 293.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1082.0, + 1405.0, + 1082.0, + 1405.0, + 1117.0, + 293.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1114.0, + 1160.0, + 1114.0, + 1160.0, + 1150.0, + 295.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1603.0, + 1405.0, + 1603.0, + 1405.0, + 1640.0, + 294.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1634.0, + 1407.0, + 1634.0, + 1407.0, + 1669.0, + 293.0, + 1669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1666.0, + 1403.0, + 1666.0, + 1403.0, + 1698.0, + 296.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1697.0, + 1405.0, + 1697.0, + 1405.0, + 1729.0, + 294.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1727.0, + 1405.0, + 1727.0, + 1405.0, + 1759.0, + 296.0, + 1759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1755.0, + 559.0, + 1755.0, + 559.0, + 1792.0, + 293.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 1755.0, + 1408.0, + 1755.0, + 1408.0, + 1792.0, + 648.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1801.0, + 1406.0, + 1801.0, + 1406.0, + 1838.0, + 293.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1834.0, + 1406.0, + 1834.0, + 1406.0, + 1869.0, + 294.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1864.0, + 732.0, + 1864.0, + 732.0, + 1901.0, + 294.0, + 1901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 811.0, + 1864.0, + 1406.0, + 1864.0, + 1406.0, + 1901.0, + 811.0, + 1901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1896.0, + 758.0, + 1896.0, + 758.0, + 1927.0, + 294.0, + 1927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1940.0, + 1404.0, + 1940.0, + 1404.0, + 1976.0, + 297.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1973.0, + 1406.0, + 1973.0, + 1406.0, + 2007.0, + 295.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 1407.0, + 2002.0, + 1407.0, + 2039.0, + 294.0, + 2039.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1407, + 1404, + 1407, + 1404, + 1834, + 298, + 1834 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 806, + 1404, + 806, + 1404, + 1203, + 298, + 1203 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 446, + 1404, + 446, + 1404, + 691, + 298, + 691 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 299, + 1850, + 1402, + 1850, + 1402, + 2034, + 299, + 2034 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 338, + 1400, + 338, + 1400, + 431, + 298, + 431 + ], + "score": 0.962 + }, + { + "category_id": 1, + "poly": [ + 302, + 1219, + 1397, + 1219, + 1397, + 1312, + 302, + 1312 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 300, + 229, + 1398, + 229, + 1398, + 321, + 300, + 321 + ], + "score": 0.949 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.897 + }, + { + "category_id": 0, + "poly": [ + 301, + 1350, + 709, + 1350, + 709, + 1380, + 301, + 1380 + ], + "score": 0.875 + }, + { + "category_id": 0, + "poly": [ + 301, + 736, + 831, + 736, + 831, + 771, + 301, + 771 + ], + "score": 0.832 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2111, + 841, + 2111 + ], + "score": 0.755 + }, + { + "category_id": 13, + "poly": [ + 520, + 231, + 596, + 231, + 596, + 260, + 520, + 260 + ], + "score": 0.89, + "latex": "+ 1 0 0 0" + }, + { + "category_id": 13, + "poly": [ + 1238, + 369, + 1314, + 369, + 1314, + 398, + 1238, + 398 + ], + "score": 0.87, + "latex": "+ 1 0 0 0" + }, + { + "category_id": 13, + "poly": [ + 590, + 508, + 666, + 508, + 666, + 537, + 590, + 537 + ], + "score": 0.87, + "latex": "+ 1 0 0 0" + }, + { + "category_id": 13, + "poly": [ + 1151, + 262, + 1229, + 262, + 1229, + 291, + 1151, + 291 + ], + "score": 0.87, + "latex": "+ 1 0 0 0" + }, + { + "category_id": 13, + "poly": [ + 1333, + 630, + 1394, + 630, + 1394, + 659, + 1333, + 659 + ], + "score": 0.86, + "latex": "+ 5 0 0" + }, + { + "category_id": 13, + "poly": [ + 1034, + 599, + 1096, + 599, + 1096, + 628, + 1034, + 628 + ], + "score": 0.86, + "latex": "+ 5 0 0" + }, + { + "category_id": 13, + "poly": [ + 1326, + 2007, + 1352, + 2007, + 1352, + 2034, + 1326, + 2034 + ], + "score": 0.85, + "latex": "s _ { t }" + }, + { + "category_id": 13, + "poly": [ + 776, + 2016, + 794, + 2016, + 794, + 2030, + 776, + 2030 + ], + "score": 0.78, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 993, + 2007, + 1005, + 2007, + 1005, + 2030, + 993, + 2030 + ], + "score": 0.68, + "latex": "t" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1349.0, + 713.0, + 1349.0, + 713.0, + 1384.0, + 295.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 731.0, + 836.0, + 731.0, + 836.0, + 777.0, + 292.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2086.0, + 862.0, + 2086.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1404.0, + 1406.0, + 1404.0, + 1406.0, + 1443.0, + 294.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1441.0, + 1405.0, + 1441.0, + 1405.0, + 1472.0, + 297.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1468.0, + 1404.0, + 1468.0, + 1404.0, + 1504.0, + 294.0, + 1504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1498.0, + 1405.0, + 1498.0, + 1405.0, + 1534.0, + 292.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1529.0, + 1404.0, + 1529.0, + 1404.0, + 1564.0, + 293.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1561.0, + 1406.0, + 1561.0, + 1406.0, + 1596.0, + 294.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1590.0, + 1406.0, + 1590.0, + 1406.0, + 1624.0, + 292.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1621.0, + 1406.0, + 1621.0, + 1406.0, + 1653.0, + 293.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1648.0, + 1405.0, + 1648.0, + 1405.0, + 1688.0, + 293.0, + 1688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1680.0, + 1407.0, + 1680.0, + 1407.0, + 1718.0, + 293.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1712.0, + 1406.0, + 1712.0, + 1406.0, + 1747.0, + 293.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1742.0, + 1404.0, + 1742.0, + 1404.0, + 1778.0, + 294.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1770.0, + 1405.0, + 1770.0, + 1405.0, + 1812.0, + 292.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1803.0, + 1061.0, + 1803.0, + 1061.0, + 1841.0, + 293.0, + 1841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 804.0, + 1405.0, + 804.0, + 1405.0, + 841.0, + 293.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 834.0, + 1408.0, + 834.0, + 1408.0, + 874.0, + 293.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 867.0, + 1406.0, + 867.0, + 1406.0, + 904.0, + 294.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 900.0, + 1402.0, + 900.0, + 1402.0, + 932.0, + 296.0, + 932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 928.0, + 1401.0, + 928.0, + 1401.0, + 960.0, + 297.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 957.0, + 1406.0, + 957.0, + 1406.0, + 995.0, + 293.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 989.0, + 1406.0, + 989.0, + 1406.0, + 1025.0, + 294.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1019.0, + 1407.0, + 1019.0, + 1407.0, + 1055.0, + 292.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1050.0, + 1406.0, + 1050.0, + 1406.0, + 1086.0, + 294.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1080.0, + 1405.0, + 1080.0, + 1405.0, + 1116.0, + 294.0, + 1116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1111.0, + 1404.0, + 1111.0, + 1404.0, + 1147.0, + 294.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1140.0, + 1406.0, + 1140.0, + 1406.0, + 1175.0, + 292.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1171.0, + 1345.0, + 1171.0, + 1345.0, + 1208.0, + 296.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 445.0, + 1405.0, + 445.0, + 1405.0, + 482.0, + 294.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 476.0, + 1405.0, + 476.0, + 1405.0, + 510.0, + 294.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 505.0, + 589.0, + 505.0, + 589.0, + 545.0, + 292.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 505.0, + 1405.0, + 505.0, + 1405.0, + 545.0, + 667.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 537.0, + 1408.0, + 537.0, + 1408.0, + 574.0, + 294.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 568.0, + 1406.0, + 568.0, + 1406.0, + 602.0, + 296.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 598.0, + 1033.0, + 598.0, + 1033.0, + 632.0, + 294.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 598.0, + 1406.0, + 598.0, + 1406.0, + 632.0, + 1097.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 630.0, + 1332.0, + 630.0, + 1332.0, + 663.0, + 292.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 630.0, + 1404.0, + 630.0, + 1404.0, + 663.0, + 1395.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 658.0, + 1237.0, + 658.0, + 1237.0, + 694.0, + 295.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1849.0, + 1404.0, + 1849.0, + 1404.0, + 1885.0, + 297.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1881.0, + 1406.0, + 1881.0, + 1406.0, + 1917.0, + 294.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1913.0, + 1403.0, + 1913.0, + 1403.0, + 1945.0, + 297.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1942.0, + 1406.0, + 1942.0, + 1406.0, + 1978.0, + 294.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1972.0, + 1406.0, + 1972.0, + 1406.0, + 2008.0, + 295.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2004.0, + 775.0, + 2004.0, + 775.0, + 2036.0, + 294.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 2004.0, + 992.0, + 2004.0, + 992.0, + 2036.0, + 795.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 2004.0, + 1325.0, + 2004.0, + 1325.0, + 2036.0, + 1006.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1353.0, + 2004.0, + 1404.0, + 2004.0, + 1404.0, + 2036.0, + 1353.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 336.0, + 1406.0, + 336.0, + 1406.0, + 374.0, + 294.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 369.0, + 1237.0, + 369.0, + 1237.0, + 403.0, + 294.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1315.0, + 369.0, + 1404.0, + 369.0, + 1404.0, + 403.0, + 1315.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 398.0, + 1061.0, + 398.0, + 1061.0, + 434.0, + 293.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1216.0, + 1405.0, + 1216.0, + 1405.0, + 1256.0, + 296.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1247.0, + 1403.0, + 1247.0, + 1403.0, + 1287.0, + 294.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1281.0, + 1189.0, + 1281.0, + 1189.0, + 1315.0, + 297.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 227.0, + 519.0, + 227.0, + 519.0, + 268.0, + 294.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 227.0, + 1407.0, + 227.0, + 1407.0, + 268.0, + 597.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 257.0, + 1150.0, + 257.0, + 1150.0, + 298.0, + 294.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1230.0, + 257.0, + 1406.0, + 257.0, + 1406.0, + 298.0, + 1230.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 291.0, + 599.0, + 291.0, + 599.0, + 324.0, + 295.0, + 324.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1089, + 1405, + 1089, + 1405, + 1426, + 298, + 1426 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 688, + 1404, + 688, + 1404, + 994, + 297, + 994 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1819, + 1403, + 1819, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 1541, + 1403, + 1541, + 1403, + 1725, + 299, + 1725 + ], + "score": 0.977 + }, + { + "category_id": 3, + "poly": [ + 312, + 223, + 1394, + 223, + 1394, + 471, + 312, + 471 + ], + "score": 0.954 + }, + { + "category_id": 8, + "poly": [ + 659, + 635, + 1042, + 635, + 1042, + 674, + 659, + 674 + ], + "score": 0.938 + }, + { + "category_id": 1, + "poly": [ + 297, + 587, + 1172, + 587, + 1172, + 620, + 297, + 620 + ], + "score": 0.931 + }, + { + "category_id": 4, + "poly": [ + 365, + 496, + 1329, + 496, + 1329, + 529, + 365, + 529 + ], + "score": 0.917 + }, + { + "category_id": 0, + "poly": [ + 300, + 1032, + 631, + 1032, + 631, + 1062, + 300, + 1062 + ], + "score": 0.901 + }, + { + "category_id": 0, + "poly": [ + 300, + 1472, + 557, + 1472, + 557, + 1506, + 300, + 1506 + ], + "score": 0.892 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.888 + }, + { + "category_id": 9, + "poly": [ + 1367, + 640, + 1399, + 640, + 1399, + 669, + 1367, + 669 + ], + "score": 0.88 + }, + { + "category_id": 0, + "poly": [ + 300, + 1763, + 665, + 1763, + 665, + 1793, + 300, + 1793 + ], + "score": 0.75 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.714 + }, + { + "category_id": 0, + "poly": [ + 299, + 1763, + 665, + 1763, + 665, + 1793, + 299, + 1793 + ], + "score": 0.496 + }, + { + "category_id": 14, + "poly": [ + 658, + 635, + 1042, + 635, + 1042, + 673, + 658, + 673 + ], + "score": 0.92, + "latex": "r _ { t } = \\alpha _ { t } s _ { t } + ( 1 - \\alpha _ { t } ) \\mathbb { I } [ t = = T ] R" + }, + { + "category_id": 13, + "poly": [ + 1000, + 781, + 1091, + 781, + 1091, + 810, + 1000, + 810 + ], + "score": 0.88, + "latex": "10 \\mathrm { - } 1 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 545, + 590, + 570, + 590, + 570, + 616, + 545, + 616 + ], + "score": 0.84, + "latex": "R" + }, + { + "category_id": 13, + "poly": [ + 619, + 590, + 643, + 590, + 643, + 615, + 619, + 615 + ], + "score": 0.84, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 700, + 846, + 718, + 846, + 718, + 870, + 700, + 870 + ], + "score": 0.44, + "latex": "\\mathbf { X }" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 243.0, + 885.0, + 243.0, + 885.0, + 253.0, + 873.0, + 253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 258.0, + 891.0, + 258.0, + 891.0, + 272.0, + 874.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 272.0, + 891.0, + 272.0, + 891.0, + 288.0, + 874.0, + 288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 295.0, + 332.0, + 295.0, + 332.0, + 342.0, + 314.0, + 342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 290.0, + 890.0, + 290.0, + 890.0, + 342.0, + 854.0, + 342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 322.0, + 890.0, + 322.0, + 890.0, + 336.0, + 874.0, + 336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 330.0, + 340.0, + 330.0, + 340.0, + 340.0, + 330.0, + 340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 339.0, + 890.0, + 339.0, + 890.0, + 354.0, + 874.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 353.0, + 892.0, + 353.0, + 892.0, + 371.0, + 871.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 371.0, + 890.0, + 371.0, + 890.0, + 384.0, + 873.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 399.0, + 415.0, + 399.0, + 415.0, + 412.0, + 395.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 397.0, + 479.0, + 397.0, + 479.0, + 413.0, + 449.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 509.0, + 397.0, + 537.0, + 397.0, + 537.0, + 413.0, + 509.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 570.0, + 397.0, + 597.0, + 397.0, + 597.0, + 413.0, + 570.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 397.0, + 656.0, + 397.0, + 656.0, + 413.0, + 629.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 397.0, + 715.0, + 397.0, + 715.0, + 413.0, + 690.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 397.0, + 774.0, + 397.0, + 774.0, + 413.0, + 750.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 397.0, + 835.0, + 397.0, + 835.0, + 413.0, + 809.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 943.0, + 395.0, + 964.0, + 395.0, + 964.0, + 409.0, + 943.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 996.0, + 393.0, + 1027.0, + 393.0, + 1027.0, + 411.0, + 996.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 393.0, + 1084.0, + 393.0, + 1084.0, + 410.0, + 1054.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 395.0, + 1141.0, + 395.0, + 1141.0, + 409.0, + 1115.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 395.0, + 1200.0, + 395.0, + 1200.0, + 409.0, + 1173.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1231.0, + 394.0, + 1261.0, + 394.0, + 1261.0, + 411.0, + 1231.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1291.0, + 395.0, + 1317.0, + 395.0, + 1317.0, + 409.0, + 1291.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1349.0, + 395.0, + 1376.0, + 395.0, + 1376.0, + 409.0, + 1349.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 410.0, + 638.0, + 410.0, + 638.0, + 429.0, + 535.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1081.0, + 407.0, + 1217.0, + 407.0, + 1217.0, + 430.0, + 1081.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 436.0, + 731.0, + 436.0, + 731.0, + 474.0, + 429.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 986.0, + 436.0, + 1256.0, + 436.0, + 1256.0, + 475.0, + 986.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.25, + 267.0, + 1193.25, + 267.0, + 1193.25, + 314.5, + 964.25, + 314.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 491.0, + 1336.0, + 491.0, + 1336.0, + 537.0, + 362.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1031.0, + 635.0, + 1031.0, + 635.0, + 1066.0, + 295.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1467.0, + 562.0, + 1467.0, + 562.0, + 1512.0, + 291.0, + 1512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1761.0, + 669.0, + 1761.0, + 669.0, + 1798.0, + 294.0, + 1798.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, + 1761.0, + 668.0, + 1761.0, + 668.0, + 1798.0, + 294.0, + 1798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1090.0, + 1403.0, + 1090.0, + 1403.0, + 1125.0, + 293.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1120.0, + 1403.0, + 1120.0, + 1403.0, + 1157.0, + 295.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1149.0, + 1406.0, + 1149.0, + 1406.0, + 1188.0, + 293.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1182.0, + 1405.0, + 1182.0, + 1405.0, + 1217.0, + 295.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1210.0, + 1406.0, + 1210.0, + 1406.0, + 1248.0, + 292.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1243.0, + 1405.0, + 1243.0, + 1405.0, + 1277.0, + 295.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1271.0, + 1406.0, + 1271.0, + 1406.0, + 1308.0, + 292.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1305.0, + 1405.0, + 1305.0, + 1405.0, + 1339.0, + 295.0, + 1339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1329.0, + 1406.0, + 1329.0, + 1406.0, + 1371.0, + 292.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1362.0, + 1405.0, + 1362.0, + 1405.0, + 1400.0, + 293.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1392.0, + 1288.0, + 1392.0, + 1288.0, + 1431.0, + 293.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 686.0, + 1405.0, + 686.0, + 1405.0, + 723.0, + 294.0, + 723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 715.0, + 1405.0, + 715.0, + 1405.0, + 757.0, + 291.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 746.0, + 1406.0, + 746.0, + 1406.0, + 789.0, + 292.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 778.0, + 999.0, + 778.0, + 999.0, + 818.0, + 291.0, + 818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 778.0, + 1407.0, + 778.0, + 1407.0, + 818.0, + 1092.0, + 818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 804.0, + 1408.0, + 804.0, + 1408.0, + 850.0, + 292.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 844.0, + 699.0, + 844.0, + 699.0, + 875.0, + 296.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 719.0, + 844.0, + 1405.0, + 844.0, + 1405.0, + 875.0, + 719.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 871.0, + 1406.0, + 871.0, + 1406.0, + 906.0, + 292.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 903.0, + 1406.0, + 903.0, + 1406.0, + 939.0, + 294.0, + 939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 932.0, + 1406.0, + 932.0, + 1406.0, + 968.0, + 294.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 960.0, + 1291.0, + 960.0, + 1291.0, + 998.0, + 294.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1818.0, + 1405.0, + 1818.0, + 1405.0, + 1855.0, + 293.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1849.0, + 1404.0, + 1849.0, + 1404.0, + 1885.0, + 294.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1881.0, + 1406.0, + 1881.0, + 1406.0, + 1917.0, + 292.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1910.0, + 1405.0, + 1910.0, + 1405.0, + 1946.0, + 292.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1941.0, + 1404.0, + 1941.0, + 1404.0, + 1976.0, + 294.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1972.0, + 1406.0, + 1972.0, + 1406.0, + 2008.0, + 292.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2004.0, + 1405.0, + 2004.0, + 1405.0, + 2038.0, + 293.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1542.0, + 1405.0, + 1542.0, + 1405.0, + 1573.0, + 298.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1568.0, + 1405.0, + 1568.0, + 1405.0, + 1608.0, + 293.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1603.0, + 1404.0, + 1603.0, + 1404.0, + 1634.0, + 297.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1632.0, + 1405.0, + 1632.0, + 1405.0, + 1667.0, + 295.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1661.0, + 1404.0, + 1661.0, + 1404.0, + 1696.0, + 294.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1693.0, + 1400.0, + 1693.0, + 1400.0, + 1728.0, + 295.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 586.0, + 544.0, + 586.0, + 544.0, + 624.0, + 295.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 571.0, + 586.0, + 618.0, + 586.0, + 618.0, + 624.0, + 571.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 586.0, + 1175.0, + 586.0, + 1175.0, + 624.0, + 644.0, + 624.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1094, + 1404, + 1094, + 1404, + 1612, + 298, + 1612 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 299, + 1628, + 1402, + 1628, + 1402, + 1842, + 299, + 1842 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 429, + 1404, + 429, + 1404, + 734, + 298, + 734 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 750, + 1403, + 750, + 1403, + 994, + 298, + 994 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 229, + 1403, + 229, + 1403, + 414, + 299, + 414 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 300, + 1942, + 1402, + 1942, + 1402, + 2034, + 300, + 2034 + ], + "score": 0.973 + }, + { + "category_id": 0, + "poly": [ + 300, + 1036, + 630, + 1036, + 630, + 1066, + 300, + 1066 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.89 + }, + { + "category_id": 0, + "poly": [ + 299, + 1883, + 842, + 1883, + 842, + 1914, + 299, + 1914 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2112, + 841, + 2112 + ], + "score": 0.763 + }, + { + "category_id": 13, + "poly": [ + 416, + 812, + 524, + 812, + 524, + 841, + 416, + 841 + ], + "score": 0.9, + "latex": "\\lambda = 0 . 9 5" + }, + { + "category_id": 13, + "poly": [ + 873, + 782, + 998, + 782, + 998, + 813, + 873, + 813 + ], + "score": 0.89, + "latex": "\\gamma = 0 . 9 9 5" + }, + { + "category_id": 13, + "poly": [ + 561, + 782, + 653, + 782, + 653, + 811, + 561, + 811 + ], + "score": 0.88, + "latex": "\\epsilon = 0 . 2" + }, + { + "category_id": 13, + "poly": [ + 585, + 905, + 610, + 905, + 610, + 934, + 585, + 934 + ], + "score": 0.86, + "latex": "l _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 482, + 938, + 513, + 938, + 513, + 964, + 482, + 964 + ], + "score": 0.85, + "latex": "\\alpha _ { t }" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1035.0, + 633.0, + 1035.0, + 633.0, + 1070.0, + 294.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1882.0, + 848.0, + 1882.0, + 848.0, + 1918.0, + 294.0, + 1918.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, + 1096.0, + 1404.0, + 1096.0, + 1404.0, + 1128.0, + 297.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1125.0, + 1405.0, + 1125.0, + 1405.0, + 1160.0, + 293.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1155.0, + 1405.0, + 1155.0, + 1405.0, + 1191.0, + 293.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1179.0, + 1406.0, + 1179.0, + 1406.0, + 1224.0, + 291.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1215.0, + 1406.0, + 1215.0, + 1406.0, + 1254.0, + 291.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1246.0, + 1405.0, + 1246.0, + 1405.0, + 1282.0, + 294.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1278.0, + 1404.0, + 1278.0, + 1404.0, + 1311.0, + 294.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1307.0, + 1406.0, + 1307.0, + 1406.0, + 1343.0, + 294.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1336.0, + 1406.0, + 1336.0, + 1406.0, + 1375.0, + 292.0, + 1375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1368.0, + 1405.0, + 1368.0, + 1405.0, + 1404.0, + 293.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1398.0, + 1406.0, + 1398.0, + 1406.0, + 1437.0, + 292.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1429.0, + 1405.0, + 1429.0, + 1405.0, + 1465.0, + 294.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1460.0, + 1404.0, + 1460.0, + 1404.0, + 1496.0, + 294.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1489.0, + 1405.0, + 1489.0, + 1405.0, + 1524.0, + 293.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1522.0, + 1402.0, + 1522.0, + 1402.0, + 1554.0, + 296.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1550.0, + 1406.0, + 1550.0, + 1406.0, + 1590.0, + 294.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1582.0, + 1239.0, + 1582.0, + 1239.0, + 1616.0, + 293.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1628.0, + 1406.0, + 1628.0, + 1406.0, + 1663.0, + 295.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1658.0, + 1406.0, + 1658.0, + 1406.0, + 1695.0, + 294.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1687.0, + 1406.0, + 1687.0, + 1406.0, + 1726.0, + 293.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1720.0, + 1406.0, + 1720.0, + 1406.0, + 1753.0, + 294.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1751.0, + 1406.0, + 1751.0, + 1406.0, + 1785.0, + 295.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1779.0, + 1407.0, + 1779.0, + 1407.0, + 1817.0, + 293.0, + 1817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1812.0, + 594.0, + 1812.0, + 594.0, + 1843.0, + 297.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 427.0, + 1405.0, + 427.0, + 1405.0, + 464.0, + 293.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 461.0, + 1406.0, + 461.0, + 1406.0, + 495.0, + 292.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 489.0, + 1407.0, + 489.0, + 1407.0, + 526.0, + 292.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 523.0, + 1404.0, + 523.0, + 1404.0, + 555.0, + 296.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 552.0, + 1406.0, + 552.0, + 1406.0, + 588.0, + 294.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 583.0, + 1405.0, + 583.0, + 1405.0, + 618.0, + 294.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 612.0, + 1406.0, + 612.0, + 1406.0, + 647.0, + 294.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 642.0, + 1404.0, + 642.0, + 1404.0, + 678.0, + 294.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 671.0, + 1406.0, + 671.0, + 1406.0, + 709.0, + 293.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 703.0, + 1405.0, + 703.0, + 1405.0, + 738.0, + 294.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 747.0, + 1403.0, + 747.0, + 1403.0, + 787.0, + 293.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 781.0, + 560.0, + 781.0, + 560.0, + 817.0, + 292.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 654.0, + 781.0, + 872.0, + 781.0, + 872.0, + 817.0, + 654.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 781.0, + 1407.0, + 781.0, + 1407.0, + 817.0, + 999.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 811.0, + 415.0, + 811.0, + 415.0, + 848.0, + 292.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 811.0, + 1403.0, + 811.0, + 1403.0, + 848.0, + 525.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 843.0, + 1405.0, + 843.0, + 1405.0, + 877.0, + 294.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 870.0, + 1404.0, + 870.0, + 1404.0, + 910.0, + 293.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 904.0, + 584.0, + 904.0, + 584.0, + 938.0, + 294.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 904.0, + 1403.0, + 904.0, + 1403.0, + 938.0, + 611.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 934.0, + 481.0, + 934.0, + 481.0, + 968.0, + 296.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 934.0, + 1405.0, + 934.0, + 1405.0, + 968.0, + 514.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 964.0, + 1223.0, + 964.0, + 1223.0, + 996.0, + 293.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 230.0, + 1405.0, + 230.0, + 1405.0, + 266.0, + 295.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 262.0, + 1405.0, + 262.0, + 1405.0, + 296.0, + 294.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 290.0, + 1407.0, + 290.0, + 1407.0, + 328.0, + 292.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 320.0, + 1404.0, + 320.0, + 1404.0, + 357.0, + 292.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 353.0, + 1405.0, + 353.0, + 1405.0, + 389.0, + 294.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 386.0, + 496.0, + 386.0, + 496.0, + 419.0, + 295.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1941.0, + 1406.0, + 1941.0, + 1406.0, + 1978.0, + 294.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1972.0, + 1406.0, + 1972.0, + 1406.0, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2004.0, + 1406.0, + 2004.0, + 1406.0, + 2037.0, + 295.0, + 2037.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1053, + 1405, + 1053, + 1405, + 1694, + 297, + 1694 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1789, + 1403, + 1789, + 1403, + 2036, + 298, + 2036 + ], + "score": 0.978 + }, + { + "category_id": 3, + "poly": [ + 307, + 223, + 1383, + 223, + 1383, + 491, + 307, + 491 + ], + "score": 0.969 + }, + { + "category_id": 4, + "poly": [ + 296, + 516, + 1404, + 516, + 1404, + 639, + 296, + 639 + ], + "score": 0.948 + }, + { + "category_id": 0, + "poly": [ + 302, + 1731, + 766, + 1731, + 766, + 1763, + 302, + 1763 + ], + "score": 0.889 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 814, + 76, + 814, + 104, + 299, + 104 + ], + "score": 0.888 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 858, + 2088, + 858, + 2111, + 842, + 2111 + ], + "score": 0.655 + }, + { + "category_id": 5, + "poly": [ + 308, + 669, + 793, + 669, + 793, + 834, + 308, + 834 + ], + "score": 0.434, + "html": "
81.00.80.50.0E[Win]
1.010.260.130.370.25
0.80.50.4610.220.520.400.630.35
0.590.5810.73
0.00.550.360.16-
E[Loss]0.530.400.170.541
" + }, + { + "category_id": 6, + "poly": [ + 299, + 898, + 1405, + 898, + 1405, + 991, + 299, + 991 + ], + "score": 0.341 + }, + { + "category_id": 5, + "poly": [ + 911, + 669, + 1397, + 669, + 1397, + 834, + 911, + 834 + ], + "score": 0.247, + "html": "
8 1.0 0.8 0.51.0 - 0.36 0.360.8 0.37 1 0.390.5 0.35 0.38 10.0 0.29 0.33 0.33E[Win] 0.34 0.36 0.36
0.0 E[Loss]0.51 0.410.49 0.420.49 0.41- 0.320.50 1
" + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 859, + 2087, + 859, + 2111, + 841, + 2111 + ], + "score": 0.246 + }, + { + "category_id": 13, + "poly": [ + 808, + 2002, + 1063, + 2002, + 1063, + 2036, + 808, + 2036 + ], + "score": 0.92, + "latex": "\\delta \\in \\{ 1 . 0 , 0 . 8 , \\bar { 0 . 5 } , \\bar { 0 . 0 } \\}" + }, + { + "category_id": 13, + "poly": [ + 663, + 1944, + 774, + 1944, + 774, + 1975, + 663, + 1975 + ], + "score": 0.91, + "latex": "\\delta \\in [ 0 , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 563, + 1973, + 657, + 1973, + 657, + 2002, + 563, + 2002 + ], + "score": 0.91, + "latex": "\\delta = 0 . 0" + }, + { + "category_id": 13, + "poly": [ + 1141, + 930, + 1244, + 930, + 1244, + 960, + 1141, + 960 + ], + "score": 0.9, + "latex": "\\delta \\ : = \\ : 0 . 5" + }, + { + "category_id": 13, + "poly": [ + 764, + 961, + 832, + 961, + 832, + 989, + 764, + 989 + ], + "score": 0.9, + "latex": "\\delta = 0" + }, + { + "category_id": 13, + "poly": [ + 1023, + 1943, + 1119, + 1943, + 1119, + 1972, + 1023, + 1972 + ], + "score": 0.89, + "latex": "\\delta = 1 . 0" + }, + { + "category_id": 13, + "poly": [ + 587, + 1911, + 765, + 1911, + 765, + 1944, + 587, + 1944 + ], + "score": 0.75, + "latex": "\\mathrm { U n i f o r m } ( \\delta v , v )" + }, + { + "category_id": 13, + "poly": [ + 850, + 1917, + 868, + 1917, + 868, + 1939, + 850, + 1939 + ], + "score": 0.73, + "latex": "v" + }, + { + "category_id": 13, + "poly": [ + 916, + 899, + 1005, + 899, + 1005, + 932, + 916, + 932 + ], + "score": 0.7, + "latex": "\\mathbb { E } [ \\mathrm { W i n } ]" + }, + { + "category_id": 13, + "poly": [ + 706, + 932, + 724, + 932, + 724, + 958, + 706, + 958 + ], + "score": 0.69, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 774, + 899, + 865, + 899, + 865, + 932, + 774, + 932 + ], + "score": 0.36, + "latex": "\\mathbb { E } [ \\mathrm { L o s s } ]" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 225.0, + 340.0, + 225.0, + 340.0, + 259.0, + 319.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 231.0, + 403.0, + 231.0, + 403.0, + 256.0, + 353.0, + 256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 228.0, + 612.0, + 228.0, + 612.0, + 237.0, + 602.0, + 237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 231.0, + 850.0, + 231.0, + 850.0, + 256.0, + 802.0, + 256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 223.0, + 892.0, + 223.0, + 892.0, + 259.0, + 868.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 231.0, + 1116.0, + 231.0, + 1116.0, + 253.0, + 1050.0, + 253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1138.0, + 233.0, + 1159.0, + 233.0, + 1159.0, + 269.0, + 1138.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1310.0, + 238.0, + 1375.0, + 238.0, + 1375.0, + 264.0, + 1310.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 262.0, + 340.0, + 262.0, + 340.0, + 278.0, + 322.0, + 278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 262.0, + 618.0, + 262.0, + 618.0, + 278.0, + 599.0, + 278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 261.0, + 892.0, + 261.0, + 892.0, + 280.0, + 871.0, + 280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1138.0, + 266.0, + 1159.0, + 266.0, + 1159.0, + 287.0, + 1138.0, + 287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 282.0, + 342.0, + 282.0, + 342.0, + 372.0, + 306.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 314.0, + 381.0, + 314.0, + 381.0, + 324.0, + 371.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 298.0, + 618.0, + 298.0, + 618.0, + 363.0, + 584.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 283.0, + 896.0, + 283.0, + 896.0, + 368.0, + 851.0, + 368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 311.0, + 990.0, + 311.0, + 990.0, + 325.0, + 974.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1126.0, + 287.0, + 1157.0, + 287.0, + 1157.0, + 366.0, + 1126.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 296.0, + 1236.0, + 296.0, + 1236.0, + 310.0, + 1216.0, + 310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 337.0, + 342.0, + 337.0, + 342.0, + 357.0, + 322.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 339.0, + 618.0, + 339.0, + 618.0, + 356.0, + 601.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1141.0, + 340.0, + 1157.0, + 340.0, + 1157.0, + 358.0, + 1141.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 358.0, + 340.0, + 358.0, + 340.0, + 375.0, + 324.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 360.0, + 890.0, + 360.0, + 890.0, + 376.0, + 873.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1141.0, + 360.0, + 1157.0, + 360.0, + 1157.0, + 376.0, + 1141.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 379.0, + 340.0, + 379.0, + 340.0, + 393.0, + 323.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 379.0, + 618.0, + 379.0, + 618.0, + 394.0, + 600.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 379.0, + 892.0, + 379.0, + 892.0, + 398.0, + 871.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 943.0, + 370.0, + 961.0, + 370.0, + 961.0, + 393.0, + 943.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 379.0, + 1157.0, + 379.0, + 1157.0, + 395.0, + 1140.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 398.0, + 340.0, + 398.0, + 340.0, + 413.0, + 322.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 399.0, + 890.0, + 399.0, + 890.0, + 415.0, + 873.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 398.0, + 1157.0, + 398.0, + 1157.0, + 413.0, + 1140.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 423.0, + 384.0, + 423.0, + 384.0, + 437.0, + 360.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 423.0, + 415.0, + 423.0, + 415.0, + 437.0, + 389.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 423.0, + 447.0, + 423.0, + 447.0, + 437.0, + 425.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 455.0, + 423.0, + 479.0, + 423.0, + 479.0, + 437.0, + 455.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 489.0, + 423.0, + 511.0, + 423.0, + 511.0, + 437.0, + 489.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 423.0, + 542.0, + 423.0, + 542.0, + 437.0, + 520.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 423.0, + 573.0, + 423.0, + 573.0, + 437.0, + 552.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 416.0, + 618.0, + 416.0, + 618.0, + 431.0, + 599.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 640.0, + 423.0, + 662.0, + 423.0, + 662.0, + 437.0, + 640.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 423.0, + 698.0, + 423.0, + 698.0, + 437.0, + 675.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.0, + 423.0, + 735.0, + 423.0, + 735.0, + 437.0, + 714.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 423.0, + 769.0, + 423.0, + 769.0, + 437.0, + 748.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 423.0, + 807.0, + 423.0, + 807.0, + 437.0, + 783.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 421.0, + 843.0, + 421.0, + 843.0, + 439.0, + 818.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 421.0, + 922.0, + 421.0, + 922.0, + 439.0, + 898.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 938.0, + 421.0, + 963.0, + 421.0, + 963.0, + 439.0, + 938.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 417.0, + 1041.0, + 417.0, + 1041.0, + 455.0, + 975.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1059.0, + 421.0, + 1084.0, + 421.0, + 1084.0, + 439.0, + 1059.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 421.0, + 1124.0, + 421.0, + 1124.0, + 439.0, + 1097.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1165.0, + 422.0, + 1186.0, + 422.0, + 1186.0, + 437.0, + 1165.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1203.0, + 421.0, + 1227.0, + 421.0, + 1227.0, + 439.0, + 1203.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1244.0, + 423.0, + 1264.0, + 423.0, + 1264.0, + 437.0, + 1244.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1284.0, + 425.0, + 1299.0, + 425.0, + 1299.0, + 435.0, + 1284.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1320.0, + 423.0, + 1340.0, + 423.0, + 1340.0, + 437.0, + 1320.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1355.0, + 421.0, + 1380.0, + 421.0, + 1380.0, + 439.0, + 1355.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 440.0, + 430.0, + 481.0, + 430.0, + 481.0, + 452.0, + 440.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 430.0, + 759.0, + 430.0, + 759.0, + 452.0, + 716.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1244.0, + 430.0, + 1285.0, + 430.0, + 1285.0, + 452.0, + 1244.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 458.0, + 551.0, + 458.0, + 551.0, + 491.0, + 338.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 457.0, + 797.0, + 457.0, + 797.0, + 494.0, + 645.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 458.0, + 1237.0, + 458.0, + 1237.0, + 491.0, + 1018.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 661.25, + 341.5, + 688.25, + 341.5, + 688.25, + 354.5, + 661.25, + 354.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 516.0, + 1404.0, + 516.0, + 1404.0, + 551.0, + 295.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 545.0, + 1404.0, + 545.0, + 1404.0, + 583.0, + 291.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 576.0, + 1405.0, + 576.0, + 1405.0, + 615.0, + 294.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 608.0, + 734.0, + 608.0, + 734.0, + 643.0, + 295.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1731.0, + 770.0, + 1731.0, + 770.0, + 1767.0, + 295.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2119.0, + 840.0, + 2119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 897.0, + 773.0, + 897.0, + 773.0, + 935.0, + 294.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 897.0, + 915.0, + 897.0, + 915.0, + 935.0, + 866.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 897.0, + 1405.0, + 897.0, + 1405.0, + 935.0, + 1006.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 930.0, + 705.0, + 930.0, + 705.0, + 964.0, + 295.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 725.0, + 930.0, + 1140.0, + 930.0, + 1140.0, + 964.0, + 725.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1245.0, + 930.0, + 1405.0, + 930.0, + 1405.0, + 964.0, + 1245.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 961.0, + 763.0, + 961.0, + 763.0, + 992.0, + 295.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 961.0, + 942.0, + 961.0, + 942.0, + 992.0, + 833.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2118.0, + 839.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1053.0, + 1406.0, + 1053.0, + 1406.0, + 1089.0, + 295.0, + 1089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1084.0, + 1406.0, + 1084.0, + 1406.0, + 1117.0, + 292.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1115.0, + 1402.0, + 1115.0, + 1402.0, + 1147.0, + 295.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1146.0, + 1403.0, + 1146.0, + 1403.0, + 1178.0, + 295.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1175.0, + 1406.0, + 1175.0, + 1406.0, + 1211.0, + 294.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1204.0, + 1405.0, + 1204.0, + 1405.0, + 1241.0, + 292.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1235.0, + 1405.0, + 1235.0, + 1405.0, + 1272.0, + 292.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1265.0, + 1406.0, + 1265.0, + 1406.0, + 1303.0, + 292.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1299.0, + 1405.0, + 1299.0, + 1405.0, + 1331.0, + 295.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1327.0, + 1403.0, + 1327.0, + 1403.0, + 1359.0, + 295.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1359.0, + 1405.0, + 1359.0, + 1405.0, + 1392.0, + 295.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1386.0, + 1407.0, + 1386.0, + 1407.0, + 1425.0, + 292.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1419.0, + 1407.0, + 1419.0, + 1407.0, + 1453.0, + 292.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1447.0, + 1406.0, + 1447.0, + 1406.0, + 1487.0, + 292.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1479.0, + 1405.0, + 1479.0, + 1405.0, + 1515.0, + 294.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1510.0, + 1406.0, + 1510.0, + 1406.0, + 1546.0, + 295.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1541.0, + 1405.0, + 1541.0, + 1405.0, + 1577.0, + 295.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1569.0, + 1405.0, + 1569.0, + 1405.0, + 1606.0, + 294.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1601.0, + 1403.0, + 1601.0, + 1403.0, + 1637.0, + 294.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1631.0, + 1405.0, + 1631.0, + 1405.0, + 1667.0, + 294.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1664.0, + 1328.0, + 1664.0, + 1328.0, + 1696.0, + 296.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1787.0, + 1407.0, + 1787.0, + 1407.0, + 1826.0, + 292.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1820.0, + 1407.0, + 1820.0, + 1407.0, + 1857.0, + 293.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1851.0, + 1405.0, + 1851.0, + 1405.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, + 1911.0, + 586.0, + 1911.0, + 586.0, + 1945.0, + 293.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 766.0, + 1911.0, + 849.0, + 1911.0, + 849.0, + 1945.0, + 766.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 1911.0, + 1405.0, + 1911.0, + 1405.0, + 1945.0, + 869.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1941.0, + 662.0, + 1941.0, + 662.0, + 1978.0, + 292.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 1941.0, + 1022.0, + 1941.0, + 1022.0, + 1978.0, + 775.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 1941.0, + 1406.0, + 1941.0, + 1406.0, + 1978.0, + 1120.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1974.0, + 562.0, + 1974.0, + 562.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 658.0, + 1974.0, + 1405.0, + 1974.0, + 1405.0, + 2008.0, + 658.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 2002.0, + 807.0, + 2002.0, + 807.0, + 2039.0, + 292.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 2002.0, + 1407.0, + 2002.0, + 1407.0, + 2039.0, + 1064.0, + 2039.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 231, + 1404, + 231, + 1404, + 627, + 298, + 627 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1377, + 1404, + 1377, + 1404, + 1805, + 298, + 1805 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 946, + 1404, + 946, + 1404, + 1282, + 298, + 1282 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 299, + 729, + 1402, + 729, + 1402, + 851, + 299, + 851 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1820, + 1402, + 1820, + 1402, + 2034, + 298, + 2034 + ], + "score": 0.978 + }, + { + "category_id": 0, + "poly": [ + 299, + 1324, + 936, + 1324, + 936, + 1353, + 299, + 1353 + ], + "score": 0.897 + }, + { + "category_id": 0, + "poly": [ + 301, + 890, + 730, + 890, + 730, + 922, + 301, + 922 + ], + "score": 0.894 + }, + { + "category_id": 0, + "poly": [ + 302, + 670, + 716, + 670, + 716, + 700, + 302, + 700 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2111, + 841, + 2111 + ], + "score": 0.781 + }, + { + "category_id": 13, + "poly": [ + 540, + 475, + 637, + 475, + 637, + 504, + 540, + 504 + ], + "score": 0.9, + "latex": "\\delta = 0 . 5" + }, + { + "category_id": 13, + "poly": [ + 813, + 444, + 912, + 444, + 912, + 474, + 813, + 474 + ], + "score": 0.86, + "latex": "\\delta = 0 . 0" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1321.0, + 939.0, + 1321.0, + 939.0, + 1356.0, + 296.0, + 1356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 889.0, + 733.0, + 889.0, + 733.0, + 926.0, + 296.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 666.0, + 721.0, + 666.0, + 721.0, + 706.0, + 293.0, + 706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2116.0, + 839.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 229.0, + 1405.0, + 229.0, + 1405.0, + 265.0, + 294.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 260.0, + 1408.0, + 260.0, + 1408.0, + 300.0, + 292.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 293.0, + 1405.0, + 293.0, + 1405.0, + 326.0, + 296.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 323.0, + 1402.0, + 323.0, + 1402.0, + 355.0, + 296.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 349.0, + 1406.0, + 349.0, + 1406.0, + 390.0, + 292.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 379.0, + 1406.0, + 379.0, + 1406.0, + 420.0, + 291.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 411.0, + 1404.0, + 411.0, + 1404.0, + 451.0, + 293.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 442.0, + 812.0, + 442.0, + 812.0, + 479.0, + 293.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 442.0, + 1406.0, + 442.0, + 1406.0, + 479.0, + 913.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 475.0, + 539.0, + 475.0, + 539.0, + 508.0, + 296.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 638.0, + 475.0, + 1405.0, + 475.0, + 1405.0, + 508.0, + 638.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 503.0, + 1402.0, + 503.0, + 1402.0, + 539.0, + 294.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 532.0, + 1406.0, + 532.0, + 1406.0, + 571.0, + 292.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 563.0, + 1406.0, + 563.0, + 1406.0, + 602.0, + 292.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 594.0, + 1357.0, + 594.0, + 1357.0, + 632.0, + 293.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1375.0, + 1405.0, + 1375.0, + 1405.0, + 1412.0, + 293.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1407.0, + 1405.0, + 1407.0, + 1405.0, + 1444.0, + 292.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1439.0, + 1404.0, + 1439.0, + 1404.0, + 1474.0, + 293.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1468.0, + 1405.0, + 1468.0, + 1405.0, + 1503.0, + 292.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1498.0, + 1406.0, + 1498.0, + 1406.0, + 1535.0, + 292.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1529.0, + 1406.0, + 1529.0, + 1406.0, + 1564.0, + 294.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1561.0, + 1405.0, + 1561.0, + 1405.0, + 1595.0, + 292.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1592.0, + 1404.0, + 1592.0, + 1404.0, + 1624.0, + 294.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1620.0, + 1406.0, + 1620.0, + 1406.0, + 1656.0, + 293.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1647.0, + 1408.0, + 1647.0, + 1408.0, + 1690.0, + 292.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1680.0, + 1408.0, + 1680.0, + 1408.0, + 1718.0, + 293.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1714.0, + 1404.0, + 1714.0, + 1404.0, + 1746.0, + 294.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1739.0, + 1406.0, + 1739.0, + 1406.0, + 1781.0, + 291.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1774.0, + 1132.0, + 1774.0, + 1132.0, + 1809.0, + 294.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 947.0, + 1404.0, + 947.0, + 1404.0, + 981.0, + 294.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 977.0, + 1402.0, + 977.0, + 1402.0, + 1011.0, + 293.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1007.0, + 1404.0, + 1007.0, + 1404.0, + 1042.0, + 293.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1037.0, + 1405.0, + 1037.0, + 1405.0, + 1073.0, + 295.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1068.0, + 1405.0, + 1068.0, + 1405.0, + 1103.0, + 293.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1098.0, + 1406.0, + 1098.0, + 1406.0, + 1134.0, + 293.0, + 1134.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1129.0, + 1404.0, + 1129.0, + 1404.0, + 1164.0, + 294.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1161.0, + 1406.0, + 1161.0, + 1406.0, + 1194.0, + 293.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1191.0, + 1405.0, + 1191.0, + 1405.0, + 1224.0, + 293.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1223.0, + 1404.0, + 1223.0, + 1404.0, + 1254.0, + 296.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1254.0, + 1191.0, + 1254.0, + 1191.0, + 1285.0, + 296.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 728.0, + 1406.0, + 728.0, + 1406.0, + 765.0, + 293.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 761.0, + 1406.0, + 761.0, + 1406.0, + 793.0, + 294.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 788.0, + 1407.0, + 788.0, + 1407.0, + 829.0, + 292.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 822.0, + 808.0, + 822.0, + 808.0, + 855.0, + 295.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1820.0, + 1406.0, + 1820.0, + 1406.0, + 1855.0, + 294.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1851.0, + 1404.0, + 1851.0, + 1404.0, + 1885.0, + 294.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1882.0, + 1406.0, + 1882.0, + 1406.0, + 1916.0, + 294.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1911.0, + 1407.0, + 1911.0, + 1407.0, + 1947.0, + 292.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1942.0, + 1407.0, + 1942.0, + 1407.0, + 1980.0, + 293.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1974.0, + 1404.0, + 1974.0, + 1404.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2004.0, + 1404.0, + 2004.0, + 1404.0, + 2039.0, + 294.0, + 2039.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 926, + 1405, + 926, + 1405, + 1110, + 298, + 1110 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 629, + 1403, + 629, + 1403, + 814, + 298, + 814 + ], + "score": 0.975 + }, + { + "category_id": 3, + "poly": [ + 633, + 255, + 1396, + 255, + 1396, + 458, + 633, + 458 + ], + "score": 0.967 + }, + { + "category_id": 3, + "poly": [ + 301, + 251, + 591, + 251, + 591, + 456, + 301, + 456 + ], + "score": 0.949 + }, + { + "category_id": 4, + "poly": [ + 295, + 482, + 601, + 482, + 601, + 573, + 295, + 573 + ], + "score": 0.947 + }, + { + "category_id": 4, + "poly": [ + 626, + 483, + 1401, + 483, + 1401, + 545, + 626, + 545 + ], + "score": 0.935 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 814, + 76, + 814, + 104, + 299, + 104 + ], + "score": 0.888 + }, + { + "category_id": 0, + "poly": [ + 300, + 857, + 543, + 857, + 543, + 893, + 300, + 893 + ], + "score": 0.885 + }, + { + "category_id": 0, + "poly": [ + 299, + 1156, + 487, + 1156, + 487, + 1188, + 299, + 1188 + ], + "score": 0.876 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.771 + }, + { + "category_id": 1, + "poly": [ + 292, + 1205, + 1407, + 1205, + 1407, + 2037, + 292, + 2037 + ], + "score": 0.6 + }, + { + "category_id": 13, + "poly": [ + 738, + 484, + 766, + 484, + 766, + 511, + 738, + 511 + ], + "score": 0.64, + "latex": "\\%" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 254.0, + 673.0, + 254.0, + 673.0, + 273.0, + 644.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 253.0, + 1056.0, + 253.0, + 1056.0, + 272.0, + 1027.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 265.0, + 1000.0, + 265.0, + 1000.0, + 283.0, + 948.0, + 283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1344.0, + 264.0, + 1393.0, + 264.0, + 1393.0, + 280.0, + 1344.0, + 280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 278.0, + 673.0, + 278.0, + 673.0, + 298.0, + 644.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 275.0, + 986.0, + 275.0, + 986.0, + 297.0, + 946.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 273.0, + 1381.0, + 273.0, + 1381.0, + 294.0, + 1343.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 302.0, + 673.0, + 302.0, + 673.0, + 322.0, + 644.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 295.0, + 1066.0, + 295.0, + 1066.0, + 395.0, + 1006.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 310.0, + 687.0, + 310.0, + 687.0, + 405.0, + 620.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 382.0, + 1055.0, + 382.0, + 1055.0, + 402.0, + 1027.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 394.0, + 674.0, + 394.0, + 674.0, + 418.0, + 643.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 641.0, + 419.0, + 672.0, + 419.0, + 672.0, + 438.0, + 641.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 679.0, + 430.0, + 709.0, + 430.0, + 709.0, + 445.0, + 679.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 719.0, + 430.0, + 749.0, + 430.0, + 749.0, + 445.0, + 719.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 760.0, + 430.0, + 790.0, + 430.0, + 790.0, + 445.0, + 760.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 430.0, + 831.0, + 430.0, + 831.0, + 445.0, + 802.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 842.0, + 430.0, + 872.0, + 430.0, + 872.0, + 445.0, + 842.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 430.0, + 913.0, + 430.0, + 913.0, + 445.0, + 883.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 924.0, + 430.0, + 955.0, + 430.0, + 955.0, + 445.0, + 924.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 430.0, + 995.0, + 430.0, + 995.0, + 445.0, + 965.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 413.0, + 1056.0, + 413.0, + 1056.0, + 433.0, + 1027.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 423.0, + 1135.0, + 423.0, + 1135.0, + 441.0, + 1106.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 422.0, + 1206.0, + 422.0, + 1206.0, + 441.0, + 1175.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1245.0, + 422.0, + 1276.0, + 422.0, + 1276.0, + 441.0, + 1245.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1316.0, + 423.0, + 1346.0, + 423.0, + 1346.0, + 441.0, + 1316.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 807.0, + 442.0, + 853.0, + 442.0, + 853.0, + 460.0, + 807.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 439.0, + 1238.0, + 439.0, + 1238.0, + 461.0, + 1190.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 285.0, + 1054.0, + 285.0, + 1054.0, + 304.0, + 1028.0, + 304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1104.0, + 300.0, + 1367.0, + 300.0, + 1367.0, + 343.0, + 1104.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 339.0, + 1123.0, + 339.0, + 1123.0, + 360.0, + 1078.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 264.0, + 379.0, + 264.0, + 379.0, + 291.0, + 326.0, + 291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 287.0, + 380.0, + 287.0, + 380.0, + 313.0, + 326.0, + 313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 303.0, + 323.0, + 303.0, + 323.0, + 372.0, + 301.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 311.0, + 380.0, + 311.0, + 380.0, + 337.0, + 326.0, + 337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 333.0, + 380.0, + 333.0, + 380.0, + 360.0, + 326.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 356.0, + 380.0, + 356.0, + 380.0, + 382.0, + 316.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 378.0, + 381.0, + 378.0, + 381.0, + 406.0, + 338.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 376.0, + 586.0, + 376.0, + 586.0, + 400.0, + 454.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 383.0, + 421.0, + 565.0, + 421.0, + 565.0, + 442.0, + 383.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 435.0, + 509.0, + 435.0, + 509.0, + 460.0, + 447.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 479.0, + 604.0, + 479.0, + 604.0, + 514.0, + 295.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 511.0, + 601.0, + 511.0, + 601.0, + 544.0, + 294.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 540.0, + 511.0, + 540.0, + 511.0, + 574.0, + 295.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 481.0, + 737.0, + 481.0, + 737.0, + 515.0, + 625.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 481.0, + 1405.0, + 481.0, + 1405.0, + 515.0, + 767.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 510.0, + 1404.0, + 510.0, + 1404.0, + 549.0, + 626.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 850.0, + 549.0, + 850.0, + 549.0, + 902.0, + 292.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1154.0, + 491.0, + 1154.0, + 491.0, + 1194.0, + 296.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2087.0, + 860.0, + 2087.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 927.0, + 1405.0, + 927.0, + 1405.0, + 958.0, + 297.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 955.0, + 1403.0, + 955.0, + 1403.0, + 991.0, + 293.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 985.0, + 1405.0, + 985.0, + 1405.0, + 1022.0, + 292.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1018.0, + 1405.0, + 1018.0, + 1405.0, + 1050.0, + 295.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1046.0, + 1403.0, + 1046.0, + 1403.0, + 1081.0, + 295.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1076.0, + 810.0, + 1076.0, + 810.0, + 1116.0, + 296.0, + 1116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 630.0, + 1407.0, + 630.0, + 1407.0, + 666.0, + 296.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 659.0, + 1405.0, + 659.0, + 1405.0, + 696.0, + 293.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 690.0, + 1408.0, + 690.0, + 1408.0, + 727.0, + 292.0, + 727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 720.0, + 1405.0, + 720.0, + 1405.0, + 755.0, + 292.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 749.0, + 1404.0, + 749.0, + 1404.0, + 785.0, + 294.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 784.0, + 1321.0, + 784.0, + 1321.0, + 816.0, + 297.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1206.0, + 1405.0, + 1206.0, + 1405.0, + 1241.0, + 294.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1237.0, + 1404.0, + 1237.0, + 1404.0, + 1273.0, + 322.0, + 1273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1269.0, + 706.0, + 1269.0, + 706.0, + 1301.0, + 319.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1316.0, + 1401.0, + 1316.0, + 1401.0, + 1354.0, + 294.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1349.0, + 1404.0, + 1349.0, + 1404.0, + 1384.0, + 322.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1378.0, + 696.0, + 1378.0, + 696.0, + 1413.0, + 323.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1427.0, + 1239.0, + 1427.0, + 1239.0, + 1463.0, + 295.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1473.0, + 1405.0, + 1473.0, + 1405.0, + 1517.0, + 295.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1506.0, + 1405.0, + 1506.0, + 1405.0, + 1549.0, + 319.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1539.0, + 577.0, + 1539.0, + 577.0, + 1573.0, + 319.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1587.0, + 1405.0, + 1587.0, + 1405.0, + 1627.0, + 293.0, + 1627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1621.0, + 1405.0, + 1621.0, + 1405.0, + 1656.0, + 323.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1670.0, + 1405.0, + 1670.0, + 1405.0, + 1706.0, + 294.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1701.0, + 1287.0, + 1701.0, + 1287.0, + 1736.0, + 322.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1748.0, + 1405.0, + 1748.0, + 1405.0, + 1789.0, + 291.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1779.0, + 1404.0, + 1779.0, + 1404.0, + 1817.0, + 323.0, + 1817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1812.0, + 882.0, + 1812.0, + 882.0, + 1848.0, + 322.0, + 1848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1859.0, + 1403.0, + 1859.0, + 1403.0, + 1900.0, + 293.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1891.0, + 1371.0, + 1891.0, + 1371.0, + 1929.0, + 320.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1941.0, + 1406.0, + 1941.0, + 1406.0, + 1981.0, + 293.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1973.0, + 1405.0, + 1973.0, + 1405.0, + 2008.0, + 323.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 2003.0, + 943.0, + 2003.0, + 943.0, + 2038.0, + 323.0, + 2038.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 866, + 2088, + 866, + 2113, + 836, + 2113 + ], + "score": 0.831 + }, + { + "category_id": 1, + "poly": [ + 294, + 1613, + 1399, + 1613, + 1399, + 1680, + 294, + 1680 + ], + "score": 0.657 + }, + { + "category_id": 1, + "poly": [ + 294, + 1197, + 1401, + 1197, + 1401, + 1261, + 294, + 1261 + ], + "score": 0.595 + }, + { + "category_id": 1, + "poly": [ + 293, + 697, + 1399, + 697, + 1399, + 763, + 293, + 763 + ], + "score": 0.59 + }, + { + "category_id": 1, + "poly": [ + 300, + 890, + 1398, + 890, + 1398, + 987, + 300, + 987 + ], + "score": 0.586 + }, + { + "category_id": 1, + "poly": [ + 300, + 778, + 1402, + 778, + 1402, + 874, + 300, + 874 + ], + "score": 0.578 + }, + { + "category_id": 1, + "poly": [ + 297, + 1808, + 1401, + 1808, + 1401, + 1873, + 297, + 1873 + ], + "score": 0.57 + }, + { + "category_id": 1, + "poly": [ + 290, + 229, + 1401, + 229, + 1401, + 295, + 290, + 295 + ], + "score": 0.569 + }, + { + "category_id": 1, + "poly": [ + 297, + 1389, + 1401, + 1389, + 1401, + 1485, + 297, + 1485 + ], + "score": 0.565 + }, + { + "category_id": 1, + "poly": [ + 302, + 1113, + 1400, + 1113, + 1400, + 1179, + 302, + 1179 + ], + "score": 0.559 + }, + { + "category_id": 1, + "poly": [ + 302, + 1002, + 1398, + 1002, + 1398, + 1099, + 302, + 1099 + ], + "score": 0.558 + }, + { + "category_id": 1, + "poly": [ + 298, + 615, + 1401, + 615, + 1401, + 682, + 298, + 682 + ], + "score": 0.549 + }, + { + "category_id": 1, + "poly": [ + 298, + 504, + 1401, + 504, + 1401, + 598, + 298, + 598 + ], + "score": 0.538 + }, + { + "category_id": 1, + "poly": [ + 296, + 1696, + 1403, + 1696, + 1403, + 1792, + 296, + 1792 + ], + "score": 0.537 + }, + { + "category_id": 1, + "poly": [ + 299, + 1971, + 1401, + 1971, + 1401, + 2035, + 299, + 2035 + ], + "score": 0.536 + }, + { + "category_id": 1, + "poly": [ + 298, + 1277, + 1400, + 1277, + 1400, + 1373, + 298, + 1373 + ], + "score": 0.535 + }, + { + "category_id": 1, + "poly": [ + 299, + 1888, + 1399, + 1888, + 1399, + 1955, + 299, + 1955 + ], + "score": 0.513 + }, + { + "category_id": 1, + "poly": [ + 295, + 310, + 1401, + 310, + 1401, + 376, + 295, + 376 + ], + "score": 0.511 + }, + { + "category_id": 1, + "poly": [ + 299, + 391, + 1400, + 391, + 1400, + 487, + 299, + 487 + ], + "score": 0.491 + }, + { + "category_id": 1, + "poly": [ + 294, + 1501, + 1402, + 1501, + 1402, + 1597, + 294, + 1597 + ], + "score": 0.478 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1609.0, + 1404.0, + 1609.0, + 1404.0, + 1654.0, + 292.0, + 1654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1647.0, + 1057.0, + 1647.0, + 1057.0, + 1680.0, + 323.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1194.0, + 1405.0, + 1194.0, + 1405.0, + 1234.0, + 293.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1229.0, + 933.0, + 1229.0, + 933.0, + 1262.0, + 323.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 700.0, + 1403.0, + 700.0, + 1403.0, + 733.0, + 297.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 730.0, + 1396.0, + 730.0, + 1396.0, + 764.0, + 322.0, + 764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 890.0, + 1403.0, + 890.0, + 1403.0, + 929.0, + 296.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 924.0, + 1404.0, + 924.0, + 1404.0, + 958.0, + 322.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 953.0, + 1226.0, + 953.0, + 1226.0, + 989.0, + 322.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 777.0, + 1403.0, + 777.0, + 1403.0, + 816.0, + 293.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 813.0, + 1404.0, + 813.0, + 1404.0, + 847.0, + 323.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 842.0, + 767.0, + 842.0, + 767.0, + 876.0, + 325.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1806.0, + 1405.0, + 1806.0, + 1405.0, + 1846.0, + 295.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1841.0, + 1003.0, + 1841.0, + 1003.0, + 1873.0, + 322.0, + 1873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 227.0, + 1403.0, + 227.0, + 1403.0, + 266.0, + 293.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 262.0, + 999.0, + 262.0, + 999.0, + 294.0, + 325.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1388.0, + 1405.0, + 1388.0, + 1405.0, + 1427.0, + 291.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1421.0, + 1406.0, + 1421.0, + 1406.0, + 1459.0, + 322.0, + 1459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1452.0, + 722.0, + 1452.0, + 722.0, + 1486.0, + 322.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1111.0, + 403.0, + 1111.0, + 403.0, + 1149.0, + 293.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 468.0, + 1111.0, + 932.0, + 1111.0, + 932.0, + 1151.0, + 468.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 994.0, + 1110.0, + 1401.0, + 1110.0, + 1401.0, + 1155.0, + 994.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1146.0, + 639.0, + 1146.0, + 639.0, + 1182.0, + 322.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1004.0, + 1402.0, + 1004.0, + 1402.0, + 1038.0, + 298.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1033.0, + 1404.0, + 1033.0, + 1404.0, + 1070.0, + 322.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1065.0, + 1251.0, + 1065.0, + 1251.0, + 1100.0, + 324.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 615.0, + 1405.0, + 615.0, + 1405.0, + 654.0, + 296.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 649.0, + 1323.0, + 649.0, + 1323.0, + 682.0, + 322.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 501.0, + 1406.0, + 501.0, + 1406.0, + 541.0, + 292.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 536.0, + 1405.0, + 536.0, + 1405.0, + 570.0, + 323.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 564.0, + 454.0, + 564.0, + 454.0, + 600.0, + 323.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1695.0, + 1405.0, + 1695.0, + 1405.0, + 1733.0, + 294.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1726.0, + 1404.0, + 1726.0, + 1404.0, + 1764.0, + 321.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1759.0, + 1371.0, + 1759.0, + 1371.0, + 1793.0, + 324.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1971.0, + 1405.0, + 1971.0, + 1405.0, + 2007.0, + 295.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 2002.0, + 1286.0, + 2002.0, + 1286.0, + 2036.0, + 323.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1277.0, + 1404.0, + 1277.0, + 1404.0, + 1314.0, + 293.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1307.0, + 1405.0, + 1307.0, + 1405.0, + 1348.0, + 319.0, + 1348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1342.0, + 650.0, + 1342.0, + 650.0, + 1373.0, + 320.0, + 1373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1886.0, + 1402.0, + 1886.0, + 1402.0, + 1927.0, + 294.0, + 1927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1922.0, + 1161.0, + 1922.0, + 1161.0, + 1955.0, + 321.0, + 1955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 307.0, + 1406.0, + 307.0, + 1406.0, + 350.0, + 293.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 341.0, + 599.0, + 341.0, + 599.0, + 374.0, + 321.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 389.0, + 1405.0, + 389.0, + 1405.0, + 430.0, + 294.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 423.0, + 1405.0, + 423.0, + 1405.0, + 459.0, + 322.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 456.0, + 708.0, + 456.0, + 708.0, + 485.0, + 320.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1501.0, + 1405.0, + 1501.0, + 1405.0, + 1539.0, + 293.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1534.0, + 1404.0, + 1534.0, + 1404.0, + 1569.0, + 325.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1565.0, + 623.0, + 1565.0, + 623.0, + 1594.0, + 323.0, + 1594.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 912, + 1404, + 912, + 1404, + 1129, + 297, + 1129 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 299, + 1201, + 1405, + 1201, + 1405, + 1295, + 299, + 1295 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 299, + 1909, + 1402, + 1909, + 1402, + 2035, + 299, + 2035 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 298, + 1459, + 1402, + 1459, + 1402, + 1553, + 298, + 1553 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 298, + 1684, + 1401, + 1684, + 1401, + 1779, + 298, + 1779 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 297, + 1810, + 1399, + 1810, + 1399, + 1878, + 297, + 1878 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 296, + 1585, + 1400, + 1585, + 1400, + 1652, + 296, + 1652 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 299, + 1309, + 1018, + 1309, + 1018, + 1343, + 299, + 1343 + ], + "score": 0.923 + }, + { + "category_id": 8, + "poly": [ + 405, + 1356, + 1291, + 1356, + 1291, + 1398, + 405, + 1398 + ], + "score": 0.914 + }, + { + "category_id": 1, + "poly": [ + 298, + 1411, + 837, + 1411, + 837, + 1447, + 298, + 1447 + ], + "score": 0.913 + }, + { + "category_id": 8, + "poly": [ + 328, + 1145, + 1328, + 1145, + 1328, + 1188, + 328, + 1188 + ], + "score": 0.9 + }, + { + "category_id": 0, + "poly": [ + 302, + 843, + 715, + 843, + 715, + 879, + 302, + 879 + ], + "score": 0.898 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 815, + 75, + 815, + 105, + 300, + 105 + ], + "score": 0.881 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1362, + 1400, + 1362, + 1400, + 1392, + 1366, + 1392 + ], + "score": 0.88 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1152, + 1400, + 1152, + 1400, + 1182, + 1366, + 1182 + ], + "score": 0.869 + }, + { + "category_id": 1, + "poly": [ + 296, + 719, + 1401, + 719, + 1401, + 782, + 296, + 782 + ], + "score": 0.85 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2113, + 836, + 2113 + ], + "score": 0.849 + }, + { + "category_id": 1, + "poly": [ + 298, + 632, + 1400, + 632, + 1400, + 698, + 298, + 698 + ], + "score": 0.806 + }, + { + "category_id": 1, + "poly": [ + 300, + 228, + 1402, + 228, + 1402, + 323, + 300, + 323 + ], + "score": 0.794 + }, + { + "category_id": 1, + "poly": [ + 299, + 430, + 1398, + 430, + 1398, + 495, + 299, + 495 + ], + "score": 0.733 + }, + { + "category_id": 1, + "poly": [ + 296, + 516, + 1406, + 516, + 1406, + 611, + 296, + 611 + ], + "score": 0.703 + }, + { + "category_id": 1, + "poly": [ + 298, + 345, + 1398, + 345, + 1398, + 410, + 298, + 410 + ], + "score": 0.597 + }, + { + "category_id": 13, + "poly": [ + 546, + 1413, + 752, + 1413, + 752, + 1447, + 546, + 1447 + ], + "score": 0.93, + "latex": "1 . 0 \\geq z _ { b o d y } \\geq 0 . 2" + }, + { + "category_id": 13, + "poly": [ + 373, + 1413, + 518, + 1413, + 518, + 1444, + 373, + 1444 + ], + "score": 0.93, + "latex": "C _ { a l i v e } = + 1" + }, + { + "category_id": 13, + "poly": [ + 1243, + 1492, + 1394, + 1492, + 1394, + 1524, + 1243, + 1524 + ], + "score": 0.93, + "latex": "z _ { b o d y } \\ge 0 . 2 8" + }, + { + "category_id": 13, + "poly": [ + 764, + 1909, + 1073, + 1909, + 1073, + 1945, + 764, + 1945 + ], + "score": 0.93, + "latex": "r ^ { h } ( s , a ) - | | x - b | | - | b _ { x } - g |" + }, + { + "category_id": 13, + "poly": [ + 406, + 1973, + 715, + 1973, + 715, + 2006, + 406, + 2006 + ], + "score": 0.93, + "latex": "c ^ { h } ( s , a ) + C _ { a l i v e } + | b _ { x } - g |" + }, + { + "category_id": 13, + "poly": [ + 768, + 1585, + 978, + 1585, + 978, + 1621, + 768, + 1621 + ], + "score": 0.93, + "latex": "r ^ { h } ( s , a ) - | x - g |" + }, + { + "category_id": 13, + "poly": [ + 839, + 1067, + 924, + 1067, + 924, + 1100, + 839, + 1100 + ], + "score": 0.92, + "latex": "c _ { t } ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 297, + 1035, + 696, + 1035, + 696, + 1069, + 297, + 1069 + ], + "score": 0.92, + "latex": "r _ { t } ( s , a ) = v _ { f w d } + c _ { t } ( s , a ) + C _ { a l i v e }" + }, + { + "category_id": 13, + "poly": [ + 373, + 1203, + 464, + 1203, + 464, + 1236, + 373, + 1236 + ], + "score": 0.92, + "latex": "F _ { i m p a c t }" + }, + { + "category_id": 13, + "poly": [ + 1010, + 1715, + 1325, + 1715, + 1325, + 1750, + 1010, + 1750 + ], + "score": 0.92, + "latex": "c ^ { h } ( s , a ) + C _ { a l i v e } + | x ^ { \\prime } - g |" + }, + { + "category_id": 13, + "poly": [ + 1021, + 1619, + 1223, + 1619, + 1223, + 1652, + 1021, + 1652 + ], + "score": 0.92, + "latex": "r ^ { q } ( s , a ) - | x - g |" + }, + { + "category_id": 13, + "poly": [ + 394, + 1491, + 468, + 1491, + 468, + 1521, + 394, + 1521 + ], + "score": 0.92, + "latex": "C _ { a l i v e }" + }, + { + "category_id": 13, + "poly": [ + 999, + 1233, + 1150, + 1233, + 1150, + 1265, + 999, + 1265 + ], + "score": 0.92, + "latex": "C _ { a l i v e } = + 5" + }, + { + "category_id": 13, + "poly": [ + 299, + 1747, + 387, + 1747, + 387, + 1780, + 299, + 1780 + ], + "score": 0.92, + "latex": "| x ^ { \\prime } - g |" + }, + { + "category_id": 13, + "poly": [ + 1240, + 1912, + 1305, + 1912, + 1305, + 1945, + 1240, + 1945 + ], + "score": 0.92, + "latex": "( x , y )" + }, + { + "category_id": 13, + "poly": [ + 1064, + 1492, + 1213, + 1492, + 1213, + 1522, + 1064, + 1522 + ], + "score": 0.91, + "latex": "C _ { a l i v e } = + 1" + }, + { + "category_id": 13, + "poly": [ + 682, + 1811, + 1050, + 1811, + 1050, + 1846, + 682, + 1846 + ], + "score": 0.91, + "latex": "c ^ { h } ( s , a ) + C _ { a l i v e } - ( x ^ { 2 } + y ^ { 2 } ) ^ { 0 . 5 }" + }, + { + "category_id": 13, + "poly": [ + 1207, + 1203, + 1281, + 1203, + 1281, + 1233, + 1207, + 1233 + ], + "score": 0.91, + "latex": "C _ { a l i v e }" + }, + { + "category_id": 14, + "poly": [ + 335, + 1144, + 1331, + 1144, + 1331, + 1187, + 335, + 1187 + ], + "score": 0.91, + "latex": "r _ { t } ^ { h } ( s , a ) = v _ { f w d } + c ^ { h } ( s , a ) + C _ { a l i v e } = v _ { f w d } - 0 . 1 | a | | ^ { 2 } - 5 \\cdot 1 0 ^ { - 7 } | | F _ { i m p a c t } | | ^ { 2 } + C _ { a l i v e }" + }, + { + "category_id": 13, + "poly": [ + 1180, + 1234, + 1395, + 1234, + 1395, + 1268, + 1180, + 1268 + ], + "score": 0.91, + "latex": "2 . 0 \\geq z _ { b o d y } \\geq 1 . 0" + }, + { + "category_id": 13, + "poly": [ + 604, + 1491, + 742, + 1491, + 742, + 1524, + 604, + 1524 + ], + "score": 0.91, + "latex": "z _ { b o d y } \\ge 1 . 0" + }, + { + "category_id": 13, + "poly": [ + 833, + 1974, + 904, + 1974, + 904, + 2003, + 833, + 2003 + ], + "score": 0.91, + "latex": "C _ { a l i v e }" + }, + { + "category_id": 13, + "poly": [ + 400, + 1070, + 473, + 1070, + 473, + 1098, + 400, + 1098 + ], + "score": 0.9, + "latex": "C _ { a l i v e }" + }, + { + "category_id": 13, + "poly": [ + 774, + 1039, + 833, + 1039, + 833, + 1070, + 774, + 1070 + ], + "score": 0.89, + "latex": "v _ { f w d }" + }, + { + "category_id": 13, + "poly": [ + 1059, + 1591, + 1130, + 1591, + 1130, + 1618, + 1059, + 1618 + ], + "score": 0.88, + "latex": "x - g" + }, + { + "category_id": 14, + "poly": [ + 406, + 1355, + 1294, + 1355, + 1294, + 1397, + 406, + 1397 + ], + "score": 0.87, + "latex": "r _ { t } ^ { q } ( s , a ) = v _ { f w d } + c ^ { q } ( s , a ) = v _ { f w d } - 0 . 5 | a | | ^ { 2 } - 5 \\cdot 1 0 ^ { - 4 } | | F _ { i m p a c t } | | ^ { 2 } + C _ { a l i v e }" + }, + { + "category_id": 13, + "poly": [ + 422, + 1944, + 450, + 1944, + 450, + 1972, + 422, + 1972 + ], + "score": 0.87, + "latex": "b _ { x }" + }, + { + "category_id": 13, + "poly": [ + 1204, + 1589, + 1227, + 1589, + 1227, + 1619, + 1204, + 1619 + ], + "score": 0.87, + "latex": "l _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 536, + 1492, + 576, + 1492, + 576, + 1520, + 536, + 1520 + ], + "score": 0.84, + "latex": "+ 5" + }, + { + "category_id": 13, + "poly": [ + 618, + 1461, + 637, + 1461, + 637, + 1487, + 618, + 1487 + ], + "score": 0.83, + "latex": "h" + }, + { + "category_id": 13, + "poly": [ + 830, + 1949, + 847, + 1949, + 847, + 1974, + 830, + 1974 + ], + "score": 0.81, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 518, + 1947, + 537, + 1947, + 537, + 1970, + 518, + 1970 + ], + "score": 0.8, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 1110, + 1466, + 1127, + 1466, + 1127, + 1491, + 1110, + 1491 + ], + "score": 0.8, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 520, + 1624, + 538, + 1624, + 538, + 1651, + 520, + 1651 + ], + "score": 0.79, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 1156, + 1913, + 1172, + 1913, + 1172, + 1939, + 1156, + 1939 + ], + "score": 0.78, + "latex": "b" + }, + { + "category_id": 13, + "poly": [ + 915, + 1950, + 934, + 1950, + 934, + 1970, + 915, + 1970 + ], + "score": 0.78, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 651, + 1624, + 669, + 1624, + 669, + 1646, + 651, + 1646 + ], + "score": 0.78, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 804, + 1844, + 1171, + 1844, + 1171, + 1878, + 804, + 1878 + ], + "score": 0.77, + "latex": "c ^ { q } ( s , a ) + C _ { a l i v e } - ( x ^ { 2 } + y ^ { 2 } ) ^ { 0 . 5 }" + }, + { + "category_id": 13, + "poly": [ + 805, + 1492, + 844, + 1492, + 844, + 1520, + 805, + 1520 + ], + "score": 0.76, + "latex": "- 5" + }, + { + "category_id": 13, + "poly": [ + 348, + 1523, + 386, + 1523, + 386, + 1550, + 348, + 1550 + ], + "score": 0.73, + "latex": "- 1" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 839.0, + 719.0, + 839.0, + 719.0, + 884.0, + 294.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 912.0, + 1404.0, + 912.0, + 1404.0, + 949.0, + 295.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 946.0, + 1404.0, + 946.0, + 1404.0, + 977.0, + 296.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 975.0, + 1404.0, + 975.0, + 1404.0, + 1008.0, + 294.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1007.0, + 1404.0, + 1007.0, + 1404.0, + 1038.0, + 296.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1034.0, + 296.0, + 1034.0, + 296.0, + 1071.0, + 292.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 1034.0, + 773.0, + 1034.0, + 773.0, + 1071.0, + 697.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 834.0, + 1034.0, + 1406.0, + 1034.0, + 1406.0, + 1071.0, + 834.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1066.0, + 399.0, + 1066.0, + 399.0, + 1100.0, + 294.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 1066.0, + 838.0, + 1066.0, + 838.0, + 1100.0, + 474.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 1066.0, + 1405.0, + 1066.0, + 1405.0, + 1100.0, + 925.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1094.0, + 1106.0, + 1094.0, + 1106.0, + 1132.0, + 292.0, + 1132.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1198.0, + 372.0, + 1198.0, + 372.0, + 1240.0, + 293.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 1198.0, + 1206.0, + 1198.0, + 1206.0, + 1240.0, + 465.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 1198.0, + 1406.0, + 1198.0, + 1406.0, + 1240.0, + 1282.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1227.0, + 998.0, + 1227.0, + 998.0, + 1271.0, + 290.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 1227.0, + 1179.0, + 1227.0, + 1179.0, + 1271.0, + 1151.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1396.0, + 1227.0, + 1407.0, + 1227.0, + 1407.0, + 1271.0, + 1396.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1260.0, + 378.0, + 1260.0, + 378.0, + 1297.0, + 292.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1906.0, + 763.0, + 1906.0, + 763.0, + 1947.0, + 293.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1074.0, + 1906.0, + 1155.0, + 1906.0, + 1155.0, + 1947.0, + 1074.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 1906.0, + 1239.0, + 1906.0, + 1239.0, + 1947.0, + 1173.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1306.0, + 1906.0, + 1406.0, + 1906.0, + 1406.0, + 1947.0, + 1306.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1940.0, + 421.0, + 1940.0, + 421.0, + 1976.0, + 294.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 1940.0, + 517.0, + 1940.0, + 517.0, + 1976.0, + 451.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 538.0, + 1940.0, + 829.0, + 1940.0, + 829.0, + 1976.0, + 538.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 1940.0, + 914.0, + 1940.0, + 914.0, + 1976.0, + 848.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 935.0, + 1940.0, + 1404.0, + 1940.0, + 1404.0, + 1976.0, + 935.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1970.0, + 405.0, + 1970.0, + 405.0, + 2010.0, + 292.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 1970.0, + 832.0, + 1970.0, + 832.0, + 2010.0, + 716.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 905.0, + 1970.0, + 1408.0, + 1970.0, + 1408.0, + 2010.0, + 905.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2000.0, + 621.0, + 2000.0, + 621.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1457.0, + 617.0, + 1457.0, + 617.0, + 1495.0, + 293.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 638.0, + 1457.0, + 1109.0, + 1457.0, + 1109.0, + 1495.0, + 638.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 1457.0, + 1404.0, + 1457.0, + 1404.0, + 1495.0, + 1128.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1488.0, + 393.0, + 1488.0, + 393.0, + 1528.0, + 292.0, + 1528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 1488.0, + 535.0, + 1488.0, + 535.0, + 1528.0, + 469.0, + 1528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.0, + 1488.0, + 603.0, + 1488.0, + 603.0, + 1528.0, + 577.0, + 1528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 743.0, + 1488.0, + 804.0, + 1488.0, + 804.0, + 1528.0, + 743.0, + 1528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1488.0, + 1063.0, + 1488.0, + 1063.0, + 1528.0, + 845.0, + 1528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.0, + 1488.0, + 1242.0, + 1488.0, + 1242.0, + 1528.0, + 1214.0, + 1528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 1488.0, + 1406.0, + 1488.0, + 1406.0, + 1528.0, + 1395.0, + 1528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1521.0, + 347.0, + 1521.0, + 347.0, + 1555.0, + 294.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 1521.0, + 558.0, + 1521.0, + 558.0, + 1555.0, + 387.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1684.0, + 1405.0, + 1684.0, + 1405.0, + 1718.0, + 297.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1714.0, + 1009.0, + 1714.0, + 1009.0, + 1752.0, + 293.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1326.0, + 1714.0, + 1405.0, + 1714.0, + 1405.0, + 1752.0, + 1326.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 1745.0, + 826.0, + 1745.0, + 826.0, + 1783.0, + 388.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1806.0, + 681.0, + 1806.0, + 681.0, + 1851.0, + 293.0, + 1851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 1806.0, + 1408.0, + 1806.0, + 1408.0, + 1851.0, + 1051.0, + 1851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 1836.0, + 803.0, + 1836.0, + 803.0, + 1884.0, + 287.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 1836.0, + 1181.0, + 1836.0, + 1181.0, + 1884.0, + 1172.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1583.0, + 767.0, + 1583.0, + 767.0, + 1624.0, + 294.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 1583.0, + 1058.0, + 1583.0, + 1058.0, + 1624.0, + 979.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 1583.0, + 1203.0, + 1583.0, + 1203.0, + 1624.0, + 1131.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1228.0, + 1583.0, + 1406.0, + 1583.0, + 1406.0, + 1624.0, + 1228.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1616.0, + 519.0, + 1616.0, + 519.0, + 1656.0, + 295.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 539.0, + 1616.0, + 650.0, + 1616.0, + 650.0, + 1656.0, + 539.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 1616.0, + 1020.0, + 1616.0, + 1020.0, + 1656.0, + 670.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1224.0, + 1616.0, + 1236.0, + 1616.0, + 1236.0, + 1656.0, + 1224.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1304.0, + 1020.0, + 1304.0, + 1020.0, + 1350.0, + 294.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1408.0, + 372.0, + 1408.0, + 372.0, + 1451.0, + 295.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 1408.0, + 545.0, + 1408.0, + 545.0, + 1451.0, + 519.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 753.0, + 1408.0, + 840.0, + 1408.0, + 840.0, + 1451.0, + 753.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 717.0, + 1405.0, + 717.0, + 1405.0, + 756.0, + 294.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 749.0, + 901.0, + 749.0, + 901.0, + 784.0, + 321.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 631.0, + 1404.0, + 631.0, + 1404.0, + 670.0, + 294.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 665.0, + 1369.0, + 665.0, + 1369.0, + 700.0, + 322.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 228.0, + 1404.0, + 228.0, + 1404.0, + 266.0, + 295.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 256.0, + 1404.0, + 256.0, + 1404.0, + 300.0, + 321.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 293.0, + 697.0, + 293.0, + 697.0, + 323.0, + 324.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 429.0, + 1403.0, + 429.0, + 1403.0, + 469.0, + 294.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 462.0, + 478.0, + 462.0, + 478.0, + 496.0, + 323.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 515.0, + 1403.0, + 515.0, + 1403.0, + 554.0, + 294.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 549.0, + 1404.0, + 549.0, + 1404.0, + 583.0, + 323.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 579.0, + 537.0, + 579.0, + 537.0, + 611.0, + 324.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 344.0, + 1403.0, + 344.0, + 1403.0, + 383.0, + 293.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 376.0, + 1198.0, + 376.0, + 1198.0, + 411.0, + 323.0, + 411.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 620, + 1405, + 620, + 1405, + 868, + 296, + 868 + ], + "score": 0.983 + }, + { + "category_id": 5, + "poly": [ + 379, + 224, + 1318, + 224, + 1318, + 355, + 379, + 355 + ], + "score": 0.977, + "html": "
Force Magnitude
200300400500600
Sumo Agent372 ± 146327±150247± 143181 ± 114123 ± 57
Walker Agent179± 54139± 42116± 32103±2395 ± 20
" + }, + { + "category_id": 8, + "poly": [ + 600, + 883, + 1081, + 883, + 1081, + 955, + 600, + 955 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 297, + 1004, + 1404, + 1004, + 1404, + 1187, + 297, + 1187 + ], + "score": 0.935 + }, + { + "category_id": 0, + "poly": [ + 299, + 564, + 609, + 564, + 609, + 596, + 299, + 596 + ], + "score": 0.914 + }, + { + "category_id": 1, + "poly": [ + 300, + 971, + 723, + 971, + 723, + 1004, + 300, + 1004 + ], + "score": 0.912 + }, + { + "category_id": 0, + "poly": [ + 299, + 495, + 680, + 495, + 680, + 531, + 299, + 531 + ], + "score": 0.902 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 815, + 75, + 815, + 105, + 298, + 105 + ], + "score": 0.901 + }, + { + "category_id": 1, + "poly": [ + 298, + 1187, + 1402, + 1187, + 1402, + 1278, + 298, + 1278 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.841 + }, + { + "category_id": 6, + "poly": [ + 297, + 376, + 1402, + 376, + 1402, + 440, + 297, + 440 + ], + "score": 0.766 + }, + { + "category_id": 1, + "poly": [ + 297, + 376, + 1402, + 376, + 1402, + 440, + 297, + 440 + ], + "score": 0.123 + }, + { + "category_id": 14, + "poly": [ + 598, + 880, + 1083, + 880, + 1083, + 958, + 598, + 958 + ], + "score": 0.92, + "latex": "F _ { t } = { \\left\\{ \\begin{array} { l l } { \\qquad F } & { { \\mathrm { i f ~ } } t \\equiv 0 { \\pmod { 5 0 } } } \\\\ { 0 . 9 * F _ { t - 1 } } & { { \\mathrm { o t h e r w i s e } } } \\end{array} \\right. }" + }, + { + "category_id": 13, + "poly": [ + 372, + 971, + 714, + 971, + 714, + 1006, + 372, + 1006 + ], + "score": 0.9, + "latex": "F \\in \\{ 2 0 0 , 3 0 0 , 4 0 0 , 5 0 0 , 6 0 0 \\}" + }, + { + "category_id": 13, + "poly": [ + 419, + 715, + 564, + 715, + 564, + 747, + 419, + 747 + ], + "score": 0.89, + "latex": "z _ { b o d y } \\le 0 . 5" + }, + { + "category_id": 13, + "poly": [ + 1193, + 286, + 1299, + 286, + 1299, + 315, + 1193, + 315 + ], + "score": 0.3, + "latex": "1 2 3 \\pm 5 7" + }, + { + "category_id": 13, + "poly": [ + 1197, + 317, + 1294, + 317, + 1294, + 348, + 1197, + 348 + ], + "score": 0.25, + "latex": "\\overline { { 9 5 \\pm 2 0 } }" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 563.0, + 612.0, + 563.0, + 612.0, + 599.0, + 294.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 491.0, + 684.0, + 491.0, + 684.0, + 536.0, + 292.0, + 536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 376.0, + 1404.0, + 376.0, + 1404.0, + 412.0, + 296.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 405.0, + 1404.0, + 405.0, + 1404.0, + 444.0, + 293.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 622.0, + 1405.0, + 622.0, + 1405.0, + 656.0, + 296.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 651.0, + 1406.0, + 651.0, + 1406.0, + 690.0, + 293.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 680.0, + 1406.0, + 680.0, + 1406.0, + 720.0, + 291.0, + 720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 711.0, + 418.0, + 711.0, + 418.0, + 751.0, + 291.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 711.0, + 1407.0, + 711.0, + 1407.0, + 751.0, + 565.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 743.0, + 1407.0, + 743.0, + 1407.0, + 780.0, + 293.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 774.0, + 1406.0, + 774.0, + 1406.0, + 808.0, + 293.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 803.0, + 1403.0, + 803.0, + 1403.0, + 839.0, + 293.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 835.0, + 1194.0, + 835.0, + 1194.0, + 870.0, + 295.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1002.0, + 1402.0, + 1002.0, + 1402.0, + 1037.0, + 296.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1031.0, + 1405.0, + 1031.0, + 1405.0, + 1068.0, + 294.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1063.0, + 1405.0, + 1063.0, + 1405.0, + 1099.0, + 292.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1093.0, + 1407.0, + 1093.0, + 1407.0, + 1131.0, + 292.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1126.0, + 1406.0, + 1126.0, + 1406.0, + 1161.0, + 294.0, + 1161.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1155.0, + 1000.0, + 1155.0, + 1000.0, + 1192.0, + 294.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 969.0, + 371.0, + 969.0, + 371.0, + 1011.0, + 296.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 969.0, + 725.0, + 969.0, + 725.0, + 1011.0, + 715.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1185.0, + 1404.0, + 1185.0, + 1404.0, + 1218.0, + 294.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1216.0, + 1404.0, + 1216.0, + 1404.0, + 1248.0, + 293.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1246.0, + 752.0, + 1246.0, + 752.0, + 1283.0, + 293.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 376.0, + 1404.0, + 376.0, + 1404.0, + 412.0, + 296.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 405.0, + 1404.0, + 405.0, + 1404.0, + 444.0, + 293.0, + 444.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/SyK00v5xx/images/0db03eda6dec3f52f2d24b20fed9743e99c631a5610d463fc87b95de4106685e.jpg b/parse/train/SyK00v5xx/images/0db03eda6dec3f52f2d24b20fed9743e99c631a5610d463fc87b95de4106685e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..48c56c2e6d27b687b8195f5899f9adaee7dceb2b --- /dev/null +++ b/parse/train/SyK00v5xx/images/0db03eda6dec3f52f2d24b20fed9743e99c631a5610d463fc87b95de4106685e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4141808d379d257a2857211a5745b9de78836b12ecc395d063cf2d0e8001aa9 +size 9977 diff --git a/parse/train/SyK00v5xx/images/12a356df5052e679f9f941a2dd96cc2227910b0db55073d81ec6b0a71612d063.jpg b/parse/train/SyK00v5xx/images/12a356df5052e679f9f941a2dd96cc2227910b0db55073d81ec6b0a71612d063.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2cdcb2471774b26eab0939032008dca6c83e4b7c --- /dev/null +++ b/parse/train/SyK00v5xx/images/12a356df5052e679f9f941a2dd96cc2227910b0db55073d81ec6b0a71612d063.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55a2aedfe19857c7c249be30eb254be8b19a921eb922587de629a78f80f7a06c +size 7161 diff --git a/parse/train/SyK00v5xx/images/3e2b20892f5cf12a26c9cfb8621fe383d3c415906652c7aa7bc21010e97032d4.jpg b/parse/train/SyK00v5xx/images/3e2b20892f5cf12a26c9cfb8621fe383d3c415906652c7aa7bc21010e97032d4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7836e635e313ece97c33337aa487ec4337635e3b --- /dev/null +++ b/parse/train/SyK00v5xx/images/3e2b20892f5cf12a26c9cfb8621fe383d3c415906652c7aa7bc21010e97032d4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c21b54297eb1337d7c8898e9089e643d0365c75e6bc9684756e8183d53909ebb +size 18700 diff --git a/parse/train/SyK00v5xx/images/455f2835586133c54fa0c255b30ceb54e85dbccb3015e17c752a9346e49b4913.jpg b/parse/train/SyK00v5xx/images/455f2835586133c54fa0c255b30ceb54e85dbccb3015e17c752a9346e49b4913.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c3d135f7b42c413fecbb62fdc8bb2bf4b776e9c --- /dev/null +++ b/parse/train/SyK00v5xx/images/455f2835586133c54fa0c255b30ceb54e85dbccb3015e17c752a9346e49b4913.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8eb31214c964b554e652739bf33653d7d76c450b444141b7f216d5af32da02e9 +size 21093 diff --git a/parse/train/SyK00v5xx/images/5b50592df1ebeb128620c61386ac784d93b0be5935aee59ebf23e06bcf085120.jpg b/parse/train/SyK00v5xx/images/5b50592df1ebeb128620c61386ac784d93b0be5935aee59ebf23e06bcf085120.jpg new file mode 100644 index 0000000000000000000000000000000000000000..565ed6fd5a49ae94432f8c74cf0c0866d3fd384e --- /dev/null +++ b/parse/train/SyK00v5xx/images/5b50592df1ebeb128620c61386ac784d93b0be5935aee59ebf23e06bcf085120.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31ecd33bf42931311c80dfc725f91b4775540343f2fc230612589d2fe49fa836 +size 3479 diff --git a/parse/train/SyK00v5xx/images/647acf1507b33593373cc365a7af95924f4a690411809a4c5fbf1a4ab59b9501.jpg b/parse/train/SyK00v5xx/images/647acf1507b33593373cc365a7af95924f4a690411809a4c5fbf1a4ab59b9501.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8d6db6c71d4bfd227de5a63b643afdad3004eb22 --- /dev/null +++ b/parse/train/SyK00v5xx/images/647acf1507b33593373cc365a7af95924f4a690411809a4c5fbf1a4ab59b9501.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e9e6e0cec38023325e7fd7ea3231439bfc24ad368a401bf1f523f54b523d05a +size 14418 diff --git a/parse/train/SyK00v5xx/images/6d8ab93994b1b1f365b314a757508495a6b282763ecc8e941074f7e3b64214e1.jpg b/parse/train/SyK00v5xx/images/6d8ab93994b1b1f365b314a757508495a6b282763ecc8e941074f7e3b64214e1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6c27840ecdcb98f5af94d6dfa37c5ec2563399e0 --- /dev/null +++ b/parse/train/SyK00v5xx/images/6d8ab93994b1b1f365b314a757508495a6b282763ecc8e941074f7e3b64214e1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bd11b7a2efe45fa93f14d6917f3eef7a7b6d75723fceb980e29ebc5e1b7167a +size 30851 diff --git a/parse/train/SyK00v5xx/images/77626f80ed41e16185a4060f27c6d0640c1120247929d894e280adc5ea10b076.jpg b/parse/train/SyK00v5xx/images/77626f80ed41e16185a4060f27c6d0640c1120247929d894e280adc5ea10b076.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bd0f3436dd012fd97675daee0a0267e22d59a658 --- /dev/null +++ b/parse/train/SyK00v5xx/images/77626f80ed41e16185a4060f27c6d0640c1120247929d894e280adc5ea10b076.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eeb865ec06cf9ad84583167bff7da9d98a51a50b10f601798d45bfc5121f5abb +size 133396 diff --git a/parse/train/SyK00v5xx/images/7fe1bd4cd188a991dfb82440f4eb46f1526fc6641132f0a0e7c9a5b545785900.jpg b/parse/train/SyK00v5xx/images/7fe1bd4cd188a991dfb82440f4eb46f1526fc6641132f0a0e7c9a5b545785900.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cc8441250b4f6ee0bed7f902fb2189f90d8b5825 --- /dev/null +++ b/parse/train/SyK00v5xx/images/7fe1bd4cd188a991dfb82440f4eb46f1526fc6641132f0a0e7c9a5b545785900.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22ef56cd0bccd4c81c263f3f48eb7148727df450e43533429f11ef97ad04dc6d +size 8839 diff --git a/parse/train/SyK00v5xx/images/8c968f0f36b2db810b01680cb13f0757d3feb20c1d7d818c17385676ae06c81a.jpg b/parse/train/SyK00v5xx/images/8c968f0f36b2db810b01680cb13f0757d3feb20c1d7d818c17385676ae06c81a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..31cc3b5023c5033a55b52da4b179e3f568abdb5e --- /dev/null +++ b/parse/train/SyK00v5xx/images/8c968f0f36b2db810b01680cb13f0757d3feb20c1d7d818c17385676ae06c81a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65ebc7543869610dd1a683c93894b67deeab9a26658361a9c648954683d8701c +size 4072 diff --git a/parse/train/SyK00v5xx/images/a002406499619d50222f6919a156239a22ded95064395fab35a7a4ebb9470481.jpg b/parse/train/SyK00v5xx/images/a002406499619d50222f6919a156239a22ded95064395fab35a7a4ebb9470481.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b91bfadf5254d5a09e7255a9bbede328ac0fe87d --- /dev/null +++ b/parse/train/SyK00v5xx/images/a002406499619d50222f6919a156239a22ded95064395fab35a7a4ebb9470481.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d873dc6e59b28fe46e96f767c2c2546e31b75e04f406cff8d8203a2c2852700a +size 6667 diff --git a/parse/train/SyK00v5xx/images/aa07dbd5c83368280e4694d7e6f35fa18544333bf9b6e77b2d484893b8ddf721.jpg b/parse/train/SyK00v5xx/images/aa07dbd5c83368280e4694d7e6f35fa18544333bf9b6e77b2d484893b8ddf721.jpg new file mode 100644 index 0000000000000000000000000000000000000000..05a5423cc3739b695cd3bda78afd20b2fdc8d1da --- /dev/null +++ b/parse/train/SyK00v5xx/images/aa07dbd5c83368280e4694d7e6f35fa18544333bf9b6e77b2d484893b8ddf721.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94811d7c6de031cb10dace8975e30d9303e32573e17936b423b08b5486bc07ae +size 3235 diff --git a/parse/train/SyK00v5xx/images/aad7c04d8ffcf015e8ac19a6fc31d35c2774b36c1ae649da2ee56225803070e5.jpg b/parse/train/SyK00v5xx/images/aad7c04d8ffcf015e8ac19a6fc31d35c2774b36c1ae649da2ee56225803070e5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4bcc821f93392c935990654ca2389a3aec340f8b --- /dev/null +++ b/parse/train/SyK00v5xx/images/aad7c04d8ffcf015e8ac19a6fc31d35c2774b36c1ae649da2ee56225803070e5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6050fb598f37c850084b364e3c39fbb5099b382871a3253a7c2a3c83fac170d9 +size 8537 diff --git a/parse/train/SyK00v5xx/images/adb24812e1be3973891a5ff04e5cd868836eb00d7f83c452875ffd0e7d167a18.jpg b/parse/train/SyK00v5xx/images/adb24812e1be3973891a5ff04e5cd868836eb00d7f83c452875ffd0e7d167a18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..70dede85e8fde07d5288bf07c1c84b398b3bcd6d --- /dev/null +++ b/parse/train/SyK00v5xx/images/adb24812e1be3973891a5ff04e5cd868836eb00d7f83c452875ffd0e7d167a18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7535f4fb16b584a789d84c7fbed5812f719aa324def6787b1dbdf3a74ff838aa +size 3628 diff --git a/parse/train/SyK00v5xx/images/b377a252afe1dc54e2ff1fbed76b65374de2d393f5f84a7ad3b1e1f1fb653510.jpg b/parse/train/SyK00v5xx/images/b377a252afe1dc54e2ff1fbed76b65374de2d393f5f84a7ad3b1e1f1fb653510.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0d91fba9278044999c04ea8ded7ba7962b6c902e --- /dev/null +++ b/parse/train/SyK00v5xx/images/b377a252afe1dc54e2ff1fbed76b65374de2d393f5f84a7ad3b1e1f1fb653510.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f57c71e180664a67aefccc2c81e87e3fbaf0e70008c03378d68582c5d5cb8b2d +size 20016 diff --git a/parse/train/SyK00v5xx/images/b4ed1e146b10e91c46961385f9ecda51af588e0871a943808fa2b4ee810c6d69.jpg b/parse/train/SyK00v5xx/images/b4ed1e146b10e91c46961385f9ecda51af588e0871a943808fa2b4ee810c6d69.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7ae3989866b68e2756a9fe51055bd9c7fda60912 --- /dev/null +++ b/parse/train/SyK00v5xx/images/b4ed1e146b10e91c46961385f9ecda51af588e0871a943808fa2b4ee810c6d69.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fcd2fc3a291bec3be71be1a844f8aab1a9d4ffe2828ae080023c0cbf313dbf1 +size 75955 diff --git a/parse/train/SyK00v5xx/images/be38ee9a332252c5401ea9f6060d5834d26aafa22d4fe8ad33c506ea3d9a1f31.jpg b/parse/train/SyK00v5xx/images/be38ee9a332252c5401ea9f6060d5834d26aafa22d4fe8ad33c506ea3d9a1f31.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8233bff5745f948f13968c604bc85eaf94ce9be9 --- /dev/null +++ b/parse/train/SyK00v5xx/images/be38ee9a332252c5401ea9f6060d5834d26aafa22d4fe8ad33c506ea3d9a1f31.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94b1276734224ddde209c1e5c13b893222284db5f5e121c25eabb04a38c6a99f +size 6988 diff --git a/parse/train/SyK00v5xx/images/c32d2f203b138671bc94f2ef06fee5b630c88970c4df49150d68688a94f5f635.jpg b/parse/train/SyK00v5xx/images/c32d2f203b138671bc94f2ef06fee5b630c88970c4df49150d68688a94f5f635.jpg new file mode 100644 index 0000000000000000000000000000000000000000..39ad7695d8623f74acf845ae5e01f814f90842b1 --- /dev/null +++ b/parse/train/SyK00v5xx/images/c32d2f203b138671bc94f2ef06fee5b630c88970c4df49150d68688a94f5f635.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afac829fc49470e0db8b272c1d1ca7118568dba3fdaad51d1b37822cc7bd8191 +size 11181 diff --git a/parse/train/SyK00v5xx/images/c74d5ca6c803a594938ab24c054731a0d7baaa28794fe890750415b48d5a72e4.jpg b/parse/train/SyK00v5xx/images/c74d5ca6c803a594938ab24c054731a0d7baaa28794fe890750415b48d5a72e4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5bd94ea968fe83ef30cd47be11a826c2047e4d0d --- /dev/null +++ b/parse/train/SyK00v5xx/images/c74d5ca6c803a594938ab24c054731a0d7baaa28794fe890750415b48d5a72e4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d69677bd9a3f6397f8968f8e7d8a6d954c396cf3e57dd3b517c17bb3f78bc80a +size 10756 diff --git a/parse/train/SyK00v5xx/images/d1782a8dbfae8f823068daa79fd9ae2337e1fbf05069968bb0d96aca3d02283c.jpg b/parse/train/SyK00v5xx/images/d1782a8dbfae8f823068daa79fd9ae2337e1fbf05069968bb0d96aca3d02283c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b664e5742720e227f19c05090d84d867c76bfe5d --- /dev/null +++ b/parse/train/SyK00v5xx/images/d1782a8dbfae8f823068daa79fd9ae2337e1fbf05069968bb0d96aca3d02283c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0c9dd50e90c9c31b1fa48e9f234476dcfd75450a84e1b5468070a3947d4d041 +size 9372 diff --git a/parse/train/SyK00v5xx/images/da6c01619e6ff3c54016db07b58725266f6d1e8fd266b5eed6a2c77be23a2ca7.jpg b/parse/train/SyK00v5xx/images/da6c01619e6ff3c54016db07b58725266f6d1e8fd266b5eed6a2c77be23a2ca7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f76d68d66de51dc627b1f23ed67ed42bed63053c --- /dev/null +++ b/parse/train/SyK00v5xx/images/da6c01619e6ff3c54016db07b58725266f6d1e8fd266b5eed6a2c77be23a2ca7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:512dc0a96f58260c61119be09a8d76844c3c258f8af31e3687dbff9733753e4c +size 203031 diff --git a/parse/train/SyK00v5xx/images/dbcc02f6b67810473866640bb3e06a57115c819808156982eefba6ed8b625133.jpg b/parse/train/SyK00v5xx/images/dbcc02f6b67810473866640bb3e06a57115c819808156982eefba6ed8b625133.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a4e8268b45c0b8d9a1bd7865d2c0be5ef1b30397 --- /dev/null +++ b/parse/train/SyK00v5xx/images/dbcc02f6b67810473866640bb3e06a57115c819808156982eefba6ed8b625133.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:266ae6ba735e33cf969e77fc4f9d230ea2ce2024f7bccb02aa5d868fc225dde1 +size 5300 diff --git a/parse/train/SyK00v5xx/images/e3e081cedffb05736285b32d8931df207999f80264f25927b81e6f9ca3671242.jpg b/parse/train/SyK00v5xx/images/e3e081cedffb05736285b32d8931df207999f80264f25927b81e6f9ca3671242.jpg new file mode 100644 index 0000000000000000000000000000000000000000..40249924333b96856fe5e67275662587b98cc836 --- /dev/null +++ b/parse/train/SyK00v5xx/images/e3e081cedffb05736285b32d8931df207999f80264f25927b81e6f9ca3671242.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51208e7029ed41048c66c05e21ecf21d9f7da0d850eac7722462769fc73f63a0 +size 5598 diff --git a/parse/train/SyK00v5xx/images/e727fdc5995911b188fdd1556156d4acdbf77193f704b1ab6d8a80c133880337.jpg b/parse/train/SyK00v5xx/images/e727fdc5995911b188fdd1556156d4acdbf77193f704b1ab6d8a80c133880337.jpg new file mode 100644 index 0000000000000000000000000000000000000000..62894cf3c07de10dbcd53750fe9bd01fc38ab1bf --- /dev/null +++ b/parse/train/SyK00v5xx/images/e727fdc5995911b188fdd1556156d4acdbf77193f704b1ab6d8a80c133880337.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:362ec974621a8934fb9fb2f624e6f39a108a3d5323c8c8d540d960a6700bbbb5 +size 24886 diff --git a/parse/train/SyK00v5xx/images/e9ed55c9a76cf26b625bef184a4e3653c04e63f29caed16d87fd942772a72565.jpg b/parse/train/SyK00v5xx/images/e9ed55c9a76cf26b625bef184a4e3653c04e63f29caed16d87fd942772a72565.jpg new file mode 100644 index 0000000000000000000000000000000000000000..191c3fa1873a716219d373536860fa93d7068e58 --- /dev/null +++ b/parse/train/SyK00v5xx/images/e9ed55c9a76cf26b625bef184a4e3653c04e63f29caed16d87fd942772a72565.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a565c33a01430fd2d365227d73ce6a3f381efab9b7a65992dc112cfbea2e6733 +size 52452 diff --git a/parse/train/Sys6GJqxl/images/05c61d41b67a160eb809a601179a1bbfdb834ea54056d39fa6c2af97f2f429c1.jpg b/parse/train/Sys6GJqxl/images/05c61d41b67a160eb809a601179a1bbfdb834ea54056d39fa6c2af97f2f429c1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0a3e17621599471b8394045e1c0a8bfdac688152 --- /dev/null +++ b/parse/train/Sys6GJqxl/images/05c61d41b67a160eb809a601179a1bbfdb834ea54056d39fa6c2af97f2f429c1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83377b94f09bc8119db3b3288e298ed6a66aa44dbe95025b6d60e5fbcfb0db33 +size 17166 diff --git a/parse/train/Sys6GJqxl/images/27c4d2952213ff375ebcd9b1e14f8daf41bbf8494608a59f73f27f3b02c8f666.jpg b/parse/train/Sys6GJqxl/images/27c4d2952213ff375ebcd9b1e14f8daf41bbf8494608a59f73f27f3b02c8f666.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9912af54055cc586adb2d6208f5d8cd9ff842eda --- /dev/null +++ b/parse/train/Sys6GJqxl/images/27c4d2952213ff375ebcd9b1e14f8daf41bbf8494608a59f73f27f3b02c8f666.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93f8d218cf70e85b21dbc133d15535dea9418cb086d680d44f5099ec393c95d7 +size 18233 diff --git a/parse/train/Sys6GJqxl/images/422f10d6f00b19986ff6b8489f70b61e28e946370f55e76be067929c7ddb650d.jpg b/parse/train/Sys6GJqxl/images/422f10d6f00b19986ff6b8489f70b61e28e946370f55e76be067929c7ddb650d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0b5e547b36ada7d8b7f2f3ed6009602df5b27a3c --- /dev/null +++ b/parse/train/Sys6GJqxl/images/422f10d6f00b19986ff6b8489f70b61e28e946370f55e76be067929c7ddb650d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3b749da727972fab261e17d3b9a86ee45a878d88bed31392502f2d63f50630b +size 29409 diff --git a/parse/train/Sys6GJqxl/images/446a650524833dc183c55e7b56b02a832624e1035e1734aa6d031d0df5bea19c.jpg b/parse/train/Sys6GJqxl/images/446a650524833dc183c55e7b56b02a832624e1035e1734aa6d031d0df5bea19c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..20f9b7cfd042dc4969db0178e0234ad86eb33d93 --- /dev/null +++ b/parse/train/Sys6GJqxl/images/446a650524833dc183c55e7b56b02a832624e1035e1734aa6d031d0df5bea19c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52b0f9d601619947689f97a6b91f335cd2ea5fdde83f2921378bc9088ebe86d9 +size 4815 diff --git a/parse/train/Sys6GJqxl/images/522d43776650accc56c39ed9bde9e7438291848777232cbda09760a8f2b37dd5.jpg b/parse/train/Sys6GJqxl/images/522d43776650accc56c39ed9bde9e7438291848777232cbda09760a8f2b37dd5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7a701fa69436c58799682a678b06d45ef78d9b56 --- /dev/null +++ b/parse/train/Sys6GJqxl/images/522d43776650accc56c39ed9bde9e7438291848777232cbda09760a8f2b37dd5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87d837ff3667169ff029794ee4cf8d3f4f0bc49fe37b88e827bde0571b2e6fd9 +size 3578 diff --git a/parse/train/Sys6GJqxl/images/53ca6a7451be317d8123c2ddab3107233619e27cdc5de469e3e71e5c26a5196e.jpg b/parse/train/Sys6GJqxl/images/53ca6a7451be317d8123c2ddab3107233619e27cdc5de469e3e71e5c26a5196e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7fac456c89b909daeb3d1e1341b6b6dddce5085f --- /dev/null +++ b/parse/train/Sys6GJqxl/images/53ca6a7451be317d8123c2ddab3107233619e27cdc5de469e3e71e5c26a5196e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8767a61a82a2484840a9c683bd8b99f3cbc8c5fd95ff12e37e5f1148f101d400 +size 78170 diff --git a/parse/train/Sys6GJqxl/images/57351d35ab92eb5ca126634e29bfe8cf05b02b8cf4758349f6796a745810e508.jpg b/parse/train/Sys6GJqxl/images/57351d35ab92eb5ca126634e29bfe8cf05b02b8cf4758349f6796a745810e508.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8974e584fa158af96e7c599d50414e4e7fe6aba3 --- /dev/null +++ b/parse/train/Sys6GJqxl/images/57351d35ab92eb5ca126634e29bfe8cf05b02b8cf4758349f6796a745810e508.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f69fae19a1e829b957b57eb8b306b76fcf2392b215118e3c17cba6c152fcf1a2 +size 46528 diff --git a/parse/train/Sys6GJqxl/images/6e7b077340273c15cb1c60ac24f2022fbddebcf2db572a123043329699a053f7.jpg b/parse/train/Sys6GJqxl/images/6e7b077340273c15cb1c60ac24f2022fbddebcf2db572a123043329699a053f7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..992897093530389835406a4d8b26a99052a59a6c --- /dev/null +++ b/parse/train/Sys6GJqxl/images/6e7b077340273c15cb1c60ac24f2022fbddebcf2db572a123043329699a053f7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dc603c8e6f011321cd74c3856b619cfa05d5f35f2193bac39943e3b35796a4c +size 48351 diff --git a/parse/train/Sys6GJqxl/images/8d8f18c4c1768fe5d9e7dfa5a899aec272ebf0ce2d23e32090c21628b4d4c2b8.jpg b/parse/train/Sys6GJqxl/images/8d8f18c4c1768fe5d9e7dfa5a899aec272ebf0ce2d23e32090c21628b4d4c2b8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b6fd881005ce7e2c29c5f87af82c53fc7fa90fc4 --- /dev/null +++ b/parse/train/Sys6GJqxl/images/8d8f18c4c1768fe5d9e7dfa5a899aec272ebf0ce2d23e32090c21628b4d4c2b8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b01d4de206f00a7f27b690c9d370779de573e1ec98a954c887cdb879dcc54bce +size 140645 diff --git a/parse/train/Sys6GJqxl/images/9fff528d8fe52594427b7ef1c2698d8e2fd3792e063927ad887870e3211d2ca6.jpg b/parse/train/Sys6GJqxl/images/9fff528d8fe52594427b7ef1c2698d8e2fd3792e063927ad887870e3211d2ca6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5ac598975dc76115ea0b5432d45a0a9636cf2ef8 --- /dev/null +++ b/parse/train/Sys6GJqxl/images/9fff528d8fe52594427b7ef1c2698d8e2fd3792e063927ad887870e3211d2ca6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67ab6e2957677cf95032b6eaf9a3e059c03e70d9588b981ef4353cf75d417b2f +size 128219 diff --git a/parse/train/Sys6GJqxl/images/a1887630fc76b5a33fe3cc990d50bdf003055e01ecec0a305f8e2d4e6d38a26c.jpg b/parse/train/Sys6GJqxl/images/a1887630fc76b5a33fe3cc990d50bdf003055e01ecec0a305f8e2d4e6d38a26c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..220b5672faacb7dac4de20c61be512aaf7e4f22a --- /dev/null +++ b/parse/train/Sys6GJqxl/images/a1887630fc76b5a33fe3cc990d50bdf003055e01ecec0a305f8e2d4e6d38a26c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baeb26e9908d9c98782ddd8b694d98248bc1c499343c85888bed00201d82ae18 +size 11880 diff --git a/parse/train/Sys6GJqxl/images/ad3334f7bf56a87943927275a01a7bdc62b08da4144a74c6f38f3f3d85e19bac.jpg b/parse/train/Sys6GJqxl/images/ad3334f7bf56a87943927275a01a7bdc62b08da4144a74c6f38f3f3d85e19bac.jpg new file mode 100644 index 0000000000000000000000000000000000000000..040eca9855f17d4d97fc3a3d902483df9c7bcde7 --- /dev/null +++ b/parse/train/Sys6GJqxl/images/ad3334f7bf56a87943927275a01a7bdc62b08da4144a74c6f38f3f3d85e19bac.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c826589909b8467863729ee41a38175d133dbfdb3742ae5083e58366aead2f4 +size 7527 diff --git a/parse/train/Sys6GJqxl/images/adff4d14292889778aad321b3feea0a4ff308dbaad1eef79d58ea4aaed28ddbd.jpg b/parse/train/Sys6GJqxl/images/adff4d14292889778aad321b3feea0a4ff308dbaad1eef79d58ea4aaed28ddbd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..750037e6fe8df115f5d29e159554ec32cf96ab9a --- /dev/null +++ b/parse/train/Sys6GJqxl/images/adff4d14292889778aad321b3feea0a4ff308dbaad1eef79d58ea4aaed28ddbd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fab958c7dbb55a97533e19ac929061f089512b46dc7b636ef8ac8dc8605f637d +size 17636 diff --git a/parse/train/Sys6GJqxl/images/b3a6cc0e689124a69d00a525719744fef7d87ee7a80949cc9358ee3722444e9d.jpg b/parse/train/Sys6GJqxl/images/b3a6cc0e689124a69d00a525719744fef7d87ee7a80949cc9358ee3722444e9d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4a208886aafbfa40476c7d6ec9a30c894b4ed024 --- /dev/null +++ b/parse/train/Sys6GJqxl/images/b3a6cc0e689124a69d00a525719744fef7d87ee7a80949cc9358ee3722444e9d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88cfaffad6c0489a4539d86246d53889f3b8c4470ce9981258c9634fc3d512d4 +size 17265 diff --git a/parse/train/Sys6GJqxl/images/b3e62aad33b323bdfbf1ec7cc7541f68ed8704ef8f7d2b81b2394305a2fcf633.jpg b/parse/train/Sys6GJqxl/images/b3e62aad33b323bdfbf1ec7cc7541f68ed8704ef8f7d2b81b2394305a2fcf633.jpg new file mode 100644 index 0000000000000000000000000000000000000000..93d523103fa7f1444c4149fa62c9ef42ca05449c --- /dev/null +++ b/parse/train/Sys6GJqxl/images/b3e62aad33b323bdfbf1ec7cc7541f68ed8704ef8f7d2b81b2394305a2fcf633.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9336a67d1eda103f39183edcd1386bc608b2f7aeee8c02abc0209a93aebc1d8b +size 46535 diff --git a/parse/train/Sys6GJqxl/images/bfb1941749e173fb395c6d57f9a50a5592ff711e84a6f403d6816dabce496bd2.jpg b/parse/train/Sys6GJqxl/images/bfb1941749e173fb395c6d57f9a50a5592ff711e84a6f403d6816dabce496bd2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..405f7e34ab38c36396f8fbaaad012f2d60f6faff --- /dev/null +++ b/parse/train/Sys6GJqxl/images/bfb1941749e173fb395c6d57f9a50a5592ff711e84a6f403d6816dabce496bd2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db634ccdd2acc19fc53218021211cb1d6d67706fcbb7f18d7384517f3d392997 +size 44623 diff --git a/parse/train/Sys6GJqxl/images/cf69b931d61d63ec428c5de492f0cb9995e07864e42313d5a52491aa90407901.jpg b/parse/train/Sys6GJqxl/images/cf69b931d61d63ec428c5de492f0cb9995e07864e42313d5a52491aa90407901.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ac52e8e56e0fc820f22ea81b913ee466db146e4d --- /dev/null +++ b/parse/train/Sys6GJqxl/images/cf69b931d61d63ec428c5de492f0cb9995e07864e42313d5a52491aa90407901.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0576e6a17128a02bc7adaafba9b655b8eb6f41348a5deffe6e758d9c320bb79 +size 4939 diff --git a/parse/train/Sys6GJqxl/images/d44c0999f2574e8d8af9428d5610ac2a9461ab942c04c16b2d4c3b7bcbc55034.jpg b/parse/train/Sys6GJqxl/images/d44c0999f2574e8d8af9428d5610ac2a9461ab942c04c16b2d4c3b7bcbc55034.jpg new file mode 100644 index 0000000000000000000000000000000000000000..44f6cc6385a6c5e3ddbc6ab393decd15242ba0ce --- /dev/null +++ b/parse/train/Sys6GJqxl/images/d44c0999f2574e8d8af9428d5610ac2a9461ab942c04c16b2d4c3b7bcbc55034.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bc7e95ff0f36d7fe3215c64b50757282280200bd3b33304fd74694d7e20ca05 +size 4529 diff --git a/parse/train/Sys6GJqxl/images/d4596d0b44e2f6f824fc48bc04d6bca49b1db70ef8147ffa2c78d4c1f0af0561.jpg b/parse/train/Sys6GJqxl/images/d4596d0b44e2f6f824fc48bc04d6bca49b1db70ef8147ffa2c78d4c1f0af0561.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a069f095886d24c902e768ee22fb0e06f36936e7 --- /dev/null +++ b/parse/train/Sys6GJqxl/images/d4596d0b44e2f6f824fc48bc04d6bca49b1db70ef8147ffa2c78d4c1f0af0561.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f483193af5b6a5c364d34c8f7adf5313b16b3a1ece5ecd98ca40cc1aaa86c46 +size 45065 diff --git a/parse/train/Sys6GJqxl/images/e080819525a4269f5cb39aa6dbb9b0ed251e881adf03d78969dd0dce252d72ac.jpg b/parse/train/Sys6GJqxl/images/e080819525a4269f5cb39aa6dbb9b0ed251e881adf03d78969dd0dce252d72ac.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4a68d36e2cd2c4d36298fd6049908a256469a143 --- /dev/null +++ b/parse/train/Sys6GJqxl/images/e080819525a4269f5cb39aa6dbb9b0ed251e881adf03d78969dd0dce252d72ac.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a328a3074efc34bd3b7ab0165eacf037cf0c01e649c978e95d9fdbdc8f75540b +size 7505 diff --git a/parse/train/Sys6GJqxl/images/f982fef3bcac6177d836eacf2a13cdf205aa35e6010812f8fa06d90c89b8d1b3.jpg b/parse/train/Sys6GJqxl/images/f982fef3bcac6177d836eacf2a13cdf205aa35e6010812f8fa06d90c89b8d1b3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f05b60fe91d6dd443731fda3e9c0d86fd5a7f98 --- /dev/null +++ b/parse/train/Sys6GJqxl/images/f982fef3bcac6177d836eacf2a13cdf205aa35e6010812f8fa06d90c89b8d1b3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cd2cb9ace54a5e0c2a8cf54c59f39d852def31bcdd20ba81a60a32700817e1e +size 1951 diff --git a/parse/train/TJSOfuZEd1B/images/0b855e7fce10a32540ed47fe64be6c0df55efcfdd69775e0d44c7e98ef8e0067.jpg b/parse/train/TJSOfuZEd1B/images/0b855e7fce10a32540ed47fe64be6c0df55efcfdd69775e0d44c7e98ef8e0067.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8b0a10c6eb7ed415e6b1b61b6616f7429e6237cc --- /dev/null +++ b/parse/train/TJSOfuZEd1B/images/0b855e7fce10a32540ed47fe64be6c0df55efcfdd69775e0d44c7e98ef8e0067.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14678f46155e88f40f7cb8031769b23ae966a5680d47d9eabb16be557afd2f8d +size 259017 diff --git a/parse/train/TJSOfuZEd1B/images/0b8eb3b13d42c0794cb809eea01667b2af30ca0babb2b268e1dbd4fd35988c9e.jpg b/parse/train/TJSOfuZEd1B/images/0b8eb3b13d42c0794cb809eea01667b2af30ca0babb2b268e1dbd4fd35988c9e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..366f4d6d7820d673ad277f80c84c06f3a43e1b7c --- /dev/null +++ b/parse/train/TJSOfuZEd1B/images/0b8eb3b13d42c0794cb809eea01667b2af30ca0babb2b268e1dbd4fd35988c9e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44e7d55d250bd9c90d16e54675562ac755dd5d6d007df64f404a692010def997 +size 402716 diff --git a/parse/train/TJSOfuZEd1B/images/1c115c90f3173f98ae13ad4678991cc788dc183a8cb3655d81b45997d784ee20.jpg b/parse/train/TJSOfuZEd1B/images/1c115c90f3173f98ae13ad4678991cc788dc183a8cb3655d81b45997d784ee20.jpg new file mode 100644 index 0000000000000000000000000000000000000000..effc68c78f23eda683c4e5ea2fddff33fa25c8c9 --- /dev/null +++ b/parse/train/TJSOfuZEd1B/images/1c115c90f3173f98ae13ad4678991cc788dc183a8cb3655d81b45997d784ee20.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b05412a2acf9d616de757138e4163db09fbdcb0e30b7b03d0c49de2e762c039 +size 4875 diff --git a/parse/train/TJSOfuZEd1B/images/1c53c4fd493688dfa8efd83b3c4aff4bbce95739697e4cf23b8c60c9c2bf9e14.jpg b/parse/train/TJSOfuZEd1B/images/1c53c4fd493688dfa8efd83b3c4aff4bbce95739697e4cf23b8c60c9c2bf9e14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fd3fa0367a45d0fe323425effffd7285253f947b --- /dev/null +++ b/parse/train/TJSOfuZEd1B/images/1c53c4fd493688dfa8efd83b3c4aff4bbce95739697e4cf23b8c60c9c2bf9e14.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ece984be84440d5d0eb980af5670de8a2af1fd64bd4e56ba7a051c464f4077c2 +size 110363 diff --git a/parse/train/TJSOfuZEd1B/images/1f4306f6bbe3f17fb3595b39a09e824f5b707465b56126ee962515fe9d53b074.jpg b/parse/train/TJSOfuZEd1B/images/1f4306f6bbe3f17fb3595b39a09e824f5b707465b56126ee962515fe9d53b074.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2083f52ec5aff5de026eae43c5e3c83bcbaf00c1 --- /dev/null +++ b/parse/train/TJSOfuZEd1B/images/1f4306f6bbe3f17fb3595b39a09e824f5b707465b56126ee962515fe9d53b074.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:463deced39bd0f6d02cf3f47f63edf070b01c25a5b83010a4e0628fb85f772ad +size 8229 diff --git a/parse/train/TJSOfuZEd1B/images/22fa8318488c2d101b367e05fc4576baa4ac958503bbdbef53387dc7de7fbbb5.jpg b/parse/train/TJSOfuZEd1B/images/22fa8318488c2d101b367e05fc4576baa4ac958503bbdbef53387dc7de7fbbb5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2bc775c3b69e18e17cdaabee2cc0ac832632458d --- /dev/null +++ b/parse/train/TJSOfuZEd1B/images/22fa8318488c2d101b367e05fc4576baa4ac958503bbdbef53387dc7de7fbbb5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35c961e98ab7b77ba98aa175c9006936f97c71ac73af1888b173e43f2c59f11f +size 5947 diff --git a/parse/train/TJSOfuZEd1B/images/2dab760870b86fe7cee0874cc5c1e783d422f51925c646a0ee974a8a719745d1.jpg b/parse/train/TJSOfuZEd1B/images/2dab760870b86fe7cee0874cc5c1e783d422f51925c646a0ee974a8a719745d1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..216693927e8dec79513b0c0c869c78d3a4e136c2 --- /dev/null +++ b/parse/train/TJSOfuZEd1B/images/2dab760870b86fe7cee0874cc5c1e783d422f51925c646a0ee974a8a719745d1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76db06cfa88cbc7998b288023d5f300a341cecdfe4aea3807092b5676aec7cc2 +size 380021 diff --git a/parse/train/TJSOfuZEd1B/images/33d852c506ec1f81fcae1c02086f178caa9e24ca22d09f3468aa651dd9b3433d.jpg b/parse/train/TJSOfuZEd1B/images/33d852c506ec1f81fcae1c02086f178caa9e24ca22d09f3468aa651dd9b3433d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2f66999ae64dd4d7a7810da9e4dfd752b1e97eed --- /dev/null +++ b/parse/train/TJSOfuZEd1B/images/33d852c506ec1f81fcae1c02086f178caa9e24ca22d09f3468aa651dd9b3433d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:298dea26109fe346064d20b48c3a1229bceea8a93534da5460cbfef9cfe6d2d3 +size 4506 diff --git a/parse/train/TJSOfuZEd1B/images/3a16b5a770ef45c1b8f9c1c66c2e5dd47c63c4af623fbaa261492d17ed6c7ff1.jpg b/parse/train/TJSOfuZEd1B/images/3a16b5a770ef45c1b8f9c1c66c2e5dd47c63c4af623fbaa261492d17ed6c7ff1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b7f6a579233bac0ce5ae785707526c19db66281b --- /dev/null +++ b/parse/train/TJSOfuZEd1B/images/3a16b5a770ef45c1b8f9c1c66c2e5dd47c63c4af623fbaa261492d17ed6c7ff1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4deff38f79a798a38b1bd5b845146e51bd05d5c905a80dce2b7b6c496d7afaa +size 7293 diff --git a/parse/train/TJSOfuZEd1B/images/4243772e0870c3cb4ec4760275338a58b3f9669b4ea4fd0205900aef7ce2f090.jpg b/parse/train/TJSOfuZEd1B/images/4243772e0870c3cb4ec4760275338a58b3f9669b4ea4fd0205900aef7ce2f090.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a580b593399b8ba280956f0561cca5d8de1cb2ce --- /dev/null +++ b/parse/train/TJSOfuZEd1B/images/4243772e0870c3cb4ec4760275338a58b3f9669b4ea4fd0205900aef7ce2f090.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88ce46d51c165a2d6a2393e31a53ec1fc03ee7061ec56fe2c619d6027c9fe0ed +size 74444 diff --git a/parse/train/TJSOfuZEd1B/images/44bdab3b774d113558f3950867cd9b517a4a48d14ea9f719d9273fbbc01ba795.jpg b/parse/train/TJSOfuZEd1B/images/44bdab3b774d113558f3950867cd9b517a4a48d14ea9f719d9273fbbc01ba795.jpg new file mode 100644 index 0000000000000000000000000000000000000000..24c1f8192c3751f48175c4c706e1e9d3c47ac58c --- /dev/null +++ b/parse/train/TJSOfuZEd1B/images/44bdab3b774d113558f3950867cd9b517a4a48d14ea9f719d9273fbbc01ba795.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2dfe430f1e69cc6bc8b811454d9b9df113f35420d37f5e86961391ba863ed38 +size 31787 diff --git a/parse/train/TJSOfuZEd1B/images/47786d68e1942b0cb24cfbd3ab26118200d4a539abf51556323131ca029285e8.jpg b/parse/train/TJSOfuZEd1B/images/47786d68e1942b0cb24cfbd3ab26118200d4a539abf51556323131ca029285e8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ca551e550f0d7079b0d9efd8b85dc94504140b19 --- /dev/null +++ b/parse/train/TJSOfuZEd1B/images/47786d68e1942b0cb24cfbd3ab26118200d4a539abf51556323131ca029285e8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa3d95e391dc49e522919df7834dbe0cad357a6a8f6de027cb96ccc7bed678ba +size 87879 diff --git a/parse/train/TJSOfuZEd1B/images/4816d25dde95e6be34f41039fc64f01716c321e7f60e9a543c9181e23e80b4ea.jpg b/parse/train/TJSOfuZEd1B/images/4816d25dde95e6be34f41039fc64f01716c321e7f60e9a543c9181e23e80b4ea.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a23b13f767048d779148b9f62053fecbf8cb7377 --- /dev/null +++ b/parse/train/TJSOfuZEd1B/images/4816d25dde95e6be34f41039fc64f01716c321e7f60e9a543c9181e23e80b4ea.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b614a799844c8b73f2b9dee4d4c6bbc898785b4baf71f43acf353b631365cd3 +size 12229 diff --git a/parse/train/TJSOfuZEd1B/images/4c265ad13421ddd4b4c906b07164479b70ee16bc0b2929cb93647d5800667fef.jpg b/parse/train/TJSOfuZEd1B/images/4c265ad13421ddd4b4c906b07164479b70ee16bc0b2929cb93647d5800667fef.jpg new file mode 100644 index 0000000000000000000000000000000000000000..05fb3ac02244b3e0fae274e6f035b3b616ffb94d --- /dev/null +++ b/parse/train/TJSOfuZEd1B/images/4c265ad13421ddd4b4c906b07164479b70ee16bc0b2929cb93647d5800667fef.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28a3e332dc99e6e9a7369767ef52041c1015ed5b8f0ccf7a8567519040591394 +size 23531 diff --git a/parse/train/TJSOfuZEd1B/images/4cd2c30f230c9133d0bf5c2d43a35df049dc70b6b6a50251d6c932b31d64c82e.jpg b/parse/train/TJSOfuZEd1B/images/4cd2c30f230c9133d0bf5c2d43a35df049dc70b6b6a50251d6c932b31d64c82e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..541aef2a3ce34704d67cde6fe38f3867a7a5a2ac --- /dev/null +++ b/parse/train/TJSOfuZEd1B/images/4cd2c30f230c9133d0bf5c2d43a35df049dc70b6b6a50251d6c932b31d64c82e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1735503211daf57d29d4f805fcd833d6089e43dc2d3371c87fdaf99ffb04f8a +size 50381 diff --git a/parse/train/TJSOfuZEd1B/images/4e8824a56bee1af1df11e2aca36b7be28fef9921938d6ba0851bbf26a19b3d5f.jpg b/parse/train/TJSOfuZEd1B/images/4e8824a56bee1af1df11e2aca36b7be28fef9921938d6ba0851bbf26a19b3d5f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5c3d590824d4cc827a6a7281ad7b913a2a7d4608 --- /dev/null +++ b/parse/train/TJSOfuZEd1B/images/4e8824a56bee1af1df11e2aca36b7be28fef9921938d6ba0851bbf26a19b3d5f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcd95fd7116606f5cde8e49dd39d6f45b2d3f773a7ddb72880b38167248c8e9a +size 7287 diff --git a/parse/train/TJSOfuZEd1B/images/4efc1a296fae7402b1abeadfe379e4a3b07ef33e679de8121d3cc33a92918784.jpg b/parse/train/TJSOfuZEd1B/images/4efc1a296fae7402b1abeadfe379e4a3b07ef33e679de8121d3cc33a92918784.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7bedbd6eef7f71ab08b747dc89a28224e8c1ee1c --- /dev/null +++ b/parse/train/TJSOfuZEd1B/images/4efc1a296fae7402b1abeadfe379e4a3b07ef33e679de8121d3cc33a92918784.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:465ae41173d77730cffc9b86a494ef70dabe98983f4379063b9593565cba23ad +size 246233 diff --git a/parse/train/TJSOfuZEd1B/images/51c6176a21cff7850f30cfe870faf9403718ea328d9de742e8ebf57173032b35.jpg b/parse/train/TJSOfuZEd1B/images/51c6176a21cff7850f30cfe870faf9403718ea328d9de742e8ebf57173032b35.jpg new file mode 100644 index 0000000000000000000000000000000000000000..df7dfc309c75e2aa3e301915954c3cf5e07b8a15 --- /dev/null +++ b/parse/train/TJSOfuZEd1B/images/51c6176a21cff7850f30cfe870faf9403718ea328d9de742e8ebf57173032b35.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:076c20bb367c043fa138a7c4ca85a7f65a8032bd486fdd520ab75694501e6fa9 +size 4507 diff --git a/parse/train/TJSOfuZEd1B/images/6ea2ce049ca21a9b8feaea46e715b94565246d315dfed32e5f8ed488d189eda7.jpg b/parse/train/TJSOfuZEd1B/images/6ea2ce049ca21a9b8feaea46e715b94565246d315dfed32e5f8ed488d189eda7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b99fa17829faa3a6c28d3e8c8f1f360e027205d1 --- /dev/null +++ b/parse/train/TJSOfuZEd1B/images/6ea2ce049ca21a9b8feaea46e715b94565246d315dfed32e5f8ed488d189eda7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f9c12ff043dfdc4f3ab746f7a5a1cf1a1fb3ad264034406cf883172e1c0add9 +size 241402 diff --git a/parse/train/TJSOfuZEd1B/images/707f8940913e456f4c28cd3e2d4906141054f17956222a87d98376f0d2e7cd85.jpg b/parse/train/TJSOfuZEd1B/images/707f8940913e456f4c28cd3e2d4906141054f17956222a87d98376f0d2e7cd85.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dcda9fb0d09d0b06d079e9648c30eaabaa91f384 --- /dev/null +++ b/parse/train/TJSOfuZEd1B/images/707f8940913e456f4c28cd3e2d4906141054f17956222a87d98376f0d2e7cd85.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cb8c6e8f9792aa1f7eb501600ecd576ebe7d4798239f643402d5ce0ef3a70d2 +size 198527 diff --git a/parse/train/TJSOfuZEd1B/images/826c27d455e21aba08a76fa26fb419244d424941ba56a346fcea17de4dc77ee9.jpg b/parse/train/TJSOfuZEd1B/images/826c27d455e21aba08a76fa26fb419244d424941ba56a346fcea17de4dc77ee9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b9cb50e9701da5e1a2027322ee9c2cee0c502c60 --- /dev/null +++ b/parse/train/TJSOfuZEd1B/images/826c27d455e21aba08a76fa26fb419244d424941ba56a346fcea17de4dc77ee9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b521994ba12cd7c55fcd79871296ff5bdb16f0513e3c7779dcc7e628cc9ecd01 +size 8077 diff --git a/parse/train/TJSOfuZEd1B/images/82829554df7bf5def0255f03506e693d012b0fa0bb1e2e894e95f9ca028cc688.jpg b/parse/train/TJSOfuZEd1B/images/82829554df7bf5def0255f03506e693d012b0fa0bb1e2e894e95f9ca028cc688.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c669773b3e68b892e193298260e6d4992fce7880 --- /dev/null +++ b/parse/train/TJSOfuZEd1B/images/82829554df7bf5def0255f03506e693d012b0fa0bb1e2e894e95f9ca028cc688.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80e69588cfa74125b5bbd0f36cda58af352a35eb2110bdb2cf202b5756f5124b +size 270427 diff --git a/parse/train/TJSOfuZEd1B/images/91fa02c4394059308bbe36b6c218bd841b2e81f6650a6005200487f4bc4b6d0e.jpg b/parse/train/TJSOfuZEd1B/images/91fa02c4394059308bbe36b6c218bd841b2e81f6650a6005200487f4bc4b6d0e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dfbbdd1ddc419842a56b37d36d4e7d2aeae31e16 --- /dev/null +++ b/parse/train/TJSOfuZEd1B/images/91fa02c4394059308bbe36b6c218bd841b2e81f6650a6005200487f4bc4b6d0e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ebb50ac339774e241c9681972e91cf57c333ae43279c9fb0adee18d28921622 +size 100408 diff --git a/parse/train/TJSOfuZEd1B/images/98274e472496ddff14419bec54b25ba8df67e36f77b50c6fdd233516367f95d0.jpg b/parse/train/TJSOfuZEd1B/images/98274e472496ddff14419bec54b25ba8df67e36f77b50c6fdd233516367f95d0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..98eae2207999917d52380646d06593b430362584 --- /dev/null +++ b/parse/train/TJSOfuZEd1B/images/98274e472496ddff14419bec54b25ba8df67e36f77b50c6fdd233516367f95d0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ae79b0be10103d96dc34823fe21a935341a814befcb3c81db6ac8d18381e6d8 +size 61410 diff --git a/parse/train/TJSOfuZEd1B/images/9c755e1affc7fd2d6e6385ee047d829186c40cb6acda1fedea6e4b0e58334075.jpg b/parse/train/TJSOfuZEd1B/images/9c755e1affc7fd2d6e6385ee047d829186c40cb6acda1fedea6e4b0e58334075.jpg new file mode 100644 index 0000000000000000000000000000000000000000..406f43877f24c91eb00312f7dd1b9016ff46bd5c --- /dev/null +++ b/parse/train/TJSOfuZEd1B/images/9c755e1affc7fd2d6e6385ee047d829186c40cb6acda1fedea6e4b0e58334075.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d38d85f3bf3e9d7c694b03d5a95e3aae034cc9aec4ff9feeca3c8a8162f3ac76 +size 26809 diff --git a/parse/train/TJSOfuZEd1B/images/a1d03f10a94740490db528c72b0052c8a4e860aee3d16d6cc5d73b41d8c80dd2.jpg b/parse/train/TJSOfuZEd1B/images/a1d03f10a94740490db528c72b0052c8a4e860aee3d16d6cc5d73b41d8c80dd2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aa0c0b9a7b0348784caa5f3dee614fd8894338c8 --- /dev/null +++ b/parse/train/TJSOfuZEd1B/images/a1d03f10a94740490db528c72b0052c8a4e860aee3d16d6cc5d73b41d8c80dd2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35b58f4c19171390abfa2fcc1265c1971831a189384f2f51852ba2a9e4c69b2a +size 49335 diff --git a/parse/train/TJSOfuZEd1B/images/b1dd2a6f989152ca7a107cab4cf69ad057a42bfff596ecffb05ca7ced4e5ee75.jpg b/parse/train/TJSOfuZEd1B/images/b1dd2a6f989152ca7a107cab4cf69ad057a42bfff596ecffb05ca7ced4e5ee75.jpg new file mode 100644 index 0000000000000000000000000000000000000000..11914a4a44b4ea09791791991aa9322cb23a1901 --- /dev/null +++ b/parse/train/TJSOfuZEd1B/images/b1dd2a6f989152ca7a107cab4cf69ad057a42bfff596ecffb05ca7ced4e5ee75.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dbcf914496147019a92800be2209ebf803909ff90158f9334f9159b879db3b0 +size 50137 diff --git a/parse/train/TJSOfuZEd1B/images/b23627a0e6cd8839f0687ef2be2db724ffe2cb995cd4b64e034153e23a630211.jpg b/parse/train/TJSOfuZEd1B/images/b23627a0e6cd8839f0687ef2be2db724ffe2cb995cd4b64e034153e23a630211.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5dd46322bc6265ff5cf46ee89a3c302407463e24 --- /dev/null +++ b/parse/train/TJSOfuZEd1B/images/b23627a0e6cd8839f0687ef2be2db724ffe2cb995cd4b64e034153e23a630211.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8d8b9dd9dd33bd132abb9f525fa20fe61c2ba9ebf198b7180c360245ae4ccde +size 7387 diff --git a/parse/train/TJSOfuZEd1B/images/c819dab6389bcc978afb43ba08cb146344fb8dc474dcb648935c182d92a530f3.jpg b/parse/train/TJSOfuZEd1B/images/c819dab6389bcc978afb43ba08cb146344fb8dc474dcb648935c182d92a530f3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2ea4100bfb56433b948057e907a803c1ae9c02b5 --- /dev/null +++ b/parse/train/TJSOfuZEd1B/images/c819dab6389bcc978afb43ba08cb146344fb8dc474dcb648935c182d92a530f3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d0c4ab13419670ca7e1fc93ee5a12315114b9ddf190d17111f884f30518599a +size 9633 diff --git a/parse/train/TJSOfuZEd1B/images/c82524cd66d327f07df5ecb30b3dc7c24af241981cb19639e789f6bf8cd6d7cb.jpg b/parse/train/TJSOfuZEd1B/images/c82524cd66d327f07df5ecb30b3dc7c24af241981cb19639e789f6bf8cd6d7cb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0a439a7c25b1492cbc8cc734e2c0da775d897d94 --- /dev/null +++ b/parse/train/TJSOfuZEd1B/images/c82524cd66d327f07df5ecb30b3dc7c24af241981cb19639e789f6bf8cd6d7cb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4da0b33f55ea4a4a3d7b0073c65511a3fe6e99a9640c057f27d63edccf95b4bc +size 131439 diff --git a/parse/train/TJSOfuZEd1B/images/d7bcdad1294d1e5f0440338db72efae8bbfe13243edd7760631681d0743263f3.jpg b/parse/train/TJSOfuZEd1B/images/d7bcdad1294d1e5f0440338db72efae8bbfe13243edd7760631681d0743263f3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c89ccba8c8c224da1acff9a1602761b0db506159 --- /dev/null +++ b/parse/train/TJSOfuZEd1B/images/d7bcdad1294d1e5f0440338db72efae8bbfe13243edd7760631681d0743263f3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4933cb97275eaab3562e120a0c41ed105011c406faf30b3ae5e24a11e0e41ab +size 10257 diff --git a/parse/train/TJSOfuZEd1B/images/ec3002ccc13ba0d7092c58661f94d255f9fc43ae9d630f093a4dff66ce693a49.jpg b/parse/train/TJSOfuZEd1B/images/ec3002ccc13ba0d7092c58661f94d255f9fc43ae9d630f093a4dff66ce693a49.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a31e73f5d4e34ec7a55c2e4d2fa1c2d7a9b29dc8 --- /dev/null +++ b/parse/train/TJSOfuZEd1B/images/ec3002ccc13ba0d7092c58661f94d255f9fc43ae9d630f093a4dff66ce693a49.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86b95ffeca8249edfd702fb5ec2f2596c61cfa572a9185c685c611769c17c923 +size 4127 diff --git a/parse/train/TJSOfuZEd1B/images/ec89f9ee5bb84f5c52bae8b2b7bec4fcd9f2f7f92d017f27bad3a384397138c6.jpg b/parse/train/TJSOfuZEd1B/images/ec89f9ee5bb84f5c52bae8b2b7bec4fcd9f2f7f92d017f27bad3a384397138c6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f46a4824e5130a38e91fc2addd655d2bec4d1d93 --- /dev/null +++ b/parse/train/TJSOfuZEd1B/images/ec89f9ee5bb84f5c52bae8b2b7bec4fcd9f2f7f92d017f27bad3a384397138c6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:153b9d01ce83275c47fdfcb25a992e3cdb001a68670228f605be325fb1d6b145 +size 207661 diff --git a/parse/train/TJSOfuZEd1B/images/faff62ee669fc4428e6dd298ece1e13b6e918f40849dcf9d7ea83cc2ceaa9565.jpg b/parse/train/TJSOfuZEd1B/images/faff62ee669fc4428e6dd298ece1e13b6e918f40849dcf9d7ea83cc2ceaa9565.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d60531fd52c093d482aa851314e1e032759f73d3 --- /dev/null +++ b/parse/train/TJSOfuZEd1B/images/faff62ee669fc4428e6dd298ece1e13b6e918f40849dcf9d7ea83cc2ceaa9565.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dda4fdae9b1aef836742612804f936ef1771ddf90450f69c8370687c027b770 +size 5786 diff --git a/parse/train/U_mat0b9iv/images/0238133e325008215f9e7b1fdb40df997f5a7b75f4caa18b85bea5a7a99f4e28.jpg b/parse/train/U_mat0b9iv/images/0238133e325008215f9e7b1fdb40df997f5a7b75f4caa18b85bea5a7a99f4e28.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e423e730eb36415370bbd5a64d90fb2a2890f837 --- /dev/null +++ b/parse/train/U_mat0b9iv/images/0238133e325008215f9e7b1fdb40df997f5a7b75f4caa18b85bea5a7a99f4e28.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41c8837a225d1ca8e94d01dc30e8f6ffb02444cebf53f406b317cf8c33bf7460 +size 4839 diff --git a/parse/train/U_mat0b9iv/images/06f5b34b9ab111c991ad1ca1e5de358370e0fced3978abf92df6442bb83d5c31.jpg b/parse/train/U_mat0b9iv/images/06f5b34b9ab111c991ad1ca1e5de358370e0fced3978abf92df6442bb83d5c31.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ea5b71432508a3e1dd5e86f9c21b158e528a38ed --- /dev/null +++ b/parse/train/U_mat0b9iv/images/06f5b34b9ab111c991ad1ca1e5de358370e0fced3978abf92df6442bb83d5c31.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b74f9696b058fb435460b29ab9a02168ecbba779ca43b25c6d53eb8cde3db80 +size 4714 diff --git a/parse/train/U_mat0b9iv/images/09183fa82b80c52e828d2b968705e55a8459854d063a943dbaf59abe7681da29.jpg b/parse/train/U_mat0b9iv/images/09183fa82b80c52e828d2b968705e55a8459854d063a943dbaf59abe7681da29.jpg new file mode 100644 index 0000000000000000000000000000000000000000..37c6867b90805eb70127a8213c38f5dca97fb43d --- /dev/null +++ b/parse/train/U_mat0b9iv/images/09183fa82b80c52e828d2b968705e55a8459854d063a943dbaf59abe7681da29.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca3acf12b7c5a8edff41e5a4558528a3f1a61f0f74b6a4fbb2492932aec4fe1d +size 5318 diff --git a/parse/train/U_mat0b9iv/images/11434402f1ee1e6129b42a71f7142decf6a518799aeea0366776f21a4f94cd15.jpg b/parse/train/U_mat0b9iv/images/11434402f1ee1e6129b42a71f7142decf6a518799aeea0366776f21a4f94cd15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b2cecef93eb43f459fa544c1d8bb277ab5778c8f --- /dev/null +++ b/parse/train/U_mat0b9iv/images/11434402f1ee1e6129b42a71f7142decf6a518799aeea0366776f21a4f94cd15.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:455bca12b42c5338f4d4f0c3f8f62c49c036e75e44b6b2991f690691701c608c +size 38328 diff --git a/parse/train/U_mat0b9iv/images/174cd15ee87a5686baa699e22f05b0f64905c59dfa2e289f7d0f1de399570133.jpg b/parse/train/U_mat0b9iv/images/174cd15ee87a5686baa699e22f05b0f64905c59dfa2e289f7d0f1de399570133.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5b7607282a92045be140f863232254ba61ff503e --- /dev/null +++ b/parse/train/U_mat0b9iv/images/174cd15ee87a5686baa699e22f05b0f64905c59dfa2e289f7d0f1de399570133.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43d889ced3c29f72b4b1800dbfb6227e212716d3713b49897a157aebf2160d17 +size 37958 diff --git a/parse/train/U_mat0b9iv/images/25f929045954a2befc238ea310d76bfcb666b8e39a763f42e3d9a5225d8f28e8.jpg b/parse/train/U_mat0b9iv/images/25f929045954a2befc238ea310d76bfcb666b8e39a763f42e3d9a5225d8f28e8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..64397a266d21665190274cae042a69d932cecf0b --- /dev/null +++ b/parse/train/U_mat0b9iv/images/25f929045954a2befc238ea310d76bfcb666b8e39a763f42e3d9a5225d8f28e8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f8852ea52acba77171ee3d3a36724d58b919eeb8a120f429b5bb1eaca05ee1e +size 5165 diff --git a/parse/train/U_mat0b9iv/images/27289985b0fde238ec75cdabbe5474cb00e8614b148b0cd2099877452e642a4b.jpg b/parse/train/U_mat0b9iv/images/27289985b0fde238ec75cdabbe5474cb00e8614b148b0cd2099877452e642a4b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..451b04fcca0f55f9457eddcd100bfe9653ba83c1 --- /dev/null +++ b/parse/train/U_mat0b9iv/images/27289985b0fde238ec75cdabbe5474cb00e8614b148b0cd2099877452e642a4b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8065667bf61ab560ee4d2763e7e5dabe22852129a6b768bd28235eb6d5d209f6 +size 8773 diff --git a/parse/train/U_mat0b9iv/images/2cc63bba2902482072575b91dd9562f9b2a8c0cf98b73cd5a90982dd7a96f6f6.jpg b/parse/train/U_mat0b9iv/images/2cc63bba2902482072575b91dd9562f9b2a8c0cf98b73cd5a90982dd7a96f6f6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3f980e28a2570cb05a8432b9b85491a614dd979a --- /dev/null +++ b/parse/train/U_mat0b9iv/images/2cc63bba2902482072575b91dd9562f9b2a8c0cf98b73cd5a90982dd7a96f6f6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83a55ce1eef4dc06be0443e03b09683c28ab6d2e1d2da2f5a84d3880fe11433a +size 57566 diff --git a/parse/train/U_mat0b9iv/images/3b240d0b1ac7cd33875ac2738202a991fac2a06d2911eda76fd0ae4c7f19e7b8.jpg b/parse/train/U_mat0b9iv/images/3b240d0b1ac7cd33875ac2738202a991fac2a06d2911eda76fd0ae4c7f19e7b8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..67525a6d456424183f50b0cb121b2e0b242f4170 --- /dev/null +++ b/parse/train/U_mat0b9iv/images/3b240d0b1ac7cd33875ac2738202a991fac2a06d2911eda76fd0ae4c7f19e7b8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b409f7bd43aa672773a2a324ff836112f7d4fb7558e2dc510ba73ba6206f76b +size 6832 diff --git a/parse/train/U_mat0b9iv/images/46cb0427fd4f5efe97d03924359dd2f071448e47a93dafcb44573d649e11979f.jpg b/parse/train/U_mat0b9iv/images/46cb0427fd4f5efe97d03924359dd2f071448e47a93dafcb44573d649e11979f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bde99452bd681e08a22db2c376f83d8aa34af733 --- /dev/null +++ b/parse/train/U_mat0b9iv/images/46cb0427fd4f5efe97d03924359dd2f071448e47a93dafcb44573d649e11979f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b720f055ed6a2926d5d82bd22673e80e3efc707746fb17bbd7636117f23f458 +size 6025 diff --git a/parse/train/U_mat0b9iv/images/47cf2362530d419ba202aa8092368e346250f13caef16bab3f8172471fd8014f.jpg b/parse/train/U_mat0b9iv/images/47cf2362530d419ba202aa8092368e346250f13caef16bab3f8172471fd8014f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dca20d3f281f7e08de788789f68edc379e8455c8 --- /dev/null +++ b/parse/train/U_mat0b9iv/images/47cf2362530d419ba202aa8092368e346250f13caef16bab3f8172471fd8014f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d381f0c079737b93555ce93775ccab6e948d8ed83f39e39922e148a886384662 +size 63114 diff --git a/parse/train/U_mat0b9iv/images/499603baf0954f53ce039a79a3237bf00793eb00a3250ef114d513e7c66f8e40.jpg b/parse/train/U_mat0b9iv/images/499603baf0954f53ce039a79a3237bf00793eb00a3250ef114d513e7c66f8e40.jpg new file mode 100644 index 0000000000000000000000000000000000000000..35adef036a9709d63a842ca1f84d2c0882041054 --- /dev/null +++ b/parse/train/U_mat0b9iv/images/499603baf0954f53ce039a79a3237bf00793eb00a3250ef114d513e7c66f8e40.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:937f0711a5b487b5ab46cdbf473bc42c4308666faabb49a3206d52225c1cabc5 +size 4612 diff --git a/parse/train/U_mat0b9iv/images/4baa2dd3c60b19161bae53d079a11955818cf44c60c86daa3a46c97916bb79d0.jpg b/parse/train/U_mat0b9iv/images/4baa2dd3c60b19161bae53d079a11955818cf44c60c86daa3a46c97916bb79d0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..df1410edfb71bc7c3aedbf5abd40e2b27343738b --- /dev/null +++ b/parse/train/U_mat0b9iv/images/4baa2dd3c60b19161bae53d079a11955818cf44c60c86daa3a46c97916bb79d0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05eb7cbce46c47f4ce07c88d27364cfb71597776d9efdaef35a2bcee652d87ec +size 46134 diff --git a/parse/train/U_mat0b9iv/images/54c6585eef2f0f1f34cb7653a0651302a3437557555e3b19e668393c120ce7c2.jpg b/parse/train/U_mat0b9iv/images/54c6585eef2f0f1f34cb7653a0651302a3437557555e3b19e668393c120ce7c2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f4dce74624e4470bedfc95f27cd2e6b764e56c1b --- /dev/null +++ b/parse/train/U_mat0b9iv/images/54c6585eef2f0f1f34cb7653a0651302a3437557555e3b19e668393c120ce7c2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e67735b7f189db1e353b77e9b8df899d082486bfecc9d9fd8265334eb5c6fe6d +size 60726 diff --git a/parse/train/U_mat0b9iv/images/5bc8b5874f17f15b740839e34ead90f97be38551512a3c8bfbe4039ad39f5cc4.jpg b/parse/train/U_mat0b9iv/images/5bc8b5874f17f15b740839e34ead90f97be38551512a3c8bfbe4039ad39f5cc4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4140ffaa4c7af85ca1cab4050b110933157a894e --- /dev/null +++ b/parse/train/U_mat0b9iv/images/5bc8b5874f17f15b740839e34ead90f97be38551512a3c8bfbe4039ad39f5cc4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2eb3d70738d96aabe889fb09300096ca7b18dfbdc0744775fc919c35394205fe +size 5587 diff --git a/parse/train/U_mat0b9iv/images/642c6fe4e45419da5f5a4c376ca3d915eb09068ef3b4ecbb59dcc54a677893ec.jpg b/parse/train/U_mat0b9iv/images/642c6fe4e45419da5f5a4c376ca3d915eb09068ef3b4ecbb59dcc54a677893ec.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2484f4683a0edee73bc1920a233de2b94fad1e5d --- /dev/null +++ b/parse/train/U_mat0b9iv/images/642c6fe4e45419da5f5a4c376ca3d915eb09068ef3b4ecbb59dcc54a677893ec.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dae4681ec2ee396fd2776a1f6fb0e38b06e71a75f0a186c4fac1387d8ffb82b7 +size 14978 diff --git a/parse/train/U_mat0b9iv/images/6bc5dd72f333d0e66bc4662f5c5dd1dca69d1f0f9241f2b22028b96f0b64ff4c.jpg b/parse/train/U_mat0b9iv/images/6bc5dd72f333d0e66bc4662f5c5dd1dca69d1f0f9241f2b22028b96f0b64ff4c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ab3d84de6ea33dfa2f67c3416d003cb2afd4aa3b --- /dev/null +++ b/parse/train/U_mat0b9iv/images/6bc5dd72f333d0e66bc4662f5c5dd1dca69d1f0f9241f2b22028b96f0b64ff4c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:965d1848831f2949bf972540b5381042836270c069b317f90737ec8ea92229e5 +size 36758 diff --git a/parse/train/U_mat0b9iv/images/6f03c8513863a2d1456ea37678e3f8287fb0db3877ac92bcbf641fc5ba668dc0.jpg b/parse/train/U_mat0b9iv/images/6f03c8513863a2d1456ea37678e3f8287fb0db3877ac92bcbf641fc5ba668dc0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e021be3dbb2fe6c9631f021c320c0e72451d215a --- /dev/null +++ b/parse/train/U_mat0b9iv/images/6f03c8513863a2d1456ea37678e3f8287fb0db3877ac92bcbf641fc5ba668dc0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ef2715872a4359d42e9dcf1fbba83ba77b8425df94095bb85990eed96125ee3 +size 6634 diff --git a/parse/train/U_mat0b9iv/images/73be5e3d68980766aebff6d470555d1ed9f09d73cdb60af593c75310905be170.jpg b/parse/train/U_mat0b9iv/images/73be5e3d68980766aebff6d470555d1ed9f09d73cdb60af593c75310905be170.jpg new file mode 100644 index 0000000000000000000000000000000000000000..48cefcb2ad80f65bc17c0eb241268672cb27d948 --- /dev/null +++ b/parse/train/U_mat0b9iv/images/73be5e3d68980766aebff6d470555d1ed9f09d73cdb60af593c75310905be170.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fedc5fb53637baecb4518c6e814e9c2546070de178e056925988bdda324846c +size 7592 diff --git a/parse/train/U_mat0b9iv/images/7bd9768f9ede7418d6377ea97734e7ae0b1c1298168ab8bbebeaf104b5494825.jpg b/parse/train/U_mat0b9iv/images/7bd9768f9ede7418d6377ea97734e7ae0b1c1298168ab8bbebeaf104b5494825.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cf13c32ee91768199dd480e55902886d2439f05f --- /dev/null +++ b/parse/train/U_mat0b9iv/images/7bd9768f9ede7418d6377ea97734e7ae0b1c1298168ab8bbebeaf104b5494825.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70070b35c326ee94803529c6e6e4f7f83e2c69fcf60806f9356279b6e037c924 +size 2379 diff --git a/parse/train/U_mat0b9iv/images/8deaaf4a6f491331ecb7a26c00a6a1124a2a78f4eb23f31fd78b55c467fd6db8.jpg b/parse/train/U_mat0b9iv/images/8deaaf4a6f491331ecb7a26c00a6a1124a2a78f4eb23f31fd78b55c467fd6db8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..afb2a4740bb6be601b316aec2922df40179acc4c --- /dev/null +++ b/parse/train/U_mat0b9iv/images/8deaaf4a6f491331ecb7a26c00a6a1124a2a78f4eb23f31fd78b55c467fd6db8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55620c289e4df86790bd4e1aa7c30d7de170b6e1d07415328af1ddeb10e88f6b +size 5733 diff --git a/parse/train/U_mat0b9iv/images/9227796acb52bfcf20eecff84b729e8f8396906321cb699a49f8cd5fb25e545b.jpg b/parse/train/U_mat0b9iv/images/9227796acb52bfcf20eecff84b729e8f8396906321cb699a49f8cd5fb25e545b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d35bab106ede6c054c83dab5517bf321687c2c55 --- /dev/null +++ b/parse/train/U_mat0b9iv/images/9227796acb52bfcf20eecff84b729e8f8396906321cb699a49f8cd5fb25e545b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1db83d2b19e02e39afd2069d152c5d6692892585d8d5390262a81ddbf4c465b5 +size 7239 diff --git a/parse/train/U_mat0b9iv/images/947a27674864d7b4996f9c70dc0554e52158caf955de3ad7b33185f3ca5954b0.jpg b/parse/train/U_mat0b9iv/images/947a27674864d7b4996f9c70dc0554e52158caf955de3ad7b33185f3ca5954b0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..114ce86b797cfba753b305d5cfbdde77e45084f0 --- /dev/null +++ b/parse/train/U_mat0b9iv/images/947a27674864d7b4996f9c70dc0554e52158caf955de3ad7b33185f3ca5954b0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a63134251e89ad2aeff31b31b3d8e9fbb02268ef307844e14a6c6af19f6df99 +size 13472 diff --git a/parse/train/U_mat0b9iv/images/9e4ff6b78c2af2b9f58e9f301a85e6d322f13b4cf20d4bef3b0558acbdb0b36a.jpg b/parse/train/U_mat0b9iv/images/9e4ff6b78c2af2b9f58e9f301a85e6d322f13b4cf20d4bef3b0558acbdb0b36a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..49655360c487e1981b1a94a5a3fb5fd7a8904f97 --- /dev/null +++ b/parse/train/U_mat0b9iv/images/9e4ff6b78c2af2b9f58e9f301a85e6d322f13b4cf20d4bef3b0558acbdb0b36a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9a902b546bfdde7039f37f1dee2dc5f44e1a32e70d77f0936a308d2a5745dba +size 5858 diff --git a/parse/train/U_mat0b9iv/images/a088d06be37e14a6c349acaf5a04ae70ed1bad2f180880177e58c07de0704d88.jpg b/parse/train/U_mat0b9iv/images/a088d06be37e14a6c349acaf5a04ae70ed1bad2f180880177e58c07de0704d88.jpg new file mode 100644 index 0000000000000000000000000000000000000000..47e7dd618f4534e16c749302dc4cbc624c414cc7 --- /dev/null +++ b/parse/train/U_mat0b9iv/images/a088d06be37e14a6c349acaf5a04ae70ed1bad2f180880177e58c07de0704d88.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c5dc2debf0929bb74794bd0c72f55308fbc84221b8b3338ade97e10faaae80e +size 10449 diff --git a/parse/train/U_mat0b9iv/images/a0dc7a57176644af4b2b5c6f62e7e123f35facf2ddd85dfda3f5939ddb8aeff8.jpg b/parse/train/U_mat0b9iv/images/a0dc7a57176644af4b2b5c6f62e7e123f35facf2ddd85dfda3f5939ddb8aeff8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a5d4c45a5a13a6854354b962dfc22719e8ffad80 --- /dev/null +++ b/parse/train/U_mat0b9iv/images/a0dc7a57176644af4b2b5c6f62e7e123f35facf2ddd85dfda3f5939ddb8aeff8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:920f8a6145714a224fe8a8bdb04ab146d37f42c404f42c66ab66355ea37d851c +size 54746 diff --git a/parse/train/U_mat0b9iv/images/a7ebc011357010f495464eadd893d11d41aa4a9955b3298238be033976327753.jpg b/parse/train/U_mat0b9iv/images/a7ebc011357010f495464eadd893d11d41aa4a9955b3298238be033976327753.jpg new file mode 100644 index 0000000000000000000000000000000000000000..66d97a8531b35c422365e12b70ef8d26c040fba3 --- /dev/null +++ b/parse/train/U_mat0b9iv/images/a7ebc011357010f495464eadd893d11d41aa4a9955b3298238be033976327753.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95f152c0791e2a76cc56e97b43c9f2ed5839ab7b97e8cfc4d72e42e1d9800cc2 +size 7861 diff --git a/parse/train/U_mat0b9iv/images/aa982870a628a7f2a08d4d8c829db951831b0a58f653ebf4b0d53ad5ab73a45f.jpg b/parse/train/U_mat0b9iv/images/aa982870a628a7f2a08d4d8c829db951831b0a58f653ebf4b0d53ad5ab73a45f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a21116e90f33a1c0f971563517b58fc6dabd0aca --- /dev/null +++ b/parse/train/U_mat0b9iv/images/aa982870a628a7f2a08d4d8c829db951831b0a58f653ebf4b0d53ad5ab73a45f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65143848486120569cb6eab34c8fa0f5871f7993e6a5ec853dad110bb055a554 +size 44387 diff --git a/parse/train/U_mat0b9iv/images/ad7dff55f9d9f42fb2f19a6348b3d35da0d2699b57c16bb47d31644a664c106b.jpg b/parse/train/U_mat0b9iv/images/ad7dff55f9d9f42fb2f19a6348b3d35da0d2699b57c16bb47d31644a664c106b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4ff9bf663add6bb5d2e1214dee96817456884925 --- /dev/null +++ b/parse/train/U_mat0b9iv/images/ad7dff55f9d9f42fb2f19a6348b3d35da0d2699b57c16bb47d31644a664c106b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfce672c2e50a11685d44019749edcaafa4d45b299c7ef022c86dd142ea88c06 +size 2367 diff --git a/parse/train/U_mat0b9iv/images/ae0c3197b7466d7ebcdfb0d33850d098e8a82c6c5b24ae1e53afbad7ca2f74ae.jpg b/parse/train/U_mat0b9iv/images/ae0c3197b7466d7ebcdfb0d33850d098e8a82c6c5b24ae1e53afbad7ca2f74ae.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cd26436796e78802cd94e474f64800e09f3dcb94 --- /dev/null +++ b/parse/train/U_mat0b9iv/images/ae0c3197b7466d7ebcdfb0d33850d098e8a82c6c5b24ae1e53afbad7ca2f74ae.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac07d4850af94af9e716bfdc3ca9d793b2a71c16faf7f3a6a8d6c793247c63b4 +size 15089 diff --git a/parse/train/U_mat0b9iv/images/b00d11d88b29776b67cf7c60e16d4852dcbb352d09b0562379f4e48a4d7c7a47.jpg b/parse/train/U_mat0b9iv/images/b00d11d88b29776b67cf7c60e16d4852dcbb352d09b0562379f4e48a4d7c7a47.jpg new file mode 100644 index 0000000000000000000000000000000000000000..729ea62e387ac86e3e0077661843811c63e2556b --- /dev/null +++ b/parse/train/U_mat0b9iv/images/b00d11d88b29776b67cf7c60e16d4852dcbb352d09b0562379f4e48a4d7c7a47.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f167e3b9bfb458b61e477d09ac3f938fdd389cc44d2e8b9be8d1c9d9715e835 +size 4871 diff --git a/parse/train/U_mat0b9iv/images/b344eab1cd1b7353193c60ebc7ab6acd5091b0c3a9879954ced47e1e4090962b.jpg b/parse/train/U_mat0b9iv/images/b344eab1cd1b7353193c60ebc7ab6acd5091b0c3a9879954ced47e1e4090962b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..04e6394282de5e11685491d05bcaab6189e4e3a4 --- /dev/null +++ b/parse/train/U_mat0b9iv/images/b344eab1cd1b7353193c60ebc7ab6acd5091b0c3a9879954ced47e1e4090962b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50b61af4c861b537f5e2cd99df09beffe40a7d9e17c93162bda3ecb6c2630501 +size 43284 diff --git a/parse/train/U_mat0b9iv/images/b548f8cc64a24c237b14c239265ff3c07f791bf6249fc556c53b001a3ea5b73a.jpg b/parse/train/U_mat0b9iv/images/b548f8cc64a24c237b14c239265ff3c07f791bf6249fc556c53b001a3ea5b73a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8e6dca48301e07e788394e0d12ebd97810138a3e --- /dev/null +++ b/parse/train/U_mat0b9iv/images/b548f8cc64a24c237b14c239265ff3c07f791bf6249fc556c53b001a3ea5b73a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0cc683be3570faf9af718d5da377c3d3f276897d9643ae5a485290b1fe7d2e7 +size 5949 diff --git a/parse/train/U_mat0b9iv/images/bf9f016e62f57c9e8609f628459e8787e75875fb83dbae1eba52c9406804b7ea.jpg b/parse/train/U_mat0b9iv/images/bf9f016e62f57c9e8609f628459e8787e75875fb83dbae1eba52c9406804b7ea.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ad125c8f9d18bc17fc11d3559c365e351ca599d6 --- /dev/null +++ b/parse/train/U_mat0b9iv/images/bf9f016e62f57c9e8609f628459e8787e75875fb83dbae1eba52c9406804b7ea.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd074bda22e78f70d4919db41eae2a416aa00ce27ef370a8220da37179a08aed +size 7150 diff --git a/parse/train/U_mat0b9iv/images/c6e4749272500475dcabb91ffc572770a014fbb30fd4ed1646aa9c6e9d2f4836.jpg b/parse/train/U_mat0b9iv/images/c6e4749272500475dcabb91ffc572770a014fbb30fd4ed1646aa9c6e9d2f4836.jpg new file mode 100644 index 0000000000000000000000000000000000000000..079c530d54232b5fcad7a9425598a85b8a51a7d1 --- /dev/null +++ b/parse/train/U_mat0b9iv/images/c6e4749272500475dcabb91ffc572770a014fbb30fd4ed1646aa9c6e9d2f4836.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26516ef82900ee3ec27174f0c763e35089edafbbf26accc2edd7e42be2edf167 +size 4355 diff --git a/parse/train/U_mat0b9iv/images/c7d35e9395aa110669951c89ae4799852362dbdc18af80ad48a296a4fe0ad935.jpg b/parse/train/U_mat0b9iv/images/c7d35e9395aa110669951c89ae4799852362dbdc18af80ad48a296a4fe0ad935.jpg new file mode 100644 index 0000000000000000000000000000000000000000..82b3dfd3d97d0934ca2f8cd02e1bdf833994bb9d --- /dev/null +++ b/parse/train/U_mat0b9iv/images/c7d35e9395aa110669951c89ae4799852362dbdc18af80ad48a296a4fe0ad935.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da349394e546e4baad2a7b768683c9f57a96bba0fb6daceae053477cd7d4c235 +size 3671 diff --git a/parse/train/U_mat0b9iv/images/c87ce300f802a10675ac09bf21e4dbc2d823579041c5f5b60c82ec670f508aaa.jpg b/parse/train/U_mat0b9iv/images/c87ce300f802a10675ac09bf21e4dbc2d823579041c5f5b60c82ec670f508aaa.jpg new file mode 100644 index 0000000000000000000000000000000000000000..16f8975ccb874e051e03c74ea81738f21ffbf44f --- /dev/null +++ b/parse/train/U_mat0b9iv/images/c87ce300f802a10675ac09bf21e4dbc2d823579041c5f5b60c82ec670f508aaa.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5118bb572357cf9e40c128ac1820649c482c5b41bcdd80e5dfa8b4aed3c2cd1 +size 10178 diff --git a/parse/train/U_mat0b9iv/images/cd28c27f55cf6411bdd27d6e9848da8d0f7315e3b86cfd23d0ebc3a72188e685.jpg b/parse/train/U_mat0b9iv/images/cd28c27f55cf6411bdd27d6e9848da8d0f7315e3b86cfd23d0ebc3a72188e685.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0718befd423d811a7c1268e11cd605fc1ff2480f --- /dev/null +++ b/parse/train/U_mat0b9iv/images/cd28c27f55cf6411bdd27d6e9848da8d0f7315e3b86cfd23d0ebc3a72188e685.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f69a66ba9748bd133dc843d2a99793f20628eef4869853124f79fdab1ca3f9 +size 6533 diff --git a/parse/train/U_mat0b9iv/images/d14a764f9d84dfabc70203e8f26460cf21aeda2c83e9d669b8dda91ade8afcd2.jpg b/parse/train/U_mat0b9iv/images/d14a764f9d84dfabc70203e8f26460cf21aeda2c83e9d669b8dda91ade8afcd2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..369aaeb6b08a003ca03da13e9c390646bdca7fb5 --- /dev/null +++ b/parse/train/U_mat0b9iv/images/d14a764f9d84dfabc70203e8f26460cf21aeda2c83e9d669b8dda91ade8afcd2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b2e1a6a2889699159d2a1a8b92c5903e3d67b5e7e79add1acc94747a3adaf93 +size 4662 diff --git a/parse/train/U_mat0b9iv/images/d69e21f9a647ad239f60752cfc385022bbfa11da8cb518f58e0d7922113e1087.jpg b/parse/train/U_mat0b9iv/images/d69e21f9a647ad239f60752cfc385022bbfa11da8cb518f58e0d7922113e1087.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5c4ead614ee6635f827da5fffed2e1f998d39e88 --- /dev/null +++ b/parse/train/U_mat0b9iv/images/d69e21f9a647ad239f60752cfc385022bbfa11da8cb518f58e0d7922113e1087.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b435ab498a0ec547adc46de63f99dd1516058bd8860a520ab4895fbe3d608fc1 +size 2076 diff --git a/parse/train/U_mat0b9iv/images/df8480be2e345c2fafd3c9e13f90e4d8cedcba498fe957defdc66afc92b45418.jpg b/parse/train/U_mat0b9iv/images/df8480be2e345c2fafd3c9e13f90e4d8cedcba498fe957defdc66afc92b45418.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1222eb4468b1cfe45eb4ce2a8350cc57eef64fbe --- /dev/null +++ b/parse/train/U_mat0b9iv/images/df8480be2e345c2fafd3c9e13f90e4d8cedcba498fe957defdc66afc92b45418.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:847bf30089cdb2feda83cda690c13eac949a6fe9cd54ed127fb93150cdd485b9 +size 5760 diff --git a/parse/train/U_mat0b9iv/images/e3b08bc735bc6da3237cc8d747bdcfbf1308ec38ff5c5053d08288d79197f797.jpg b/parse/train/U_mat0b9iv/images/e3b08bc735bc6da3237cc8d747bdcfbf1308ec38ff5c5053d08288d79197f797.jpg new file mode 100644 index 0000000000000000000000000000000000000000..64f8e4efd3fadad9d137f0487baedaaa9559d7db --- /dev/null +++ b/parse/train/U_mat0b9iv/images/e3b08bc735bc6da3237cc8d747bdcfbf1308ec38ff5c5053d08288d79197f797.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c99da4825e84e40176967ff761f71b6f113059ec92ba983f63f84cede4074d2 +size 5936 diff --git a/parse/train/U_mat0b9iv/images/e5fa1ead91c5c4fb53add713c52fee39bccb114dd1ae209bbbfb1aa720a70a88.jpg b/parse/train/U_mat0b9iv/images/e5fa1ead91c5c4fb53add713c52fee39bccb114dd1ae209bbbfb1aa720a70a88.jpg new file mode 100644 index 0000000000000000000000000000000000000000..742f77d05e59b705894179e282bf72e7a7c0d3d7 --- /dev/null +++ b/parse/train/U_mat0b9iv/images/e5fa1ead91c5c4fb53add713c52fee39bccb114dd1ae209bbbfb1aa720a70a88.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef515d295c885c39e3907e70c14f261ae642aa1af481bbdbce1d5e9da51ac6ce +size 3417 diff --git a/parse/train/U_mat0b9iv/images/eba92283558ada0db12f11cbe78a127074cc935013a11d5f7224227177a7a8fb.jpg b/parse/train/U_mat0b9iv/images/eba92283558ada0db12f11cbe78a127074cc935013a11d5f7224227177a7a8fb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ea71086519421dcf8a3f51176ad7b39aaced03aa --- /dev/null +++ b/parse/train/U_mat0b9iv/images/eba92283558ada0db12f11cbe78a127074cc935013a11d5f7224227177a7a8fb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dda0ee62a9142776824a950fb846f0bc6e1346d2d1e1c80a354b8ac16c887c5d +size 12188 diff --git a/parse/train/U_mat0b9iv/images/ed26d5105cefc91cbd4fc942e4f6edebd5eee8cc49033424dfdc27778c3c0094.jpg b/parse/train/U_mat0b9iv/images/ed26d5105cefc91cbd4fc942e4f6edebd5eee8cc49033424dfdc27778c3c0094.jpg new file mode 100644 index 0000000000000000000000000000000000000000..745819d73cce69e4df4c7164c79cbfdbfd922fd1 --- /dev/null +++ b/parse/train/U_mat0b9iv/images/ed26d5105cefc91cbd4fc942e4f6edebd5eee8cc49033424dfdc27778c3c0094.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:434d1bcb2eb1cf062469b65b715413212fa8b9e8d78dbda6a7d64271dff835a4 +size 19963 diff --git a/parse/train/U_mat0b9iv/images/f1bc51c16e77565d4fa57b08e1e9d82577e809f73fa06bf6e869df4f2967c181.jpg b/parse/train/U_mat0b9iv/images/f1bc51c16e77565d4fa57b08e1e9d82577e809f73fa06bf6e869df4f2967c181.jpg new file mode 100644 index 0000000000000000000000000000000000000000..944f6ad792f2091668edbd8285d83ff63903c770 --- /dev/null +++ b/parse/train/U_mat0b9iv/images/f1bc51c16e77565d4fa57b08e1e9d82577e809f73fa06bf6e869df4f2967c181.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d49269e037dd52d49c9b2a972a972772ed716728ca0ff481b760afcad593a03 +size 6800 diff --git a/parse/train/U_mat0b9iv/images/f2a152078741ea63a7ad7c0a4b8466f54f50975b25ea7c0049a2807b0ee2d321.jpg b/parse/train/U_mat0b9iv/images/f2a152078741ea63a7ad7c0a4b8466f54f50975b25ea7c0049a2807b0ee2d321.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e4f1c0a1a3e6e18e458fdd57ec77f341686c5ae9 --- /dev/null +++ b/parse/train/U_mat0b9iv/images/f2a152078741ea63a7ad7c0a4b8466f54f50975b25ea7c0049a2807b0ee2d321.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dcfb9858b8a52e9a75fa4a744fbab504a60719a58a0b86f1de78990927fd882 +size 13214 diff --git a/parse/train/U_mat0b9iv/images/f3c11322835671fa229fd7b108f3b3adc28d7ce020353aa250bdc9d6018cb89c.jpg b/parse/train/U_mat0b9iv/images/f3c11322835671fa229fd7b108f3b3adc28d7ce020353aa250bdc9d6018cb89c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8485a4f9abba7b3b40df712c286f9c164fece574 --- /dev/null +++ b/parse/train/U_mat0b9iv/images/f3c11322835671fa229fd7b108f3b3adc28d7ce020353aa250bdc9d6018cb89c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5ea9c1354fe7c7983e438ac446183062c1e8ce87845c83487ab09f0c981f4d2 +size 4155 diff --git a/parse/train/U_mat0b9iv/images/fe4693feeaea486860edc3e652e1f72771054db1df1cb33c2c89f93675722d5d.jpg b/parse/train/U_mat0b9iv/images/fe4693feeaea486860edc3e652e1f72771054db1df1cb33c2c89f93675722d5d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b3e717e8c8709d707b2a26bf01a35619d4ab7198 --- /dev/null +++ b/parse/train/U_mat0b9iv/images/fe4693feeaea486860edc3e652e1f72771054db1df1cb33c2c89f93675722d5d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d56ec89449a4ca069913e308a95c1d7e9e8506d777ea9d8899a149c33038ee5b +size 6516 diff --git a/parse/train/nWSZ30wrEw3/images/129e8e9ed74c537bbd51cd4895d8c06221772667ff86984801778b047e7df81f.jpg b/parse/train/nWSZ30wrEw3/images/129e8e9ed74c537bbd51cd4895d8c06221772667ff86984801778b047e7df81f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..17120c71ad209157475442d059bce7215fead574 --- /dev/null +++ b/parse/train/nWSZ30wrEw3/images/129e8e9ed74c537bbd51cd4895d8c06221772667ff86984801778b047e7df81f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50457160c5ac5df313c495262e5efdd3f4a4d4b3dfc74c617d235c671ac4f1ca +size 7732 diff --git a/parse/train/nWSZ30wrEw3/images/2dad0327245c5c034647574ad26888aa1312e4c98faf0655406d013a697d07cc.jpg b/parse/train/nWSZ30wrEw3/images/2dad0327245c5c034647574ad26888aa1312e4c98faf0655406d013a697d07cc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b2ac2648cded8dc801702950cd45d7fa622f1766 --- /dev/null +++ b/parse/train/nWSZ30wrEw3/images/2dad0327245c5c034647574ad26888aa1312e4c98faf0655406d013a697d07cc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e77b444035978af89d8a6c2d3aa65c202c88012839ca24e9ec990ace2ab0b6a +size 5514 diff --git a/parse/train/nWSZ30wrEw3/images/44fba5964c6c783ca2ae42a63a10ae0552b68072bfa7bccf8697ae8c62cbba64.jpg b/parse/train/nWSZ30wrEw3/images/44fba5964c6c783ca2ae42a63a10ae0552b68072bfa7bccf8697ae8c62cbba64.jpg new file mode 100644 index 0000000000000000000000000000000000000000..da31524f40722cc83a30517ff091dcf0302ac8c7 --- /dev/null +++ b/parse/train/nWSZ30wrEw3/images/44fba5964c6c783ca2ae42a63a10ae0552b68072bfa7bccf8697ae8c62cbba64.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe1a515006ab0f63c2835c94ccc92af8dabc93ff672be91797bbaeb2d96b61e4 +size 112718 diff --git a/parse/train/nWSZ30wrEw3/images/4518acdec353d550f167a7e753c1d2dea3736017a727d5ca5e9755ddcf286abc.jpg b/parse/train/nWSZ30wrEw3/images/4518acdec353d550f167a7e753c1d2dea3736017a727d5ca5e9755ddcf286abc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f87d6cf20e48a724bd612ab12dda0da9ea08cc23 --- /dev/null +++ b/parse/train/nWSZ30wrEw3/images/4518acdec353d550f167a7e753c1d2dea3736017a727d5ca5e9755ddcf286abc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9820d17c23816e978cfede0e2dfe5265011ab3aa340e44b9d4b89e35ec1a33ee +size 10325 diff --git a/parse/train/nWSZ30wrEw3/images/49af37bb3ca08e560a92e8b40ce7bbcad36a565b9bdae3ca4959afdb266bd33a.jpg b/parse/train/nWSZ30wrEw3/images/49af37bb3ca08e560a92e8b40ce7bbcad36a565b9bdae3ca4959afdb266bd33a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5d36ecea61514046cd18440cd1826fb4737a1b33 --- /dev/null +++ b/parse/train/nWSZ30wrEw3/images/49af37bb3ca08e560a92e8b40ce7bbcad36a565b9bdae3ca4959afdb266bd33a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45a470877b17d61a538ae5ec76942b392a031f8e4d6a5fcca2a54937facfb964 +size 51360 diff --git a/parse/train/nWSZ30wrEw3/images/75b45716a089d8a2549115650460c6df9fe917ad406518bdf6dd3055e3d50ee3.jpg b/parse/train/nWSZ30wrEw3/images/75b45716a089d8a2549115650460c6df9fe917ad406518bdf6dd3055e3d50ee3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0fdb51c4457ca561306365db54dca5cbfa4285eb --- /dev/null +++ b/parse/train/nWSZ30wrEw3/images/75b45716a089d8a2549115650460c6df9fe917ad406518bdf6dd3055e3d50ee3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f362ecc33536d5bf208b63e94d6fb7d92460d4a60e62a6d584c8e3b65f67eaac +size 29591 diff --git a/parse/train/nWSZ30wrEw3/images/787e0ccfabb01426b1d2ca8a285bb48e80098736481a4556a309978293362e34.jpg b/parse/train/nWSZ30wrEw3/images/787e0ccfabb01426b1d2ca8a285bb48e80098736481a4556a309978293362e34.jpg new file mode 100644 index 0000000000000000000000000000000000000000..268bdabeec1f16d9b22108d6c2ad3d2225eb766b --- /dev/null +++ b/parse/train/nWSZ30wrEw3/images/787e0ccfabb01426b1d2ca8a285bb48e80098736481a4556a309978293362e34.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5b6b556d4a497bf902499e09ae00585ef18776e9304c6b68face6f20578bc5e +size 8507 diff --git a/parse/train/nWSZ30wrEw3/images/96b4b5ec8998a0e7c67003ba2bfac3fc872c4ac9a59a896e8b6c404ede3d3cb3.jpg b/parse/train/nWSZ30wrEw3/images/96b4b5ec8998a0e7c67003ba2bfac3fc872c4ac9a59a896e8b6c404ede3d3cb3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9b7d17cea9f37c8b7aa9091f0af19b6ad9817f1f --- /dev/null +++ b/parse/train/nWSZ30wrEw3/images/96b4b5ec8998a0e7c67003ba2bfac3fc872c4ac9a59a896e8b6c404ede3d3cb3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ab44b6332fa483e88f3a654cbb8d0bdc9a632d46898bc928661a961600fa865 +size 6679 diff --git a/parse/train/nWSZ30wrEw3/images/ae1774c441c6ddb0054e6f3f295ae6b952de2af5475d4b11fb5793e00a93a87f.jpg b/parse/train/nWSZ30wrEw3/images/ae1774c441c6ddb0054e6f3f295ae6b952de2af5475d4b11fb5793e00a93a87f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..487301806fa43affca054ded8625a9ece199c514 --- /dev/null +++ b/parse/train/nWSZ30wrEw3/images/ae1774c441c6ddb0054e6f3f295ae6b952de2af5475d4b11fb5793e00a93a87f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e25f6d6e431102cc1781c04c30338dd9f7e59bfb0780767fd76caff1b9d0ee60 +size 17044 diff --git a/parse/train/nWSZ30wrEw3/images/c01dbe67c5f13bd3c0e5eb1ead4db719c15dd45a5707b961fc413e7c40663f11.jpg b/parse/train/nWSZ30wrEw3/images/c01dbe67c5f13bd3c0e5eb1ead4db719c15dd45a5707b961fc413e7c40663f11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f8afbb4e74240b558b1602878a286c2adb1f66c --- /dev/null +++ b/parse/train/nWSZ30wrEw3/images/c01dbe67c5f13bd3c0e5eb1ead4db719c15dd45a5707b961fc413e7c40663f11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3434222c1078c87b7afcc48a1f9fa197c9fb4f4b9fda2d4c89e127eacacc175 +size 10272 diff --git a/parse/train/nWSZ30wrEw3/images/c295b206a4b441920ca55ee78e1e09506489e57b0554e585b2708a730f93b6a0.jpg b/parse/train/nWSZ30wrEw3/images/c295b206a4b441920ca55ee78e1e09506489e57b0554e585b2708a730f93b6a0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bad3bbeb65a6d488598e02ccf42b1cc91273c97a --- /dev/null +++ b/parse/train/nWSZ30wrEw3/images/c295b206a4b441920ca55ee78e1e09506489e57b0554e585b2708a730f93b6a0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4c21d58354a495a2d1964e8b50d37d10da56daddf678c526a2b526d75e64e69 +size 8936 diff --git a/parse/train/pULTvw9X313/images/02d99d090a9ea2bed535ac9d276d10a485fcea411051838f8d277ebce11a7101.jpg b/parse/train/pULTvw9X313/images/02d99d090a9ea2bed535ac9d276d10a485fcea411051838f8d277ebce11a7101.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a60c2080f06e3695fdcaf456959776ced2818493 --- /dev/null +++ b/parse/train/pULTvw9X313/images/02d99d090a9ea2bed535ac9d276d10a485fcea411051838f8d277ebce11a7101.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e6645ca891ad869d164c629f7f8f51f4de4598d75bbe3677397d59795b00f4d +size 89890 diff --git a/parse/train/pULTvw9X313/images/05ed8eb9c618464f02b7224b00456f210f47d809d18f15678e836db7df9db06b.jpg b/parse/train/pULTvw9X313/images/05ed8eb9c618464f02b7224b00456f210f47d809d18f15678e836db7df9db06b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..55128a66b18e6cc55a93edc4a896396922ca4a63 --- /dev/null +++ b/parse/train/pULTvw9X313/images/05ed8eb9c618464f02b7224b00456f210f47d809d18f15678e836db7df9db06b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbbbeb3452bfc444b9d63773982f52386be4d187ace0760ee542440a32e136b3 +size 84003 diff --git a/parse/train/pULTvw9X313/images/094ccd58b7015ba66faf7de66d3acb64c2b06a6142fae3e5907067cdb16c6848.jpg b/parse/train/pULTvw9X313/images/094ccd58b7015ba66faf7de66d3acb64c2b06a6142fae3e5907067cdb16c6848.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cc8d589ce4ae365bff97e2a74cfb1a62e51f902f --- /dev/null +++ b/parse/train/pULTvw9X313/images/094ccd58b7015ba66faf7de66d3acb64c2b06a6142fae3e5907067cdb16c6848.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1776e839605b598f83fbfcfc85f23d661bfd5bbf1c7ed6c793e3c72b41994bd3 +size 28011 diff --git a/parse/train/pULTvw9X313/images/16e9000814758c5e0f9fc7cafba71cf427150a8b1e28cba393e962fab5a12fac.jpg b/parse/train/pULTvw9X313/images/16e9000814758c5e0f9fc7cafba71cf427150a8b1e28cba393e962fab5a12fac.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9050e3c61b40dcc0192b998db88cc8e9a86291b8 --- /dev/null +++ b/parse/train/pULTvw9X313/images/16e9000814758c5e0f9fc7cafba71cf427150a8b1e28cba393e962fab5a12fac.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cab1a944f3ffa3798a2d41e01653b6dd1100e408dd943e146d7097668154f770 +size 55975 diff --git a/parse/train/pULTvw9X313/images/18712581ec4f936d9dd3a2a9bcb09f2842f2e142dd093dd71195623fe001abe0.jpg b/parse/train/pULTvw9X313/images/18712581ec4f936d9dd3a2a9bcb09f2842f2e142dd093dd71195623fe001abe0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..51498d8bc50b400fa887cf551d4b3dd0881b1599 --- /dev/null +++ b/parse/train/pULTvw9X313/images/18712581ec4f936d9dd3a2a9bcb09f2842f2e142dd093dd71195623fe001abe0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d0739dfd6b8ead03360384ff9af9dfd3b7da79d0df603fe1eba46f58a635c35 +size 13015 diff --git a/parse/train/pULTvw9X313/images/2195f0dbd1adba1cfac4fd04eadf53bb3beebb2391b3ed6faa706086b0a1fa6a.jpg b/parse/train/pULTvw9X313/images/2195f0dbd1adba1cfac4fd04eadf53bb3beebb2391b3ed6faa706086b0a1fa6a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4e8964ced6e3f053769a581342df3694a973a23f --- /dev/null +++ b/parse/train/pULTvw9X313/images/2195f0dbd1adba1cfac4fd04eadf53bb3beebb2391b3ed6faa706086b0a1fa6a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d86daf65229bc3376769dc53bfbb4cf26606d179dfbf6251fdce4f9a78aa3932 +size 60160 diff --git a/parse/train/pULTvw9X313/images/4517204b3b147299904276e071e1e62d4722aae875ce3e70a8c571dc7947cd57.jpg b/parse/train/pULTvw9X313/images/4517204b3b147299904276e071e1e62d4722aae875ce3e70a8c571dc7947cd57.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4fc77d544c22c645361fdc599478c15683618fc9 --- /dev/null +++ b/parse/train/pULTvw9X313/images/4517204b3b147299904276e071e1e62d4722aae875ce3e70a8c571dc7947cd57.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7ab025156a59b423d50df32df99b28143d9308f283d94d838f61eed0bd821ea +size 9725 diff --git a/parse/train/pULTvw9X313/images/501a64ec26e7763e3895a4fb4e169a067f4f3163cb76835189bb2ae644b71499.jpg b/parse/train/pULTvw9X313/images/501a64ec26e7763e3895a4fb4e169a067f4f3163cb76835189bb2ae644b71499.jpg new file mode 100644 index 0000000000000000000000000000000000000000..59ecb464062d8ca7502197d75089c8ffc760f057 --- /dev/null +++ b/parse/train/pULTvw9X313/images/501a64ec26e7763e3895a4fb4e169a067f4f3163cb76835189bb2ae644b71499.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bd864fb65abc1983372e8198daf67f373254fa37b2f25dabb8ec939bd5a0205 +size 106463 diff --git a/parse/train/pULTvw9X313/images/5385f1e59c2d20faee675f4c8da8670a2732c758f3fcc86fe98c1149094ee0ce.jpg b/parse/train/pULTvw9X313/images/5385f1e59c2d20faee675f4c8da8670a2732c758f3fcc86fe98c1149094ee0ce.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7811ba012a9b6b662ce34fbf97a6742f0e2e9e63 --- /dev/null +++ b/parse/train/pULTvw9X313/images/5385f1e59c2d20faee675f4c8da8670a2732c758f3fcc86fe98c1149094ee0ce.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4fbcb6e782307848b094dc75ef2fcf41218130fac99ee7b460d384a20c70301 +size 11706 diff --git a/parse/train/pULTvw9X313/images/571c4a4e26a7c5f63b6c67294779a3dae4e5fa2363ef876d3aad10b4ebcc22ff.jpg b/parse/train/pULTvw9X313/images/571c4a4e26a7c5f63b6c67294779a3dae4e5fa2363ef876d3aad10b4ebcc22ff.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e1062753b07507b75321d68852c2adbeea62eb6c --- /dev/null +++ b/parse/train/pULTvw9X313/images/571c4a4e26a7c5f63b6c67294779a3dae4e5fa2363ef876d3aad10b4ebcc22ff.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cf5401a07a24a3f3880ace75ebd93a117b438660b69ae638c5cbbba6604cd11 +size 14121 diff --git a/parse/train/pULTvw9X313/images/622ec6524c1680a41349b3235cfc66afa852421333b4e2e053c48f93a2fc6ebc.jpg b/parse/train/pULTvw9X313/images/622ec6524c1680a41349b3235cfc66afa852421333b4e2e053c48f93a2fc6ebc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dabb5420e645b66d4e4b357db9b00bd1394f694c --- /dev/null +++ b/parse/train/pULTvw9X313/images/622ec6524c1680a41349b3235cfc66afa852421333b4e2e053c48f93a2fc6ebc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eafcac6a24f05c44b88a45b874f1f9edde02a4ff904c14c1d6a0fe54aad532d7 +size 11975 diff --git a/parse/train/pULTvw9X313/images/7119a2639d83768f8037476b4dd40d8e76f198773802d4cc2975d3a525d64a49.jpg b/parse/train/pULTvw9X313/images/7119a2639d83768f8037476b4dd40d8e76f198773802d4cc2975d3a525d64a49.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cd2a7cc78f291ef061680012617ef1a1751692b4 --- /dev/null +++ b/parse/train/pULTvw9X313/images/7119a2639d83768f8037476b4dd40d8e76f198773802d4cc2975d3a525d64a49.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f178986d44b4e14cf427fda3923d4352886a8bd10915a234d9f689250a7ad1af +size 35869 diff --git a/parse/train/pULTvw9X313/images/85bfc53cff116373845a2510580033857bbade708c4afa86a5589992859a87b8.jpg b/parse/train/pULTvw9X313/images/85bfc53cff116373845a2510580033857bbade708c4afa86a5589992859a87b8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cad4b6835227aca511f8ec9a3ba1f676010086f5 --- /dev/null +++ b/parse/train/pULTvw9X313/images/85bfc53cff116373845a2510580033857bbade708c4afa86a5589992859a87b8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c1a814c6b63005376dfbbe071d138a033c3635fde7caab4a42377767516d80c +size 48235 diff --git a/parse/train/pULTvw9X313/images/b1e5aff7c4a8fa225533cb238f6303f28efeefd72a7651c36c74a012f9f2b940.jpg b/parse/train/pULTvw9X313/images/b1e5aff7c4a8fa225533cb238f6303f28efeefd72a7651c36c74a012f9f2b940.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eba02b78d3b58f99d765eed7456161d5aaaf180b --- /dev/null +++ b/parse/train/pULTvw9X313/images/b1e5aff7c4a8fa225533cb238f6303f28efeefd72a7651c36c74a012f9f2b940.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d174c21f71839b7cecd0beb8f50b34865f97fe108ab6fba5931c54ad7b3658a +size 13056 diff --git a/parse/train/pULTvw9X313/images/c34dde1195fc5acdbe36b6bec95589d31c12f6a2d45e575aa3b292b6688d36e5.jpg b/parse/train/pULTvw9X313/images/c34dde1195fc5acdbe36b6bec95589d31c12f6a2d45e575aa3b292b6688d36e5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7f9ee256fd451bcda31a523adc6d5dc6125b0e9f --- /dev/null +++ b/parse/train/pULTvw9X313/images/c34dde1195fc5acdbe36b6bec95589d31c12f6a2d45e575aa3b292b6688d36e5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c67cb67705c47060edad35636acacfe760774db0094fe63340a234a220ba03f6 +size 3948 diff --git a/parse/train/pULTvw9X313/images/c88231c45176aaa7b6d8bb4f31dc6055bb0e531cee83097465998d8eebaa4b2c.jpg b/parse/train/pULTvw9X313/images/c88231c45176aaa7b6d8bb4f31dc6055bb0e531cee83097465998d8eebaa4b2c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2e1635ce6ace78a8ee546fc8b0f5365dc99aabe9 --- /dev/null +++ b/parse/train/pULTvw9X313/images/c88231c45176aaa7b6d8bb4f31dc6055bb0e531cee83097465998d8eebaa4b2c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c31765dccb5b2038148a89118b1b7777c86a672878f096497521f5e8b488690e +size 3627 diff --git a/parse/train/pULTvw9X313/images/ce30c38f3d24d3e460aa04b75d98339585004a16874a66f8e1f0d21589f3965f.jpg b/parse/train/pULTvw9X313/images/ce30c38f3d24d3e460aa04b75d98339585004a16874a66f8e1f0d21589f3965f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..16ec8d48ff35e3326823a2cd013869a8a8eef208 --- /dev/null +++ b/parse/train/pULTvw9X313/images/ce30c38f3d24d3e460aa04b75d98339585004a16874a66f8e1f0d21589f3965f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dd091f3b5ece7a78d04f4133c3a35e5cad88b14c432c64a8140403064054622 +size 6917 diff --git a/parse/train/pULTvw9X313/images/d2afd0508e146a2048b0260560351eca2a72021e6063527c44d85959abc4a970.jpg b/parse/train/pULTvw9X313/images/d2afd0508e146a2048b0260560351eca2a72021e6063527c44d85959abc4a970.jpg new file mode 100644 index 0000000000000000000000000000000000000000..36814875c403e100a6109376ca7677b9261dfaf3 --- /dev/null +++ b/parse/train/pULTvw9X313/images/d2afd0508e146a2048b0260560351eca2a72021e6063527c44d85959abc4a970.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2c26a6c9c882fc239233345d2c41e2756967dd89b21ca6c02a5ec94b20e8f2f +size 58030 diff --git a/parse/train/pULTvw9X313/images/e48055ebcff419b4d4a3731091747888bd234fd8debc44af6fd1a3a2716c1c36.jpg b/parse/train/pULTvw9X313/images/e48055ebcff419b4d4a3731091747888bd234fd8debc44af6fd1a3a2716c1c36.jpg new file mode 100644 index 0000000000000000000000000000000000000000..47d5362602d09cf273d85fcc05ee6066818413bd --- /dev/null +++ b/parse/train/pULTvw9X313/images/e48055ebcff419b4d4a3731091747888bd234fd8debc44af6fd1a3a2716c1c36.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11849f9dff21ffb20a6cad013154e0392e8065e3fb6d4296feb0dd1cb0b21404 +size 58672 diff --git a/parse/train/pULTvw9X313/images/ff24da632ff1a17b2967ec106abd663917c046a53d0221503857664f79fc5ef3.jpg b/parse/train/pULTvw9X313/images/ff24da632ff1a17b2967ec106abd663917c046a53d0221503857664f79fc5ef3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6eee139f5591daee7b8ba470a544fde963df6929 --- /dev/null +++ b/parse/train/pULTvw9X313/images/ff24da632ff1a17b2967ec106abd663917c046a53d0221503857664f79fc5ef3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33a134e7a0aebfc5c65d38c6743073205d6b79167bb0b7ef22220f53ab827c90 +size 46086 diff --git a/parse/train/r154_g-Rb/images/0b299f9ab4cb3b839c7e98bc6921e62f6d64da9d1a1b5fbe93046c59a5a845b9.jpg b/parse/train/r154_g-Rb/images/0b299f9ab4cb3b839c7e98bc6921e62f6d64da9d1a1b5fbe93046c59a5a845b9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d130edb56b3cf603f0d270b4aa5281a7305191c8 --- /dev/null +++ b/parse/train/r154_g-Rb/images/0b299f9ab4cb3b839c7e98bc6921e62f6d64da9d1a1b5fbe93046c59a5a845b9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa2cd265e6312c634593daad32c20739f28047ddbee4ffefc009543ab87850d5 +size 3746 diff --git a/parse/train/r154_g-Rb/images/28355570631ffc144872cd6f11841f5407f326abc233c5b68f14159249e3594a.jpg b/parse/train/r154_g-Rb/images/28355570631ffc144872cd6f11841f5407f326abc233c5b68f14159249e3594a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b4f6f8a7017f6f315a93e1b7bc70795b03dade6d --- /dev/null +++ b/parse/train/r154_g-Rb/images/28355570631ffc144872cd6f11841f5407f326abc233c5b68f14159249e3594a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8bc9112150fa8eb92932a460ec8ace8cbee5633bd505f8779b74531bf8ed6ea +size 126301 diff --git a/parse/train/r154_g-Rb/images/35f4098d826e9a1a5ae3af6917e525e9329c4b3a9e2f382cb0d7bf06f8ec0fc0.jpg b/parse/train/r154_g-Rb/images/35f4098d826e9a1a5ae3af6917e525e9329c4b3a9e2f382cb0d7bf06f8ec0fc0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1e3d1bb3e73b457fc03c52087dccddd56143a887 --- /dev/null +++ b/parse/train/r154_g-Rb/images/35f4098d826e9a1a5ae3af6917e525e9329c4b3a9e2f382cb0d7bf06f8ec0fc0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f1f14fcc678026d001d046b8a3d04a486da314b34b5805774834f08547af9ec +size 29908 diff --git a/parse/train/r154_g-Rb/images/70e696fa0b3d09f6e36b8473581c706861e235d4eeb625aa215f50810ec0ec31.jpg b/parse/train/r154_g-Rb/images/70e696fa0b3d09f6e36b8473581c706861e235d4eeb625aa215f50810ec0ec31.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f09b8f636e0ae20619bffe3f52412a392ca07efd --- /dev/null +++ b/parse/train/r154_g-Rb/images/70e696fa0b3d09f6e36b8473581c706861e235d4eeb625aa215f50810ec0ec31.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56d737ded1298819bbf7b8605173681cb26c33ad2441e1674ac1d3624c76afb2 +size 27870 diff --git a/parse/train/r154_g-Rb/images/77129c3880f0194beedf8e4e4d006ca6fc8f5bfcd1a0b98c75d6b36bad52d10f.jpg b/parse/train/r154_g-Rb/images/77129c3880f0194beedf8e4e4d006ca6fc8f5bfcd1a0b98c75d6b36bad52d10f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..54949373fc4600a8799265398c6e3dceddbafe06 --- /dev/null +++ b/parse/train/r154_g-Rb/images/77129c3880f0194beedf8e4e4d006ca6fc8f5bfcd1a0b98c75d6b36bad52d10f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dbb2b980308d7022b0134deec16aed071e1deef563e6f5dd66195b2e24a90c8 +size 8193 diff --git a/parse/train/r154_g-Rb/images/9010c347820f00c2fd1adf405e10fd26af0322e88edf5f43f02965e1e900eba2.jpg b/parse/train/r154_g-Rb/images/9010c347820f00c2fd1adf405e10fd26af0322e88edf5f43f02965e1e900eba2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f0894c94657ca3f35a5f41887653980c89140a24 --- /dev/null +++ b/parse/train/r154_g-Rb/images/9010c347820f00c2fd1adf405e10fd26af0322e88edf5f43f02965e1e900eba2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b51e92f4b756ab61384c7402089e736dad46e37fe51ade53d2cf1b41ae4e741c +size 35613 diff --git a/parse/train/r154_g-Rb/images/90bf30f100a426d3873f3b1558a4c751c1d2761eee1695cfb6bb790c71fe9f95.jpg b/parse/train/r154_g-Rb/images/90bf30f100a426d3873f3b1558a4c751c1d2761eee1695cfb6bb790c71fe9f95.jpg new file mode 100644 index 0000000000000000000000000000000000000000..de3df61df6757c4231fb17015b795060c4ec9d50 --- /dev/null +++ b/parse/train/r154_g-Rb/images/90bf30f100a426d3873f3b1558a4c751c1d2761eee1695cfb6bb790c71fe9f95.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c827e46b632fa9d7defb54bf193e6e1b08e71cd096c1aa083bffc8998abf769c +size 26891 diff --git a/parse/train/r154_g-Rb/images/97cefae6f4a25c134baed4690fefe030b065d411d2535d16a47dea4aa6161483.jpg b/parse/train/r154_g-Rb/images/97cefae6f4a25c134baed4690fefe030b065d411d2535d16a47dea4aa6161483.jpg new file mode 100644 index 0000000000000000000000000000000000000000..35d0b108f3e86b6d7bff69af5c0ad16a90e66b1a --- /dev/null +++ b/parse/train/r154_g-Rb/images/97cefae6f4a25c134baed4690fefe030b065d411d2535d16a47dea4aa6161483.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96945f12446d7e24b6260461e6f207229be9448eb2327052f81f1192171ce4a2 +size 57629 diff --git a/parse/train/r154_g-Rb/images/a4c3024cf16429bb6f83f8d8e6bc2af3fac2e6327a0aed3a75f8e3f2c9a78093.jpg b/parse/train/r154_g-Rb/images/a4c3024cf16429bb6f83f8d8e6bc2af3fac2e6327a0aed3a75f8e3f2c9a78093.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7724471dd90935a6255eefceb82530fd20a447d7 --- /dev/null +++ b/parse/train/r154_g-Rb/images/a4c3024cf16429bb6f83f8d8e6bc2af3fac2e6327a0aed3a75f8e3f2c9a78093.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ccc33104d50d668566f3a7757f57fc8bade92094e7e85e92a6164c1a6685b67 +size 40324 diff --git a/parse/train/r154_g-Rb/images/d94ce6877d1871186eb83817ffa1d1a005b5a2ab4d985ac0b3c9929066073333.jpg b/parse/train/r154_g-Rb/images/d94ce6877d1871186eb83817ffa1d1a005b5a2ab4d985ac0b3c9929066073333.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f119cbd45b3dedfef4120ceb04e3c9caacb28af9 --- /dev/null +++ b/parse/train/r154_g-Rb/images/d94ce6877d1871186eb83817ffa1d1a005b5a2ab4d985ac0b3c9929066073333.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed6bc738846a489f6569057c241d24c25c1edd0172bb856befe9734d2b3230e5 +size 31299 diff --git a/parse/train/r154_g-Rb/images/e405e424f48befdc453e19a6849c522cde2c703ae1995926a3003bcf8c43bffb.jpg b/parse/train/r154_g-Rb/images/e405e424f48befdc453e19a6849c522cde2c703ae1995926a3003bcf8c43bffb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..47a712f37c8d33751498c171d247dab853f0cb5c --- /dev/null +++ b/parse/train/r154_g-Rb/images/e405e424f48befdc453e19a6849c522cde2c703ae1995926a3003bcf8c43bffb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c30087bd5723d441260bd2b562064700ecaf928abbc971c254da3203c33a3a0 +size 23459 diff --git a/parse/train/r1VdcHcxx/images/1222ba8b8e0614a3caf147564c3add84b44a0eb96279b13b38967897b1f1643d.jpg b/parse/train/r1VdcHcxx/images/1222ba8b8e0614a3caf147564c3add84b44a0eb96279b13b38967897b1f1643d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..224088b2a330a5e5e012a05c48d387339aad7aea --- /dev/null +++ b/parse/train/r1VdcHcxx/images/1222ba8b8e0614a3caf147564c3add84b44a0eb96279b13b38967897b1f1643d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a7a31e041315b769b6670a643b6879c26eaf0e47933ddf0ef81d8eff927c20e +size 24425 diff --git a/parse/train/r1VdcHcxx/images/188139d5d8867972212e3a08a06e48925cb073f8459db52403576d5a42886f06.jpg b/parse/train/r1VdcHcxx/images/188139d5d8867972212e3a08a06e48925cb073f8459db52403576d5a42886f06.jpg new file mode 100644 index 0000000000000000000000000000000000000000..106116a1bf6e553d39af496f08c2cc32514b95b4 --- /dev/null +++ b/parse/train/r1VdcHcxx/images/188139d5d8867972212e3a08a06e48925cb073f8459db52403576d5a42886f06.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91db0c9063f353fd3992f421bf28a2a0d87f1da2015d6b7ad0c780f49e8a3e20 +size 18247 diff --git a/parse/train/r1VdcHcxx/images/30c3f817b513585f3c0623698b38067d4efa5f55a7b8b3468761eb5bcc0222c3.jpg b/parse/train/r1VdcHcxx/images/30c3f817b513585f3c0623698b38067d4efa5f55a7b8b3468761eb5bcc0222c3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3076b4c074129175e0d79b428041a0f9afcc9a66 --- /dev/null +++ b/parse/train/r1VdcHcxx/images/30c3f817b513585f3c0623698b38067d4efa5f55a7b8b3468761eb5bcc0222c3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6eacfa2eb2a35b10d0c85075fd45a5d30a260b13c1890832706ed16dcd59140e +size 33507 diff --git a/parse/train/r1VdcHcxx/images/32a492301cbba6a23839177c9d6fc60087a4017241bd6b1db95161a20691760d.jpg b/parse/train/r1VdcHcxx/images/32a492301cbba6a23839177c9d6fc60087a4017241bd6b1db95161a20691760d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f5e5ea38bdce926296861e46b4e74cb484169fee --- /dev/null +++ b/parse/train/r1VdcHcxx/images/32a492301cbba6a23839177c9d6fc60087a4017241bd6b1db95161a20691760d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:313ead3ba77d255b13f4e214776369724203a316df18f89c3f6cb9448c66b033 +size 23214 diff --git a/parse/train/r1VdcHcxx/images/35105768d1f05514769e061338f0bcdaa136cba55a702bbb035d15902bb435f9.jpg b/parse/train/r1VdcHcxx/images/35105768d1f05514769e061338f0bcdaa136cba55a702bbb035d15902bb435f9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b8e6433d6d6a35153167d6e4b8638a311ce27596 --- /dev/null +++ b/parse/train/r1VdcHcxx/images/35105768d1f05514769e061338f0bcdaa136cba55a702bbb035d15902bb435f9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ddf780f6cf0e9109eafc864f9c07b89c7c977b3612463d95d7e6b06ea5f32f4 +size 41302 diff --git a/parse/train/r1VdcHcxx/images/4a84e068ddee2711d8660cd15fd1677c2c44884149bb9079bf9725728293af6c.jpg b/parse/train/r1VdcHcxx/images/4a84e068ddee2711d8660cd15fd1677c2c44884149bb9079bf9725728293af6c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f4dc7a1c9970f9ce6f02b4dabf61fe460bfb9579 --- /dev/null +++ b/parse/train/r1VdcHcxx/images/4a84e068ddee2711d8660cd15fd1677c2c44884149bb9079bf9725728293af6c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4663ce6eb5ff1f98eb1cdbb4eb6b53258406dd6245f2efff4868c504bf04814 +size 95746 diff --git a/parse/train/r1VdcHcxx/images/524d7feb92f166a7cc4f8aceb12a4265a4a6a130ab9e6299078607f8164549c8.jpg b/parse/train/r1VdcHcxx/images/524d7feb92f166a7cc4f8aceb12a4265a4a6a130ab9e6299078607f8164549c8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dc685e1b5cafa86994fd62d1a655f1a75de31cf3 --- /dev/null +++ b/parse/train/r1VdcHcxx/images/524d7feb92f166a7cc4f8aceb12a4265a4a6a130ab9e6299078607f8164549c8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33a28d599185f73c690ea202eb05dcb8a9c066f1c0642d86803ac32294998b58 +size 18709 diff --git a/parse/train/r1VdcHcxx/images/af706a662dd47cbdc7116392bb9ad4cd132c3c09ca773cfda86c408d424609ce.jpg b/parse/train/r1VdcHcxx/images/af706a662dd47cbdc7116392bb9ad4cd132c3c09ca773cfda86c408d424609ce.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3bad48580dfac51633c9593eeea4fea5da89ad71 --- /dev/null +++ b/parse/train/r1VdcHcxx/images/af706a662dd47cbdc7116392bb9ad4cd132c3c09ca773cfda86c408d424609ce.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8669fb35ec5182852ee0d3e692c95f880ddbd6b34a694d31e2caf13d7e397ae7 +size 34601 diff --git a/parse/train/r1VdcHcxx/images/df5f92d4029a1c63b840858820e6e0e5052ac4e738fe1fb87bd685b05c911a9c.jpg b/parse/train/r1VdcHcxx/images/df5f92d4029a1c63b840858820e6e0e5052ac4e738fe1fb87bd685b05c911a9c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..25edb3d37ec9a393aa93dab94d909b408a0f4df0 --- /dev/null +++ b/parse/train/r1VdcHcxx/images/df5f92d4029a1c63b840858820e6e0e5052ac4e738fe1fb87bd685b05c911a9c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a04aea7c43359855478e03263e2ffec42b9107fe7eba73197d5178bfe485e136 +size 3971 diff --git a/parse/train/r1VdcHcxx/images/e7b1dc09eda0c4b9cff5c34e5ef0633ab5b9c8b859560a7be47375d5bc6f3fba.jpg b/parse/train/r1VdcHcxx/images/e7b1dc09eda0c4b9cff5c34e5ef0633ab5b9c8b859560a7be47375d5bc6f3fba.jpg new file mode 100644 index 0000000000000000000000000000000000000000..011b5cd5f8ed9ac4375cffe3c2e8ad8072a142c2 --- /dev/null +++ b/parse/train/r1VdcHcxx/images/e7b1dc09eda0c4b9cff5c34e5ef0633ab5b9c8b859560a7be47375d5bc6f3fba.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f66c228ea6503b649d255f3ef52daf26192605073d0a6fa0ff0168a6da6ad6a2 +size 98552 diff --git a/parse/train/rJeU_1SFvr/images/06f68846debd7be03af0b8c45a25ad62e753ceedbbf6feeb7d863e75698a5519.jpg b/parse/train/rJeU_1SFvr/images/06f68846debd7be03af0b8c45a25ad62e753ceedbbf6feeb7d863e75698a5519.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4ef152207cdd634973901fe12b18fc5941f8a65c --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/06f68846debd7be03af0b8c45a25ad62e753ceedbbf6feeb7d863e75698a5519.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ef152cfb4dadc14c5528cd1c1e9b786d5719f1c932967749f274f71cb76f672 +size 17451 diff --git a/parse/train/rJeU_1SFvr/images/08d18f774fc587387bb21732661c7ffc3db922b57aa6143398a3beb197685e05.jpg b/parse/train/rJeU_1SFvr/images/08d18f774fc587387bb21732661c7ffc3db922b57aa6143398a3beb197685e05.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7adaf09e8f92ca79e5b0066993dfea7e66581f31 --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/08d18f774fc587387bb21732661c7ffc3db922b57aa6143398a3beb197685e05.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72dc4772b94fdb159d83dbbe09695abaa23654c498e9fcae33835f959e25b06c +size 409721 diff --git a/parse/train/rJeU_1SFvr/images/2756506a6e2ccfcb30acbeff91257cd388a2e6e75ab1615852a3ab6933c68f80.jpg b/parse/train/rJeU_1SFvr/images/2756506a6e2ccfcb30acbeff91257cd388a2e6e75ab1615852a3ab6933c68f80.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fe4c8dbf22cace196102459c92322ec7f9f5f7ff --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/2756506a6e2ccfcb30acbeff91257cd388a2e6e75ab1615852a3ab6933c68f80.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb76b68aae259e8f5ae9ceefee8e95374456f7460f85246007f8430f9dd34676 +size 2918 diff --git a/parse/train/rJeU_1SFvr/images/28bbbaec800be633c323dbece41044abf5da91701bf2a0f3981a0c739ef49503.jpg b/parse/train/rJeU_1SFvr/images/28bbbaec800be633c323dbece41044abf5da91701bf2a0f3981a0c739ef49503.jpg new file mode 100644 index 0000000000000000000000000000000000000000..65234ceedc93b27b0012358abecf625cf477d336 --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/28bbbaec800be633c323dbece41044abf5da91701bf2a0f3981a0c739ef49503.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd7a7b3bf1b2f83a1a1d4bd35fc342027876d263ac86fb80f0828244f2691968 +size 14520 diff --git a/parse/train/rJeU_1SFvr/images/2966b36cc9a244e4c3fd95bf4642683a3a97459d514a30b50a2e05c51b72cc21.jpg b/parse/train/rJeU_1SFvr/images/2966b36cc9a244e4c3fd95bf4642683a3a97459d514a30b50a2e05c51b72cc21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0288dc8673938b52a13ecfb083c509f3f2496c52 --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/2966b36cc9a244e4c3fd95bf4642683a3a97459d514a30b50a2e05c51b72cc21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46080b195489d9f809256c44761a930f3e72047c40aa233b84e67a0151c4f2b1 +size 41628 diff --git a/parse/train/rJeU_1SFvr/images/2c49f0b8b0f04b55a506116dd240c53aa29cbd4b6cfc4d69b7f74cd067ac65be.jpg b/parse/train/rJeU_1SFvr/images/2c49f0b8b0f04b55a506116dd240c53aa29cbd4b6cfc4d69b7f74cd067ac65be.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e9d9af22433cf9cca8a24da703786cbb4c0d1a38 --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/2c49f0b8b0f04b55a506116dd240c53aa29cbd4b6cfc4d69b7f74cd067ac65be.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1fc6ff1e5812037594ebfbaa0129b126b7a5dc0eb75e36cdb2935ee65815db8 +size 1991 diff --git a/parse/train/rJeU_1SFvr/images/2f712f91570b8cabf50bafb2c9192f40a2b4dd9910cc127fcc455f6eab5db2b9.jpg b/parse/train/rJeU_1SFvr/images/2f712f91570b8cabf50bafb2c9192f40a2b4dd9910cc127fcc455f6eab5db2b9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c549dca220543f507f97dfb165af92efda295a85 --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/2f712f91570b8cabf50bafb2c9192f40a2b4dd9910cc127fcc455f6eab5db2b9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7abbd19f3fd7235767b18aba16fb85f3e952778e814e8043d4a6dbeaabfe2977 +size 5815 diff --git a/parse/train/rJeU_1SFvr/images/33bfe519ea27fb3cc07953789e04f99bf10855a41a6814d2c03e24d712738a29.jpg b/parse/train/rJeU_1SFvr/images/33bfe519ea27fb3cc07953789e04f99bf10855a41a6814d2c03e24d712738a29.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0c6e4994072128d46cdeb7efdac4b7f9de382bb3 --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/33bfe519ea27fb3cc07953789e04f99bf10855a41a6814d2c03e24d712738a29.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f1b8aa7e8fd9a057627c32002b873396248213b6f6100317e8463c29e7ce2c +size 5563 diff --git a/parse/train/rJeU_1SFvr/images/35cff76831eacae66e68db90fbb7ecc829f2cd7e044aab85a02fce6866b78817.jpg b/parse/train/rJeU_1SFvr/images/35cff76831eacae66e68db90fbb7ecc829f2cd7e044aab85a02fce6866b78817.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6c17c983e4c334adbb5c7c49018b9a33431da915 --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/35cff76831eacae66e68db90fbb7ecc829f2cd7e044aab85a02fce6866b78817.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b22c56fbd9775ea3bc7ba8fbdb70812c9f0156bc4babffeb1a3c382fe67e434 +size 9690 diff --git a/parse/train/rJeU_1SFvr/images/3d3841bcb9452892eb0bbfa152b70e2643e23e6889ec6905dd315b3e7dd4720c.jpg b/parse/train/rJeU_1SFvr/images/3d3841bcb9452892eb0bbfa152b70e2643e23e6889ec6905dd315b3e7dd4720c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9c85c297e67435962d7420f812f8d0be10dd8e42 --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/3d3841bcb9452892eb0bbfa152b70e2643e23e6889ec6905dd315b3e7dd4720c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5d460f3ffc7846a4546852bf7da3cbd564b5ca9dc32ed87fa535663f2d0b46a +size 6283 diff --git a/parse/train/rJeU_1SFvr/images/3f634eef99021f2ea1d703ef6a70a926be391935e383b212b017baee8ba7da96.jpg b/parse/train/rJeU_1SFvr/images/3f634eef99021f2ea1d703ef6a70a926be391935e383b212b017baee8ba7da96.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0dd64a4350067e4d9964ed9932e690e3185343c0 --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/3f634eef99021f2ea1d703ef6a70a926be391935e383b212b017baee8ba7da96.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8439d19d3cfd7d2261e863035db92c37c9dc421f10bf106276be012e3eab51b +size 2880 diff --git a/parse/train/rJeU_1SFvr/images/49ef6ac3aa97a2050826c51eaedc2251718eabbf84d8767c066a07fb39e16ce6.jpg b/parse/train/rJeU_1SFvr/images/49ef6ac3aa97a2050826c51eaedc2251718eabbf84d8767c066a07fb39e16ce6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6ab553077a222107030a8b50432997a24a07e63c --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/49ef6ac3aa97a2050826c51eaedc2251718eabbf84d8767c066a07fb39e16ce6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6934b49f5ca29dc1722243f79d34aee39506ad4f68098e8e1686be0f677f207 +size 9308 diff --git a/parse/train/rJeU_1SFvr/images/5110787851e3c0737d7cb10dc05adb2764ab13cef0bde9dd05eedfdb6bf7ec2a.jpg b/parse/train/rJeU_1SFvr/images/5110787851e3c0737d7cb10dc05adb2764ab13cef0bde9dd05eedfdb6bf7ec2a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..86cc0fccc89c68c2815bd0a9d0e9e94241f28173 --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/5110787851e3c0737d7cb10dc05adb2764ab13cef0bde9dd05eedfdb6bf7ec2a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2493caceeeba7b121b43b04333e34686a9f252f45cd97d8af31a8a2383cf5146 +size 8330 diff --git a/parse/train/rJeU_1SFvr/images/560dd7ea33fa2ab6bac3edd07f29bfea53b60fb73c0da37564cef24388f6b7a8.jpg b/parse/train/rJeU_1SFvr/images/560dd7ea33fa2ab6bac3edd07f29bfea53b60fb73c0da37564cef24388f6b7a8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c7e5bfb70d9ed49352d28816a9394c64a0a3a5bf --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/560dd7ea33fa2ab6bac3edd07f29bfea53b60fb73c0da37564cef24388f6b7a8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:216d3b05b9c25529b356f872b0c39a48a52d23ffdfd52a004e3f6749c471b2eb +size 5013 diff --git a/parse/train/rJeU_1SFvr/images/573cd2159ad10fe7c4e31950d16db1c118bbf937fdb1deeca3c568b63402b823.jpg b/parse/train/rJeU_1SFvr/images/573cd2159ad10fe7c4e31950d16db1c118bbf937fdb1deeca3c568b63402b823.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d73fefe4cf43d997a7a2491bd0cbf599394a64a9 --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/573cd2159ad10fe7c4e31950d16db1c118bbf937fdb1deeca3c568b63402b823.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e33bdaeaf3e8097223294f224a3477c62353eebae7e52d15a500fdd40c2e87f6 +size 2876 diff --git a/parse/train/rJeU_1SFvr/images/5b4757c45da4bce2b3b273adb772fefb3404f5732f9ff9bdc418fbd210ff275f.jpg b/parse/train/rJeU_1SFvr/images/5b4757c45da4bce2b3b273adb772fefb3404f5732f9ff9bdc418fbd210ff275f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..353174549eae3ce05d087ab6dee4dc0233fc994a --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/5b4757c45da4bce2b3b273adb772fefb3404f5732f9ff9bdc418fbd210ff275f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6f59767b648df69b241c0e0ce58c48bfa3e299b468948bfd56a704239673e44 +size 14902 diff --git a/parse/train/rJeU_1SFvr/images/5e64840cde5a5c641e9934aeafb0830a37f1c284d9c281b4f67191fac2af05dc.jpg b/parse/train/rJeU_1SFvr/images/5e64840cde5a5c641e9934aeafb0830a37f1c284d9c281b4f67191fac2af05dc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..66da7ce38c0d7d192e009d456b4a0c76b2565f1a --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/5e64840cde5a5c641e9934aeafb0830a37f1c284d9c281b4f67191fac2af05dc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25433a3b247682bfdcfa79121c7e1d37c86a9b114638a3935e1bf4b29603f8b5 +size 2487 diff --git a/parse/train/rJeU_1SFvr/images/67e0d1e919fcd9d52a6a4d1e8c4bf0b6635f27b2e19aa29369320e597bd75929.jpg b/parse/train/rJeU_1SFvr/images/67e0d1e919fcd9d52a6a4d1e8c4bf0b6635f27b2e19aa29369320e597bd75929.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8aaa572539f3f9c4322d0b9b38fc19697e047885 --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/67e0d1e919fcd9d52a6a4d1e8c4bf0b6635f27b2e19aa29369320e597bd75929.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee00938a1518d5ca68bf6f2a25dcefdb2319134fb89b3ba800eae859661e1e01 +size 16592 diff --git a/parse/train/rJeU_1SFvr/images/688128d9a5c94b3de1956cd3f8bdcb92f13470f5607bb114da55974e7e2c77ce.jpg b/parse/train/rJeU_1SFvr/images/688128d9a5c94b3de1956cd3f8bdcb92f13470f5607bb114da55974e7e2c77ce.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f5bd3c3222c98fa7198e1d09da8c14ca4e31af06 --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/688128d9a5c94b3de1956cd3f8bdcb92f13470f5607bb114da55974e7e2c77ce.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59d7220ab2ae24dbf74d18ed7391fcc41435c7fb861e6f03170a9f9a44b9d6dd +size 3976 diff --git a/parse/train/rJeU_1SFvr/images/70e7fe009e5b1609bb818fa3772fc182835a16495fe562233928ba82814530ea.jpg b/parse/train/rJeU_1SFvr/images/70e7fe009e5b1609bb818fa3772fc182835a16495fe562233928ba82814530ea.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9cbcf882384928030caeb379554840aaae5c78ac --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/70e7fe009e5b1609bb818fa3772fc182835a16495fe562233928ba82814530ea.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc2a6f68f3b83b1c7026dc2d7fd0cbc87b46d22cb770b94fd87c0e7f297bfdd4 +size 10705 diff --git a/parse/train/rJeU_1SFvr/images/755e51838e95d4086e4f2d4e3f6d5584b88bafa3dac29a07a08babae1248718b.jpg b/parse/train/rJeU_1SFvr/images/755e51838e95d4086e4f2d4e3f6d5584b88bafa3dac29a07a08babae1248718b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9b59a2ba985a6114b561a149cd8767dd76fef377 --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/755e51838e95d4086e4f2d4e3f6d5584b88bafa3dac29a07a08babae1248718b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:343d0adbc289054ece4c727cf622c302f41bd4d478427d29442a1833eea49457 +size 3440 diff --git a/parse/train/rJeU_1SFvr/images/7621bc68cbafac60b0d64ace1b03ec6acb5884420b7f0434eb4545e4cce8ef75.jpg b/parse/train/rJeU_1SFvr/images/7621bc68cbafac60b0d64ace1b03ec6acb5884420b7f0434eb4545e4cce8ef75.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b67e178821ce8ca3a31e8d89cc914a8734fd2106 --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/7621bc68cbafac60b0d64ace1b03ec6acb5884420b7f0434eb4545e4cce8ef75.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34917ad7428a76bdfba0816b2da0b390530c299e371c35ac8b14ff141bf7c21f +size 79492 diff --git a/parse/train/rJeU_1SFvr/images/78317d9d47e2549c887d661c5307f48b600bca77663bca33a556d3df5e6d0547.jpg b/parse/train/rJeU_1SFvr/images/78317d9d47e2549c887d661c5307f48b600bca77663bca33a556d3df5e6d0547.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5781722b55080121c56de2889f3bed865364c354 --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/78317d9d47e2549c887d661c5307f48b600bca77663bca33a556d3df5e6d0547.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2b9745df5433e02bf05fb2eee7001e7c8c6719906623020765384bc145c1b84 +size 9626 diff --git a/parse/train/rJeU_1SFvr/images/8252bfa40a1cf81e7dfcd6a4941fb2e9cf65565f39901908143bf6a503a07345.jpg b/parse/train/rJeU_1SFvr/images/8252bfa40a1cf81e7dfcd6a4941fb2e9cf65565f39901908143bf6a503a07345.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0a50a68319ef6f0a457d6c989b666ba4ee3e6209 --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/8252bfa40a1cf81e7dfcd6a4941fb2e9cf65565f39901908143bf6a503a07345.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb40953083a0d54d8dba03ba119774518355c62e46c294d8208c1aefdc243676 +size 14792 diff --git a/parse/train/rJeU_1SFvr/images/858f0c65d77db71a418a03d70c5e0606399c15898887cbb3f48e18b293dd0b98.jpg b/parse/train/rJeU_1SFvr/images/858f0c65d77db71a418a03d70c5e0606399c15898887cbb3f48e18b293dd0b98.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3eba40e50dd41769e080791c0a7899e8324a10be --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/858f0c65d77db71a418a03d70c5e0606399c15898887cbb3f48e18b293dd0b98.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c65023ee4132da74c9a574f08e2764db8781a3473e8e2412c35000635b23714 +size 4032 diff --git a/parse/train/rJeU_1SFvr/images/85b1b200778700525fac67da4661c56a14ab82cd6d2e008688bb1863b8a5e21a.jpg b/parse/train/rJeU_1SFvr/images/85b1b200778700525fac67da4661c56a14ab82cd6d2e008688bb1863b8a5e21a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..24eb97a7dd5afa3bbdce2c65ad1e46ce261a3226 --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/85b1b200778700525fac67da4661c56a14ab82cd6d2e008688bb1863b8a5e21a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5078b7443658da7611a515a8673dfe12a7dc2e67fbdc2f43ee48122df33e367 +size 8708 diff --git a/parse/train/rJeU_1SFvr/images/85eb8fa1823f783151421751466d469565435d09556bb7dbba3499f3ec9b9f32.jpg b/parse/train/rJeU_1SFvr/images/85eb8fa1823f783151421751466d469565435d09556bb7dbba3499f3ec9b9f32.jpg new file mode 100644 index 0000000000000000000000000000000000000000..71f1d9c87f24e75ad60c4939685252f96c8ca0ae --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/85eb8fa1823f783151421751466d469565435d09556bb7dbba3499f3ec9b9f32.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:548cb1cffb2c9b7d907cd2ea3a9515b2d62b2c3d6182c3ce9b80b0e66f730ed1 +size 324037 diff --git a/parse/train/rJeU_1SFvr/images/86601a8a9e19d78392a2f54a737be755f53742c748082b3e5d2bcc4246e83a01.jpg b/parse/train/rJeU_1SFvr/images/86601a8a9e19d78392a2f54a737be755f53742c748082b3e5d2bcc4246e83a01.jpg new file mode 100644 index 0000000000000000000000000000000000000000..40d656ffbd75c32287f98c1ac14a07bf51f88c7a --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/86601a8a9e19d78392a2f54a737be755f53742c748082b3e5d2bcc4246e83a01.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d5a0a357ccd6f2dcd4426622b9e0b399007f9f1cd1ba7b7cd71154fba796829 +size 112394 diff --git a/parse/train/rJeU_1SFvr/images/940acc1b2137ed3db28ecc22572b29ae004f7f4763b437aab5109fd2ff070819.jpg b/parse/train/rJeU_1SFvr/images/940acc1b2137ed3db28ecc22572b29ae004f7f4763b437aab5109fd2ff070819.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a630833c0034fa40e975f461813e927183c34413 --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/940acc1b2137ed3db28ecc22572b29ae004f7f4763b437aab5109fd2ff070819.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e028be6faedbc8bb85ad603da89c54dd6f83b74f47b83aaa1cafdabd1dc78eb +size 126661 diff --git a/parse/train/rJeU_1SFvr/images/a13e4b99474e8adbcd85d8000d5b173696b338a4702f571b621bb4f994a41e82.jpg b/parse/train/rJeU_1SFvr/images/a13e4b99474e8adbcd85d8000d5b173696b338a4702f571b621bb4f994a41e82.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0e7a30388daf15a153eea1a6b3061f8924a13aea --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/a13e4b99474e8adbcd85d8000d5b173696b338a4702f571b621bb4f994a41e82.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfa47e0915cecdd37e029ea93990645463880649c5967a3fad4e3c2583a32da5 +size 15167 diff --git a/parse/train/rJeU_1SFvr/images/a64e4aa0d35d4a74b8b0ce7c8219d18a532639a209e45b708027d63b0f26d3d9.jpg b/parse/train/rJeU_1SFvr/images/a64e4aa0d35d4a74b8b0ce7c8219d18a532639a209e45b708027d63b0f26d3d9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..45a8fa5de494079bcabd17f164f1eac9696cd3f6 --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/a64e4aa0d35d4a74b8b0ce7c8219d18a532639a209e45b708027d63b0f26d3d9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e90a19b502b57c7d82c4e630a39063b08d3f983edc1c6873ae2d73f626d7eafb +size 2415 diff --git a/parse/train/rJeU_1SFvr/images/a79b2b3f2b5f754129923560fbb71709f81bf8416d83d1a5b7fe6082daa4985c.jpg b/parse/train/rJeU_1SFvr/images/a79b2b3f2b5f754129923560fbb71709f81bf8416d83d1a5b7fe6082daa4985c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..95dab669a96926320ceb5c000e192db2232aba51 --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/a79b2b3f2b5f754129923560fbb71709f81bf8416d83d1a5b7fe6082daa4985c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07d8e2129b78fb0c9cd5d9421864f8575060c7b3ebf98e4143750370e3ae2a7f +size 39996 diff --git a/parse/train/rJeU_1SFvr/images/a84700ae275e2a00511145cb295e953cda39609b11d83381e9b2f310aeed347e.jpg b/parse/train/rJeU_1SFvr/images/a84700ae275e2a00511145cb295e953cda39609b11d83381e9b2f310aeed347e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3d0ebe360003b13c47652d3872ff0f3aff9703e4 --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/a84700ae275e2a00511145cb295e953cda39609b11d83381e9b2f310aeed347e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0096b0636c4fd69db2e953592e8c05372384fd16561f15f1bd186ee63261f48a +size 44745 diff --git a/parse/train/rJeU_1SFvr/images/ae331ab67c9eb164e4a2a09e560c8a52fe1b2f6fc9dfda3a2ea49271b13a8f6d.jpg b/parse/train/rJeU_1SFvr/images/ae331ab67c9eb164e4a2a09e560c8a52fe1b2f6fc9dfda3a2ea49271b13a8f6d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..af68877f9eba85ccbe841173fb244cd7efa9b0a8 --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/ae331ab67c9eb164e4a2a09e560c8a52fe1b2f6fc9dfda3a2ea49271b13a8f6d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad6efe6475a34edc1eb7db7f6cf830ce5f8939fcce43b7849bbccbd76d63c13d +size 32959 diff --git a/parse/train/rJeU_1SFvr/images/b0054f0e51f8d020f82fc7d0c8c600504cd099f7774e67ecc59e938693dca699.jpg b/parse/train/rJeU_1SFvr/images/b0054f0e51f8d020f82fc7d0c8c600504cd099f7774e67ecc59e938693dca699.jpg new file mode 100644 index 0000000000000000000000000000000000000000..28cf680df0ab4478c4566538d7cf4f99cf870045 --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/b0054f0e51f8d020f82fc7d0c8c600504cd099f7774e67ecc59e938693dca699.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd87947a0d6dbdfec85f7121222a24ecfea894b04274b5012de90fd81c43c409 +size 8970 diff --git a/parse/train/rJeU_1SFvr/images/b0a285d0b11e1f95e3558f73431b445e8ae14eb47fc99bd1352d736e2370866f.jpg b/parse/train/rJeU_1SFvr/images/b0a285d0b11e1f95e3558f73431b445e8ae14eb47fc99bd1352d736e2370866f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5b53a84344195d1a0a7426a666f9f8ec65f1d362 --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/b0a285d0b11e1f95e3558f73431b445e8ae14eb47fc99bd1352d736e2370866f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07be88d076f9b2aa63a8a68fc0e929d6810ce02f9ddc589a88ea14390bdb6378 +size 20663 diff --git a/parse/train/rJeU_1SFvr/images/b269fe998c4514bfe1f9b11591d16220b3c11dbcf589ae3d2036981f5c9a6899.jpg b/parse/train/rJeU_1SFvr/images/b269fe998c4514bfe1f9b11591d16220b3c11dbcf589ae3d2036981f5c9a6899.jpg new file mode 100644 index 0000000000000000000000000000000000000000..64ab3d9effbc94bb98dd0ea583fd89f439f129ae --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/b269fe998c4514bfe1f9b11591d16220b3c11dbcf589ae3d2036981f5c9a6899.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ae642bbb19a109e2eb6b007ebf418bdaf4f9f1e153442af2b0f1c396baeec0d +size 26656 diff --git a/parse/train/rJeU_1SFvr/images/b9c16173498b9a199f8317feb4362c7cd47d0a484904c103e6548a649ef4f32c.jpg b/parse/train/rJeU_1SFvr/images/b9c16173498b9a199f8317feb4362c7cd47d0a484904c103e6548a649ef4f32c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e6ad03fe2376186e69105c54dcbe2e6d345f33e1 --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/b9c16173498b9a199f8317feb4362c7cd47d0a484904c103e6548a649ef4f32c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49c1379db8b78ad22948e916f70d20b89269aae6ef85b6dfe1f218dfb632a04a +size 15342 diff --git a/parse/train/rJeU_1SFvr/images/ba041598a8041667fbb96c46986d1a22e659d254c76784899c8f385f41c5eb9e.jpg b/parse/train/rJeU_1SFvr/images/ba041598a8041667fbb96c46986d1a22e659d254c76784899c8f385f41c5eb9e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c1d96e2ac3725740c383976eb1ece223074f9888 --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/ba041598a8041667fbb96c46986d1a22e659d254c76784899c8f385f41c5eb9e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b2cf846e52d705c0df194db6b864f0a25dad7bc78d6b984dca13a81b0a83781 +size 9534 diff --git a/parse/train/rJeU_1SFvr/images/c1405e82f56815cd622ed4e0f107f458103a4d376f606efc461889292e473a2f.jpg b/parse/train/rJeU_1SFvr/images/c1405e82f56815cd622ed4e0f107f458103a4d376f606efc461889292e473a2f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c5e87e1747104a6732fdc7d61953643ad73a23a7 --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/c1405e82f56815cd622ed4e0f107f458103a4d376f606efc461889292e473a2f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:accd0d81bbf841ae427fe0b473579b1e533ebefeef5c4f537a799884f3b86728 +size 17075 diff --git a/parse/train/rJeU_1SFvr/images/c24ba41202d98dd0cfb864fbd092fb035f3fe4c84763666ad586e37a8cf9c30d.jpg b/parse/train/rJeU_1SFvr/images/c24ba41202d98dd0cfb864fbd092fb035f3fe4c84763666ad586e37a8cf9c30d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fb9cabf6165d3116931427beb7873780ee5601e6 --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/c24ba41202d98dd0cfb864fbd092fb035f3fe4c84763666ad586e37a8cf9c30d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef90532b46d341b9437654adaa005754109b4f2bf366e63f9cc00d5da8e14bf4 +size 43216 diff --git a/parse/train/rJeU_1SFvr/images/d9798381816ebb13030f282630c2560b31a3f074b0b634f6a5b39ac9d25df4d5.jpg b/parse/train/rJeU_1SFvr/images/d9798381816ebb13030f282630c2560b31a3f074b0b634f6a5b39ac9d25df4d5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b7eb2133672ed1a99506e85c4bd4610fc333a61a --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/d9798381816ebb13030f282630c2560b31a3f074b0b634f6a5b39ac9d25df4d5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a95375719573fbe85052b1a34ff21c3bc6c362984541c24850d405fdc2bef34 +size 5138 diff --git a/parse/train/rJeU_1SFvr/images/da1f330a00f9fc880d248896003a11028638743649f1581001989eb4a8c5c081.jpg b/parse/train/rJeU_1SFvr/images/da1f330a00f9fc880d248896003a11028638743649f1581001989eb4a8c5c081.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a305d6d38b64b423e31ad41eb9ea1e5d6b6e348f --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/da1f330a00f9fc880d248896003a11028638743649f1581001989eb4a8c5c081.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9107c87a813aa2e37b591c8d7bc4537494b194fd7e5af21d6c1d2343562af9d6 +size 108941 diff --git a/parse/train/rJeU_1SFvr/images/db5b604b7ec94cc6f59305cd5b5265121dd0c73f8e9d8c2c1896d27ffa48cca5.jpg b/parse/train/rJeU_1SFvr/images/db5b604b7ec94cc6f59305cd5b5265121dd0c73f8e9d8c2c1896d27ffa48cca5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9fd48b71273075ce04c8f5cb71ea1e93bf5b75ac --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/db5b604b7ec94cc6f59305cd5b5265121dd0c73f8e9d8c2c1896d27ffa48cca5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48176904f06362e184d9be8c8de67c4a349688db3d08a8df885bbc0b5415cc69 +size 10567 diff --git a/parse/train/rJeU_1SFvr/images/ddd060faa830066b423a9dba1bf2398d1116d935be8c7b4059ae1347eff153f6.jpg b/parse/train/rJeU_1SFvr/images/ddd060faa830066b423a9dba1bf2398d1116d935be8c7b4059ae1347eff153f6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..db056e9eec070d5b45c3b728e0c1a725f026e965 --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/ddd060faa830066b423a9dba1bf2398d1116d935be8c7b4059ae1347eff153f6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f49d18918bc05158e0bc711fdc820b26f4c41efcdca511037b65030d94794763 +size 16412 diff --git a/parse/train/rJeU_1SFvr/images/e0d8ff335b0f8f2887e74bbcf6734a13504dff62a18761803152f89d2faa4905.jpg b/parse/train/rJeU_1SFvr/images/e0d8ff335b0f8f2887e74bbcf6734a13504dff62a18761803152f89d2faa4905.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3236686325bb04670e99e03e7d97baeaa81c142c --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/e0d8ff335b0f8f2887e74bbcf6734a13504dff62a18761803152f89d2faa4905.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc82e5ad22e1acdf50dd7e595fd48e0c622aa2e9ab852da7e52508cdda54a97d +size 5075 diff --git a/parse/train/rJeU_1SFvr/images/e90cbb7d2f2f1acf6e5335ac6e4d56ab6f2452c87406e52e43ed256b920d562c.jpg b/parse/train/rJeU_1SFvr/images/e90cbb7d2f2f1acf6e5335ac6e4d56ab6f2452c87406e52e43ed256b920d562c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e7a88e0d02c22d393347eb462b2a08ed4818d537 --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/e90cbb7d2f2f1acf6e5335ac6e4d56ab6f2452c87406e52e43ed256b920d562c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05532f24e2e5c50114261e232296dbf11df8190d76274b88cb8149895451d679 +size 1742 diff --git a/parse/train/rJeU_1SFvr/images/eb0fbf8ff34caaf9e0785a7d90c0fe6e5c83db3aa8175fa714064e095a8226bd.jpg b/parse/train/rJeU_1SFvr/images/eb0fbf8ff34caaf9e0785a7d90c0fe6e5c83db3aa8175fa714064e095a8226bd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f104862a2d107abdbce43244552f3cbb4b3e5fab --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/eb0fbf8ff34caaf9e0785a7d90c0fe6e5c83db3aa8175fa714064e095a8226bd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ec14d8fb35414c38f86eca402d505872d8d7e696da559e4a072206d60ecc575 +size 14467 diff --git a/parse/train/rJeU_1SFvr/images/ebe3d36a3729558f24b9cb6f44eeb628b0b67246301244d5f6ca76a9dfff6414.jpg b/parse/train/rJeU_1SFvr/images/ebe3d36a3729558f24b9cb6f44eeb628b0b67246301244d5f6ca76a9dfff6414.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f13acfb7bda9b2d01908233ab808e017b949de48 --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/ebe3d36a3729558f24b9cb6f44eeb628b0b67246301244d5f6ca76a9dfff6414.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a7c040c6cde2aaafb2588611c0f2bb641c0032b84584b6f71cf4e10336cadf8 +size 7868 diff --git a/parse/train/rJeU_1SFvr/images/f506e926681df9be3127dca9453aa7f63c40e5f7a47543976a043e5dd36fcbad.jpg b/parse/train/rJeU_1SFvr/images/f506e926681df9be3127dca9453aa7f63c40e5f7a47543976a043e5dd36fcbad.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7de4c29a13d5f7d1b9c1048386453559b82d49ff --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/f506e926681df9be3127dca9453aa7f63c40e5f7a47543976a043e5dd36fcbad.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e34b150c0e74912cad16ec958331028c15f275c167e91396994f016a1c67a28 +size 6129 diff --git a/parse/train/rJeU_1SFvr/images/f82a74d96af732845e2e2f6d32024d52311fa45b640f03a70427ce193a4974a0.jpg b/parse/train/rJeU_1SFvr/images/f82a74d96af732845e2e2f6d32024d52311fa45b640f03a70427ce193a4974a0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9366d86fb03441e97ce02580d2a2e676394284bd --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/f82a74d96af732845e2e2f6d32024d52311fa45b640f03a70427ce193a4974a0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba89702a28aa92b9e3d6f268d55d208953e927c12bd430db3b330d72963950be +size 27396 diff --git a/parse/train/rJeU_1SFvr/images/fe2012b5a63efe20a298e3446b3edb39108a3712d4a798b9d3788fd8fd48eb92.jpg b/parse/train/rJeU_1SFvr/images/fe2012b5a63efe20a298e3446b3edb39108a3712d4a798b9d3788fd8fd48eb92.jpg new file mode 100644 index 0000000000000000000000000000000000000000..74338b62f1d4b574797ceb37959ff62a8779f7f3 --- /dev/null +++ b/parse/train/rJeU_1SFvr/images/fe2012b5a63efe20a298e3446b3edb39108a3712d4a798b9d3788fd8fd48eb92.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cef5152f6bfa29bcf70c87099f108cad752d68455975d0bb57197369794cb0da +size 2252 diff --git a/parse/train/ry018WZAZ/images/0a707234286e4fa7b089f8b4c7c3177a7d1351b3d939d07db4e105e155f99130.jpg b/parse/train/ry018WZAZ/images/0a707234286e4fa7b089f8b4c7c3177a7d1351b3d939d07db4e105e155f99130.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e1da27c4b68fb1097bde5b9224271a699549d5ad --- /dev/null +++ b/parse/train/ry018WZAZ/images/0a707234286e4fa7b089f8b4c7c3177a7d1351b3d939d07db4e105e155f99130.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e50a6c1ccff65a1016d14bfbb1a8d411e50790aa2bddc1495a9685400d803bd +size 16010 diff --git a/parse/train/ry018WZAZ/images/0be50d5d535dd2124ab7c636e57ccbcd9e8a7eedfc3c78a642c7cacbc9385af5.jpg b/parse/train/ry018WZAZ/images/0be50d5d535dd2124ab7c636e57ccbcd9e8a7eedfc3c78a642c7cacbc9385af5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b5f2bbf9d839b9bcd66c716a31d6764812e5a2e2 --- /dev/null +++ b/parse/train/ry018WZAZ/images/0be50d5d535dd2124ab7c636e57ccbcd9e8a7eedfc3c78a642c7cacbc9385af5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cce59c8212e428f22bbc654473bea100d443155651651b037916ee97d004bc3b +size 8547 diff --git a/parse/train/ry018WZAZ/images/1af3752b9ddc222e9b22bcb8fd3ad79aaf32ea2de65e6b590c98ff09b2bc6579.jpg b/parse/train/ry018WZAZ/images/1af3752b9ddc222e9b22bcb8fd3ad79aaf32ea2de65e6b590c98ff09b2bc6579.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d2e8e0aab50645574474e76b5458267f6fd285ac --- /dev/null +++ b/parse/train/ry018WZAZ/images/1af3752b9ddc222e9b22bcb8fd3ad79aaf32ea2de65e6b590c98ff09b2bc6579.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf6db5b06e8429bf1e58d7005b5f0a6777c6f40a545fd82bf8326ffc4d31b550 +size 17560 diff --git a/parse/train/ry018WZAZ/images/606fef7bb410bbc84dec1a83f317152c2ada3e09ac49a78586705bf87677b93d.jpg b/parse/train/ry018WZAZ/images/606fef7bb410bbc84dec1a83f317152c2ada3e09ac49a78586705bf87677b93d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0447d591db7c10dc81c8a2552b4c6db399072b8c --- /dev/null +++ b/parse/train/ry018WZAZ/images/606fef7bb410bbc84dec1a83f317152c2ada3e09ac49a78586705bf87677b93d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76e363f4aba288d1c0140f4c6bb640d4c449017e02fa3e9baa7418af994843c0 +size 3945 diff --git a/parse/train/ry018WZAZ/images/79384c61fb684102de8fbd4b8cb7754d303dfa07341da1385c34722b72ebfe43.jpg b/parse/train/ry018WZAZ/images/79384c61fb684102de8fbd4b8cb7754d303dfa07341da1385c34722b72ebfe43.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f301f9d2759f0c2d48e361725e4d278374ae4b2b --- /dev/null +++ b/parse/train/ry018WZAZ/images/79384c61fb684102de8fbd4b8cb7754d303dfa07341da1385c34722b72ebfe43.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caab095ce06da91eb28f6343e612b4b4420e62b1ddb3f5695b8c42eff41907d6 +size 47902 diff --git a/parse/train/ry018WZAZ/images/8ca4850f90b202e648ec472c7434a1b568eb6ca2bc9a11a9eb93608b30dcde59.jpg b/parse/train/ry018WZAZ/images/8ca4850f90b202e648ec472c7434a1b568eb6ca2bc9a11a9eb93608b30dcde59.jpg new file mode 100644 index 0000000000000000000000000000000000000000..34be1b6b9c7dd8983b70a0a92c63e2ac4d35f670 --- /dev/null +++ b/parse/train/ry018WZAZ/images/8ca4850f90b202e648ec472c7434a1b568eb6ca2bc9a11a9eb93608b30dcde59.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cfff3d260ac79d0119a6cc1360a3b0f94dd92d6e03e17e692f7217ca6523a98 +size 7430 diff --git a/parse/train/ry018WZAZ/images/9b31b66881dbe1569b7640f6a8efec1cd35a1c8e10d5ddeb75d30212d3e5ebab.jpg b/parse/train/ry018WZAZ/images/9b31b66881dbe1569b7640f6a8efec1cd35a1c8e10d5ddeb75d30212d3e5ebab.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ee59f3bfe0e29a99dbffdca96948957e64bc36c5 --- /dev/null +++ b/parse/train/ry018WZAZ/images/9b31b66881dbe1569b7640f6a8efec1cd35a1c8e10d5ddeb75d30212d3e5ebab.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00f969b81fee0895797e175e4c22c76b5698dad471ad1d7a08e3d26b7d429b78 +size 17164 diff --git a/parse/train/ry018WZAZ/images/d6d9baf18d15c02107109169ae934dcb7fc2ffe6f5cf38aaaadba38e5ebd6e3b.jpg b/parse/train/ry018WZAZ/images/d6d9baf18d15c02107109169ae934dcb7fc2ffe6f5cf38aaaadba38e5ebd6e3b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9d3c9e147e51c0786bb512737970c3844d6afa57 --- /dev/null +++ b/parse/train/ry018WZAZ/images/d6d9baf18d15c02107109169ae934dcb7fc2ffe6f5cf38aaaadba38e5ebd6e3b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bde9aa4730d3b7a4b5987d62390ed5d6f6373804489dfe51dd001a648d5a655 +size 48944 diff --git a/parse/train/rytNfI1AZ/images/19260da4ca861c0123d4d8c2adc8da9bce332782620fc05a45b5a73580e63cb4.jpg b/parse/train/rytNfI1AZ/images/19260da4ca861c0123d4d8c2adc8da9bce332782620fc05a45b5a73580e63cb4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6fe5e189ec34411b94420df03df9ff3cf05c8d65 --- /dev/null +++ b/parse/train/rytNfI1AZ/images/19260da4ca861c0123d4d8c2adc8da9bce332782620fc05a45b5a73580e63cb4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4af95fc6b41442bbd150e3ac29da40284f9adcf839238fb054b3256c7a46e171 +size 79756 diff --git a/parse/train/rytNfI1AZ/images/5dba0fd902c3d318237a600720af04e0c00cc2ea8b0777d8dd1829f923af4063.jpg b/parse/train/rytNfI1AZ/images/5dba0fd902c3d318237a600720af04e0c00cc2ea8b0777d8dd1829f923af4063.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c16e67785943cb0c91b2abc43e11e7170f650bfa --- /dev/null +++ b/parse/train/rytNfI1AZ/images/5dba0fd902c3d318237a600720af04e0c00cc2ea8b0777d8dd1829f923af4063.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b072202d001bc0de089278df227230e79f98382a3161d358a5a46831c0487b07 +size 120259 diff --git a/parse/train/rytNfI1AZ/images/62bf48c70a0eda202fa8a69cbde7818c86b7a87e89762ad9e7f4361828e4c95c.jpg b/parse/train/rytNfI1AZ/images/62bf48c70a0eda202fa8a69cbde7818c86b7a87e89762ad9e7f4361828e4c95c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..674e8f5f476d0ae2cdd4ee4e931c94f5e71a5a80 --- /dev/null +++ b/parse/train/rytNfI1AZ/images/62bf48c70a0eda202fa8a69cbde7818c86b7a87e89762ad9e7f4361828e4c95c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4ecec2ff69c1c4750f9d597202085cd3fc4a6f309c747cba17d57442803a5b3 +size 65288 diff --git a/parse/train/rytNfI1AZ/images/6e19054cd24d189600c3a28759b582264d73edc8d1c8354d2335c02337fc87b1.jpg b/parse/train/rytNfI1AZ/images/6e19054cd24d189600c3a28759b582264d73edc8d1c8354d2335c02337fc87b1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9beeb39ffb81850f61c26fb1fe2a4449583111f0 --- /dev/null +++ b/parse/train/rytNfI1AZ/images/6e19054cd24d189600c3a28759b582264d73edc8d1c8354d2335c02337fc87b1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e03a39a17e1e0d96acdc47211b6d7ce21b062e1cd5f229b6a19f95e219fc1996 +size 51024 diff --git a/parse/train/rytNfI1AZ/images/b723f8e14a89c7ce5a6689d2cb274dd7fdcfa8fe0bcfdac414136637bfdd6603.jpg b/parse/train/rytNfI1AZ/images/b723f8e14a89c7ce5a6689d2cb274dd7fdcfa8fe0bcfdac414136637bfdd6603.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b56f0577b78e30d7fa30fbbc7ba1ba993d042e4e --- /dev/null +++ b/parse/train/rytNfI1AZ/images/b723f8e14a89c7ce5a6689d2cb274dd7fdcfa8fe0bcfdac414136637bfdd6603.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94de8e54a2cff2bdde69eae0b77238be05884081b83ef030a0cca27b0739ec49 +size 76335 diff --git a/parse/train/rytNfI1AZ/images/bb1abae6420d27a6284345f352635c722dd8db0ffe8c29eeb4701a96680a2d3a.jpg b/parse/train/rytNfI1AZ/images/bb1abae6420d27a6284345f352635c722dd8db0ffe8c29eeb4701a96680a2d3a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0719277415306c28cfd894ff416c8d0d359642bb --- /dev/null +++ b/parse/train/rytNfI1AZ/images/bb1abae6420d27a6284345f352635c722dd8db0ffe8c29eeb4701a96680a2d3a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a37c4f888501d88edbd9145989663f84929882d8979e3bd798c041f498999c6d +size 21966 diff --git a/parse/train/rytNfI1AZ/images/c891d7f9d08dac5cf3490ac35606e1d897ad051c93def87b96b2bd0a93535b29.jpg b/parse/train/rytNfI1AZ/images/c891d7f9d08dac5cf3490ac35606e1d897ad051c93def87b96b2bd0a93535b29.jpg new file mode 100644 index 0000000000000000000000000000000000000000..331f558dd826b158ca0a40fb47a3e9145f920692 --- /dev/null +++ b/parse/train/rytNfI1AZ/images/c891d7f9d08dac5cf3490ac35606e1d897ad051c93def87b96b2bd0a93535b29.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64439873f0d95d9b4a5d5c0ea65b6b994f4cd6d44d6eba4713707ba0facbf6ef +size 43694 diff --git a/parse/train/rytNfI1AZ/images/c9d030481e4f7cd244bea6eb681645c4916be20d1c6e0ff49179c631af3caf98.jpg b/parse/train/rytNfI1AZ/images/c9d030481e4f7cd244bea6eb681645c4916be20d1c6e0ff49179c631af3caf98.jpg new file mode 100644 index 0000000000000000000000000000000000000000..434dd77a6d9a2006d84aeeacfdc2b38dfe0cb27c --- /dev/null +++ b/parse/train/rytNfI1AZ/images/c9d030481e4f7cd244bea6eb681645c4916be20d1c6e0ff49179c631af3caf98.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c14882479c4beb8fd0933f336f24da8433eb5c4702b7cc10d0fec358ea66f80 +size 81430 diff --git a/parse/train/rytNfI1AZ/images/ce853935ff96b59a6a7334fffbed3f4759e555d99cf46f14a4ea059d7ea460b3.jpg b/parse/train/rytNfI1AZ/images/ce853935ff96b59a6a7334fffbed3f4759e555d99cf46f14a4ea059d7ea460b3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0c4c068be48880cdc8135a22a73f3bd6ad393240 --- /dev/null +++ b/parse/train/rytNfI1AZ/images/ce853935ff96b59a6a7334fffbed3f4759e555d99cf46f14a4ea059d7ea460b3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2314d498e04fe575c20dc098c0d4b83b8333ed83de469e16b09532d787f9fca9 +size 100065 diff --git a/parse/train/rytNfI1AZ/images/d43488e24936c5a98f18148867e8d5a1b851a5b61557375711238a4aa4b29357.jpg b/parse/train/rytNfI1AZ/images/d43488e24936c5a98f18148867e8d5a1b851a5b61557375711238a4aa4b29357.jpg new file mode 100644 index 0000000000000000000000000000000000000000..17128472501a37ea74f8eabbf927e8eac7f3acab --- /dev/null +++ b/parse/train/rytNfI1AZ/images/d43488e24936c5a98f18148867e8d5a1b851a5b61557375711238a4aa4b29357.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd9c7ffc5d26260667292af19e1b2c2dc06db2e6757020eae68391948c336361 +size 5955 diff --git a/parse/train/rytNfI1AZ/images/eee6d82f5769726e1b36ccac1e60a5f38555b9533d73521109a4558e4b440009.jpg b/parse/train/rytNfI1AZ/images/eee6d82f5769726e1b36ccac1e60a5f38555b9533d73521109a4558e4b440009.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3b5bebbfa4781d13b463413899235368ce13ce41 --- /dev/null +++ b/parse/train/rytNfI1AZ/images/eee6d82f5769726e1b36ccac1e60a5f38555b9533d73521109a4558e4b440009.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b23d7e6892d0c6c533eee8c5c3f4ff2c3b13d07680009fc533be122bcec2b73 +size 22294 diff --git a/parse/train/rytNfI1AZ/images/f2a3a0e4cb4352814e9e00418fb6426436a402d78a56304f2db81e479cb898b4.jpg b/parse/train/rytNfI1AZ/images/f2a3a0e4cb4352814e9e00418fb6426436a402d78a56304f2db81e479cb898b4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d329140af844181de804932c0e1ce3d8525bf82c --- /dev/null +++ b/parse/train/rytNfI1AZ/images/f2a3a0e4cb4352814e9e00418fb6426436a402d78a56304f2db81e479cb898b4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ca33f6869c413e484bd9044c7b48778b8868c71a9d3d45c8e5e608832f9b459 +size 16684 diff --git a/parse/train/te7PVH1sPxJ/images/0811c3799e43dfda077761083b792341e7ec861165822040a8e9163617769b54.jpg b/parse/train/te7PVH1sPxJ/images/0811c3799e43dfda077761083b792341e7ec861165822040a8e9163617769b54.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4fc3a9b1e16d55ba6f3497624afb308f12bce3a6 --- /dev/null +++ b/parse/train/te7PVH1sPxJ/images/0811c3799e43dfda077761083b792341e7ec861165822040a8e9163617769b54.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4687dcb414d9e1fa98e8162f24abfbbb86a2f898eac090cdd72ee5ea3dcc4350 +size 16277 diff --git a/parse/train/te7PVH1sPxJ/images/0dfb41d970e215c75d537f6d605f882127c8907d5ea25d01c69d9b93d2a0cf5f.jpg b/parse/train/te7PVH1sPxJ/images/0dfb41d970e215c75d537f6d605f882127c8907d5ea25d01c69d9b93d2a0cf5f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..efaf3fcef47c75cd1f83300ae0dc35334f475541 --- /dev/null +++ b/parse/train/te7PVH1sPxJ/images/0dfb41d970e215c75d537f6d605f882127c8907d5ea25d01c69d9b93d2a0cf5f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2edd8cf067e6ff4a3ab857b7bd6fbb303b23200082c26d59fb9638e89d0b6dbb +size 12630 diff --git a/parse/train/te7PVH1sPxJ/images/15a901b8d2626cb3b44ce09247c743b8ed5ae593bc8c32f679ac776b76bf79b3.jpg b/parse/train/te7PVH1sPxJ/images/15a901b8d2626cb3b44ce09247c743b8ed5ae593bc8c32f679ac776b76bf79b3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..41f2091650bde499eea7b63287d90da373ac46c9 --- /dev/null +++ b/parse/train/te7PVH1sPxJ/images/15a901b8d2626cb3b44ce09247c743b8ed5ae593bc8c32f679ac776b76bf79b3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68285d54b5e108fb2cc3f30c3857accca0a5ff911fddc368dd36c7868c7127f3 +size 19297 diff --git a/parse/train/te7PVH1sPxJ/images/233f9f36356994c79db303502ec55adc07f12f9e144ce45f4d0dd381ff299724.jpg b/parse/train/te7PVH1sPxJ/images/233f9f36356994c79db303502ec55adc07f12f9e144ce45f4d0dd381ff299724.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a699837279dfacfbf61b2a6f0488955a0847bd5a --- /dev/null +++ b/parse/train/te7PVH1sPxJ/images/233f9f36356994c79db303502ec55adc07f12f9e144ce45f4d0dd381ff299724.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dc2bfc38206a24cfb04659eacaccacf68ad8c08a2eb4e9efb04211a08c66cdc +size 58936 diff --git a/parse/train/te7PVH1sPxJ/images/33a437e328e3e761c9d8cd9c08bc654600d07ba8d88130ed54777e822f8f0ea3.jpg b/parse/train/te7PVH1sPxJ/images/33a437e328e3e761c9d8cd9c08bc654600d07ba8d88130ed54777e822f8f0ea3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bff141638c98eda700ce01b7cb23d87ec27b8752 --- /dev/null +++ b/parse/train/te7PVH1sPxJ/images/33a437e328e3e761c9d8cd9c08bc654600d07ba8d88130ed54777e822f8f0ea3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33192dfbd8d52d96ced304d2735332378868b60da9fdf98d05e7395d3db797ab +size 53785 diff --git a/parse/train/te7PVH1sPxJ/images/35fe79cc83d46563b9cf36c19b133d2b3e4ead04925584d342dc8ebdd8dbacd8.jpg b/parse/train/te7PVH1sPxJ/images/35fe79cc83d46563b9cf36c19b133d2b3e4ead04925584d342dc8ebdd8dbacd8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eb85ded4a0cd742dbbbf4c155aca82339edfd59f --- /dev/null +++ b/parse/train/te7PVH1sPxJ/images/35fe79cc83d46563b9cf36c19b133d2b3e4ead04925584d342dc8ebdd8dbacd8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a2dc104e65cfdd639869a3998fcc6719f30ac440705757148a09b2c5cd74218 +size 26033 diff --git a/parse/train/te7PVH1sPxJ/images/5854dfcda542f09af3f667456a04618a0ca296f2d10e8b9d1eeb7de4facfc36d.jpg b/parse/train/te7PVH1sPxJ/images/5854dfcda542f09af3f667456a04618a0ca296f2d10e8b9d1eeb7de4facfc36d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b6edf1fb0d3633a402713d7ac2d4712924fa567 --- /dev/null +++ b/parse/train/te7PVH1sPxJ/images/5854dfcda542f09af3f667456a04618a0ca296f2d10e8b9d1eeb7de4facfc36d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d41bd62b16191cb458426e5b759f8f9f0739e2bc56586f93c163e45b596e88f5 +size 6183 diff --git a/parse/train/te7PVH1sPxJ/images/6a3f445bf0e661ec3615fff1cb0b5c96c7910719721d8fb66147440bc84f1301.jpg b/parse/train/te7PVH1sPxJ/images/6a3f445bf0e661ec3615fff1cb0b5c96c7910719721d8fb66147440bc84f1301.jpg new file mode 100644 index 0000000000000000000000000000000000000000..18b57011b7c981eed2781fab2ce6db1b06b29796 --- /dev/null +++ b/parse/train/te7PVH1sPxJ/images/6a3f445bf0e661ec3615fff1cb0b5c96c7910719721d8fb66147440bc84f1301.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8882405626951de2c4a023049db0da08bf6176f95b957cfb198bfa0b5d8fbaa +size 14235 diff --git a/parse/train/te7PVH1sPxJ/images/6b3aadb0afbde1f9435b3e35674b1e64fe7450dbdfd8cf4df5686f55d57765c2.jpg b/parse/train/te7PVH1sPxJ/images/6b3aadb0afbde1f9435b3e35674b1e64fe7450dbdfd8cf4df5686f55d57765c2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a673ffb6074feef46297d1bd8b912165618e5c56 --- /dev/null +++ b/parse/train/te7PVH1sPxJ/images/6b3aadb0afbde1f9435b3e35674b1e64fe7450dbdfd8cf4df5686f55d57765c2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9724c903feddc0ec514480ca90a106a102010efdae60677dfdaa1774381e1da2 +size 31615 diff --git a/parse/train/te7PVH1sPxJ/images/8289309b3011ac2bacbb10c47c49869fca2bb67607e90ef4572a23a8ca3b4782.jpg b/parse/train/te7PVH1sPxJ/images/8289309b3011ac2bacbb10c47c49869fca2bb67607e90ef4572a23a8ca3b4782.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b25f7b9a684b206e95c4dc074b79a3cbcf702c08 --- /dev/null +++ b/parse/train/te7PVH1sPxJ/images/8289309b3011ac2bacbb10c47c49869fca2bb67607e90ef4572a23a8ca3b4782.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7db5ba9e5d0b1524c0765327d406d00d3eb968f2cabf86aa413f97beb28df2bd +size 25778 diff --git a/parse/train/te7PVH1sPxJ/images/88f501b26e8a23835a55bcdfca780564e9c1bf8c0b540c4e2ac5b9d64f1ee171.jpg b/parse/train/te7PVH1sPxJ/images/88f501b26e8a23835a55bcdfca780564e9c1bf8c0b540c4e2ac5b9d64f1ee171.jpg new file mode 100644 index 0000000000000000000000000000000000000000..74233c3fdd72f46a142fa62de1e1ae30e60fe513 --- /dev/null +++ b/parse/train/te7PVH1sPxJ/images/88f501b26e8a23835a55bcdfca780564e9c1bf8c0b540c4e2ac5b9d64f1ee171.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0163f04ec3d3b595987e1386d63dcefdbb618611c24d911cf55a6a7e7dd4fad8 +size 66481 diff --git a/parse/train/te7PVH1sPxJ/images/b155802ebbc1bef6013a130931b9c0b765dfffdb4e466d10266c92a3f54df9ef.jpg b/parse/train/te7PVH1sPxJ/images/b155802ebbc1bef6013a130931b9c0b765dfffdb4e466d10266c92a3f54df9ef.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0bc5291a9c5e0b3112e3a11509099f447cc21dc5 --- /dev/null +++ b/parse/train/te7PVH1sPxJ/images/b155802ebbc1bef6013a130931b9c0b765dfffdb4e466d10266c92a3f54df9ef.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3337787623b80374897c9b97ed460280704bb5d26f577a1bd43ad9e3338ccea6 +size 10507 diff --git a/parse/train/te7PVH1sPxJ/images/d52303e3547626027b9485d074dc46948c6470136d5f8bab831d8e363836d120.jpg b/parse/train/te7PVH1sPxJ/images/d52303e3547626027b9485d074dc46948c6470136d5f8bab831d8e363836d120.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fef387f87916ff4c26b2c48c698a96d6ade6c881 --- /dev/null +++ b/parse/train/te7PVH1sPxJ/images/d52303e3547626027b9485d074dc46948c6470136d5f8bab831d8e363836d120.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a19ea76e128a679d4ea787aa0e584ae71ba56c29a2db34969cbc9d93ff35bdde +size 4014 diff --git a/parse/train/te7PVH1sPxJ/images/eab06468babad9c3abc6a25e952f8fb5708ee89aaf806ca85e1bf1d61d85eb06.jpg b/parse/train/te7PVH1sPxJ/images/eab06468babad9c3abc6a25e952f8fb5708ee89aaf806ca85e1bf1d61d85eb06.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a64eb01d856b782de7922355ba3eb8a8355fef2a --- /dev/null +++ b/parse/train/te7PVH1sPxJ/images/eab06468babad9c3abc6a25e952f8fb5708ee89aaf806ca85e1bf1d61d85eb06.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcf25e8acbafad09c501f6e5c01c74ad9ad72324be340932c066d2028e86bac9 +size 6775 diff --git a/parse/train/te7PVH1sPxJ/images/ec9b5c91ea0eac122ad09f689b46819e0ed878a08d01df41466be22a037d2b79.jpg b/parse/train/te7PVH1sPxJ/images/ec9b5c91ea0eac122ad09f689b46819e0ed878a08d01df41466be22a037d2b79.jpg new file mode 100644 index 0000000000000000000000000000000000000000..69fcfcdd2ddd53c6c3cc64ce95158f0a9a269e81 --- /dev/null +++ b/parse/train/te7PVH1sPxJ/images/ec9b5c91ea0eac122ad09f689b46819e0ed878a08d01df41466be22a037d2b79.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a8a59e4d57dac1c3f5661c23c02aefde8063e3c1f116ee5ea8477f0b486760d +size 12809 diff --git a/parse/train/te7PVH1sPxJ/images/f1482f7991f0a9da76129d4eaf4306d87dbc1457ac763c3b4536834c3004df1f.jpg b/parse/train/te7PVH1sPxJ/images/f1482f7991f0a9da76129d4eaf4306d87dbc1457ac763c3b4536834c3004df1f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..22579a839292184019d6e632ee0c3d0919a4bbb8 --- /dev/null +++ b/parse/train/te7PVH1sPxJ/images/f1482f7991f0a9da76129d4eaf4306d87dbc1457ac763c3b4536834c3004df1f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b0be5333161b1baf3b0048fbaa7d64dde1272f125c249d62f313a6b5f067a0e +size 8561 diff --git a/parse/train/te7PVH1sPxJ/images/f55a1bd5ecbc668b7ba6403df2db85f32a5a1c61f81dff72e4f797f5ce4f4d9e.jpg b/parse/train/te7PVH1sPxJ/images/f55a1bd5ecbc668b7ba6403df2db85f32a5a1c61f81dff72e4f797f5ce4f4d9e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f2d0eb9cb00067b8bd3355ba5896fd1d3aabe60 --- /dev/null +++ b/parse/train/te7PVH1sPxJ/images/f55a1bd5ecbc668b7ba6403df2db85f32a5a1c61f81dff72e4f797f5ce4f4d9e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89410800213d868ba107362b23c8586557f9d9e4c3e7cd27e8ea517f3cc1cb23 +size 53482 diff --git a/parse/train/ucEXZQncukK/ucEXZQncukK.md b/parse/train/ucEXZQncukK/ucEXZQncukK.md new file mode 100644 index 0000000000000000000000000000000000000000..8d305d65a643b77fc7895a02153f4242a20e4fb9 --- /dev/null +++ b/parse/train/ucEXZQncukK/ucEXZQncukK.md @@ -0,0 +1,507 @@ +# BAYESIAN ONLINE META-LEARNING + +Anonymous authors Paper under double-blind review + +# ABSTRACT + +Neural networks are known to suffer from catastrophic forgetting when trained on sequential datasets. While there have been numerous attempts to solve this problem for large-scale supervised classification, little has been done to overcome catastrophic forgetting for few-shot classification problems. Few-shot metalearning algorithms often require all few-shot tasks to be readily available in a batch for training. The popular gradient-based model-agnostic meta-learning algorithm (MAML) is a typical algorithm that suffers from these limitations. This work introduces a Bayesian online meta-learning framework to tackle the catastrophic forgetting and the sequential few-shot tasks problems. Our framework incorporates MAML into a Bayesian online learning algorithm with Laplace approximation or variational inference. This framework enables few-shot classification on a range of sequentially arriving datasets with a single meta-learned model and training on sequentially arriving few-shot tasks. The experimental evaluations demonstrate that our framework can effectively prevent catastrophic forgetting and is capable of online meta-learning in various few-shot classification settings. + +# 1 INTRODUCTION + +Image classification models and algorithms often require an enormous amount of labelled examples for training to achieve state-of-the-art performance. Labelled examples can be expensive and time-consuming to acquire. Human visual systems, on the other hand, are able to recognise new classes after being shown a few labelled examples. Few-shot classification (Miller et al., 2000; Li et al., 2004; 2006; Lake et al., 2011) tackles this issue by learning to adapt to unseen classes (known as novel classes) with very few labelled examples from each class. Recent works show that metalearning provides promising approaches to few-shot classification problems (Santoro et al., 2016; Finn et al., 2017; Li et al., 2017; Ravi & Larochelle, 2017). Meta-learning or learning-to-learn (Schmidhuber, 1987; Thrun & Pratt, 1998) takes the learning process a level deeper – instead of learning from the labelled examples in the training classes (known as base classes), meta-learning learns the example-learning process. The training process in meta-learning that utilises the base classes is called the meta-training stage, and the evaluation process that reports the few-shot performance on the novel classes is known as the meta-evaluation stage. + +Despite being a promising solution to few-shot classification problems, meta-learning methods suffer from several limitations: + +1. Unable to continually learn from sequential few-shot tasks: It is mandatory to have all base classes readily available for meta-training. Such meta-learning algorithms often require sampling a number of few-shot tasks in every iteration for optimisation. +2. Unable to retain few-shot classification ability on sequential datasets that have evident distributional shift: A meta-learned model is restricted to perform few-shot classification on a specific dataset, in the sense that the base and novel classes have to originate from the same dataset distribution. A meta-learned model loses its few-shot classification ability on previous datasets as new ones arrive subsequently for meta-training. + +We emphasise that the task mentioned in this paper refers to the few-shot task for meta-learning. This paper considers meta-learning a single model for few-shot classification in the sequential datasets and sequential few-shot tasks settings respectively. + +We introduce a Bayesian online meta-learning framework that can train a few-shot learning model under the sequential few-shot tasks setting and train a model that is applicable to a broader scope of few-shot classification datasets by overcoming catastrophic forgetting. We extend the Bayesian online learning (BOL) framework (Opper, 1998) to a Bayesian online meta-learning framework using the model-agnostic meta-learning (MAML) algorithm (Finn et al., 2017). MAML finds a good model parameter initialisation (called meta-parameters) that can quickly adapt to novel classes using very few labelled examples, while BOL provides a principled framework for finding the posterior of the model parameters. Our framework aims to combine both BOL and MAML to find the posterior of the meta-parameters. Our work builds on Ritter et al. (2018a) which combines the BOL framework and Laplace approximation with block-diagonal Kronecker-factored Fisher approximation, and Nguyen et al. (2018) which uses variational inference with BOL to overcome catastrophic forgetting in large-scale supervised classification. + +An important reason to implement Bayesian inference over non-Bayesian methods for an online setting is that BOL provides a grounded framework that suggests using the previous posterior as the prior recursively. Bayesian inference inherits an advantage for robust meta-learning (Yoon et al., 2018) to overcome training instability problems addressed by Antoniou et al. (2019). BOL implicitly keeps a memory on previous knowledge via the posterior, in contrast to recent online meta-learning methods that explicitly accumulate previous data in a task buffer (Finn et al., 2019; Zhuang et al., 2019). Explicitly keeping a memory on previous data often triggers an important question: how should the carried-forward data be processed in future task rounds, in order to accumulate knowledge? Finn et al. (2019) update the meta-parameters at each iteration using previous few-shot tasks in the task buffer. This defeats the purpose of online learning, which by definition means to update the parameters each round using only the new data encountered. Having to re-train on previous data to avoid forgetting also increases the training time as the data accumulate (Finn et al., 2019; He et al., 2019). Certainly one can clamp the amount of data at some maximal limit and sample from the buffer, but the final performance of such an algorithm would be dependent on the samples being informative and of good quality which may vary across different seed runs. In contrast to memorising the datasets, having an implicit memory via the posterior automatically deals with the question on how to process carried-forward data and allows a better carry forward in previous experiences. + +Below are the contributions we make in this paper: + +We develop the Bayesian online meta-learning (BOML) framework for sequential few-shot classification problems. Under this framework we introduce the algorithms Bayesian online meta-learning with Laplace approximation (BOMLA) and Bayesian online meta-learning with variational inference (BOMVI). We propose a simple approximation to the Fisher corresponding to the BOMLA algorithm that carries over the desirable block-diagonal Kronecker-factored structure from the Fisher approximation in the non-meta-learning setting. We demonstrate that BOML can overcome catastrophic forgetting in the sequential few-shot datasets setting with apparent distributional shift in the datasets. +• We demonstrate that BOML can continually learn to few-shot classify the novel classes in the sequential meta-training few-shot tasks setting. + +# 2 META-LEARNING + +Most meta-learning algorithms comprise an inner loop for example-learning and an outer loop that learns the example-learning process. Such algorithms often require sampling a meta-batch of tasks at each iteration, where a task is formed by sampling a subset of classes from the pool of base classes or novel classes during meta-training or meta-evaluation respectively. The $N$ -way $K$ -shot task, for instance, refers to sampling $N$ classes and using $K$ examples per class for few-shot quick adaptation. + +An offline meta-learning algorithm learns a few-shot classification model only for a specific dataset $\mathcal { D } _ { t + 1 }$ where all base classes of $\mathcal { D } _ { t + 1 }$ have to be readily available for meta-training. For notational convenience, we drop the $t + 1$ subscript in this section, as there is only one dataset involved in offline meta-learning. The dataset $\mathcal { D } _ { t + 1 }$ is divided into the set of base classes $\widetilde { \mathcal { D } }$ and novel classes $\widehat { \mathcal { D } }$ for meta-training and meta-evaluation respectively. Upon completing meta-training on the base class set $\widetilde { \mathcal { D } }$ , the goal of few-shot classification is to perform well on an unseen task ${ \widehat { \mathcal { D } } } ^ { * }$ sampled from the novel class set $\widehat { \mathcal { D } }$ after a quick adaptation on a small subset $\widehat { \mathcal { D } } ^ { * , S }$ (known as the support set) of $\widehat { \mathcal { D } } ^ { * }$ . The performance of this unseen task is evaluated on the query set $\widehat { \mathcal { D } } ^ { * , Q }$ , where $\hat { \mathcal { D } } ^ { * , Q } = \widehat { \mathcal { D } } ^ { * } \backslash \widehat { \mathcal { D } } ^ { * , S }$ . Since $\widehat { \mathcal { D } }$ is not accessible during meta-training, this support-query split is mimicked on the base class set $\widetilde { \mathcal { D } }$ for meta-training. + +Model-agnostic meta-learning We are interested in the well-known meta-learning algorithm MAML (Finn et al., 2017). Each updating step of MAML aims to improve the ability of the metaparameters to act as a good model initialisation for a quick adaptation on unseen tasks. Each iteration of the MAML algorithm samples $M$ tasks from the base class set $\widetilde { \mathcal { D } }$ and runs a few steps of stochastic gradient descent (SGD) for an inner loop task-specific learning. The number of tasks sampled per iteration is known as the meta-batch size. For task $m$ , the inner loop outputs the task-specific parameters $\tilde { \theta } ^ { m }$ from a $k$ -step SGD quick adaptation on the objective $\mathcal { L } ( \boldsymbol { \theta } , \widetilde { \mathcal { D } } ^ { m , S } )$ with the support set $\widetilde { \mathcal { D } } ^ { m , S }$ and initialised at $\theta$ : + +$$ +\tilde { \theta } ^ { m } = S G D _ { k } ( \mathcal { L } ( \theta , \widetilde { D } ^ { m , S } ) ) , +$$ + +where $m = 1 , \ldots , M$ . The outer loop gathers all task-specific adaptations to update the metaparameters $\theta$ using the loss $\mathcal { L } ( \tilde { \theta } ^ { m } , \widetilde { D } ^ { m , Q } )$ on the query set $\bar { \mathcal { D } } ^ { m , Q }$ . + +The overall MAML optimisation objective is + +$$ +\underset { \theta } { \arg \operatorname* { m i n } } \frac { 1 } { M } \sum _ { m = 1 } ^ { M } \mathcal { L } ( S G D _ { k } ( \mathcal { L } ( \theta , \widetilde { \mathcal { D } } ^ { m , S } ) ) , \widetilde { \mathcal { D } } ^ { m , Q } ) . +$$ + +Like most offline meta-learning algorithms, MAML requires all base classes to be readily available for tasks-sampling at each iteration. We aim to overcome this limitation by meta-learning a model that can few-shot classify unseen tasks from the novel classes, while the tasks from the base classes arrive sequentially for meta-training. MAML also assumes a stationary task distribution during meta-training and meta-evaluation. Under this assumption, a meta-learned model is only applicable to a specific dataset distribution. When the model encounters a sequence of datasets with apparent distributional shift, it loses the few-shot classification ability on previous datasets as new ones arrive for meta-training. Our work also aims to meta-learn a single model for few-shot classification on multiple datasets that arrive sequentially for meta-training. We achieve these two goals by incorporating MAML into the BOL framework to give the Bayesian online meta-learning (BOML) framework that finds the posterior of the meta-parameters. + +# 3 OVERVIEW OF OUR BAYESIAN ONLINE META-LEARNING APPROACH + +Our central contribution is to extend the benefits of meta-learning to the Bayesian online scenario, thereby training models that can generalise across tasks whilst dealing with parameter uncertainty in the setting of sequential tasks or sequential datasets. + +Sequential datasets setting In this setting, online meta-training occurs sequentially on the datasets $\mathcal { D } _ { 1 } , \ldots , \mathcal { D } _ { T }$ . Each dataset $\mathcal { D } _ { i }$ can be seen as a knowledge domain with an associated underlying task distribution $p ( \mathcal T _ { i } )$ . A newly-arrived $\mathcal { D } _ { t + 1 }$ is separated into the base class set $\widetilde { \mathcal { D } } _ { t + 1 }$ and novel class set $\widehat { \mathcal { D } } _ { t + 1 }$ for meta-training and meta-evaluation respectively, where the tasks in these two stages are drawn from the task distribution $p ( \mathcal T _ { t + 1 } )$ . + +Sequential tasks setting The sequential tasks setting only involves one dataset $\mathcal { D }$ with an associated underlying task distribution $p ( \mathcal { T } )$ , where $\mathcal { D }$ is separated into the base and novel class sets. In this setting, $\widetilde { \cal D } _ { 1 } , \ldots , \widetilde { \cal D } _ { t + 1 }$ denote the non-overlapping tasks formed from the base class set and they arrive sequentially for meta-training. These tasks $\widetilde { \mathcal { D } } _ { 1 } , \ldots , \widetilde { \mathcal { D } } _ { t + 1 }$ and the meta-evaluation tasks are drawn from the task distribution $p ( \tau )$ . + +Notationally, for both sequential tasks and sequential datasets settings, let $\mathcal { \widetilde { D } } _ { t + 1 } ^ { S }$ and $\widetilde { \mathcal { D } } _ { t + 1 } ^ { Q }$ denote the collection of support sets and query sets respectively from $\widetilde { \mathcal { D } } _ { t + 1 }$ , so that $\widetilde { D } _ { t + 1 } = \widetilde { D } _ { t + 1 } ^ { S } \cup \widetilde { D } _ { t + 1 } ^ { Q }$ . + +We are interested in a MAP estimate $\theta ^ { * } = \arg \operatorname* { m a x } _ { \theta } p ( \theta | \widetilde { D } _ { 1 : t + 1 } )$ . Using Bayes’ rule on the posterior gives the recursive formula + +$$ +\begin{array} { r l } & { p ( \theta | \widetilde { D } _ { 1 : t + 1 } ) \propto p ( \widetilde { D } _ { t + 1 } ^ { S } , \widetilde { D } _ { t + 1 } ^ { Q } | \theta ) p ( \theta | \widetilde { D } _ { 1 : t } ) } \\ & { \qquad = p ( \widetilde { D } _ { t + 1 } ^ { Q } | \theta , \widetilde { D } _ { t + 1 } ^ { S } ) p ( \widetilde { D } _ { t + 1 } ^ { S } | \theta ) p ( \theta | \widetilde { D } _ { 1 : t } ) } \\ & { \qquad = \bigg \{ \int p ( \widetilde { D } _ { t + 1 } ^ { Q } | \widetilde { \theta } ) p ( \widetilde { \theta } | \theta , \widetilde { D } _ { t + 1 } ^ { S } ) d \widetilde { \theta } \bigg \} p ( \widetilde { D } _ { t + 1 } ^ { S } | \theta ) p ( \theta | \widetilde { D } _ { 1 : t } ) } \end{array} +$$ + +where Eq. (3) follows from the assumption that each dataset is independent given $\theta$ . + +From the meta-learning perspective, the parameters $\tilde { \theta }$ introduced in Eq. (5) can be viewed as the task-specific parameters in MAML. There are various choices for the distribution $p ( \tilde { \theta } | \theta , \widetilde { D } _ { t + 1 } ^ { S } )$ in Eq. (5). In particular if we choose to set it as the deterministic function of taking several steps of SGD on loss $\mathcal { L }$ with the support set collection $\mathcal { \widetilde { D } } _ { t + 1 } ^ { S }$ and initialised at $\theta$ , we have + +$$ +p ( { \tilde { \theta } } | \theta , { \widetilde { \mathcal { D } } } _ { t + 1 } ^ { S } ) = \mathbb { 1 } \{ { \tilde { \theta } } = S G D _ { k } ( { \mathcal { L } } ( \theta , { \widetilde { \mathcal { D } } } _ { t + 1 } ^ { S } ) ) \} . +$$ + +and this recovers the MAML inner loop with SGD quick adaptation in Eq. (1). The recursion given by Eq. (5) forms the basis of our approach and the remainder of this paper explains how we implement this. In order to do so we give a mini tutorial in Appendix A on Bayesian online learning, Laplace approximation and variational continual learning. + +# 4 BAYESIAN ONLINE META-LEARNING IMPLEMENTATION + +This section demonstrates how we arrive at the algorithms Bayesian online meta-learning with Laplace approximation (BOMLA) and Bayesian online meta-learning with variational inference (BOMVI) by implementing Laplace approximation and variational continual learning respectively to the posterior of the BOML framework in Eq. (5). These algorithms from the grounded BOML framework are useful for online training on the sequential few-shot classification datasets or tasks. + +# 4.1 BAYESIAN ONLINE META-LEARNING WITH LAPLACE APPROXIMATION + +We discover that the Laplace approximation method provides a well-fitted meta-training framework for Bayesian online meta-learning in Eq. (5). Each updating step in the approximation procedure can be modified to correspond to the meta-parameters for few-shot classification, instead of the model parameters for large-scale supervised classification. + +Laplace approximation rationalises the use of a Gaussian approximate posterior by Taylor expanding the log-posterior around a mode up to the second order, as described in Appendix A.2. The second order term corresponds to the log-probability of a Gaussian distribution. The BOML framework in Section 3 with a Gaussian approximate posterior $q$ of mean and precision $\phi _ { t } = \{ \mu _ { t } , \Lambda _ { t } \}$ from the Laplace approximation gives a MAP estimate: + +$$ +\theta ^ { * } = \arg \operatorname* { m a x } _ { \theta } \Bigg \{ \log \int p ( \widetilde { \mathcal { D } } _ { t + 1 } ^ { Q } | \widetilde { \theta } ) p ( \widetilde { \theta } | \theta , \widetilde { \mathcal { D } } _ { t + 1 } ^ { S } ) d \widetilde { \theta } + \log p ( \widetilde { \mathcal { D } } _ { t + 1 } ^ { S } | \theta ) - \frac { 1 } { 2 } ( \theta - \mu _ { t } ) ^ { T } \Lambda _ { t } ( \theta - \mu _ { t } ) \Bigg \} . +$$ + +For an efficient optimisation, we use the deterministic $\tilde { \theta }$ in Eq. (6). The objective in Eq. (7) can be batched (for sequential tasks) or meta-batched (for sequential datasets). This leads to minimising the objective + +$$ +\mathsf { \Pi } _ { t + 1 } ^ { \mathsf { R O M L A } } ( \theta , \mu _ { t } , \Lambda _ { t } ) = - \frac { 1 } { M } \sum _ { m = 1 } ^ { M } \log p ( \widetilde { \mathcal { D } } _ { t + 1 } ^ { m , Q } | \widetilde { \theta } ^ { m } ) - \frac { 1 } { M } \sum _ { m = 1 } ^ { M } \log p ( \widetilde { \mathcal { D } } _ { t + 1 } ^ { m , S } | \theta ) + \frac { 1 } { 2 } ( \theta - \mu _ { t } ) ^ { T } \Lambda _ { t } ( \theta - \mu _ { t } ) , +$$ + +where $\tilde { \theta } ^ { m } = S G D _ { k } ( \mathcal { L } ( \theta , \widetilde { D } _ { t + 1 } ^ { m , S } ) )$ for $m = 1 , \ldots , M$ . In the sequential datasets setting $M$ denotes the number of tasks sampled per iteration, whereas in the sequential tasks setting denotes the number of batches per epoch. The first term of the objective in Eq. (8) corresponds to the MAML objective in Eq. (2) with a cross-entropy loss, the second term can be viewed as the pre-adaptation loss on the support set and the last term can be seen as a regulariser. + +# 4.2 HESSIAN APPROXIMATION + +We calculate a block-diagonal Kronecker-factored Hessian approximation in order to update the precision $\Lambda _ { t }$ , as explained in Appendix A.3. The Hessian approximations in both sequential datasets and sequential tasks settings are very similar, except that the sequential datasets setting averages over the meta-batch size and the sequential tasks setting averages over the number of batches. + +The Hessian matrix corresponding to the first term of the BOMLA objective in Eq. (8) is + +$$ +\widetilde { H } _ { t + 1 } ^ { i j } = \frac { 1 } { M } \sum _ { m = 1 } ^ { M } - \frac { \partial ^ { 2 } } { \partial \theta ^ { ( i ) } \partial \theta ^ { ( j ) } } \log p ( \widetilde { \mathcal { D } } _ { t + 1 } ^ { m , Q } | \widetilde { \theta } ^ { m } ) ) \Bigg | _ { \theta = \mu _ { t + 1 } } . +$$ + +It is worth noting that the BOMLA Hessian deviates from the original BOL Hessian in Appendix A.2. This requires deriving an adjusted approximation to the Hessian with some further assumptions. + +The BOL Hessian for a single data point can be approximated using the Fisher information matrix $F$ to ensure its positive semi-definiteness (Martens $\&$ Grosse, 2015): + +$$ +F = \mathbb { E } _ { x , y } \bigg [ \frac { d } { d \theta } \log p ( y | x , \theta ) \frac { d } { d \theta } \log p ( y | x , \theta ) ^ { T } \bigg ] . +$$ + +Each $( x , y )$ pair for the Fisher in BOMLA is associated to a task (or a batch) $m$ . The Fisher information matrix $\widetilde { F }$ corresponding to the BOMLA Hessian in Eq. (9) for a single data point is + +$$ +\widetilde { F } = \frac { 1 } { M } \sum _ { m = 1 } ^ { M } \mathbb { E } _ { x , y } \bigg [ \bigg ( \frac { \partial \widetilde { \theta } ^ { m } } { \partial \theta } \bigg ) \frac { d } { d \widetilde { \theta } ^ { m } } \log p ( y | x , \widetilde { \theta } ^ { m } ) \frac { d } { d \widetilde { \theta } ^ { m } } \log p ( y | x , \widetilde { \theta } ^ { m } ) ^ { T } \bigg ( \frac { \partial \widetilde { \theta } ^ { m } } { \partial \theta } \bigg ) ^ { T } \bigg ] . +$$ + +The additional Jacobian matrix $\frac { \partial \tilde { \theta } ^ { m } } { \partial \theta }$ breaks the Kronecker-factored structure described by Martens & Grosse (2015) for the original Fisher in Eq. (10). + +The results in Finn et al. (2017) show that the first step of the quick adaptation in $\tilde { \theta } ^ { m }$ contributes the largest change to the meta-evaluation objective, and the remaining adaptation steps give a relatively small change to the objective. It is reasonable to assume that the quick adaptation is a one-step SGD for Fisher approximation: + +$$ +\begin{array} { r } { \tilde { \theta } ^ { m } = \theta - \nabla _ { \theta } \mathcal { L } ( \theta , \widetilde { D } _ { t + 1 } ^ { m , S } ) . } \end{array} +$$ + +By imposing this assumption, the $( i , j )$ -th entry of the Jacobian term can be interpreted as + +$$ +\left( \frac { \partial \tilde { \theta } ^ { m } } { \partial \theta } \right) ^ { i j } = I ^ { i j } - \frac { \partial ^ { 2 } ( - \log p ( \widetilde { D } _ { t + 1 } ^ { m , S } | \theta ) ) } { \partial \theta ^ { ( i ) } \partial \theta ^ { ( j ) } } , +$$ + +where $I$ is the corresponding identity matrix and the objective $\mathcal { L }$ involved is the negative loglikelihood. The Hessian for a single data point in the second term of Eq. (13) can be approximated by $F$ in Eq. (10) via the usual block-diagonal Kronecker-factored approximation. Putting the Jacobian back into Eq. (11) and expanding the factors give terms that multiply two or more Kronecker products together. The detailed derivation of $\widetilde { F }$ is explained in Appendix A.3.1. We introduce the posterior regulariser $\lambda$ when updating the precision: $\Lambda _ { t + 1 } = \lambda { \widetilde { \cal H } } _ { t + 1 } + \Lambda _ { t }$ and the rationale for introducing $\lambda$ is explained in Appendix A.3.2. The pseudo-code of the BOMLA algorithm can be found in Appendix B.1. + +# 4.3 BAYESIAN ONLINE META-LEARNING WITH VARIATIONAL INFERENCE + +The variational continual learning (VCL) framework (Nguyen et al., 2018) is directly applicable to BOML. This section demonstrates how we arrive at the BOMVI algorithm by implementing VCL to the posterior of the BOML framework in Eq. (5). + +As described in Appendix A.4, VCL approximates the posterior by minimising the KL-divergence over some pre-determined approximate posterior family $\mathcal { Q }$ . Fitting the BOML posterior in Eq. (5) into the VCL framework gives the approximate posterior: + +$$ +q ( \theta | \phi _ { t + 1 } ) = \underset { q \in \mathcal { Q } } { \operatorname { a r g m i n } } D _ { \mathrm { K L } } \Bigg ( q ( \theta | \phi ) \bigg | \bigg | \bigg \{ \int p ( \widetilde { \mathcal { D } } _ { t + 1 } ^ { Q } | \widetilde { \theta } ) p ( \widetilde { \theta } | \theta , \widetilde { \mathcal { D } } _ { t + 1 } ^ { S } ) d \widetilde { \theta } \bigg \} p ( \widetilde { \mathcal { D } } _ { t + 1 } ^ { S } | \theta ) q ( \theta | \phi _ { t } ) \Bigg ) . +$$ + +Similar to BOMLA, we use the deterministic $\tilde { \theta }$ in Eq. (6), and the objective in Eq. (14) can be batched (for sequential tasks) or meta-batched (for sequential datasets). This leads to minimising the objective + +$$ +f _ { t + 1 } ^ { \mathrm { B o n v I } } ( \phi , \phi _ { t } ) = - \frac { 1 } { M } \sum _ { m = 1 } ^ { M } \mathbb { E } _ { q ( \theta | \phi ) } \big [ \log p ( \widetilde { \mathcal { D } } _ { t + 1 } ^ { m , Q } | \widetilde { \theta } ^ { m } ) \big ] - \frac { 1 } { M } \sum _ { m = 1 } ^ { M } \mathbb { E } _ { q ( \theta | \phi ) } \big [ \log p ( \widetilde { \mathcal { D } } _ { t + 1 } ^ { m , S } | \theta ) \big ] +$$ + +where $\tilde { \theta } ^ { m } = S G D _ { k } ( \mathcal { L } ( \theta , \widetilde { D } _ { t + 1 } ^ { m , S } ) )$ for $m = 1 , \ldots , M$ . In the sequential datasets setting $M$ denotes the number of tasks sampled per iteration, whereas in the sequential tasks setting $M$ denotes the number of batches per epoch. We use a Gaussian mean-field approximate posterior $q ( \theta | \phi _ { t } ) =$ $\textstyle \prod _ { d = 1 } ^ { D } N ( \mu _ { t , d } , \sigma _ { t , d } ^ { 2 } )$ , where $\phi _ { t } ~ = ~ \{ \mu _ { t , d } , \sigma _ { t , d } \} _ { d = 1 } ^ { D }$ , $D = \dim ( \theta )$ and the objective in Eq. (15) is minimised over $\phi$ . The pseudo-code of the BOMVI algorithm can be found in Appendix B.1. + +The first term in Eq. (15) is rather cumbersome to estimate in optimisation. To compute its Monte Carlo estimator, we have to generate samples $\theta _ { r } \sim q$ for $r = 1 , \ldots , R$ , and run a quick adaptation on each sampled meta-parameters $\theta _ { r }$ before evaluating its log-likelihood. This is computationally intensive and it gives an estimator with large variance. We propose a workaround by modifying the inner loop SGD quick adaptation, and the details can be found in Appendix B.2. + +# 5 RELATED WORK + +Online Meta-Learning There are two common problem settings in the current online metalearning works: + +• Underlying task distribution: Sequential tasks are assumed to originate from the same underlying task distribution $p ( \mathcal { T } )$ in this setting. Our work in the sequential tasks setting belongs to this category. Denevi et al. (2019) introduce the online-within-online (OWO) and online-within-batch (OWB) settings, where OWO encounters tasks and examples within tasks sequentially while OWB encounters tasks sequentially but examples within tasks are in batch. The BOML framework in the sequential tasks setting corresponds to the OWB setting. On the other hand, our work in the sequential datasets setting is novel in overcoming few-shot catastrophic forgetting, where the goal is to few-shot classify tasks drawn from a sequence of distributions $p ( { \bar { \mathcal { T } } } _ { 1 } ) , \dots , p ( { \mathcal { T } } _ { T } )$ as explained in Section 3. He et al. (2019), Harrison et al. (2019) and Jerfel et al. (2019) look into continual meta-learning for nonstationary task distributions where the task boundaries are unknown to the model. Jerfel et al. (2019) consider a latent task structure to adapt to the non-stationary task distributions. + +• Regret minimisation: In this setting, the goal is to minimise the regret function, and the assumptions are made on the loss function rather than the task distribution. Recent works Finn et al. (2019); Zhuang et al. (2019) belong to this category, where the aim is to compete with the best meta-learner and supersede it. These methods accumulate data as they arrive and meta-learn using all data acquired so far. Data accumulation is not desirable as the algorithmic complexity of training grows with the amount of data accumulated, and training time increases as new data arrive (Finn et al., 2019; He et al., 2019). The agent will eventually run out of memory for a long sequence of data. The BOML framework on the other hand is advantageous, as it only takes the posterior of the meta-parameters into consideration during optimisation. This gives a framework with an algorithmic complexity independent of the length of the dataset sequence. + +Offline Meta-Learning Previous meta-learning works attempt to solve few-shot classification problems in an offline setting, under the assumption of having a stationary task distribution during meta-training and meta-evaluation. A single meta-learned model is aimed to few-shot classify one specific dataset with all base classes of the dataset readily available in a batch for meta-training. There are two general frameworks for the offline meta-learning setting: + +• Probabilistic framework: The MAML algorithm can be cast into a probabilistic inference problem (Finn et al., 2018) or with a hierarchical Bayesian structure (Grant et al., + +2018; Yoon et al., 2018). Grant et al. (2018) discuss the use of a Laplace approximation in the task-specific inner loop to improve MAML using the curvature information, whilst Yoon et al. (2018) use Stein Variational Gradient Descent (SVGD) for task-specific learning. Gordon et al. (2019) implement probabilistic inference by considering the posterior predictive distribution with amortised networks. + +• Non-probabilistic framework: Gradient-based meta-learning (Finn et al., 2017; Nichol et al., 2018; Rusu et al., 2019) updates the meta-parameters by accumulating the gradients of a meta-batch of task-specific inner loop updates. The meta-parameters will be used as a model initialisation for a quick adaptation on the novel classes. Metric-based metalearning (Koch et al., 2015; Vinyals et al., 2016; Snell et al., 2017) utilises the metric distance between labelled examples. Such methods assume that base and novel classes are from the same dataset distribution, and the metric distance estimations can be generalised to the novel classes upon meta-learning the base classes. + +Continual Learning Modern continual learning works (Goodfellow et al., 2013; Lee et al., 2017; Zenke et al., 2017) focus primarily on large-scale supervised learning, in contrast to our work that looks into continual few-shot classification across sequential tasks and datasets. Wen et al. (2018) utilise few-shot learning to improve on overcoming catastrophic forgetting via logit matching on a small sample from the previous tasks. The online learning element in this paper is closely related to (Kirkpatrick et al., 2017; Zenke et al., 2017; Ritter et al., 2018a; Nguyen et al., 2018) that overcome catastrophic forgetting for large-scale supervised classification. In particular, our work builds on the online Laplace approximation method in (Ritter et al., 2018a). We extend this to the meta-learning scenario to avoid forgetting in few-shot classification problems. Nguyen et al. (2018) provide the alternative of using variational inference instead of Laplace approximation for approximating the posterior. It is a reasonable approach to adapt variational approximation methods to approximate the posterior of the meta-parameters by adjusting the KL-divergence objective. + +# 6 EXPERIMENTS + +# 6.1 OMNIGLOT: SEQUENTIAL TASKS + +We run the sequential tasks experiment on the Omniglot dataset. To increase the difficulty level, we split the datasets based on the alphabets (super-classes) instead of the characters (classes). The goal of this experiment is to classify the 5-way 5-shot novel tasks sampled from the meta-evaluation alphabets. The experimental details and the alphabet splits can be found in Appendix C.1. + +We compare our algorithms to the following baselines: + +1. Train-On-Everything (TOE): When a new task (or dataset) arrives for meta-training, we randomly re-initialise the meta-parameters and perform meta-training on all tasks (or datasets) encountered so far. Once meta-training is completed in this stage, we do not update the posterior of the meta-parameters like we would in BOMLA and BOMVI. 2. Train-From-Scratch (TFS): Upon the arrival of a new task (or dataset), we randomly reinitialise the meta-parameters and meta-train only on the newly-arrived task (or dataset). Similar to TOE, the posterior of the meta-parameters is not updated in TFS. 3. Follow The Meta-Leader (FTML): We introduce a slight modification to FTML (Finn et al., 2019) on its evaluation method, as FTML is not designed for few-shot learning on unseen tasks. In our experiment, we apply Update-Procedure in FTML to the data from unseen tasks, rather than the data from the same training task as in the original FTML. + +As the tasks arrive sequentially for meta-training, Figure 1 shows that BOMLA and BOMVI can accumulate the few-shot classification ability on the novel tasks over time. The knowledge acquired from previous meta-training tasks are carried forward in the form of a posterior, which is then used as the prior when a new task arrives for meta-training. The baselines TOE and TFS have similar performances. Despite having access to all previous tasks, TOE shows no positive forward transfer in the meta-evaluation accuracy each time it encounters a new task. BOMLA with $\lambda = 0 . 1$ gives the best performance in this experiment. + +![](images/f1b81faadf230be434c4056a4a78621223884d73db008b674c0cea1f3e45bc91.jpg) +Figure 1: Meta-evaluation accuracy across 3 seed runs on the novel tasks along meta-training. Left: compares BOMLA to the baselines, centre: compares BOMVI to the baselines, right: compares BOMLA with different $\lambda$ values to BOMVI. + +# 6.2 PENTATHLON: SEQUENTIAL DATASETS + +We implement BOMLA and BOMVI to the pentathlon 5-way 1-shot classification sequence: + +Omniglot CIFAR-FS miniImageNet VGG-Flowers Aircraft + +The details of this experiment and the datasets can be found in Appendix C.2. We compare BOMLA and BOMVI to the baseline TOE, and running MAML continuously on the sequential datasets for meta-training. + +Figure 2 shows that BOMLA and BOMVI are able to prevent few-shot catastrophic forgetting. TOE is also able to retain the few-shot performance as it has access to all datasets encountered so far. However, since it learns all datasets from random re-initialisation each time it encounters a new dataset, the meta-training time required to achieve a similarly good meta-evaluation performance is longer compared to other runs. The sequential MAML, on the other hand, catastrophically forgets the previously learned datasets but has the best performance on new datasets compared to other runs. TOE can be memory-intensive as the dataset sequence becomes longer. It takes the bruteforce approach to prevent forgetting by memorising all datasets. Unlike TOE, our BOML approach only takes the posterior of the meta-parameters into consideration during optimisation. This gives a framework with an algorithmic complexity independent of the length of the dataset sequence. + +$@ \ @ \left( { \widehat { a } } \right)$ New2: errorband + +Tuning the posterior regulariser $\lambda$ mentioned in Section 4.2 corresponds to balancing between a smaller performance trade-off on a new dataset and less forgetting on previous datasets. As shown in Appendix C.2 Figure 4, a larger $\lambda = 1 0 0 0$ results in a more concentrated Gaussian posterior and is therefore unable to learn new datasets well, but can better retain the performances on previous datasets. A smaller value $\lambda = 1$ on the other hand gives a widespread Gaussian posterior and learns better on new datasets by sacrificing the performance on the previous datasets. In this experiment, the value $\lambda = 1 0 0$ gives the best balance between old and new datasets. Ideally we seek for a good performance on both old and new datasets, but in reality there is a trade-off between retaining performance on old datasets and learning well on new datasets due to posterior approximation errors. + +As shown in Figures 1 and 2, BOMLA with appropriate $\lambda$ is superior to BOMVI. This is due to BOMLA having a better posterior approximation than BOMVI. Whilst BOMLA has a Gaussian approximate posterior with block-diagonal precision, BOMVI uses a Gaussian mean-field approximate posterior. Trippe & Turner (2017) compared the performances of variational inference with different covariance structures, and discovered that variational inference with block-diagonal covariance performs worse than mean-field approximation. This is because the block-diagonal covariance in variational inference prohibits variance reduction methods such as local reparameterisation trick for Monte Carlo estimation. The variance of the Monte Carlo estimate has been proven problematic (Kingma et al., 2015; Trippe & Turner, 2017). We address this issue in Section 4.3 and Appendix B.2 specifically to the meta-learning setting by modifying the inner loop quick adaptation. + +$@ \ @ \left( { \widehat { a } } \right)$ New2: $\lambda { \cdot }$ - comparing plot in App. C.2 + +![](images/e2f5052bde38ab7aad480616153346453a41dffe2b36ad7c864932e1cf0d6269.jpg) +Figure 2: Meta-evaluation accuracy across 3 seed runs on each dataset along meta-training (refer to Figure 3 for the enlarged version). Higher accuracy values indicate better results with less forgetting as we proceed to new datasets. BOMLA with $\lambda = 1 0 0$ gives good performance in the offdiagonal plots (retains performances on previously learned datasets), and has a minor performance trade-off in the diagonal plots (learns less well on new datasets). Sequential MAML gives better performance in the diagonal plots (learns well on new datasets) but worse performance in the offdiagonal plots (forgets previously learned datasets). BOMVI is also able to retain performance on previous datasets, although it may be unable to perform as good as BOMLA due to sampling and estimator variance. + +# 7 CONCLUSION + +We introduced the Bayesian online meta-learning (BOML) framework with two algorithms: BOMLA and BOMVI. Our framework can overcome catastrophic forgetting in few-shot classification problems and can handle sequentially arriving few-shot tasks for online meta-learning. BOML merged the BOL framework and the MAML algorithm via Laplace approximation or variational continual learning. We proposed the necessary adjustments in the Hessian and Fisher approximation for BOMLA, as we are optimising the meta-parameters for few-shot classification instead of the usual model parameters in large-scale supervised classification. The experiments show that BOMLA and BOMVI are able to retain the few-shot classification ability when trained on sequential datasets with evident distributional shift, resulting in the ability to perform few-shot classification on multiple datasets with a single meta-learned model. BOMLA and BOMVI are also able to continually learn to few-shot classify novel tasks as the meta-training tasks arrive sequentially for learning. + +# REFERENCES + +A. Antoniou, H. Edwards, and A. Storkey. How to Train Your MAML. In International Conference on Learning Representations, 2019. L. Bertinetto, J. F. Henriques, P. Torr, and A. Vedaldi. Meta-Learning with Differentiable ClosedForm Solvers. In International Conference on Learning Representations, 2019. + +A. Botev, H. Ritter, and D. Barber. Practical Gauss-Newton Optimisation for Deep Learning. In Proceedings of the 34th International Conference on Machine Learning, 2017. +G. Denevi, D. Stamos, C. Ciliberto, and M. Pontil. Online-Within-Online Meta-Learning. In Advances in Neural Information Processing Systems 32, 2019. +J. S. Denker and Y. LeCun. Transforming Neural-Net Output Levels to Probability Distributions. In Advances in Neural Information Processing Systems 3, 1991. +C. Finn, P. Abbeel, and S. Levine. Model-Agnostic Meta-Learning for Fast Adaptation of Deep Networks. In Proceedings of the 34th International Conference on Machine Learning, 2017. +C. Finn, K. Xu, and S. Levine. Probabilistic Model-Agnostic Meta-Learning. In Advances in Neural Information Processing Systems 31, 2018. +C. Finn, A. Rajeswaran, S. Kakade, and S. Levine. Online Meta-Learning. In Proceedings of the 36th International Conference on Machine Learning, 2019. +I. J. Goodfellow, M. Mirza, D. Xiao, A. Courville, and Y. Bengio. An Empirical Investigation of Catastrophic Forgetting in Gradient-Based Neural Networks. arXiv preprint, arXiv:1312.6211, 2013. +J. Gordon, J. Bronskill, M. Bauer, S. Nowozin, and R. Turner. Meta-Learning Probabilistic Inference for Prediction. In International Conference on Learning Representations, 2019. URL https: //openreview.net/forum?id ${ . } = { }$ HkxStoC5F7. +E. Grant, C. Finn, S. Levine, T. Darrell, and T. Griffiths. Recasting Gradient-Based Meta-Learning as Hierarchical Bayes. In International Conference on Learning Representations, 2018. +R. Grosse and J. Martens. A Kronecker-Factored Approximate Fisher Matrix for Convolution Layers. In Proceedings of the 33rd International Conference on Machine Learning, 2016. +J. Harrison, A. Sharma, C. Finn, and M. Pavone. Continuous Meta-Learning without Tasks. arXiv preprint, arXiv:1912.08866, 2019. +X. He, J. Sygnowski, A. Galashov, A. A. Rusu, Y. Teh, and R. Pascanu. Task Agnostic Continual Learning via Meta Learning. arXiv preprint, arXiv:1906.05201, 2019. +G. Jerfel, E. Grant, T. Griffiths, and K. A. Heller. Reconciling Meta-Learning and Continual Learning with Online Mixtures of Tasks. In Advances in Neural Information Processing Systems 32, 2019. +D. P. Kingma and J. Ba. Adam: A Method for Stochastic Optimization. In International Conference on Learning Representations, 2015. +D. P. Kingma, T. Salimans, and M. Welling. Variational Dropout and the Local Reparameterization Trick. In Advances in Neural Information Processing Systems 28, 2015. +J. Kirkpatrick, R. Pascanu, N. Rabinowitz, J. Veness, G. Desjardins, A. A. Rusu, K. Milan, J. Quan, T. Ramalho, A. Grabska-Barwinska, D. Hassabis, C. Clopath, D. Kumaran, and R. Hadsell. Overcoming Catastrophic Forgetting in Neural Networks. Proceedings of the National Academy of Sciences, 2017. +G. Koch, R. Zemel, and R. Salakhutdinov. Siamese Neural Networks for One-Shot Image Recognition. In 32th International Conference on Machine Learning Deep Learning Workshop, 2015. +B. Lake, R. Salakhutdinov, J. Gross, and J.B. Tenenbaum. One Shot Learning of Simple Visual Concepts. In Proceedings of the 33rd Annual Conference of the Cognitive Science Society, 2011. +S. Lee, J. Kim, J. Jun, J. Ha, and B. Zhang. Overcoming Catastrophic Forgetting by Incremental Moment Matching. In Advances in Neural Information Processing Systems 30, 2017. +F. Li, R. Fergus, and P. Perona. Learning Generative Visual Models from Few Training Examples: An Incremental Bayesian Approach Tested on 101 Object Categories. In Proceedings of the IEEE Computer Society Conference on Computer Vision and Pattern Recognition Workshops, 2004. +F. Li, R. Fergus, and P. Perona. One-Shot Learning of Object Categories. IEEE Transactions on Pattern Analysis and Machine Intelligence, 2006. +Z. Li, F. Zhou, F. Chen, and H. Li. Meta-SGD: Learning to Learn Quickly for Few-Shot Learning. arXiv preprint, arXiv:1707.09835, 2017. +D. J. C. MacKay. A Practical Bayesian Framework for Backpropagation Networks. Neural Computation, 1992. +S. Maji, E. Rahtu, J. Kannala, M. Blaschko, and A. Vedaldi. Fine-Grained Visual Classification of Aircraft. arXiv preprint, arXiv:1306.5151, 2013. +J. Martens and R. Grosse. Optimizing Neural Networks with Kronecker-Factored Approximate Curvature. In Proceedings of the 32nd International Conference on Machine Learning, 2015. +E. G. Miller, N. E. Matsakis, and P. A. Viola. Learning from One Example Through Shared Densities on Transforms. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, 2000. +C. V. Nguyen, Y. Li, T. D. Bui, and R. E. Turner. Variational Continual Learning. In International Conference on Learning Representations, 2018. +A. Nichol, J. Achiam, and J. Schulman. On First-Order Meta-Learning Algorithms. arXiv preprint, arXiv:1803.02999, 2018. +M. Nilsback and A. Zisserman. Automated Flower Classification over a Large Number of Classes. In 2008 Sixth Indian Conference on Computer Vision, Graphics and Image Processing, 2008. +M. Opper. A Bayesian Approach to Online Learning. Cambridge University Press, 1998. +S. Ravi and H. Larochelle. Optimization as a Model for Few-Shot Learning. In International Conference on Learning Representations, 2017. +H. Ritter, A. Botev, and D. Barber. Online Structured Laplace Approximations for Overcoming Catastrophic Forgetting. In Advances in Neural Information Processing Systems 31, 2018a. +H. Ritter, A. Botev, and D. Barber. A Scalable Laplace Approximation for Neural Networks. In International Conference on Learning Representations, 2018b. +H. Robbins and S. Monro. A Stochastic Approximation Method. The Annals of Mathematical Statistics, 1951. +A. A. Rusu, D. Rao, J. Sygnowski, O. Vinyals, R. Pascanu, S. Osindero, and R. Hadsell. MetaLearning with Latent Embedding Optimization. In International Conference on Learning Representations, 2019. +A. Santoro, S. Bartunov, M. Botvinick, D. Wierstra, and T. Lillicrap. Meta-Learning with MemoryAugmented Neural Networks. In Proceedings of the 33rd International Conference on Machine Learning, 2016. +J. Schmidhuber. Evolutionary Principles in Self-Referential Learning. On Learning How to Learn: The Meta-Meta-Meta...-Hook. Diploma thesis, Institut fur Informatik, Technische Universit ¨ at¨ Munchen, 1987. ¨ +J. Snell, K. Swersky, and R. Zemel. Prototypical Networks for Few-Shot Learning. In Advances in Neural Information Processing Systems 30, 2017. +S. Thrun and L. Pratt. Learning to Learn: Introduction and Overview. Springer, Boston, MA, 1998. +B. L. Trippe and R. E. Turner. Overpruning in Variational Bayesian Neural Networks. In Advances in Neural Information Processing Systems 30 – Advances in Approximate Bayesian Inference Workshop, 2017. +O. Vinyals, C. Blundell, T. Lillicrap, K. Kavukcuoglu, and D. Wierstra. Matching Networks for One Shot Learning. In Advances in Neural Information Processing Systems 29, 2016. +J. Wen, Y. Cao, and R. Huang. Few-Shot Self Reminder to Overcome Catastrophic Forgetting. arXiv preprint, arXiv:1812.00543, 2018. +J. Yoon, T. Kim, O. Dia, S. Kim, Y. Bengio, and S. Ahn. Bayesian Model-Agnostic Meta-Learning. In Advances in Neural Information Processing Systems 31, 2018. +F. Zenke, B. Poole, and S. Ganguli. Continual Learning through Synaptic Intelligence. In Proceedings of the 34th International Conference on Machine Learning, 2017. +Z. Zhuang, Y. Wang, K. Yu, and S. Lu. No-Regret Non-Convex Online Meta-Learning. arXiv preprint, arXiv:1910.10196, 2019. + +# A BACKGROUND + +This section provides a background explanation of using BOL to find the posterior of a model parameters and overcome catastrophic forgetting, commonly for large-scale supervised classification. We will then apply this approach to our recursion in Eq. (5). + +The posterior is typically intractable due to the enormous size of the modern neural network architectures. This leads to the requirement for a good approximation of the posterior of the metaparameters. A particularly suitable candidate for this purpose in meta-learning is the Laplace approximation (MacKay, 1992; Ritter et al., 2018b), as it simply adds a quadratic regulariser to the training objective. Variational inference is another possible method to obtain an approximation for the posterior of the meta-parameters. + +# A.1 BAYESIAN ONLINE LEARNING + +Upon the arrival of the new $\mathcal { D } _ { t + 1 }$ , we are interested in a MAP estimate $\theta ^ { * } = \arg \operatorname* { m a x } _ { \theta } p ( \theta | \mathcal { D } _ { 1 : t + 1 } )$ for the parameters $\theta$ of a neural network. Using Bayes’ rule on the posterior gives the recursive formula + +$$ +p ( \theta | \mathcal { D } _ { 1 : t + 1 } ) \propto p ( \mathcal { D } _ { t + 1 } | \theta ) p ( \theta | \mathcal { D } _ { 1 : t } ) +$$ + +where Eq. (16) follows from the assumption that each dataset is independent given $\theta$ . As the normalised posterior $p ( \theta | \mathcal { D } _ { 1 : t } )$ is usually intractable, it may be approximated by a parametric distribution $q$ with parameter $\phi _ { t }$ . The BOL framework consists of the update step and the projection step (Opper, 1998). The update step uses the approximate posterior $q ( \theta | \phi _ { t } )$ obtained from the previous step for an update in the form of Eq. (16): + +$$ +p ( \theta | \mathcal { D } _ { 1 : t + 1 } , \phi _ { t } ) \propto p ( \mathcal { D } _ { t + 1 } | \theta ) q ( \theta | \phi _ { t } ) . +$$ + +The new posterior $p ( \theta | \mathcal { D } _ { 1 : t + 1 } , \phi _ { t } )$ might not belong to the same parametric family as $q ( \theta | \phi _ { t } )$ . In this case, the new posterior has to be projected into the same parametric family to obtain $q ( \theta | \phi _ { t + 1 } )$ . Opper (1998) performs this projection by minimising the KL-divergence between the new posterior and the parametric $q$ , while Ritter et al. (2018a) use the Laplace approximation and Nguyen et al. (2018) use variational inference. + +# A.2 LAPLACE APPROXIMATION + +We consider finding a MAP estimate following from Eq. (16): + +$$ +\theta _ { t + 1 } ^ { * } = \arg \operatorname* { m a x } _ { \theta } p ( \theta | \mathcal { D } _ { 1 : t + 1 } ) = \arg \operatorname* { m a x } _ { \theta } \{ \log p ( \mathcal { D } _ { t + 1 } | \theta ) + \log p ( \theta | \mathcal { D } _ { 1 : t } ) \} . +$$ + +Since the posterior $p ( \theta | \mathcal { D } _ { 1 : t } )$ of a neural network is intractable except for small architectures, the unnormalised posterior $\tilde { p } ( \theta | \mathcal { D } _ { 1 : t } )$ is considered instead. Performing Taylor expansion on the logarithm of the unnormalised posterior around a mode ${ \boldsymbol { \theta } } _ { t } ^ { * }$ gives + +$$ +\log \tilde { p } ( \theta | \mathcal { D } _ { 1 : t } ) \simeq \log \tilde { p } ( \theta | \mathcal { D } _ { 1 : t } ) \big | _ { \theta = \theta _ { t } ^ { * } } - \frac { 1 } { 2 } ( \theta - \theta _ { t } ^ { * } ) ^ { T } A _ { t } ( \theta - \theta _ { t } ^ { * } ) , +$$ + +where $A _ { t }$ denotes the Hessian matrix of the negative log-posterior evaluated at $\theta _ { t } ^ { * }$ . The expansion in Eq. (19) suggests using a Gaussian approximate posterior. Given the parameter $\phi _ { t } = \{ \mu _ { t } , \Lambda _ { t } \}$ , a mean $\mu _ { t + 1 }$ for step $t + 1$ can be obtained by finding a mode of the approximate posterior as follows via standard gradient-based optimisation: + +$$ +\mu _ { t + 1 } = \arg \operatorname* { m a x } _ { \boldsymbol { \theta } } \log p ( \mathcal { D } _ { t + 1 } | \boldsymbol { \theta } ) - \frac { 1 } { 2 } ( \boldsymbol { \theta } - \boldsymbol { \mu } _ { t } ) ^ { T } \Lambda _ { t } ( \boldsymbol { \theta } - \boldsymbol { \mu } _ { t } ) . +$$ + +The precision matrix is updated as $\Lambda _ { t + 1 } = H _ { t + 1 } + \Lambda _ { t }$ , where $H _ { t + 1 }$ is the Hessian matrix of the negative log-likelihood for $\mathcal { D } _ { t + 1 }$ evaluated at $\mu _ { t + 1 }$ with entries + +$$ +H _ { t + 1 } ^ { i j } = - \frac { \partial ^ { 2 } } { \partial \theta ^ { ( i ) } \partial \theta ^ { ( j ) } } \log p ( \mathcal { D } _ { t + 1 } \vert \theta ) \bigg \vert _ { \theta = \mu _ { t + 1 } } . +$$ + +For a neural network model, gradient-based optimisation methods such as SGD (Robbins & Monro, 1951) and Adam (Kingma & Ba, 2015) are the standard gradient-based methods in finding a mode for the Laplace approximation in Eq. (20). We show in Section 4.1 that this provides a well-suited skeleton to implement Bayesian online meta-learning in Eq. (5) with the mode-seeking optimisation procedure. + +# A.3 BLOCK-DIAGONAL HESSIAN APPROXIMATION + +Since the full Hessian matrix in Eq. (21) is intractable for large neural networks, we seek for an efficient and relatively close approximation to the Hessian matrix. Diagonal approximations (Denker & LeCun, 1991; Kirkpatrick et al., 2017) are memory and computationally efficient, but sacrifice approximation accuracy as they ignore the interaction between parameters. Consider instead separating the Hessian matrix into blocks where different blocks are associated to different layers of a neural network. A particular diagonal block corresponds to the Hessian for a particular layer of the neural network. The block-diagonal Kronecker-factored approximation (Martens & Grosse, 2015; Grosse & Martens, 2016; Botev et al., 2017) utilises the fact that each diagonal block of the Hessian is Kronecker-factored for a single data point. This provides a better Hessian approximation as it takes the parameter interactions within a layer into consideration. + +# A.3.1 KRONECKER-FACTORED APPROXIMATION + +Consider a neural network with $L$ layers and parameter $\theta = [ \mathrm { v e c } ( W _ { 1 } ) ^ { T } , \dots , \mathrm { v e c } ( W _ { L } ) ^ { T } ] ^ { T }$ where $W _ { \ell }$ is the weight of layer $\ell$ for $\ell = \{ 1 , \dots , L \}$ and vec denotes stacking the columns of a matrix into a vector. We denote the input of the neural network as $a _ { 0 } = x$ and the output of the neural network as $h _ { L }$ . As the input passes through each layer of the neural network, we have the pre-activation for layer $\ell$ as $h _ { \ell } = W _ { \ell } a _ { \ell - 1 }$ and the activation as $a _ { \ell } = f _ { \ell } ( h _ { \ell } )$ where $f _ { \ell }$ is the activation function of layer $\ell$ . If a bias vector is applicable in calculating the pre-activation of a layer, we append the bias vector to the last column of the weight matrix and append a scalar one to the last element of the activation. The gradient $g _ { \ell }$ of loss $L _ { \theta } ( \dot { x _ { \star } } y ) = - \log p ( \bar { y } | \dot { x } , \theta )$ with respect to $h _ { \ell }$ for an input-target pair $( x , y )$ is the pre-activation gradient for layer $\ell$ . + +Martens $\&$ Grosse (2015) show that the $\ell$ -th diagonal block $F _ { \ell }$ of the Fisher information matrix $F$ can be approximated by the Kronecker product between the expectation of the outer product of the $( \ell - 1 )$ -th layer activation and the $\ell$ -th layer pre-activation gradient: + +$$ +\begin{array} { r l } & { F _ { \ell } = \mathbb { E } _ { x , y } \bigl [ a _ { \ell - 1 } a _ { \ell - 1 } ^ { T } \otimes g _ { \ell } g _ { \ell } ^ { T } \bigr ] } \\ & { \qquad \approx \mathbb { E } _ { x } \bigl [ a _ { \ell - 1 } a _ { \ell - 1 } ^ { T } \bigr ] \otimes \mathbb { E } _ { y | x } \bigl [ g _ { \ell } g _ { \ell } ^ { T } \bigr ] } \\ & { \qquad = A _ { \ell - 1 } \otimes G _ { \ell } , } \end{array} +$$ + +where $A _ { \ell - 1 } = \mathbb { E } _ { x } [ a _ { \ell - 1 } a _ { \ell - 1 } ^ { T } ]$ and $G _ { \ell } = \mathbb { E } _ { y | x } [ g _ { \ell } g _ { \ell } ^ { T } ]$ . Grosse $\&$ Martens (2016) extend the blockdiagonal Kronecker-factored Fisher approximation for fully-connected layers to that for convolution layers. The Gaussian log-probability term can be calculated efficiently without expanding the Kronecker product using the identity + +$$ +\begin{array} { r } { ( A _ { \ell - 1 } \otimes G _ { \ell } ) \operatorname { v e c } ( W _ { \ell } - W _ { \ell } ^ { * } ) = \operatorname { v e c } ( G _ { \ell } ( W _ { \ell } - W _ { \ell } ^ { * } ) A _ { \ell - 1 } ^ { T } ) . } \end{array} +$$ + +As we mentioned in Section 4.2, approximating the Hessian with the one-step SGD inner loop assumption results in having terms that multiply two or more Kronecker products together. The $\ell$ -th diagonal block of $\widetilde { F }$ in Eq. (11) is + +$$ +\widetilde { F } _ { \ell } = \frac { 1 } { M } \sum _ { m = 1 } ^ { M } ( I - A _ { \ell - 1 } ^ { m } \otimes G _ { \ell } ^ { m } ) ( \widetilde { A } _ { \ell - 1 } ^ { m } \otimes \widetilde { G } _ { \ell } ^ { m } ) ( I - A _ { \ell - 1 } ^ { m } \otimes G _ { \ell } ^ { m } ) ^ { T } , +$$ + +where $A _ { \ell - 1 } ^ { m } \otimes G _ { \ell } ^ { m }$ is the Kronecker product corresponding to the Hessian in Eq. (13) for task or batch $m$ . We expand $\widetilde { F } _ { \ell }$ using the Kronecker product property: + +$$ +\begin{array} { r } { ( A _ { \ell - 1 } ^ { m } \otimes G _ { \ell } ^ { m } ) ( \widetilde { A } _ { \ell - 1 } ^ { m } \otimes \widetilde { G } _ { \ell } ^ { m } ) = A _ { \ell - 1 } ^ { m } \widetilde { A } _ { \ell - 1 } ^ { m } \otimes G _ { \ell } ^ { m } \widetilde { G } _ { \ell } ^ { m } . } \end{array} +$$ + +This gives + +$$ +\begin{array} { r l r } { \widetilde { F } _ { \ell } = \frac { 1 } { M } \sum _ { m = 1 } ^ { M } \Big \{ \widetilde { A } _ { \ell - 1 } ^ { m } \otimes \widetilde { G } _ { \ell } ^ { m } - A _ { \ell - 1 } ^ { m } \widetilde { A } _ { \ell - 1 } ^ { m } \otimes G _ { \ell } ^ { m } \widetilde { G } _ { \ell } ^ { m } - \widetilde { A } _ { \ell - 1 } ^ { m } ( A _ { \ell - 1 } ^ { m } ) ^ { T } \otimes \widetilde { G } _ { \ell } ^ { m } ( G _ { \ell } ^ { m } ) ^ { T } } \\ & { } & { + A _ { \ell - 1 } ^ { m } \widetilde { A } _ { \ell - 1 } ^ { m } ( A _ { \ell - 1 } ^ { m } ) ^ { T } \otimes G _ { \ell } ^ { m } \widetilde { G } _ { \ell } ^ { m } ( G _ { \ell } ^ { m } ) ^ { T } \Big \} . } \end{array} +$$ + +Finally, moving the meta-batch (or batch) averaging into the Kronecker factors gives the approximation: + +$$ +\begin{array} { r l } & { \widetilde { F } _ { \ell } \approx \widetilde { A } _ { \ell - 1 } \otimes \widetilde { G } _ { \ell } - A _ { \ell - 1 } \widetilde { A } _ { \ell - 1 } \otimes G _ { \ell } \widetilde { G } _ { \ell } - \widetilde { A } _ { \ell - 1 } ( A _ { \ell - 1 } ) ^ { T } \otimes \widetilde { G } _ { \ell } ( G _ { \ell } ) ^ { T } } \\ & { \qquad + A _ { \ell - 1 } \widetilde { A } _ { \ell - 1 } ( A _ { \ell - 1 } ) ^ { T } \otimes G _ { \ell } \widetilde { G } _ { \ell } ( G _ { \ell } ) ^ { T } , } \end{array} +$$ + +where $\begin{array} { r } { \tilde { A } _ { \ell - 1 } = \frac { 1 } { M } \sum _ { m } \tilde { A } _ { \ell - 1 } ^ { m } , \tilde { G } _ { \ell } = \frac { 1 } { M } \sum _ { m } \tilde { G } _ { \ell } ^ { m } , A _ { \ell - 1 } \tilde { A } _ { \ell - 1 } = \frac { 1 } { M } \sum _ { m } A _ { \ell - 1 } ^ { m } \tilde { A } _ { \ell - 1 } ^ { m } . } \end{array}$ and so on. + +A.3.2 POSTERIOR REGULARISING HYPERPARAMETER FOR PRECISION UPDATE + +Ritter et al. (2018a) use a hyperparameter $\lambda$ as a multiplier to the Hessian when updating the precision: + +$$ +\Lambda _ { t + 1 } = \lambda H _ { t + 1 } + \Lambda _ { t } . +$$ + +In the large-scale supervised classification setting, this hyperparameter has a regularising effect on the Gaussian posterior approximation for a balance between having a good performance on a new dataset and maintaining the performance on previous datasets (Ritter et al., 2018a). A large $\lambda$ results in a sharply peaked Gaussian posterior and is therefore unable to learn new datasets well, but can prevent forgetting previously learned datasets. A small $\lambda$ on the other hand gives a dispersed Gaussian posterior and allows better performance on new datasets by sacrificing the performance on the previous datasets. + +# A.4 VARIATIONAL CONTINUAL LEARNING + +The variational continual learning method (Nguyen et al., 2018) also provides a suitable metatraining framework for Bayesian online meta-learning in Eq. (5). Consider approximating the posterior $q$ by minimising the KL-divergence between the parametric $q$ and the new posterior as in the projection step in Eq. (17), where $q$ belongs to some pre-determined approximate posterior family $\mathcal { Q }$ with parameters $\phi _ { t }$ : + +$$ +\begin{array} { r l } & { q ( \theta | \phi _ { t + 1 } ) = \underset { q \in \mathcal { Q } } { \arg \operatorname* { m i n } } D _ { \mathrm { K L } } ( q ( \theta | \phi ) \| p ( \mathcal { D } _ { t + 1 } | \theta ) q ( \theta | \phi _ { t } ) ) } \\ & { \qquad = \underset { q \in \mathcal { Q } } { \arg \operatorname* { m i n } } \big \{ - \mathbb { E } _ { q ( \theta | \phi ) } [ \log p ( \mathcal { D } _ { t + 1 } | \theta ) ] + D _ { \mathrm { K L } } ( q ( \theta | \phi ) \| q ( \theta | \phi _ { t } ) ) \big \} . } \end{array} +$$ + +The optimisation in Eq. (32) leads to the objective + +$$ +\phi _ { t + 1 } = \underset { \phi } { \arg \operatorname* { m i n } } \big \{ - \mathbb { E } _ { q ( \theta | \phi ) } [ \log p ( \mathcal { D } _ { t + 1 } | \theta ) ] + D _ { \mathrm { K L } } ( q ( \theta | \phi ) \| q ( \theta | \phi _ { t } ) ) \big \} . +$$ + +One can use a Gaussian mean-field approximate posterior $\begin{array} { r } { q ( \theta | \phi _ { t } ) = \prod _ { d = 1 } ^ { D } N ( \mu _ { t , d } , \sigma _ { t , d } ^ { 2 } ) } \end{array}$ , where $\phi _ { t } = \{ \mu _ { t , d } , \sigma _ { t , d } \} _ { d = 1 } ^ { D }$ and $D = \dim ( \theta )$ . The first term in Eq. (33) can be estimated via Monte Carlo with local reparameterisation trick (Kingma et al., 2015), and the second KL-divergence term has a closed form for Gaussian distributions. + +# B ALGORITHMS + +# B.1 BOMLA AND BOMVI + +Algorithm 1 gives the pseudo-code of the BOMLA algorithm for the sequential datasets setting, with the corresponding variation for the sequential tasks setting in brackets. The algorithm is formed of three main elements: meta-training on a specific dataset or task (line 4 – 11), updating the Gaussian mean (line 12) and updating the Gaussian precision (line 13 – 16). For the precision update, we approximate the Hessian using block-diagonal Kronecker-factored approximation (BD-KFA). + +Algorithm 2 gives the pseudo-code of the BOMVI algorithm for the sequential datasets setting, with the corresponding variation for the sequential tasks setting in brackets. The algorithm is formed of two main elements: meta-training on a specific dataset or task (line 4 – 11) and updating the parameters of the Gaussian mean-field approximate posterior (line 12). + +1: Require: sequential datasets (or tasks) $\widetilde { \mathcal { D } } _ { 1 } , \ldots , \widetilde { \mathcal { D } } _ { T }$ , learning rate $\alpha$ , posterior regulariser $\lambda$ , +number of meta-training iterations (or epochs) $J$ , meta-batch size (or number of batches) $M$ +2: Initialise: $\mu _ { 0 } , \Lambda _ { 0 }$ , $\theta$ +3: for $t = 1$ to $T$ do +4: for $i = 1 , \dots , J$ do $\triangleright$ meta-training on dataset or task $\widetilde { \cal D } _ { t } \quad$ New: added $\cdot$ +5: for $m = 1$ to $M$ do +6: Sample task (or split the batch) $\widetilde { \mathcal { D } } _ { t } ^ { m } = \widetilde { \mathcal { D } } _ { t } ^ { m , S } \cup \widetilde { \mathcal { D } } _ { t } ^ { m , Q }$ +7: Inner update $\tilde { \theta } ^ { m } = S G D _ { k } ( \mathcal { L } ( \theta , \widetilde { D } _ { t } ^ { m , S } ) )$ +8: end for +9: Evaluate loss $f _ { t } ^ { \mathrm { B o u L A } } ( \theta , \mu _ { t - 1 } , \Lambda _ { t - 1 } )$ in Eq. (8) +10: Outer update $\theta \gets \theta - \alpha \nabla _ { \theta } f _ { t } ^ { \mathrm { B o M L A } } ( \theta , \mu _ { t - 1 } , \Lambda _ { t - 1 } )$ +11: end for +12: Update mean $\mu _ { t } \gets \theta$ $\triangleright$ update posterior mean +13: For sequential datasets, sample $M$ tasks for Hessian approximation +14: Run inner update in line 7 for each task (or for each batch) +15: Approximate $\widetilde { H } _ { t }$ with BD-KFA to $\widetilde { F }$ in Eq. (11) +16: Update precision $\Lambda _ { t } \gets \lambda \widetilde { H } _ { t } + \Lambda _ { t - 1 }$ $\triangleright$ update posterior precision +17: end for + +# Algorithm 2 Bayesian online meta-learning with variational inference (BOMVI) + +1: Require: sequential datasets (or tasks) $\widetilde { \mathcal { D } } _ { 1 } , \ldots , \widetilde { \mathcal { D } } _ { T }$ , learning rate $\alpha$ , number of meta-training +iterations (or epochs) $J$ , meta-batch size (or number of batches) $M$ +2: Initialise: $\phi _ { 0 } = \{ \mu _ { 0 } , \sigma _ { 0 } \}$ +3: for $t = 1$ to $T$ do +4: for $i = 1 , 2 , \dots , J$ do $\triangleright$ meta-training on dataset or task $\widetilde { \cal D } _ { t } \quad$ New: added $\cdot$ +5: for $m = 1$ to $M$ do +6: Sample task (or split the batch) $\widetilde { \mathcal { D } } _ { t } ^ { m } = \widetilde { \mathcal { D } } _ { t } ^ { m , S } \cup \widetilde { \mathcal { D } } _ { t } ^ { m , Q }$ +7: Inner update $\tilde { \theta } ^ { m } = S G D _ { k } ( \mathcal { L } ( \theta , \widetilde { D } _ { t } ^ { m , S } ) )$ +8: end for +9: Evaluate loss $f _ { t } ^ { \mathrm { B o u V I } } ( \phi , \phi _ { t - 1 } )$ in Eq. (15) +10: Outer update $\bar { \mu } \mu - \alpha \nabla _ { \mu } f _ { t } ^ { \mathrm { B o M V I } } ( \phi , \phi _ { t - 1 } )$ , and $\sigma \gets \sigma - \alpha \nabla _ { \sigma } f _ { t } ^ { \mathrm { B o M V I } } ( \phi , \phi _ { t - 1 } )$ +11: end for +12: Update $\mu _ { t } \mu$ and $\sigma _ { t } \gets \sigma$ . update posterior parameters +13: end for + +# B.2 BOMVI MONTE CARLO ESTIMATOR + +Recall that the BOMVI objective is: + +$$ +f _ { t + 1 } ^ { \mathrm { B o M V I } } ( \phi , \phi _ { t } ) = - \frac { 1 } { M } \sum _ { m = 1 } ^ { M } \mathbb { E } _ { q ( \theta | \phi ) } \big [ \log p ( \widetilde { \mathcal { D } } _ { t + 1 } ^ { m , Q } | \widetilde { \theta } ^ { m } ) \big ] - \frac { 1 } { M } \sum _ { m = 1 } ^ { M } \mathbb { E } _ { q ( \theta | \phi ) } \big [ \log p ( \widetilde { \mathcal { D } } _ { t + 1 } ^ { m , S } | \theta ) \big ] +$$ + +where term o $\tilde { \theta } ^ { m } = S G D _ { k } ( \mathcal { L } ( \theta , \widetilde { D } _ { t + 1 } ^ { m , S } ) )$ for diffic $m = 1 , \ldots , M$ . The Monte Carlo estimator for th as every sampled meta-parameters firstfor $\theta _ { r }$ $r = 1 , \ldots , R$ has to undergo a few-shot quick adaptation prior to the log-likelihood evaluation. As a consequence the estimator is prone to a large variance. Moreover, every quickly-adapted sample $\theta _ { r }$ contributes to the meta-learning gradients of the posterior mean and covariance, resulting in a high computational cost when taking the meta-gradients. + +To solve these impediments, we introduce a slight modification to the SGD quick adaptation ${ \widetilde { \theta } } ^ { m }$ . Instead of taking the gradients with respect to the sampled meta-parameters, we consider the gradients with respect to the posterior mean. A one-step SGD quick adaptation, for instance, becomes: + +$$ +\tilde { \theta } ^ { m } = \theta - \alpha \nabla _ { \mu _ { t } } \mathcal { L } ( \mu _ { t } , \mathcal { \tilde { D } } _ { t + 1 } ^ { m , S } ) . +$$ + +This gives $\widetilde { \theta } ^ { m } \sim N ( \widetilde { \mu } _ { t } , \mathrm { d i a g } ( \sigma _ { t } ^ { 2 } ) )$ where + +$$ +\widetilde { \mu } _ { t } = \mu _ { t } - \alpha \nabla _ { \mu _ { t } } \mathcal { L } ( \mu _ { t } , \widetilde { D } _ { t + 1 } ^ { m , S } ) , +$$ + +since $\theta \sim N ( \mu _ { t } , \mathrm { d i a g } ( \sigma _ { t } ^ { 2 } ) )$ . A quick adaptation with more steps works in a similar fashion. With this modification, we can calculate the Monte Carlo estimator for the first term using the local reparameterisation trick as usual. + +# C EXPERIMENTS + +# C.1 OMNIGLOT: SEQUENTIAL TASKS + +In this experiment, we use the model architecture proposed by Vinyals et al. (2016) that takes 4 modules with 64 filters of size $3 \times 3$ , followed by a batch normalisation, a ReLU activation and a $2 \times 2$ max-pooling. A fully-connected layer is appended to the final module before getting the class probabilities with softmax. Table 1 shows the hyperparameters used in this experiment. + +The Omniglot dataset comprises 50 alphabets (super-classes). Each alphabet has numerous characters (classes) and each character has 20 instances. As the meta-training alphabets arrive sequentially, we form non-overlapping sequential tasks from each arriving alphabet, and the tasks also do not overlap in the characters. We use 35 alphabets for meta-training, 7 alphabets for validation and 8 alphabets for meta-evaluation. The alphabet splits are as follows: + +# 35 alphabets for meta-training: + +Kannada, Burmese_(Myanmar), Malay_(Jawi_-_Arabic), Grantha, Atlantean, Ojibwe_(Canadian_Aboriginal_Syllabics), Balinese, Japanese_(katakana), Hebrew, Japanese_(hiragana), Keble, ’Old_Church_Slavonic_(Cyrillic), Asomtavruli_(Georgian), Tengwar, Aurek-Besh, Sanskrit, Manipuri, Early_Aramaic, Oriya, Mongolian, Avesta, Malayalam, Tifinagh, Angelic, Latin, Braille, Inuktitut_(Canadian_Aboriginal_Syllabics), Alphabet_of_the_Magi, Armenian, Korean, Gurmukhi, ULOG, Bengali, Gujarati, Sylheti + +7 alphabets for validation: + +Ge_ez, Cyrillic, Glagolitic, N_Ko, Arcadian, Anglo-Saxon_Futhorc, Blackfoot_(Canadian_Aboriginal_Syllabics) + +8 alphabets for meta-evaluation: + +Syriac_(Serto), Atemayar_Qelisayer, Tibetan, Futurama, Mkhedruli_(Georgian), Syriac_(Estrangelo), Tagalog, Greek + +Table 1: Hyperparameters for the Omniglot sequential tasks experiment + +
HyperparameterBOMLABOMVI
Posterior regulariser 入0.1
Precision initialisation values10-4~10-2
Covariance initialisation values1exp(-10)
NumberofMonte Carlo samples=5
Number of batch M11
Number of query samples per class (meta-evaluation)1515
Number of epochs per task5050
Number of inner SGD steps in meta-training (k)55
Inner SGD learning rate (α)0.10.1
Outer loop optimiserAdamAdam
Outer loop learning rate0.0010.001
Number of tasks sampled for meta-evaluation100100
Number of inner SGD steps in meta-evaluation (k)1010
+ +# C.2 PENTATHLON: SEQUENTIAL DATASETS + +We use the model architecture proposed by Vinyals et al. (2016) in this experiment, as we did for the sequential tasks experiment. Tables 2 and 3 are the hyperparameters used in this experiment. + +Omniglot: The Omniglot dataset (Lake et al., 2011) comprises 1623 characters from 50 alphabets and each character has 20 instances. New classes with rotations in the multiples of $9 0 °$ are formed after splitting the classes for meta-training, validation and meta-evaluation. We use 1100 characters for meta-training, 100 characters for validation and the remaining for meta-evaluation. + +CIFAR-FS: The CIFAR-FS dataset (Bertinetto et al., 2019) has 100 classes of objects and each class comprises 600 images. We use the same split as Bertinetto et al. (2019): 64 classes for metatraining, 16 classes for validation and 20 classes for meta-evaluation. + +miniImageNet: The miniImageNet dataset (Vinyals et al., 2016) takes 100 classes and 600 instances in each class from the ImageNet dataset. We use the same split as Ravi & Larochelle (2017): 64 classes for meta-training, 16 classes for validation and 20 classes for meta-evaluation. + +VGG-Flowers: The VGG-Flowers dataset (Nilsback & Zisserman, 2008) comprises 102 different types of flowers as the classes. This dataset has 8,189 instances in total. We randomly split 66 classes for meta-training, 16 classes for validation and 20 classes for meta-evaluation. + +Aircraft: The Aircraft dataset (Maji et al., 2013) is a fine-grained dataset consisting of 100 different aircraft models as the classes and each class has 100 instances. We randomly split 64 classes for meta-training, 16 classes for validation and 20 classes for meta-evaluation. + +Table 2: Hyperparameters for the pentathlon experiment (same value for all datasets) + +
HyperparameterBOMLABOMVI
Posterior regulariser 入(various values)
Precision initialisation values10-4~ 10-2
Number of tasks sampled for Hessian approx.5000
Covariance initialisation valuesexp(-5)
Number of Monte Carlo samples=20
Meta-batch size M= 3232
Number of query samples per class1515
Number of iterations per dataset5000
Outer loop optimiserAdam5000
Outer loop learning rateAdam
Number of tasks sampled for meta-evaluation0.001 1000.001 100
+ +Table 3: Hyperparameters for the pentathlon sequential datasets experiment (individual datasets) + +
HyperparameterOmniglotCIFAR-FSminiImageNetVGG-FlowersAircraft
Number of inner SGD steps in meta-training (k)15555
Inner SGD learning rate0.40.10.10.10.1
(a) Outer learning rate decay-×0.1×0.1 halfway×0.1 per 1000x0.1
schedule Number of inner SGD steps in meta-evaluation3halfway 1010iterations 10halfway 10
+ +![](images/e4c0f6de57d020e55a0adba80739413b67359f38476dfa77ec263a2bdb85913e.jpg) +Figure 3: Meta-evaluation accuracy across 3 seed runs on each dataset along meta-training. Higher accuracy values indicate better results with less forgetting as we proceed to new datasets. BOMLA with $\lambda = 1 0 0$ gives better performance in the off-diagonal plots (retains performances on previously learned datasets), and has a minor performance trade-off in the diagonal plots (learns less well on new datasets). Sequential MAML gives better performance in the diagonal plots (learns well on new datasets) but worse performance in the off-diagonal plots (forgets previously learned datasets). BOMVI is also able to retain performance on previous datasets, although it may be unable to perform as good as BOMLA due to sampling and estimator variance. + +![](images/8b2b41f7bbda229777423d37569a5dc851b7bef2d0b560bb5db9e6b27a775de1.jpg) +Figure 4: Meta-evaluation accuracy across 3 seed runs on each dataset along meta-training. Higher accuracy values indicate better results with less forgetting as we proceed to new datasets. BOMLA with a large $\lambda = 1 0 0 0$ gives better performance in the off-diagonal plots (retains performances on previously learned datasets) but worse performance in the diagonal plots (does not learn well on new datasets). A small $\lambda = 1$ gives better performance in the diagonal plots (learns well on new datasets) but worse performance in the off-diagonal plots (forgets previously learned datasets). BOMVI is also able to retain performance on previous datasets, although it may be unable to learn new datasets as good as BOMLA due to sampling and estimator variance. \ No newline at end of file diff --git a/parse/train/ucEXZQncukK/ucEXZQncukK_content_list.json b/parse/train/ucEXZQncukK/ucEXZQncukK_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..86ffbb0803ee67cef87847ce836a53f3b53c90b9 --- /dev/null +++ b/parse/train/ucEXZQncukK/ucEXZQncukK_content_list.json @@ -0,0 +1,2137 @@ +[ + { + "type": "text", + "text": "BAYESIAN ONLINE META-LEARNING ", + "text_level": 1, + "bbox": [ + 174, + 99, + 624, + 121 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Anonymous authors Paper under double-blind review ", + "bbox": [ + 183, + 145, + 398, + 172 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 210, + 544, + 224 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Neural networks are known to suffer from catastrophic forgetting when trained on sequential datasets. While there have been numerous attempts to solve this problem for large-scale supervised classification, little has been done to overcome catastrophic forgetting for few-shot classification problems. Few-shot metalearning algorithms often require all few-shot tasks to be readily available in a batch for training. The popular gradient-based model-agnostic meta-learning algorithm (MAML) is a typical algorithm that suffers from these limitations. This work introduces a Bayesian online meta-learning framework to tackle the catastrophic forgetting and the sequential few-shot tasks problems. Our framework incorporates MAML into a Bayesian online learning algorithm with Laplace approximation or variational inference. This framework enables few-shot classification on a range of sequentially arriving datasets with a single meta-learned model and training on sequentially arriving few-shot tasks. The experimental evaluations demonstrate that our framework can effectively prevent catastrophic forgetting and is capable of online meta-learning in various few-shot classification settings. ", + "bbox": [ + 233, + 244, + 764, + 452 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 484, + 336, + 501 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Image classification models and algorithms often require an enormous amount of labelled examples for training to achieve state-of-the-art performance. Labelled examples can be expensive and time-consuming to acquire. Human visual systems, on the other hand, are able to recognise new classes after being shown a few labelled examples. Few-shot classification (Miller et al., 2000; Li et al., 2004; 2006; Lake et al., 2011) tackles this issue by learning to adapt to unseen classes (known as novel classes) with very few labelled examples from each class. Recent works show that metalearning provides promising approaches to few-shot classification problems (Santoro et al., 2016; Finn et al., 2017; Li et al., 2017; Ravi & Larochelle, 2017). Meta-learning or learning-to-learn (Schmidhuber, 1987; Thrun & Pratt, 1998) takes the learning process a level deeper – instead of learning from the labelled examples in the training classes (known as base classes), meta-learning learns the example-learning process. The training process in meta-learning that utilises the base classes is called the meta-training stage, and the evaluation process that reports the few-shot performance on the novel classes is known as the meta-evaluation stage. ", + "bbox": [ + 174, + 520, + 825, + 699 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Despite being a promising solution to few-shot classification problems, meta-learning methods suffer from several limitations: ", + "bbox": [ + 174, + 707, + 821, + 734 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1. Unable to continually learn from sequential few-shot tasks: It is mandatory to have all base classes readily available for meta-training. Such meta-learning algorithms often require sampling a number of few-shot tasks in every iteration for optimisation. \n2. Unable to retain few-shot classification ability on sequential datasets that have evident distributional shift: A meta-learned model is restricted to perform few-shot classification on a specific dataset, in the sense that the base and novel classes have to originate from the same dataset distribution. A meta-learned model loses its few-shot classification ability on previous datasets as new ones arrive subsequently for meta-training. ", + "bbox": [ + 212, + 747, + 825, + 868 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "We emphasise that the task mentioned in this paper refers to the few-shot task for meta-learning. This paper considers meta-learning a single model for few-shot classification in the sequential datasets and sequential few-shot tasks settings respectively. ", + "bbox": [ + 176, + 882, + 823, + 924 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "We introduce a Bayesian online meta-learning framework that can train a few-shot learning model under the sequential few-shot tasks setting and train a model that is applicable to a broader scope of few-shot classification datasets by overcoming catastrophic forgetting. We extend the Bayesian online learning (BOL) framework (Opper, 1998) to a Bayesian online meta-learning framework using the model-agnostic meta-learning (MAML) algorithm (Finn et al., 2017). MAML finds a good model parameter initialisation (called meta-parameters) that can quickly adapt to novel classes using very few labelled examples, while BOL provides a principled framework for finding the posterior of the model parameters. Our framework aims to combine both BOL and MAML to find the posterior of the meta-parameters. Our work builds on Ritter et al. (2018a) which combines the BOL framework and Laplace approximation with block-diagonal Kronecker-factored Fisher approximation, and Nguyen et al. (2018) which uses variational inference with BOL to overcome catastrophic forgetting in large-scale supervised classification. ", + "bbox": [ + 174, + 103, + 825, + 270 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "An important reason to implement Bayesian inference over non-Bayesian methods for an online setting is that BOL provides a grounded framework that suggests using the previous posterior as the prior recursively. Bayesian inference inherits an advantage for robust meta-learning (Yoon et al., 2018) to overcome training instability problems addressed by Antoniou et al. (2019). BOL implicitly keeps a memory on previous knowledge via the posterior, in contrast to recent online meta-learning methods that explicitly accumulate previous data in a task buffer (Finn et al., 2019; Zhuang et al., 2019). Explicitly keeping a memory on previous data often triggers an important question: how should the carried-forward data be processed in future task rounds, in order to accumulate knowledge? Finn et al. (2019) update the meta-parameters at each iteration using previous few-shot tasks in the task buffer. This defeats the purpose of online learning, which by definition means to update the parameters each round using only the new data encountered. Having to re-train on previous data to avoid forgetting also increases the training time as the data accumulate (Finn et al., 2019; He et al., 2019). Certainly one can clamp the amount of data at some maximal limit and sample from the buffer, but the final performance of such an algorithm would be dependent on the samples being informative and of good quality which may vary across different seed runs. In contrast to memorising the datasets, having an implicit memory via the posterior automatically deals with the question on how to process carried-forward data and allows a better carry forward in previous experiences. ", + "bbox": [ + 174, + 277, + 825, + 513 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Below are the contributions we make in this paper: ", + "bbox": [ + 174, + 520, + 506, + 534 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We develop the Bayesian online meta-learning (BOML) framework for sequential few-shot classification problems. Under this framework we introduce the algorithms Bayesian online meta-learning with Laplace approximation (BOMLA) and Bayesian online meta-learning with variational inference (BOMVI). We propose a simple approximation to the Fisher corresponding to the BOMLA algorithm that carries over the desirable block-diagonal Kronecker-factored structure from the Fisher approximation in the non-meta-learning setting. We demonstrate that BOML can overcome catastrophic forgetting in the sequential few-shot datasets setting with apparent distributional shift in the datasets. \n• We demonstrate that BOML can continually learn to few-shot classify the novel classes in the sequential meta-training few-shot tasks setting. ", + "bbox": [ + 215, + 545, + 825, + 710 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 META-LEARNING ", + "text_level": 1, + "bbox": [ + 174, + 729, + 351, + 746 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Most meta-learning algorithms comprise an inner loop for example-learning and an outer loop that learns the example-learning process. Such algorithms often require sampling a meta-batch of tasks at each iteration, where a task is formed by sampling a subset of classes from the pool of base classes or novel classes during meta-training or meta-evaluation respectively. The $N$ -way $K$ -shot task, for instance, refers to sampling $N$ classes and using $K$ examples per class for few-shot quick adaptation. ", + "bbox": [ + 174, + 761, + 825, + 844 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "An offline meta-learning algorithm learns a few-shot classification model only for a specific dataset $\\mathcal { D } _ { t + 1 }$ where all base classes of $\\mathcal { D } _ { t + 1 }$ have to be readily available for meta-training. For notational convenience, we drop the $t + 1$ subscript in this section, as there is only one dataset involved in offline meta-learning. The dataset $\\mathcal { D } _ { t + 1 }$ is divided into the set of base classes $\\widetilde { \\mathcal { D } }$ and novel classes $\\widehat { \\mathcal { D } }$ for meta-training and meta-evaluation respectively. Upon completing meta-training on the base class set $\\widetilde { \\mathcal { D } }$ , the goal of few-shot classification is to perform well on an unseen task ${ \\widehat { \\mathcal { D } } } ^ { * }$ sampled from the novel class set $\\widehat { \\mathcal { D } }$ after a quick adaptation on a small subset $\\widehat { \\mathcal { D } } ^ { * , S }$ (known as the support set) of $\\widehat { \\mathcal { D } } ^ { * }$ . The performance of this unseen task is evaluated on the query set $\\widehat { \\mathcal { D } } ^ { * , Q }$ , where $\\hat { \\mathcal { D } } ^ { * , Q } = \\widehat { \\mathcal { D } } ^ { * } \\backslash \\widehat { \\mathcal { D } } ^ { * , S }$ . Since $\\widehat { \\mathcal { D } }$ is not accessible during meta-training, this support-query split is mimicked on the base class set $\\widetilde { \\mathcal { D } }$ for meta-training. ", + "bbox": [ + 174, + 851, + 825, + 924 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 99, + 825, + 184 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Model-agnostic meta-learning We are interested in the well-known meta-learning algorithm MAML (Finn et al., 2017). Each updating step of MAML aims to improve the ability of the metaparameters to act as a good model initialisation for a quick adaptation on unseen tasks. Each iteration of the MAML algorithm samples $M$ tasks from the base class set $\\widetilde { \\mathcal { D } }$ and runs a few steps of stochastic gradient descent (SGD) for an inner loop task-specific learning. The number of tasks sampled per iteration is known as the meta-batch size. For task $m$ , the inner loop outputs the task-specific parameters $\\tilde { \\theta } ^ { m }$ from a $k$ -step SGD quick adaptation on the objective $\\mathcal { L } ( \\boldsymbol { \\theta } , \\widetilde { \\mathcal { D } } ^ { m , S } )$ with the support set $\\widetilde { \\mathcal { D } } ^ { m , S }$ and initialised at $\\theta$ : ", + "bbox": [ + 173, + 198, + 825, + 316 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/7eca1273e68ec69039e51c7a6b2fa9df631d9ebf7fce7921499424209291ac69.jpg", + "text": "$$\n\\tilde { \\theta } ^ { m } = S G D _ { k } ( \\mathcal { L } ( \\theta , \\widetilde { D } ^ { m , S } ) ) ,\n$$", + "text_format": "latex", + "bbox": [ + 405, + 314, + 589, + 333 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $m = 1 , \\ldots , M$ . The outer loop gathers all task-specific adaptations to update the metaparameters $\\theta$ using the loss $\\mathcal { L } ( \\tilde { \\theta } ^ { m } , \\widetilde { D } ^ { m , Q } )$ on the query set $\\bar { \\mathcal { D } } ^ { m , Q }$ . ", + "bbox": [ + 176, + 337, + 825, + 368 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The overall MAML optimisation objective is ", + "bbox": [ + 176, + 375, + 470, + 388 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/92a2ef5fcf69515e3b21eb37f25efa013c1be58b6f0ef4335d7d4f09097f34c7.jpg", + "text": "$$\n\\underset { \\theta } { \\arg \\operatorname* { m i n } } \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } \\mathcal { L } ( S G D _ { k } ( \\mathcal { L } ( \\theta , \\widetilde { \\mathcal { D } } ^ { m , S } ) ) , \\widetilde { \\mathcal { D } } ^ { m , Q } ) .\n$$", + "text_format": "latex", + "bbox": [ + 336, + 396, + 663, + 439 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Like most offline meta-learning algorithms, MAML requires all base classes to be readily available for tasks-sampling at each iteration. We aim to overcome this limitation by meta-learning a model that can few-shot classify unseen tasks from the novel classes, while the tasks from the base classes arrive sequentially for meta-training. MAML also assumes a stationary task distribution during meta-training and meta-evaluation. Under this assumption, a meta-learned model is only applicable to a specific dataset distribution. When the model encounters a sequence of datasets with apparent distributional shift, it loses the few-shot classification ability on previous datasets as new ones arrive for meta-training. Our work also aims to meta-learn a single model for few-shot classification on multiple datasets that arrive sequentially for meta-training. We achieve these two goals by incorporating MAML into the BOL framework to give the Bayesian online meta-learning (BOML) framework that finds the posterior of the meta-parameters. ", + "bbox": [ + 173, + 452, + 825, + 606 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 OVERVIEW OF OUR BAYESIAN ONLINE META-LEARNING APPROACH", + "text_level": 1, + "bbox": [ + 173, + 626, + 766, + 642 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Our central contribution is to extend the benefits of meta-learning to the Bayesian online scenario, thereby training models that can generalise across tasks whilst dealing with parameter uncertainty in the setting of sequential tasks or sequential datasets. ", + "bbox": [ + 174, + 657, + 823, + 700 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Sequential datasets setting In this setting, online meta-training occurs sequentially on the datasets $\\mathcal { D } _ { 1 } , \\ldots , \\mathcal { D } _ { T }$ . Each dataset $\\mathcal { D } _ { i }$ can be seen as a knowledge domain with an associated underlying task distribution $p ( \\mathcal T _ { i } )$ . A newly-arrived $\\mathcal { D } _ { t + 1 }$ is separated into the base class set $\\widetilde { \\mathcal { D } } _ { t + 1 }$ and novel class set $\\widehat { \\mathcal { D } } _ { t + 1 }$ for meta-training and meta-evaluation respectively, where the tasks in these two stages are drawn from the task distribution $p ( \\mathcal T _ { t + 1 } )$ . ", + "bbox": [ + 173, + 715, + 825, + 791 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Sequential tasks setting The sequential tasks setting only involves one dataset $\\mathcal { D }$ with an associated underlying task distribution $p ( \\mathcal { T } )$ , where $\\mathcal { D }$ is separated into the base and novel class sets. In this setting, $\\widetilde { \\cal D } _ { 1 } , \\ldots , \\widetilde { \\cal D } _ { t + 1 }$ denote the non-overlapping tasks formed from the base class set and they arrive sequentially for meta-training. These tasks $\\widetilde { \\mathcal { D } } _ { 1 } , \\ldots , \\widetilde { \\mathcal { D } } _ { t + 1 }$ and the meta-evaluation tasks are drawn from the task distribution $p ( \\tau )$ . ", + "bbox": [ + 173, + 805, + 825, + 883 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Notationally, for both sequential tasks and sequential datasets settings, let $\\mathcal { \\widetilde { D } } _ { t + 1 } ^ { S }$ and $\\widetilde { \\mathcal { D } } _ { t + 1 } ^ { Q }$ denote the collection of support sets and query sets respectively from $\\widetilde { \\mathcal { D } } _ { t + 1 }$ , so that $\\widetilde { D } _ { t + 1 } = \\widetilde { D } _ { t + 1 } ^ { S } \\cup \\widetilde { D } _ { t + 1 } ^ { Q }$ . ", + "bbox": [ + 174, + 888, + 823, + 925 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We are interested in a MAP estimate $\\theta ^ { * } = \\arg \\operatorname* { m a x } _ { \\theta } p ( \\theta | \\widetilde { D } _ { 1 : t + 1 } )$ . Using Bayes’ rule on the posterior gives the recursive formula ", + "bbox": [ + 173, + 102, + 823, + 132 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/1a8e95d40de872338dbc14d6059f9cc8b3bb5ce6f016109a516aedb5ff29e140.jpg", + "text": "$$\n\\begin{array} { r l } & { p ( \\theta | \\widetilde { D } _ { 1 : t + 1 } ) \\propto p ( \\widetilde { D } _ { t + 1 } ^ { S } , \\widetilde { D } _ { t + 1 } ^ { Q } | \\theta ) p ( \\theta | \\widetilde { D } _ { 1 : t } ) } \\\\ & { \\qquad = p ( \\widetilde { D } _ { t + 1 } ^ { Q } | \\theta , \\widetilde { D } _ { t + 1 } ^ { S } ) p ( \\widetilde { D } _ { t + 1 } ^ { S } | \\theta ) p ( \\theta | \\widetilde { D } _ { 1 : t } ) } \\\\ & { \\qquad = \\bigg \\{ \\int p ( \\widetilde { D } _ { t + 1 } ^ { Q } | \\widetilde { \\theta } ) p ( \\widetilde { \\theta } | \\theta , \\widetilde { D } _ { t + 1 } ^ { S } ) d \\widetilde { \\theta } \\bigg \\} p ( \\widetilde { D } _ { t + 1 } ^ { S } | \\theta ) p ( \\theta | \\widetilde { D } _ { 1 : t } ) } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 267, + 137, + 728, + 218 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where Eq. (3) follows from the assumption that each dataset is independent given $\\theta$ . ", + "bbox": [ + 171, + 222, + 722, + 237 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "From the meta-learning perspective, the parameters $\\tilde { \\theta }$ introduced in Eq. (5) can be viewed as the task-specific parameters in MAML. There are various choices for the distribution $p ( \\tilde { \\theta } | \\theta , \\widetilde { D } _ { t + 1 } ^ { S } )$ in Eq. (5). In particular if we choose to set it as the deterministic function of taking several steps of SGD on loss $\\mathcal { L }$ with the support set collection $\\mathcal { \\widetilde { D } } _ { t + 1 } ^ { S }$ and initialised at $\\theta$ , we have ", + "bbox": [ + 173, + 243, + 825, + 306 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/40c0d0a3235433880a84fe4a976870153a480de768d4c9151bbe5804f3f2a947.jpg", + "text": "$$\np ( { \\tilde { \\theta } } | \\theta , { \\widetilde { \\mathcal { D } } } _ { t + 1 } ^ { S } ) = \\mathbb { 1 } \\{ { \\tilde { \\theta } } = S G D _ { k } ( { \\mathcal { L } } ( \\theta , { \\widetilde { \\mathcal { D } } } _ { t + 1 } ^ { S } ) ) \\} .\n$$", + "text_format": "latex", + "bbox": [ + 348, + 313, + 650, + 334 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "and this recovers the MAML inner loop with SGD quick adaptation in Eq. (1). The recursion given by Eq. (5) forms the basis of our approach and the remainder of this paper explains how we implement this. In order to do so we give a mini tutorial in Appendix A on Bayesian online learning, Laplace approximation and variational continual learning. ", + "bbox": [ + 173, + 338, + 825, + 396 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "4 BAYESIAN ONLINE META-LEARNING IMPLEMENTATION ", + "text_level": 1, + "bbox": [ + 174, + 416, + 663, + 433 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "This section demonstrates how we arrive at the algorithms Bayesian online meta-learning with Laplace approximation (BOMLA) and Bayesian online meta-learning with variational inference (BOMVI) by implementing Laplace approximation and variational continual learning respectively to the posterior of the BOML framework in Eq. (5). These algorithms from the grounded BOML framework are useful for online training on the sequential few-shot classification datasets or tasks. ", + "bbox": [ + 174, + 446, + 825, + 517 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "4.1 BAYESIAN ONLINE META-LEARNING WITH LAPLACE APPROXIMATION ", + "text_level": 1, + "bbox": [ + 174, + 534, + 697, + 549 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We discover that the Laplace approximation method provides a well-fitted meta-training framework for Bayesian online meta-learning in Eq. (5). Each updating step in the approximation procedure can be modified to correspond to the meta-parameters for few-shot classification, instead of the model parameters for large-scale supervised classification. ", + "bbox": [ + 174, + 559, + 825, + 616 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Laplace approximation rationalises the use of a Gaussian approximate posterior by Taylor expanding the log-posterior around a mode up to the second order, as described in Appendix A.2. The second order term corresponds to the log-probability of a Gaussian distribution. The BOML framework in Section 3 with a Gaussian approximate posterior $q$ of mean and precision $\\phi _ { t } = \\{ \\mu _ { t } , \\Lambda _ { t } \\}$ from the Laplace approximation gives a MAP estimate: ", + "bbox": [ + 173, + 622, + 825, + 693 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/d4f655828fc7d9c372db6d9131ab554473fb2952db5ee5acd5614d86a29d3385.jpg", + "text": "$$\n\\theta ^ { * } = \\arg \\operatorname* { m a x } _ { \\theta } \\Bigg \\{ \\log \\int p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { Q } | \\widetilde { \\theta } ) p ( \\widetilde { \\theta } | \\theta , \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { S } ) d \\widetilde { \\theta } + \\log p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { S } | \\theta ) - \\frac { 1 } { 2 } ( \\theta - \\mu _ { t } ) ^ { T } \\Lambda _ { t } ( \\theta - \\mu _ { t } ) \\Bigg \\} .\n$$", + "text_format": "latex", + "bbox": [ + 179, + 699, + 799, + 733 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "For an efficient optimisation, we use the deterministic $\\tilde { \\theta }$ in Eq. (6). The objective in Eq. (7) can be batched (for sequential tasks) or meta-batched (for sequential datasets). This leads to minimising the objective ", + "bbox": [ + 174, + 747, + 826, + 791 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/d42e6d885d731b8872483f64658c48686a601629b7b799ed3b5091a561277731.jpg", + "text": "$$\n\\mathsf { \\Pi } _ { t + 1 } ^ { \\mathsf { R O M L A } } ( \\theta , \\mu _ { t } , \\Lambda _ { t } ) = - \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } \\log p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { m , Q } | \\widetilde { \\theta } ^ { m } ) - \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } \\log p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { m , S } | \\theta ) + \\frac { 1 } { 2 } ( \\theta - \\mu _ { t } ) ^ { T } \\Lambda _ { t } ( \\theta - \\mu _ { t } ) ,\n$$", + "text_format": "latex", + "bbox": [ + 181, + 797, + 825, + 842 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $\\tilde { \\theta } ^ { m } = S G D _ { k } ( \\mathcal { L } ( \\theta , \\widetilde { D } _ { t + 1 } ^ { m , S } ) )$ for $m = 1 , \\ldots , M$ . In the sequential datasets setting $M$ denotes the number of tasks sampled per iteration, whereas in the sequential tasks setting denotes the number of batches per epoch. The first term of the objective in Eq. (8) corresponds to the MAML objective in Eq. (2) with a cross-entropy loss, the second term can be viewed as the pre-adaptation loss on the support set and the last term can be seen as a regulariser. ", + "bbox": [ + 173, + 852, + 825, + 924 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "4.2 HESSIAN APPROXIMATION ", + "text_level": 1, + "bbox": [ + 174, + 103, + 398, + 117 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We calculate a block-diagonal Kronecker-factored Hessian approximation in order to update the precision $\\Lambda _ { t }$ , as explained in Appendix A.3. The Hessian approximations in both sequential datasets and sequential tasks settings are very similar, except that the sequential datasets setting averages over the meta-batch size and the sequential tasks setting averages over the number of batches. ", + "bbox": [ + 173, + 128, + 825, + 185 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The Hessian matrix corresponding to the first term of the BOMLA objective in Eq. (8) is ", + "bbox": [ + 171, + 191, + 753, + 207 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/343db103ae61129fa73d7ad5c6538f7344b3d54d2a428145c9173df606c0dbfc.jpg", + "text": "$$\n\\widetilde { H } _ { t + 1 } ^ { i j } = \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } - \\frac { \\partial ^ { 2 } } { \\partial \\theta ^ { ( i ) } \\partial \\theta ^ { ( j ) } } \\log p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { m , Q } | \\widetilde { \\theta } ^ { m } ) ) \\Bigg | _ { \\theta = \\mu _ { t + 1 } } .\n$$", + "text_format": "latex", + "bbox": [ + 312, + 210, + 686, + 255 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "It is worth noting that the BOMLA Hessian deviates from the original BOL Hessian in Appendix A.2. This requires deriving an adjusted approximation to the Hessian with some further assumptions. ", + "bbox": [ + 174, + 257, + 825, + 300 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The BOL Hessian for a single data point can be approximated using the Fisher information matrix $F$ to ensure its positive semi-definiteness (Martens $\\&$ Grosse, 2015): ", + "bbox": [ + 171, + 306, + 823, + 335 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/cf0c4d7d663b09b3e560637d67790ea757514eefcaa97699217cf1453a6a0fd8.jpg", + "text": "$$\nF = \\mathbb { E } _ { x , y } \\bigg [ \\frac { d } { d \\theta } \\log p ( y | x , \\theta ) \\frac { d } { d \\theta } \\log p ( y | x , \\theta ) ^ { T } \\bigg ] .\n$$", + "text_format": "latex", + "bbox": [ + 343, + 340, + 655, + 375 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Each $( x , y )$ pair for the Fisher in BOMLA is associated to a task (or a batch) $m$ . The Fisher information matrix $\\widetilde { F }$ corresponding to the BOMLA Hessian in Eq. (9) for a single data point is ", + "bbox": [ + 173, + 378, + 823, + 410 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/8baa73ad4baba1475c9a3370fe3004bb5cbaa3b00d996bdebeddf1cace34611c.jpg", + "text": "$$\n\\widetilde { F } = \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } \\mathbb { E } _ { x , y } \\bigg [ \\bigg ( \\frac { \\partial \\widetilde { \\theta } ^ { m } } { \\partial \\theta } \\bigg ) \\frac { d } { d \\widetilde { \\theta } ^ { m } } \\log p ( y | x , \\widetilde { \\theta } ^ { m } ) \\frac { d } { d \\widetilde { \\theta } ^ { m } } \\log p ( y | x , \\widetilde { \\theta } ^ { m } ) ^ { T } \\bigg ( \\frac { \\partial \\widetilde { \\theta } ^ { m } } { \\partial \\theta } \\bigg ) ^ { T } \\bigg ] .\n$$", + "text_format": "latex", + "bbox": [ + 227, + 414, + 769, + 458 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The additional Jacobian matrix $\\frac { \\partial \\tilde { \\theta } ^ { m } } { \\partial \\theta }$ breaks the Kronecker-factored structure described by Martens & Grosse (2015) for the original Fisher in Eq. (10). ", + "bbox": [ + 173, + 463, + 825, + 494 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The results in Finn et al. (2017) show that the first step of the quick adaptation in $\\tilde { \\theta } ^ { m }$ contributes the largest change to the meta-evaluation objective, and the remaining adaptation steps give a relatively small change to the objective. It is reasonable to assume that the quick adaptation is a one-step SGD for Fisher approximation: ", + "bbox": [ + 173, + 501, + 825, + 558 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/010371dd5f0c91339f5ccb1951cdebe2358e8321e7db27767127020481d5f5f9.jpg", + "text": "$$\n\\begin{array} { r } { \\tilde { \\theta } ^ { m } = \\theta - \\nabla _ { \\theta } \\mathcal { L } ( \\theta , \\widetilde { D } _ { t + 1 } ^ { m , S } ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 410, + 556, + 588, + 577 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "By imposing this assumption, the $( i , j )$ -th entry of the Jacobian term can be interpreted as ", + "bbox": [ + 178, + 577, + 764, + 593 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/fb6d2e8697e39d339370645ea1db417c8e2841845d468d841f06e573d0b06a95.jpg", + "text": "$$\n\\left( \\frac { \\partial \\tilde { \\theta } ^ { m } } { \\partial \\theta } \\right) ^ { i j } = I ^ { i j } - \\frac { \\partial ^ { 2 } ( - \\log p ( \\widetilde { D } _ { t + 1 } ^ { m , S } | \\theta ) ) } { \\partial \\theta ^ { ( i ) } \\partial \\theta ^ { ( j ) } } ,\n$$", + "text_format": "latex", + "bbox": [ + 356, + 597, + 640, + 635 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where $I$ is the corresponding identity matrix and the objective $\\mathcal { L }$ involved is the negative loglikelihood. The Hessian for a single data point in the second term of Eq. (13) can be approximated by $F$ in Eq. (10) via the usual block-diagonal Kronecker-factored approximation. Putting the Jacobian back into Eq. (11) and expanding the factors give terms that multiply two or more Kronecker products together. The detailed derivation of $\\widetilde { F }$ is explained in Appendix A.3.1. We introduce the posterior regulariser $\\lambda$ when updating the precision: $\\Lambda _ { t + 1 } = \\lambda { \\widetilde { \\cal H } } _ { t + 1 } + \\Lambda _ { t }$ and the rationale for introducing $\\lambda$ is explained in Appendix A.3.2. The pseudo-code of the BOMLA algorithm can be found in Appendix B.1. ", + "bbox": [ + 173, + 637, + 825, + 755 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4.3 BAYESIAN ONLINE META-LEARNING WITH VARIATIONAL INFERENCE ", + "text_level": 1, + "bbox": [ + 174, + 771, + 691, + 785 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The variational continual learning (VCL) framework (Nguyen et al., 2018) is directly applicable to BOML. This section demonstrates how we arrive at the BOMVI algorithm by implementing VCL to the posterior of the BOML framework in Eq. (5). ", + "bbox": [ + 174, + 796, + 825, + 839 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "As described in Appendix A.4, VCL approximates the posterior by minimising the KL-divergence over some pre-determined approximate posterior family $\\mathcal { Q }$ . Fitting the BOML posterior in Eq. (5) into the VCL framework gives the approximate posterior: ", + "bbox": [ + 174, + 845, + 825, + 888 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/23bd8d9eb209877e105b8e2387ef7e368d77d8125637c2486211c36eb40e27cd.jpg", + "text": "$$\nq ( \\theta | \\phi _ { t + 1 } ) = \\underset { q \\in \\mathcal { Q } } { \\operatorname { a r g m i n } } D _ { \\mathrm { K L } } \\Bigg ( q ( \\theta | \\phi ) \\bigg | \\bigg | \\bigg \\{ \\int p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { Q } | \\widetilde { \\theta } ) p ( \\widetilde { \\theta } | \\theta , \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { S } ) d \\widetilde { \\theta } \\bigg \\} p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { S } | \\theta ) q ( \\theta | \\phi _ { t } ) \\Bigg ) .\n$$", + "text_format": "latex", + "bbox": [ + 184, + 892, + 785, + 928 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Similar to BOMLA, we use the deterministic $\\tilde { \\theta }$ in Eq. (6), and the objective in Eq. (14) can be batched (for sequential tasks) or meta-batched (for sequential datasets). This leads to minimising the objective ", + "bbox": [ + 176, + 102, + 823, + 146 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/ee7b2e2e580f20188f5f558ef8418de608a8ef60ce3e4fd0e30c87ce3702de47.jpg", + "text": "$$\nf _ { t + 1 } ^ { \\mathrm { B o n v I } } ( \\phi , \\phi _ { t } ) = - \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } \\mathbb { E } _ { q ( \\theta | \\phi ) } \\big [ \\log p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { m , Q } | \\widetilde { \\theta } ^ { m } ) \\big ] - \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } \\mathbb { E } _ { q ( \\theta | \\phi ) } \\big [ \\log p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { m , S } | \\theta ) \\big ]\n$$", + "text_format": "latex", + "bbox": [ + 189, + 152, + 781, + 217 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "where $\\tilde { \\theta } ^ { m } = S G D _ { k } ( \\mathcal { L } ( \\theta , \\widetilde { D } _ { t + 1 } ^ { m , S } ) )$ for $m = 1 , \\ldots , M$ . In the sequential datasets setting $M$ denotes the number of tasks sampled per iteration, whereas in the sequential tasks setting $M$ denotes the number of batches per epoch. We use a Gaussian mean-field approximate posterior $q ( \\theta | \\phi _ { t } ) =$ $\\textstyle \\prod _ { d = 1 } ^ { D } N ( \\mu _ { t , d } , \\sigma _ { t , d } ^ { 2 } )$ , where $\\phi _ { t } ~ = ~ \\{ \\mu _ { t , d } , \\sigma _ { t , d } \\} _ { d = 1 } ^ { D }$ , $D = \\dim ( \\theta )$ and the objective in Eq. (15) is minimised over $\\phi$ . The pseudo-code of the BOMVI algorithm can be found in Appendix B.1. ", + "bbox": [ + 174, + 223, + 825, + 300 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "The first term in Eq. (15) is rather cumbersome to estimate in optimisation. To compute its Monte Carlo estimator, we have to generate samples $\\theta _ { r } \\sim q$ for $r = 1 , \\ldots , R$ , and run a quick adaptation on each sampled meta-parameters $\\theta _ { r }$ before evaluating its log-likelihood. This is computationally intensive and it gives an estimator with large variance. We propose a workaround by modifying the inner loop SGD quick adaptation, and the details can be found in Appendix B.2. ", + "bbox": [ + 174, + 306, + 825, + 377 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "5 RELATED WORK ", + "text_level": 1, + "bbox": [ + 176, + 397, + 341, + 412 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Online Meta-Learning There are two common problem settings in the current online metalearning works: ", + "bbox": [ + 173, + 429, + 821, + 458 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "• Underlying task distribution: Sequential tasks are assumed to originate from the same underlying task distribution $p ( \\mathcal { T } )$ in this setting. Our work in the sequential tasks setting belongs to this category. Denevi et al. (2019) introduce the online-within-online (OWO) and online-within-batch (OWB) settings, where OWO encounters tasks and examples within tasks sequentially while OWB encounters tasks sequentially but examples within tasks are in batch. The BOML framework in the sequential tasks setting corresponds to the OWB setting. On the other hand, our work in the sequential datasets setting is novel in overcoming few-shot catastrophic forgetting, where the goal is to few-shot classify tasks drawn from a sequence of distributions $p ( { \\bar { \\mathcal { T } } } _ { 1 } ) , \\dots , p ( { \\mathcal { T } } _ { T } )$ as explained in Section 3. He et al. (2019), Harrison et al. (2019) and Jerfel et al. (2019) look into continual meta-learning for nonstationary task distributions where the task boundaries are unknown to the model. Jerfel et al. (2019) consider a latent task structure to adapt to the non-stationary task distributions. ", + "bbox": [ + 215, + 472, + 823, + 638 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "• Regret minimisation: In this setting, the goal is to minimise the regret function, and the assumptions are made on the loss function rather than the task distribution. Recent works Finn et al. (2019); Zhuang et al. (2019) belong to this category, where the aim is to compete with the best meta-learner and supersede it. These methods accumulate data as they arrive and meta-learn using all data acquired so far. Data accumulation is not desirable as the algorithmic complexity of training grows with the amount of data accumulated, and training time increases as new data arrive (Finn et al., 2019; He et al., 2019). The agent will eventually run out of memory for a long sequence of data. The BOML framework on the other hand is advantageous, as it only takes the posterior of the meta-parameters into consideration during optimisation. This gives a framework with an algorithmic complexity independent of the length of the dataset sequence. ", + "bbox": [ + 215, + 643, + 825, + 796 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Offline Meta-Learning Previous meta-learning works attempt to solve few-shot classification problems in an offline setting, under the assumption of having a stationary task distribution during meta-training and meta-evaluation. A single meta-learned model is aimed to few-shot classify one specific dataset with all base classes of the dataset readily available in a batch for meta-training. There are two general frameworks for the offline meta-learning setting: ", + "bbox": [ + 176, + 811, + 823, + 882 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "• Probabilistic framework: The MAML algorithm can be cast into a probabilistic inference problem (Finn et al., 2018) or with a hierarchical Bayesian structure (Grant et al., ", + "bbox": [ + 217, + 895, + 823, + 924 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "2018; Yoon et al., 2018). Grant et al. (2018) discuss the use of a Laplace approximation in the task-specific inner loop to improve MAML using the curvature information, whilst Yoon et al. (2018) use Stein Variational Gradient Descent (SVGD) for task-specific learning. Gordon et al. (2019) implement probabilistic inference by considering the posterior predictive distribution with amortised networks. ", + "bbox": [ + 230, + 103, + 825, + 172 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "• Non-probabilistic framework: Gradient-based meta-learning (Finn et al., 2017; Nichol et al., 2018; Rusu et al., 2019) updates the meta-parameters by accumulating the gradients of a meta-batch of task-specific inner loop updates. The meta-parameters will be used as a model initialisation for a quick adaptation on the novel classes. Metric-based metalearning (Koch et al., 2015; Vinyals et al., 2016; Snell et al., 2017) utilises the metric distance between labelled examples. Such methods assume that base and novel classes are from the same dataset distribution, and the metric distance estimations can be generalised to the novel classes upon meta-learning the base classes. ", + "bbox": [ + 217, + 179, + 825, + 290 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Continual Learning Modern continual learning works (Goodfellow et al., 2013; Lee et al., 2017; Zenke et al., 2017) focus primarily on large-scale supervised learning, in contrast to our work that looks into continual few-shot classification across sequential tasks and datasets. Wen et al. (2018) utilise few-shot learning to improve on overcoming catastrophic forgetting via logit matching on a small sample from the previous tasks. The online learning element in this paper is closely related to (Kirkpatrick et al., 2017; Zenke et al., 2017; Ritter et al., 2018a; Nguyen et al., 2018) that overcome catastrophic forgetting for large-scale supervised classification. In particular, our work builds on the online Laplace approximation method in (Ritter et al., 2018a). We extend this to the meta-learning scenario to avoid forgetting in few-shot classification problems. Nguyen et al. (2018) provide the alternative of using variational inference instead of Laplace approximation for approximating the posterior. It is a reasonable approach to adapt variational approximation methods to approximate the posterior of the meta-parameters by adjusting the KL-divergence objective. ", + "bbox": [ + 174, + 308, + 825, + 474 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "6 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 174, + 497, + 326, + 513 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "6.1 OMNIGLOT: SEQUENTIAL TASKS ", + "text_level": 1, + "bbox": [ + 176, + 530, + 439, + 544 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We run the sequential tasks experiment on the Omniglot dataset. To increase the difficulty level, we split the datasets based on the alphabets (super-classes) instead of the characters (classes). The goal of this experiment is to classify the 5-way 5-shot novel tasks sampled from the meta-evaluation alphabets. The experimental details and the alphabet splits can be found in Appendix C.1. ", + "bbox": [ + 176, + 556, + 825, + 613 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We compare our algorithms to the following baselines: ", + "bbox": [ + 176, + 619, + 532, + 633 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "1. Train-On-Everything (TOE): When a new task (or dataset) arrives for meta-training, we randomly re-initialise the meta-parameters and perform meta-training on all tasks (or datasets) encountered so far. Once meta-training is completed in this stage, we do not update the posterior of the meta-parameters like we would in BOMLA and BOMVI. 2. Train-From-Scratch (TFS): Upon the arrival of a new task (or dataset), we randomly reinitialise the meta-parameters and meta-train only on the newly-arrived task (or dataset). Similar to TOE, the posterior of the meta-parameters is not updated in TFS. 3. Follow The Meta-Leader (FTML): We introduce a slight modification to FTML (Finn et al., 2019) on its evaluation method, as FTML is not designed for few-shot learning on unseen tasks. In our experiment, we apply Update-Procedure in FTML to the data from unseen tasks, rather than the data from the same training task as in the original FTML. ", + "bbox": [ + 212, + 646, + 825, + 814 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "As the tasks arrive sequentially for meta-training, Figure 1 shows that BOMLA and BOMVI can accumulate the few-shot classification ability on the novel tasks over time. The knowledge acquired from previous meta-training tasks are carried forward in the form of a posterior, which is then used as the prior when a new task arrives for meta-training. The baselines TOE and TFS have similar performances. Despite having access to all previous tasks, TOE shows no positive forward transfer in the meta-evaluation accuracy each time it encounters a new task. BOMLA with $\\lambda = 0 . 1$ gives the best performance in this experiment. ", + "bbox": [ + 174, + 827, + 825, + 924 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/f1b81faadf230be434c4056a4a78621223884d73db008b674c0cea1f3e45bc91.jpg", + "image_caption": [ + "Figure 1: Meta-evaluation accuracy across 3 seed runs on the novel tasks along meta-training. Left: compares BOMLA to the baselines, centre: compares BOMVI to the baselines, right: compares BOMLA with different $\\lambda$ values to BOMVI. " + ], + "image_footnote": [], + "bbox": [ + 174, + 103, + 823, + 268 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "6.2 PENTATHLON: SEQUENTIAL DATASETS ", + "text_level": 1, + "bbox": [ + 176, + 372, + 480, + 387 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We implement BOMLA and BOMVI to the pentathlon 5-way 1-shot classification sequence: ", + "bbox": [ + 169, + 398, + 777, + 414 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Omniglot CIFAR-FS miniImageNet VGG-Flowers Aircraft ", + "bbox": [ + 261, + 424, + 736, + 439 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "The details of this experiment and the datasets can be found in Appendix C.2. We compare BOMLA and BOMVI to the baseline TOE, and running MAML continuously on the sequential datasets for meta-training. ", + "bbox": [ + 174, + 457, + 823, + 500 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Figure 2 shows that BOMLA and BOMVI are able to prevent few-shot catastrophic forgetting. TOE is also able to retain the few-shot performance as it has access to all datasets encountered so far. However, since it learns all datasets from random re-initialisation each time it encounters a new dataset, the meta-training time required to achieve a similarly good meta-evaluation performance is longer compared to other runs. The sequential MAML, on the other hand, catastrophically forgets the previously learned datasets but has the best performance on new datasets compared to other runs. TOE can be memory-intensive as the dataset sequence becomes longer. It takes the bruteforce approach to prevent forgetting by memorising all datasets. Unlike TOE, our BOML approach only takes the posterior of the meta-parameters into consideration during optimisation. This gives a framework with an algorithmic complexity independent of the length of the dataset sequence. ", + "bbox": [ + 174, + 506, + 825, + 646 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "$@ \\ @ \\left( { \\widehat { a } } \\right)$ New2: errorband ", + "bbox": [ + 839, + 507, + 883, + 561 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Tuning the posterior regulariser $\\lambda$ mentioned in Section 4.2 corresponds to balancing between a smaller performance trade-off on a new dataset and less forgetting on previous datasets. As shown in Appendix C.2 Figure 4, a larger $\\lambda = 1 0 0 0$ results in a more concentrated Gaussian posterior and is therefore unable to learn new datasets well, but can better retain the performances on previous datasets. A smaller value $\\lambda = 1$ on the other hand gives a widespread Gaussian posterior and learns better on new datasets by sacrificing the performance on the previous datasets. In this experiment, the value $\\lambda = 1 0 0$ gives the best balance between old and new datasets. Ideally we seek for a good performance on both old and new datasets, but in reality there is a trade-off between retaining performance on old datasets and learning well on new datasets due to posterior approximation errors. ", + "bbox": [ + 174, + 652, + 825, + 777 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "As shown in Figures 1 and 2, BOMLA with appropriate $\\lambda$ is superior to BOMVI. This is due to BOMLA having a better posterior approximation than BOMVI. Whilst BOMLA has a Gaussian approximate posterior with block-diagonal precision, BOMVI uses a Gaussian mean-field approximate posterior. Trippe & Turner (2017) compared the performances of variational inference with different covariance structures, and discovered that variational inference with block-diagonal covariance performs worse than mean-field approximation. This is because the block-diagonal covariance in variational inference prohibits variance reduction methods such as local reparameterisation trick for Monte Carlo estimation. The variance of the Monte Carlo estimate has been proven problematic (Kingma et al., 2015; Trippe & Turner, 2017). We address this issue in Section 4.3 and Appendix B.2 specifically to the meta-learning setting by modifying the inner loop quick adaptation. ", + "bbox": [ + 174, + 784, + 825, + 924 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "$@ \\ @ \\left( { \\widehat { a } } \\right)$ New2: $\\lambda { \\cdot }$ - comparing plot in App. C.2 ", + "bbox": [ + 838, + 654, + 911, + 737 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/e2f5052bde38ab7aad480616153346453a41dffe2b36ad7c864932e1cf0d6269.jpg", + "image_caption": [ + "Figure 2: Meta-evaluation accuracy across 3 seed runs on each dataset along meta-training (refer to Figure 3 for the enlarged version). Higher accuracy values indicate better results with less forgetting as we proceed to new datasets. BOMLA with $\\lambda = 1 0 0$ gives good performance in the offdiagonal plots (retains performances on previously learned datasets), and has a minor performance trade-off in the diagonal plots (learns less well on new datasets). Sequential MAML gives better performance in the diagonal plots (learns well on new datasets) but worse performance in the offdiagonal plots (forgets previously learned datasets). BOMVI is also able to retain performance on previous datasets, although it may be unable to perform as good as BOMLA due to sampling and estimator variance. " + ], + "image_footnote": [], + "bbox": [ + 174, + 111, + 818, + 434 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "7 CONCLUSION ", + "text_level": 1, + "bbox": [ + 176, + 619, + 318, + 636 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We introduced the Bayesian online meta-learning (BOML) framework with two algorithms: BOMLA and BOMVI. Our framework can overcome catastrophic forgetting in few-shot classification problems and can handle sequentially arriving few-shot tasks for online meta-learning. BOML merged the BOL framework and the MAML algorithm via Laplace approximation or variational continual learning. We proposed the necessary adjustments in the Hessian and Fisher approximation for BOMLA, as we are optimising the meta-parameters for few-shot classification instead of the usual model parameters in large-scale supervised classification. The experiments show that BOMLA and BOMVI are able to retain the few-shot classification ability when trained on sequential datasets with evident distributional shift, resulting in the ability to perform few-shot classification on multiple datasets with a single meta-learned model. BOMLA and BOMVI are also able to continually learn to few-shot classify novel tasks as the meta-training tasks arrive sequentially for learning. ", + "bbox": [ + 174, + 652, + 825, + 806 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 174, + 829, + 285, + 844 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "A. Antoniou, H. Edwards, and A. Storkey. How to Train Your MAML. In International Conference on Learning Representations, 2019. L. Bertinetto, J. F. Henriques, P. Torr, and A. Vedaldi. Meta-Learning with Differentiable ClosedForm Solvers. In International Conference on Learning Representations, 2019. ", + "bbox": [ + 173, + 853, + 825, + 924 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "A. Botev, H. Ritter, and D. Barber. Practical Gauss-Newton Optimisation for Deep Learning. In Proceedings of the 34th International Conference on Machine Learning, 2017. \nG. Denevi, D. Stamos, C. Ciliberto, and M. Pontil. Online-Within-Online Meta-Learning. In Advances in Neural Information Processing Systems 32, 2019. \nJ. S. Denker and Y. LeCun. Transforming Neural-Net Output Levels to Probability Distributions. In Advances in Neural Information Processing Systems 3, 1991. \nC. Finn, P. Abbeel, and S. Levine. Model-Agnostic Meta-Learning for Fast Adaptation of Deep Networks. In Proceedings of the 34th International Conference on Machine Learning, 2017. \nC. Finn, K. Xu, and S. Levine. Probabilistic Model-Agnostic Meta-Learning. In Advances in Neural Information Processing Systems 31, 2018. \nC. Finn, A. Rajeswaran, S. Kakade, and S. Levine. Online Meta-Learning. In Proceedings of the 36th International Conference on Machine Learning, 2019. \nI. J. Goodfellow, M. Mirza, D. Xiao, A. Courville, and Y. Bengio. An Empirical Investigation of Catastrophic Forgetting in Gradient-Based Neural Networks. arXiv preprint, arXiv:1312.6211, 2013. \nJ. Gordon, J. Bronskill, M. Bauer, S. Nowozin, and R. Turner. Meta-Learning Probabilistic Inference for Prediction. In International Conference on Learning Representations, 2019. URL https: //openreview.net/forum?id ${ . } = { }$ HkxStoC5F7. \nE. Grant, C. Finn, S. Levine, T. Darrell, and T. Griffiths. Recasting Gradient-Based Meta-Learning as Hierarchical Bayes. In International Conference on Learning Representations, 2018. \nR. Grosse and J. Martens. A Kronecker-Factored Approximate Fisher Matrix for Convolution Layers. In Proceedings of the 33rd International Conference on Machine Learning, 2016. \nJ. Harrison, A. Sharma, C. Finn, and M. Pavone. Continuous Meta-Learning without Tasks. arXiv preprint, arXiv:1912.08866, 2019. \nX. He, J. Sygnowski, A. Galashov, A. A. Rusu, Y. Teh, and R. Pascanu. Task Agnostic Continual Learning via Meta Learning. arXiv preprint, arXiv:1906.05201, 2019. \nG. Jerfel, E. Grant, T. Griffiths, and K. A. Heller. Reconciling Meta-Learning and Continual Learning with Online Mixtures of Tasks. In Advances in Neural Information Processing Systems 32, 2019. \nD. P. Kingma and J. Ba. Adam: A Method for Stochastic Optimization. In International Conference on Learning Representations, 2015. \nD. P. Kingma, T. Salimans, and M. Welling. Variational Dropout and the Local Reparameterization Trick. In Advances in Neural Information Processing Systems 28, 2015. \nJ. Kirkpatrick, R. Pascanu, N. Rabinowitz, J. Veness, G. Desjardins, A. A. Rusu, K. Milan, J. Quan, T. Ramalho, A. Grabska-Barwinska, D. Hassabis, C. Clopath, D. Kumaran, and R. Hadsell. Overcoming Catastrophic Forgetting in Neural Networks. Proceedings of the National Academy of Sciences, 2017. \nG. Koch, R. Zemel, and R. Salakhutdinov. Siamese Neural Networks for One-Shot Image Recognition. In 32th International Conference on Machine Learning Deep Learning Workshop, 2015. \nB. Lake, R. Salakhutdinov, J. Gross, and J.B. Tenenbaum. One Shot Learning of Simple Visual Concepts. In Proceedings of the 33rd Annual Conference of the Cognitive Science Society, 2011. \nS. Lee, J. Kim, J. Jun, J. Ha, and B. Zhang. Overcoming Catastrophic Forgetting by Incremental Moment Matching. In Advances in Neural Information Processing Systems 30, 2017. \nF. Li, R. Fergus, and P. Perona. Learning Generative Visual Models from Few Training Examples: An Incremental Bayesian Approach Tested on 101 Object Categories. In Proceedings of the IEEE Computer Society Conference on Computer Vision and Pattern Recognition Workshops, 2004. \nF. Li, R. Fergus, and P. Perona. One-Shot Learning of Object Categories. IEEE Transactions on Pattern Analysis and Machine Intelligence, 2006. \nZ. Li, F. Zhou, F. Chen, and H. Li. Meta-SGD: Learning to Learn Quickly for Few-Shot Learning. arXiv preprint, arXiv:1707.09835, 2017. \nD. J. C. MacKay. A Practical Bayesian Framework for Backpropagation Networks. Neural Computation, 1992. \nS. Maji, E. Rahtu, J. Kannala, M. Blaschko, and A. Vedaldi. Fine-Grained Visual Classification of Aircraft. arXiv preprint, arXiv:1306.5151, 2013. \nJ. Martens and R. Grosse. Optimizing Neural Networks with Kronecker-Factored Approximate Curvature. In Proceedings of the 32nd International Conference on Machine Learning, 2015. \nE. G. Miller, N. E. Matsakis, and P. A. Viola. Learning from One Example Through Shared Densities on Transforms. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, 2000. \nC. V. Nguyen, Y. Li, T. D. Bui, and R. E. Turner. Variational Continual Learning. In International Conference on Learning Representations, 2018. \nA. Nichol, J. Achiam, and J. Schulman. On First-Order Meta-Learning Algorithms. arXiv preprint, arXiv:1803.02999, 2018. \nM. Nilsback and A. Zisserman. Automated Flower Classification over a Large Number of Classes. In 2008 Sixth Indian Conference on Computer Vision, Graphics and Image Processing, 2008. \nM. Opper. A Bayesian Approach to Online Learning. Cambridge University Press, 1998. \nS. Ravi and H. Larochelle. Optimization as a Model for Few-Shot Learning. In International Conference on Learning Representations, 2017. \nH. Ritter, A. Botev, and D. Barber. Online Structured Laplace Approximations for Overcoming Catastrophic Forgetting. In Advances in Neural Information Processing Systems 31, 2018a. \nH. Ritter, A. Botev, and D. Barber. A Scalable Laplace Approximation for Neural Networks. In International Conference on Learning Representations, 2018b. \nH. Robbins and S. Monro. A Stochastic Approximation Method. The Annals of Mathematical Statistics, 1951. \nA. A. Rusu, D. Rao, J. Sygnowski, O. Vinyals, R. Pascanu, S. Osindero, and R. Hadsell. MetaLearning with Latent Embedding Optimization. In International Conference on Learning Representations, 2019. \nA. Santoro, S. Bartunov, M. Botvinick, D. Wierstra, and T. Lillicrap. Meta-Learning with MemoryAugmented Neural Networks. In Proceedings of the 33rd International Conference on Machine Learning, 2016. \nJ. Schmidhuber. Evolutionary Principles in Self-Referential Learning. On Learning How to Learn: The Meta-Meta-Meta...-Hook. Diploma thesis, Institut fur Informatik, Technische Universit ¨ at¨ Munchen, 1987. ¨ \nJ. Snell, K. Swersky, and R. Zemel. Prototypical Networks for Few-Shot Learning. In Advances in Neural Information Processing Systems 30, 2017. \nS. Thrun and L. Pratt. Learning to Learn: Introduction and Overview. Springer, Boston, MA, 1998. \nB. L. Trippe and R. E. Turner. Overpruning in Variational Bayesian Neural Networks. In Advances in Neural Information Processing Systems 30 – Advances in Approximate Bayesian Inference Workshop, 2017. \nO. Vinyals, C. Blundell, T. Lillicrap, K. Kavukcuoglu, and D. Wierstra. Matching Networks for One Shot Learning. In Advances in Neural Information Processing Systems 29, 2016. \nJ. Wen, Y. Cao, and R. Huang. Few-Shot Self Reminder to Overcome Catastrophic Forgetting. arXiv preprint, arXiv:1812.00543, 2018. \nJ. Yoon, T. Kim, O. Dia, S. Kim, Y. Bengio, and S. Ahn. Bayesian Model-Agnostic Meta-Learning. In Advances in Neural Information Processing Systems 31, 2018. \nF. Zenke, B. Poole, and S. Ganguli. Continual Learning through Synaptic Intelligence. In Proceedings of the 34th International Conference on Machine Learning, 2017. \nZ. Zhuang, Y. Wang, K. Yu, and S. Lu. No-Regret Non-Convex Online Meta-Learning. arXiv preprint, arXiv:1910.10196, 2019. ", + "bbox": [ + 169, + 85, + 828, + 934 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "", + "bbox": [ + 169, + 65, + 828, + 929 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "", + "bbox": [ + 169, + 102, + 826, + 246 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "A BACKGROUND ", + "text_level": 1, + "bbox": [ + 176, + 102, + 331, + 118 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "This section provides a background explanation of using BOL to find the posterior of a model parameters and overcome catastrophic forgetting, commonly for large-scale supervised classification. We will then apply this approach to our recursion in Eq. (5). ", + "bbox": [ + 174, + 132, + 823, + 175 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "The posterior is typically intractable due to the enormous size of the modern neural network architectures. This leads to the requirement for a good approximation of the posterior of the metaparameters. A particularly suitable candidate for this purpose in meta-learning is the Laplace approximation (MacKay, 1992; Ritter et al., 2018b), as it simply adds a quadratic regulariser to the training objective. Variational inference is another possible method to obtain an approximation for the posterior of the meta-parameters. ", + "bbox": [ + 174, + 181, + 825, + 266 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "A.1 BAYESIAN ONLINE LEARNING ", + "text_level": 1, + "bbox": [ + 176, + 281, + 426, + 295 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Upon the arrival of the new $\\mathcal { D } _ { t + 1 }$ , we are interested in a MAP estimate $\\theta ^ { * } = \\arg \\operatorname* { m a x } _ { \\theta } p ( \\theta | \\mathcal { D } _ { 1 : t + 1 } )$ for the parameters $\\theta$ of a neural network. Using Bayes’ rule on the posterior gives the recursive formula ", + "bbox": [ + 174, + 306, + 825, + 348 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/50c4eeba784d039aea493d055edcf74d0628b62536ebcf5612919a59d04374f0.jpg", + "text": "$$\np ( \\theta | \\mathcal { D } _ { 1 : t + 1 } ) \\propto p ( \\mathcal { D } _ { t + 1 } | \\theta ) p ( \\theta | \\mathcal { D } _ { 1 : t } )\n$$", + "text_format": "latex", + "bbox": [ + 380, + 348, + 616, + 364 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "where Eq. (16) follows from the assumption that each dataset is independent given $\\theta$ . As the normalised posterior $p ( \\theta | \\mathcal { D } _ { 1 : t } )$ is usually intractable, it may be approximated by a parametric distribution $q$ with parameter $\\phi _ { t }$ . The BOL framework consists of the update step and the projection step (Opper, 1998). The update step uses the approximate posterior $q ( \\theta | \\phi _ { t } )$ obtained from the previous step for an update in the form of Eq. (16): ", + "bbox": [ + 173, + 366, + 825, + 434 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/053143aefc5a8d71314f3d247199e8e8c233a1d5a7f82df99d9438bd84bcefc4.jpg", + "text": "$$\np ( \\theta | \\mathcal { D } _ { 1 : t + 1 } , \\phi _ { t } ) \\propto p ( \\mathcal { D } _ { t + 1 } | \\theta ) q ( \\theta | \\phi _ { t } ) .\n$$", + "text_format": "latex", + "bbox": [ + 374, + 436, + 622, + 454 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "The new posterior $p ( \\theta | \\mathcal { D } _ { 1 : t + 1 } , \\phi _ { t } )$ might not belong to the same parametric family as $q ( \\theta | \\phi _ { t } )$ . In this case, the new posterior has to be projected into the same parametric family to obtain $q ( \\theta | \\phi _ { t + 1 } )$ . Opper (1998) performs this projection by minimising the KL-divergence between the new posterior and the parametric $q$ , while Ritter et al. (2018a) use the Laplace approximation and Nguyen et al. (2018) use variational inference. ", + "bbox": [ + 174, + 455, + 825, + 525 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "A.2 LAPLACE APPROXIMATION ", + "text_level": 1, + "bbox": [ + 176, + 541, + 405, + 556 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "We consider finding a MAP estimate following from Eq. (16): ", + "bbox": [ + 174, + 566, + 588, + 582 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/9d85b6ebff62fbeeb39d1d697c4878400e7b766c9cde0013e04e871b1e5d123f.jpg", + "text": "$$\n\\theta _ { t + 1 } ^ { * } = \\arg \\operatorname* { m a x } _ { \\theta } p ( \\theta | \\mathcal { D } _ { 1 : t + 1 } ) = \\arg \\operatorname* { m a x } _ { \\theta } \\{ \\log p ( \\mathcal { D } _ { t + 1 } | \\theta ) + \\log p ( \\theta | \\mathcal { D } _ { 1 : t } ) \\} .\n$$", + "text_format": "latex", + "bbox": [ + 254, + 583, + 743, + 608 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Since the posterior $p ( \\theta | \\mathcal { D } _ { 1 : t } )$ of a neural network is intractable except for small architectures, the unnormalised posterior $\\tilde { p } ( \\theta | \\mathcal { D } _ { 1 : t } )$ is considered instead. Performing Taylor expansion on the logarithm of the unnormalised posterior around a mode ${ \\boldsymbol { \\theta } } _ { t } ^ { * }$ gives ", + "bbox": [ + 173, + 611, + 821, + 654 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/6e164b79457e9d746c6db551d3aec927946fffa4599c2c369f8bc272ac1af928.jpg", + "text": "$$\n\\log \\tilde { p } ( \\theta | \\mathcal { D } _ { 1 : t } ) \\simeq \\log \\tilde { p } ( \\theta | \\mathcal { D } _ { 1 : t } ) \\big | _ { \\theta = \\theta _ { t } ^ { * } } - \\frac { 1 } { 2 } ( \\theta - \\theta _ { t } ^ { * } ) ^ { T } A _ { t } ( \\theta - \\theta _ { t } ^ { * } ) ,\n$$", + "text_format": "latex", + "bbox": [ + 294, + 655, + 704, + 685 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "where $A _ { t }$ denotes the Hessian matrix of the negative log-posterior evaluated at $\\theta _ { t } ^ { * }$ . The expansion in Eq. (19) suggests using a Gaussian approximate posterior. Given the parameter $\\phi _ { t } = \\{ \\mu _ { t } , \\Lambda _ { t } \\}$ , a mean $\\mu _ { t + 1 }$ for step $t + 1$ can be obtained by finding a mode of the approximate posterior as follows via standard gradient-based optimisation: ", + "bbox": [ + 174, + 685, + 825, + 741 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/e30a9fc2b0abe8259f6075a61a749cf139f06448d9e71a45118af62aa94d8b78.jpg", + "text": "$$\n\\mu _ { t + 1 } = \\arg \\operatorname* { m a x } _ { \\boldsymbol { \\theta } } \\log p ( \\mathcal { D } _ { t + 1 } | \\boldsymbol { \\theta } ) - \\frac { 1 } { 2 } ( \\boldsymbol { \\theta } - \\boldsymbol { \\mu } _ { t } ) ^ { T } \\Lambda _ { t } ( \\boldsymbol { \\theta } - \\boldsymbol { \\mu } _ { t } ) .\n$$", + "text_format": "latex", + "bbox": [ + 305, + 743, + 692, + 775 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "The precision matrix is updated as $\\Lambda _ { t + 1 } = H _ { t + 1 } + \\Lambda _ { t }$ , where $H _ { t + 1 }$ is the Hessian matrix of the negative log-likelihood for $\\mathcal { D } _ { t + 1 }$ evaluated at $\\mu _ { t + 1 }$ with entries ", + "bbox": [ + 176, + 776, + 820, + 806 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/3d76cacc8904531fc2e50381c54e1d3f2b06f30c94bcb0c2d8e5d129428e2753.jpg", + "text": "$$\nH _ { t + 1 } ^ { i j } = - \\frac { \\partial ^ { 2 } } { \\partial \\theta ^ { ( i ) } \\partial \\theta ^ { ( j ) } } \\log p ( \\mathcal { D } _ { t + 1 } \\vert \\theta ) \\bigg \\vert _ { \\theta = \\mu _ { t + 1 } } .\n$$", + "text_format": "latex", + "bbox": [ + 351, + 808, + 647, + 845 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "For a neural network model, gradient-based optimisation methods such as SGD (Robbins & Monro, 1951) and Adam (Kingma & Ba, 2015) are the standard gradient-based methods in finding a mode for the Laplace approximation in Eq. (20). We show in Section 4.1 that this provides a well-suited skeleton to implement Bayesian online meta-learning in Eq. (5) with the mode-seeking optimisation procedure. ", + "bbox": [ + 174, + 853, + 825, + 924 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "A.3 BLOCK-DIAGONAL HESSIAN APPROXIMATION ", + "text_level": 1, + "bbox": [ + 176, + 103, + 532, + 117 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Since the full Hessian matrix in Eq. (21) is intractable for large neural networks, we seek for an efficient and relatively close approximation to the Hessian matrix. Diagonal approximations (Denker & LeCun, 1991; Kirkpatrick et al., 2017) are memory and computationally efficient, but sacrifice approximation accuracy as they ignore the interaction between parameters. Consider instead separating the Hessian matrix into blocks where different blocks are associated to different layers of a neural network. A particular diagonal block corresponds to the Hessian for a particular layer of the neural network. The block-diagonal Kronecker-factored approximation (Martens & Grosse, 2015; Grosse & Martens, 2016; Botev et al., 2017) utilises the fact that each diagonal block of the Hessian is Kronecker-factored for a single data point. This provides a better Hessian approximation as it takes the parameter interactions within a layer into consideration. ", + "bbox": [ + 173, + 130, + 825, + 270 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "A.3.1 KRONECKER-FACTORED APPROXIMATION ", + "text_level": 1, + "bbox": [ + 176, + 286, + 521, + 300 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Consider a neural network with $L$ layers and parameter $\\theta = [ \\mathrm { v e c } ( W _ { 1 } ) ^ { T } , \\dots , \\mathrm { v e c } ( W _ { L } ) ^ { T } ] ^ { T }$ where $W _ { \\ell }$ is the weight of layer $\\ell$ for $\\ell = \\{ 1 , \\dots , L \\}$ and vec denotes stacking the columns of a matrix into a vector. We denote the input of the neural network as $a _ { 0 } = x$ and the output of the neural network as $h _ { L }$ . As the input passes through each layer of the neural network, we have the pre-activation for layer $\\ell$ as $h _ { \\ell } = W _ { \\ell } a _ { \\ell - 1 }$ and the activation as $a _ { \\ell } = f _ { \\ell } ( h _ { \\ell } )$ where $f _ { \\ell }$ is the activation function of layer $\\ell$ . If a bias vector is applicable in calculating the pre-activation of a layer, we append the bias vector to the last column of the weight matrix and append a scalar one to the last element of the activation. The gradient $g _ { \\ell }$ of loss $L _ { \\theta } ( \\dot { x _ { \\star } } y ) = - \\log p ( \\bar { y } | \\dot { x } , \\theta )$ with respect to $h _ { \\ell }$ for an input-target pair $( x , y )$ is the pre-activation gradient for layer $\\ell$ . ", + "bbox": [ + 173, + 310, + 825, + 438 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Martens $\\&$ Grosse (2015) show that the $\\ell$ -th diagonal block $F _ { \\ell }$ of the Fisher information matrix $F$ can be approximated by the Kronecker product between the expectation of the outer product of the $( \\ell - 1 )$ -th layer activation and the $\\ell$ -th layer pre-activation gradient: ", + "bbox": [ + 174, + 443, + 825, + 486 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/01d6f1816d037e2fc2773e2e0641af57f957eeb4d764a0fa28da0a46ab8d5996.jpg", + "text": "$$\n\\begin{array} { r l } & { F _ { \\ell } = \\mathbb { E } _ { x , y } \\bigl [ a _ { \\ell - 1 } a _ { \\ell - 1 } ^ { T } \\otimes g _ { \\ell } g _ { \\ell } ^ { T } \\bigr ] } \\\\ & { \\qquad \\approx \\mathbb { E } _ { x } \\bigl [ a _ { \\ell - 1 } a _ { \\ell - 1 } ^ { T } \\bigr ] \\otimes \\mathbb { E } _ { y | x } \\bigl [ g _ { \\ell } g _ { \\ell } ^ { T } \\bigr ] } \\\\ & { \\qquad = A _ { \\ell - 1 } \\otimes G _ { \\ell } , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 385, + 492, + 612, + 555 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "where $A _ { \\ell - 1 } = \\mathbb { E } _ { x } [ a _ { \\ell - 1 } a _ { \\ell - 1 } ^ { T } ]$ and $G _ { \\ell } = \\mathbb { E } _ { y | x } [ g _ { \\ell } g _ { \\ell } ^ { T } ]$ . Grosse $\\&$ Martens (2016) extend the blockdiagonal Kronecker-factored Fisher approximation for fully-connected layers to that for convolution layers. The Gaussian log-probability term can be calculated efficiently without expanding the Kronecker product using the identity ", + "bbox": [ + 174, + 561, + 823, + 619 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/8f8bc2f05c3b8eb69e818f06083bed3fdcb836a3458238e31051d0c193a81042.jpg", + "text": "$$\n\\begin{array} { r } { ( A _ { \\ell - 1 } \\otimes G _ { \\ell } ) \\operatorname { v e c } ( W _ { \\ell } - W _ { \\ell } ^ { * } ) = \\operatorname { v e c } ( G _ { \\ell } ( W _ { \\ell } - W _ { \\ell } ^ { * } ) A _ { \\ell - 1 } ^ { T } ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 303, + 627, + 694, + 647 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "As we mentioned in Section 4.2, approximating the Hessian with the one-step SGD inner loop assumption results in having terms that multiply two or more Kronecker products together. The $\\ell$ -th diagonal block of $\\widetilde { F }$ in Eq. (11) is ", + "bbox": [ + 174, + 661, + 825, + 707 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/c0cc31057c73ef43fe3c70286e31fc7ef0fd43efcf4487b653b25d8250b1bc59.jpg", + "text": "$$\n\\widetilde { F } _ { \\ell } = \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } ( I - A _ { \\ell - 1 } ^ { m } \\otimes G _ { \\ell } ^ { m } ) ( \\widetilde { A } _ { \\ell - 1 } ^ { m } \\otimes \\widetilde { G } _ { \\ell } ^ { m } ) ( I - A _ { \\ell - 1 } ^ { m } \\otimes G _ { \\ell } ^ { m } ) ^ { T } ,\n$$", + "text_format": "latex", + "bbox": [ + 276, + 714, + 722, + 758 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "where $A _ { \\ell - 1 } ^ { m } \\otimes G _ { \\ell } ^ { m }$ is the Kronecker product corresponding to the Hessian in Eq. (13) for task or batch $m$ . We expand $\\widetilde { F } _ { \\ell }$ using the Kronecker product property: ", + "bbox": [ + 176, + 765, + 823, + 799 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/b9369fd3cf80040f481e2e2351109b05137f442bca53c0c61fab746d7ecd9e03.jpg", + "text": "$$\n\\begin{array} { r } { ( A _ { \\ell - 1 } ^ { m } \\otimes G _ { \\ell } ^ { m } ) ( \\widetilde { A } _ { \\ell - 1 } ^ { m } \\otimes \\widetilde { G } _ { \\ell } ^ { m } ) = A _ { \\ell - 1 } ^ { m } \\widetilde { A } _ { \\ell - 1 } ^ { m } \\otimes G _ { \\ell } ^ { m } \\widetilde { G } _ { \\ell } ^ { m } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 320, + 806, + 678, + 828 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "This gives ", + "bbox": [ + 173, + 834, + 245, + 849 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/0d88d94963f128eab55eecbc9315a4c835701fc077ce460c2229d058604d9c5d.jpg", + "text": "$$\n\\begin{array} { r l r } { \\widetilde { F } _ { \\ell } = \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } \\Big \\{ \\widetilde { A } _ { \\ell - 1 } ^ { m } \\otimes \\widetilde { G } _ { \\ell } ^ { m } - A _ { \\ell - 1 } ^ { m } \\widetilde { A } _ { \\ell - 1 } ^ { m } \\otimes G _ { \\ell } ^ { m } \\widetilde { G } _ { \\ell } ^ { m } - \\widetilde { A } _ { \\ell - 1 } ^ { m } ( A _ { \\ell - 1 } ^ { m } ) ^ { T } \\otimes \\widetilde { G } _ { \\ell } ^ { m } ( G _ { \\ell } ^ { m } ) ^ { T } } \\\\ & { } & { + A _ { \\ell - 1 } ^ { m } \\widetilde { A } _ { \\ell - 1 } ^ { m } ( A _ { \\ell - 1 } ^ { m } ) ^ { T } \\otimes G _ { \\ell } ^ { m } \\widetilde { G } _ { \\ell } ^ { m } ( G _ { \\ell } ^ { m } ) ^ { T } \\Big \\} . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 207, + 858, + 761, + 930 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Finally, moving the meta-batch (or batch) averaging into the Kronecker factors gives the approximation: ", + "bbox": [ + 171, + 103, + 823, + 132 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/79017d6ac10f7bd4d154b80b7a499facd06abe7c9ae7a9273c24d017271f9433.jpg", + "text": "$$\n\\begin{array} { r l } & { \\widetilde { F } _ { \\ell } \\approx \\widetilde { A } _ { \\ell - 1 } \\otimes \\widetilde { G } _ { \\ell } - A _ { \\ell - 1 } \\widetilde { A } _ { \\ell - 1 } \\otimes G _ { \\ell } \\widetilde { G } _ { \\ell } - \\widetilde { A } _ { \\ell - 1 } ( A _ { \\ell - 1 } ) ^ { T } \\otimes \\widetilde { G } _ { \\ell } ( G _ { \\ell } ) ^ { T } } \\\\ & { \\qquad + A _ { \\ell - 1 } \\widetilde { A } _ { \\ell - 1 } ( A _ { \\ell - 1 } ) ^ { T } \\otimes G _ { \\ell } \\widetilde { G } _ { \\ell } ( G _ { \\ell } ) ^ { T } , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 261, + 136, + 736, + 180 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "where $\\begin{array} { r } { \\tilde { A } _ { \\ell - 1 } = \\frac { 1 } { M } \\sum _ { m } \\tilde { A } _ { \\ell - 1 } ^ { m } , \\tilde { G } _ { \\ell } = \\frac { 1 } { M } \\sum _ { m } \\tilde { G } _ { \\ell } ^ { m } , A _ { \\ell - 1 } \\tilde { A } _ { \\ell - 1 } = \\frac { 1 } { M } \\sum _ { m } A _ { \\ell - 1 } ^ { m } \\tilde { A } _ { \\ell - 1 } ^ { m } . } \\end{array}$ and so on. ", + "bbox": [ + 173, + 186, + 795, + 209 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "A.3.2 POSTERIOR REGULARISING HYPERPARAMETER FOR PRECISION UPDATE ", + "bbox": [ + 174, + 222, + 727, + 237 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Ritter et al. (2018a) use a hyperparameter $\\lambda$ as a multiplier to the Hessian when updating the precision: ", + "bbox": [ + 173, + 246, + 821, + 273 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/6bf45a96e5aabdd9e5a0e8a4301df23f10090ac658485151fff6efd9fe5c8268.jpg", + "text": "$$\n\\Lambda _ { t + 1 } = \\lambda H _ { t + 1 } + \\Lambda _ { t } .\n$$", + "text_format": "latex", + "bbox": [ + 426, + 275, + 571, + 292 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "In the large-scale supervised classification setting, this hyperparameter has a regularising effect on the Gaussian posterior approximation for a balance between having a good performance on a new dataset and maintaining the performance on previous datasets (Ritter et al., 2018a). A large $\\lambda$ results in a sharply peaked Gaussian posterior and is therefore unable to learn new datasets well, but can prevent forgetting previously learned datasets. A small $\\lambda$ on the other hand gives a dispersed Gaussian posterior and allows better performance on new datasets by sacrificing the performance on the previous datasets. ", + "bbox": [ + 173, + 296, + 825, + 395 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "A.4 VARIATIONAL CONTINUAL LEARNING ", + "text_level": 1, + "bbox": [ + 176, + 414, + 478, + 428 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "The variational continual learning method (Nguyen et al., 2018) also provides a suitable metatraining framework for Bayesian online meta-learning in Eq. (5). Consider approximating the posterior $q$ by minimising the KL-divergence between the parametric $q$ and the new posterior as in the projection step in Eq. (17), where $q$ belongs to some pre-determined approximate posterior family $\\mathcal { Q }$ with parameters $\\phi _ { t }$ : ", + "bbox": [ + 176, + 439, + 823, + 511 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/d9274b26e342e6942600d43106c57c106ad5c5fc74a1e9cf7cb8f03a8668d6e4.jpg", + "text": "$$\n\\begin{array} { r l } & { q ( \\theta | \\phi _ { t + 1 } ) = \\underset { q \\in \\mathcal { Q } } { \\arg \\operatorname* { m i n } } D _ { \\mathrm { K L } } ( q ( \\theta | \\phi ) \\| p ( \\mathcal { D } _ { t + 1 } | \\theta ) q ( \\theta | \\phi _ { t } ) ) } \\\\ & { \\qquad = \\underset { q \\in \\mathcal { Q } } { \\arg \\operatorname* { m i n } } \\big \\{ - \\mathbb { E } _ { q ( \\theta | \\phi ) } [ \\log p ( \\mathcal { D } _ { t + 1 } | \\theta ) ] + D _ { \\mathrm { K L } } ( q ( \\theta | \\phi ) \\| q ( \\theta | \\phi _ { t } ) ) \\big \\} . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 246, + 516, + 748, + 575 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "The optimisation in Eq. (32) leads to the objective ", + "bbox": [ + 174, + 588, + 504, + 604 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/2e930ae7499d5b3ec81d6291b95368d3720d81d32369c6162a5a05c122d07e72.jpg", + "text": "$$\n\\phi _ { t + 1 } = \\underset { \\phi } { \\arg \\operatorname* { m i n } } \\big \\{ - \\mathbb { E } _ { q ( \\theta | \\phi ) } [ \\log p ( \\mathcal { D } _ { t + 1 } | \\theta ) ] + D _ { \\mathrm { K L } } ( q ( \\theta | \\phi ) \\| q ( \\theta | \\phi _ { t } ) ) \\big \\} .\n$$", + "text_format": "latex", + "bbox": [ + 264, + 611, + 735, + 640 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "One can use a Gaussian mean-field approximate posterior $\\begin{array} { r } { q ( \\theta | \\phi _ { t } ) = \\prod _ { d = 1 } ^ { D } N ( \\mu _ { t , d } , \\sigma _ { t , d } ^ { 2 } ) } \\end{array}$ , where $\\phi _ { t } = \\{ \\mu _ { t , d } , \\sigma _ { t , d } \\} _ { d = 1 } ^ { D }$ and $D = \\dim ( \\theta )$ . The first term in Eq. (33) can be estimated via Monte Carlo with local reparameterisation trick (Kingma et al., 2015), and the second KL-divergence term has a closed form for Gaussian distributions. ", + "bbox": [ + 173, + 648, + 825, + 710 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "B ALGORITHMS ", + "text_level": 1, + "bbox": [ + 176, + 732, + 325, + 748 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "B.1 BOMLA AND BOMVI", + "text_level": 1, + "bbox": [ + 176, + 763, + 367, + 779 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Algorithm 1 gives the pseudo-code of the BOMLA algorithm for the sequential datasets setting, with the corresponding variation for the sequential tasks setting in brackets. The algorithm is formed of three main elements: meta-training on a specific dataset or task (line 4 – 11), updating the Gaussian mean (line 12) and updating the Gaussian precision (line 13 – 16). For the precision update, we approximate the Hessian using block-diagonal Kronecker-factored approximation (BD-KFA). ", + "bbox": [ + 174, + 790, + 825, + 861 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Algorithm 2 gives the pseudo-code of the BOMVI algorithm for the sequential datasets setting, with the corresponding variation for the sequential tasks setting in brackets. The algorithm is formed of two main elements: meta-training on a specific dataset or task (line 4 – 11) and updating the parameters of the Gaussian mean-field approximate posterior (line 12). ", + "bbox": [ + 174, + 867, + 825, + 924 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "1: Require: sequential datasets (or tasks) $\\widetilde { \\mathcal { D } } _ { 1 } , \\ldots , \\widetilde { \\mathcal { D } } _ { T }$ , learning rate $\\alpha$ , posterior regulariser $\\lambda$ , \nnumber of meta-training iterations (or epochs) $J$ , meta-batch size (or number of batches) $M$ \n2: Initialise: $\\mu _ { 0 } , \\Lambda _ { 0 }$ , $\\theta$ \n3: for $t = 1$ to $T$ do \n4: for $i = 1 , \\dots , J$ do $\\triangleright$ meta-training on dataset or task $\\widetilde { \\cal D } _ { t } \\quad$ New: added $\\cdot$ \n5: for $m = 1$ to $M$ do \n6: Sample task (or split the batch) $\\widetilde { \\mathcal { D } } _ { t } ^ { m } = \\widetilde { \\mathcal { D } } _ { t } ^ { m , S } \\cup \\widetilde { \\mathcal { D } } _ { t } ^ { m , Q }$ \n7: Inner update $\\tilde { \\theta } ^ { m } = S G D _ { k } ( \\mathcal { L } ( \\theta , \\widetilde { D } _ { t } ^ { m , S } ) )$ \n8: end for \n9: Evaluate loss $f _ { t } ^ { \\mathrm { B o u L A } } ( \\theta , \\mu _ { t - 1 } , \\Lambda _ { t - 1 } )$ in Eq. (8) \n10: Outer update $\\theta \\gets \\theta - \\alpha \\nabla _ { \\theta } f _ { t } ^ { \\mathrm { B o M L A } } ( \\theta , \\mu _ { t - 1 } , \\Lambda _ { t - 1 } )$ \n11: end for \n12: Update mean $\\mu _ { t } \\gets \\theta$ $\\triangleright$ update posterior mean \n13: For sequential datasets, sample $M$ tasks for Hessian approximation \n14: Run inner update in line 7 for each task (or for each batch) \n15: Approximate $\\widetilde { H } _ { t }$ with BD-KFA to $\\widetilde { F }$ in Eq. (11) \n16: Update precision $\\Lambda _ { t } \\gets \\lambda \\widetilde { H } _ { t } + \\Lambda _ { t - 1 }$ $\\triangleright$ update posterior precision \n17: end for ", + "bbox": [ + 176, + 119, + 826, + 381 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Algorithm 2 Bayesian online meta-learning with variational inference (BOMVI) ", + "text_level": 1, + "bbox": [ + 173, + 398, + 704, + 415 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "1: Require: sequential datasets (or tasks) $\\widetilde { \\mathcal { D } } _ { 1 } , \\ldots , \\widetilde { \\mathcal { D } } _ { T }$ , learning rate $\\alpha$ , number of meta-training \niterations (or epochs) $J$ , meta-batch size (or number of batches) $M$ \n2: Initialise: $\\phi _ { 0 } = \\{ \\mu _ { 0 } , \\sigma _ { 0 } \\}$ \n3: for $t = 1$ to $T$ do \n4: for $i = 1 , 2 , \\dots , J$ do $\\triangleright$ meta-training on dataset or task $\\widetilde { \\cal D } _ { t } \\quad$ New: added $\\cdot$ \n5: for $m = 1$ to $M$ do \n6: Sample task (or split the batch) $\\widetilde { \\mathcal { D } } _ { t } ^ { m } = \\widetilde { \\mathcal { D } } _ { t } ^ { m , S } \\cup \\widetilde { \\mathcal { D } } _ { t } ^ { m , Q }$ \n7: Inner update $\\tilde { \\theta } ^ { m } = S G D _ { k } ( \\mathcal { L } ( \\theta , \\widetilde { D } _ { t } ^ { m , S } ) )$ \n8: end for \n9: Evaluate loss $f _ { t } ^ { \\mathrm { B o u V I } } ( \\phi , \\phi _ { t - 1 } )$ in Eq. (15) \n10: Outer update $\\bar { \\mu } \\mu - \\alpha \\nabla _ { \\mu } f _ { t } ^ { \\mathrm { B o M V I } } ( \\phi , \\phi _ { t - 1 } )$ , and $\\sigma \\gets \\sigma - \\alpha \\nabla _ { \\sigma } f _ { t } ^ { \\mathrm { B o M V I } } ( \\phi , \\phi _ { t - 1 } )$ \n11: end for \n12: Update $\\mu _ { t } \\mu$ and $\\sigma _ { t } \\gets \\sigma$ . update posterior parameters \n13: end for ", + "bbox": [ + 178, + 417, + 826, + 619 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "B.2 BOMVI MONTE CARLO ESTIMATOR", + "text_level": 1, + "bbox": [ + 176, + 645, + 467, + 660 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Recall that the BOMVI objective is: ", + "bbox": [ + 174, + 671, + 410, + 686 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/678b43c1f0a68aeca4af82d036852f4b1f5ef45bccb79aff2378b8efe0c30363.jpg", + "text": "$$\nf _ { t + 1 } ^ { \\mathrm { B o M V I } } ( \\phi , \\phi _ { t } ) = - \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } \\mathbb { E } _ { q ( \\theta | \\phi ) } \\big [ \\log p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { m , Q } | \\widetilde { \\theta } ^ { m } ) \\big ] - \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } \\mathbb { E } _ { q ( \\theta | \\phi ) } \\big [ \\log p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { m , S } | \\theta ) \\big ]\n$$", + "text_format": "latex", + "bbox": [ + 200, + 691, + 794, + 756 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "where term o $\\tilde { \\theta } ^ { m } = S G D _ { k } ( \\mathcal { L } ( \\theta , \\widetilde { D } _ { t + 1 } ^ { m , S } ) )$ for diffic $m = 1 , \\ldots , M$ . The Monte Carlo estimator for th as every sampled meta-parameters firstfor $\\theta _ { r }$ $r = 1 , \\ldots , R$ has to undergo a few-shot quick adaptation prior to the log-likelihood evaluation. As a consequence the estimator is prone to a large variance. Moreover, every quickly-adapted sample $\\theta _ { r }$ contributes to the meta-learning gradients of the posterior mean and covariance, resulting in a high computational cost when taking the meta-gradients. ", + "bbox": [ + 173, + 761, + 826, + 848 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "To solve these impediments, we introduce a slight modification to the SGD quick adaptation ${ \\widetilde { \\theta } } ^ { m }$ . Instead of taking the gradients with respect to the sampled meta-parameters, we consider the gradients with respect to the posterior mean. A one-step SGD quick adaptation, for instance, becomes: ", + "bbox": [ + 174, + 856, + 825, + 900 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/77ca9b68f79603d9329d84362522d23df65f4bb92faed2f1cf7c9cf9d6a699ef.jpg", + "text": "$$\n\\tilde { \\theta } ^ { m } = \\theta - \\alpha \\nabla _ { \\mu _ { t } } \\mathcal { L } ( \\mu _ { t } , \\mathcal { \\tilde { D } } _ { t + 1 } ^ { m , S } ) .\n$$", + "text_format": "latex", + "bbox": [ + 398, + 905, + 599, + 926 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "This gives $\\widetilde { \\theta } ^ { m } \\sim N ( \\widetilde { \\mu } _ { t } , \\mathrm { d i a g } ( \\sigma _ { t } ^ { 2 } ) )$ where ", + "bbox": [ + 176, + 102, + 442, + 119 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/bc98546152e2a855f7709b260cba28d4761b62fd3ccf9110ad7afd71d3b6ae7a.jpg", + "text": "$$\n\\widetilde { \\mu } _ { t } = \\mu _ { t } - \\alpha \\nabla _ { \\mu _ { t } } \\mathcal { L } ( \\mu _ { t } , \\widetilde { D } _ { t + 1 } ^ { m , S } ) ,\n$$", + "text_format": "latex", + "bbox": [ + 397, + 121, + 599, + 142 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "since $\\theta \\sim N ( \\mu _ { t } , \\mathrm { d i a g } ( \\sigma _ { t } ^ { 2 } ) )$ . A quick adaptation with more steps works in a similar fashion. With this modification, we can calculate the Monte Carlo estimator for the first term using the local reparameterisation trick as usual. ", + "bbox": [ + 173, + 145, + 825, + 188 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "C EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 208, + 331, + 224 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "C.1 OMNIGLOT: SEQUENTIAL TASKS ", + "text_level": 1, + "bbox": [ + 176, + 238, + 442, + 253 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "In this experiment, we use the model architecture proposed by Vinyals et al. (2016) that takes 4 modules with 64 filters of size $3 \\times 3$ , followed by a batch normalisation, a ReLU activation and a $2 \\times 2$ max-pooling. A fully-connected layer is appended to the final module before getting the class probabilities with softmax. Table 1 shows the hyperparameters used in this experiment. ", + "bbox": [ + 174, + 263, + 825, + 320 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "The Omniglot dataset comprises 50 alphabets (super-classes). Each alphabet has numerous characters (classes) and each character has 20 instances. As the meta-training alphabets arrive sequentially, we form non-overlapping sequential tasks from each arriving alphabet, and the tasks also do not overlap in the characters. We use 35 alphabets for meta-training, 7 alphabets for validation and 8 alphabets for meta-evaluation. The alphabet splits are as follows: ", + "bbox": [ + 174, + 327, + 825, + 397 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "35 alphabets for meta-training: ", + "text_level": 1, + "bbox": [ + 176, + 405, + 377, + 419 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Kannada, Burmese_(Myanmar), Malay_(Jawi_-_Arabic), Grantha, Atlantean, Ojibwe_(Canadian_Aboriginal_Syllabics), Balinese, Japanese_(katakana), Hebrew, Japanese_(hiragana), Keble, ’Old_Church_Slavonic_(Cyrillic), Asomtavruli_(Georgian), Tengwar, Aurek-Besh, Sanskrit, Manipuri, Early_Aramaic, Oriya, Mongolian, Avesta, Malayalam, Tifinagh, Angelic, Latin, Braille, Inuktitut_(Canadian_Aboriginal_Syllabics), Alphabet_of_the_Magi, Armenian, Korean, Gurmukhi, ULOG, Bengali, Gujarati, Sylheti ", + "bbox": [ + 173, + 429, + 802, + 541 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "7 alphabets for validation: ", + "bbox": [ + 176, + 547, + 346, + 561 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Ge_ez, Cyrillic, Glagolitic, N_Ko, Arcadian, Anglo-Saxon_Futhorc, Blackfoot_(Canadian_Aboriginal_Syllabics) ", + "bbox": [ + 176, + 573, + 808, + 601 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "8 alphabets for meta-evaluation: ", + "bbox": [ + 174, + 608, + 385, + 621 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Syriac_(Serto), Atemayar_Qelisayer, Tibetan, Futurama, Mkhedruli_(Georgian), Syriac_(Estrangelo), Tagalog, Greek ", + "bbox": [ + 174, + 633, + 735, + 661 + ], + "page_idx": 16 + }, + { + "type": "table", + "img_path": "images/abfc71c479179f152a296dc801a02e8baf1b4db935788c253f7ca12863ee2625.jpg", + "table_caption": [ + "Table 1: Hyperparameters for the Omniglot sequential tasks experiment " + ], + "table_footnote": [], + "table_body": "
HyperparameterBOMLABOMVI
Posterior regulariser 入0.1
Precision initialisation values10-4~10-2
Covariance initialisation values1exp(-10)
NumberofMonte Carlo samples=5
Number of batch M11
Number of query samples per class (meta-evaluation)1515
Number of epochs per task5050
Number of inner SGD steps in meta-training (k)55
Inner SGD learning rate (α)0.10.1
Outer loop optimiserAdamAdam
Outer loop learning rate0.0010.001
Number of tasks sampled for meta-evaluation100100
Number of inner SGD steps in meta-evaluation (k)1010
", + "bbox": [ + 218, + 702, + 779, + 916 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "C.2 PENTATHLON: SEQUENTIAL DATASETS ", + "text_level": 1, + "bbox": [ + 176, + 104, + 483, + 117 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "We use the model architecture proposed by Vinyals et al. (2016) in this experiment, as we did for the sequential tasks experiment. Tables 2 and 3 are the hyperparameters used in this experiment. ", + "bbox": [ + 173, + 128, + 823, + 159 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Omniglot: The Omniglot dataset (Lake et al., 2011) comprises 1623 characters from 50 alphabets and each character has 20 instances. New classes with rotations in the multiples of $9 0 °$ are formed after splitting the classes for meta-training, validation and meta-evaluation. We use 1100 characters for meta-training, 100 characters for validation and the remaining for meta-evaluation. ", + "bbox": [ + 174, + 172, + 825, + 229 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "CIFAR-FS: The CIFAR-FS dataset (Bertinetto et al., 2019) has 100 classes of objects and each class comprises 600 images. We use the same split as Bertinetto et al. (2019): 64 classes for metatraining, 16 classes for validation and 20 classes for meta-evaluation. ", + "bbox": [ + 174, + 244, + 825, + 286 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "miniImageNet: The miniImageNet dataset (Vinyals et al., 2016) takes 100 classes and 600 instances in each class from the ImageNet dataset. We use the same split as Ravi & Larochelle (2017): 64 classes for meta-training, 16 classes for validation and 20 classes for meta-evaluation. ", + "bbox": [ + 176, + 301, + 821, + 344 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "VGG-Flowers: The VGG-Flowers dataset (Nilsback & Zisserman, 2008) comprises 102 different types of flowers as the classes. This dataset has 8,189 instances in total. We randomly split 66 classes for meta-training, 16 classes for validation and 20 classes for meta-evaluation. ", + "bbox": [ + 174, + 359, + 825, + 401 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Aircraft: The Aircraft dataset (Maji et al., 2013) is a fine-grained dataset consisting of 100 different aircraft models as the classes and each class has 100 instances. We randomly split 64 classes for meta-training, 16 classes for validation and 20 classes for meta-evaluation. ", + "bbox": [ + 173, + 416, + 825, + 459 + ], + "page_idx": 17 + }, + { + "type": "table", + "img_path": "images/0c04a6f448fd725ce5decae0ec7f8f61c218a242e7997579f16fd45972d36a60.jpg", + "table_caption": [ + "Table 2: Hyperparameters for the pentathlon experiment (same value for all datasets) " + ], + "table_footnote": [], + "table_body": "
HyperparameterBOMLABOMVI
Posterior regulariser 入(various values)
Precision initialisation values10-4~ 10-2
Number of tasks sampled for Hessian approx.5000
Covariance initialisation valuesexp(-5)
Number of Monte Carlo samples=20
Meta-batch size M= 3232
Number of query samples per class1515
Number of iterations per dataset5000
Outer loop optimiserAdam5000
Outer loop learning rateAdam
Number of tasks sampled for meta-evaluation0.001 1000.001 100
", + "bbox": [ + 233, + 502, + 771, + 688 + ], + "page_idx": 17 + }, + { + "type": "table", + "img_path": "images/792d3d021b75bc928e7ebb45cd35d3377b79f40b295a20a86dd3e8b6f4bad6ab.jpg", + "table_caption": [ + "Table 3: Hyperparameters for the pentathlon sequential datasets experiment (individual datasets) " + ], + "table_footnote": [], + "table_body": "
HyperparameterOmniglotCIFAR-FSminiImageNetVGG-FlowersAircraft
Number of inner SGD steps in meta-training (k)15555
Inner SGD learning rate0.40.10.10.10.1
(a) Outer learning rate decay-×0.1×0.1 halfway×0.1 per 1000x0.1
schedule Number of inner SGD steps in meta-evaluation3halfway 1010iterations 10halfway 10
", + "bbox": [ + 178, + 753, + 859, + 895 + ], + "page_idx": 17 + }, + { + "type": "image", + "img_path": "images/e4c0f6de57d020e55a0adba80739413b67359f38476dfa77ec263a2bdb85913e.jpg", + "image_caption": [ + "Figure 3: Meta-evaluation accuracy across 3 seed runs on each dataset along meta-training. Higher accuracy values indicate better results with less forgetting as we proceed to new datasets. BOMLA with $\\lambda = 1 0 0$ gives better performance in the off-diagonal plots (retains performances on previously learned datasets), and has a minor performance trade-off in the diagonal plots (learns less well on new datasets). Sequential MAML gives better performance in the diagonal plots (learns well on new datasets) but worse performance in the off-diagonal plots (forgets previously learned datasets). BOMVI is also able to retain performance on previous datasets, although it may be unable to perform as good as BOMLA due to sampling and estimator variance. " + ], + "image_footnote": [], + "bbox": [ + 230, + 104, + 785, + 792 + ], + "page_idx": 18 + }, + { + "type": "image", + "img_path": "images/8b2b41f7bbda229777423d37569a5dc851b7bef2d0b560bb5db9e6b27a775de1.jpg", + "image_caption": [ + "Figure 4: Meta-evaluation accuracy across 3 seed runs on each dataset along meta-training. Higher accuracy values indicate better results with less forgetting as we proceed to new datasets. BOMLA with a large $\\lambda = 1 0 0 0$ gives better performance in the off-diagonal plots (retains performances on previously learned datasets) but worse performance in the diagonal plots (does not learn well on new datasets). A small $\\lambda = 1$ gives better performance in the diagonal plots (learns well on new datasets) but worse performance in the off-diagonal plots (forgets previously learned datasets). BOMVI is also able to retain performance on previous datasets, although it may be unable to learn new datasets as good as BOMLA due to sampling and estimator variance. " + ], + "image_footnote": [], + "bbox": [ + 228, + 104, + 781, + 796 + ], + "page_idx": 19 + } +] \ No newline at end of file diff --git a/parse/train/ucEXZQncukK/ucEXZQncukK_middle.json b/parse/train/ucEXZQncukK/ucEXZQncukK_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..5b7d184ca07d9ca3b0da661bfcd76bd50ec0467f --- /dev/null +++ b/parse/train/ucEXZQncukK/ucEXZQncukK_middle.json @@ -0,0 +1,52006 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 79, + 382, + 96 + ], + "lines": [ + { + "bbox": [ + 104, + 77, + 384, + 99 + ], + "spans": [ + { + "bbox": [ + 104, + 77, + 384, + 99 + ], + "score": 1.0, + "content": "BAYESIAN ONLINE META-LEARNING", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 112, + 115, + 244, + 137 + ], + "lines": [ + { + "bbox": [ + 113, + 115, + 201, + 127 + ], + "spans": [ + { + "bbox": [ + 113, + 115, + 201, + 127 + ], + "score": 1.0, + "content": "Anonymous authors", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 111, + 126, + 245, + 138 + ], + "spans": [ + { + "bbox": [ + 111, + 126, + 245, + 138 + ], + "score": 1.0, + "content": "Paper under double-blind review", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5 + }, + { + "type": "title", + "bbox": [ + 278, + 167, + 333, + 178 + ], + "lines": [ + { + "bbox": [ + 276, + 165, + 336, + 181 + ], + "spans": [ + { + "bbox": [ + 276, + 165, + 336, + 181 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 143, + 194, + 468, + 358 + ], + "lines": [ + { + "bbox": [ + 141, + 193, + 469, + 206 + ], + "spans": [ + { + "bbox": [ + 141, + 193, + 469, + 206 + ], + "score": 1.0, + "content": "Neural networks are known to suffer from catastrophic forgetting when trained", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 141, + 204, + 469, + 217 + ], + "spans": [ + { + "bbox": [ + 141, + 204, + 469, + 217 + ], + "score": 1.0, + "content": "on sequential datasets. While there have been numerous attempts to solve this", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 216, + 470, + 228 + ], + "spans": [ + { + "bbox": [ + 141, + 216, + 470, + 228 + ], + "score": 1.0, + "content": "problem for large-scale supervised classification, little has been done to over-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 227, + 470, + 239 + ], + "spans": [ + { + "bbox": [ + 141, + 227, + 470, + 239 + ], + "score": 1.0, + "content": "come catastrophic forgetting for few-shot classification problems. Few-shot meta-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 238, + 470, + 249 + ], + "spans": [ + { + "bbox": [ + 141, + 238, + 470, + 249 + ], + "score": 1.0, + "content": "learning algorithms often require all few-shot tasks to be readily available in a", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 248, + 469, + 261 + ], + "spans": [ + { + "bbox": [ + 141, + 248, + 469, + 261 + ], + "score": 1.0, + "content": "batch for training. The popular gradient-based model-agnostic meta-learning al-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 260, + 470, + 271 + ], + "spans": [ + { + "bbox": [ + 141, + 260, + 470, + 271 + ], + "score": 1.0, + "content": "gorithm (MAML) is a typical algorithm that suffers from these limitations. This", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 271, + 469, + 282 + ], + "spans": [ + { + "bbox": [ + 141, + 271, + 469, + 282 + ], + "score": 1.0, + "content": "work introduces a Bayesian online meta-learning framework to tackle the catas-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 281, + 470, + 293 + ], + "spans": [ + { + "bbox": [ + 141, + 281, + 470, + 293 + ], + "score": 1.0, + "content": "trophic forgetting and the sequential few-shot tasks problems. Our framework", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 293, + 469, + 306 + ], + "spans": [ + { + "bbox": [ + 141, + 293, + 469, + 306 + ], + "score": 1.0, + "content": "incorporates MAML into a Bayesian online learning algorithm with Laplace ap-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 304, + 469, + 315 + ], + "spans": [ + { + "bbox": [ + 141, + 304, + 469, + 315 + ], + "score": 1.0, + "content": "proximation or variational inference. This framework enables few-shot classifica-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 315, + 469, + 326 + ], + "spans": [ + { + "bbox": [ + 141, + 315, + 469, + 326 + ], + "score": 1.0, + "content": "tion on a range of sequentially arriving datasets with a single meta-learned model", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 326, + 469, + 337 + ], + "spans": [ + { + "bbox": [ + 141, + 326, + 469, + 337 + ], + "score": 1.0, + "content": "and training on sequentially arriving few-shot tasks. The experimental evaluations", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 336, + 469, + 348 + ], + "spans": [ + { + "bbox": [ + 141, + 336, + 469, + 348 + ], + "score": 1.0, + "content": "demonstrate that our framework can effectively prevent catastrophic forgetting and", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 347, + 450, + 360 + ], + "spans": [ + { + "bbox": [ + 141, + 347, + 450, + 360 + ], + "score": 1.0, + "content": "is capable of online meta-learning in various few-shot classification settings.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 11 + }, + { + "type": "title", + "bbox": [ + 108, + 384, + 206, + 397 + ], + "lines": [ + { + "bbox": [ + 105, + 383, + 208, + 400 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 208, + 400 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 412, + 505, + 554 + ], + "lines": [ + { + "bbox": [ + 106, + 411, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 505, + 424 + ], + "score": 1.0, + "content": "Image classification models and algorithms often require an enormous amount of labelled exam-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 423, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 505, + 434 + ], + "score": 1.0, + "content": "ples for training to achieve state-of-the-art performance. Labelled examples can be expensive and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 434, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 505, + 446 + ], + "score": 1.0, + "content": "time-consuming to acquire. Human visual systems, on the other hand, are able to recognise new", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 445, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 505, + 456 + ], + "score": 1.0, + "content": "classes after being shown a few labelled examples. Few-shot classification (Miller et al., 2000; Li", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 455, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 505, + 468 + ], + "score": 1.0, + "content": "et al., 2004; 2006; Lake et al., 2011) tackles this issue by learning to adapt to unseen classes (known", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "score": 1.0, + "content": "as novel classes) with very few labelled examples from each class. Recent works show that meta-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "score": 1.0, + "content": "learning provides promising approaches to few-shot classification problems (Santoro et al., 2016;", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 488, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 505, + 501 + ], + "score": 1.0, + "content": "Finn et al., 2017; Li et al., 2017; Ravi & Larochelle, 2017). Meta-learning or learning-to-learn", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 499, + 506, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 506, + 512 + ], + "score": 1.0, + "content": "(Schmidhuber, 1987; Thrun & Pratt, 1998) takes the learning process a level deeper – instead of", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 508, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 505, + 525 + ], + "score": 1.0, + "content": "learning from the labelled examples in the training classes (known as base classes), meta-learning", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 521, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 505, + 534 + ], + "score": 1.0, + "content": "learns the example-learning process. The training process in meta-learning that utilises the base", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 531, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 505, + 545 + ], + "score": 1.0, + "content": "classes is called the meta-training stage, and the evaluation process that reports the few-shot per-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 543, + 388, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 543, + 388, + 556 + ], + "score": 1.0, + "content": "formance on the novel classes is known as the meta-evaluation stage.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 560, + 503, + 582 + ], + "lines": [ + { + "bbox": [ + 106, + 559, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 505, + 572 + ], + "score": 1.0, + "content": "Despite being a promising solution to few-shot classification problems, meta-learning methods suf-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 570, + 220, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 220, + 582 + ], + "score": 1.0, + "content": "fer from several limitations:", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 130, + 592, + 505, + 688 + ], + "lines": [ + { + "bbox": [ + 130, + 594, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 130, + 594, + 505, + 605 + ], + "score": 1.0, + "content": "1. Unable to continually learn from sequential few-shot tasks: It is mandatory to have", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 141, + 604, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 141, + 604, + 505, + 617 + ], + "score": 1.0, + "content": "all base classes readily available for meta-training. Such meta-learning algorithms often", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 141, + 615, + 461, + 628 + ], + "spans": [ + { + "bbox": [ + 141, + 615, + 461, + 628 + ], + "score": 1.0, + "content": "require sampling a number of few-shot tasks in every iteration for optimisation.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 128, + 632, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 128, + 632, + 505, + 645 + ], + "score": 1.0, + "content": "2. Unable to retain few-shot classification ability on sequential datasets that have evident", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 141, + 643, + 505, + 655 + ], + "spans": [ + { + "bbox": [ + 141, + 643, + 505, + 655 + ], + "score": 1.0, + "content": "distributional shift: A meta-learned model is restricted to perform few-shot classification", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 141, + 655, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 141, + 655, + 505, + 666 + ], + "score": 1.0, + "content": "on a specific dataset, in the sense that the base and novel classes have to originate from the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 141, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 141, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "same dataset distribution. A meta-learned model loses its few-shot classification ability on", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 141, + 676, + 416, + 691 + ], + "spans": [ + { + "bbox": [ + 141, + 676, + 416, + 691 + ], + "score": 1.0, + "content": "previous datasets as new ones arrive subsequently for meta-training.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 504, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 504, + 712 + ], + "score": 1.0, + "content": "We emphasise that the task mentioned in this paper refers to the few-shot task for meta-learning.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "This paper considers meta-learning a single model for few-shot classification in the sequential", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 720, + 346, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 346, + 734 + ], + "score": 1.0, + "content": "datasets and sequential few-shot tasks settings respectively.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44 + } + ], + "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": [ + 107, + 79, + 382, + 96 + ], + "lines": [ + { + "bbox": [ + 104, + 77, + 384, + 99 + ], + "spans": [ + { + "bbox": [ + 104, + 77, + 384, + 99 + ], + "score": 1.0, + "content": "BAYESIAN ONLINE META-LEARNING", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 112, + 115, + 244, + 137 + ], + "lines": [ + { + "bbox": [ + 113, + 115, + 201, + 127 + ], + "spans": [ + { + "bbox": [ + 113, + 115, + 201, + 127 + ], + "score": 1.0, + "content": "Anonymous authors", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 111, + 126, + 245, + 138 + ], + "spans": [ + { + "bbox": [ + 111, + 126, + 245, + 138 + ], + "score": 1.0, + "content": "Paper under double-blind review", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5, + "bbox_fs": [ + 111, + 115, + 245, + 138 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 167, + 333, + 178 + ], + "lines": [ + { + "bbox": [ + 276, + 165, + 336, + 181 + ], + "spans": [ + { + "bbox": [ + 276, + 165, + 336, + 181 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 143, + 194, + 468, + 358 + ], + "lines": [ + { + "bbox": [ + 141, + 193, + 469, + 206 + ], + "spans": [ + { + "bbox": [ + 141, + 193, + 469, + 206 + ], + "score": 1.0, + "content": "Neural networks are known to suffer from catastrophic forgetting when trained", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 141, + 204, + 469, + 217 + ], + "spans": [ + { + "bbox": [ + 141, + 204, + 469, + 217 + ], + "score": 1.0, + "content": "on sequential datasets. While there have been numerous attempts to solve this", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 216, + 470, + 228 + ], + "spans": [ + { + "bbox": [ + 141, + 216, + 470, + 228 + ], + "score": 1.0, + "content": "problem for large-scale supervised classification, little has been done to over-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 227, + 470, + 239 + ], + "spans": [ + { + "bbox": [ + 141, + 227, + 470, + 239 + ], + "score": 1.0, + "content": "come catastrophic forgetting for few-shot classification problems. Few-shot meta-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 238, + 470, + 249 + ], + "spans": [ + { + "bbox": [ + 141, + 238, + 470, + 249 + ], + "score": 1.0, + "content": "learning algorithms often require all few-shot tasks to be readily available in a", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 248, + 469, + 261 + ], + "spans": [ + { + "bbox": [ + 141, + 248, + 469, + 261 + ], + "score": 1.0, + "content": "batch for training. The popular gradient-based model-agnostic meta-learning al-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 260, + 470, + 271 + ], + "spans": [ + { + "bbox": [ + 141, + 260, + 470, + 271 + ], + "score": 1.0, + "content": "gorithm (MAML) is a typical algorithm that suffers from these limitations. This", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 271, + 469, + 282 + ], + "spans": [ + { + "bbox": [ + 141, + 271, + 469, + 282 + ], + "score": 1.0, + "content": "work introduces a Bayesian online meta-learning framework to tackle the catas-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 281, + 470, + 293 + ], + "spans": [ + { + "bbox": [ + 141, + 281, + 470, + 293 + ], + "score": 1.0, + "content": "trophic forgetting and the sequential few-shot tasks problems. Our framework", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 293, + 469, + 306 + ], + "spans": [ + { + "bbox": [ + 141, + 293, + 469, + 306 + ], + "score": 1.0, + "content": "incorporates MAML into a Bayesian online learning algorithm with Laplace ap-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 304, + 469, + 315 + ], + "spans": [ + { + "bbox": [ + 141, + 304, + 469, + 315 + ], + "score": 1.0, + "content": "proximation or variational inference. This framework enables few-shot classifica-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 315, + 469, + 326 + ], + "spans": [ + { + "bbox": [ + 141, + 315, + 469, + 326 + ], + "score": 1.0, + "content": "tion on a range of sequentially arriving datasets with a single meta-learned model", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 326, + 469, + 337 + ], + "spans": [ + { + "bbox": [ + 141, + 326, + 469, + 337 + ], + "score": 1.0, + "content": "and training on sequentially arriving few-shot tasks. The experimental evaluations", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 336, + 469, + 348 + ], + "spans": [ + { + "bbox": [ + 141, + 336, + 469, + 348 + ], + "score": 1.0, + "content": "demonstrate that our framework can effectively prevent catastrophic forgetting and", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 347, + 450, + 360 + ], + "spans": [ + { + "bbox": [ + 141, + 347, + 450, + 360 + ], + "score": 1.0, + "content": "is capable of online meta-learning in various few-shot classification settings.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 11, + "bbox_fs": [ + 141, + 193, + 470, + 360 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 384, + 206, + 397 + ], + "lines": [ + { + "bbox": [ + 105, + 383, + 208, + 400 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 208, + 400 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 412, + 505, + 554 + ], + "lines": [ + { + "bbox": [ + 106, + 411, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 505, + 424 + ], + "score": 1.0, + "content": "Image classification models and algorithms often require an enormous amount of labelled exam-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 423, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 505, + 434 + ], + "score": 1.0, + "content": "ples for training to achieve state-of-the-art performance. Labelled examples can be expensive and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 434, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 505, + 446 + ], + "score": 1.0, + "content": "time-consuming to acquire. Human visual systems, on the other hand, are able to recognise new", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 445, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 505, + 456 + ], + "score": 1.0, + "content": "classes after being shown a few labelled examples. Few-shot classification (Miller et al., 2000; Li", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 455, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 505, + 468 + ], + "score": 1.0, + "content": "et al., 2004; 2006; Lake et al., 2011) tackles this issue by learning to adapt to unseen classes (known", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "score": 1.0, + "content": "as novel classes) with very few labelled examples from each class. Recent works show that meta-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "score": 1.0, + "content": "learning provides promising approaches to few-shot classification problems (Santoro et al., 2016;", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 488, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 505, + 501 + ], + "score": 1.0, + "content": "Finn et al., 2017; Li et al., 2017; Ravi & Larochelle, 2017). Meta-learning or learning-to-learn", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 499, + 506, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 506, + 512 + ], + "score": 1.0, + "content": "(Schmidhuber, 1987; Thrun & Pratt, 1998) takes the learning process a level deeper – instead of", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 508, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 505, + 525 + ], + "score": 1.0, + "content": "learning from the labelled examples in the training classes (known as base classes), meta-learning", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 521, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 505, + 534 + ], + "score": 1.0, + "content": "learns the example-learning process. The training process in meta-learning that utilises the base", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 531, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 505, + 545 + ], + "score": 1.0, + "content": "classes is called the meta-training stage, and the evaluation process that reports the few-shot per-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 543, + 388, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 543, + 388, + 556 + ], + "score": 1.0, + "content": "formance on the novel classes is known as the meta-evaluation stage.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 411, + 506, + 556 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 560, + 503, + 582 + ], + "lines": [ + { + "bbox": [ + 106, + 559, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 505, + 572 + ], + "score": 1.0, + "content": "Despite being a promising solution to few-shot classification problems, meta-learning methods suf-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 570, + 220, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 220, + 582 + ], + "score": 1.0, + "content": "fer from several limitations:", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 559, + 505, + 582 + ] + }, + { + "type": "list", + "bbox": [ + 130, + 592, + 505, + 688 + ], + "lines": [ + { + "bbox": [ + 130, + 594, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 130, + 594, + 505, + 605 + ], + "score": 1.0, + "content": "1. Unable to continually learn from sequential few-shot tasks: It is mandatory to have", + "type": "text" + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 604, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 141, + 604, + 505, + 617 + ], + "score": 1.0, + "content": "all base classes readily available for meta-training. Such meta-learning algorithms often", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 141, + 615, + 461, + 628 + ], + "spans": [ + { + "bbox": [ + 141, + 615, + 461, + 628 + ], + "score": 1.0, + "content": "require sampling a number of few-shot tasks in every iteration for optimisation.", + "type": "text" + } + ], + "index": 37, + "is_list_end_line": true + }, + { + "bbox": [ + 128, + 632, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 128, + 632, + 505, + 645 + ], + "score": 1.0, + "content": "2. Unable to retain few-shot classification ability on sequential datasets that have evident", + "type": "text" + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 643, + 505, + 655 + ], + "spans": [ + { + "bbox": [ + 141, + 643, + 505, + 655 + ], + "score": 1.0, + "content": "distributional shift: A meta-learned model is restricted to perform few-shot classification", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 141, + 655, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 141, + 655, + 505, + 666 + ], + "score": 1.0, + "content": "on a specific dataset, in the sense that the base and novel classes have to originate from the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 141, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 141, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "same dataset distribution. A meta-learned model loses its few-shot classification ability on", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 141, + 676, + 416, + 691 + ], + "spans": [ + { + "bbox": [ + 141, + 676, + 416, + 691 + ], + "score": 1.0, + "content": "previous datasets as new ones arrive subsequently for meta-training.", + "type": "text" + } + ], + "index": 42, + "is_list_end_line": true + } + ], + "index": 38.5, + "bbox_fs": [ + 128, + 594, + 505, + 691 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 504, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 504, + 712 + ], + "score": 1.0, + "content": "We emphasise that the task mentioned in this paper refers to the few-shot task for meta-learning.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "This paper considers meta-learning a single model for few-shot classification in the sequential", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 720, + 346, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 346, + 734 + ], + "score": 1.0, + "content": "datasets and sequential few-shot tasks settings respectively.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44, + "bbox_fs": [ + 106, + 698, + 505, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 214 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "We introduce a Bayesian online meta-learning framework that can train a few-shot learning model", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "under the sequential few-shot tasks setting and train a model that is applicable to a broader scope", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "of few-shot classification datasets by overcoming catastrophic forgetting. We extend the Bayesian", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "online learning (BOL) framework (Opper, 1998) to a Bayesian online meta-learning framework us-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 139 + ], + "score": 1.0, + "content": "ing the model-agnostic meta-learning (MAML) algorithm (Finn et al., 2017). MAML finds a good", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "model parameter initialisation (called meta-parameters) that can quickly adapt to novel classes", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 149, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 505, + 161 + ], + "score": 1.0, + "content": "using very few labelled examples, while BOL provides a principled framework for finding the pos-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 505, + 171 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 505, + 171 + ], + "score": 1.0, + "content": "terior of the model parameters. Our framework aims to combine both BOL and MAML to find the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 170, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 505, + 182 + ], + "score": 1.0, + "content": "posterior of the meta-parameters. Our work builds on Ritter et al. (2018a) which combines the BOL", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 180, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 505, + 194 + ], + "score": 1.0, + "content": "framework and Laplace approximation with block-diagonal Kronecker-factored Fisher approxima-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 191, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 505, + 205 + ], + "score": 1.0, + "content": "tion, and Nguyen et al. (2018) which uses variational inference with BOL to overcome catastrophic", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 203, + 306, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 306, + 216 + ], + "score": 1.0, + "content": "forgetting in large-scale supervised classification.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 107, + 220, + 505, + 407 + ], + "lines": [ + { + "bbox": [ + 106, + 221, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 505, + 232 + ], + "score": 1.0, + "content": "An important reason to implement Bayesian inference over non-Bayesian methods for an online", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 231, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 505, + 243 + ], + "score": 1.0, + "content": "setting is that BOL provides a grounded framework that suggests using the previous posterior as", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 241, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 506, + 255 + ], + "score": 1.0, + "content": "the prior recursively. Bayesian inference inherits an advantage for robust meta-learning (Yoon et al.,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 251, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 505, + 266 + ], + "score": 1.0, + "content": "2018) to overcome training instability problems addressed by Antoniou et al. (2019). BOL implicitly", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 264, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 505, + 277 + ], + "score": 1.0, + "content": "keeps a memory on previous knowledge via the posterior, in contrast to recent online meta-learning", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 275, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 505, + 288 + ], + "score": 1.0, + "content": "methods that explicitly accumulate previous data in a task buffer (Finn et al., 2019; Zhuang et al.,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 285, + 506, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 506, + 299 + ], + "score": 1.0, + "content": "2019). Explicitly keeping a memory on previous data often triggers an important question: how", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 296, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 505, + 309 + ], + "score": 1.0, + "content": "should the carried-forward data be processed in future task rounds, in order to accumulate knowl-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 307, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 505, + 320 + ], + "score": 1.0, + "content": "edge? Finn et al. (2019) update the meta-parameters at each iteration using previous few-shot tasks", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 318, + 505, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 505, + 331 + ], + "score": 1.0, + "content": "in the task buffer. This defeats the purpose of online learning, which by definition means to update", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 330, + 506, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 506, + 343 + ], + "score": 1.0, + "content": "the parameters each round using only the new data encountered. Having to re-train on previous data", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 340, + 506, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 506, + 353 + ], + "score": 1.0, + "content": "to avoid forgetting also increases the training time as the data accumulate (Finn et al., 2019; He", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 352, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 505, + 365 + ], + "score": 1.0, + "content": "et al., 2019). Certainly one can clamp the amount of data at some maximal limit and sample from", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 361, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 505, + 376 + ], + "score": 1.0, + "content": "the buffer, but the final performance of such an algorithm would be dependent on the samples being", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 372, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 505, + 388 + ], + "score": 1.0, + "content": "informative and of good quality which may vary across different seed runs. In contrast to memoris-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 385, + 504, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 504, + 397 + ], + "score": 1.0, + "content": "ing the datasets, having an implicit memory via the posterior automatically deals with the question", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 396, + 498, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 498, + 408 + ], + "score": 1.0, + "content": "on how to process carried-forward data and allows a better carry forward in previous experiences.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 412, + 310, + 423 + ], + "lines": [ + { + "bbox": [ + 105, + 410, + 312, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 312, + 426 + ], + "score": 1.0, + "content": "Below are the contributions we make in this paper:", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 132, + 432, + 505, + 563 + ], + "lines": [ + { + "bbox": [ + 137, + 432, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 137, + 432, + 505, + 444 + ], + "score": 1.0, + "content": "We develop the Bayesian online meta-learning (BOML) framework for sequential few-shot", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 141, + 443, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 141, + 443, + 505, + 456 + ], + "score": 1.0, + "content": "classification problems. Under this framework we introduce the algorithms Bayesian online", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 141, + 453, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 141, + 453, + 505, + 468 + ], + "score": 1.0, + "content": "meta-learning with Laplace approximation (BOMLA) and Bayesian online meta-learning", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 141, + 465, + 290, + 477 + ], + "spans": [ + { + "bbox": [ + 141, + 465, + 290, + 477 + ], + "score": 1.0, + "content": "with variational inference (BOMVI).", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 141, + 479, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 141, + 479, + 505, + 492 + ], + "score": 1.0, + "content": "We propose a simple approximation to the Fisher corresponding to the BOMLA algorithm", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 142, + 490, + 504, + 501 + ], + "spans": [ + { + "bbox": [ + 142, + 490, + 504, + 501 + ], + "score": 1.0, + "content": "that carries over the desirable block-diagonal Kronecker-factored structure from the Fisher", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 141, + 501, + 335, + 515 + ], + "spans": [ + { + "bbox": [ + 141, + 501, + 335, + 515 + ], + "score": 1.0, + "content": "approximation in the non-meta-learning setting.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 140, + 515, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 140, + 515, + 505, + 528 + ], + "score": 1.0, + "content": "We demonstrate that BOML can overcome catastrophic forgetting in the sequential few-shot", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 141, + 527, + 399, + 539 + ], + "spans": [ + { + "bbox": [ + 141, + 527, + 399, + 539 + ], + "score": 1.0, + "content": "datasets setting with apparent distributional shift in the datasets.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 133, + 540, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 133, + 540, + 505, + 554 + ], + "score": 1.0, + "content": "• We demonstrate that BOML can continually learn to few-shot classify the novel classes in", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 141, + 551, + 347, + 565 + ], + "spans": [ + { + "bbox": [ + 141, + 551, + 347, + 565 + ], + "score": 1.0, + "content": "the sequential meta-training few-shot tasks setting.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 35 + }, + { + "type": "title", + "bbox": [ + 107, + 578, + 215, + 591 + ], + "lines": [ + { + "bbox": [ + 105, + 577, + 217, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 217, + 593 + ], + "score": 1.0, + "content": "2 META-LEARNING", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 107, + 603, + 505, + 669 + ], + "lines": [ + { + "bbox": [ + 105, + 603, + 505, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 505, + 615 + ], + "score": 1.0, + "content": "Most meta-learning algorithms comprise an inner loop for example-learning and an outer loop that", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 615, + 505, + 626 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 505, + 626 + ], + "score": 1.0, + "content": "learns the example-learning process. Such algorithms often require sampling a meta-batch of tasks", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 625, + 505, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 505, + 637 + ], + "score": 1.0, + "content": "at each iteration, where a task is formed by sampling a subset of classes from the pool of base", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 636, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 441, + 649 + ], + "score": 1.0, + "content": "classes or novel classes during meta-training or meta-evaluation respectively. The", + "type": "text" + }, + { + "bbox": [ + 441, + 636, + 452, + 646 + ], + "score": 0.82, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 636, + 473, + 649 + ], + "score": 1.0, + "content": "-way", + "type": "text" + }, + { + "bbox": [ + 474, + 636, + 484, + 646 + ], + "score": 0.81, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 636, + 505, + 649 + ], + "score": 1.0, + "content": "-shot", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 646, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 255, + 659 + ], + "score": 1.0, + "content": "task, for instance, refers to sampling", + "type": "text" + }, + { + "bbox": [ + 255, + 647, + 266, + 657 + ], + "score": 0.77, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 646, + 339, + 659 + ], + "score": 1.0, + "content": "classes and using", + "type": "text" + }, + { + "bbox": [ + 339, + 647, + 349, + 657 + ], + "score": 0.79, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 646, + 505, + 659 + ], + "score": 1.0, + "content": "examples per class for few-shot quick", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 658, + 153, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 153, + 671 + ], + "score": 1.0, + "content": "adaptation.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 44.5 + }, + { + "type": "text", + "bbox": [ + 107, + 674, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 675, + 505, + 687 + ], + "spans": [ + { + "bbox": [ + 106, + 675, + 505, + 687 + ], + "score": 1.0, + "content": "An offline meta-learning algorithm learns a few-shot classification model only for a specific dataset", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 107, + 685, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 107, + 686, + 129, + 698 + ], + "score": 0.9, + "content": "\\mathcal { D } _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 685, + 233, + 699 + ], + "score": 1.0, + "content": "where all base classes of", + "type": "text" + }, + { + "bbox": [ + 234, + 686, + 255, + 698 + ], + "score": 0.91, + "content": "\\mathcal { D } _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 685, + 505, + 699 + ], + "score": 1.0, + "content": "have to be readily available for meta-training. For notational", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 697, + 505, + 709 + ], + "spans": [ + { + "bbox": [ + 106, + 697, + 214, + 709 + ], + "score": 1.0, + "content": "convenience, we drop the", + "type": "text" + }, + { + "bbox": [ + 214, + 697, + 237, + 707 + ], + "score": 0.89, + "content": "t + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 697, + 505, + 709 + ], + "score": 1.0, + "content": "subscript in this section, as there is only one dataset involved in", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 707, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 243, + 722 + ], + "score": 1.0, + "content": "offline meta-learning. The dataset", + "type": "text" + }, + { + "bbox": [ + 243, + 710, + 266, + 721 + ], + "score": 0.91, + "content": "\\mathcal { D } _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 708, + 413, + 722 + ], + "score": 1.0, + "content": "is divided into the set of base classes", + "type": "text" + }, + { + "bbox": [ + 414, + 708, + 423, + 720 + ], + "score": 0.86, + "content": "\\widetilde { \\mathcal { D } }", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 708, + 494, + 722 + ], + "score": 1.0, + "content": "and novel classes", + "type": "text" + }, + { + "bbox": [ + 495, + 707, + 504, + 720 + ], + "score": 0.84, + "content": "\\widehat { \\mathcal { D } }", + "type": "inline_equation" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "for meta-training and meta-evaluation respectively. Upon completing meta-training on the base class", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 50 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 514, + 221, + 541, + 241 + ], + "lines": [ + { + "bbox": [ + 514, + 220, + 543, + 231 + ], + "spans": [ + { + "bbox": [ + 514, + 220, + 543, + 231 + ], + "score": 1.0, + "content": "@@@", + "type": "text" + } + ] + }, + { + "bbox": [ + 513, + 230, + 535, + 243 + ], + "spans": [ + { + "bbox": [ + 513, + 230, + 535, + 243 + ], + "score": 1.0, + "content": "New", + "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, + 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, + 214 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "We introduce a Bayesian online meta-learning framework that can train a few-shot learning model", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "under the sequential few-shot tasks setting and train a model that is applicable to a broader scope", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "of few-shot classification datasets by overcoming catastrophic forgetting. We extend the Bayesian", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "online learning (BOL) framework (Opper, 1998) to a Bayesian online meta-learning framework us-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 139 + ], + "score": 1.0, + "content": "ing the model-agnostic meta-learning (MAML) algorithm (Finn et al., 2017). MAML finds a good", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "model parameter initialisation (called meta-parameters) that can quickly adapt to novel classes", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 149, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 505, + 161 + ], + "score": 1.0, + "content": "using very few labelled examples, while BOL provides a principled framework for finding the pos-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 505, + 171 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 505, + 171 + ], + "score": 1.0, + "content": "terior of the model parameters. Our framework aims to combine both BOL and MAML to find the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 170, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 505, + 182 + ], + "score": 1.0, + "content": "posterior of the meta-parameters. Our work builds on Ritter et al. (2018a) which combines the BOL", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 180, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 505, + 194 + ], + "score": 1.0, + "content": "framework and Laplace approximation with block-diagonal Kronecker-factored Fisher approxima-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 191, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 505, + 205 + ], + "score": 1.0, + "content": "tion, and Nguyen et al. (2018) which uses variational inference with BOL to overcome catastrophic", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 203, + 306, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 306, + 216 + ], + "score": 1.0, + "content": "forgetting in large-scale supervised classification.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 5.5, + "bbox_fs": [ + 105, + 83, + 506, + 216 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 220, + 505, + 407 + ], + "lines": [ + { + "bbox": [ + 106, + 221, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 505, + 232 + ], + "score": 1.0, + "content": "An important reason to implement Bayesian inference over non-Bayesian methods for an online", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 231, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 505, + 243 + ], + "score": 1.0, + "content": "setting is that BOL provides a grounded framework that suggests using the previous posterior as", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 241, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 506, + 255 + ], + "score": 1.0, + "content": "the prior recursively. Bayesian inference inherits an advantage for robust meta-learning (Yoon et al.,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 251, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 505, + 266 + ], + "score": 1.0, + "content": "2018) to overcome training instability problems addressed by Antoniou et al. (2019). BOL implicitly", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 264, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 505, + 277 + ], + "score": 1.0, + "content": "keeps a memory on previous knowledge via the posterior, in contrast to recent online meta-learning", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 275, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 505, + 288 + ], + "score": 1.0, + "content": "methods that explicitly accumulate previous data in a task buffer (Finn et al., 2019; Zhuang et al.,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 285, + 506, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 506, + 299 + ], + "score": 1.0, + "content": "2019). Explicitly keeping a memory on previous data often triggers an important question: how", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 296, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 505, + 309 + ], + "score": 1.0, + "content": "should the carried-forward data be processed in future task rounds, in order to accumulate knowl-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 307, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 505, + 320 + ], + "score": 1.0, + "content": "edge? Finn et al. (2019) update the meta-parameters at each iteration using previous few-shot tasks", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 318, + 505, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 505, + 331 + ], + "score": 1.0, + "content": "in the task buffer. This defeats the purpose of online learning, which by definition means to update", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 330, + 506, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 506, + 343 + ], + "score": 1.0, + "content": "the parameters each round using only the new data encountered. Having to re-train on previous data", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 340, + 506, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 506, + 353 + ], + "score": 1.0, + "content": "to avoid forgetting also increases the training time as the data accumulate (Finn et al., 2019; He", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 352, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 505, + 365 + ], + "score": 1.0, + "content": "et al., 2019). Certainly one can clamp the amount of data at some maximal limit and sample from", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 361, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 505, + 376 + ], + "score": 1.0, + "content": "the buffer, but the final performance of such an algorithm would be dependent on the samples being", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 372, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 505, + 388 + ], + "score": 1.0, + "content": "informative and of good quality which may vary across different seed runs. In contrast to memoris-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 385, + 504, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 504, + 397 + ], + "score": 1.0, + "content": "ing the datasets, having an implicit memory via the posterior automatically deals with the question", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 396, + 498, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 498, + 408 + ], + "score": 1.0, + "content": "on how to process carried-forward data and allows a better carry forward in previous experiences.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 221, + 506, + 408 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 412, + 310, + 423 + ], + "lines": [ + { + "bbox": [ + 105, + 410, + 312, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 312, + 426 + ], + "score": 1.0, + "content": "Below are the contributions we make in this paper:", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 410, + 312, + 426 + ] + }, + { + "type": "list", + "bbox": [ + 132, + 432, + 505, + 563 + ], + "lines": [ + { + "bbox": [ + 137, + 432, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 137, + 432, + 505, + 444 + ], + "score": 1.0, + "content": "We develop the Bayesian online meta-learning (BOML) framework for sequential few-shot", + "type": "text" + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 443, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 141, + 443, + 505, + 456 + ], + "score": 1.0, + "content": "classification problems. Under this framework we introduce the algorithms Bayesian online", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 141, + 453, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 141, + 453, + 505, + 468 + ], + "score": 1.0, + "content": "meta-learning with Laplace approximation (BOMLA) and Bayesian online meta-learning", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 141, + 465, + 290, + 477 + ], + "spans": [ + { + "bbox": [ + 141, + 465, + 290, + 477 + ], + "score": 1.0, + "content": "with variational inference (BOMVI).", + "type": "text" + } + ], + "index": 33, + "is_list_end_line": true + }, + { + "bbox": [ + 141, + 479, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 141, + 479, + 505, + 492 + ], + "score": 1.0, + "content": "We propose a simple approximation to the Fisher corresponding to the BOMLA algorithm", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 142, + 490, + 504, + 501 + ], + "spans": [ + { + "bbox": [ + 142, + 490, + 504, + 501 + ], + "score": 1.0, + "content": "that carries over the desirable block-diagonal Kronecker-factored structure from the Fisher", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 141, + 501, + 335, + 515 + ], + "spans": [ + { + "bbox": [ + 141, + 501, + 335, + 515 + ], + "score": 1.0, + "content": "approximation in the non-meta-learning setting.", + "type": "text" + } + ], + "index": 36, + "is_list_end_line": true + }, + { + "bbox": [ + 140, + 515, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 140, + 515, + 505, + 528 + ], + "score": 1.0, + "content": "We demonstrate that BOML can overcome catastrophic forgetting in the sequential few-shot", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 141, + 527, + 399, + 539 + ], + "spans": [ + { + "bbox": [ + 141, + 527, + 399, + 539 + ], + "score": 1.0, + "content": "datasets setting with apparent distributional shift in the datasets.", + "type": "text" + } + ], + "index": 38, + "is_list_end_line": true + }, + { + "bbox": [ + 133, + 540, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 133, + 540, + 505, + 554 + ], + "score": 1.0, + "content": "• We demonstrate that BOML can continually learn to few-shot classify the novel classes in", + "type": "text" + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 551, + 347, + 565 + ], + "spans": [ + { + "bbox": [ + 141, + 551, + 347, + 565 + ], + "score": 1.0, + "content": "the sequential meta-training few-shot tasks setting.", + "type": "text" + } + ], + "index": 40, + "is_list_end_line": true + } + ], + "index": 35, + "bbox_fs": [ + 133, + 432, + 505, + 565 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 578, + 215, + 591 + ], + "lines": [ + { + "bbox": [ + 105, + 577, + 217, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 217, + 593 + ], + "score": 1.0, + "content": "2 META-LEARNING", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 107, + 603, + 505, + 669 + ], + "lines": [ + { + "bbox": [ + 105, + 603, + 505, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 505, + 615 + ], + "score": 1.0, + "content": "Most meta-learning algorithms comprise an inner loop for example-learning and an outer loop that", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 615, + 505, + 626 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 505, + 626 + ], + "score": 1.0, + "content": "learns the example-learning process. Such algorithms often require sampling a meta-batch of tasks", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 625, + 505, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 505, + 637 + ], + "score": 1.0, + "content": "at each iteration, where a task is formed by sampling a subset of classes from the pool of base", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 636, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 441, + 649 + ], + "score": 1.0, + "content": "classes or novel classes during meta-training or meta-evaluation respectively. The", + "type": "text" + }, + { + "bbox": [ + 441, + 636, + 452, + 646 + ], + "score": 0.82, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 636, + 473, + 649 + ], + "score": 1.0, + "content": "-way", + "type": "text" + }, + { + "bbox": [ + 474, + 636, + 484, + 646 + ], + "score": 0.81, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 636, + 505, + 649 + ], + "score": 1.0, + "content": "-shot", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 646, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 255, + 659 + ], + "score": 1.0, + "content": "task, for instance, refers to sampling", + "type": "text" + }, + { + "bbox": [ + 255, + 647, + 266, + 657 + ], + "score": 0.77, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 646, + 339, + 659 + ], + "score": 1.0, + "content": "classes and using", + "type": "text" + }, + { + "bbox": [ + 339, + 647, + 349, + 657 + ], + "score": 0.79, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 646, + 505, + 659 + ], + "score": 1.0, + "content": "examples per class for few-shot quick", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 658, + 153, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 153, + 671 + ], + "score": 1.0, + "content": "adaptation.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 44.5, + "bbox_fs": [ + 105, + 603, + 505, + 671 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 674, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 675, + 505, + 687 + ], + "spans": [ + { + "bbox": [ + 106, + 675, + 505, + 687 + ], + "score": 1.0, + "content": "An offline meta-learning algorithm learns a few-shot classification model only for a specific dataset", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 107, + 685, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 107, + 686, + 129, + 698 + ], + "score": 0.9, + "content": "\\mathcal { D } _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 685, + 233, + 699 + ], + "score": 1.0, + "content": "where all base classes of", + "type": "text" + }, + { + "bbox": [ + 234, + 686, + 255, + 698 + ], + "score": 0.91, + "content": "\\mathcal { D } _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 685, + 505, + 699 + ], + "score": 1.0, + "content": "have to be readily available for meta-training. For notational", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 697, + 505, + 709 + ], + "spans": [ + { + "bbox": [ + 106, + 697, + 214, + 709 + ], + "score": 1.0, + "content": "convenience, we drop the", + "type": "text" + }, + { + "bbox": [ + 214, + 697, + 237, + 707 + ], + "score": 0.89, + "content": "t + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 697, + 505, + 709 + ], + "score": 1.0, + "content": "subscript in this section, as there is only one dataset involved in", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 707, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 243, + 722 + ], + "score": 1.0, + "content": "offline meta-learning. The dataset", + "type": "text" + }, + { + "bbox": [ + 243, + 710, + 266, + 721 + ], + "score": 0.91, + "content": "\\mathcal { D } _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 708, + 413, + 722 + ], + "score": 1.0, + "content": "is divided into the set of base classes", + "type": "text" + }, + { + "bbox": [ + 414, + 708, + 423, + 720 + ], + "score": 0.86, + "content": "\\widetilde { \\mathcal { D } }", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 708, + 494, + 722 + ], + "score": 1.0, + "content": "and novel classes", + "type": "text" + }, + { + "bbox": [ + 495, + 707, + 504, + 720 + ], + "score": 0.84, + "content": "\\widehat { \\mathcal { D } }", + "type": "inline_equation" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "for meta-training and meta-evaluation respectively. Upon completing meta-training on the base class", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 80, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 120, + 95 + ], + "score": 1.0, + "content": "set", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 120, + 80, + 129, + 92 + ], + "score": 0.83, + "content": "\\widetilde { \\mathcal { D } }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 130, + 81, + 417, + 95 + ], + "score": 1.0, + "content": ", the goal of few-shot classification is to perform well on an unseen task", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 417, + 80, + 432, + 93 + ], + "score": 0.88, + "content": "{ \\widehat { \\mathcal { D } } } ^ { * }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 432, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "sampled from the", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 93, + 505, + 108 + ], + "spans": [ + { + "bbox": [ + 104, + 93, + 165, + 108 + ], + "score": 1.0, + "content": "novel class set", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 166, + 93, + 176, + 106 + ], + "score": 0.85, + "content": "\\widehat { \\mathcal { D } }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 176, + 93, + 343, + 108 + ], + "score": 1.0, + "content": "after a quick adaptation on a small subset", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 343, + 93, + 365, + 106 + ], + "score": 0.89, + "content": "\\widehat { \\mathcal { D } } ^ { * , S }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 365, + 93, + 487, + 108 + ], + "score": 1.0, + "content": "(known as the support set) of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 488, + 93, + 501, + 105 + ], + "score": 0.89, + "content": "\\widehat { \\mathcal { D } } ^ { * }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 501, + 93, + 505, + 108 + ], + "score": 1.0, + "content": ".", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 106, + 505, + 120 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 374, + 120 + ], + "score": 1.0, + "content": "The performance of this unseen task is evaluated on the query set", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 374, + 106, + 396, + 119 + ], + "score": 0.9, + "content": "\\widehat { \\mathcal { D } } ^ { * , Q }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 396, + 106, + 427, + 120 + ], + "score": 1.0, + "content": ", where", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 427, + 106, + 501, + 120 + ], + "score": 0.93, + "content": "\\hat { \\mathcal { D } } ^ { * , Q } = \\widehat { \\mathcal { D } } ^ { * } \\backslash \\widehat { \\mathcal { D } } ^ { * , S }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 502, + 106, + 505, + 120 + ], + "score": 1.0, + "content": ".", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 119, + 506, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 119, + 132, + 135 + ], + "score": 1.0, + "content": "Since", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 132, + 119, + 142, + 131 + ], + "score": 0.86, + "content": "\\widehat { \\mathcal { D } }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 142, + 119, + 506, + 135 + ], + "score": 1.0, + "content": "is not accessible during meta-training, this support-query split is mimicked on the base", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 132, + 225, + 147 + ], + "spans": [ + { + "bbox": [ + 106, + 132, + 142, + 147 + ], + "score": 1.0, + "content": "class set", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 142, + 132, + 151, + 144 + ], + "score": 0.86, + "content": "\\widetilde { \\mathcal { D } }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 152, + 132, + 225, + 147 + ], + "score": 1.0, + "content": "for meta-training.", + "type": "text", + "cross_page": true + } + ], + "index": 4 + } + ], + "index": 50, + "bbox_fs": [ + 105, + 675, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 79, + 505, + 146 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 120, + 95 + ], + "score": 1.0, + "content": "set", + "type": "text" + }, + { + "bbox": [ + 120, + 80, + 129, + 92 + ], + "score": 0.83, + "content": "\\widetilde { \\mathcal { D } }", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 81, + 417, + 95 + ], + "score": 1.0, + "content": ", the goal of few-shot classification is to perform well on an unseen task", + "type": "text" + }, + { + "bbox": [ + 417, + 80, + 432, + 93 + ], + "score": 0.88, + "content": "{ \\widehat { \\mathcal { D } } } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "sampled from the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 93, + 505, + 108 + ], + "spans": [ + { + "bbox": [ + 104, + 93, + 165, + 108 + ], + "score": 1.0, + "content": "novel class set", + "type": "text" + }, + { + "bbox": [ + 166, + 93, + 176, + 106 + ], + "score": 0.85, + "content": "\\widehat { \\mathcal { D } }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 93, + 343, + 108 + ], + "score": 1.0, + "content": "after a quick adaptation on a small subset", + "type": "text" + }, + { + "bbox": [ + 343, + 93, + 365, + 106 + ], + "score": 0.89, + "content": "\\widehat { \\mathcal { D } } ^ { * , S }", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 93, + 487, + 108 + ], + "score": 1.0, + "content": "(known as the support set) of", + "type": "text" + }, + { + "bbox": [ + 488, + 93, + 501, + 105 + ], + "score": 0.89, + "content": "\\widehat { \\mathcal { D } } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 93, + 505, + 108 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 106, + 505, + 120 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 374, + 120 + ], + "score": 1.0, + "content": "The performance of this unseen task is evaluated on the query set", + "type": "text" + }, + { + "bbox": [ + 374, + 106, + 396, + 119 + ], + "score": 0.9, + "content": "\\widehat { \\mathcal { D } } ^ { * , Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 106, + 427, + 120 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 427, + 106, + 501, + 120 + ], + "score": 0.93, + "content": "\\hat { \\mathcal { D } } ^ { * , Q } = \\widehat { \\mathcal { D } } ^ { * } \\backslash \\widehat { \\mathcal { D } } ^ { * , S }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 106, + 505, + 120 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 119, + 506, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 119, + 132, + 135 + ], + "score": 1.0, + "content": "Since", + "type": "text" + }, + { + "bbox": [ + 132, + 119, + 142, + 131 + ], + "score": 0.86, + "content": "\\widehat { \\mathcal { D } }", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 119, + 506, + 135 + ], + "score": 1.0, + "content": "is not accessible during meta-training, this support-query split is mimicked on the base", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 132, + 225, + 147 + ], + "spans": [ + { + "bbox": [ + 106, + 132, + 142, + 147 + ], + "score": 1.0, + "content": "class set", + "type": "text" + }, + { + "bbox": [ + 142, + 132, + 151, + 144 + ], + "score": 0.86, + "content": "\\widetilde { \\mathcal { D } }", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 132, + 225, + 147 + ], + "score": 1.0, + "content": "for meta-training.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 106, + 157, + 505, + 251 + ], + "lines": [ + { + "bbox": [ + 105, + 157, + 505, + 171 + ], + "spans": [ + { + "bbox": [ + 105, + 157, + 505, + 171 + ], + "score": 1.0, + "content": "Model-agnostic meta-learning We are interested in the well-known meta-learning algorithm", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 168, + 506, + 182 + ], + "spans": [ + { + "bbox": [ + 104, + 168, + 506, + 182 + ], + "score": 1.0, + "content": "MAML (Finn et al., 2017). Each updating step of MAML aims to improve the ability of the meta-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 180, + 505, + 192 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 505, + 192 + ], + "score": 1.0, + "content": "parameters to act as a good model initialisation for a quick adaptation on unseen tasks. Each iteration", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 191, + 504, + 205 + ], + "spans": [ + { + "bbox": [ + 106, + 193, + 240, + 205 + ], + "score": 1.0, + "content": "of the MAML algorithm samples", + "type": "text" + }, + { + "bbox": [ + 240, + 193, + 252, + 203 + ], + "score": 0.74, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 193, + 366, + 205 + ], + "score": 1.0, + "content": "tasks from the base class set", + "type": "text" + }, + { + "bbox": [ + 367, + 191, + 376, + 203 + ], + "score": 0.86, + "content": "\\widetilde { \\mathcal { D } }", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 193, + 504, + 205 + ], + "score": 1.0, + "content": "and runs a few steps of stochas-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 204, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 505, + 216 + ], + "score": 1.0, + "content": "tic gradient descent (SGD) for an inner loop task-specific learning. The number of tasks sampled", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 214, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 104, + 214, + 332, + 228 + ], + "score": 1.0, + "content": "per iteration is known as the meta-batch size. For task", + "type": "text" + }, + { + "bbox": [ + 333, + 217, + 342, + 225 + ], + "score": 0.74, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 214, + 506, + 228 + ], + "score": 1.0, + "content": ", the inner loop outputs the task-specific", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 226, + 506, + 241 + ], + "spans": [ + { + "bbox": [ + 104, + 226, + 153, + 241 + ], + "score": 1.0, + "content": "parameters", + "type": "text" + }, + { + "bbox": [ + 153, + 226, + 167, + 237 + ], + "score": 0.89, + "content": "\\tilde { \\theta } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 226, + 198, + 241 + ], + "score": 1.0, + "content": "from a", + "type": "text" + }, + { + "bbox": [ + 199, + 228, + 205, + 237 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 226, + 387, + 241 + ], + "score": 1.0, + "content": "-step SGD quick adaptation on the objective", + "type": "text" + }, + { + "bbox": [ + 387, + 226, + 434, + 240 + ], + "score": 0.96, + "content": "\\mathcal { L } ( \\boldsymbol { \\theta } , \\widetilde { \\mathcal { D } } ^ { m , S } )", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 226, + 506, + 241 + ], + "score": 1.0, + "content": "with the support", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 239, + 225, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 120, + 253 + ], + "score": 1.0, + "content": "set", + "type": "text" + }, + { + "bbox": [ + 120, + 239, + 144, + 251 + ], + "score": 0.9, + "content": "\\widetilde { \\mathcal { D } } ^ { m , S }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 239, + 214, + 253 + ], + "score": 1.0, + "content": "and initialised at", + "type": "text" + }, + { + "bbox": [ + 214, + 241, + 220, + 251 + ], + "score": 0.8, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 239, + 225, + 253 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 8.5 + }, + { + "type": "interline_equation", + "bbox": [ + 248, + 249, + 361, + 264 + ], + "lines": [ + { + "bbox": [ + 248, + 249, + 361, + 264 + ], + "spans": [ + { + "bbox": [ + 248, + 249, + 361, + 264 + ], + "score": 0.93, + "content": "\\tilde { \\theta } ^ { m } = S G D _ { k } ( \\mathcal { L } ( \\theta , \\widetilde { D } ^ { m , S } ) ) ,", + "type": "interline_equation", + "image_path": "7eca1273e68ec69039e51c7a6b2fa9df631d9ebf7fce7921499424209291ac69.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 248, + 249, + 361, + 264 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 267, + 505, + 292 + ], + "lines": [ + { + "bbox": [ + 106, + 266, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 135, + 280 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 268, + 200, + 279 + ], + "score": 0.92, + "content": "m = 1 , \\ldots , M", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 266, + 505, + 280 + ], + "score": 1.0, + "content": ". The outer loop gathers all task-specific adaptations to update the meta-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 278, + 370, + 292 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 153, + 292 + ], + "score": 1.0, + "content": "parameters", + "type": "text" + }, + { + "bbox": [ + 153, + 281, + 159, + 290 + ], + "score": 0.8, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 279, + 217, + 292 + ], + "score": 1.0, + "content": "using the loss", + "type": "text" + }, + { + "bbox": [ + 217, + 278, + 273, + 292 + ], + "score": 0.93, + "content": "\\mathcal { L } ( \\tilde { \\theta } ^ { m } , \\widetilde { D } ^ { m , Q } )", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 279, + 341, + 292 + ], + "score": 1.0, + "content": "on the query set", + "type": "text" + }, + { + "bbox": [ + 341, + 278, + 366, + 290 + ], + "score": 0.9, + "content": "\\bar { \\mathcal { D } } ^ { m , Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 279, + 370, + 292 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 108, + 297, + 288, + 308 + ], + "lines": [ + { + "bbox": [ + 106, + 296, + 288, + 310 + ], + "spans": [ + { + "bbox": [ + 106, + 296, + 288, + 310 + ], + "score": 1.0, + "content": "The overall MAML optimisation objective is", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "interline_equation", + "bbox": [ + 206, + 314, + 406, + 348 + ], + "lines": [ + { + "bbox": [ + 206, + 314, + 406, + 348 + ], + "spans": [ + { + "bbox": [ + 206, + 314, + 406, + 348 + ], + "score": 0.94, + "content": "\\underset { \\theta } { \\arg \\operatorname* { m i n } } \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } \\mathcal { L } ( S G D _ { k } ( \\mathcal { L } ( \\theta , \\widetilde { \\mathcal { D } } ^ { m , S } ) ) , \\widetilde { \\mathcal { D } } ^ { m , Q } ) .", + "type": "interline_equation", + "image_path": "92a2ef5fcf69515e3b21eb37f25efa013c1be58b6f0ef4335d7d4f09097f34c7.jpg" + } + ] + } + ], + "index": 17.5, + "virtual_lines": [ + { + "bbox": [ + 206, + 314, + 406, + 331.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 206, + 331.0, + 406, + 348.0 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 358, + 505, + 480 + ], + "lines": [ + { + "bbox": [ + 105, + 358, + 506, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 506, + 372 + ], + "score": 1.0, + "content": "Like most offline meta-learning algorithms, MAML requires all base classes to be readily available", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 370, + 504, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 370, + 504, + 381 + ], + "score": 1.0, + "content": "for tasks-sampling at each iteration. We aim to overcome this limitation by meta-learning a model", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 380, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 505, + 393 + ], + "score": 1.0, + "content": "that can few-shot classify unseen tasks from the novel classes, while the tasks from the base classes", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 391, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 104, + 391, + 506, + 406 + ], + "score": 1.0, + "content": "arrive sequentially for meta-training. MAML also assumes a stationary task distribution during", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 403, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 505, + 416 + ], + "score": 1.0, + "content": "meta-training and meta-evaluation. Under this assumption, a meta-learned model is only applicable", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 414, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 505, + 426 + ], + "score": 1.0, + "content": "to a specific dataset distribution. When the model encounters a sequence of datasets with appar-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 424, + 506, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 506, + 438 + ], + "score": 1.0, + "content": "ent distributional shift, it loses the few-shot classification ability on previous datasets as new ones", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 436, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 106, + 436, + 505, + 447 + ], + "score": 1.0, + "content": "arrive for meta-training. Our work also aims to meta-learn a single model for few-shot classifica-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 447, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 505, + 460 + ], + "score": 1.0, + "content": "tion on multiple datasets that arrive sequentially for meta-training. We achieve these two goals by", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 458, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 505, + 470 + ], + "score": 1.0, + "content": "incorporating MAML into the BOL framework to give the Bayesian online meta-learning (BOML)", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 468, + 342, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 342, + 482 + ], + "score": 1.0, + "content": "framework that finds the posterior of the meta-parameters.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 24 + }, + { + "type": "title", + "bbox": [ + 106, + 496, + 469, + 509 + ], + "lines": [ + { + "bbox": [ + 104, + 495, + 471, + 511 + ], + "spans": [ + { + "bbox": [ + 104, + 495, + 471, + 511 + ], + "score": 1.0, + "content": "3 OVERVIEW OF OUR BAYESIAN ONLINE META-LEARNING APPROACH", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 521, + 504, + 555 + ], + "lines": [ + { + "bbox": [ + 105, + 520, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 505, + 534 + ], + "score": 1.0, + "content": "Our central contribution is to extend the benefits of meta-learning to the Bayesian online scenario,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 532, + 504, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 504, + 546 + ], + "score": 1.0, + "content": "thereby training models that can generalise across tasks whilst dealing with parameter uncertainty", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 542, + 327, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 327, + 556 + ], + "score": 1.0, + "content": "in the setting of sequential tasks or sequential datasets.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 567, + 505, + 627 + ], + "lines": [ + { + "bbox": [ + 106, + 566, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 566, + 505, + 579 + ], + "score": 1.0, + "content": "Sequential datasets setting In this setting, online meta-training occurs sequentially on the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 577, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 141, + 591 + ], + "score": 1.0, + "content": "datasets", + "type": "text" + }, + { + "bbox": [ + 141, + 578, + 190, + 590 + ], + "score": 0.92, + "content": "\\mathcal { D } _ { 1 } , \\ldots , \\mathcal { D } _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 577, + 250, + 591 + ], + "score": 1.0, + "content": ". Each dataset", + "type": "text" + }, + { + "bbox": [ + 250, + 578, + 262, + 589 + ], + "score": 0.88, + "content": "\\mathcal { D } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 577, + 505, + 591 + ], + "score": 1.0, + "content": "can be seen as a knowledge domain with an associated un-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 589, + 506, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 209, + 604 + ], + "score": 1.0, + "content": "derlying task distribution", + "type": "text" + }, + { + "bbox": [ + 209, + 591, + 231, + 603 + ], + "score": 0.92, + "content": "p ( \\mathcal T _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 590, + 303, + 604 + ], + "score": 1.0, + "content": ". A newly-arrived", + "type": "text" + }, + { + "bbox": [ + 303, + 591, + 326, + 603 + ], + "score": 0.92, + "content": "\\mathcal { D } _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 590, + 464, + 604 + ], + "score": 1.0, + "content": "is separated into the base class set", + "type": "text" + }, + { + "bbox": [ + 465, + 589, + 487, + 603 + ], + "score": 0.93, + "content": "\\widetilde { \\mathcal { D } } _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 590, + 506, + 604 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 602, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 165, + 617 + ], + "score": 1.0, + "content": "novel class set", + "type": "text" + }, + { + "bbox": [ + 165, + 602, + 187, + 616 + ], + "score": 0.93, + "content": "\\widehat { \\mathcal { D } } _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 604, + 506, + 617 + ], + "score": 1.0, + "content": "for meta-training and meta-evaluation respectively, where the tasks in these two", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 615, + 315, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 279, + 628 + ], + "score": 1.0, + "content": "stages are drawn from the task distribution", + "type": "text" + }, + { + "bbox": [ + 279, + 615, + 311, + 627 + ], + "score": 0.92, + "content": "p ( \\mathcal T _ { t + 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 615, + 315, + 628 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 106, + 638, + 505, + 700 + ], + "lines": [ + { + "bbox": [ + 106, + 639, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 432, + 651 + ], + "score": 1.0, + "content": "Sequential tasks setting The sequential tasks setting only involves one dataset", + "type": "text" + }, + { + "bbox": [ + 432, + 640, + 442, + 649 + ], + "score": 0.8, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 639, + 505, + 651 + ], + "score": 1.0, + "content": "with an associ-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 650, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 650, + 239, + 662 + ], + "score": 1.0, + "content": "ated underlying task distribution", + "type": "text" + }, + { + "bbox": [ + 240, + 650, + 261, + 662 + ], + "score": 0.92, + "content": "p ( \\mathcal { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 650, + 293, + 662 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 293, + 650, + 303, + 660 + ], + "score": 0.82, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 650, + 505, + 662 + ], + "score": 1.0, + "content": "is separated into the base and novel class sets. In", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 661, + 506, + 677 + ], + "spans": [ + { + "bbox": [ + 104, + 661, + 155, + 677 + ], + "score": 1.0, + "content": "this setting,", + "type": "text" + }, + { + "bbox": [ + 155, + 661, + 212, + 675 + ], + "score": 0.93, + "content": "\\widetilde { \\cal D } _ { 1 } , \\ldots , \\widetilde { \\cal D } _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 661, + 506, + 677 + ], + "score": 1.0, + "content": "denote the non-overlapping tasks formed from the base class set and they", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 675, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 309, + 689 + ], + "score": 1.0, + "content": "arrive sequentially for meta-training. These tasks", + "type": "text" + }, + { + "bbox": [ + 309, + 675, + 366, + 688 + ], + "score": 0.93, + "content": "\\widetilde { \\mathcal { D } } _ { 1 } , \\ldots , \\widetilde { \\mathcal { D } } _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "and the meta-evaluation tasks are", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 687, + 262, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 237, + 699 + ], + "score": 1.0, + "content": "drawn from the task distribution", + "type": "text" + }, + { + "bbox": [ + 237, + 688, + 259, + 699 + ], + "score": 0.94, + "content": "p ( \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 687, + 262, + 699 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 107, + 704, + 504, + 733 + ], + "lines": [ + { + "bbox": [ + 102, + 698, + 506, + 725 + ], + "spans": [ + { + "bbox": [ + 102, + 698, + 409, + 725 + ], + "score": 1.0, + "content": "Notationally, for both sequential tasks and sequential datasets settings, let", + "type": "text" + }, + { + "bbox": [ + 410, + 704, + 432, + 719 + ], + "score": 0.92, + "content": "\\mathcal { \\widetilde { D } } _ { t + 1 } ^ { S }", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 698, + 451, + 725 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 452, + 704, + 474, + 719 + ], + "score": 0.92, + "content": "\\widetilde { \\mathcal { D } } _ { t + 1 } ^ { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 698, + 506, + 725 + ], + "score": 1.0, + "content": "denote", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 102, + 712, + 503, + 739 + ], + "spans": [ + { + "bbox": [ + 102, + 712, + 355, + 739 + ], + "score": 1.0, + "content": "the collection of support sets and query sets respectively from", + "type": "text" + }, + { + "bbox": [ + 356, + 720, + 377, + 733 + ], + "score": 0.92, + "content": "\\widetilde { \\mathcal { D } } _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 712, + 410, + 739 + ], + "score": 1.0, + "content": ", so that", + "type": "text" + }, + { + "bbox": [ + 411, + 719, + 499, + 734 + ], + "score": 0.93, + "content": "\\widetilde { D } _ { t + 1 } = \\widetilde { D } _ { t + 1 } ^ { S } \\cup \\widetilde { D } _ { t + 1 } ^ { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 500, + 725, + 503, + 735 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 514, + 567, + 541, + 588 + ], + "lines": [ + { + "bbox": [ + 514, + 567, + 542, + 577 + ], + "spans": [ + { + "bbox": [ + 514, + 567, + 542, + 577 + ], + "score": 0.64, + "content": "@ \\ @ \\left( { \\widehat { a } } \\right)", + "type": "inline_equation" + } + ] + }, + { + "bbox": [ + 513, + 577, + 535, + 591 + ], + "spans": [ + { + "bbox": [ + 513, + 577, + 535, + 591 + ], + "score": 1.0, + "content": "New", + "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": [ + 514, + 639, + 541, + 660 + ], + "lines": [ + { + "bbox": [ + 514, + 639, + 542, + 649 + ], + "spans": [ + { + "bbox": [ + 514, + 639, + 542, + 649 + ], + "score": 0.42, + "content": "\\cdot", + "type": "inline_equation" + } + ] + }, + { + "bbox": [ + 513, + 648, + 535, + 662 + ], + "spans": [ + { + "bbox": [ + 513, + 648, + 535, + 662 + ], + "score": 1.0, + "content": "New", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 79, + 505, + 146 + ], + "lines": [], + "index": 2, + "bbox_fs": [ + 104, + 80, + 506, + 147 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 157, + 505, + 251 + ], + "lines": [ + { + "bbox": [ + 105, + 157, + 505, + 171 + ], + "spans": [ + { + "bbox": [ + 105, + 157, + 505, + 171 + ], + "score": 1.0, + "content": "Model-agnostic meta-learning We are interested in the well-known meta-learning algorithm", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 168, + 506, + 182 + ], + "spans": [ + { + "bbox": [ + 104, + 168, + 506, + 182 + ], + "score": 1.0, + "content": "MAML (Finn et al., 2017). Each updating step of MAML aims to improve the ability of the meta-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 180, + 505, + 192 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 505, + 192 + ], + "score": 1.0, + "content": "parameters to act as a good model initialisation for a quick adaptation on unseen tasks. Each iteration", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 191, + 504, + 205 + ], + "spans": [ + { + "bbox": [ + 106, + 193, + 240, + 205 + ], + "score": 1.0, + "content": "of the MAML algorithm samples", + "type": "text" + }, + { + "bbox": [ + 240, + 193, + 252, + 203 + ], + "score": 0.74, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 193, + 366, + 205 + ], + "score": 1.0, + "content": "tasks from the base class set", + "type": "text" + }, + { + "bbox": [ + 367, + 191, + 376, + 203 + ], + "score": 0.86, + "content": "\\widetilde { \\mathcal { D } }", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 193, + 504, + 205 + ], + "score": 1.0, + "content": "and runs a few steps of stochas-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 204, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 505, + 216 + ], + "score": 1.0, + "content": "tic gradient descent (SGD) for an inner loop task-specific learning. The number of tasks sampled", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 214, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 104, + 214, + 332, + 228 + ], + "score": 1.0, + "content": "per iteration is known as the meta-batch size. For task", + "type": "text" + }, + { + "bbox": [ + 333, + 217, + 342, + 225 + ], + "score": 0.74, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 214, + 506, + 228 + ], + "score": 1.0, + "content": ", the inner loop outputs the task-specific", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 226, + 506, + 241 + ], + "spans": [ + { + "bbox": [ + 104, + 226, + 153, + 241 + ], + "score": 1.0, + "content": "parameters", + "type": "text" + }, + { + "bbox": [ + 153, + 226, + 167, + 237 + ], + "score": 0.89, + "content": "\\tilde { \\theta } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 226, + 198, + 241 + ], + "score": 1.0, + "content": "from a", + "type": "text" + }, + { + "bbox": [ + 199, + 228, + 205, + 237 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 226, + 387, + 241 + ], + "score": 1.0, + "content": "-step SGD quick adaptation on the objective", + "type": "text" + }, + { + "bbox": [ + 387, + 226, + 434, + 240 + ], + "score": 0.96, + "content": "\\mathcal { L } ( \\boldsymbol { \\theta } , \\widetilde { \\mathcal { D } } ^ { m , S } )", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 226, + 506, + 241 + ], + "score": 1.0, + "content": "with the support", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 239, + 225, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 120, + 253 + ], + "score": 1.0, + "content": "set", + "type": "text" + }, + { + "bbox": [ + 120, + 239, + 144, + 251 + ], + "score": 0.9, + "content": "\\widetilde { \\mathcal { D } } ^ { m , S }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 239, + 214, + 253 + ], + "score": 1.0, + "content": "and initialised at", + "type": "text" + }, + { + "bbox": [ + 214, + 241, + 220, + 251 + ], + "score": 0.8, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 239, + 225, + 253 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 8.5, + "bbox_fs": [ + 104, + 157, + 506, + 253 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 248, + 249, + 361, + 264 + ], + "lines": [ + { + "bbox": [ + 248, + 249, + 361, + 264 + ], + "spans": [ + { + "bbox": [ + 248, + 249, + 361, + 264 + ], + "score": 0.93, + "content": "\\tilde { \\theta } ^ { m } = S G D _ { k } ( \\mathcal { L } ( \\theta , \\widetilde { D } ^ { m , S } ) ) ,", + "type": "interline_equation", + "image_path": "7eca1273e68ec69039e51c7a6b2fa9df631d9ebf7fce7921499424209291ac69.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 248, + 249, + 361, + 264 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 267, + 505, + 292 + ], + "lines": [ + { + "bbox": [ + 106, + 266, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 135, + 280 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 268, + 200, + 279 + ], + "score": 0.92, + "content": "m = 1 , \\ldots , M", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 266, + 505, + 280 + ], + "score": 1.0, + "content": ". The outer loop gathers all task-specific adaptations to update the meta-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 278, + 370, + 292 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 153, + 292 + ], + "score": 1.0, + "content": "parameters", + "type": "text" + }, + { + "bbox": [ + 153, + 281, + 159, + 290 + ], + "score": 0.8, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 279, + 217, + 292 + ], + "score": 1.0, + "content": "using the loss", + "type": "text" + }, + { + "bbox": [ + 217, + 278, + 273, + 292 + ], + "score": 0.93, + "content": "\\mathcal { L } ( \\tilde { \\theta } ^ { m } , \\widetilde { D } ^ { m , Q } )", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 279, + 341, + 292 + ], + "score": 1.0, + "content": "on the query set", + "type": "text" + }, + { + "bbox": [ + 341, + 278, + 366, + 290 + ], + "score": 0.9, + "content": "\\bar { \\mathcal { D } } ^ { m , Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 279, + 370, + 292 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 266, + 505, + 292 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 297, + 288, + 308 + ], + "lines": [ + { + "bbox": [ + 106, + 296, + 288, + 310 + ], + "spans": [ + { + "bbox": [ + 106, + 296, + 288, + 310 + ], + "score": 1.0, + "content": "The overall MAML optimisation objective is", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16, + "bbox_fs": [ + 106, + 296, + 288, + 310 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 206, + 314, + 406, + 348 + ], + "lines": [ + { + "bbox": [ + 206, + 314, + 406, + 348 + ], + "spans": [ + { + "bbox": [ + 206, + 314, + 406, + 348 + ], + "score": 0.94, + "content": "\\underset { \\theta } { \\arg \\operatorname* { m i n } } \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } \\mathcal { L } ( S G D _ { k } ( \\mathcal { L } ( \\theta , \\widetilde { \\mathcal { D } } ^ { m , S } ) ) , \\widetilde { \\mathcal { D } } ^ { m , Q } ) .", + "type": "interline_equation", + "image_path": "92a2ef5fcf69515e3b21eb37f25efa013c1be58b6f0ef4335d7d4f09097f34c7.jpg" + } + ] + } + ], + "index": 17.5, + "virtual_lines": [ + { + "bbox": [ + 206, + 314, + 406, + 331.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 206, + 331.0, + 406, + 348.0 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 358, + 505, + 480 + ], + "lines": [ + { + "bbox": [ + 105, + 358, + 506, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 506, + 372 + ], + "score": 1.0, + "content": "Like most offline meta-learning algorithms, MAML requires all base classes to be readily available", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 370, + 504, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 370, + 504, + 381 + ], + "score": 1.0, + "content": "for tasks-sampling at each iteration. We aim to overcome this limitation by meta-learning a model", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 380, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 505, + 393 + ], + "score": 1.0, + "content": "that can few-shot classify unseen tasks from the novel classes, while the tasks from the base classes", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 391, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 104, + 391, + 506, + 406 + ], + "score": 1.0, + "content": "arrive sequentially for meta-training. MAML also assumes a stationary task distribution during", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 403, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 505, + 416 + ], + "score": 1.0, + "content": "meta-training and meta-evaluation. Under this assumption, a meta-learned model is only applicable", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 414, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 505, + 426 + ], + "score": 1.0, + "content": "to a specific dataset distribution. When the model encounters a sequence of datasets with appar-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 424, + 506, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 506, + 438 + ], + "score": 1.0, + "content": "ent distributional shift, it loses the few-shot classification ability on previous datasets as new ones", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 436, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 106, + 436, + 505, + 447 + ], + "score": 1.0, + "content": "arrive for meta-training. Our work also aims to meta-learn a single model for few-shot classifica-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 447, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 505, + 460 + ], + "score": 1.0, + "content": "tion on multiple datasets that arrive sequentially for meta-training. We achieve these two goals by", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 458, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 505, + 470 + ], + "score": 1.0, + "content": "incorporating MAML into the BOL framework to give the Bayesian online meta-learning (BOML)", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 468, + 342, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 342, + 482 + ], + "score": 1.0, + "content": "framework that finds the posterior of the meta-parameters.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 24, + "bbox_fs": [ + 104, + 358, + 506, + 482 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 496, + 469, + 509 + ], + "lines": [ + { + "bbox": [ + 104, + 495, + 471, + 511 + ], + "spans": [ + { + "bbox": [ + 104, + 495, + 471, + 511 + ], + "score": 1.0, + "content": "3 OVERVIEW OF OUR BAYESIAN ONLINE META-LEARNING APPROACH", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 521, + 504, + 555 + ], + "lines": [ + { + "bbox": [ + 105, + 520, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 505, + 534 + ], + "score": 1.0, + "content": "Our central contribution is to extend the benefits of meta-learning to the Bayesian online scenario,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 532, + 504, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 504, + 546 + ], + "score": 1.0, + "content": "thereby training models that can generalise across tasks whilst dealing with parameter uncertainty", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 542, + 327, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 327, + 556 + ], + "score": 1.0, + "content": "in the setting of sequential tasks or sequential datasets.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 520, + 505, + 556 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 567, + 505, + 627 + ], + "lines": [ + { + "bbox": [ + 106, + 566, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 566, + 505, + 579 + ], + "score": 1.0, + "content": "Sequential datasets setting In this setting, online meta-training occurs sequentially on the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 577, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 141, + 591 + ], + "score": 1.0, + "content": "datasets", + "type": "text" + }, + { + "bbox": [ + 141, + 578, + 190, + 590 + ], + "score": 0.92, + "content": "\\mathcal { D } _ { 1 } , \\ldots , \\mathcal { D } _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 577, + 250, + 591 + ], + "score": 1.0, + "content": ". Each dataset", + "type": "text" + }, + { + "bbox": [ + 250, + 578, + 262, + 589 + ], + "score": 0.88, + "content": "\\mathcal { D } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 577, + 505, + 591 + ], + "score": 1.0, + "content": "can be seen as a knowledge domain with an associated un-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 589, + 506, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 209, + 604 + ], + "score": 1.0, + "content": "derlying task distribution", + "type": "text" + }, + { + "bbox": [ + 209, + 591, + 231, + 603 + ], + "score": 0.92, + "content": "p ( \\mathcal T _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 590, + 303, + 604 + ], + "score": 1.0, + "content": ". A newly-arrived", + "type": "text" + }, + { + "bbox": [ + 303, + 591, + 326, + 603 + ], + "score": 0.92, + "content": "\\mathcal { D } _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 590, + 464, + 604 + ], + "score": 1.0, + "content": "is separated into the base class set", + "type": "text" + }, + { + "bbox": [ + 465, + 589, + 487, + 603 + ], + "score": 0.93, + "content": "\\widetilde { \\mathcal { D } } _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 590, + 506, + 604 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 602, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 165, + 617 + ], + "score": 1.0, + "content": "novel class set", + "type": "text" + }, + { + "bbox": [ + 165, + 602, + 187, + 616 + ], + "score": 0.93, + "content": "\\widehat { \\mathcal { D } } _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 604, + 506, + 617 + ], + "score": 1.0, + "content": "for meta-training and meta-evaluation respectively, where the tasks in these two", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 615, + 315, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 279, + 628 + ], + "score": 1.0, + "content": "stages are drawn from the task distribution", + "type": "text" + }, + { + "bbox": [ + 279, + 615, + 311, + 627 + ], + "score": 0.92, + "content": "p ( \\mathcal T _ { t + 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 615, + 315, + 628 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 566, + 506, + 628 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 638, + 505, + 700 + ], + "lines": [ + { + "bbox": [ + 106, + 639, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 432, + 651 + ], + "score": 1.0, + "content": "Sequential tasks setting The sequential tasks setting only involves one dataset", + "type": "text" + }, + { + "bbox": [ + 432, + 640, + 442, + 649 + ], + "score": 0.8, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 639, + 505, + 651 + ], + "score": 1.0, + "content": "with an associ-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 650, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 650, + 239, + 662 + ], + "score": 1.0, + "content": "ated underlying task distribution", + "type": "text" + }, + { + "bbox": [ + 240, + 650, + 261, + 662 + ], + "score": 0.92, + "content": "p ( \\mathcal { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 650, + 293, + 662 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 293, + 650, + 303, + 660 + ], + "score": 0.82, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 650, + 505, + 662 + ], + "score": 1.0, + "content": "is separated into the base and novel class sets. In", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 661, + 506, + 677 + ], + "spans": [ + { + "bbox": [ + 104, + 661, + 155, + 677 + ], + "score": 1.0, + "content": "this setting,", + "type": "text" + }, + { + "bbox": [ + 155, + 661, + 212, + 675 + ], + "score": 0.93, + "content": "\\widetilde { \\cal D } _ { 1 } , \\ldots , \\widetilde { \\cal D } _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 661, + 506, + 677 + ], + "score": 1.0, + "content": "denote the non-overlapping tasks formed from the base class set and they", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 675, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 309, + 689 + ], + "score": 1.0, + "content": "arrive sequentially for meta-training. These tasks", + "type": "text" + }, + { + "bbox": [ + 309, + 675, + 366, + 688 + ], + "score": 0.93, + "content": "\\widetilde { \\mathcal { D } } _ { 1 } , \\ldots , \\widetilde { \\mathcal { D } } _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "and the meta-evaluation tasks are", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 687, + 262, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 237, + 699 + ], + "score": 1.0, + "content": "drawn from the task distribution", + "type": "text" + }, + { + "bbox": [ + 237, + 688, + 259, + 699 + ], + "score": 0.94, + "content": "p ( \\tau )", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 687, + 262, + 699 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41, + "bbox_fs": [ + 104, + 639, + 506, + 699 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 704, + 504, + 733 + ], + "lines": [ + { + "bbox": [ + 102, + 698, + 506, + 725 + ], + "spans": [ + { + "bbox": [ + 102, + 698, + 409, + 725 + ], + "score": 1.0, + "content": "Notationally, for both sequential tasks and sequential datasets settings, let", + "type": "text" + }, + { + "bbox": [ + 410, + 704, + 432, + 719 + ], + "score": 0.92, + "content": "\\mathcal { \\widetilde { D } } _ { t + 1 } ^ { S }", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 698, + 451, + 725 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 452, + 704, + 474, + 719 + ], + "score": 0.92, + "content": "\\widetilde { \\mathcal { D } } _ { t + 1 } ^ { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 698, + 506, + 725 + ], + "score": 1.0, + "content": "denote", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 102, + 712, + 503, + 739 + ], + "spans": [ + { + "bbox": [ + 102, + 712, + 355, + 739 + ], + "score": 1.0, + "content": "the collection of support sets and query sets respectively from", + "type": "text" + }, + { + "bbox": [ + 356, + 720, + 377, + 733 + ], + "score": 0.92, + "content": "\\widetilde { \\mathcal { D } } _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 712, + 410, + 739 + ], + "score": 1.0, + "content": ", so that", + "type": "text" + }, + { + "bbox": [ + 411, + 719, + 499, + 734 + ], + "score": 0.93, + "content": "\\widetilde { D } _ { t + 1 } = \\widetilde { D } _ { t + 1 } ^ { S } \\cup \\widetilde { D } _ { t + 1 } ^ { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 500, + 725, + 503, + 735 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5, + "bbox_fs": [ + 102, + 698, + 506, + 739 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 251, + 97 + ], + "score": 1.0, + "content": "We are interested in a MAP estimate", + "type": "text" + }, + { + "bbox": [ + 252, + 81, + 364, + 95 + ], + "score": 0.88, + "content": "\\theta ^ { * } = \\arg \\operatorname* { m a x } _ { \\theta } p ( \\theta | \\widetilde { D } _ { 1 : t + 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 81, + 506, + 97 + ], + "score": 1.0, + "content": ". Using Bayes’ rule on the posterior", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 217, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 217, + 105 + ], + "score": 1.0, + "content": "gives the recursive formula", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 164, + 109, + 446, + 173 + ], + "lines": [ + { + "bbox": [ + 164, + 109, + 446, + 173 + ], + "spans": [ + { + "bbox": [ + 164, + 109, + 446, + 173 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { p ( \\theta | \\widetilde { D } _ { 1 : t + 1 } ) \\propto p ( \\widetilde { D } _ { t + 1 } ^ { S } , \\widetilde { D } _ { t + 1 } ^ { Q } | \\theta ) p ( \\theta | \\widetilde { D } _ { 1 : t } ) } \\\\ & { \\qquad = p ( \\widetilde { D } _ { t + 1 } ^ { Q } | \\theta , \\widetilde { D } _ { t + 1 } ^ { S } ) p ( \\widetilde { D } _ { t + 1 } ^ { S } | \\theta ) p ( \\theta | \\widetilde { D } _ { 1 : t } ) } \\\\ & { \\qquad = \\bigg \\{ \\int p ( \\widetilde { D } _ { t + 1 } ^ { Q } | \\widetilde { \\theta } ) p ( \\widetilde { \\theta } | \\theta , \\widetilde { D } _ { t + 1 } ^ { S } ) d \\widetilde { \\theta } \\bigg \\} p ( \\widetilde { D } _ { t + 1 } ^ { S } | \\theta ) p ( \\theta | \\widetilde { D } _ { 1 : t } ) } \\end{array}", + "type": "interline_equation", + "image_path": "1a8e95d40de872338dbc14d6059f9cc8b3bb5ce6f016109a516aedb5ff29e140.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 164, + 109, + 446, + 130.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 164, + 130.33333333333334, + 446, + 151.66666666666669 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 164, + 151.66666666666669, + 446, + 173.00000000000003 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 176, + 442, + 188 + ], + "lines": [ + { + "bbox": [ + 106, + 175, + 443, + 190 + ], + "spans": [ + { + "bbox": [ + 106, + 175, + 433, + 190 + ], + "score": 1.0, + "content": "where Eq. (3) follows from the assumption that each dataset is independent given", + "type": "text" + }, + { + "bbox": [ + 433, + 177, + 439, + 186 + ], + "score": 0.79, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 175, + 443, + 190 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 106, + 193, + 505, + 243 + ], + "lines": [ + { + "bbox": [ + 105, + 193, + 506, + 208 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 319, + 208 + ], + "score": 1.0, + "content": "From the meta-learning perspective, the parameters", + "type": "text" + }, + { + "bbox": [ + 320, + 193, + 326, + 204 + ], + "score": 0.84, + "content": "\\tilde { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 194, + 506, + 208 + ], + "score": 1.0, + "content": "introduced in Eq. (5) can be viewed as the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 205, + 506, + 220 + ], + "spans": [ + { + "bbox": [ + 105, + 206, + 441, + 220 + ], + "score": 1.0, + "content": "task-specific parameters in MAML. There are various choices for the distribution", + "type": "text" + }, + { + "bbox": [ + 441, + 205, + 492, + 220 + ], + "score": 0.93, + "content": "p ( \\tilde { \\theta } | \\theta , \\widetilde { D } _ { t + 1 } ^ { S } )", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 206, + 506, + 220 + ], + "score": 1.0, + "content": "in", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 218, + 506, + 231 + ], + "spans": [ + { + "bbox": [ + 106, + 218, + 506, + 231 + ], + "score": 1.0, + "content": "Eq. (5). In particular if we choose to set it as the deterministic function of taking several steps of", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 227, + 431, + 247 + ], + "spans": [ + { + "bbox": [ + 104, + 227, + 159, + 247 + ], + "score": 1.0, + "content": "SGD on loss", + "type": "text" + }, + { + "bbox": [ + 160, + 231, + 167, + 241 + ], + "score": 0.79, + "content": "\\mathcal { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 227, + 291, + 247 + ], + "score": 1.0, + "content": "with the support set collection", + "type": "text" + }, + { + "bbox": [ + 291, + 229, + 314, + 244 + ], + "score": 0.93, + "content": "\\mathcal { \\widetilde { D } } _ { t + 1 } ^ { S }", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 227, + 383, + 247 + ], + "score": 1.0, + "content": "and initialised at", + "type": "text" + }, + { + "bbox": [ + 384, + 232, + 389, + 241 + ], + "score": 0.8, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 227, + 431, + 247 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7.5 + }, + { + "type": "interline_equation", + "bbox": [ + 213, + 248, + 398, + 265 + ], + "lines": [ + { + "bbox": [ + 213, + 248, + 398, + 265 + ], + "spans": [ + { + "bbox": [ + 213, + 248, + 398, + 265 + ], + "score": 0.93, + "content": "p ( { \\tilde { \\theta } } | \\theta , { \\widetilde { \\mathcal { D } } } _ { t + 1 } ^ { S } ) = \\mathbb { 1 } \\{ { \\tilde { \\theta } } = S G D _ { k } ( { \\mathcal { L } } ( \\theta , { \\widetilde { \\mathcal { D } } } _ { t + 1 } ^ { S } ) ) \\} .", + "type": "interline_equation", + "image_path": "40c0d0a3235433880a84fe4a976870153a480de768d4c9151bbe5804f3f2a947.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 213, + 248, + 398, + 265 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 268, + 505, + 314 + ], + "lines": [ + { + "bbox": [ + 106, + 270, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 505, + 281 + ], + "score": 1.0, + "content": "and this recovers the MAML inner loop with SGD quick adaptation in Eq. (1). The recursion", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 280, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 505, + 293 + ], + "score": 1.0, + "content": "given by Eq. (5) forms the basis of our approach and the remainder of this paper explains how we", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 291, + 505, + 305 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 505, + 305 + ], + "score": 1.0, + "content": "implement this. In order to do so we give a mini tutorial in Appendix A on Bayesian online learning,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 301, + 340, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 340, + 316 + ], + "score": 1.0, + "content": "Laplace approximation and variational continual learning.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5 + }, + { + "type": "title", + "bbox": [ + 107, + 330, + 406, + 343 + ], + "lines": [ + { + "bbox": [ + 105, + 329, + 408, + 344 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 408, + 344 + ], + "score": 1.0, + "content": "4 BAYESIAN ONLINE META-LEARNING IMPLEMENTATION", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 354, + 505, + 410 + ], + "lines": [ + { + "bbox": [ + 105, + 353, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 505, + 367 + ], + "score": 1.0, + "content": "This section demonstrates how we arrive at the algorithms Bayesian online meta-learning with", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 365, + 506, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 506, + 378 + ], + "score": 1.0, + "content": "Laplace approximation (BOMLA) and Bayesian online meta-learning with variational inference", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 376, + 504, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 504, + 390 + ], + "score": 1.0, + "content": "(BOMVI) by implementing Laplace approximation and variational continual learning respectively", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 387, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 106, + 387, + 505, + 400 + ], + "score": 1.0, + "content": "to the posterior of the BOML framework in Eq. (5). These algorithms from the grounded BOML", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 398, + 500, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 500, + 410 + ], + "score": 1.0, + "content": "framework are useful for online training on the sequential few-shot classification datasets or tasks.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18 + }, + { + "type": "title", + "bbox": [ + 107, + 423, + 427, + 435 + ], + "lines": [ + { + "bbox": [ + 106, + 424, + 429, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 424, + 429, + 435 + ], + "score": 1.0, + "content": "4.1 BAYESIAN ONLINE META-LEARNING WITH LAPLACE APPROXIMATION", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 443, + 505, + 488 + ], + "lines": [ + { + "bbox": [ + 105, + 443, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 505, + 457 + ], + "score": 1.0, + "content": "We discover that the Laplace approximation method provides a well-fitted meta-training framework", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 454, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 505, + 467 + ], + "score": 1.0, + "content": "for Bayesian online meta-learning in Eq. (5). Each updating step in the approximation procedure can", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 466, + 506, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 506, + 479 + ], + "score": 1.0, + "content": "be modified to correspond to the meta-parameters for few-shot classification, instead of the model", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 477, + 315, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 315, + 489 + ], + "score": 1.0, + "content": "parameters for large-scale supervised classification.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 106, + 493, + 505, + 549 + ], + "lines": [ + { + "bbox": [ + 105, + 493, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 505, + 507 + ], + "score": 1.0, + "content": "Laplace approximation rationalises the use of a Gaussian approximate posterior by Taylor expanding", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 504, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 505, + 517 + ], + "score": 1.0, + "content": "the log-posterior around a mode up to the second order, as described in Appendix A.2. The second", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 515, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 505, + 528 + ], + "score": 1.0, + "content": "order term corresponds to the log-probability of a Gaussian distribution. The BOML framework in", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 525, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 104, + 525, + 306, + 540 + ], + "score": 1.0, + "content": "Section 3 with a Gaussian approximate posterior", + "type": "text" + }, + { + "bbox": [ + 306, + 529, + 312, + 538 + ], + "score": 0.79, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 525, + 406, + 540 + ], + "score": 1.0, + "content": "of mean and precision", + "type": "text" + }, + { + "bbox": [ + 407, + 526, + 466, + 538 + ], + "score": 0.94, + "content": "\\phi _ { t } = \\{ \\mu _ { t } , \\Lambda _ { t } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 525, + 506, + 540 + ], + "score": 1.0, + "content": "from the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 538, + 293, + 550 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 293, + 550 + ], + "score": 1.0, + "content": "Laplace approximation gives a MAP estimate:", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28 + }, + { + "type": "interline_equation", + "bbox": [ + 110, + 554, + 489, + 581 + ], + "lines": [ + { + "bbox": [ + 110, + 554, + 489, + 581 + ], + "spans": [ + { + "bbox": [ + 110, + 554, + 489, + 581 + ], + "score": 0.93, + "content": "\\theta ^ { * } = \\arg \\operatorname* { m a x } _ { \\theta } \\Bigg \\{ \\log \\int p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { Q } | \\widetilde { \\theta } ) p ( \\widetilde { \\theta } | \\theta , \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { S } ) d \\widetilde { \\theta } + \\log p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { S } | \\theta ) - \\frac { 1 } { 2 } ( \\theta - \\mu _ { t } ) ^ { T } \\Lambda _ { t } ( \\theta - \\mu _ { t } ) \\Bigg \\} .", + "type": "interline_equation", + "image_path": "d4f655828fc7d9c372db6d9131ab554473fb2952db5ee5acd5614d86a29d3385.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 110, + 554, + 489, + 581 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 592, + 506, + 627 + ], + "lines": [ + { + "bbox": [ + 105, + 592, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 325, + 606 + ], + "score": 1.0, + "content": "For an efficient optimisation, we use the deterministic", + "type": "text" + }, + { + "bbox": [ + 326, + 592, + 332, + 604 + ], + "score": 0.84, + "content": "\\tilde { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 592, + 505, + 606 + ], + "score": 1.0, + "content": "in Eq. (6). The objective in Eq. (7) can be", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 603, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 506, + 618 + ], + "score": 1.0, + "content": "batched (for sequential tasks) or meta-batched (for sequential datasets). This leads to minimising", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 615, + 160, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 160, + 629 + ], + "score": 1.0, + "content": "the objective", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 632, + 505, + 667 + ], + "lines": [ + { + "bbox": [ + 111, + 632, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 111, + 632, + 505, + 667 + ], + "score": 0.91, + "content": "\\mathsf { \\Pi } _ { t + 1 } ^ { \\mathsf { R O M L A } } ( \\theta , \\mu _ { t } , \\Lambda _ { t } ) = - \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } \\log p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { m , Q } | \\widetilde { \\theta } ^ { m } ) - \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } \\log p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { m , S } | \\theta ) + \\frac { 1 } { 2 } ( \\theta - \\mu _ { t } ) ^ { T } \\Lambda _ { t } ( \\theta - \\mu _ { t } ) ,", + "type": "interline_equation", + "image_path": "d42e6d885d731b8872483f64658c48686a601629b7b799ed3b5091a561277731.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 111, + 632, + 505, + 643.6666666666666 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 111, + 643.6666666666666, + 505, + 655.3333333333333 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 111, + 655.3333333333333, + 505, + 666.9999999999999 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 675, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 103, + 670, + 509, + 695 + ], + "spans": [ + { + "bbox": [ + 103, + 670, + 133, + 695 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 675, + 243, + 689 + ], + "score": 0.92, + "content": "\\tilde { \\theta } ^ { m } = S G D _ { k } ( \\mathcal { L } ( \\theta , \\widetilde { D } _ { t + 1 } ^ { m , S } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 670, + 260, + 695 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 260, + 678, + 321, + 688 + ], + "score": 0.87, + "content": "m = 1 , \\ldots , M", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 670, + 459, + 695 + ], + "score": 1.0, + "content": ". In the sequential datasets setting", + "type": "text" + }, + { + "bbox": [ + 459, + 677, + 471, + 687 + ], + "score": 0.79, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 670, + 509, + 695 + ], + "score": 1.0, + "content": "denotes", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 442, + 700 + ], + "score": 1.0, + "content": "the number of tasks sampled per iteration, whereas in the sequential tasks setting", + "type": "text" + }, + { + "bbox": [ + 455, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "denotes the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "number of batches per epoch. The first term of the objective in Eq. (8) corresponds to the MAML", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "objective in Eq. (2) with a cross-entropy loss, the second term can be viewed as the pre-adaptation", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 721, + 379, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 379, + 733 + ], + "score": 1.0, + "content": "loss on the support set and the last term can be seen as a regulariser.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 307, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 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, + 81, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 251, + 97 + ], + "score": 1.0, + "content": "We are interested in a MAP estimate", + "type": "text" + }, + { + "bbox": [ + 252, + 81, + 364, + 95 + ], + "score": 0.88, + "content": "\\theta ^ { * } = \\arg \\operatorname* { m a x } _ { \\theta } p ( \\theta | \\widetilde { D } _ { 1 : t + 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 81, + 506, + 97 + ], + "score": 1.0, + "content": ". Using Bayes’ rule on the posterior", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 217, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 217, + 105 + ], + "score": 1.0, + "content": "gives the recursive formula", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 506, + 105 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 164, + 109, + 446, + 173 + ], + "lines": [ + { + "bbox": [ + 164, + 109, + 446, + 173 + ], + "spans": [ + { + "bbox": [ + 164, + 109, + 446, + 173 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { p ( \\theta | \\widetilde { D } _ { 1 : t + 1 } ) \\propto p ( \\widetilde { D } _ { t + 1 } ^ { S } , \\widetilde { D } _ { t + 1 } ^ { Q } | \\theta ) p ( \\theta | \\widetilde { D } _ { 1 : t } ) } \\\\ & { \\qquad = p ( \\widetilde { D } _ { t + 1 } ^ { Q } | \\theta , \\widetilde { D } _ { t + 1 } ^ { S } ) p ( \\widetilde { D } _ { t + 1 } ^ { S } | \\theta ) p ( \\theta | \\widetilde { D } _ { 1 : t } ) } \\\\ & { \\qquad = \\bigg \\{ \\int p ( \\widetilde { D } _ { t + 1 } ^ { Q } | \\widetilde { \\theta } ) p ( \\widetilde { \\theta } | \\theta , \\widetilde { D } _ { t + 1 } ^ { S } ) d \\widetilde { \\theta } \\bigg \\} p ( \\widetilde { D } _ { t + 1 } ^ { S } | \\theta ) p ( \\theta | \\widetilde { D } _ { 1 : t } ) } \\end{array}", + "type": "interline_equation", + "image_path": "1a8e95d40de872338dbc14d6059f9cc8b3bb5ce6f016109a516aedb5ff29e140.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 164, + 109, + 446, + 130.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 164, + 130.33333333333334, + 446, + 151.66666666666669 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 164, + 151.66666666666669, + 446, + 173.00000000000003 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 176, + 442, + 188 + ], + "lines": [ + { + "bbox": [ + 106, + 175, + 443, + 190 + ], + "spans": [ + { + "bbox": [ + 106, + 175, + 433, + 190 + ], + "score": 1.0, + "content": "where Eq. (3) follows from the assumption that each dataset is independent given", + "type": "text" + }, + { + "bbox": [ + 433, + 177, + 439, + 186 + ], + "score": 0.79, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 175, + 443, + 190 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 106, + 175, + 443, + 190 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 193, + 505, + 243 + ], + "lines": [ + { + "bbox": [ + 105, + 193, + 506, + 208 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 319, + 208 + ], + "score": 1.0, + "content": "From the meta-learning perspective, the parameters", + "type": "text" + }, + { + "bbox": [ + 320, + 193, + 326, + 204 + ], + "score": 0.84, + "content": "\\tilde { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 194, + 506, + 208 + ], + "score": 1.0, + "content": "introduced in Eq. (5) can be viewed as the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 205, + 506, + 220 + ], + "spans": [ + { + "bbox": [ + 105, + 206, + 441, + 220 + ], + "score": 1.0, + "content": "task-specific parameters in MAML. There are various choices for the distribution", + "type": "text" + }, + { + "bbox": [ + 441, + 205, + 492, + 220 + ], + "score": 0.93, + "content": "p ( \\tilde { \\theta } | \\theta , \\widetilde { D } _ { t + 1 } ^ { S } )", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 206, + 506, + 220 + ], + "score": 1.0, + "content": "in", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 218, + 506, + 231 + ], + "spans": [ + { + "bbox": [ + 106, + 218, + 506, + 231 + ], + "score": 1.0, + "content": "Eq. (5). In particular if we choose to set it as the deterministic function of taking several steps of", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 227, + 431, + 247 + ], + "spans": [ + { + "bbox": [ + 104, + 227, + 159, + 247 + ], + "score": 1.0, + "content": "SGD on loss", + "type": "text" + }, + { + "bbox": [ + 160, + 231, + 167, + 241 + ], + "score": 0.79, + "content": "\\mathcal { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 227, + 291, + 247 + ], + "score": 1.0, + "content": "with the support set collection", + "type": "text" + }, + { + "bbox": [ + 291, + 229, + 314, + 244 + ], + "score": 0.93, + "content": "\\mathcal { \\widetilde { D } } _ { t + 1 } ^ { S }", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 227, + 383, + 247 + ], + "score": 1.0, + "content": "and initialised at", + "type": "text" + }, + { + "bbox": [ + 384, + 232, + 389, + 241 + ], + "score": 0.8, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 227, + 431, + 247 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7.5, + "bbox_fs": [ + 104, + 193, + 506, + 247 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 213, + 248, + 398, + 265 + ], + "lines": [ + { + "bbox": [ + 213, + 248, + 398, + 265 + ], + "spans": [ + { + "bbox": [ + 213, + 248, + 398, + 265 + ], + "score": 0.93, + "content": "p ( { \\tilde { \\theta } } | \\theta , { \\widetilde { \\mathcal { D } } } _ { t + 1 } ^ { S } ) = \\mathbb { 1 } \\{ { \\tilde { \\theta } } = S G D _ { k } ( { \\mathcal { L } } ( \\theta , { \\widetilde { \\mathcal { D } } } _ { t + 1 } ^ { S } ) ) \\} .", + "type": "interline_equation", + "image_path": "40c0d0a3235433880a84fe4a976870153a480de768d4c9151bbe5804f3f2a947.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 213, + 248, + 398, + 265 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 268, + 505, + 314 + ], + "lines": [ + { + "bbox": [ + 106, + 270, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 505, + 281 + ], + "score": 1.0, + "content": "and this recovers the MAML inner loop with SGD quick adaptation in Eq. (1). The recursion", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 280, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 505, + 293 + ], + "score": 1.0, + "content": "given by Eq. (5) forms the basis of our approach and the remainder of this paper explains how we", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 291, + 505, + 305 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 505, + 305 + ], + "score": 1.0, + "content": "implement this. In order to do so we give a mini tutorial in Appendix A on Bayesian online learning,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 301, + 340, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 340, + 316 + ], + "score": 1.0, + "content": "Laplace approximation and variational continual learning.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 270, + 505, + 316 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 330, + 406, + 343 + ], + "lines": [ + { + "bbox": [ + 105, + 329, + 408, + 344 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 408, + 344 + ], + "score": 1.0, + "content": "4 BAYESIAN ONLINE META-LEARNING IMPLEMENTATION", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 354, + 505, + 410 + ], + "lines": [ + { + "bbox": [ + 105, + 353, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 505, + 367 + ], + "score": 1.0, + "content": "This section demonstrates how we arrive at the algorithms Bayesian online meta-learning with", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 365, + 506, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 506, + 378 + ], + "score": 1.0, + "content": "Laplace approximation (BOMLA) and Bayesian online meta-learning with variational inference", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 376, + 504, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 504, + 390 + ], + "score": 1.0, + "content": "(BOMVI) by implementing Laplace approximation and variational continual learning respectively", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 387, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 106, + 387, + 505, + 400 + ], + "score": 1.0, + "content": "to the posterior of the BOML framework in Eq. (5). These algorithms from the grounded BOML", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 398, + 500, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 500, + 410 + ], + "score": 1.0, + "content": "framework are useful for online training on the sequential few-shot classification datasets or tasks.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 353, + 506, + 410 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 423, + 427, + 435 + ], + "lines": [ + { + "bbox": [ + 106, + 424, + 429, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 424, + 429, + 435 + ], + "score": 1.0, + "content": "4.1 BAYESIAN ONLINE META-LEARNING WITH LAPLACE APPROXIMATION", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 443, + 505, + 488 + ], + "lines": [ + { + "bbox": [ + 105, + 443, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 505, + 457 + ], + "score": 1.0, + "content": "We discover that the Laplace approximation method provides a well-fitted meta-training framework", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 454, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 505, + 467 + ], + "score": 1.0, + "content": "for Bayesian online meta-learning in Eq. (5). Each updating step in the approximation procedure can", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 466, + 506, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 506, + 479 + ], + "score": 1.0, + "content": "be modified to correspond to the meta-parameters for few-shot classification, instead of the model", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 477, + 315, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 315, + 489 + ], + "score": 1.0, + "content": "parameters for large-scale supervised classification.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 443, + 506, + 489 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 493, + 505, + 549 + ], + "lines": [ + { + "bbox": [ + 105, + 493, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 505, + 507 + ], + "score": 1.0, + "content": "Laplace approximation rationalises the use of a Gaussian approximate posterior by Taylor expanding", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 504, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 505, + 517 + ], + "score": 1.0, + "content": "the log-posterior around a mode up to the second order, as described in Appendix A.2. The second", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 515, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 505, + 528 + ], + "score": 1.0, + "content": "order term corresponds to the log-probability of a Gaussian distribution. The BOML framework in", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 525, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 104, + 525, + 306, + 540 + ], + "score": 1.0, + "content": "Section 3 with a Gaussian approximate posterior", + "type": "text" + }, + { + "bbox": [ + 306, + 529, + 312, + 538 + ], + "score": 0.79, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 525, + 406, + 540 + ], + "score": 1.0, + "content": "of mean and precision", + "type": "text" + }, + { + "bbox": [ + 407, + 526, + 466, + 538 + ], + "score": 0.94, + "content": "\\phi _ { t } = \\{ \\mu _ { t } , \\Lambda _ { t } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 525, + 506, + 540 + ], + "score": 1.0, + "content": "from the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 538, + 293, + 550 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 293, + 550 + ], + "score": 1.0, + "content": "Laplace approximation gives a MAP estimate:", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28, + "bbox_fs": [ + 104, + 493, + 506, + 550 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 110, + 554, + 489, + 581 + ], + "lines": [ + { + "bbox": [ + 110, + 554, + 489, + 581 + ], + "spans": [ + { + "bbox": [ + 110, + 554, + 489, + 581 + ], + "score": 0.93, + "content": "\\theta ^ { * } = \\arg \\operatorname* { m a x } _ { \\theta } \\Bigg \\{ \\log \\int p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { Q } | \\widetilde { \\theta } ) p ( \\widetilde { \\theta } | \\theta , \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { S } ) d \\widetilde { \\theta } + \\log p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { S } | \\theta ) - \\frac { 1 } { 2 } ( \\theta - \\mu _ { t } ) ^ { T } \\Lambda _ { t } ( \\theta - \\mu _ { t } ) \\Bigg \\} .", + "type": "interline_equation", + "image_path": "d4f655828fc7d9c372db6d9131ab554473fb2952db5ee5acd5614d86a29d3385.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 110, + 554, + 489, + 581 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 592, + 506, + 627 + ], + "lines": [ + { + "bbox": [ + 105, + 592, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 325, + 606 + ], + "score": 1.0, + "content": "For an efficient optimisation, we use the deterministic", + "type": "text" + }, + { + "bbox": [ + 326, + 592, + 332, + 604 + ], + "score": 0.84, + "content": "\\tilde { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 592, + 505, + 606 + ], + "score": 1.0, + "content": "in Eq. (6). The objective in Eq. (7) can be", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 603, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 506, + 618 + ], + "score": 1.0, + "content": "batched (for sequential tasks) or meta-batched (for sequential datasets). This leads to minimising", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 615, + 160, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 160, + 629 + ], + "score": 1.0, + "content": "the objective", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 592, + 506, + 629 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 632, + 505, + 667 + ], + "lines": [ + { + "bbox": [ + 111, + 632, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 111, + 632, + 505, + 667 + ], + "score": 0.91, + "content": "\\mathsf { \\Pi } _ { t + 1 } ^ { \\mathsf { R O M L A } } ( \\theta , \\mu _ { t } , \\Lambda _ { t } ) = - \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } \\log p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { m , Q } | \\widetilde { \\theta } ^ { m } ) - \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } \\log p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { m , S } | \\theta ) + \\frac { 1 } { 2 } ( \\theta - \\mu _ { t } ) ^ { T } \\Lambda _ { t } ( \\theta - \\mu _ { t } ) ,", + "type": "interline_equation", + "image_path": "d42e6d885d731b8872483f64658c48686a601629b7b799ed3b5091a561277731.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 111, + 632, + 505, + 643.6666666666666 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 111, + 643.6666666666666, + 505, + 655.3333333333333 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 111, + 655.3333333333333, + 505, + 666.9999999999999 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 675, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 103, + 670, + 509, + 695 + ], + "spans": [ + { + "bbox": [ + 103, + 670, + 133, + 695 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 675, + 243, + 689 + ], + "score": 0.92, + "content": "\\tilde { \\theta } ^ { m } = S G D _ { k } ( \\mathcal { L } ( \\theta , \\widetilde { D } _ { t + 1 } ^ { m , S } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 670, + 260, + 695 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 260, + 678, + 321, + 688 + ], + "score": 0.87, + "content": "m = 1 , \\ldots , M", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 670, + 459, + 695 + ], + "score": 1.0, + "content": ". In the sequential datasets setting", + "type": "text" + }, + { + "bbox": [ + 459, + 677, + 471, + 687 + ], + "score": 0.79, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 670, + 509, + 695 + ], + "score": 1.0, + "content": "denotes", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 442, + 700 + ], + "score": 1.0, + "content": "the number of tasks sampled per iteration, whereas in the sequential tasks setting", + "type": "text" + }, + { + "bbox": [ + 455, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "denotes the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "number of batches per epoch. The first term of the objective in Eq. (8) corresponds to the MAML", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "objective in Eq. (2) with a cross-entropy loss, the second term can be viewed as the pre-adaptation", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 721, + 379, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 379, + 733 + ], + "score": 1.0, + "content": "loss on the support set and the last term can be seen as a regulariser.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40, + "bbox_fs": [ + 103, + 670, + 509, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 244, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 245, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 245, + 95 + ], + "score": 1.0, + "content": "4.2 HESSIAN APPROXIMATION", + "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 calculate a block-diagonal Kronecker-factored Hessian approximation in order to update the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 114, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 145, + 127 + ], + "score": 1.0, + "content": "precision", + "type": "text" + }, + { + "bbox": [ + 145, + 114, + 156, + 125 + ], + "score": 0.88, + "content": "\\Lambda _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 115, + 505, + 127 + ], + "score": 1.0, + "content": ", as explained in Appendix A.3. The Hessian approximations in both sequential datasets", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 124, + 506, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 124, + 506, + 138 + ], + "score": 1.0, + "content": "and sequential tasks settings are very similar, except that the sequential datasets setting averages over", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 135, + 461, + 148 + ], + "spans": [ + { + "bbox": [ + 105, + 135, + 461, + 148 + ], + "score": 1.0, + "content": "the meta-batch size and the sequential tasks setting averages over the number of batches.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 105, + 152, + 461, + 164 + ], + "lines": [ + { + "bbox": [ + 106, + 151, + 462, + 166 + ], + "spans": [ + { + "bbox": [ + 106, + 151, + 462, + 166 + ], + "score": 1.0, + "content": "The Hessian matrix corresponding to the first term of the BOMLA objective in Eq. (8) is", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "interline_equation", + "bbox": [ + 191, + 167, + 420, + 202 + ], + "lines": [ + { + "bbox": [ + 191, + 167, + 420, + 202 + ], + "spans": [ + { + "bbox": [ + 191, + 167, + 420, + 202 + ], + "score": 0.95, + "content": "\\widetilde { H } _ { t + 1 } ^ { i j } = \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } - \\frac { \\partial ^ { 2 } } { \\partial \\theta ^ { ( i ) } \\partial \\theta ^ { ( j ) } } \\log p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { m , Q } | \\widetilde { \\theta } ^ { m } ) ) \\Bigg | _ { \\theta = \\mu _ { t + 1 } } .", + "type": "interline_equation", + "image_path": "343db103ae61129fa73d7ad5c6538f7344b3d54d2a428145c9173df606c0dbfc.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 191, + 167, + 420, + 184.5 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 191, + 184.5, + 420, + 202.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 204, + 505, + 238 + ], + "lines": [ + { + "bbox": [ + 104, + 203, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 104, + 203, + 505, + 218 + ], + "score": 1.0, + "content": "It is worth noting that the BOMLA Hessian deviates from the original BOL Hessian in Ap-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 216, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 506, + 228 + ], + "score": 1.0, + "content": "pendix A.2. This requires deriving an adjusted approximation to the Hessian with some further", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 226, + 162, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 162, + 240 + ], + "score": 1.0, + "content": "assumptions.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 105, + 243, + 504, + 266 + ], + "lines": [ + { + "bbox": [ + 106, + 243, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 243, + 505, + 256 + ], + "score": 1.0, + "content": "The BOL Hessian for a single data point can be approximated using the Fisher information matrix", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 107, + 255, + 382, + 266 + ], + "spans": [ + { + "bbox": [ + 107, + 256, + 115, + 264 + ], + "score": 0.83, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 255, + 311, + 266 + ], + "score": 1.0, + "content": "to ensure its positive semi-definiteness (Martens", + "type": "text" + }, + { + "bbox": [ + 311, + 255, + 320, + 265 + ], + "score": 0.48, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 255, + 382, + 266 + ], + "score": 1.0, + "content": "Grosse, 2015):", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 270, + 401, + 297 + ], + "lines": [ + { + "bbox": [ + 210, + 270, + 401, + 297 + ], + "spans": [ + { + "bbox": [ + 210, + 270, + 401, + 297 + ], + "score": 0.94, + "content": "F = \\mathbb { E } _ { x , y } \\bigg [ \\frac { d } { d \\theta } \\log p ( y | x , \\theta ) \\frac { d } { d \\theta } \\log p ( y | x , \\theta ) ^ { T } \\bigg ] .", + "type": "interline_equation", + "image_path": "cf0c4d7d663b09b3e560637d67790ea757514eefcaa97699217cf1453a6a0fd8.jpg" + } + ] + } + ], + "index": 13.5, + "virtual_lines": [ + { + "bbox": [ + 210, + 270, + 401, + 283.5 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 210, + 283.5, + 401, + 297.0 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 300, + 504, + 325 + ], + "lines": [ + { + "bbox": [ + 106, + 299, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 299, + 129, + 313 + ], + "score": 1.0, + "content": "Each", + "type": "text" + }, + { + "bbox": [ + 130, + 301, + 153, + 312 + ], + "score": 0.91, + "content": "( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 299, + 418, + 313 + ], + "score": 1.0, + "content": "pair for the Fisher in BOMLA is associated to a task (or a batch)", + "type": "text" + }, + { + "bbox": [ + 419, + 302, + 429, + 310 + ], + "score": 0.72, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 299, + 505, + 313 + ], + "score": 1.0, + "content": ". The Fisher infor-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 312, + 471, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 165, + 326 + ], + "score": 1.0, + "content": "mation matrix", + "type": "text" + }, + { + "bbox": [ + 165, + 312, + 174, + 323 + ], + "score": 0.88, + "content": "\\widetilde { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 313, + 471, + 326 + ], + "score": 1.0, + "content": "corresponding to the BOMLA Hessian in Eq. (9) for a single data point is", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "interline_equation", + "bbox": [ + 139, + 328, + 471, + 363 + ], + "lines": [ + { + "bbox": [ + 139, + 328, + 471, + 363 + ], + "spans": [ + { + "bbox": [ + 139, + 328, + 471, + 363 + ], + "score": 0.93, + "content": "\\widetilde { F } = \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } \\mathbb { E } _ { x , y } \\bigg [ \\bigg ( \\frac { \\partial \\widetilde { \\theta } ^ { m } } { \\partial \\theta } \\bigg ) \\frac { d } { d \\widetilde { \\theta } ^ { m } } \\log p ( y | x , \\widetilde { \\theta } ^ { m } ) \\frac { d } { d \\widetilde { \\theta } ^ { m } } \\log p ( y | x , \\widetilde { \\theta } ^ { m } ) ^ { T } \\bigg ( \\frac { \\partial \\widetilde { \\theta } ^ { m } } { \\partial \\theta } \\bigg ) ^ { T } \\bigg ] .", + "type": "interline_equation", + "image_path": "8baa73ad4baba1475c9a3370fe3004bb5cbaa3b00d996bdebeddf1cace34611c.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 139, + 328, + 471, + 339.6666666666667 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 139, + 339.6666666666667, + 471, + 351.33333333333337 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 139, + 351.33333333333337, + 471, + 363.00000000000006 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 367, + 505, + 392 + ], + "lines": [ + { + "bbox": [ + 106, + 366, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 234, + 383 + ], + "score": 1.0, + "content": "The additional Jacobian matrix", + "type": "text" + }, + { + "bbox": [ + 235, + 366, + 253, + 382 + ], + "score": 0.91, + "content": "\\frac { \\partial \\tilde { \\theta } ^ { m } } { \\partial \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 367, + 505, + 383 + ], + "score": 1.0, + "content": "breaks the Kronecker-factored structure described by Martens", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 380, + 312, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 312, + 392 + ], + "score": 1.0, + "content": "& Grosse (2015) for the original Fisher in Eq. (10).", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 106, + 397, + 505, + 442 + ], + "lines": [ + { + "bbox": [ + 105, + 397, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 429, + 410 + ], + "score": 1.0, + "content": "The results in Finn et al. (2017) show that the first step of the quick adaptation in", + "type": "text" + }, + { + "bbox": [ + 429, + 397, + 443, + 408 + ], + "score": 0.89, + "content": "\\tilde { \\theta } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 397, + 505, + 410 + ], + "score": 1.0, + "content": "contributes the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 410, + 504, + 421 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 504, + 421 + ], + "score": 1.0, + "content": "largest change to the meta-evaluation objective, and the remaining adaptation steps give a relatively", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 420, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 505, + 433 + ], + "score": 1.0, + "content": "small change to the objective. It is reasonable to assume that the quick adaptation is a one-step SGD", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 431, + 212, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 212, + 444 + ], + "score": 1.0, + "content": "for Fisher approximation:", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5 + }, + { + "type": "interline_equation", + "bbox": [ + 251, + 441, + 360, + 457 + ], + "lines": [ + { + "bbox": [ + 251, + 441, + 360, + 457 + ], + "spans": [ + { + "bbox": [ + 251, + 441, + 360, + 457 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\tilde { \\theta } ^ { m } = \\theta - \\nabla _ { \\theta } \\mathcal { L } ( \\theta , \\widetilde { D } _ { t + 1 } ^ { m , S } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "010371dd5f0c91339f5ccb1951cdebe2358e8321e7db27767127020481d5f5f9.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 251, + 441, + 360, + 457 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 109, + 457, + 468, + 470 + ], + "lines": [ + { + "bbox": [ + 106, + 456, + 468, + 471 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 242, + 471 + ], + "score": 1.0, + "content": "By imposing this assumption, the", + "type": "text" + }, + { + "bbox": [ + 243, + 458, + 263, + 470 + ], + "score": 0.92, + "content": "( i , j )", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 456, + 468, + 471 + ], + "score": 1.0, + "content": "-th entry of the Jacobian term can be interpreted as", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "interline_equation", + "bbox": [ + 218, + 473, + 392, + 503 + ], + "lines": [ + { + "bbox": [ + 218, + 473, + 392, + 503 + ], + "spans": [ + { + "bbox": [ + 218, + 473, + 392, + 503 + ], + "score": 0.94, + "content": "\\left( \\frac { \\partial \\tilde { \\theta } ^ { m } } { \\partial \\theta } \\right) ^ { i j } = I ^ { i j } - \\frac { \\partial ^ { 2 } ( - \\log p ( \\widetilde { D } _ { t + 1 } ^ { m , S } | \\theta ) ) } { \\partial \\theta ^ { ( i ) } \\partial \\theta ^ { ( j ) } } ,", + "type": "interline_equation", + "image_path": "fb6d2e8697e39d339370645ea1db417c8e2841845d468d841f06e573d0b06a95.jpg" + } + ] + } + ], + "index": 28.5, + "virtual_lines": [ + { + "bbox": [ + 218, + 473, + 392, + 488.0 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 218, + 488.0, + 392, + 503.0 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 505, + 505, + 598 + ], + "lines": [ + { + "bbox": [ + 105, + 504, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 135, + 520 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 506, + 142, + 516 + ], + "score": 0.76, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 504, + 372, + 520 + ], + "score": 1.0, + "content": "is the corresponding identity matrix and the objective", + "type": "text" + }, + { + "bbox": [ + 372, + 506, + 381, + 516 + ], + "score": 0.81, + "content": "\\mathcal { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 504, + 505, + 520 + ], + "score": 1.0, + "content": "involved is the negative log-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 516, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 505, + 529 + ], + "score": 1.0, + "content": "likelihood. The Hessian for a single data point in the second term of Eq. (13) can be approximated", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 527, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 119, + 540 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 119, + 528, + 128, + 537 + ], + "score": 0.84, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 527, + 505, + 540 + ], + "score": 1.0, + "content": "in Eq. (10) via the usual block-diagonal Kronecker-factored approximation. Putting the Jaco-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 538, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 505, + 551 + ], + "score": 1.0, + "content": "bian back into Eq. (11) and expanding the factors give terms that multiply two or more Kronecker", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 550, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 104, + 551, + 290, + 565 + ], + "score": 1.0, + "content": "products together. The detailed derivation of", + "type": "text" + }, + { + "bbox": [ + 290, + 550, + 299, + 561 + ], + "score": 0.87, + "content": "\\widetilde { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 551, + 506, + 565 + ], + "score": 1.0, + "content": "is explained in Appendix A.3.1. We introduce the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 562, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 191, + 577 + ], + "score": 1.0, + "content": "posterior regulariser", + "type": "text" + }, + { + "bbox": [ + 191, + 565, + 199, + 574 + ], + "score": 0.75, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 563, + 325, + 577 + ], + "score": 1.0, + "content": "when updating the precision:", + "type": "text" + }, + { + "bbox": [ + 325, + 562, + 416, + 576 + ], + "score": 0.93, + "content": "\\Lambda _ { t + 1 } = \\lambda { \\widetilde { \\cal H } } _ { t + 1 } + \\Lambda _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 563, + 506, + 577 + ], + "score": 1.0, + "content": "and the rationale for", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 576, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 155, + 588 + ], + "score": 1.0, + "content": "introducing", + "type": "text" + }, + { + "bbox": [ + 155, + 576, + 163, + 585 + ], + "score": 0.78, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 576, + 505, + 588 + ], + "score": 1.0, + "content": "is explained in Appendix A.3.2. The pseudo-code of the BOMLA algorithm can be", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 586, + 204, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 204, + 599 + ], + "score": 1.0, + "content": "found in Appendix B.1.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 33.5 + }, + { + "type": "title", + "bbox": [ + 107, + 611, + 423, + 622 + ], + "lines": [ + { + "bbox": [ + 105, + 610, + 424, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 424, + 623 + ], + "score": 1.0, + "content": "4.3 BAYESIAN ONLINE META-LEARNING WITH VARIATIONAL INFERENCE", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 631, + 505, + 665 + ], + "lines": [ + { + "bbox": [ + 105, + 631, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 505, + 644 + ], + "score": 1.0, + "content": "The variational continual learning (VCL) framework (Nguyen et al., 2018) is directly applicable to", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 642, + 505, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 505, + 655 + ], + "score": 1.0, + "content": "BOML. This section demonstrates how we arrive at the BOMVI algorithm by implementing VCL to", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 654, + 302, + 666 + ], + "spans": [ + { + "bbox": [ + 106, + 654, + 302, + 666 + ], + "score": 1.0, + "content": "the posterior of the BOML framework in Eq. (5).", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 107, + 670, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 105, + 670, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 505, + 684 + ], + "score": 1.0, + "content": "As described in Appendix A.4, VCL approximates the posterior by minimising the KL-divergence", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 682, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 336, + 694 + ], + "score": 1.0, + "content": "over some pre-determined approximate posterior family", + "type": "text" + }, + { + "bbox": [ + 336, + 682, + 345, + 692 + ], + "score": 0.79, + "content": "\\mathcal { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 682, + 505, + 694 + ], + "score": 1.0, + "content": ". Fitting the BOML posterior in Eq. (5)", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 693, + 338, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 693, + 338, + 705 + ], + "score": 1.0, + "content": "into the VCL framework gives the approximate posterior:", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43 + }, + { + "type": "interline_equation", + "bbox": [ + 113, + 707, + 481, + 735 + ], + "lines": [ + { + "bbox": [ + 113, + 707, + 481, + 735 + ], + "spans": [ + { + "bbox": [ + 113, + 707, + 481, + 735 + ], + "score": 0.93, + "content": "q ( \\theta | \\phi _ { t + 1 } ) = \\underset { q \\in \\mathcal { Q } } { \\operatorname { a r g m i n } } D _ { \\mathrm { K L } } \\Bigg ( q ( \\theta | \\phi ) \\bigg | \\bigg | \\bigg \\{ \\int p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { Q } | \\widetilde { \\theta } ) p ( \\widetilde { \\theta } | \\theta , \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { S } ) d \\widetilde { \\theta } \\bigg \\} p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { S } | \\theta ) q ( \\theta | \\phi _ { t } ) \\Bigg ) .", + "type": "interline_equation", + "image_path": "23bd8d9eb209877e105b8e2387ef7e368d77d8125637c2486211c36eb40e27cd.jpg" + } + ] + } + ], + "index": 46, + "virtual_lines": [ + { + "bbox": [ + 113, + 707, + 481, + 716.3333333333334 + ], + "spans": [], + "index": 45 + }, + { + "bbox": [ + 113, + 716.3333333333334, + 481, + 725.6666666666667 + ], + "spans": [], + "index": 46 + }, + { + "bbox": [ + 113, + 725.6666666666667, + 481, + 735.0000000000001 + ], + "spans": [], + "index": 47 + } + ] + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "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": [ + 106, + 26, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 244, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 245, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 245, + 95 + ], + "score": 1.0, + "content": "4.2 HESSIAN APPROXIMATION", + "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 calculate a block-diagonal Kronecker-factored Hessian approximation in order to update the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 114, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 145, + 127 + ], + "score": 1.0, + "content": "precision", + "type": "text" + }, + { + "bbox": [ + 145, + 114, + 156, + 125 + ], + "score": 0.88, + "content": "\\Lambda _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 115, + 505, + 127 + ], + "score": 1.0, + "content": ", as explained in Appendix A.3. The Hessian approximations in both sequential datasets", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 124, + 506, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 124, + 506, + 138 + ], + "score": 1.0, + "content": "and sequential tasks settings are very similar, except that the sequential datasets setting averages over", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 135, + 461, + 148 + ], + "spans": [ + { + "bbox": [ + 105, + 135, + 461, + 148 + ], + "score": 1.0, + "content": "the meta-batch size and the sequential tasks setting averages over the number of batches.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 102, + 506, + 148 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 152, + 461, + 164 + ], + "lines": [ + { + "bbox": [ + 106, + 151, + 462, + 166 + ], + "spans": [ + { + "bbox": [ + 106, + 151, + 462, + 166 + ], + "score": 1.0, + "content": "The Hessian matrix corresponding to the first term of the BOMLA objective in Eq. (8) is", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 106, + 151, + 462, + 166 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 191, + 167, + 420, + 202 + ], + "lines": [ + { + "bbox": [ + 191, + 167, + 420, + 202 + ], + "spans": [ + { + "bbox": [ + 191, + 167, + 420, + 202 + ], + "score": 0.95, + "content": "\\widetilde { H } _ { t + 1 } ^ { i j } = \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } - \\frac { \\partial ^ { 2 } } { \\partial \\theta ^ { ( i ) } \\partial \\theta ^ { ( j ) } } \\log p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { m , Q } | \\widetilde { \\theta } ^ { m } ) ) \\Bigg | _ { \\theta = \\mu _ { t + 1 } } .", + "type": "interline_equation", + "image_path": "343db103ae61129fa73d7ad5c6538f7344b3d54d2a428145c9173df606c0dbfc.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 191, + 167, + 420, + 184.5 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 191, + 184.5, + 420, + 202.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 204, + 505, + 238 + ], + "lines": [ + { + "bbox": [ + 104, + 203, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 104, + 203, + 505, + 218 + ], + "score": 1.0, + "content": "It is worth noting that the BOMLA Hessian deviates from the original BOL Hessian in Ap-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 216, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 506, + 228 + ], + "score": 1.0, + "content": "pendix A.2. This requires deriving an adjusted approximation to the Hessian with some further", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 226, + 162, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 162, + 240 + ], + "score": 1.0, + "content": "assumptions.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 104, + 203, + 506, + 240 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 243, + 504, + 266 + ], + "lines": [ + { + "bbox": [ + 106, + 243, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 243, + 505, + 256 + ], + "score": 1.0, + "content": "The BOL Hessian for a single data point can be approximated using the Fisher information matrix", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 107, + 255, + 382, + 266 + ], + "spans": [ + { + "bbox": [ + 107, + 256, + 115, + 264 + ], + "score": 0.83, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 255, + 311, + 266 + ], + "score": 1.0, + "content": "to ensure its positive semi-definiteness (Martens", + "type": "text" + }, + { + "bbox": [ + 311, + 255, + 320, + 265 + ], + "score": 0.48, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 255, + 382, + 266 + ], + "score": 1.0, + "content": "Grosse, 2015):", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 106, + 243, + 505, + 266 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 270, + 401, + 297 + ], + "lines": [ + { + "bbox": [ + 210, + 270, + 401, + 297 + ], + "spans": [ + { + "bbox": [ + 210, + 270, + 401, + 297 + ], + "score": 0.94, + "content": "F = \\mathbb { E } _ { x , y } \\bigg [ \\frac { d } { d \\theta } \\log p ( y | x , \\theta ) \\frac { d } { d \\theta } \\log p ( y | x , \\theta ) ^ { T } \\bigg ] .", + "type": "interline_equation", + "image_path": "cf0c4d7d663b09b3e560637d67790ea757514eefcaa97699217cf1453a6a0fd8.jpg" + } + ] + } + ], + "index": 13.5, + "virtual_lines": [ + { + "bbox": [ + 210, + 270, + 401, + 283.5 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 210, + 283.5, + 401, + 297.0 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 300, + 504, + 325 + ], + "lines": [ + { + "bbox": [ + 106, + 299, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 299, + 129, + 313 + ], + "score": 1.0, + "content": "Each", + "type": "text" + }, + { + "bbox": [ + 130, + 301, + 153, + 312 + ], + "score": 0.91, + "content": "( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 299, + 418, + 313 + ], + "score": 1.0, + "content": "pair for the Fisher in BOMLA is associated to a task (or a batch)", + "type": "text" + }, + { + "bbox": [ + 419, + 302, + 429, + 310 + ], + "score": 0.72, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 299, + 505, + 313 + ], + "score": 1.0, + "content": ". The Fisher infor-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 312, + 471, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 165, + 326 + ], + "score": 1.0, + "content": "mation matrix", + "type": "text" + }, + { + "bbox": [ + 165, + 312, + 174, + 323 + ], + "score": 0.88, + "content": "\\widetilde { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 313, + 471, + 326 + ], + "score": 1.0, + "content": "corresponding to the BOMLA Hessian in Eq. (9) for a single data point is", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 106, + 299, + 505, + 326 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 139, + 328, + 471, + 363 + ], + "lines": [ + { + "bbox": [ + 139, + 328, + 471, + 363 + ], + "spans": [ + { + "bbox": [ + 139, + 328, + 471, + 363 + ], + "score": 0.93, + "content": "\\widetilde { F } = \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } \\mathbb { E } _ { x , y } \\bigg [ \\bigg ( \\frac { \\partial \\widetilde { \\theta } ^ { m } } { \\partial \\theta } \\bigg ) \\frac { d } { d \\widetilde { \\theta } ^ { m } } \\log p ( y | x , \\widetilde { \\theta } ^ { m } ) \\frac { d } { d \\widetilde { \\theta } ^ { m } } \\log p ( y | x , \\widetilde { \\theta } ^ { m } ) ^ { T } \\bigg ( \\frac { \\partial \\widetilde { \\theta } ^ { m } } { \\partial \\theta } \\bigg ) ^ { T } \\bigg ] .", + "type": "interline_equation", + "image_path": "8baa73ad4baba1475c9a3370fe3004bb5cbaa3b00d996bdebeddf1cace34611c.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 139, + 328, + 471, + 339.6666666666667 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 139, + 339.6666666666667, + 471, + 351.33333333333337 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 139, + 351.33333333333337, + 471, + 363.00000000000006 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 367, + 505, + 392 + ], + "lines": [ + { + "bbox": [ + 106, + 366, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 234, + 383 + ], + "score": 1.0, + "content": "The additional Jacobian matrix", + "type": "text" + }, + { + "bbox": [ + 235, + 366, + 253, + 382 + ], + "score": 0.91, + "content": "\\frac { \\partial \\tilde { \\theta } ^ { m } } { \\partial \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 367, + 505, + 383 + ], + "score": 1.0, + "content": "breaks the Kronecker-factored structure described by Martens", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 380, + 312, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 312, + 392 + ], + "score": 1.0, + "content": "& Grosse (2015) for the original Fisher in Eq. (10).", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 106, + 366, + 505, + 392 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 397, + 505, + 442 + ], + "lines": [ + { + "bbox": [ + 105, + 397, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 429, + 410 + ], + "score": 1.0, + "content": "The results in Finn et al. (2017) show that the first step of the quick adaptation in", + "type": "text" + }, + { + "bbox": [ + 429, + 397, + 443, + 408 + ], + "score": 0.89, + "content": "\\tilde { \\theta } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 397, + 505, + 410 + ], + "score": 1.0, + "content": "contributes the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 410, + 504, + 421 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 504, + 421 + ], + "score": 1.0, + "content": "largest change to the meta-evaluation objective, and the remaining adaptation steps give a relatively", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 420, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 505, + 433 + ], + "score": 1.0, + "content": "small change to the objective. It is reasonable to assume that the quick adaptation is a one-step SGD", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 431, + 212, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 212, + 444 + ], + "score": 1.0, + "content": "for Fisher approximation:", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 397, + 505, + 444 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 251, + 441, + 360, + 457 + ], + "lines": [ + { + "bbox": [ + 251, + 441, + 360, + 457 + ], + "spans": [ + { + "bbox": [ + 251, + 441, + 360, + 457 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\tilde { \\theta } ^ { m } = \\theta - \\nabla _ { \\theta } \\mathcal { L } ( \\theta , \\widetilde { D } _ { t + 1 } ^ { m , S } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "010371dd5f0c91339f5ccb1951cdebe2358e8321e7db27767127020481d5f5f9.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 251, + 441, + 360, + 457 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 109, + 457, + 468, + 470 + ], + "lines": [ + { + "bbox": [ + 106, + 456, + 468, + 471 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 242, + 471 + ], + "score": 1.0, + "content": "By imposing this assumption, the", + "type": "text" + }, + { + "bbox": [ + 243, + 458, + 263, + 470 + ], + "score": 0.92, + "content": "( i , j )", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 456, + 468, + 471 + ], + "score": 1.0, + "content": "-th entry of the Jacobian term can be interpreted as", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27, + "bbox_fs": [ + 106, + 456, + 468, + 471 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 218, + 473, + 392, + 503 + ], + "lines": [ + { + "bbox": [ + 218, + 473, + 392, + 503 + ], + "spans": [ + { + "bbox": [ + 218, + 473, + 392, + 503 + ], + "score": 0.94, + "content": "\\left( \\frac { \\partial \\tilde { \\theta } ^ { m } } { \\partial \\theta } \\right) ^ { i j } = I ^ { i j } - \\frac { \\partial ^ { 2 } ( - \\log p ( \\widetilde { D } _ { t + 1 } ^ { m , S } | \\theta ) ) } { \\partial \\theta ^ { ( i ) } \\partial \\theta ^ { ( j ) } } ,", + "type": "interline_equation", + "image_path": "fb6d2e8697e39d339370645ea1db417c8e2841845d468d841f06e573d0b06a95.jpg" + } + ] + } + ], + "index": 28.5, + "virtual_lines": [ + { + "bbox": [ + 218, + 473, + 392, + 488.0 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 218, + 488.0, + 392, + 503.0 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 505, + 505, + 598 + ], + "lines": [ + { + "bbox": [ + 105, + 504, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 135, + 520 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 506, + 142, + 516 + ], + "score": 0.76, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 504, + 372, + 520 + ], + "score": 1.0, + "content": "is the corresponding identity matrix and the objective", + "type": "text" + }, + { + "bbox": [ + 372, + 506, + 381, + 516 + ], + "score": 0.81, + "content": "\\mathcal { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 504, + 505, + 520 + ], + "score": 1.0, + "content": "involved is the negative log-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 516, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 505, + 529 + ], + "score": 1.0, + "content": "likelihood. The Hessian for a single data point in the second term of Eq. (13) can be approximated", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 527, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 119, + 540 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 119, + 528, + 128, + 537 + ], + "score": 0.84, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 527, + 505, + 540 + ], + "score": 1.0, + "content": "in Eq. (10) via the usual block-diagonal Kronecker-factored approximation. Putting the Jaco-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 538, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 505, + 551 + ], + "score": 1.0, + "content": "bian back into Eq. (11) and expanding the factors give terms that multiply two or more Kronecker", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 550, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 104, + 551, + 290, + 565 + ], + "score": 1.0, + "content": "products together. The detailed derivation of", + "type": "text" + }, + { + "bbox": [ + 290, + 550, + 299, + 561 + ], + "score": 0.87, + "content": "\\widetilde { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 551, + 506, + 565 + ], + "score": 1.0, + "content": "is explained in Appendix A.3.1. We introduce the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 562, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 191, + 577 + ], + "score": 1.0, + "content": "posterior regulariser", + "type": "text" + }, + { + "bbox": [ + 191, + 565, + 199, + 574 + ], + "score": 0.75, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 563, + 325, + 577 + ], + "score": 1.0, + "content": "when updating the precision:", + "type": "text" + }, + { + "bbox": [ + 325, + 562, + 416, + 576 + ], + "score": 0.93, + "content": "\\Lambda _ { t + 1 } = \\lambda { \\widetilde { \\cal H } } _ { t + 1 } + \\Lambda _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 563, + 506, + 577 + ], + "score": 1.0, + "content": "and the rationale for", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 576, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 155, + 588 + ], + "score": 1.0, + "content": "introducing", + "type": "text" + }, + { + "bbox": [ + 155, + 576, + 163, + 585 + ], + "score": 0.78, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 576, + 505, + 588 + ], + "score": 1.0, + "content": "is explained in Appendix A.3.2. The pseudo-code of the BOMLA algorithm can be", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 586, + 204, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 204, + 599 + ], + "score": 1.0, + "content": "found in Appendix B.1.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 33.5, + "bbox_fs": [ + 104, + 504, + 506, + 599 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 611, + 423, + 622 + ], + "lines": [ + { + "bbox": [ + 105, + 610, + 424, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 424, + 623 + ], + "score": 1.0, + "content": "4.3 BAYESIAN ONLINE META-LEARNING WITH VARIATIONAL INFERENCE", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 631, + 505, + 665 + ], + "lines": [ + { + "bbox": [ + 105, + 631, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 505, + 644 + ], + "score": 1.0, + "content": "The variational continual learning (VCL) framework (Nguyen et al., 2018) is directly applicable to", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 642, + 505, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 505, + 655 + ], + "score": 1.0, + "content": "BOML. This section demonstrates how we arrive at the BOMVI algorithm by implementing VCL to", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 654, + 302, + 666 + ], + "spans": [ + { + "bbox": [ + 106, + 654, + 302, + 666 + ], + "score": 1.0, + "content": "the posterior of the BOML framework in Eq. (5).", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 631, + 505, + 666 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 670, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 105, + 670, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 505, + 684 + ], + "score": 1.0, + "content": "As described in Appendix A.4, VCL approximates the posterior by minimising the KL-divergence", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 682, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 336, + 694 + ], + "score": 1.0, + "content": "over some pre-determined approximate posterior family", + "type": "text" + }, + { + "bbox": [ + 336, + 682, + 345, + 692 + ], + "score": 0.79, + "content": "\\mathcal { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 682, + 505, + 694 + ], + "score": 1.0, + "content": ". Fitting the BOML posterior in Eq. (5)", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 693, + 338, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 693, + 338, + 705 + ], + "score": 1.0, + "content": "into the VCL framework gives the approximate posterior:", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 670, + 505, + 705 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 113, + 707, + 481, + 735 + ], + "lines": [ + { + "bbox": [ + 113, + 707, + 481, + 735 + ], + "spans": [ + { + "bbox": [ + 113, + 707, + 481, + 735 + ], + "score": 0.93, + "content": "q ( \\theta | \\phi _ { t + 1 } ) = \\underset { q \\in \\mathcal { Q } } { \\operatorname { a r g m i n } } D _ { \\mathrm { K L } } \\Bigg ( q ( \\theta | \\phi ) \\bigg | \\bigg | \\bigg \\{ \\int p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { Q } | \\widetilde { \\theta } ) p ( \\widetilde { \\theta } | \\theta , \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { S } ) d \\widetilde { \\theta } \\bigg \\} p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { S } | \\theta ) q ( \\theta | \\phi _ { t } ) \\Bigg ) .", + "type": "interline_equation", + "image_path": "23bd8d9eb209877e105b8e2387ef7e368d77d8125637c2486211c36eb40e27cd.jpg" + } + ] + } + ], + "index": 46, + "virtual_lines": [ + { + "bbox": [ + 113, + 707, + 481, + 716.3333333333334 + ], + "spans": [], + "index": 45 + }, + { + "bbox": [ + 113, + 716.3333333333334, + 481, + 725.6666666666667 + ], + "spans": [], + "index": 46 + }, + { + "bbox": [ + 113, + 725.6666666666667, + 481, + 735.0000000000001 + ], + "spans": [], + "index": 47 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 81, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 296, + 95 + ], + "score": 1.0, + "content": "Similar to BOMLA, we use the deterministic", + "type": "text" + }, + { + "bbox": [ + 297, + 81, + 303, + 92 + ], + "score": 0.83, + "content": "\\tilde { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "in Eq. (6), and the objective in Eq. (14) can be", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 506, + 107 + ], + "score": 1.0, + "content": "batched (for sequential tasks) or meta-batched (for sequential datasets). This leads to minimising", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 159, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 159, + 117 + ], + "score": 1.0, + "content": "the objective", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "interline_equation", + "bbox": [ + 116, + 121, + 478, + 172 + ], + "lines": [ + { + "bbox": [ + 116, + 121, + 478, + 172 + ], + "spans": [ + { + "bbox": [ + 116, + 121, + 478, + 172 + ], + "score": 0.93, + "content": "f _ { t + 1 } ^ { \\mathrm { B o n v I } } ( \\phi , \\phi _ { t } ) = - \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } \\mathbb { E } _ { q ( \\theta | \\phi ) } \\big [ \\log p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { m , Q } | \\widetilde { \\theta } ^ { m } ) \\big ] - \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } \\mathbb { E } _ { q ( \\theta | \\phi ) } \\big [ \\log p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { m , S } | \\theta ) \\big ]", + "type": "interline_equation", + "image_path": "ee7b2e2e580f20188f5f558ef8418de608a8ef60ce3e4fd0e30c87ce3702de47.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 116, + 121, + 478, + 138.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 116, + 138.0, + 478, + 155.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 116, + 155.0, + 478, + 172.0 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 177, + 505, + 238 + ], + "lines": [ + { + "bbox": [ + 103, + 175, + 508, + 195 + ], + "spans": [ + { + "bbox": [ + 103, + 175, + 133, + 195 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 177, + 243, + 192 + ], + "score": 0.93, + "content": "\\tilde { \\theta } ^ { m } = S G D _ { k } ( \\mathcal { L } ( \\theta , \\widetilde { D } _ { t + 1 } ^ { m , S } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 175, + 259, + 195 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 260, + 179, + 321, + 190 + ], + "score": 0.92, + "content": "m = 1 , \\ldots , M", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 175, + 459, + 195 + ], + "score": 1.0, + "content": ". In the sequential datasets setting", + "type": "text" + }, + { + "bbox": [ + 459, + 180, + 471, + 189 + ], + "score": 0.78, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 175, + 508, + 195 + ], + "score": 1.0, + "content": "denotes", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 190, + 505, + 202 + ], + "spans": [ + { + "bbox": [ + 106, + 190, + 442, + 202 + ], + "score": 1.0, + "content": "the number of tasks sampled per iteration, whereas in the sequential tasks setting", + "type": "text" + }, + { + "bbox": [ + 443, + 190, + 455, + 200 + ], + "score": 0.75, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 190, + 505, + 202 + ], + "score": 1.0, + "content": "denotes the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 200, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 460, + 214 + ], + "score": 1.0, + "content": "number of batches per epoch. We use a Gaussian mean-field approximate posterior", + "type": "text" + }, + { + "bbox": [ + 460, + 201, + 505, + 213 + ], + "score": 0.92, + "content": "q ( \\theta | \\phi _ { t } ) =", + "type": "inline_equation" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 208, + 509, + 231 + ], + "spans": [ + { + "bbox": [ + 106, + 212, + 186, + 227 + ], + "score": 0.92, + "content": "\\textstyle \\prod _ { d = 1 } ^ { D } N ( \\mu _ { t , d } , \\sigma _ { t , d } ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 208, + 220, + 231 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 220, + 213, + 309, + 227 + ], + "score": 0.91, + "content": "\\phi _ { t } ~ = ~ \\{ \\mu _ { t , d } , \\sigma _ { t , d } \\} _ { d = 1 } ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 208, + 315, + 231 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 315, + 214, + 370, + 226 + ], + "score": 0.89, + "content": "D = \\dim ( \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 208, + 509, + 231 + ], + "score": 1.0, + "content": "and the objective in Eq. (15) is", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 225, + 480, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 171, + 239 + ], + "score": 1.0, + "content": "minimised over", + "type": "text" + }, + { + "bbox": [ + 171, + 227, + 178, + 237 + ], + "score": 0.83, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 225, + 480, + 239 + ], + "score": 1.0, + "content": ". The pseudo-code of the BOMVI algorithm can be found in Appendix B.1.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 243, + 505, + 299 + ], + "lines": [ + { + "bbox": [ + 106, + 242, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 242, + 505, + 256 + ], + "score": 1.0, + "content": "The first term in Eq. (15) is rather cumbersome to estimate in optimisation. To compute its Monte", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 252, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 291, + 268 + ], + "score": 1.0, + "content": "Carlo estimator, we have to generate samples", + "type": "text" + }, + { + "bbox": [ + 291, + 254, + 321, + 266 + ], + "score": 0.91, + "content": "\\theta _ { r } \\sim q", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 252, + 336, + 268 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 337, + 254, + 392, + 266 + ], + "score": 0.92, + "content": "r = 1 , \\ldots , R", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 252, + 505, + 268 + ], + "score": 1.0, + "content": ", and run a quick adaptation", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 265, + 504, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 246, + 278 + ], + "score": 1.0, + "content": "on each sampled meta-parameters", + "type": "text" + }, + { + "bbox": [ + 246, + 266, + 257, + 276 + ], + "score": 0.89, + "content": "\\theta _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 265, + 504, + 278 + ], + "score": 1.0, + "content": "before evaluating its log-likelihood. This is computationally", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 276, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 505, + 289 + ], + "score": 1.0, + "content": "intensive and it gives an estimator with large variance. We propose a workaround by modifying the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 288, + 428, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 288, + 428, + 299 + ], + "score": 1.0, + "content": "inner loop SGD quick adaptation, and the details can be found in Appendix B.2.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13 + }, + { + "type": "title", + "bbox": [ + 108, + 315, + 209, + 327 + ], + "lines": [ + { + "bbox": [ + 105, + 313, + 211, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 211, + 330 + ], + "score": 1.0, + "content": "5 RELATED WORK", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 340, + 503, + 363 + ], + "lines": [ + { + "bbox": [ + 105, + 339, + 505, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 505, + 354 + ], + "score": 1.0, + "content": "Online Meta-Learning There are two common problem settings in the current online meta-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 352, + 171, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 352, + 171, + 363 + ], + "score": 1.0, + "content": "learning works:", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 132, + 374, + 504, + 506 + ], + "lines": [ + { + "bbox": [ + 136, + 373, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 136, + 373, + 505, + 386 + ], + "score": 1.0, + "content": "• Underlying task distribution: Sequential tasks are assumed to originate from the same", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 142, + 385, + 504, + 397 + ], + "spans": [ + { + "bbox": [ + 142, + 385, + 253, + 397 + ], + "score": 1.0, + "content": "underlying task distribution", + "type": "text" + }, + { + "bbox": [ + 253, + 385, + 275, + 397 + ], + "score": 0.92, + "content": "p ( \\mathcal { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 385, + 504, + 397 + ], + "score": 1.0, + "content": "in this setting. Our work in the sequential tasks setting be-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 396, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 142, + 396, + 505, + 408 + ], + "score": 1.0, + "content": "longs to this category. Denevi et al. (2019) introduce the online-within-online (OWO) and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 142, + 407, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 142, + 407, + 505, + 419 + ], + "score": 1.0, + "content": "online-within-batch (OWB) settings, where OWO encounters tasks and examples within", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 142, + 418, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 142, + 418, + 505, + 430 + ], + "score": 1.0, + "content": "tasks sequentially while OWB encounters tasks sequentially but examples within tasks are", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 428, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 141, + 428, + 505, + 442 + ], + "score": 1.0, + "content": "in batch. The BOML framework in the sequential tasks setting corresponds to the OWB set-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 439, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 141, + 439, + 505, + 453 + ], + "score": 1.0, + "content": "ting. On the other hand, our work in the sequential datasets setting is novel in overcoming", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 142, + 451, + 505, + 463 + ], + "spans": [ + { + "bbox": [ + 142, + 451, + 505, + 463 + ], + "score": 1.0, + "content": "few-shot catastrophic forgetting, where the goal is to few-shot classify tasks drawn from", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 140, + 461, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 140, + 461, + 254, + 474 + ], + "score": 1.0, + "content": "a sequence of distributions", + "type": "text" + }, + { + "bbox": [ + 254, + 461, + 324, + 473 + ], + "score": 0.93, + "content": "p ( { \\bar { \\mathcal { T } } } _ { 1 } ) , \\dots , p ( { \\mathcal { T } } _ { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 461, + 505, + 474 + ], + "score": 1.0, + "content": "as explained in Section 3. He et al. (2019),", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 141, + 471, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 141, + 471, + 505, + 485 + ], + "score": 1.0, + "content": "Harrison et al. (2019) and Jerfel et al. (2019) look into continual meta-learning for non-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 142, + 483, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 142, + 483, + 505, + 496 + ], + "score": 1.0, + "content": "stationary task distributions where the task boundaries are unknown to the model. Jerfel", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 141, + 494, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 141, + 494, + 505, + 507 + ], + "score": 1.0, + "content": "et al. (2019) consider a latent task structure to adapt to the non-stationary task distributions.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 132, + 510, + 505, + 631 + ], + "lines": [ + { + "bbox": [ + 132, + 510, + 506, + 522 + ], + "spans": [ + { + "bbox": [ + 132, + 510, + 506, + 522 + ], + "score": 1.0, + "content": "• Regret minimisation: In this setting, the goal is to minimise the regret function, and", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 142, + 521, + 506, + 533 + ], + "spans": [ + { + "bbox": [ + 142, + 521, + 506, + 533 + ], + "score": 1.0, + "content": "the assumptions are made on the loss function rather than the task distribution. Recent", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 141, + 531, + 506, + 544 + ], + "spans": [ + { + "bbox": [ + 141, + 531, + 506, + 544 + ], + "score": 1.0, + "content": "works Finn et al. (2019); Zhuang et al. (2019) belong to this category, where the aim is to", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 142, + 543, + 506, + 555 + ], + "spans": [ + { + "bbox": [ + 142, + 543, + 506, + 555 + ], + "score": 1.0, + "content": "compete with the best meta-learner and supersede it. These methods accumulate data as", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 142, + 554, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 142, + 554, + 505, + 565 + ], + "score": 1.0, + "content": "they arrive and meta-learn using all data acquired so far. Data accumulation is not desirable", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 141, + 565, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 141, + 565, + 505, + 576 + ], + "score": 1.0, + "content": "as the algorithmic complexity of training grows with the amount of data accumulated, and", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 141, + 576, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 141, + 576, + 506, + 588 + ], + "score": 1.0, + "content": "training time increases as new data arrive (Finn et al., 2019; He et al., 2019). The agent", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 142, + 586, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 142, + 586, + 506, + 599 + ], + "score": 1.0, + "content": "will eventually run out of memory for a long sequence of data. The BOML framework on", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 142, + 598, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 142, + 598, + 505, + 609 + ], + "score": 1.0, + "content": "the other hand is advantageous, as it only takes the posterior of the meta-parameters into", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 141, + 608, + 504, + 621 + ], + "spans": [ + { + "bbox": [ + 141, + 608, + 504, + 621 + ], + "score": 1.0, + "content": "consideration during optimisation. This gives a framework with an algorithmic complexity", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 142, + 619, + 343, + 632 + ], + "spans": [ + { + "bbox": [ + 142, + 619, + 343, + 632 + ], + "score": 1.0, + "content": "independent of the length of the dataset sequence.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 108, + 643, + 504, + 699 + ], + "lines": [ + { + "bbox": [ + 106, + 643, + 506, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 643, + 506, + 656 + ], + "score": 1.0, + "content": "Offline Meta-Learning Previous meta-learning works attempt to solve few-shot classification", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "problems in an offline setting, under the assumption of having a stationary task distribution dur-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 665, + 504, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 504, + 678 + ], + "score": 1.0, + "content": "ing meta-training and meta-evaluation. A single meta-learned model is aimed to few-shot classify", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 104, + 675, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 104, + 675, + 506, + 690 + ], + "score": 1.0, + "content": "one specific dataset with all base classes of the dataset readily available in a batch for meta-training.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 685, + 392, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 685, + 392, + 702 + ], + "score": 1.0, + "content": "There are two general frameworks for the offline meta-learning setting:", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 44 + }, + { + "type": "text", + "bbox": [ + 133, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 133, + 708, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 133, + 708, + 505, + 722 + ], + "score": 1.0, + "content": "• Probabilistic framework: The MAML algorithm can be cast into a probabilistic infer-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 141, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 141, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "ence problem (Finn et al., 2018) or with a hierarchical Bayesian structure (Grant et al.,", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 47.5 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 514, + 644, + 541, + 664 + ], + "lines": [ + { + "bbox": [ + 514, + 643, + 542, + 654 + ], + "spans": [ + { + "bbox": [ + 514, + 643, + 542, + 654 + ], + "score": 0.31, + "content": "@ \\ @ \\left( { \\widehat { a } } \\right)", + "type": "inline_equation" + } + ] + }, + { + "bbox": [ + 513, + 653, + 535, + 667 + ], + "spans": [ + { + "bbox": [ + 513, + 653, + 535, + 667 + ], + "score": 1.0, + "content": "New", + "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": [ + 513, + 341, + 541, + 361 + ], + "lines": [ + { + "bbox": [ + 514, + 340, + 542, + 351 + ], + "spans": [ + { + "bbox": [ + 514, + 340, + 542, + 351 + ], + "score": 0.37, + "content": "\\cdot", + "type": "inline_equation" + } + ] + }, + { + "bbox": [ + 512, + 350, + 535, + 363 + ], + "spans": [ + { + "bbox": [ + 512, + 350, + 535, + 363 + ], + "score": 1.0, + "content": "New", + "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": [ + 108, + 81, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 296, + 95 + ], + "score": 1.0, + "content": "Similar to BOMLA, we use the deterministic", + "type": "text" + }, + { + "bbox": [ + 297, + 81, + 303, + 92 + ], + "score": 0.83, + "content": "\\tilde { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "in Eq. (6), and the objective in Eq. (14) can be", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 506, + 107 + ], + "score": 1.0, + "content": "batched (for sequential tasks) or meta-batched (for sequential datasets). This leads to minimising", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 159, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 159, + 117 + ], + "score": 1.0, + "content": "the objective", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 81, + 506, + 117 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 116, + 121, + 478, + 172 + ], + "lines": [ + { + "bbox": [ + 116, + 121, + 478, + 172 + ], + "spans": [ + { + "bbox": [ + 116, + 121, + 478, + 172 + ], + "score": 0.93, + "content": "f _ { t + 1 } ^ { \\mathrm { B o n v I } } ( \\phi , \\phi _ { t } ) = - \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } \\mathbb { E } _ { q ( \\theta | \\phi ) } \\big [ \\log p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { m , Q } | \\widetilde { \\theta } ^ { m } ) \\big ] - \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } \\mathbb { E } _ { q ( \\theta | \\phi ) } \\big [ \\log p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { m , S } | \\theta ) \\big ]", + "type": "interline_equation", + "image_path": "ee7b2e2e580f20188f5f558ef8418de608a8ef60ce3e4fd0e30c87ce3702de47.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 116, + 121, + 478, + 138.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 116, + 138.0, + 478, + 155.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 116, + 155.0, + 478, + 172.0 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 177, + 505, + 238 + ], + "lines": [ + { + "bbox": [ + 103, + 175, + 508, + 195 + ], + "spans": [ + { + "bbox": [ + 103, + 175, + 133, + 195 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 177, + 243, + 192 + ], + "score": 0.93, + "content": "\\tilde { \\theta } ^ { m } = S G D _ { k } ( \\mathcal { L } ( \\theta , \\widetilde { D } _ { t + 1 } ^ { m , S } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 175, + 259, + 195 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 260, + 179, + 321, + 190 + ], + "score": 0.92, + "content": "m = 1 , \\ldots , M", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 175, + 459, + 195 + ], + "score": 1.0, + "content": ". In the sequential datasets setting", + "type": "text" + }, + { + "bbox": [ + 459, + 180, + 471, + 189 + ], + "score": 0.78, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 175, + 508, + 195 + ], + "score": 1.0, + "content": "denotes", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 190, + 505, + 202 + ], + "spans": [ + { + "bbox": [ + 106, + 190, + 442, + 202 + ], + "score": 1.0, + "content": "the number of tasks sampled per iteration, whereas in the sequential tasks setting", + "type": "text" + }, + { + "bbox": [ + 443, + 190, + 455, + 200 + ], + "score": 0.75, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 190, + 505, + 202 + ], + "score": 1.0, + "content": "denotes the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 200, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 460, + 214 + ], + "score": 1.0, + "content": "number of batches per epoch. We use a Gaussian mean-field approximate posterior", + "type": "text" + }, + { + "bbox": [ + 460, + 201, + 505, + 213 + ], + "score": 0.92, + "content": "q ( \\theta | \\phi _ { t } ) =", + "type": "inline_equation" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 208, + 509, + 231 + ], + "spans": [ + { + "bbox": [ + 106, + 212, + 186, + 227 + ], + "score": 0.92, + "content": "\\textstyle \\prod _ { d = 1 } ^ { D } N ( \\mu _ { t , d } , \\sigma _ { t , d } ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 208, + 220, + 231 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 220, + 213, + 309, + 227 + ], + "score": 0.91, + "content": "\\phi _ { t } ~ = ~ \\{ \\mu _ { t , d } , \\sigma _ { t , d } \\} _ { d = 1 } ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 208, + 315, + 231 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 315, + 214, + 370, + 226 + ], + "score": 0.89, + "content": "D = \\dim ( \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 208, + 509, + 231 + ], + "score": 1.0, + "content": "and the objective in Eq. (15) is", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 225, + 480, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 171, + 239 + ], + "score": 1.0, + "content": "minimised over", + "type": "text" + }, + { + "bbox": [ + 171, + 227, + 178, + 237 + ], + "score": 0.83, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 225, + 480, + 239 + ], + "score": 1.0, + "content": ". The pseudo-code of the BOMVI algorithm can be found in Appendix B.1.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8, + "bbox_fs": [ + 103, + 175, + 509, + 239 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 243, + 505, + 299 + ], + "lines": [ + { + "bbox": [ + 106, + 242, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 242, + 505, + 256 + ], + "score": 1.0, + "content": "The first term in Eq. (15) is rather cumbersome to estimate in optimisation. To compute its Monte", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 252, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 291, + 268 + ], + "score": 1.0, + "content": "Carlo estimator, we have to generate samples", + "type": "text" + }, + { + "bbox": [ + 291, + 254, + 321, + 266 + ], + "score": 0.91, + "content": "\\theta _ { r } \\sim q", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 252, + 336, + 268 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 337, + 254, + 392, + 266 + ], + "score": 0.92, + "content": "r = 1 , \\ldots , R", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 252, + 505, + 268 + ], + "score": 1.0, + "content": ", and run a quick adaptation", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 265, + 504, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 246, + 278 + ], + "score": 1.0, + "content": "on each sampled meta-parameters", + "type": "text" + }, + { + "bbox": [ + 246, + 266, + 257, + 276 + ], + "score": 0.89, + "content": "\\theta _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 265, + 504, + 278 + ], + "score": 1.0, + "content": "before evaluating its log-likelihood. This is computationally", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 276, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 505, + 289 + ], + "score": 1.0, + "content": "intensive and it gives an estimator with large variance. We propose a workaround by modifying the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 288, + 428, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 288, + 428, + 299 + ], + "score": 1.0, + "content": "inner loop SGD quick adaptation, and the details can be found in Appendix B.2.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 242, + 505, + 299 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 315, + 209, + 327 + ], + "lines": [ + { + "bbox": [ + 105, + 313, + 211, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 211, + 330 + ], + "score": 1.0, + "content": "5 RELATED WORK", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 340, + 503, + 363 + ], + "lines": [ + { + "bbox": [ + 105, + 339, + 505, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 505, + 354 + ], + "score": 1.0, + "content": "Online Meta-Learning There are two common problem settings in the current online meta-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 352, + 171, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 352, + 171, + 363 + ], + "score": 1.0, + "content": "learning works:", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 339, + 505, + 363 + ] + }, + { + "type": "text", + "bbox": [ + 132, + 374, + 504, + 506 + ], + "lines": [ + { + "bbox": [ + 136, + 373, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 136, + 373, + 505, + 386 + ], + "score": 1.0, + "content": "• Underlying task distribution: Sequential tasks are assumed to originate from the same", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 142, + 385, + 504, + 397 + ], + "spans": [ + { + "bbox": [ + 142, + 385, + 253, + 397 + ], + "score": 1.0, + "content": "underlying task distribution", + "type": "text" + }, + { + "bbox": [ + 253, + 385, + 275, + 397 + ], + "score": 0.92, + "content": "p ( \\mathcal { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 385, + 504, + 397 + ], + "score": 1.0, + "content": "in this setting. Our work in the sequential tasks setting be-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 396, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 142, + 396, + 505, + 408 + ], + "score": 1.0, + "content": "longs to this category. Denevi et al. (2019) introduce the online-within-online (OWO) and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 142, + 407, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 142, + 407, + 505, + 419 + ], + "score": 1.0, + "content": "online-within-batch (OWB) settings, where OWO encounters tasks and examples within", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 142, + 418, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 142, + 418, + 505, + 430 + ], + "score": 1.0, + "content": "tasks sequentially while OWB encounters tasks sequentially but examples within tasks are", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 428, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 141, + 428, + 505, + 442 + ], + "score": 1.0, + "content": "in batch. The BOML framework in the sequential tasks setting corresponds to the OWB set-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 439, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 141, + 439, + 505, + 453 + ], + "score": 1.0, + "content": "ting. On the other hand, our work in the sequential datasets setting is novel in overcoming", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 142, + 451, + 505, + 463 + ], + "spans": [ + { + "bbox": [ + 142, + 451, + 505, + 463 + ], + "score": 1.0, + "content": "few-shot catastrophic forgetting, where the goal is to few-shot classify tasks drawn from", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 140, + 461, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 140, + 461, + 254, + 474 + ], + "score": 1.0, + "content": "a sequence of distributions", + "type": "text" + }, + { + "bbox": [ + 254, + 461, + 324, + 473 + ], + "score": 0.93, + "content": "p ( { \\bar { \\mathcal { T } } } _ { 1 } ) , \\dots , p ( { \\mathcal { T } } _ { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 461, + 505, + 474 + ], + "score": 1.0, + "content": "as explained in Section 3. He et al. (2019),", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 141, + 471, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 141, + 471, + 505, + 485 + ], + "score": 1.0, + "content": "Harrison et al. (2019) and Jerfel et al. (2019) look into continual meta-learning for non-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 142, + 483, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 142, + 483, + 505, + 496 + ], + "score": 1.0, + "content": "stationary task distributions where the task boundaries are unknown to the model. Jerfel", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 141, + 494, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 141, + 494, + 505, + 507 + ], + "score": 1.0, + "content": "et al. (2019) consider a latent task structure to adapt to the non-stationary task distributions.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 24.5, + "bbox_fs": [ + 136, + 373, + 505, + 507 + ] + }, + { + "type": "text", + "bbox": [ + 132, + 510, + 505, + 631 + ], + "lines": [ + { + "bbox": [ + 132, + 510, + 506, + 522 + ], + "spans": [ + { + "bbox": [ + 132, + 510, + 506, + 522 + ], + "score": 1.0, + "content": "• Regret minimisation: In this setting, the goal is to minimise the regret function, and", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 142, + 521, + 506, + 533 + ], + "spans": [ + { + "bbox": [ + 142, + 521, + 506, + 533 + ], + "score": 1.0, + "content": "the assumptions are made on the loss function rather than the task distribution. Recent", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 141, + 531, + 506, + 544 + ], + "spans": [ + { + "bbox": [ + 141, + 531, + 506, + 544 + ], + "score": 1.0, + "content": "works Finn et al. (2019); Zhuang et al. (2019) belong to this category, where the aim is to", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 142, + 543, + 506, + 555 + ], + "spans": [ + { + "bbox": [ + 142, + 543, + 506, + 555 + ], + "score": 1.0, + "content": "compete with the best meta-learner and supersede it. These methods accumulate data as", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 142, + 554, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 142, + 554, + 505, + 565 + ], + "score": 1.0, + "content": "they arrive and meta-learn using all data acquired so far. Data accumulation is not desirable", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 141, + 565, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 141, + 565, + 505, + 576 + ], + "score": 1.0, + "content": "as the algorithmic complexity of training grows with the amount of data accumulated, and", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 141, + 576, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 141, + 576, + 506, + 588 + ], + "score": 1.0, + "content": "training time increases as new data arrive (Finn et al., 2019; He et al., 2019). The agent", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 142, + 586, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 142, + 586, + 506, + 599 + ], + "score": 1.0, + "content": "will eventually run out of memory for a long sequence of data. The BOML framework on", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 142, + 598, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 142, + 598, + 505, + 609 + ], + "score": 1.0, + "content": "the other hand is advantageous, as it only takes the posterior of the meta-parameters into", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 141, + 608, + 504, + 621 + ], + "spans": [ + { + "bbox": [ + 141, + 608, + 504, + 621 + ], + "score": 1.0, + "content": "consideration during optimisation. This gives a framework with an algorithmic complexity", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 142, + 619, + 343, + 632 + ], + "spans": [ + { + "bbox": [ + 142, + 619, + 343, + 632 + ], + "score": 1.0, + "content": "independent of the length of the dataset sequence.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 36, + "bbox_fs": [ + 132, + 510, + 506, + 632 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 643, + 504, + 699 + ], + "lines": [ + { + "bbox": [ + 106, + 643, + 506, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 643, + 506, + 656 + ], + "score": 1.0, + "content": "Offline Meta-Learning Previous meta-learning works attempt to solve few-shot classification", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "problems in an offline setting, under the assumption of having a stationary task distribution dur-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 665, + 504, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 504, + 678 + ], + "score": 1.0, + "content": "ing meta-training and meta-evaluation. A single meta-learned model is aimed to few-shot classify", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 104, + 675, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 104, + 675, + 506, + 690 + ], + "score": 1.0, + "content": "one specific dataset with all base classes of the dataset readily available in a batch for meta-training.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 685, + 392, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 685, + 392, + 702 + ], + "score": 1.0, + "content": "There are two general frameworks for the offline meta-learning setting:", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 44, + "bbox_fs": [ + 104, + 643, + 506, + 702 + ] + }, + { + "type": "text", + "bbox": [ + 133, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 133, + 708, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 133, + 708, + 505, + 722 + ], + "score": 1.0, + "content": "• Probabilistic framework: The MAML algorithm can be cast into a probabilistic infer-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 141, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 141, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "ence problem (Finn et al., 2018) or with a hierarchical Bayesian structure (Grant et al.,", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 47.5, + "bbox_fs": [ + 133, + 708, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 141, + 82, + 505, + 137 + ], + "lines": [ + { + "bbox": [ + 141, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 141, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "2018; Yoon et al., 2018). Grant et al. (2018) discuss the use of a Laplace approximation", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 141, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 141, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "in the task-specific inner loop to improve MAML using the curvature information, whilst", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 141, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 141, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "Yoon et al. (2018) use Stein Variational Gradient Descent (SVGD) for task-specific learn-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 141, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 141, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "ing. Gordon et al. (2019) implement probabilistic inference by considering the posterior", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 141, + 127, + 335, + 138 + ], + "spans": [ + { + "bbox": [ + 141, + 127, + 335, + 138 + ], + "score": 1.0, + "content": "predictive distribution with amortised networks.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 133, + 142, + 505, + 230 + ], + "lines": [ + { + "bbox": [ + 132, + 142, + 506, + 155 + ], + "spans": [ + { + "bbox": [ + 132, + 142, + 506, + 155 + ], + "score": 1.0, + "content": "• Non-probabilistic framework: Gradient-based meta-learning (Finn et al., 2017; Nichol", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 153, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 141, + 153, + 505, + 166 + ], + "score": 1.0, + "content": "et al., 2018; Rusu et al., 2019) updates the meta-parameters by accumulating the gradients", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 142, + 165, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 142, + 165, + 505, + 177 + ], + "score": 1.0, + "content": "of a meta-batch of task-specific inner loop updates. The meta-parameters will be used", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 176, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 141, + 176, + 505, + 188 + ], + "score": 1.0, + "content": "as a model initialisation for a quick adaptation on the novel classes. Metric-based meta-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 187, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 141, + 187, + 505, + 199 + ], + "score": 1.0, + "content": "learning (Koch et al., 2015; Vinyals et al., 2016; Snell et al., 2017) utilises the metric", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 197, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 141, + 197, + 505, + 210 + ], + "score": 1.0, + "content": "distance between labelled examples. Such methods assume that base and novel classes are", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 142, + 209, + 505, + 220 + ], + "spans": [ + { + "bbox": [ + 142, + 209, + 505, + 220 + ], + "score": 1.0, + "content": "from the same dataset distribution, and the metric distance estimations can be generalised", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 219, + 370, + 231 + ], + "spans": [ + { + "bbox": [ + 141, + 219, + 370, + 231 + ], + "score": 1.0, + "content": "to the novel classes upon meta-learning the base classes.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 107, + 244, + 505, + 376 + ], + "lines": [ + { + "bbox": [ + 106, + 245, + 506, + 257 + ], + "spans": [ + { + "bbox": [ + 106, + 245, + 506, + 257 + ], + "score": 1.0, + "content": "Continual Learning Modern continual learning works (Goodfellow et al., 2013; Lee et al., 2017;", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 255, + 506, + 269 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 506, + 269 + ], + "score": 1.0, + "content": "Zenke et al., 2017) focus primarily on large-scale supervised learning, in contrast to our work that", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 265, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 104, + 265, + 505, + 280 + ], + "score": 1.0, + "content": "looks into continual few-shot classification across sequential tasks and datasets. Wen et al. (2018)", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 277, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 506, + 291 + ], + "score": 1.0, + "content": "utilise few-shot learning to improve on overcoming catastrophic forgetting via logit matching on a", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 289, + 505, + 301 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 505, + 301 + ], + "score": 1.0, + "content": "small sample from the previous tasks. The online learning element in this paper is closely related to", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 300, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 505, + 312 + ], + "score": 1.0, + "content": "(Kirkpatrick et al., 2017; Zenke et al., 2017; Ritter et al., 2018a; Nguyen et al., 2018) that overcome", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 311, + 505, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 505, + 323 + ], + "score": 1.0, + "content": "catastrophic forgetting for large-scale supervised classification. In particular, our work builds on the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 320, + 506, + 335 + ], + "spans": [ + { + "bbox": [ + 104, + 320, + 506, + 335 + ], + "score": 1.0, + "content": "online Laplace approximation method in (Ritter et al., 2018a). We extend this to the meta-learning", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 333, + 504, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 504, + 345 + ], + "score": 1.0, + "content": "scenario to avoid forgetting in few-shot classification problems. Nguyen et al. (2018) provide the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 342, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 505, + 357 + ], + "score": 1.0, + "content": "alternative of using variational inference instead of Laplace approximation for approximating the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 355, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 505, + 367 + ], + "score": 1.0, + "content": "posterior. It is a reasonable approach to adapt variational approximation methods to approximate", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 366, + 423, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 423, + 378 + ], + "score": 1.0, + "content": "the posterior of the meta-parameters by adjusting the KL-divergence objective.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 18.5 + }, + { + "type": "title", + "bbox": [ + 107, + 394, + 200, + 407 + ], + "lines": [ + { + "bbox": [ + 105, + 393, + 201, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 201, + 409 + ], + "score": 1.0, + "content": "6 EXPERIMENTS", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "title", + "bbox": [ + 108, + 420, + 269, + 431 + ], + "lines": [ + { + "bbox": [ + 106, + 420, + 270, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 420, + 270, + 433 + ], + "score": 1.0, + "content": "6.1 OMNIGLOT: SEQUENTIAL TASKS", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 108, + 441, + 505, + 486 + ], + "lines": [ + { + "bbox": [ + 106, + 442, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 106, + 442, + 505, + 453 + ], + "score": 1.0, + "content": "We run the sequential tasks experiment on the Omniglot dataset. To increase the difficulty level,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 452, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 505, + 465 + ], + "score": 1.0, + "content": "we split the datasets based on the alphabets (super-classes) instead of the characters (classes). The", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 464, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 506, + 475 + ], + "score": 1.0, + "content": "goal of this experiment is to classify the 5-way 5-shot novel tasks sampled from the meta-evaluation", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 475, + 467, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 467, + 486 + ], + "score": 1.0, + "content": "alphabets. The experimental details and the alphabet splits can be found in Appendix C.1.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 108, + 491, + 326, + 502 + ], + "lines": [ + { + "bbox": [ + 106, + 490, + 328, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 490, + 328, + 505 + ], + "score": 1.0, + "content": "We compare our algorithms to the following baselines:", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 130, + 512, + 505, + 645 + ], + "lines": [ + { + "bbox": [ + 129, + 512, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 129, + 512, + 505, + 526 + ], + "score": 1.0, + "content": "1. Train-On-Everything (TOE): When a new task (or dataset) arrives for meta-training,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 142, + 524, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 142, + 524, + 505, + 537 + ], + "score": 1.0, + "content": "we randomly re-initialise the meta-parameters and perform meta-training on all tasks (or", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 142, + 535, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 142, + 535, + 505, + 547 + ], + "score": 1.0, + "content": "datasets) encountered so far. Once meta-training is completed in this stage, we do not", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 141, + 546, + 480, + 558 + ], + "spans": [ + { + "bbox": [ + 141, + 546, + 480, + 558 + ], + "score": 1.0, + "content": "update the posterior of the meta-parameters like we would in BOMLA and BOMVI.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 130, + 562, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 130, + 562, + 505, + 574 + ], + "score": 1.0, + "content": "2. Train-From-Scratch (TFS): Upon the arrival of a new task (or dataset), we randomly re-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 142, + 574, + 504, + 585 + ], + "spans": [ + { + "bbox": [ + 142, + 574, + 504, + 585 + ], + "score": 1.0, + "content": "initialise the meta-parameters and meta-train only on the newly-arrived task (or dataset).", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 141, + 583, + 446, + 597 + ], + "spans": [ + { + "bbox": [ + 141, + 583, + 446, + 597 + ], + "score": 1.0, + "content": "Similar to TOE, the posterior of the meta-parameters is not updated in TFS.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 128, + 599, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 128, + 599, + 505, + 613 + ], + "score": 1.0, + "content": "3. Follow The Meta-Leader (FTML): We introduce a slight modification to FTML (Finn", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 141, + 611, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 141, + 611, + 505, + 624 + ], + "score": 1.0, + "content": "et al., 2019) on its evaluation method, as FTML is not designed for few-shot learning on", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 142, + 622, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 142, + 622, + 505, + 635 + ], + "score": 1.0, + "content": "unseen tasks. In our experiment, we apply Update-Procedure in FTML to the data", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 142, + 634, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 142, + 634, + 505, + 645 + ], + "score": 1.0, + "content": "from unseen tasks, rather than the data from the same training task as in the original FTML.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "As the tasks arrive sequentially for meta-training, Figure 1 shows that BOMLA and BOMVI can", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "accumulate the few-shot classification ability on the novel tasks over time. The knowledge acquired", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "from previous meta-training tasks are carried forward in the form of a posterior, which is then used", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "as the prior when a new task arrives for meta-training. The baselines TOE and TFS have similar", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "performances. Despite having access to all previous tasks, TOE shows no positive forward transfer", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 433, + 722 + ], + "score": 1.0, + "content": "in the meta-evaluation accuracy each time it encounters a new task. BOMLA with", + "type": "text" + }, + { + "bbox": [ + 433, + 710, + 466, + 720 + ], + "score": 0.9, + "content": "\\lambda = 0 . 1", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "gives the", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 721, + 255, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 255, + 734 + ], + "score": 1.0, + "content": "best performance in this experiment.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 46 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 306, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 514, + 600, + 547, + 654 + ], + "lines": [ + { + "bbox": [ + 514, + 600, + 542, + 610 + ], + "spans": [ + { + "bbox": [ + 514, + 600, + 542, + 610 + ], + "score": 0.26, + "content": "@ \\ @ \\left( { \\widehat { a } } \\right)", + "type": "inline_equation" + } + ] + }, + { + "bbox": [ + 512, + 611, + 542, + 623 + ], + "spans": [ + { + "bbox": [ + 512, + 611, + 542, + 623 + ], + "score": 1.0, + "content": "New2:", + "type": "text" + } + ] + }, + { + "bbox": [ + 512, + 621, + 543, + 633 + ], + "spans": [ + { + "bbox": [ + 512, + 621, + 543, + 633 + ], + "score": 1.0, + "content": "FTML", + "type": "text" + } + ] + }, + { + "bbox": [ + 513, + 632, + 549, + 645 + ], + "spans": [ + { + "bbox": [ + 513, + 632, + 549, + 645 + ], + "score": 1.0, + "content": "& error-", + "type": "text" + } + ] + }, + { + "bbox": [ + 512, + 644, + 536, + 655 + ], + "spans": [ + { + "bbox": [ + 512, + 644, + 536, + 655 + ], + "score": 1.0, + "content": "band", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 303, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 12, + "width": 7 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 141, + 82, + 505, + 137 + ], + "lines": [ + { + "bbox": [ + 141, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 141, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "2018; Yoon et al., 2018). Grant et al. (2018) discuss the use of a Laplace approximation", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 141, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 141, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "in the task-specific inner loop to improve MAML using the curvature information, whilst", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 141, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 141, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "Yoon et al. (2018) use Stein Variational Gradient Descent (SVGD) for task-specific learn-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 141, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 141, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "ing. Gordon et al. (2019) implement probabilistic inference by considering the posterior", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 141, + 127, + 335, + 138 + ], + "spans": [ + { + "bbox": [ + 141, + 127, + 335, + 138 + ], + "score": 1.0, + "content": "predictive distribution with amortised networks.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2, + "bbox_fs": [ + 141, + 82, + 506, + 138 + ] + }, + { + "type": "text", + "bbox": [ + 133, + 142, + 505, + 230 + ], + "lines": [ + { + "bbox": [ + 132, + 142, + 506, + 155 + ], + "spans": [ + { + "bbox": [ + 132, + 142, + 506, + 155 + ], + "score": 1.0, + "content": "• Non-probabilistic framework: Gradient-based meta-learning (Finn et al., 2017; Nichol", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 153, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 141, + 153, + 505, + 166 + ], + "score": 1.0, + "content": "et al., 2018; Rusu et al., 2019) updates the meta-parameters by accumulating the gradients", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 142, + 165, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 142, + 165, + 505, + 177 + ], + "score": 1.0, + "content": "of a meta-batch of task-specific inner loop updates. The meta-parameters will be used", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 176, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 141, + 176, + 505, + 188 + ], + "score": 1.0, + "content": "as a model initialisation for a quick adaptation on the novel classes. Metric-based meta-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 187, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 141, + 187, + 505, + 199 + ], + "score": 1.0, + "content": "learning (Koch et al., 2015; Vinyals et al., 2016; Snell et al., 2017) utilises the metric", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 197, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 141, + 197, + 505, + 210 + ], + "score": 1.0, + "content": "distance between labelled examples. Such methods assume that base and novel classes are", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 142, + 209, + 505, + 220 + ], + "spans": [ + { + "bbox": [ + 142, + 209, + 505, + 220 + ], + "score": 1.0, + "content": "from the same dataset distribution, and the metric distance estimations can be generalised", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 219, + 370, + 231 + ], + "spans": [ + { + "bbox": [ + 141, + 219, + 370, + 231 + ], + "score": 1.0, + "content": "to the novel classes upon meta-learning the base classes.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 8.5, + "bbox_fs": [ + 132, + 142, + 506, + 231 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 244, + 505, + 376 + ], + "lines": [ + { + "bbox": [ + 106, + 245, + 506, + 257 + ], + "spans": [ + { + "bbox": [ + 106, + 245, + 506, + 257 + ], + "score": 1.0, + "content": "Continual Learning Modern continual learning works (Goodfellow et al., 2013; Lee et al., 2017;", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 255, + 506, + 269 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 506, + 269 + ], + "score": 1.0, + "content": "Zenke et al., 2017) focus primarily on large-scale supervised learning, in contrast to our work that", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 265, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 104, + 265, + 505, + 280 + ], + "score": 1.0, + "content": "looks into continual few-shot classification across sequential tasks and datasets. Wen et al. (2018)", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 277, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 506, + 291 + ], + "score": 1.0, + "content": "utilise few-shot learning to improve on overcoming catastrophic forgetting via logit matching on a", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 289, + 505, + 301 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 505, + 301 + ], + "score": 1.0, + "content": "small sample from the previous tasks. The online learning element in this paper is closely related to", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 300, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 505, + 312 + ], + "score": 1.0, + "content": "(Kirkpatrick et al., 2017; Zenke et al., 2017; Ritter et al., 2018a; Nguyen et al., 2018) that overcome", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 311, + 505, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 505, + 323 + ], + "score": 1.0, + "content": "catastrophic forgetting for large-scale supervised classification. In particular, our work builds on the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 320, + 506, + 335 + ], + "spans": [ + { + "bbox": [ + 104, + 320, + 506, + 335 + ], + "score": 1.0, + "content": "online Laplace approximation method in (Ritter et al., 2018a). We extend this to the meta-learning", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 333, + 504, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 504, + 345 + ], + "score": 1.0, + "content": "scenario to avoid forgetting in few-shot classification problems. Nguyen et al. (2018) provide the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 342, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 505, + 357 + ], + "score": 1.0, + "content": "alternative of using variational inference instead of Laplace approximation for approximating the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 355, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 505, + 367 + ], + "score": 1.0, + "content": "posterior. It is a reasonable approach to adapt variational approximation methods to approximate", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 366, + 423, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 423, + 378 + ], + "score": 1.0, + "content": "the posterior of the meta-parameters by adjusting the KL-divergence objective.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 18.5, + "bbox_fs": [ + 104, + 245, + 506, + 378 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 394, + 200, + 407 + ], + "lines": [ + { + "bbox": [ + 105, + 393, + 201, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 201, + 409 + ], + "score": 1.0, + "content": "6 EXPERIMENTS", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "title", + "bbox": [ + 108, + 420, + 269, + 431 + ], + "lines": [ + { + "bbox": [ + 106, + 420, + 270, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 420, + 270, + 433 + ], + "score": 1.0, + "content": "6.1 OMNIGLOT: SEQUENTIAL TASKS", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 108, + 441, + 505, + 486 + ], + "lines": [ + { + "bbox": [ + 106, + 442, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 106, + 442, + 505, + 453 + ], + "score": 1.0, + "content": "We run the sequential tasks experiment on the Omniglot dataset. To increase the difficulty level,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 452, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 505, + 465 + ], + "score": 1.0, + "content": "we split the datasets based on the alphabets (super-classes) instead of the characters (classes). The", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 464, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 506, + 475 + ], + "score": 1.0, + "content": "goal of this experiment is to classify the 5-way 5-shot novel tasks sampled from the meta-evaluation", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 475, + 467, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 467, + 486 + ], + "score": 1.0, + "content": "alphabets. The experimental details and the alphabet splits can be found in Appendix C.1.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 442, + 506, + 486 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 491, + 326, + 502 + ], + "lines": [ + { + "bbox": [ + 106, + 490, + 328, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 490, + 328, + 505 + ], + "score": 1.0, + "content": "We compare our algorithms to the following baselines:", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31, + "bbox_fs": [ + 106, + 490, + 328, + 505 + ] + }, + { + "type": "text", + "bbox": [ + 130, + 512, + 505, + 645 + ], + "lines": [ + { + "bbox": [ + 129, + 512, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 129, + 512, + 505, + 526 + ], + "score": 1.0, + "content": "1. Train-On-Everything (TOE): When a new task (or dataset) arrives for meta-training,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 142, + 524, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 142, + 524, + 505, + 537 + ], + "score": 1.0, + "content": "we randomly re-initialise the meta-parameters and perform meta-training on all tasks (or", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 142, + 535, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 142, + 535, + 505, + 547 + ], + "score": 1.0, + "content": "datasets) encountered so far. Once meta-training is completed in this stage, we do not", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 141, + 546, + 480, + 558 + ], + "spans": [ + { + "bbox": [ + 141, + 546, + 480, + 558 + ], + "score": 1.0, + "content": "update the posterior of the meta-parameters like we would in BOMLA and BOMVI.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 130, + 562, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 130, + 562, + 505, + 574 + ], + "score": 1.0, + "content": "2. Train-From-Scratch (TFS): Upon the arrival of a new task (or dataset), we randomly re-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 142, + 574, + 504, + 585 + ], + "spans": [ + { + "bbox": [ + 142, + 574, + 504, + 585 + ], + "score": 1.0, + "content": "initialise the meta-parameters and meta-train only on the newly-arrived task (or dataset).", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 141, + 583, + 446, + 597 + ], + "spans": [ + { + "bbox": [ + 141, + 583, + 446, + 597 + ], + "score": 1.0, + "content": "Similar to TOE, the posterior of the meta-parameters is not updated in TFS.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 128, + 599, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 128, + 599, + 505, + 613 + ], + "score": 1.0, + "content": "3. Follow The Meta-Leader (FTML): We introduce a slight modification to FTML (Finn", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 141, + 611, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 141, + 611, + 505, + 624 + ], + "score": 1.0, + "content": "et al., 2019) on its evaluation method, as FTML is not designed for few-shot learning on", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 142, + 622, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 142, + 622, + 505, + 635 + ], + "score": 1.0, + "content": "unseen tasks. In our experiment, we apply Update-Procedure in FTML to the data", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 142, + 634, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 142, + 634, + 505, + 645 + ], + "score": 1.0, + "content": "from unseen tasks, rather than the data from the same training task as in the original FTML.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 37, + "bbox_fs": [ + 128, + 512, + 505, + 645 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "As the tasks arrive sequentially for meta-training, Figure 1 shows that BOMLA and BOMVI can", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "accumulate the few-shot classification ability on the novel tasks over time. The knowledge acquired", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "from previous meta-training tasks are carried forward in the form of a posterior, which is then used", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "as the prior when a new task arrives for meta-training. The baselines TOE and TFS have similar", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "performances. Despite having access to all previous tasks, TOE shows no positive forward transfer", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 433, + 722 + ], + "score": 1.0, + "content": "in the meta-evaluation accuracy each time it encounters a new task. BOMLA with", + "type": "text" + }, + { + "bbox": [ + 433, + 710, + 466, + 720 + ], + "score": 0.9, + "content": "\\lambda = 0 . 1", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "gives the", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 721, + 255, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 255, + 734 + ], + "score": 1.0, + "content": "best performance in this experiment.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 46, + "bbox_fs": [ + 105, + 655, + 505, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 82, + 504, + 213 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 82, + 504, + 213 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 82, + 504, + 213 + ], + "spans": [ + { + "bbox": [ + 107, + 82, + 504, + 213 + ], + "score": 0.97, + "type": "image", + "image_path": "f1b81faadf230be434c4056a4a78621223884d73db008b674c0cea1f3e45bc91.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 82, + 504, + 125.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 125.66666666666666, + 504, + 169.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 169.33333333333331, + 504, + 212.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 241, + 505, + 275 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 241, + 504, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 241, + 504, + 253 + ], + "score": 1.0, + "content": "Figure 1: Meta-evaluation accuracy across 3 seed runs on the novel tasks along meta-training. Left:", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 252, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 264 + ], + "score": 1.0, + "content": "compares BOMLA to the baselines, centre: compares BOMVI to the baselines, right: compares", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 263, + 285, + 274 + ], + "spans": [ + { + "bbox": [ + 106, + 263, + 201, + 274 + ], + "score": 1.0, + "content": "BOMLA with different", + "type": "text" + }, + { + "bbox": [ + 201, + 264, + 208, + 273 + ], + "score": 0.76, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 263, + 285, + 274 + ], + "score": 1.0, + "content": "values to BOMVI.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 108, + 295, + 294, + 307 + ], + "lines": [ + { + "bbox": [ + 106, + 295, + 296, + 308 + ], + "spans": [ + { + "bbox": [ + 106, + 295, + 296, + 308 + ], + "score": 1.0, + "content": "6.2 PENTATHLON: SEQUENTIAL DATASETS", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 104, + 316, + 476, + 328 + ], + "lines": [ + { + "bbox": [ + 105, + 315, + 478, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 478, + 331 + ], + "score": 1.0, + "content": "We implement BOMLA and BOMVI to the pentathlon 5-way 1-shot classification sequence:", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 160, + 336, + 451, + 348 + ], + "lines": [ + { + "bbox": [ + 159, + 335, + 452, + 351 + ], + "spans": [ + { + "bbox": [ + 159, + 335, + 200, + 351 + ], + "score": 1.0, + "content": "Omniglot", + "type": "text" + }, + { + "bbox": [ + 201, + 338, + 214, + 347 + ], + "score": 0.75, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 335, + 259, + 351 + ], + "score": 1.0, + "content": "CIFAR-FS", + "type": "text" + }, + { + "bbox": [ + 259, + 338, + 272, + 347 + ], + "score": 0.7, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 335, + 331, + 351 + ], + "score": 1.0, + "content": "miniImageNet", + "type": "text" + }, + { + "bbox": [ + 331, + 338, + 345, + 347 + ], + "score": 0.77, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 335, + 403, + 351 + ], + "score": 1.0, + "content": "VGG-Flowers", + "type": "text" + }, + { + "bbox": [ + 404, + 338, + 417, + 347 + ], + "score": 0.8, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 335, + 452, + 351 + ], + "score": 1.0, + "content": "Aircraft", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 362, + 504, + 396 + ], + "lines": [ + { + "bbox": [ + 106, + 363, + 504, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 504, + 375 + ], + "score": 1.0, + "content": "The details of this experiment and the datasets can be found in Appendix C.2. We compare BOMLA", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 374, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 505, + 386 + ], + "score": 1.0, + "content": "and BOMVI to the baseline TOE, and running MAML continuously on the sequential datasets for", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 384, + 166, + 398 + ], + "spans": [ + { + "bbox": [ + 106, + 384, + 166, + 398 + ], + "score": 1.0, + "content": "meta-training.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 401, + 505, + 512 + ], + "lines": [ + { + "bbox": [ + 106, + 402, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 505, + 414 + ], + "score": 1.0, + "content": "Figure 2 shows that BOMLA and BOMVI are able to prevent few-shot catastrophic forgetting. TOE", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 413, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 505, + 424 + ], + "score": 1.0, + "content": "is also able to retain the few-shot performance as it has access to all datasets encountered so far.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 423, + 505, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 505, + 437 + ], + "score": 1.0, + "content": "However, since it learns all datasets from random re-initialisation each time it encounters a new", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 434, + 506, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 506, + 447 + ], + "score": 1.0, + "content": "dataset, the meta-training time required to achieve a similarly good meta-evaluation performance is", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 447, + 505, + 458 + ], + "spans": [ + { + "bbox": [ + 106, + 447, + 505, + 458 + ], + "score": 1.0, + "content": "longer compared to other runs. The sequential MAML, on the other hand, catastrophically forgets", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 457, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 506, + 469 + ], + "score": 1.0, + "content": "the previously learned datasets but has the best performance on new datasets compared to other", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "score": 1.0, + "content": "runs. TOE can be memory-intensive as the dataset sequence becomes longer. It takes the brute-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 479, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 505, + 491 + ], + "score": 1.0, + "content": "force approach to prevent forgetting by memorising all datasets. Unlike TOE, our BOML approach", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 489, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 506, + 502 + ], + "score": 1.0, + "content": "only takes the posterior of the meta-parameters into consideration during optimisation. This gives a", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 501, + 481, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 481, + 513 + ], + "score": 1.0, + "content": "framework with an algorithmic complexity independent of the length of the dataset sequence.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 514, + 402, + 541, + 445 + ], + "lines": [ + { + "bbox": [ + 514, + 402, + 542, + 412 + ], + "spans": [ + { + "bbox": [ + 514, + 402, + 542, + 412 + ], + "score": 0.49, + "content": "@ \\ @ \\left( { \\widehat { a } } \\right)", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 512, + 412, + 543, + 424 + ], + "spans": [ + { + "bbox": [ + 512, + 412, + 543, + 424 + ], + "score": 1.0, + "content": "New2:", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 513, + 424, + 539, + 435 + ], + "spans": [ + { + "bbox": [ + 513, + 424, + 539, + 435 + ], + "score": 1.0, + "content": "error-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 513, + 434, + 536, + 446 + ], + "spans": [ + { + "bbox": [ + 513, + 434, + 536, + 446 + ], + "score": 1.0, + "content": "band", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 107, + 517, + 505, + 616 + ], + "lines": [ + { + "bbox": [ + 105, + 517, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 239, + 530 + ], + "score": 1.0, + "content": "Tuning the posterior regulariser", + "type": "text" + }, + { + "bbox": [ + 240, + 518, + 247, + 527 + ], + "score": 0.7, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 517, + 506, + 530 + ], + "score": 1.0, + "content": "mentioned in Section 4.2 corresponds to balancing between a", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "smaller performance trade-off on a new dataset and less forgetting on previous datasets. As shown", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 540, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 249, + 551 + ], + "score": 1.0, + "content": "in Appendix C.2 Figure 4, a larger", + "type": "text" + }, + { + "bbox": [ + 249, + 540, + 290, + 550 + ], + "score": 0.91, + "content": "\\lambda = 1 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 540, + 505, + 551 + ], + "score": 1.0, + "content": "results in a more concentrated Gaussian posterior and", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 549, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 505, + 563 + ], + "score": 1.0, + "content": "is therefore unable to learn new datasets well, but can better retain the performances on previous", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 560, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 208, + 574 + ], + "score": 1.0, + "content": "datasets. A smaller value", + "type": "text" + }, + { + "bbox": [ + 209, + 561, + 234, + 572 + ], + "score": 0.9, + "content": "\\lambda = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 560, + 505, + 574 + ], + "score": 1.0, + "content": "on the other hand gives a widespread Gaussian posterior and learns", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "score": 1.0, + "content": "better on new datasets by sacrificing the performance on the previous datasets. In this experiment,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 147, + 595 + ], + "score": 1.0, + "content": "the value", + "type": "text" + }, + { + "bbox": [ + 147, + 583, + 187, + 594 + ], + "score": 0.9, + "content": "\\lambda = 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "gives the best balance between old and new datasets. Ideally we seek for a", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 593, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 506, + 609 + ], + "score": 1.0, + "content": "good performance on both old and new datasets, but in reality there is a trade-off between retaining", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 605, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 505, + 618 + ], + "score": 1.0, + "content": "performance on old datasets and learning well on new datasets due to posterior approximation errors.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 621, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 622, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 340, + 633 + ], + "score": 1.0, + "content": "As shown in Figures 1 and 2, BOMLA with appropriate", + "type": "text" + }, + { + "bbox": [ + 341, + 622, + 348, + 632 + ], + "score": 0.76, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 622, + 505, + 633 + ], + "score": 1.0, + "content": "is superior to BOMVI. This is due to", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 633, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 506, + 645 + ], + "score": 1.0, + "content": "BOMLA having a better posterior approximation than BOMVI. Whilst BOMLA has a Gaussian", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 644, + 506, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 656 + ], + "score": 1.0, + "content": "approximate posterior with block-diagonal precision, BOMVI uses a Gaussian mean-field approx-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "imate posterior. Trippe & Turner (2017) compared the performances of variational inference with", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "different covariance structures, and discovered that variational inference with block-diagonal covari-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 677, + 504, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 504, + 689 + ], + "score": 1.0, + "content": "ance performs worse than mean-field approximation. This is because the block-diagonal covariance", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "in variational inference prohibits variance reduction methods such as local reparameterisation trick", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "for Monte Carlo estimation. The variance of the Monte Carlo estimate has been proven problematic", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "(Kingma et al., 2015; Trippe & Turner, 2017). We address this issue in Section 4.3 and Appendix B.2", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 721, + 452, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 452, + 734 + ], + "score": 1.0, + "content": "specifically to the meta-learning setting by modifying the inner loop quick adaptation.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 513, + 518, + 558, + 584 + ], + "lines": [ + { + "bbox": [ + 514, + 517, + 542, + 528 + ], + "spans": [ + { + "bbox": [ + 514, + 517, + 542, + 528 + ], + "score": 0.38, + "content": "@ \\ @ \\left( { \\widehat { a } } \\right)", + "type": "inline_equation" + } + ], + "index": 45 + }, + { + "bbox": [ + 511, + 526, + 543, + 541 + ], + "spans": [ + { + "bbox": [ + 511, + 526, + 543, + 541 + ], + "score": 1.0, + "content": "New2:", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 513, + 538, + 527, + 552 + ], + "spans": [ + { + "bbox": [ + 513, + 540, + 521, + 550 + ], + "score": 0.36, + "content": "\\lambda { \\cdot }", + "type": "inline_equation" + }, + { + "bbox": [ + 521, + 538, + 527, + 552 + ], + "score": 1.0, + "content": "-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 511, + 549, + 559, + 563 + ], + "spans": [ + { + "bbox": [ + 511, + 549, + 559, + 563 + ], + "score": 1.0, + "content": "comparing", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 510, + 560, + 543, + 573 + ], + "spans": [ + { + "bbox": [ + 510, + 560, + 543, + 573 + ], + "score": 1.0, + "content": "plot in", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 511, + 571, + 553, + 585 + ], + "spans": [ + { + "bbox": [ + 511, + 571, + 553, + 585 + ], + "score": 1.0, + "content": "App. C.2", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 47.5 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 306, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 514, + 622, + 542, + 643 + ], + "lines": [ + { + "bbox": [ + 514, + 622, + 542, + 632 + ], + "spans": [ + { + "bbox": [ + 514, + 622, + 542, + 632 + ], + "score": 0.36, + "content": "@ \\ @ \\left( { \\widehat { a } } \\right)", + "type": "inline_equation" + } + ] + }, + { + "bbox": [ + 512, + 631, + 536, + 645 + ], + "spans": [ + { + "bbox": [ + 512, + 631, + 536, + 645 + ], + "score": 1.0, + "content": "New", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 82, + 504, + 213 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 82, + 504, + 213 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 82, + 504, + 213 + ], + "spans": [ + { + "bbox": [ + 107, + 82, + 504, + 213 + ], + "score": 0.97, + "type": "image", + "image_path": "f1b81faadf230be434c4056a4a78621223884d73db008b674c0cea1f3e45bc91.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 82, + 504, + 125.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 125.66666666666666, + 504, + 169.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 169.33333333333331, + 504, + 212.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 241, + 505, + 275 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 241, + 504, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 241, + 504, + 253 + ], + "score": 1.0, + "content": "Figure 1: Meta-evaluation accuracy across 3 seed runs on the novel tasks along meta-training. Left:", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 252, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 264 + ], + "score": 1.0, + "content": "compares BOMLA to the baselines, centre: compares BOMVI to the baselines, right: compares", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 263, + 285, + 274 + ], + "spans": [ + { + "bbox": [ + 106, + 263, + 201, + 274 + ], + "score": 1.0, + "content": "BOMLA with different", + "type": "text" + }, + { + "bbox": [ + 201, + 264, + 208, + 273 + ], + "score": 0.76, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 263, + 285, + 274 + ], + "score": 1.0, + "content": "values to BOMVI.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 108, + 295, + 294, + 307 + ], + "lines": [ + { + "bbox": [ + 106, + 295, + 296, + 308 + ], + "spans": [ + { + "bbox": [ + 106, + 295, + 296, + 308 + ], + "score": 1.0, + "content": "6.2 PENTATHLON: SEQUENTIAL DATASETS", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 104, + 316, + 476, + 328 + ], + "lines": [ + { + "bbox": [ + 105, + 315, + 478, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 478, + 331 + ], + "score": 1.0, + "content": "We implement BOMLA and BOMVI to the pentathlon 5-way 1-shot classification sequence:", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 315, + 478, + 331 + ] + }, + { + "type": "text", + "bbox": [ + 160, + 336, + 451, + 348 + ], + "lines": [ + { + "bbox": [ + 159, + 335, + 452, + 351 + ], + "spans": [ + { + "bbox": [ + 159, + 335, + 200, + 351 + ], + "score": 1.0, + "content": "Omniglot", + "type": "text" + }, + { + "bbox": [ + 201, + 338, + 214, + 347 + ], + "score": 0.75, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 335, + 259, + 351 + ], + "score": 1.0, + "content": "CIFAR-FS", + "type": "text" + }, + { + "bbox": [ + 259, + 338, + 272, + 347 + ], + "score": 0.7, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 335, + 331, + 351 + ], + "score": 1.0, + "content": "miniImageNet", + "type": "text" + }, + { + "bbox": [ + 331, + 338, + 345, + 347 + ], + "score": 0.77, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 335, + 403, + 351 + ], + "score": 1.0, + "content": "VGG-Flowers", + "type": "text" + }, + { + "bbox": [ + 404, + 338, + 417, + 347 + ], + "score": 0.8, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 335, + 452, + 351 + ], + "score": 1.0, + "content": "Aircraft", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 159, + 335, + 452, + 351 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 362, + 504, + 396 + ], + "lines": [ + { + "bbox": [ + 106, + 363, + 504, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 504, + 375 + ], + "score": 1.0, + "content": "The details of this experiment and the datasets can be found in Appendix C.2. We compare BOMLA", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 374, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 505, + 386 + ], + "score": 1.0, + "content": "and BOMVI to the baseline TOE, and running MAML continuously on the sequential datasets for", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 384, + 166, + 398 + ], + "spans": [ + { + "bbox": [ + 106, + 384, + 166, + 398 + ], + "score": 1.0, + "content": "meta-training.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 106, + 363, + 505, + 398 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 401, + 505, + 512 + ], + "lines": [ + { + "bbox": [ + 106, + 402, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 505, + 414 + ], + "score": 1.0, + "content": "Figure 2 shows that BOMLA and BOMVI are able to prevent few-shot catastrophic forgetting. TOE", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 413, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 505, + 424 + ], + "score": 1.0, + "content": "is also able to retain the few-shot performance as it has access to all datasets encountered so far.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 423, + 505, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 505, + 437 + ], + "score": 1.0, + "content": "However, since it learns all datasets from random re-initialisation each time it encounters a new", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 434, + 506, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 506, + 447 + ], + "score": 1.0, + "content": "dataset, the meta-training time required to achieve a similarly good meta-evaluation performance is", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 447, + 505, + 458 + ], + "spans": [ + { + "bbox": [ + 106, + 447, + 505, + 458 + ], + "score": 1.0, + "content": "longer compared to other runs. The sequential MAML, on the other hand, catastrophically forgets", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 457, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 506, + 469 + ], + "score": 1.0, + "content": "the previously learned datasets but has the best performance on new datasets compared to other", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "score": 1.0, + "content": "runs. TOE can be memory-intensive as the dataset sequence becomes longer. It takes the brute-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 479, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 505, + 491 + ], + "score": 1.0, + "content": "force approach to prevent forgetting by memorising all datasets. Unlike TOE, our BOML approach", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 489, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 506, + 502 + ], + "score": 1.0, + "content": "only takes the posterior of the meta-parameters into consideration during optimisation. This gives a", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 501, + 481, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 481, + 513 + ], + "score": 1.0, + "content": "framework with an algorithmic complexity independent of the length of the dataset sequence.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 402, + 506, + 513 + ] + }, + { + "type": "text", + "bbox": [ + 514, + 402, + 541, + 445 + ], + "lines": [ + { + "bbox": [ + 514, + 402, + 542, + 412 + ], + "spans": [ + { + "bbox": [ + 514, + 402, + 542, + 412 + ], + "score": 0.49, + "content": "@ \\ @ \\left( { \\widehat { a } } \\right)", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 512, + 412, + 543, + 424 + ], + "spans": [ + { + "bbox": [ + 512, + 412, + 543, + 424 + ], + "score": 1.0, + "content": "New2:", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 513, + 424, + 539, + 435 + ], + "spans": [ + { + "bbox": [ + 513, + 424, + 539, + 435 + ], + "score": 1.0, + "content": "error-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 513, + 434, + 536, + 446 + ], + "spans": [ + { + "bbox": [ + 513, + 434, + 536, + 446 + ], + "score": 1.0, + "content": "band", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5, + "bbox_fs": [ + 512, + 402, + 543, + 446 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 517, + 505, + 616 + ], + "lines": [ + { + "bbox": [ + 105, + 517, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 239, + 530 + ], + "score": 1.0, + "content": "Tuning the posterior regulariser", + "type": "text" + }, + { + "bbox": [ + 240, + 518, + 247, + 527 + ], + "score": 0.7, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 517, + 506, + 530 + ], + "score": 1.0, + "content": "mentioned in Section 4.2 corresponds to balancing between a", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "smaller performance trade-off on a new dataset and less forgetting on previous datasets. As shown", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 540, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 249, + 551 + ], + "score": 1.0, + "content": "in Appendix C.2 Figure 4, a larger", + "type": "text" + }, + { + "bbox": [ + 249, + 540, + 290, + 550 + ], + "score": 0.91, + "content": "\\lambda = 1 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 540, + 505, + 551 + ], + "score": 1.0, + "content": "results in a more concentrated Gaussian posterior and", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 549, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 505, + 563 + ], + "score": 1.0, + "content": "is therefore unable to learn new datasets well, but can better retain the performances on previous", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 560, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 208, + 574 + ], + "score": 1.0, + "content": "datasets. A smaller value", + "type": "text" + }, + { + "bbox": [ + 209, + 561, + 234, + 572 + ], + "score": 0.9, + "content": "\\lambda = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 560, + 505, + 574 + ], + "score": 1.0, + "content": "on the other hand gives a widespread Gaussian posterior and learns", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "score": 1.0, + "content": "better on new datasets by sacrificing the performance on the previous datasets. In this experiment,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 147, + 595 + ], + "score": 1.0, + "content": "the value", + "type": "text" + }, + { + "bbox": [ + 147, + 583, + 187, + 594 + ], + "score": 0.9, + "content": "\\lambda = 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "gives the best balance between old and new datasets. Ideally we seek for a", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 593, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 506, + 609 + ], + "score": 1.0, + "content": "good performance on both old and new datasets, but in reality there is a trade-off between retaining", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 605, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 505, + 618 + ], + "score": 1.0, + "content": "performance on old datasets and learning well on new datasets due to posterior approximation errors.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 517, + 506, + 618 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 621, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 622, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 340, + 633 + ], + "score": 1.0, + "content": "As shown in Figures 1 and 2, BOMLA with appropriate", + "type": "text" + }, + { + "bbox": [ + 341, + 622, + 348, + 632 + ], + "score": 0.76, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 622, + 505, + 633 + ], + "score": 1.0, + "content": "is superior to BOMVI. This is due to", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 633, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 506, + 645 + ], + "score": 1.0, + "content": "BOMLA having a better posterior approximation than BOMVI. Whilst BOMLA has a Gaussian", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 644, + 506, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 656 + ], + "score": 1.0, + "content": "approximate posterior with block-diagonal precision, BOMVI uses a Gaussian mean-field approx-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "imate posterior. Trippe & Turner (2017) compared the performances of variational inference with", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "different covariance structures, and discovered that variational inference with block-diagonal covari-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 677, + 504, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 504, + 689 + ], + "score": 1.0, + "content": "ance performs worse than mean-field approximation. This is because the block-diagonal covariance", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "in variational inference prohibits variance reduction methods such as local reparameterisation trick", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "for Monte Carlo estimation. The variance of the Monte Carlo estimate has been proven problematic", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "(Kingma et al., 2015; Trippe & Turner, 2017). We address this issue in Section 4.3 and Appendix B.2", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 721, + 452, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 452, + 734 + ], + "score": 1.0, + "content": "specifically to the meta-learning setting by modifying the inner loop quick adaptation.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 622, + 506, + 734 + ] + }, + { + "type": "text", + "bbox": [ + 513, + 518, + 558, + 584 + ], + "lines": [ + { + "bbox": [ + 514, + 517, + 542, + 528 + ], + "spans": [ + { + "bbox": [ + 514, + 517, + 542, + 528 + ], + "score": 0.38, + "content": "@ \\ @ \\left( { \\widehat { a } } \\right)", + "type": "inline_equation" + } + ], + "index": 45 + }, + { + "bbox": [ + 511, + 526, + 543, + 541 + ], + "spans": [ + { + "bbox": [ + 511, + 526, + 543, + 541 + ], + "score": 1.0, + "content": "New2:", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 513, + 538, + 527, + 552 + ], + "spans": [ + { + "bbox": [ + 513, + 540, + 521, + 550 + ], + "score": 0.36, + "content": "\\lambda { \\cdot }", + "type": "inline_equation" + }, + { + "bbox": [ + 521, + 538, + 527, + 552 + ], + "score": 1.0, + "content": "-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 511, + 549, + 559, + 563 + ], + "spans": [ + { + "bbox": [ + 511, + 549, + 559, + 563 + ], + "score": 1.0, + "content": "comparing", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 510, + 560, + 543, + 573 + ], + "spans": [ + { + "bbox": [ + 510, + 560, + 543, + 573 + ], + "score": 1.0, + "content": "plot in", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 511, + 571, + 553, + 585 + ], + "spans": [ + { + "bbox": [ + 511, + 571, + 553, + 585 + ], + "score": 1.0, + "content": "App. C.2", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 47.5, + "bbox_fs": [ + 510, + 517, + 559, + 585 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 88, + 501, + 344 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 88, + 501, + 344 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 88, + 501, + 344 + ], + "spans": [ + { + "bbox": [ + 107, + 88, + 501, + 344 + ], + "score": 0.87, + "type": "image", + "image_path": "e2f5052bde38ab7aad480616153346453a41dffe2b36ad7c864932e1cf0d6269.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 88, + 501, + 173.33333333333331 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 173.33333333333331, + 501, + 258.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 258.66666666666663, + 501, + 343.99999999999994 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 373, + 505, + 472 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 374, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 505, + 385 + ], + "score": 1.0, + "content": "Figure 2: Meta-evaluation accuracy across 3 seed runs on each dataset along meta-training (refer", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 385, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 505, + 397 + ], + "score": 1.0, + "content": "to Figure 3 for the enlarged version). Higher accuracy values indicate better results with less", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 395, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 329, + 408 + ], + "score": 1.0, + "content": "forgetting as we proceed to new datasets. BOMLA with", + "type": "text" + }, + { + "bbox": [ + 329, + 396, + 365, + 406 + ], + "score": 0.91, + "content": "\\lambda = 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 395, + 505, + 408 + ], + "score": 1.0, + "content": "gives good performance in the off-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 405, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 505, + 419 + ], + "score": 1.0, + "content": "diagonal plots (retains performances on previously learned datasets), and has a minor performance", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 417, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 506, + 430 + ], + "score": 1.0, + "content": "trade-off in the diagonal plots (learns less well on new datasets). Sequential MAML gives better", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "score": 1.0, + "content": "performance in the diagonal plots (learns well on new datasets) but worse performance in the off-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 439, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 505, + 452 + ], + "score": 1.0, + "content": "diagonal plots (forgets previously learned datasets). BOMVI is also able to retain performance on", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 450, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 506, + 462 + ], + "score": 1.0, + "content": "previous datasets, although it may be unable to perform as good as BOMLA due to sampling and", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 462, + 183, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 183, + 473 + ], + "score": 1.0, + "content": "estimator variance.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 7 + } + ], + "index": 4.0 + }, + { + "type": "title", + "bbox": [ + 108, + 491, + 195, + 504 + ], + "lines": [ + { + "bbox": [ + 104, + 488, + 198, + 507 + ], + "spans": [ + { + "bbox": [ + 104, + 488, + 198, + 507 + ], + "score": 1.0, + "content": "7 CONCLUSION", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 517, + 505, + 639 + ], + "lines": [ + { + "bbox": [ + 105, + 517, + 504, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 504, + 529 + ], + "score": 1.0, + "content": "We introduced the Bayesian online meta-learning (BOML) framework with two algorithms: BOMLA", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 528, + 504, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 504, + 541 + ], + "score": 1.0, + "content": "and BOMVI. Our framework can overcome catastrophic forgetting in few-shot classification prob-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 540, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 505, + 552 + ], + "score": 1.0, + "content": "lems and can handle sequentially arriving few-shot tasks for online meta-learning. BOML merged", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 551, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 505, + 563 + ], + "score": 1.0, + "content": "the BOL framework and the MAML algorithm via Laplace approximation or variational contin-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 561, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 573 + ], + "score": 1.0, + "content": "ual learning. We proposed the necessary adjustments in the Hessian and Fisher approximation for", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 572, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 586 + ], + "score": 1.0, + "content": "BOMLA, as we are optimising the meta-parameters for few-shot classification instead of the usual", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "score": 1.0, + "content": "model parameters in large-scale supervised classification. The experiments show that BOMLA and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "BOMVI are able to retain the few-shot classification ability when trained on sequential datasets with", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 605, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 505, + 618 + ], + "score": 1.0, + "content": "evident distributional shift, resulting in the ability to perform few-shot classification on multiple", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 617, + 504, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 504, + 628 + ], + "score": 1.0, + "content": "datasets with a single meta-learned model. BOMLA and BOMVI are also able to continually learn", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 627, + 465, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 465, + 640 + ], + "score": 1.0, + "content": "to few-shot classify novel tasks as the meta-training tasks arrive sequentially for learning.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 18 + }, + { + "type": "title", + "bbox": [ + 107, + 657, + 175, + 669 + ], + "lines": [ + { + "bbox": [ + 106, + 657, + 176, + 670 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 176, + 670 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 676, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 675, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 675, + 505, + 690 + ], + "score": 1.0, + "content": "A. Antoniou, H. Edwards, and A. Storkey. How to Train Your MAML. In International Conference", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 688, + 261, + 700 + ], + "spans": [ + { + "bbox": [ + 116, + 688, + 261, + 700 + ], + "score": 1.0, + "content": "on Learning Representations, 2019.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 710, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 504, + 722 + ], + "score": 1.0, + "content": "L. Bertinetto, J. F. Henriques, P. Torr, and A. Vedaldi. Meta-Learning with Differentiable Closed-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 721, + 435, + 733 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 435, + 733 + ], + "score": 1.0, + "content": "Form Solvers. In International Conference on Learning Representations, 2019.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5 + } + ], + "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": "image", + "bbox": [ + 107, + 88, + 501, + 344 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 88, + 501, + 344 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 88, + 501, + 344 + ], + "spans": [ + { + "bbox": [ + 107, + 88, + 501, + 344 + ], + "score": 0.87, + "type": "image", + "image_path": "e2f5052bde38ab7aad480616153346453a41dffe2b36ad7c864932e1cf0d6269.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 88, + 501, + 173.33333333333331 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 173.33333333333331, + 501, + 258.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 258.66666666666663, + 501, + 343.99999999999994 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 373, + 505, + 472 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 374, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 505, + 385 + ], + "score": 1.0, + "content": "Figure 2: Meta-evaluation accuracy across 3 seed runs on each dataset along meta-training (refer", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 385, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 505, + 397 + ], + "score": 1.0, + "content": "to Figure 3 for the enlarged version). Higher accuracy values indicate better results with less", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 395, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 329, + 408 + ], + "score": 1.0, + "content": "forgetting as we proceed to new datasets. BOMLA with", + "type": "text" + }, + { + "bbox": [ + 329, + 396, + 365, + 406 + ], + "score": 0.91, + "content": "\\lambda = 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 395, + 505, + 408 + ], + "score": 1.0, + "content": "gives good performance in the off-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 405, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 505, + 419 + ], + "score": 1.0, + "content": "diagonal plots (retains performances on previously learned datasets), and has a minor performance", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 417, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 506, + 430 + ], + "score": 1.0, + "content": "trade-off in the diagonal plots (learns less well on new datasets). Sequential MAML gives better", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "score": 1.0, + "content": "performance in the diagonal plots (learns well on new datasets) but worse performance in the off-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 439, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 505, + 452 + ], + "score": 1.0, + "content": "diagonal plots (forgets previously learned datasets). BOMVI is also able to retain performance on", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 450, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 506, + 462 + ], + "score": 1.0, + "content": "previous datasets, although it may be unable to perform as good as BOMLA due to sampling and", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 462, + 183, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 183, + 473 + ], + "score": 1.0, + "content": "estimator variance.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 7 + } + ], + "index": 4.0 + }, + { + "type": "title", + "bbox": [ + 108, + 491, + 195, + 504 + ], + "lines": [ + { + "bbox": [ + 104, + 488, + 198, + 507 + ], + "spans": [ + { + "bbox": [ + 104, + 488, + 198, + 507 + ], + "score": 1.0, + "content": "7 CONCLUSION", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 517, + 505, + 639 + ], + "lines": [ + { + "bbox": [ + 105, + 517, + 504, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 504, + 529 + ], + "score": 1.0, + "content": "We introduced the Bayesian online meta-learning (BOML) framework with two algorithms: BOMLA", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 528, + 504, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 504, + 541 + ], + "score": 1.0, + "content": "and BOMVI. Our framework can overcome catastrophic forgetting in few-shot classification prob-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 540, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 505, + 552 + ], + "score": 1.0, + "content": "lems and can handle sequentially arriving few-shot tasks for online meta-learning. BOML merged", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 551, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 505, + 563 + ], + "score": 1.0, + "content": "the BOL framework and the MAML algorithm via Laplace approximation or variational contin-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 561, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 573 + ], + "score": 1.0, + "content": "ual learning. We proposed the necessary adjustments in the Hessian and Fisher approximation for", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 572, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 586 + ], + "score": 1.0, + "content": "BOMLA, as we are optimising the meta-parameters for few-shot classification instead of the usual", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "score": 1.0, + "content": "model parameters in large-scale supervised classification. The experiments show that BOMLA and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "BOMVI are able to retain the few-shot classification ability when trained on sequential datasets with", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 605, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 505, + 618 + ], + "score": 1.0, + "content": "evident distributional shift, resulting in the ability to perform few-shot classification on multiple", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 617, + 504, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 504, + 628 + ], + "score": 1.0, + "content": "datasets with a single meta-learned model. BOMLA and BOMVI are also able to continually learn", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 627, + 465, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 465, + 640 + ], + "score": 1.0, + "content": "to few-shot classify novel tasks as the meta-training tasks arrive sequentially for learning.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 517, + 506, + 640 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 657, + 175, + 669 + ], + "lines": [ + { + "bbox": [ + 106, + 657, + 176, + 670 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 176, + 670 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 676, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 675, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 675, + 505, + 690 + ], + "score": 1.0, + "content": "A. Antoniou, H. Edwards, and A. Storkey. How to Train Your MAML. In International Conference", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 688, + 261, + 700 + ], + "spans": [ + { + "bbox": [ + 116, + 688, + 261, + 700 + ], + "score": 1.0, + "content": "on Learning Representations, 2019.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 710, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 504, + 722 + ], + "score": 1.0, + "content": "L. Bertinetto, J. F. Henriques, P. Torr, and A. Vedaldi. Meta-Learning with Differentiable Closed-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 721, + 435, + 733 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 435, + 733 + ], + "score": 1.0, + "content": "Form Solvers. In International Conference on Learning Representations, 2019.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 675, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 68, + 507, + 740 + ], + "lines": [ + { + "bbox": [ + 104, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 104, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "A. Botev, H. Ritter, and D. Barber. Practical Gauss-Newton Optimisation for Deep Learning. In", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 95, + 432, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 95, + 432, + 106 + ], + "score": 1.0, + "content": "Proceedings of the 34th International Conference on Machine Learning, 2017.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 111, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 505, + 126 + ], + "score": 1.0, + "content": "G. Denevi, D. Stamos, C. Ciliberto, and M. Pontil. Online-Within-Online Meta-Learning. In Ad-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 123, + 357, + 137 + ], + "spans": [ + { + "bbox": [ + 115, + 123, + 357, + 137 + ], + "score": 1.0, + "content": "vances in Neural Information Processing Systems 32, 2019.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 140, + 506, + 155 + ], + "spans": [ + { + "bbox": [ + 104, + 140, + 506, + 155 + ], + "score": 1.0, + "content": "J. S. Denker and Y. LeCun. Transforming Neural-Net Output Levels to Probability Distributions. In", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 114, + 153, + 364, + 167 + ], + "spans": [ + { + "bbox": [ + 114, + 153, + 364, + 167 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems 3, 1991.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 168, + 506, + 187 + ], + "spans": [ + { + "bbox": [ + 104, + 168, + 506, + 187 + ], + "score": 1.0, + "content": "C. Finn, P. Abbeel, and S. Levine. Model-Agnostic Meta-Learning for Fast Adaptation of Deep", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 114, + 182, + 489, + 196 + ], + "spans": [ + { + "bbox": [ + 114, + 182, + 489, + 196 + ], + "score": 1.0, + "content": "Networks. In Proceedings of the 34th International Conference on Machine Learning, 2017.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 199, + 506, + 214 + ], + "spans": [ + { + "bbox": [ + 104, + 199, + 506, + 214 + ], + "score": 1.0, + "content": "C. Finn, K. Xu, and S. Levine. Probabilistic Model-Agnostic Meta-Learning. In Advances in Neural", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 212, + 287, + 226 + ], + "spans": [ + { + "bbox": [ + 115, + 212, + 287, + 226 + ], + "score": 1.0, + "content": "Information Processing Systems 31, 2018.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 228, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 104, + 228, + 506, + 244 + ], + "score": 1.0, + "content": "C. Finn, A. Rajeswaran, S. Kakade, and S. Levine. Online Meta-Learning. In Proceedings of the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 114, + 241, + 356, + 255 + ], + "spans": [ + { + "bbox": [ + 114, + 241, + 356, + 255 + ], + "score": 1.0, + "content": "36th International Conference on Machine Learning, 2019.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 259, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 505, + 271 + ], + "score": 1.0, + "content": "I. J. Goodfellow, M. Mirza, D. Xiao, A. Courville, and Y. Bengio. An Empirical Investigation of", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 271, + 506, + 285 + ], + "spans": [ + { + "bbox": [ + 115, + 271, + 506, + 285 + ], + "score": 1.0, + "content": "Catastrophic Forgetting in Gradient-Based Neural Networks. arXiv preprint, arXiv:1312.6211,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 114, + 281, + 144, + 296 + ], + "spans": [ + { + "bbox": [ + 114, + 281, + 144, + 296 + ], + "score": 1.0, + "content": "2013.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 299, + 506, + 314 + ], + "spans": [ + { + "bbox": [ + 104, + 299, + 506, + 314 + ], + "score": 1.0, + "content": "J. Gordon, J. Bronskill, M. Bauer, S. Nowozin, and R. Turner. Meta-Learning Probabilistic Inference", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 113, + 309, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 113, + 309, + 505, + 327 + ], + "score": 1.0, + "content": "for Prediction. In International Conference on Learning Representations, 2019. URL https:", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 322, + 338, + 336 + ], + "spans": [ + { + "bbox": [ + 115, + 322, + 266, + 336 + ], + "score": 1.0, + "content": "//openreview.net/forum?id", + "type": "text" + }, + { + "bbox": [ + 266, + 324, + 273, + 332 + ], + "score": 0.54, + "content": "{ . } = { }", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 322, + 338, + 336 + ], + "score": 1.0, + "content": "HkxStoC5F7.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 103, + 338, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 103, + 338, + 506, + 356 + ], + "score": 1.0, + "content": "E. Grant, C. Finn, S. Levine, T. Darrell, and T. Griffiths. Recasting Gradient-Based Meta-Learning", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 114, + 352, + 468, + 366 + ], + "spans": [ + { + "bbox": [ + 114, + 352, + 468, + 366 + ], + "score": 1.0, + "content": "as Hierarchical Bayes. In International Conference on Learning Representations, 2018.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 103, + 368, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 103, + 368, + 505, + 385 + ], + "score": 1.0, + "content": "R. Grosse and J. Martens. A Kronecker-Factored Approximate Fisher Matrix for Convolution Lay-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 114, + 381, + 462, + 395 + ], + "spans": [ + { + "bbox": [ + 114, + 381, + 462, + 395 + ], + "score": 1.0, + "content": "ers. In Proceedings of the 33rd International Conference on Machine Learning, 2016.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 399, + 506, + 414 + ], + "spans": [ + { + "bbox": [ + 104, + 399, + 506, + 414 + ], + "score": 1.0, + "content": "J. Harrison, A. Sharma, C. Finn, and M. Pavone. Continuous Meta-Learning without Tasks. arXiv", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 114, + 411, + 257, + 424 + ], + "spans": [ + { + "bbox": [ + 114, + 411, + 257, + 424 + ], + "score": 1.0, + "content": "preprint, arXiv:1912.08866, 2019.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 429, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 104, + 429, + 506, + 443 + ], + "score": 1.0, + "content": "X. He, J. Sygnowski, A. Galashov, A. A. Rusu, Y. Teh, and R. Pascanu. Task Agnostic Continual", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 440, + 400, + 454 + ], + "spans": [ + { + "bbox": [ + 115, + 440, + 400, + 454 + ], + "score": 1.0, + "content": "Learning via Meta Learning. arXiv preprint, arXiv:1906.05201, 2019.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 459, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 505, + 473 + ], + "score": 1.0, + "content": "G. Jerfel, E. Grant, T. Griffiths, and K. A. Heller. Reconciling Meta-Learning and Continual Learn-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 114, + 470, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 114, + 470, + 506, + 484 + ], + "score": 1.0, + "content": "ing with Online Mixtures of Tasks. In Advances in Neural Information Processing Systems 32,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 481, + 142, + 494 + ], + "spans": [ + { + "bbox": [ + 115, + 481, + 142, + 494 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 498, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 104, + 498, + 505, + 512 + ], + "score": 1.0, + "content": "D. P. Kingma and J. Ba. Adam: A Method for Stochastic Optimization. In International Conference", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 511, + 261, + 523 + ], + "spans": [ + { + "bbox": [ + 115, + 511, + 261, + 523 + ], + "score": 1.0, + "content": "on Learning Representations, 2015.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 528, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 104, + 528, + 506, + 542 + ], + "score": 1.0, + "content": "D. P. Kingma, T. Salimans, and M. Welling. Variational Dropout and the Local Reparameterization", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 541, + 406, + 553 + ], + "spans": [ + { + "bbox": [ + 116, + 541, + 406, + 553 + ], + "score": 1.0, + "content": "Trick. In Advances in Neural Information Processing Systems 28, 2015.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 558, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 104, + 558, + 505, + 572 + ], + "score": 1.0, + "content": "J. Kirkpatrick, R. Pascanu, N. Rabinowitz, J. Veness, G. Desjardins, A. A. Rusu, K. Milan, J. Quan,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 569, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 115, + 569, + 505, + 583 + ], + "score": 1.0, + "content": "T. Ramalho, A. Grabska-Barwinska, D. Hassabis, C. Clopath, D. Kumaran, and R. Hadsell. Over-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 114, + 579, + 507, + 596 + ], + "spans": [ + { + "bbox": [ + 114, + 579, + 507, + 596 + ], + "score": 1.0, + "content": "coming Catastrophic Forgetting in Neural Networks. Proceedings of the National Academy of", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 114, + 591, + 182, + 605 + ], + "spans": [ + { + "bbox": [ + 114, + 591, + 182, + 605 + ], + "score": 1.0, + "content": "Sciences, 2017.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 609, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 104, + 609, + 505, + 623 + ], + "score": 1.0, + "content": "G. Koch, R. Zemel, and R. Salakhutdinov. Siamese Neural Networks for One-Shot Image Recogni-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 114, + 620, + 494, + 635 + ], + "spans": [ + { + "bbox": [ + 114, + 620, + 494, + 635 + ], + "score": 1.0, + "content": "tion. In 32th International Conference on Machine Learning Deep Learning Workshop, 2015.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 639, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 104, + 639, + 505, + 653 + ], + "score": 1.0, + "content": "B. Lake, R. Salakhutdinov, J. Gross, and J.B. Tenenbaum. One Shot Learning of Simple Visual", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 651, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 116, + 651, + 505, + 663 + ], + "score": 1.0, + "content": "Concepts. In Proceedings of the 33rd Annual Conference of the Cognitive Science Society, 2011.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 668, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 104, + 668, + 505, + 682 + ], + "score": 1.0, + "content": "S. Lee, J. Kim, J. Jun, J. Ha, and B. Zhang. Overcoming Catastrophic Forgetting by Incremental", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 114, + 680, + 460, + 694 + ], + "spans": [ + { + "bbox": [ + 114, + 680, + 460, + 694 + ], + "score": 1.0, + "content": "Moment Matching. In Advances in Neural Information Processing Systems 30, 2017.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "F. Li, R. Fergus, and P. Perona. Learning Generative Visual Models from Few Training Examples:", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 710, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 115, + 710, + 506, + 724 + ], + "score": 1.0, + "content": "An Incremental Bayesian Approach Tested on 101 Object Categories. In Proceedings of the IEEE", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 720, + 493, + 734 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 493, + 734 + ], + "score": 1.0, + "content": "Computer Society Conference on Computer Vision and Pattern Recognition Workshops, 2004.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 22.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": "list", + "bbox": [ + 104, + 68, + 507, + 740 + ], + "lines": [ + { + "bbox": [ + 104, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 104, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "A. Botev, H. Ritter, and D. Barber. Practical Gauss-Newton Optimisation for Deep Learning. In", + "type": "text" + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 95, + 432, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 95, + 432, + 106 + ], + "score": 1.0, + "content": "Proceedings of the 34th International Conference on Machine Learning, 2017.", + "type": "text" + } + ], + "index": 1, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 111, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 505, + 126 + ], + "score": 1.0, + "content": "G. Denevi, D. Stamos, C. Ciliberto, and M. Pontil. Online-Within-Online Meta-Learning. In Ad-", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 123, + 357, + 137 + ], + "spans": [ + { + "bbox": [ + 115, + 123, + 357, + 137 + ], + "score": 1.0, + "content": "vances in Neural Information Processing Systems 32, 2019.", + "type": "text" + } + ], + "index": 3, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 140, + 506, + 155 + ], + "spans": [ + { + "bbox": [ + 104, + 140, + 506, + 155 + ], + "score": 1.0, + "content": "J. S. Denker and Y. LeCun. Transforming Neural-Net Output Levels to Probability Distributions. In", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 153, + 364, + 167 + ], + "spans": [ + { + "bbox": [ + 114, + 153, + 364, + 167 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems 3, 1991.", + "type": "text" + } + ], + "index": 5, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 168, + 506, + 187 + ], + "spans": [ + { + "bbox": [ + 104, + 168, + 506, + 187 + ], + "score": 1.0, + "content": "C. Finn, P. Abbeel, and S. Levine. Model-Agnostic Meta-Learning for Fast Adaptation of Deep", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 182, + 489, + 196 + ], + "spans": [ + { + "bbox": [ + 114, + 182, + 489, + 196 + ], + "score": 1.0, + "content": "Networks. In Proceedings of the 34th International Conference on Machine Learning, 2017.", + "type": "text" + } + ], + "index": 7, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 199, + 506, + 214 + ], + "spans": [ + { + "bbox": [ + 104, + 199, + 506, + 214 + ], + "score": 1.0, + "content": "C. Finn, K. Xu, and S. Levine. Probabilistic Model-Agnostic Meta-Learning. In Advances in Neural", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 212, + 287, + 226 + ], + "spans": [ + { + "bbox": [ + 115, + 212, + 287, + 226 + ], + "score": 1.0, + "content": "Information Processing Systems 31, 2018.", + "type": "text" + } + ], + "index": 9, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 228, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 104, + 228, + 506, + 244 + ], + "score": 1.0, + "content": "C. Finn, A. Rajeswaran, S. Kakade, and S. Levine. Online Meta-Learning. In Proceedings of the", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 241, + 356, + 255 + ], + "spans": [ + { + "bbox": [ + 114, + 241, + 356, + 255 + ], + "score": 1.0, + "content": "36th International Conference on Machine Learning, 2019.", + "type": "text" + } + ], + "index": 11, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 259, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 505, + 271 + ], + "score": 1.0, + "content": "I. J. Goodfellow, M. Mirza, D. Xiao, A. Courville, and Y. Bengio. An Empirical Investigation of", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 271, + 506, + 285 + ], + "spans": [ + { + "bbox": [ + 115, + 271, + 506, + 285 + ], + "score": 1.0, + "content": "Catastrophic Forgetting in Gradient-Based Neural Networks. arXiv preprint, arXiv:1312.6211,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 114, + 281, + 144, + 296 + ], + "spans": [ + { + "bbox": [ + 114, + 281, + 144, + 296 + ], + "score": 1.0, + "content": "2013.", + "type": "text" + } + ], + "index": 14, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 299, + 506, + 314 + ], + "spans": [ + { + "bbox": [ + 104, + 299, + 506, + 314 + ], + "score": 1.0, + "content": "J. Gordon, J. Bronskill, M. Bauer, S. Nowozin, and R. Turner. Meta-Learning Probabilistic Inference", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 309, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 113, + 309, + 505, + 327 + ], + "score": 1.0, + "content": "for Prediction. In International Conference on Learning Representations, 2019. URL https:", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 322, + 338, + 336 + ], + "spans": [ + { + "bbox": [ + 115, + 322, + 266, + 336 + ], + "score": 1.0, + "content": "//openreview.net/forum?id", + "type": "text" + }, + { + "bbox": [ + 266, + 324, + 273, + 332 + ], + "score": 0.54, + "content": "{ . } = { }", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 322, + 338, + 336 + ], + "score": 1.0, + "content": "HkxStoC5F7.", + "type": "text" + } + ], + "index": 17, + "is_list_end_line": true + }, + { + "bbox": [ + 103, + 338, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 103, + 338, + 506, + 356 + ], + "score": 1.0, + "content": "E. Grant, C. Finn, S. Levine, T. Darrell, and T. Griffiths. Recasting Gradient-Based Meta-Learning", + "type": "text" + } + ], + "index": 18, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 352, + 468, + 366 + ], + "spans": [ + { + "bbox": [ + 114, + 352, + 468, + 366 + ], + "score": 1.0, + "content": "as Hierarchical Bayes. In International Conference on Learning Representations, 2018.", + "type": "text" + } + ], + "index": 19, + "is_list_end_line": true + }, + { + "bbox": [ + 103, + 368, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 103, + 368, + 505, + 385 + ], + "score": 1.0, + "content": "R. Grosse and J. Martens. A Kronecker-Factored Approximate Fisher Matrix for Convolution Lay-", + "type": "text" + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 381, + 462, + 395 + ], + "spans": [ + { + "bbox": [ + 114, + 381, + 462, + 395 + ], + "score": 1.0, + "content": "ers. In Proceedings of the 33rd International Conference on Machine Learning, 2016.", + "type": "text" + } + ], + "index": 21, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 399, + 506, + 414 + ], + "spans": [ + { + "bbox": [ + 104, + 399, + 506, + 414 + ], + "score": 1.0, + "content": "J. Harrison, A. Sharma, C. Finn, and M. Pavone. Continuous Meta-Learning without Tasks. arXiv", + "type": "text" + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 411, + 257, + 424 + ], + "spans": [ + { + "bbox": [ + 114, + 411, + 257, + 424 + ], + "score": 1.0, + "content": "preprint, arXiv:1912.08866, 2019.", + "type": "text" + } + ], + "index": 23, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 429, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 104, + 429, + 506, + 443 + ], + "score": 1.0, + "content": "X. He, J. Sygnowski, A. Galashov, A. A. Rusu, Y. Teh, and R. Pascanu. Task Agnostic Continual", + "type": "text" + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 440, + 400, + 454 + ], + "spans": [ + { + "bbox": [ + 115, + 440, + 400, + 454 + ], + "score": 1.0, + "content": "Learning via Meta Learning. arXiv preprint, arXiv:1906.05201, 2019.", + "type": "text" + } + ], + "index": 25, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 459, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 505, + 473 + ], + "score": 1.0, + "content": "G. Jerfel, E. Grant, T. Griffiths, and K. A. Heller. Reconciling Meta-Learning and Continual Learn-", + "type": "text" + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 470, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 114, + 470, + 506, + 484 + ], + "score": 1.0, + "content": "ing with Online Mixtures of Tasks. In Advances in Neural Information Processing Systems 32,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 481, + 142, + 494 + ], + "spans": [ + { + "bbox": [ + 115, + 481, + 142, + 494 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 28, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 498, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 104, + 498, + 505, + 512 + ], + "score": 1.0, + "content": "D. P. Kingma and J. Ba. Adam: A Method for Stochastic Optimization. In International Conference", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 511, + 261, + 523 + ], + "spans": [ + { + "bbox": [ + 115, + 511, + 261, + 523 + ], + "score": 1.0, + "content": "on Learning Representations, 2015.", + "type": "text" + } + ], + "index": 30, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 528, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 104, + 528, + 506, + 542 + ], + "score": 1.0, + "content": "D. P. Kingma, T. Salimans, and M. Welling. Variational Dropout and the Local Reparameterization", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 541, + 406, + 553 + ], + "spans": [ + { + "bbox": [ + 116, + 541, + 406, + 553 + ], + "score": 1.0, + "content": "Trick. In Advances in Neural Information Processing Systems 28, 2015.", + "type": "text" + } + ], + "index": 32, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 558, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 104, + 558, + 505, + 572 + ], + "score": 1.0, + "content": "J. Kirkpatrick, R. Pascanu, N. Rabinowitz, J. Veness, G. Desjardins, A. A. Rusu, K. Milan, J. Quan,", + "type": "text" + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 569, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 115, + 569, + 505, + 583 + ], + "score": 1.0, + "content": "T. Ramalho, A. Grabska-Barwinska, D. Hassabis, C. Clopath, D. Kumaran, and R. Hadsell. Over-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 114, + 579, + 507, + 596 + ], + "spans": [ + { + "bbox": [ + 114, + 579, + 507, + 596 + ], + "score": 1.0, + "content": "coming Catastrophic Forgetting in Neural Networks. Proceedings of the National Academy of", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 114, + 591, + 182, + 605 + ], + "spans": [ + { + "bbox": [ + 114, + 591, + 182, + 605 + ], + "score": 1.0, + "content": "Sciences, 2017.", + "type": "text" + } + ], + "index": 36, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 609, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 104, + 609, + 505, + 623 + ], + "score": 1.0, + "content": "G. Koch, R. Zemel, and R. Salakhutdinov. Siamese Neural Networks for One-Shot Image Recogni-", + "type": "text" + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 620, + 494, + 635 + ], + "spans": [ + { + "bbox": [ + 114, + 620, + 494, + 635 + ], + "score": 1.0, + "content": "tion. In 32th International Conference on Machine Learning Deep Learning Workshop, 2015.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 639, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 104, + 639, + 505, + 653 + ], + "score": 1.0, + "content": "B. Lake, R. Salakhutdinov, J. Gross, and J.B. Tenenbaum. One Shot Learning of Simple Visual", + "type": "text" + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 651, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 116, + 651, + 505, + 663 + ], + "score": 1.0, + "content": "Concepts. In Proceedings of the 33rd Annual Conference of the Cognitive Science Society, 2011.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 668, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 104, + 668, + 505, + 682 + ], + "score": 1.0, + "content": "S. Lee, J. Kim, J. Jun, J. Ha, and B. Zhang. Overcoming Catastrophic Forgetting by Incremental", + "type": "text" + } + ], + "index": 41, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 680, + 460, + 694 + ], + "spans": [ + { + "bbox": [ + 114, + 680, + 460, + 694 + ], + "score": 1.0, + "content": "Moment Matching. In Advances in Neural Information Processing Systems 30, 2017.", + "type": "text" + } + ], + "index": 42, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "F. Li, R. Fergus, and P. Perona. Learning Generative Visual Models from Few Training Examples:", + "type": "text" + } + ], + "index": 43, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 710, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 115, + 710, + 506, + 724 + ], + "score": 1.0, + "content": "An Incremental Bayesian Approach Tested on 101 Object Categories. In Proceedings of the IEEE", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 720, + 493, + 734 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 493, + 734 + ], + "score": 1.0, + "content": "Computer Society Conference on Computer Vision and Pattern Recognition Workshops, 2004.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 83, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 506, + 95 + ], + "score": 1.0, + "content": "F. Li, R. Fergus, and P. Perona. One-Shot Learning of Object Categories. IEEE Transactions on", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 94, + 316, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 94, + 316, + 106 + ], + "score": 1.0, + "content": "Pattern Analysis and Machine Intelligence, 2006.", + "type": "text", + "cross_page": true + } + ], + "index": 1, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 111, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 104, + 111, + 505, + 127 + ], + "score": 1.0, + "content": "Z. Li, F. Zhou, F. Chen, and H. Li. Meta-SGD: Learning to Learn Quickly for Few-Shot Learning.", + "type": "text", + "cross_page": true + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 123, + 282, + 136 + ], + "spans": [ + { + "bbox": [ + 113, + 123, + 282, + 136 + ], + "score": 1.0, + "content": "arXiv preprint, arXiv:1707.09835, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 3, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 140, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 104, + 140, + 505, + 156 + ], + "score": 1.0, + "content": "D. J. C. MacKay. A Practical Bayesian Framework for Backpropagation Networks. Neural Compu-", + "type": "text", + "cross_page": true + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 154, + 170, + 166 + ], + "spans": [ + { + "bbox": [ + 115, + 154, + 170, + 166 + ], + "score": 1.0, + "content": "tation, 1992.", + "type": "text", + "cross_page": true + } + ], + "index": 5, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 171, + 507, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 507, + 185 + ], + "score": 1.0, + "content": "S. Maji, E. Rahtu, J. Kannala, M. Blaschko, and A. Vedaldi. Fine-Grained Visual Classification of", + "type": "text", + "cross_page": true + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 182, + 314, + 196 + ], + "spans": [ + { + "bbox": [ + 115, + 182, + 314, + 196 + ], + "score": 1.0, + "content": "Aircraft. arXiv preprint, arXiv:1306.5151, 2013.", + "type": "text", + "cross_page": true + } + ], + "index": 7, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 200, + 506, + 215 + ], + "spans": [ + { + "bbox": [ + 104, + 200, + 506, + 215 + ], + "score": 1.0, + "content": "J. Martens and R. Grosse. Optimizing Neural Networks with Kronecker-Factored Approximate", + "type": "text", + "cross_page": true + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 212, + 493, + 226 + ], + "spans": [ + { + "bbox": [ + 115, + 212, + 493, + 226 + ], + "score": 1.0, + "content": "Curvature. In Proceedings of the 32nd International Conference on Machine Learning, 2015.", + "type": "text", + "cross_page": true + } + ], + "index": 9, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 232, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 505, + 244 + ], + "score": 1.0, + "content": "E. G. Miller, N. E. Matsakis, and P. A. Viola. Learning from One Example Through Shared Den-", + "type": "text", + "cross_page": true + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 240, + 507, + 257 + ], + "spans": [ + { + "bbox": [ + 113, + 240, + 507, + 257 + ], + "score": 1.0, + "content": "sities on Transforms. In Proceedings of the IEEE Conference on Computer Vision and Pattern", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 114, + 252, + 195, + 266 + ], + "spans": [ + { + "bbox": [ + 114, + 252, + 195, + 266 + ], + "score": 1.0, + "content": "Recognition, 2000.", + "type": "text", + "cross_page": true + } + ], + "index": 12, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 271, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 506, + 286 + ], + "score": 1.0, + "content": "C. V. Nguyen, Y. Li, T. D. Bui, and R. E. Turner. Variational Continual Learning. In International", + "type": "text", + "cross_page": true + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 283, + 310, + 297 + ], + "spans": [ + { + "bbox": [ + 115, + 283, + 310, + 297 + ], + "score": 1.0, + "content": "Conference on Learning Representations, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 14, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 300, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 104, + 300, + 506, + 316 + ], + "score": 1.0, + "content": "A. Nichol, J. Achiam, and J. Schulman. On First-Order Meta-Learning Algorithms. arXiv preprint,", + "type": "text", + "cross_page": true + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 311, + 219, + 325 + ], + "spans": [ + { + "bbox": [ + 113, + 311, + 219, + 325 + ], + "score": 1.0, + "content": "arXiv:1803.02999, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 16, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 330, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 104, + 330, + 505, + 345 + ], + "score": 1.0, + "content": "M. Nilsback and A. Zisserman. Automated Flower Classification over a Large Number of Classes.", + "type": "text", + "cross_page": true + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 342, + 492, + 356 + ], + "spans": [ + { + "bbox": [ + 114, + 342, + 492, + 356 + ], + "score": 1.0, + "content": "In 2008 Sixth Indian Conference on Computer Vision, Graphics and Image Processing, 2008.", + "type": "text", + "cross_page": true + } + ], + "index": 18, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 361, + 463, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 463, + 374 + ], + "score": 1.0, + "content": "M. Opper. A Bayesian Approach to Online Learning. Cambridge University Press, 1998.", + "type": "text", + "cross_page": true + } + ], + "index": 19, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 378, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 104, + 378, + 506, + 394 + ], + "score": 1.0, + "content": "S. Ravi and H. Larochelle. Optimization as a Model for Few-Shot Learning. In International", + "type": "text", + "cross_page": true + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 392, + 309, + 403 + ], + "spans": [ + { + "bbox": [ + 116, + 392, + 309, + 403 + ], + "score": 1.0, + "content": "Conference on Learning Representations, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 21, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 406, + 507, + 425 + ], + "spans": [ + { + "bbox": [ + 104, + 406, + 507, + 425 + ], + "score": 1.0, + "content": "H. Ritter, A. Botev, and D. Barber. Online Structured Laplace Approximations for Overcoming", + "type": "text", + "cross_page": true + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 420, + 484, + 434 + ], + "spans": [ + { + "bbox": [ + 115, + 420, + 484, + 434 + ], + "score": 1.0, + "content": "Catastrophic Forgetting. In Advances in Neural Information Processing Systems 31, 2018a.", + "type": "text", + "cross_page": true + } + ], + "index": 23, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 439, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 505, + 451 + ], + "score": 1.0, + "content": "H. Ritter, A. Botev, and D. Barber. A Scalable Laplace Approximation for Neural Networks. In", + "type": "text", + "cross_page": true + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 450, + 370, + 464 + ], + "spans": [ + { + "bbox": [ + 113, + 450, + 370, + 464 + ], + "score": 1.0, + "content": "International Conference on Learning Representations, 2018b.", + "type": "text", + "cross_page": true + } + ], + "index": 25, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 469, + 506, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 506, + 483 + ], + "score": 1.0, + "content": "H. Robbins and S. Monro. A Stochastic Approximation Method. The Annals of Mathematical", + "type": "text", + "cross_page": true + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 479, + 185, + 493 + ], + "spans": [ + { + "bbox": [ + 114, + 479, + 185, + 493 + ], + "score": 1.0, + "content": "Statistics, 1951.", + "type": "text", + "cross_page": true + } + ], + "index": 27, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 497, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 104, + 497, + 505, + 512 + ], + "score": 1.0, + "content": "A. A. Rusu, D. Rao, J. Sygnowski, O. Vinyals, R. Pascanu, S. Osindero, and R. Hadsell. Meta-", + "type": "text", + "cross_page": true + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 509, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 114, + 509, + 505, + 523 + ], + "score": 1.0, + "content": "Learning with Latent Embedding Optimization. In International Conference on Learning Repre-", + "type": "text", + "cross_page": true + } + ], + "index": 29 + }, + { + "bbox": [ + 113, + 520, + 187, + 533 + ], + "spans": [ + { + "bbox": [ + 113, + 520, + 187, + 533 + ], + "score": 1.0, + "content": "sentations, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 30, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 538, + 505, + 553 + ], + "spans": [ + { + "bbox": [ + 104, + 538, + 505, + 553 + ], + "score": 1.0, + "content": "A. Santoro, S. Bartunov, M. Botvinick, D. Wierstra, and T. Lillicrap. Meta-Learning with Memory-", + "type": "text", + "cross_page": true + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 549, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 115, + 549, + 505, + 563 + ], + "score": 1.0, + "content": "Augmented Neural Networks. In Proceedings of the 33rd International Conference on Machine", + "type": "text", + "cross_page": true + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 562, + 183, + 574 + ], + "spans": [ + { + "bbox": [ + 116, + 562, + 183, + 574 + ], + "score": 1.0, + "content": "Learning, 2016.", + "type": "text", + "cross_page": true + } + ], + "index": 33, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 581, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 106, + 581, + 505, + 592 + ], + "score": 1.0, + "content": "J. Schmidhuber. Evolutionary Principles in Self-Referential Learning. On Learning How to Learn:", + "type": "text", + "cross_page": true + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 592, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 116, + 592, + 505, + 604 + ], + "score": 1.0, + "content": "The Meta-Meta-Meta...-Hook. Diploma thesis, Institut fur Informatik, Technische Universit ¨ at¨", + "type": "text", + "cross_page": true + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 602, + 185, + 614 + ], + "spans": [ + { + "bbox": [ + 116, + 602, + 185, + 614 + ], + "score": 1.0, + "content": "Munchen, 1987. ¨", + "type": "text", + "cross_page": true + } + ], + "index": 36, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 620, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 104, + 620, + 506, + 635 + ], + "score": 1.0, + "content": "J. Snell, K. Swersky, and R. Zemel. Prototypical Networks for Few-Shot Learning. In Advances in", + "type": "text", + "cross_page": true + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 632, + 317, + 644 + ], + "spans": [ + { + "bbox": [ + 115, + 632, + 317, + 644 + ], + "score": 1.0, + "content": "Neural Information Processing Systems 30, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 38, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 651, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 651, + 505, + 663 + ], + "score": 1.0, + "content": "S. Thrun and L. Pratt. Learning to Learn: Introduction and Overview. Springer, Boston, MA, 1998.", + "type": "text", + "cross_page": true + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 104, + 667, + 506, + 682 + ], + "spans": [ + { + "bbox": [ + 104, + 667, + 506, + 682 + ], + "score": 1.0, + "content": "B. L. Trippe and R. E. Turner. Overpruning in Variational Bayesian Neural Networks. In Advances", + "type": "text", + "cross_page": true + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 680, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 114, + 680, + 506, + 694 + ], + "score": 1.0, + "content": "in Neural Information Processing Systems 30 – Advances in Approximate Bayesian Inference", + "type": "text", + "cross_page": true + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 691, + 187, + 705 + ], + "spans": [ + { + "bbox": [ + 116, + 691, + 187, + 705 + ], + "score": 1.0, + "content": "Workshop, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 42, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "O. Vinyals, C. Blundell, T. Lillicrap, K. Kavukcuoglu, and D. Wierstra. Matching Networks for One", + "type": "text", + "cross_page": true + } + ], + "index": 43, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 720, + 442, + 734 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 442, + 734 + ], + "score": 1.0, + "content": "Shot Learning. In Advances in Neural Information Processing Systems 29, 2016.", + "type": "text", + "cross_page": true + } + ], + "index": 44, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "score": 1.0, + "content": "J. Wen, Y. Cao, and R. Huang. Few-Shot Self Reminder to Overcome Catastrophic Forgetting. arXiv", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 95, + 256, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 95, + 256, + 106 + ], + "score": 1.0, + "content": "preprint, arXiv:1812.00543, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 1, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 111, + 504, + 127 + ], + "spans": [ + { + "bbox": [ + 104, + 111, + 504, + 127 + ], + "score": 1.0, + "content": "J. Yoon, T. Kim, O. Dia, S. Kim, Y. Bengio, and S. Ahn. Bayesian Model-Agnostic Meta-Learning.", + "type": "text", + "cross_page": true + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 124, + 379, + 137 + ], + "spans": [ + { + "bbox": [ + 115, + 124, + 379, + 137 + ], + "score": 1.0, + "content": "In Advances in Neural Information Processing Systems 31, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 3, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 141, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 104, + 141, + 505, + 156 + ], + "score": 1.0, + "content": "F. Zenke, B. Poole, and S. Ganguli. Continual Learning through Synaptic Intelligence. In Proceed-", + "type": "text", + "cross_page": true + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 153, + 401, + 167 + ], + "spans": [ + { + "bbox": [ + 115, + 153, + 401, + 167 + ], + "score": 1.0, + "content": "ings of the 34th International Conference on Machine Learning, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 5, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 171, + 505, + 186 + ], + "spans": [ + { + "bbox": [ + 104, + 171, + 505, + 186 + ], + "score": 1.0, + "content": "Z. Zhuang, Y. Wang, K. Yu, and S. Lu. No-Regret Non-Convex Online Meta-Learning. arXiv", + "type": "text", + "cross_page": true + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 184, + 257, + 196 + ], + "spans": [ + { + "bbox": [ + 115, + 184, + 257, + 196 + ], + "score": 1.0, + "content": "preprint, arXiv:1910.10196, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 7, + "is_list_end_line": true + } + ], + "index": 22.5, + "bbox_fs": [ + 103, + 81, + 507, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 52, + 507, + 736 + ], + "lines": [ + { + "bbox": [ + 105, + 83, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 506, + 95 + ], + "score": 1.0, + "content": "F. Li, R. Fergus, and P. Perona. One-Shot Learning of Object Categories. IEEE Transactions on", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 94, + 316, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 94, + 316, + 106 + ], + "score": 1.0, + "content": "Pattern Analysis and Machine Intelligence, 2006.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 104, + 111, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 104, + 111, + 505, + 127 + ], + "score": 1.0, + "content": "Z. Li, F. Zhou, F. Chen, and H. Li. Meta-SGD: Learning to Learn Quickly for Few-Shot Learning.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 113, + 123, + 282, + 136 + ], + "spans": [ + { + "bbox": [ + 113, + 123, + 282, + 136 + ], + "score": 1.0, + "content": "arXiv preprint, arXiv:1707.09835, 2017.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 140, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 104, + 140, + 505, + 156 + ], + "score": 1.0, + "content": "D. J. C. MacKay. A Practical Bayesian Framework for Backpropagation Networks. Neural Compu-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 154, + 170, + 166 + ], + "spans": [ + { + "bbox": [ + 115, + 154, + 170, + 166 + ], + "score": 1.0, + "content": "tation, 1992.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 171, + 507, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 507, + 185 + ], + "score": 1.0, + "content": "S. Maji, E. Rahtu, J. Kannala, M. Blaschko, and A. Vedaldi. Fine-Grained Visual Classification of", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 182, + 314, + 196 + ], + "spans": [ + { + "bbox": [ + 115, + 182, + 314, + 196 + ], + "score": 1.0, + "content": "Aircraft. arXiv preprint, arXiv:1306.5151, 2013.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 200, + 506, + 215 + ], + "spans": [ + { + "bbox": [ + 104, + 200, + 506, + 215 + ], + "score": 1.0, + "content": "J. Martens and R. Grosse. Optimizing Neural Networks with Kronecker-Factored Approximate", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 212, + 493, + 226 + ], + "spans": [ + { + "bbox": [ + 115, + 212, + 493, + 226 + ], + "score": 1.0, + "content": "Curvature. In Proceedings of the 32nd International Conference on Machine Learning, 2015.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 232, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 505, + 244 + ], + "score": 1.0, + "content": "E. G. Miller, N. E. Matsakis, and P. A. Viola. Learning from One Example Through Shared Den-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 113, + 240, + 507, + 257 + ], + "spans": [ + { + "bbox": [ + 113, + 240, + 507, + 257 + ], + "score": 1.0, + "content": "sities on Transforms. In Proceedings of the IEEE Conference on Computer Vision and Pattern", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 114, + 252, + 195, + 266 + ], + "spans": [ + { + "bbox": [ + 114, + 252, + 195, + 266 + ], + "score": 1.0, + "content": "Recognition, 2000.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 271, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 506, + 286 + ], + "score": 1.0, + "content": "C. V. Nguyen, Y. Li, T. D. Bui, and R. E. Turner. Variational Continual Learning. In International", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 283, + 310, + 297 + ], + "spans": [ + { + "bbox": [ + 115, + 283, + 310, + 297 + ], + "score": 1.0, + "content": "Conference on Learning Representations, 2018.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 300, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 104, + 300, + 506, + 316 + ], + "score": 1.0, + "content": "A. Nichol, J. Achiam, and J. Schulman. On First-Order Meta-Learning Algorithms. arXiv preprint,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 113, + 311, + 219, + 325 + ], + "spans": [ + { + "bbox": [ + 113, + 311, + 219, + 325 + ], + "score": 1.0, + "content": "arXiv:1803.02999, 2018.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 330, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 104, + 330, + 505, + 345 + ], + "score": 1.0, + "content": "M. Nilsback and A. Zisserman. Automated Flower Classification over a Large Number of Classes.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 114, + 342, + 492, + 356 + ], + "spans": [ + { + "bbox": [ + 114, + 342, + 492, + 356 + ], + "score": 1.0, + "content": "In 2008 Sixth Indian Conference on Computer Vision, Graphics and Image Processing, 2008.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 361, + 463, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 463, + 374 + ], + "score": 1.0, + "content": "M. Opper. A Bayesian Approach to Online Learning. Cambridge University Press, 1998.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 378, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 104, + 378, + 506, + 394 + ], + "score": 1.0, + "content": "S. Ravi and H. Larochelle. Optimization as a Model for Few-Shot Learning. In International", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 392, + 309, + 403 + ], + "spans": [ + { + "bbox": [ + 116, + 392, + 309, + 403 + ], + "score": 1.0, + "content": "Conference on Learning Representations, 2017.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 406, + 507, + 425 + ], + "spans": [ + { + "bbox": [ + 104, + 406, + 507, + 425 + ], + "score": 1.0, + "content": "H. Ritter, A. Botev, and D. Barber. Online Structured Laplace Approximations for Overcoming", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 420, + 484, + 434 + ], + "spans": [ + { + "bbox": [ + 115, + 420, + 484, + 434 + ], + "score": 1.0, + "content": "Catastrophic Forgetting. In Advances in Neural Information Processing Systems 31, 2018a.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 439, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 505, + 451 + ], + "score": 1.0, + "content": "H. Ritter, A. Botev, and D. Barber. A Scalable Laplace Approximation for Neural Networks. In", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 113, + 450, + 370, + 464 + ], + "spans": [ + { + "bbox": [ + 113, + 450, + 370, + 464 + ], + "score": 1.0, + "content": "International Conference on Learning Representations, 2018b.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 469, + 506, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 506, + 483 + ], + "score": 1.0, + "content": "H. Robbins and S. Monro. A Stochastic Approximation Method. The Annals of Mathematical", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 114, + 479, + 185, + 493 + ], + "spans": [ + { + "bbox": [ + 114, + 479, + 185, + 493 + ], + "score": 1.0, + "content": "Statistics, 1951.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 497, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 104, + 497, + 505, + 512 + ], + "score": 1.0, + "content": "A. A. Rusu, D. Rao, J. Sygnowski, O. Vinyals, R. Pascanu, S. Osindero, and R. Hadsell. Meta-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 114, + 509, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 114, + 509, + 505, + 523 + ], + "score": 1.0, + "content": "Learning with Latent Embedding Optimization. In International Conference on Learning Repre-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 113, + 520, + 187, + 533 + ], + "spans": [ + { + "bbox": [ + 113, + 520, + 187, + 533 + ], + "score": 1.0, + "content": "sentations, 2019.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 538, + 505, + 553 + ], + "spans": [ + { + "bbox": [ + 104, + 538, + 505, + 553 + ], + "score": 1.0, + "content": "A. Santoro, S. Bartunov, M. Botvinick, D. Wierstra, and T. Lillicrap. Meta-Learning with Memory-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 549, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 115, + 549, + 505, + 563 + ], + "score": 1.0, + "content": "Augmented Neural Networks. In Proceedings of the 33rd International Conference on Machine", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 562, + 183, + 574 + ], + "spans": [ + { + "bbox": [ + 116, + 562, + 183, + 574 + ], + "score": 1.0, + "content": "Learning, 2016.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 581, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 106, + 581, + 505, + 592 + ], + "score": 1.0, + "content": "J. Schmidhuber. Evolutionary Principles in Self-Referential Learning. On Learning How to Learn:", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 592, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 116, + 592, + 505, + 604 + ], + "score": 1.0, + "content": "The Meta-Meta-Meta...-Hook. Diploma thesis, Institut fur Informatik, Technische Universit ¨ at¨", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 602, + 185, + 614 + ], + "spans": [ + { + "bbox": [ + 116, + 602, + 185, + 614 + ], + "score": 1.0, + "content": "Munchen, 1987. ¨", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 620, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 104, + 620, + 506, + 635 + ], + "score": 1.0, + "content": "J. Snell, K. Swersky, and R. Zemel. Prototypical Networks for Few-Shot Learning. In Advances in", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 632, + 317, + 644 + ], + "spans": [ + { + "bbox": [ + 115, + 632, + 317, + 644 + ], + "score": 1.0, + "content": "Neural Information Processing Systems 30, 2017.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 651, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 651, + 505, + 663 + ], + "score": 1.0, + "content": "S. Thrun and L. Pratt. Learning to Learn: Introduction and Overview. Springer, Boston, MA, 1998.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 667, + 506, + 682 + ], + "spans": [ + { + "bbox": [ + 104, + 667, + 506, + 682 + ], + "score": 1.0, + "content": "B. L. Trippe and R. E. Turner. Overpruning in Variational Bayesian Neural Networks. In Advances", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 114, + 680, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 114, + 680, + 506, + 694 + ], + "score": 1.0, + "content": "in Neural Information Processing Systems 30 – Advances in Approximate Bayesian Inference", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 691, + 187, + 705 + ], + "spans": [ + { + "bbox": [ + 116, + 691, + 187, + 705 + ], + "score": 1.0, + "content": "Workshop, 2017.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "O. Vinyals, C. Blundell, T. Lillicrap, K. Kavukcuoglu, and D. Wierstra. Matching Networks for One", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 720, + 442, + 734 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 442, + 734 + ], + "score": 1.0, + "content": "Shot Learning. In Advances in Neural Information Processing Systems 29, 2016.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 22 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 27, + 307, + 38 + ], + "lines": [ + { + "bbox": [ + 107, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 761 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "11", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 104, + 52, + 507, + 736 + ], + "lines": [], + "index": 22, + "bbox_fs": [ + 104, + 83, + 507, + 734 + ], + "lines_deleted": true + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 81, + 506, + 195 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "score": 1.0, + "content": "J. Wen, Y. Cao, and R. Huang. Few-Shot Self Reminder to Overcome Catastrophic Forgetting. arXiv", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 95, + 256, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 95, + 256, + 106 + ], + "score": 1.0, + "content": "preprint, arXiv:1812.00543, 2018.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 104, + 111, + 504, + 127 + ], + "spans": [ + { + "bbox": [ + 104, + 111, + 504, + 127 + ], + "score": 1.0, + "content": "J. Yoon, T. Kim, O. Dia, S. Kim, Y. Bengio, and S. Ahn. Bayesian Model-Agnostic Meta-Learning.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 124, + 379, + 137 + ], + "spans": [ + { + "bbox": [ + 115, + 124, + 379, + 137 + ], + "score": 1.0, + "content": "In Advances in Neural Information Processing Systems 31, 2018.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 141, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 104, + 141, + 505, + 156 + ], + "score": 1.0, + "content": "F. Zenke, B. Poole, and S. Ganguli. Continual Learning through Synaptic Intelligence. In Proceed-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 153, + 401, + 167 + ], + "spans": [ + { + "bbox": [ + 115, + 153, + 401, + 167 + ], + "score": 1.0, + "content": "ings of the 34th International Conference on Machine Learning, 2017.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 171, + 505, + 186 + ], + "spans": [ + { + "bbox": [ + 104, + 171, + 505, + 186 + ], + "score": 1.0, + "content": "Z. Zhuang, Y. Wang, K. Yu, and S. Lu. No-Regret Non-Convex Online Meta-Learning. arXiv", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 184, + 257, + 196 + ], + "spans": [ + { + "bbox": [ + 115, + 184, + 257, + 196 + ], + "score": 1.0, + "content": "preprint, arXiv:1910.10196, 2019.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 3.5 + } + ], + "page_idx": 11, + "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": "12", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 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": "list", + "bbox": [ + 104, + 81, + 506, + 195 + ], + "lines": [], + "index": 3.5, + "bbox_fs": [ + 104, + 82, + 505, + 196 + ], + "lines_deleted": true + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 203, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 205, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 205, + 96 + ], + "score": 1.0, + "content": "A BACKGROUND", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 105, + 504, + 139 + ], + "lines": [ + { + "bbox": [ + 105, + 104, + 504, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 504, + 119 + ], + "score": 1.0, + "content": "This section provides a background explanation of using BOL to find the posterior of a model pa-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 116, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 505, + 129 + ], + "score": 1.0, + "content": "rameters and overcome catastrophic forgetting, commonly for large-scale supervised classification.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 127, + 348, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 348, + 141 + ], + "score": 1.0, + "content": "We will then apply this approach to our recursion in Eq. (5).", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 144, + 505, + 211 + ], + "lines": [ + { + "bbox": [ + 106, + 145, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 145, + 505, + 156 + ], + "score": 1.0, + "content": "The posterior is typically intractable due to the enormous size of the modern neural network ar-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 154, + 505, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 168 + ], + "score": 1.0, + "content": "chitectures. This leads to the requirement for a good approximation of the posterior of the meta-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 166, + 505, + 180 + ], + "spans": [ + { + "bbox": [ + 105, + 166, + 505, + 180 + ], + "score": 1.0, + "content": "parameters. A particularly suitable candidate for this purpose in meta-learning is the Laplace ap-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 176, + 506, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 506, + 190 + ], + "score": 1.0, + "content": "proximation (MacKay, 1992; Ritter et al., 2018b), as it simply adds a quadratic regulariser to the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 188, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 188, + 505, + 201 + ], + "score": 1.0, + "content": "training objective. Variational inference is another possible method to obtain an approximation for", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 199, + 257, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 257, + 212 + ], + "score": 1.0, + "content": "the posterior of the meta-parameters.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6.5 + }, + { + "type": "title", + "bbox": [ + 108, + 223, + 261, + 234 + ], + "lines": [ + { + "bbox": [ + 106, + 223, + 262, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 262, + 235 + ], + "score": 1.0, + "content": "A.1 BAYESIAN ONLINE LEARNING", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 243, + 505, + 276 + ], + "lines": [ + { + "bbox": [ + 105, + 241, + 504, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 218, + 258 + ], + "score": 1.0, + "content": "Upon the arrival of the new", + "type": "text" + }, + { + "bbox": [ + 218, + 244, + 240, + 256 + ], + "score": 0.92, + "content": "\\mathcal { D } _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 241, + 391, + 258 + ], + "score": 1.0, + "content": ", we are interested in a MAP estimate", + "type": "text" + }, + { + "bbox": [ + 392, + 244, + 504, + 256 + ], + "score": 0.91, + "content": "\\theta ^ { * } = \\arg \\operatorname* { m a x } _ { \\theta } p ( \\theta | \\mathcal { D } _ { 1 : t + 1 } )", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 254, + 506, + 268 + ], + "spans": [ + { + "bbox": [ + 104, + 254, + 184, + 268 + ], + "score": 1.0, + "content": "for the parameters", + "type": "text" + }, + { + "bbox": [ + 184, + 255, + 191, + 265 + ], + "score": 0.81, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 254, + 506, + 268 + ], + "score": 1.0, + "content": "of a neural network. Using Bayes’ rule on the posterior gives the recursive", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 266, + 141, + 277 + ], + "spans": [ + { + "bbox": [ + 104, + 266, + 141, + 277 + ], + "score": 1.0, + "content": "formula", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "interline_equation", + "bbox": [ + 233, + 276, + 377, + 289 + ], + "lines": [ + { + "bbox": [ + 233, + 276, + 377, + 289 + ], + "spans": [ + { + "bbox": [ + 233, + 276, + 377, + 289 + ], + "score": 0.92, + "content": "p ( \\theta | \\mathcal { D } _ { 1 : t + 1 } ) \\propto p ( \\mathcal { D } _ { t + 1 } | \\theta ) p ( \\theta | \\mathcal { D } _ { 1 : t } )", + "type": "interline_equation", + "image_path": "50c4eeba784d039aea493d055edcf74d0628b62536ebcf5612919a59d04374f0.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 233, + 276, + 377, + 289 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 290, + 505, + 344 + ], + "lines": [ + { + "bbox": [ + 106, + 289, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 444, + 302 + ], + "score": 1.0, + "content": "where Eq. (16) follows from the assumption that each dataset is independent given", + "type": "text" + }, + { + "bbox": [ + 445, + 290, + 451, + 299 + ], + "score": 0.7, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 289, + 505, + 302 + ], + "score": 1.0, + "content": ". As the nor-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 300, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 178, + 312 + ], + "score": 1.0, + "content": "malised posterior", + "type": "text" + }, + { + "bbox": [ + 178, + 300, + 217, + 312 + ], + "score": 0.92, + "content": "p ( \\theta | \\mathcal { D } _ { 1 : t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 300, + 505, + 312 + ], + "score": 1.0, + "content": "is usually intractable, it may be approximated by a parametric distribu-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 309, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 124, + 325 + ], + "score": 1.0, + "content": "tion", + "type": "text" + }, + { + "bbox": [ + 125, + 313, + 131, + 323 + ], + "score": 0.77, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 309, + 196, + 325 + ], + "score": 1.0, + "content": "with parameter", + "type": "text" + }, + { + "bbox": [ + 196, + 312, + 207, + 323 + ], + "score": 0.87, + "content": "\\phi _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 309, + 505, + 325 + ], + "score": 1.0, + "content": ". The BOL framework consists of the update step and the projection step", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 322, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 106, + 322, + 362, + 335 + ], + "score": 1.0, + "content": "(Opper, 1998). The update step uses the approximate posterior", + "type": "text" + }, + { + "bbox": [ + 362, + 322, + 393, + 334 + ], + "score": 0.93, + "content": "q ( \\theta | \\phi _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 322, + 505, + 335 + ], + "score": 1.0, + "content": "obtained from the previous", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 333, + 275, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 275, + 345 + ], + "score": 1.0, + "content": "step for an update in the form of Eq. (16):", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17 + }, + { + "type": "interline_equation", + "bbox": [ + 229, + 346, + 381, + 360 + ], + "lines": [ + { + "bbox": [ + 229, + 346, + 381, + 360 + ], + "spans": [ + { + "bbox": [ + 229, + 346, + 381, + 360 + ], + "score": 0.92, + "content": "p ( \\theta | \\mathcal { D } _ { 1 : t + 1 } , \\phi _ { t } ) \\propto p ( \\mathcal { D } _ { t + 1 } | \\theta ) q ( \\theta | \\phi _ { t } ) .", + "type": "interline_equation", + "image_path": "053143aefc5a8d71314f3d247199e8e8c233a1d5a7f82df99d9438bd84bcefc4.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 229, + 346, + 381, + 360 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 361, + 505, + 416 + ], + "lines": [ + { + "bbox": [ + 105, + 360, + 506, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 183, + 375 + ], + "score": 1.0, + "content": "The new posterior", + "type": "text" + }, + { + "bbox": [ + 184, + 361, + 246, + 373 + ], + "score": 0.92, + "content": "p ( \\theta | \\mathcal { D } _ { 1 : t + 1 } , \\phi _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 360, + 457, + 375 + ], + "score": 1.0, + "content": "might not belong to the same parametric family as", + "type": "text" + }, + { + "bbox": [ + 457, + 361, + 487, + 372 + ], + "score": 0.92, + "content": "q ( \\theta | \\phi _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 360, + 506, + 375 + ], + "score": 1.0, + "content": ". In", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 371, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 460, + 385 + ], + "score": 1.0, + "content": "this case, the new posterior has to be projected into the same parametric family to obtain", + "type": "text" + }, + { + "bbox": [ + 461, + 372, + 501, + 384 + ], + "score": 0.92, + "content": "q ( \\theta | \\phi _ { t + 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 371, + 505, + 385 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 383, + 506, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 506, + 396 + ], + "score": 1.0, + "content": "Opper (1998) performs this projection by minimising the KL-divergence between the new posterior", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 393, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 184, + 407 + ], + "score": 1.0, + "content": "and the parametric", + "type": "text" + }, + { + "bbox": [ + 185, + 396, + 191, + 406 + ], + "score": 0.79, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 393, + 505, + 407 + ], + "score": 1.0, + "content": ", while Ritter et al. (2018a) use the Laplace approximation and Nguyen et al.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 404, + 238, + 417 + ], + "spans": [ + { + "bbox": [ + 106, + 404, + 238, + 417 + ], + "score": 1.0, + "content": "(2018) use variational inference.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23 + }, + { + "type": "title", + "bbox": [ + 108, + 429, + 248, + 441 + ], + "lines": [ + { + "bbox": [ + 106, + 429, + 248, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 248, + 441 + ], + "score": 1.0, + "content": "A.2 LAPLACE APPROXIMATION", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 449, + 360, + 461 + ], + "lines": [ + { + "bbox": [ + 105, + 447, + 356, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 356, + 464 + ], + "score": 1.0, + "content": "We consider finding a MAP estimate following from Eq. (16):", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "interline_equation", + "bbox": [ + 156, + 462, + 455, + 482 + ], + "lines": [ + { + "bbox": [ + 156, + 462, + 455, + 482 + ], + "spans": [ + { + "bbox": [ + 156, + 462, + 455, + 482 + ], + "score": 0.91, + "content": "\\theta _ { t + 1 } ^ { * } = \\arg \\operatorname* { m a x } _ { \\theta } p ( \\theta | \\mathcal { D } _ { 1 : t + 1 } ) = \\arg \\operatorname* { m a x } _ { \\theta } \\{ \\log p ( \\mathcal { D } _ { t + 1 } | \\theta ) + \\log p ( \\theta | \\mathcal { D } _ { 1 : t } ) \\} .", + "type": "interline_equation", + "image_path": "9d85b6ebff62fbeeb39d1d697c4878400e7b766c9cde0013e04e871b1e5d123f.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 156, + 462, + 455, + 482 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 484, + 503, + 518 + ], + "lines": [ + { + "bbox": [ + 105, + 483, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 182, + 498 + ], + "score": 1.0, + "content": "Since the posterior", + "type": "text" + }, + { + "bbox": [ + 183, + 485, + 221, + 496 + ], + "score": 0.91, + "content": "p ( \\theta | \\mathcal { D } _ { 1 : t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 483, + 505, + 498 + ], + "score": 1.0, + "content": "of a neural network is intractable except for small architectures, the un-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 496, + 504, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 191, + 508 + ], + "score": 1.0, + "content": "normalised posterior", + "type": "text" + }, + { + "bbox": [ + 191, + 496, + 230, + 507 + ], + "score": 0.91, + "content": "\\tilde { p } ( \\theta | \\mathcal { D } _ { 1 : t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 496, + 504, + 508 + ], + "score": 1.0, + "content": "is considered instead. Performing Taylor expansion on the logarithm", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 506, + 324, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 288, + 519 + ], + "score": 1.0, + "content": "of the unnormalised posterior around a mode", + "type": "text" + }, + { + "bbox": [ + 288, + 507, + 299, + 518 + ], + "score": 0.88, + "content": "{ \\boldsymbol { \\theta } } _ { t } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 506, + 324, + 519 + ], + "score": 1.0, + "content": "gives", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30 + }, + { + "type": "interline_equation", + "bbox": [ + 180, + 519, + 431, + 543 + ], + "lines": [ + { + "bbox": [ + 180, + 519, + 431, + 543 + ], + "spans": [ + { + "bbox": [ + 180, + 519, + 431, + 543 + ], + "score": 0.92, + "content": "\\log \\tilde { p } ( \\theta | \\mathcal { D } _ { 1 : t } ) \\simeq \\log \\tilde { p } ( \\theta | \\mathcal { D } _ { 1 : t } ) \\big | _ { \\theta = \\theta _ { t } ^ { * } } - \\frac { 1 } { 2 } ( \\theta - \\theta _ { t } ^ { * } ) ^ { T } A _ { t } ( \\theta - \\theta _ { t } ^ { * } ) ,", + "type": "interline_equation", + "image_path": "6e164b79457e9d746c6db551d3aec927946fffa4599c2c369f8bc272ac1af928.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 180, + 519, + 431, + 543 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 543, + 505, + 587 + ], + "lines": [ + { + "bbox": [ + 105, + 543, + 504, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 134, + 556 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 544, + 146, + 555 + ], + "score": 0.88, + "content": "A _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 543, + 427, + 556 + ], + "score": 1.0, + "content": "denotes the Hessian matrix of the negative log-posterior evaluated at", + "type": "text" + }, + { + "bbox": [ + 428, + 544, + 438, + 555 + ], + "score": 0.87, + "content": "\\theta _ { t } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 543, + 504, + 556 + ], + "score": 1.0, + "content": ". The expansion", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 554, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 436, + 568 + ], + "score": 1.0, + "content": "in Eq. (19) suggests using a Gaussian approximate posterior. Given the parameter", + "type": "text" + }, + { + "bbox": [ + 436, + 555, + 494, + 567 + ], + "score": 0.92, + "content": "\\phi _ { t } = \\{ \\mu _ { t } , \\Lambda _ { t } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 554, + 505, + 568 + ], + "score": 1.0, + "content": ", a", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 566, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 131, + 579 + ], + "score": 1.0, + "content": "mean", + "type": "text" + }, + { + "bbox": [ + 131, + 569, + 151, + 578 + ], + "score": 0.81, + "content": "\\mu _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 566, + 185, + 579 + ], + "score": 1.0, + "content": "for step", + "type": "text" + }, + { + "bbox": [ + 185, + 567, + 207, + 576 + ], + "score": 0.85, + "content": "t + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 566, + 505, + 579 + ], + "score": 1.0, + "content": "can be obtained by finding a mode of the approximate posterior as follows", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 576, + 273, + 589 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 273, + 589 + ], + "score": 1.0, + "content": "via standard gradient-based optimisation:", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34.5 + }, + { + "type": "interline_equation", + "bbox": [ + 187, + 589, + 424, + 614 + ], + "lines": [ + { + "bbox": [ + 187, + 589, + 424, + 614 + ], + "spans": [ + { + "bbox": [ + 187, + 589, + 424, + 614 + ], + "score": 0.92, + "content": "\\mu _ { t + 1 } = \\arg \\operatorname* { m a x } _ { \\boldsymbol { \\theta } } \\log p ( \\mathcal { D } _ { t + 1 } | \\boldsymbol { \\theta } ) - \\frac { 1 } { 2 } ( \\boldsymbol { \\theta } - \\boldsymbol { \\mu } _ { t } ) ^ { T } \\Lambda _ { t } ( \\boldsymbol { \\theta } - \\boldsymbol { \\mu } _ { t } ) .", + "type": "interline_equation", + "image_path": "e30a9fc2b0abe8259f6075a61a749cf139f06448d9e71a45118af62aa94d8b78.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 187, + 589, + 424, + 614 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 615, + 502, + 639 + ], + "lines": [ + { + "bbox": [ + 106, + 615, + 504, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 250, + 628 + ], + "score": 1.0, + "content": "The precision matrix is updated as", + "type": "text" + }, + { + "bbox": [ + 250, + 616, + 333, + 628 + ], + "score": 0.91, + "content": "\\Lambda _ { t + 1 } = H _ { t + 1 } + \\Lambda _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 615, + 365, + 628 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 365, + 616, + 388, + 628 + ], + "score": 0.91, + "content": "H _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 615, + 504, + 628 + ], + "score": 1.0, + "content": "is the Hessian matrix of the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 626, + 361, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 215, + 640 + ], + "score": 1.0, + "content": "negative log-likelihood for", + "type": "text" + }, + { + "bbox": [ + 216, + 628, + 237, + 639 + ], + "score": 0.91, + "content": "\\mathcal { D } _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 626, + 289, + 640 + ], + "score": 1.0, + "content": "evaluated at", + "type": "text" + }, + { + "bbox": [ + 289, + 629, + 309, + 639 + ], + "score": 0.89, + "content": "\\mu _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 626, + 361, + 640 + ], + "score": 1.0, + "content": "with entries", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + }, + { + "type": "interline_equation", + "bbox": [ + 215, + 640, + 396, + 670 + ], + "lines": [ + { + "bbox": [ + 215, + 640, + 396, + 670 + ], + "spans": [ + { + "bbox": [ + 215, + 640, + 396, + 670 + ], + "score": 0.93, + "content": "H _ { t + 1 } ^ { i j } = - \\frac { \\partial ^ { 2 } } { \\partial \\theta ^ { ( i ) } \\partial \\theta ^ { ( j ) } } \\log p ( \\mathcal { D } _ { t + 1 } \\vert \\theta ) \\bigg \\vert _ { \\theta = \\mu _ { t + 1 } } .", + "type": "interline_equation", + "image_path": "3d76cacc8904531fc2e50381c54e1d3f2b06f30c94bcb0c2d8e5d129428e2753.jpg" + } + ] + } + ], + "index": 40.5, + "virtual_lines": [ + { + "bbox": [ + 215, + 640, + 396, + 655.0 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 215, + 655.0, + 396, + 670.0 + ], + "spans": [], + "index": 41 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "For a neural network model, gradient-based optimisation methods such as SGD (Robbins & Monro,", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "1951) and Adam (Kingma & Ba, 2015) are the standard gradient-based methods in finding a mode", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "for the Laplace approximation in Eq. (20). We show in Section 4.1 that this provides a well-suited", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "skeleton to implement Bayesian online meta-learning in Eq. (5) with the mode-seeking optimisation", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 721, + 151, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 151, + 732 + ], + "score": 1.0, + "content": "procedure.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 44 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 203, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 205, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 205, + 96 + ], + "score": 1.0, + "content": "A BACKGROUND", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 105, + 504, + 139 + ], + "lines": [ + { + "bbox": [ + 105, + 104, + 504, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 504, + 119 + ], + "score": 1.0, + "content": "This section provides a background explanation of using BOL to find the posterior of a model pa-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 116, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 505, + 129 + ], + "score": 1.0, + "content": "rameters and overcome catastrophic forgetting, commonly for large-scale supervised classification.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 127, + 348, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 348, + 141 + ], + "score": 1.0, + "content": "We will then apply this approach to our recursion in Eq. (5).", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 104, + 505, + 141 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 144, + 505, + 211 + ], + "lines": [ + { + "bbox": [ + 106, + 145, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 145, + 505, + 156 + ], + "score": 1.0, + "content": "The posterior is typically intractable due to the enormous size of the modern neural network ar-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 154, + 505, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 168 + ], + "score": 1.0, + "content": "chitectures. This leads to the requirement for a good approximation of the posterior of the meta-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 166, + 505, + 180 + ], + "spans": [ + { + "bbox": [ + 105, + 166, + 505, + 180 + ], + "score": 1.0, + "content": "parameters. A particularly suitable candidate for this purpose in meta-learning is the Laplace ap-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 176, + 506, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 506, + 190 + ], + "score": 1.0, + "content": "proximation (MacKay, 1992; Ritter et al., 2018b), as it simply adds a quadratic regulariser to the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 188, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 188, + 505, + 201 + ], + "score": 1.0, + "content": "training objective. Variational inference is another possible method to obtain an approximation for", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 199, + 257, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 257, + 212 + ], + "score": 1.0, + "content": "the posterior of the meta-parameters.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 145, + 506, + 212 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 223, + 261, + 234 + ], + "lines": [ + { + "bbox": [ + 106, + 223, + 262, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 262, + 235 + ], + "score": 1.0, + "content": "A.1 BAYESIAN ONLINE LEARNING", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 243, + 505, + 276 + ], + "lines": [ + { + "bbox": [ + 105, + 241, + 504, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 218, + 258 + ], + "score": 1.0, + "content": "Upon the arrival of the new", + "type": "text" + }, + { + "bbox": [ + 218, + 244, + 240, + 256 + ], + "score": 0.92, + "content": "\\mathcal { D } _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 241, + 391, + 258 + ], + "score": 1.0, + "content": ", we are interested in a MAP estimate", + "type": "text" + }, + { + "bbox": [ + 392, + 244, + 504, + 256 + ], + "score": 0.91, + "content": "\\theta ^ { * } = \\arg \\operatorname* { m a x } _ { \\theta } p ( \\theta | \\mathcal { D } _ { 1 : t + 1 } )", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 254, + 506, + 268 + ], + "spans": [ + { + "bbox": [ + 104, + 254, + 184, + 268 + ], + "score": 1.0, + "content": "for the parameters", + "type": "text" + }, + { + "bbox": [ + 184, + 255, + 191, + 265 + ], + "score": 0.81, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 254, + 506, + 268 + ], + "score": 1.0, + "content": "of a neural network. Using Bayes’ rule on the posterior gives the recursive", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 266, + 141, + 277 + ], + "spans": [ + { + "bbox": [ + 104, + 266, + 141, + 277 + ], + "score": 1.0, + "content": "formula", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12, + "bbox_fs": [ + 104, + 241, + 506, + 277 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 233, + 276, + 377, + 289 + ], + "lines": [ + { + "bbox": [ + 233, + 276, + 377, + 289 + ], + "spans": [ + { + "bbox": [ + 233, + 276, + 377, + 289 + ], + "score": 0.92, + "content": "p ( \\theta | \\mathcal { D } _ { 1 : t + 1 } ) \\propto p ( \\mathcal { D } _ { t + 1 } | \\theta ) p ( \\theta | \\mathcal { D } _ { 1 : t } )", + "type": "interline_equation", + "image_path": "50c4eeba784d039aea493d055edcf74d0628b62536ebcf5612919a59d04374f0.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 233, + 276, + 377, + 289 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 290, + 505, + 344 + ], + "lines": [ + { + "bbox": [ + 106, + 289, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 444, + 302 + ], + "score": 1.0, + "content": "where Eq. (16) follows from the assumption that each dataset is independent given", + "type": "text" + }, + { + "bbox": [ + 445, + 290, + 451, + 299 + ], + "score": 0.7, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 289, + 505, + 302 + ], + "score": 1.0, + "content": ". As the nor-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 300, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 178, + 312 + ], + "score": 1.0, + "content": "malised posterior", + "type": "text" + }, + { + "bbox": [ + 178, + 300, + 217, + 312 + ], + "score": 0.92, + "content": "p ( \\theta | \\mathcal { D } _ { 1 : t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 300, + 505, + 312 + ], + "score": 1.0, + "content": "is usually intractable, it may be approximated by a parametric distribu-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 309, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 124, + 325 + ], + "score": 1.0, + "content": "tion", + "type": "text" + }, + { + "bbox": [ + 125, + 313, + 131, + 323 + ], + "score": 0.77, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 309, + 196, + 325 + ], + "score": 1.0, + "content": "with parameter", + "type": "text" + }, + { + "bbox": [ + 196, + 312, + 207, + 323 + ], + "score": 0.87, + "content": "\\phi _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 309, + 505, + 325 + ], + "score": 1.0, + "content": ". The BOL framework consists of the update step and the projection step", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 322, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 106, + 322, + 362, + 335 + ], + "score": 1.0, + "content": "(Opper, 1998). The update step uses the approximate posterior", + "type": "text" + }, + { + "bbox": [ + 362, + 322, + 393, + 334 + ], + "score": 0.93, + "content": "q ( \\theta | \\phi _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 322, + 505, + 335 + ], + "score": 1.0, + "content": "obtained from the previous", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 333, + 275, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 275, + 345 + ], + "score": 1.0, + "content": "step for an update in the form of Eq. (16):", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 289, + 505, + 345 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 229, + 346, + 381, + 360 + ], + "lines": [ + { + "bbox": [ + 229, + 346, + 381, + 360 + ], + "spans": [ + { + "bbox": [ + 229, + 346, + 381, + 360 + ], + "score": 0.92, + "content": "p ( \\theta | \\mathcal { D } _ { 1 : t + 1 } , \\phi _ { t } ) \\propto p ( \\mathcal { D } _ { t + 1 } | \\theta ) q ( \\theta | \\phi _ { t } ) .", + "type": "interline_equation", + "image_path": "053143aefc5a8d71314f3d247199e8e8c233a1d5a7f82df99d9438bd84bcefc4.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 229, + 346, + 381, + 360 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 361, + 505, + 416 + ], + "lines": [ + { + "bbox": [ + 105, + 360, + 506, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 183, + 375 + ], + "score": 1.0, + "content": "The new posterior", + "type": "text" + }, + { + "bbox": [ + 184, + 361, + 246, + 373 + ], + "score": 0.92, + "content": "p ( \\theta | \\mathcal { D } _ { 1 : t + 1 } , \\phi _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 360, + 457, + 375 + ], + "score": 1.0, + "content": "might not belong to the same parametric family as", + "type": "text" + }, + { + "bbox": [ + 457, + 361, + 487, + 372 + ], + "score": 0.92, + "content": "q ( \\theta | \\phi _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 360, + 506, + 375 + ], + "score": 1.0, + "content": ". In", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 371, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 460, + 385 + ], + "score": 1.0, + "content": "this case, the new posterior has to be projected into the same parametric family to obtain", + "type": "text" + }, + { + "bbox": [ + 461, + 372, + 501, + 384 + ], + "score": 0.92, + "content": "q ( \\theta | \\phi _ { t + 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 371, + 505, + 385 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 383, + 506, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 506, + 396 + ], + "score": 1.0, + "content": "Opper (1998) performs this projection by minimising the KL-divergence between the new posterior", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 393, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 184, + 407 + ], + "score": 1.0, + "content": "and the parametric", + "type": "text" + }, + { + "bbox": [ + 185, + 396, + 191, + 406 + ], + "score": 0.79, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 393, + 505, + 407 + ], + "score": 1.0, + "content": ", while Ritter et al. (2018a) use the Laplace approximation and Nguyen et al.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 404, + 238, + 417 + ], + "spans": [ + { + "bbox": [ + 106, + 404, + 238, + 417 + ], + "score": 1.0, + "content": "(2018) use variational inference.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 360, + 506, + 417 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 429, + 248, + 441 + ], + "lines": [ + { + "bbox": [ + 106, + 429, + 248, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 248, + 441 + ], + "score": 1.0, + "content": "A.2 LAPLACE APPROXIMATION", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 449, + 360, + 461 + ], + "lines": [ + { + "bbox": [ + 105, + 447, + 356, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 356, + 464 + ], + "score": 1.0, + "content": "We consider finding a MAP estimate following from Eq. (16):", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 447, + 356, + 464 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 156, + 462, + 455, + 482 + ], + "lines": [ + { + "bbox": [ + 156, + 462, + 455, + 482 + ], + "spans": [ + { + "bbox": [ + 156, + 462, + 455, + 482 + ], + "score": 0.91, + "content": "\\theta _ { t + 1 } ^ { * } = \\arg \\operatorname* { m a x } _ { \\theta } p ( \\theta | \\mathcal { D } _ { 1 : t + 1 } ) = \\arg \\operatorname* { m a x } _ { \\theta } \\{ \\log p ( \\mathcal { D } _ { t + 1 } | \\theta ) + \\log p ( \\theta | \\mathcal { D } _ { 1 : t } ) \\} .", + "type": "interline_equation", + "image_path": "9d85b6ebff62fbeeb39d1d697c4878400e7b766c9cde0013e04e871b1e5d123f.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 156, + 462, + 455, + 482 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 484, + 503, + 518 + ], + "lines": [ + { + "bbox": [ + 105, + 483, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 182, + 498 + ], + "score": 1.0, + "content": "Since the posterior", + "type": "text" + }, + { + "bbox": [ + 183, + 485, + 221, + 496 + ], + "score": 0.91, + "content": "p ( \\theta | \\mathcal { D } _ { 1 : t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 483, + 505, + 498 + ], + "score": 1.0, + "content": "of a neural network is intractable except for small architectures, the un-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 496, + 504, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 191, + 508 + ], + "score": 1.0, + "content": "normalised posterior", + "type": "text" + }, + { + "bbox": [ + 191, + 496, + 230, + 507 + ], + "score": 0.91, + "content": "\\tilde { p } ( \\theta | \\mathcal { D } _ { 1 : t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 496, + 504, + 508 + ], + "score": 1.0, + "content": "is considered instead. Performing Taylor expansion on the logarithm", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 506, + 324, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 288, + 519 + ], + "score": 1.0, + "content": "of the unnormalised posterior around a mode", + "type": "text" + }, + { + "bbox": [ + 288, + 507, + 299, + 518 + ], + "score": 0.88, + "content": "{ \\boldsymbol { \\theta } } _ { t } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 506, + 324, + 519 + ], + "score": 1.0, + "content": "gives", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 483, + 505, + 519 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 180, + 519, + 431, + 543 + ], + "lines": [ + { + "bbox": [ + 180, + 519, + 431, + 543 + ], + "spans": [ + { + "bbox": [ + 180, + 519, + 431, + 543 + ], + "score": 0.92, + "content": "\\log \\tilde { p } ( \\theta | \\mathcal { D } _ { 1 : t } ) \\simeq \\log \\tilde { p } ( \\theta | \\mathcal { D } _ { 1 : t } ) \\big | _ { \\theta = \\theta _ { t } ^ { * } } - \\frac { 1 } { 2 } ( \\theta - \\theta _ { t } ^ { * } ) ^ { T } A _ { t } ( \\theta - \\theta _ { t } ^ { * } ) ,", + "type": "interline_equation", + "image_path": "6e164b79457e9d746c6db551d3aec927946fffa4599c2c369f8bc272ac1af928.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 180, + 519, + 431, + 543 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 543, + 505, + 587 + ], + "lines": [ + { + "bbox": [ + 105, + 543, + 504, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 134, + 556 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 544, + 146, + 555 + ], + "score": 0.88, + "content": "A _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 543, + 427, + 556 + ], + "score": 1.0, + "content": "denotes the Hessian matrix of the negative log-posterior evaluated at", + "type": "text" + }, + { + "bbox": [ + 428, + 544, + 438, + 555 + ], + "score": 0.87, + "content": "\\theta _ { t } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 543, + 504, + 556 + ], + "score": 1.0, + "content": ". The expansion", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 554, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 436, + 568 + ], + "score": 1.0, + "content": "in Eq. (19) suggests using a Gaussian approximate posterior. Given the parameter", + "type": "text" + }, + { + "bbox": [ + 436, + 555, + 494, + 567 + ], + "score": 0.92, + "content": "\\phi _ { t } = \\{ \\mu _ { t } , \\Lambda _ { t } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 554, + 505, + 568 + ], + "score": 1.0, + "content": ", a", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 566, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 131, + 579 + ], + "score": 1.0, + "content": "mean", + "type": "text" + }, + { + "bbox": [ + 131, + 569, + 151, + 578 + ], + "score": 0.81, + "content": "\\mu _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 566, + 185, + 579 + ], + "score": 1.0, + "content": "for step", + "type": "text" + }, + { + "bbox": [ + 185, + 567, + 207, + 576 + ], + "score": 0.85, + "content": "t + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 566, + 505, + 579 + ], + "score": 1.0, + "content": "can be obtained by finding a mode of the approximate posterior as follows", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 576, + 273, + 589 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 273, + 589 + ], + "score": 1.0, + "content": "via standard gradient-based optimisation:", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 543, + 505, + 589 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 187, + 589, + 424, + 614 + ], + "lines": [ + { + "bbox": [ + 187, + 589, + 424, + 614 + ], + "spans": [ + { + "bbox": [ + 187, + 589, + 424, + 614 + ], + "score": 0.92, + "content": "\\mu _ { t + 1 } = \\arg \\operatorname* { m a x } _ { \\boldsymbol { \\theta } } \\log p ( \\mathcal { D } _ { t + 1 } | \\boldsymbol { \\theta } ) - \\frac { 1 } { 2 } ( \\boldsymbol { \\theta } - \\boldsymbol { \\mu } _ { t } ) ^ { T } \\Lambda _ { t } ( \\boldsymbol { \\theta } - \\boldsymbol { \\mu } _ { t } ) .", + "type": "interline_equation", + "image_path": "e30a9fc2b0abe8259f6075a61a749cf139f06448d9e71a45118af62aa94d8b78.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 187, + 589, + 424, + 614 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 615, + 502, + 639 + ], + "lines": [ + { + "bbox": [ + 106, + 615, + 504, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 250, + 628 + ], + "score": 1.0, + "content": "The precision matrix is updated as", + "type": "text" + }, + { + "bbox": [ + 250, + 616, + 333, + 628 + ], + "score": 0.91, + "content": "\\Lambda _ { t + 1 } = H _ { t + 1 } + \\Lambda _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 615, + 365, + 628 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 365, + 616, + 388, + 628 + ], + "score": 0.91, + "content": "H _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 615, + 504, + 628 + ], + "score": 1.0, + "content": "is the Hessian matrix of the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 626, + 361, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 215, + 640 + ], + "score": 1.0, + "content": "negative log-likelihood for", + "type": "text" + }, + { + "bbox": [ + 216, + 628, + 237, + 639 + ], + "score": 0.91, + "content": "\\mathcal { D } _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 626, + 289, + 640 + ], + "score": 1.0, + "content": "evaluated at", + "type": "text" + }, + { + "bbox": [ + 289, + 629, + 309, + 639 + ], + "score": 0.89, + "content": "\\mu _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 626, + 361, + 640 + ], + "score": 1.0, + "content": "with entries", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 106, + 615, + 504, + 640 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 215, + 640, + 396, + 670 + ], + "lines": [ + { + "bbox": [ + 215, + 640, + 396, + 670 + ], + "spans": [ + { + "bbox": [ + 215, + 640, + 396, + 670 + ], + "score": 0.93, + "content": "H _ { t + 1 } ^ { i j } = - \\frac { \\partial ^ { 2 } } { \\partial \\theta ^ { ( i ) } \\partial \\theta ^ { ( j ) } } \\log p ( \\mathcal { D } _ { t + 1 } \\vert \\theta ) \\bigg \\vert _ { \\theta = \\mu _ { t + 1 } } .", + "type": "interline_equation", + "image_path": "3d76cacc8904531fc2e50381c54e1d3f2b06f30c94bcb0c2d8e5d129428e2753.jpg" + } + ] + } + ], + "index": 40.5, + "virtual_lines": [ + { + "bbox": [ + 215, + 640, + 396, + 655.0 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 215, + 655.0, + 396, + 670.0 + ], + "spans": [], + "index": 41 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "For a neural network model, gradient-based optimisation methods such as SGD (Robbins & Monro,", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "1951) and Adam (Kingma & Ba, 2015) are the standard gradient-based methods in finding a mode", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "for the Laplace approximation in Eq. (20). We show in Section 4.1 that this provides a well-suited", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "skeleton to implement Bayesian online meta-learning in Eq. (5) with the mode-seeking optimisation", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 721, + 151, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 151, + 732 + ], + "score": 1.0, + "content": "procedure.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 44, + "bbox_fs": [ + 105, + 677, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 326, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 329, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 329, + 95 + ], + "score": 1.0, + "content": "A.3 BLOCK-DIAGONAL HESSIAN APPROXIMATION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 103, + 505, + 214 + ], + "lines": [ + { + "bbox": [ + 106, + 104, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 505, + 116 + ], + "score": 1.0, + "content": "Since the full Hessian matrix in Eq. (21) is intractable for large neural networks, we seek for an ef-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 114, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 114, + 506, + 127 + ], + "score": 1.0, + "content": "ficient and relatively close approximation to the Hessian matrix. Diagonal approximations (Denker", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 126, + 506, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 126, + 506, + 138 + ], + "score": 1.0, + "content": "& LeCun, 1991; Kirkpatrick et al., 2017) are memory and computationally efficient, but sacrifice", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 136, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 505, + 150 + ], + "score": 1.0, + "content": "approximation accuracy as they ignore the interaction between parameters. Consider instead sepa-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 148, + 506, + 159 + ], + "spans": [ + { + "bbox": [ + 106, + 148, + 506, + 159 + ], + "score": 1.0, + "content": "rating the Hessian matrix into blocks where different blocks are associated to different layers of a", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 159, + 505, + 170 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 505, + 170 + ], + "score": 1.0, + "content": "neural network. A particular diagonal block corresponds to the Hessian for a particular layer of the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 168, + 506, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 168, + 506, + 182 + ], + "score": 1.0, + "content": "neural network. The block-diagonal Kronecker-factored approximation (Martens & Grosse, 2015;", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 180, + 505, + 192 + ], + "spans": [ + { + "bbox": [ + 106, + 180, + 505, + 192 + ], + "score": 1.0, + "content": "Grosse & Martens, 2016; Botev et al., 2017) utilises the fact that each diagonal block of the Hessian", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 191, + 506, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 506, + 204 + ], + "score": 1.0, + "content": "is Kronecker-factored for a single data point. This provides a better Hessian approximation as it", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 203, + 369, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 369, + 214 + ], + "score": 1.0, + "content": "takes the parameter interactions within a layer into consideration.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 5.5 + }, + { + "type": "title", + "bbox": [ + 108, + 227, + 319, + 238 + ], + "lines": [ + { + "bbox": [ + 106, + 227, + 320, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 320, + 239 + ], + "score": 1.0, + "content": "A.3.1 KRONECKER-FACTORED APPROXIMATION", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 246, + 505, + 347 + ], + "lines": [ + { + "bbox": [ + 106, + 245, + 505, + 259 + ], + "spans": [ + { + "bbox": [ + 106, + 245, + 237, + 259 + ], + "score": 1.0, + "content": "Consider a neural network with", + "type": "text" + }, + { + "bbox": [ + 238, + 248, + 246, + 257 + ], + "score": 0.79, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 245, + 335, + 259 + ], + "score": 1.0, + "content": "layers and parameter", + "type": "text" + }, + { + "bbox": [ + 335, + 246, + 476, + 259 + ], + "score": 0.92, + "content": "\\theta = [ \\mathrm { v e c } ( W _ { 1 } ) ^ { T } , \\dots , \\mathrm { v e c } ( W _ { L } ) ^ { T } ] ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 245, + 505, + 259 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 107, + 258, + 506, + 271 + ], + "spans": [ + { + "bbox": [ + 107, + 258, + 121, + 269 + ], + "score": 0.86, + "content": "W _ { \\ell }", + "type": "inline_equation" + }, + { + "bbox": [ + 121, + 258, + 207, + 271 + ], + "score": 1.0, + "content": "is the weight of layer", + "type": "text" + }, + { + "bbox": [ + 207, + 259, + 213, + 268 + ], + "score": 0.67, + "content": "\\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 258, + 227, + 271 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 227, + 258, + 289, + 270 + ], + "score": 0.92, + "content": "\\ell = \\{ 1 , \\dots , L \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 258, + 506, + 271 + ], + "score": 1.0, + "content": "and vec denotes stacking the columns of a matrix into", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 268, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 325, + 282 + ], + "score": 1.0, + "content": "a vector. We denote the input of the neural network as", + "type": "text" + }, + { + "bbox": [ + 325, + 271, + 356, + 280 + ], + "score": 0.89, + "content": "a _ { 0 } = x", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 268, + 506, + 282 + ], + "score": 1.0, + "content": "and the output of the neural network", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 280, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 117, + 293 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 118, + 280, + 130, + 291 + ], + "score": 0.88, + "content": "h _ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 280, + 505, + 293 + ], + "score": 1.0, + "content": ". As the input passes through each layer of the neural network, we have the pre-activation for", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 290, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 128, + 304 + ], + "score": 1.0, + "content": "layer", + "type": "text" + }, + { + "bbox": [ + 129, + 291, + 134, + 301 + ], + "score": 0.73, + "content": "\\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 290, + 145, + 304 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 145, + 291, + 201, + 302 + ], + "score": 0.92, + "content": "h _ { \\ell } = W _ { \\ell } a _ { \\ell - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 290, + 285, + 304 + ], + "score": 1.0, + "content": "and the activation as", + "type": "text" + }, + { + "bbox": [ + 286, + 291, + 334, + 303 + ], + "score": 0.93, + "content": "a _ { \\ell } = f _ { \\ell } ( h _ { \\ell } )", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 290, + 362, + 304 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 362, + 291, + 372, + 302 + ], + "score": 0.87, + "content": "f _ { \\ell }", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 290, + 505, + 304 + ], + "score": 1.0, + "content": "is the activation function of layer", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 300, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 112, + 312 + ], + "score": 0.45, + "content": "\\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 112, + 300, + 505, + 315 + ], + "score": 1.0, + "content": ". If a bias vector is applicable in calculating the pre-activation of a layer, we append the bias vector", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 312, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 505, + 326 + ], + "score": 1.0, + "content": "to the last column of the weight matrix and append a scalar one to the last element of the activation.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 323, + 504, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 160, + 337 + ], + "score": 1.0, + "content": "The gradient", + "type": "text" + }, + { + "bbox": [ + 160, + 325, + 170, + 335 + ], + "score": 0.83, + "content": "g _ { \\ell }", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 323, + 200, + 337 + ], + "score": 1.0, + "content": "of loss", + "type": "text" + }, + { + "bbox": [ + 201, + 324, + 310, + 336 + ], + "score": 0.91, + "content": "L _ { \\theta } ( \\dot { x _ { \\star } } y ) = - \\log p ( \\bar { y } | \\dot { x } , \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 323, + 373, + 337 + ], + "score": 1.0, + "content": "with respect to", + "type": "text" + }, + { + "bbox": [ + 373, + 324, + 384, + 335 + ], + "score": 0.88, + "content": "h _ { \\ell }", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 323, + 480, + 337 + ], + "score": 1.0, + "content": "for an input-target pair", + "type": "text" + }, + { + "bbox": [ + 480, + 324, + 504, + 336 + ], + "score": 0.91, + "content": "( x , y )", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 335, + 268, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 259, + 348 + ], + "score": 1.0, + "content": "is the pre-activation gradient for layer", + "type": "text" + }, + { + "bbox": [ + 259, + 336, + 264, + 344 + ], + "score": 0.69, + "content": "\\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 335, + 268, + 348 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 351, + 505, + 385 + ], + "lines": [ + { + "bbox": [ + 105, + 351, + 504, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 142, + 364 + ], + "score": 1.0, + "content": "Martens", + "type": "text" + }, + { + "bbox": [ + 142, + 352, + 151, + 362 + ], + "score": 0.28, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 351, + 269, + 364 + ], + "score": 1.0, + "content": "Grosse (2015) show that the", + "type": "text" + }, + { + "bbox": [ + 269, + 352, + 274, + 362 + ], + "score": 0.69, + "content": "\\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 351, + 349, + 364 + ], + "score": 1.0, + "content": "-th diagonal block", + "type": "text" + }, + { + "bbox": [ + 349, + 352, + 360, + 363 + ], + "score": 0.87, + "content": "F _ { \\ell }", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 351, + 495, + 364 + ], + "score": 1.0, + "content": "of the Fisher information matrix", + "type": "text" + }, + { + "bbox": [ + 495, + 352, + 504, + 362 + ], + "score": 0.81, + "content": "F", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 362, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 505, + 375 + ], + "score": 1.0, + "content": "can be approximated by the Kronecker product between the expectation of the outer product of the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 107, + 373, + 380, + 387 + ], + "spans": [ + { + "bbox": [ + 107, + 374, + 136, + 386 + ], + "score": 0.91, + "content": "( \\ell - 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 373, + 244, + 387 + ], + "score": 1.0, + "content": "-th layer activation and the", + "type": "text" + }, + { + "bbox": [ + 245, + 374, + 250, + 384 + ], + "score": 0.78, + "content": "\\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 373, + 380, + 387 + ], + "score": 1.0, + "content": "-th layer pre-activation gradient:", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22 + }, + { + "type": "interline_equation", + "bbox": [ + 236, + 390, + 375, + 440 + ], + "lines": [ + { + "bbox": [ + 236, + 390, + 375, + 440 + ], + "spans": [ + { + "bbox": [ + 236, + 390, + 375, + 440 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { F _ { \\ell } = \\mathbb { E } _ { x , y } \\bigl [ a _ { \\ell - 1 } a _ { \\ell - 1 } ^ { T } \\otimes g _ { \\ell } g _ { \\ell } ^ { T } \\bigr ] } \\\\ & { \\qquad \\approx \\mathbb { E } _ { x } \\bigl [ a _ { \\ell - 1 } a _ { \\ell - 1 } ^ { T } \\bigr ] \\otimes \\mathbb { E } _ { y | x } \\bigl [ g _ { \\ell } g _ { \\ell } ^ { T } \\bigr ] } \\\\ & { \\qquad = A _ { \\ell - 1 } \\otimes G _ { \\ell } , } \\end{array}", + "type": "interline_equation", + "image_path": "01d6f1816d037e2fc2773e2e0641af57f957eeb4d764a0fa28da0a46ab8d5996.jpg" + } + ] + } + ], + "index": 24.5, + "virtual_lines": [ + { + "bbox": [ + 236, + 390, + 375, + 415.0 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 236, + 415.0, + 375, + 440.0 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 445, + 504, + 491 + ], + "lines": [ + { + "bbox": [ + 105, + 445, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 134, + 460 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 446, + 228, + 459 + ], + "score": 0.92, + "content": "A _ { \\ell - 1 } = \\mathbb { E } _ { x } [ a _ { \\ell - 1 } a _ { \\ell - 1 } ^ { T } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 445, + 247, + 460 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 248, + 446, + 319, + 459 + ], + "score": 0.92, + "content": "G _ { \\ell } = \\mathbb { E } _ { y | x } [ g _ { \\ell } g _ { \\ell } ^ { T } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 445, + 356, + 460 + ], + "score": 1.0, + "content": ". Grosse", + "type": "text" + }, + { + "bbox": [ + 356, + 447, + 365, + 457 + ], + "score": 0.32, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 445, + 506, + 460 + ], + "score": 1.0, + "content": "Martens (2016) extend the block-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 456, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 506, + 470 + ], + "score": 1.0, + "content": "diagonal Kronecker-factored Fisher approximation for fully-connected layers to that for convolution", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 468, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 505, + 482 + ], + "score": 1.0, + "content": "layers. The Gaussian log-probability term can be calculated efficiently without expanding the Kro-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 480, + 239, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 239, + 492 + ], + "score": 1.0, + "content": "necker product using the identity", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5 + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 497, + 425, + 513 + ], + "lines": [ + { + "bbox": [ + 186, + 497, + 425, + 513 + ], + "spans": [ + { + "bbox": [ + 186, + 497, + 425, + 513 + ], + "score": 0.86, + "content": "\\begin{array} { r } { ( A _ { \\ell - 1 } \\otimes G _ { \\ell } ) \\operatorname { v e c } ( W _ { \\ell } - W _ { \\ell } ^ { * } ) = \\operatorname { v e c } ( G _ { \\ell } ( W _ { \\ell } - W _ { \\ell } ^ { * } ) A _ { \\ell - 1 } ^ { T } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "8f8bc2f05c3b8eb69e818f06083bed3fdcb836a3458238e31051d0c193a81042.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 186, + 497, + 425, + 513 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 524, + 505, + 560 + ], + "lines": [ + { + "bbox": [ + 105, + 523, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 505, + 538 + ], + "score": 1.0, + "content": "As we mentioned in Section 4.2, approximating the Hessian with the one-step SGD inner loop", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 536, + 505, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 487, + 548 + ], + "score": 1.0, + "content": "assumption results in having terms that multiply two or more Kronecker products together. The", + "type": "text" + }, + { + "bbox": [ + 488, + 537, + 493, + 545 + ], + "score": 0.72, + "content": "\\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 536, + 505, + 548 + ], + "score": 1.0, + "content": "-th", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 548, + 244, + 561 + ], + "spans": [ + { + "bbox": [ + 106, + 549, + 179, + 561 + ], + "score": 1.0, + "content": "diagonal block of", + "type": "text" + }, + { + "bbox": [ + 179, + 548, + 187, + 558 + ], + "score": 0.88, + "content": "\\widetilde { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 549, + 244, + 561 + ], + "score": 1.0, + "content": "in Eq. (11) is", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "interline_equation", + "bbox": [ + 169, + 566, + 442, + 601 + ], + "lines": [ + { + "bbox": [ + 169, + 566, + 442, + 601 + ], + "spans": [ + { + "bbox": [ + 169, + 566, + 442, + 601 + ], + "score": 0.94, + "content": "\\widetilde { F } _ { \\ell } = \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } ( I - A _ { \\ell - 1 } ^ { m } \\otimes G _ { \\ell } ^ { m } ) ( \\widetilde { A } _ { \\ell - 1 } ^ { m } \\otimes \\widetilde { G } _ { \\ell } ^ { m } ) ( I - A _ { \\ell - 1 } ^ { m } \\otimes G _ { \\ell } ^ { m } ) ^ { T } ,", + "type": "interline_equation", + "image_path": "c0cc31057c73ef43fe3c70286e31fc7ef0fd43efcf4487b653b25d8250b1bc59.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 169, + 566, + 442, + 577.6666666666666 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 169, + 577.6666666666666, + 442, + 589.3333333333333 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 169, + 589.3333333333333, + 442, + 600.9999999999999 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 606, + 504, + 633 + ], + "lines": [ + { + "bbox": [ + 106, + 605, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 134, + 621 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 607, + 185, + 620 + ], + "score": 0.91, + "content": "A _ { \\ell - 1 } ^ { m } \\otimes G _ { \\ell } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 605, + 506, + 621 + ], + "score": 1.0, + "content": "is the Kronecker product corresponding to the Hessian in Eq. (13) for task or", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 618, + 360, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 130, + 635 + ], + "score": 1.0, + "content": "batch", + "type": "text" + }, + { + "bbox": [ + 131, + 622, + 140, + 631 + ], + "score": 0.72, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 618, + 191, + 635 + ], + "score": 1.0, + "content": ". We expand", + "type": "text" + }, + { + "bbox": [ + 192, + 619, + 203, + 632 + ], + "score": 0.9, + "content": "\\widetilde { F } _ { \\ell }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 618, + 360, + 635 + ], + "score": 1.0, + "content": "using the Kronecker product property:", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + }, + { + "type": "interline_equation", + "bbox": [ + 196, + 639, + 415, + 656 + ], + "lines": [ + { + "bbox": [ + 196, + 639, + 415, + 656 + ], + "spans": [ + { + "bbox": [ + 196, + 639, + 415, + 656 + ], + "score": 0.9, + "content": "\\begin{array} { r } { ( A _ { \\ell - 1 } ^ { m } \\otimes G _ { \\ell } ^ { m } ) ( \\widetilde { A } _ { \\ell - 1 } ^ { m } \\otimes \\widetilde { G } _ { \\ell } ^ { m } ) = A _ { \\ell - 1 } ^ { m } \\widetilde { A } _ { \\ell - 1 } ^ { m } \\otimes G _ { \\ell } ^ { m } \\widetilde { G } _ { \\ell } ^ { m } . } \\end{array}", + "type": "interline_equation", + "image_path": "b9369fd3cf80040f481e2e2351109b05137f442bca53c0c61fab746d7ecd9e03.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 196, + 639, + 415, + 656 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 661, + 150, + 673 + ], + "lines": [ + { + "bbox": [ + 105, + 659, + 151, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 151, + 675 + ], + "score": 1.0, + "content": "This gives", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "interline_equation", + "bbox": [ + 127, + 680, + 466, + 737 + ], + "lines": [ + { + "bbox": [ + 127, + 680, + 466, + 737 + ], + "spans": [ + { + "bbox": [ + 127, + 680, + 466, + 737 + ], + "score": 0.93, + "content": "\\begin{array} { r l r } { \\widetilde { F } _ { \\ell } = \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } \\Big \\{ \\widetilde { A } _ { \\ell - 1 } ^ { m } \\otimes \\widetilde { G } _ { \\ell } ^ { m } - A _ { \\ell - 1 } ^ { m } \\widetilde { A } _ { \\ell - 1 } ^ { m } \\otimes G _ { \\ell } ^ { m } \\widetilde { G } _ { \\ell } ^ { m } - \\widetilde { A } _ { \\ell - 1 } ^ { m } ( A _ { \\ell - 1 } ^ { m } ) ^ { T } \\otimes \\widetilde { G } _ { \\ell } ^ { m } ( G _ { \\ell } ^ { m } ) ^ { T } } \\\\ & { } & { + A _ { \\ell - 1 } ^ { m } \\widetilde { A } _ { \\ell - 1 } ^ { m } ( A _ { \\ell - 1 } ^ { m } ) ^ { T } \\otimes G _ { \\ell } ^ { m } \\widetilde { G } _ { \\ell } ^ { m } ( G _ { \\ell } ^ { m } ) ^ { T } \\Big \\} . } \\end{array}", + "type": "interline_equation", + "image_path": "0d88d94963f128eab55eecbc9315a4c835701fc077ce460c2229d058604d9c5d.jpg" + } + ] + } + ], + "index": 42, + "virtual_lines": [ + { + "bbox": [ + 127, + 680, + 466, + 699.0 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 127, + 699.0, + 466, + 718.0 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 127, + 718.0, + 466, + 737.0 + ], + "spans": [], + "index": 43 + } + ] + } + ], + "page_idx": 13, + "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": "14", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 326, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 329, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 329, + 95 + ], + "score": 1.0, + "content": "A.3 BLOCK-DIAGONAL HESSIAN APPROXIMATION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 103, + 505, + 214 + ], + "lines": [ + { + "bbox": [ + 106, + 104, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 505, + 116 + ], + "score": 1.0, + "content": "Since the full Hessian matrix in Eq. (21) is intractable for large neural networks, we seek for an ef-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 114, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 114, + 506, + 127 + ], + "score": 1.0, + "content": "ficient and relatively close approximation to the Hessian matrix. Diagonal approximations (Denker", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 126, + 506, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 126, + 506, + 138 + ], + "score": 1.0, + "content": "& LeCun, 1991; Kirkpatrick et al., 2017) are memory and computationally efficient, but sacrifice", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 136, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 505, + 150 + ], + "score": 1.0, + "content": "approximation accuracy as they ignore the interaction between parameters. Consider instead sepa-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 148, + 506, + 159 + ], + "spans": [ + { + "bbox": [ + 106, + 148, + 506, + 159 + ], + "score": 1.0, + "content": "rating the Hessian matrix into blocks where different blocks are associated to different layers of a", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 159, + 505, + 170 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 505, + 170 + ], + "score": 1.0, + "content": "neural network. A particular diagonal block corresponds to the Hessian for a particular layer of the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 168, + 506, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 168, + 506, + 182 + ], + "score": 1.0, + "content": "neural network. The block-diagonal Kronecker-factored approximation (Martens & Grosse, 2015;", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 180, + 505, + 192 + ], + "spans": [ + { + "bbox": [ + 106, + 180, + 505, + 192 + ], + "score": 1.0, + "content": "Grosse & Martens, 2016; Botev et al., 2017) utilises the fact that each diagonal block of the Hessian", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 191, + 506, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 506, + 204 + ], + "score": 1.0, + "content": "is Kronecker-factored for a single data point. This provides a better Hessian approximation as it", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 203, + 369, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 369, + 214 + ], + "score": 1.0, + "content": "takes the parameter interactions within a layer into consideration.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 5.5, + "bbox_fs": [ + 105, + 104, + 506, + 214 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 227, + 319, + 238 + ], + "lines": [ + { + "bbox": [ + 106, + 227, + 320, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 320, + 239 + ], + "score": 1.0, + "content": "A.3.1 KRONECKER-FACTORED APPROXIMATION", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 246, + 505, + 347 + ], + "lines": [ + { + "bbox": [ + 106, + 245, + 505, + 259 + ], + "spans": [ + { + "bbox": [ + 106, + 245, + 237, + 259 + ], + "score": 1.0, + "content": "Consider a neural network with", + "type": "text" + }, + { + "bbox": [ + 238, + 248, + 246, + 257 + ], + "score": 0.79, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 245, + 335, + 259 + ], + "score": 1.0, + "content": "layers and parameter", + "type": "text" + }, + { + "bbox": [ + 335, + 246, + 476, + 259 + ], + "score": 0.92, + "content": "\\theta = [ \\mathrm { v e c } ( W _ { 1 } ) ^ { T } , \\dots , \\mathrm { v e c } ( W _ { L } ) ^ { T } ] ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 245, + 505, + 259 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 107, + 258, + 506, + 271 + ], + "spans": [ + { + "bbox": [ + 107, + 258, + 121, + 269 + ], + "score": 0.86, + "content": "W _ { \\ell }", + "type": "inline_equation" + }, + { + "bbox": [ + 121, + 258, + 207, + 271 + ], + "score": 1.0, + "content": "is the weight of layer", + "type": "text" + }, + { + "bbox": [ + 207, + 259, + 213, + 268 + ], + "score": 0.67, + "content": "\\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 258, + 227, + 271 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 227, + 258, + 289, + 270 + ], + "score": 0.92, + "content": "\\ell = \\{ 1 , \\dots , L \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 258, + 506, + 271 + ], + "score": 1.0, + "content": "and vec denotes stacking the columns of a matrix into", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 268, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 325, + 282 + ], + "score": 1.0, + "content": "a vector. We denote the input of the neural network as", + "type": "text" + }, + { + "bbox": [ + 325, + 271, + 356, + 280 + ], + "score": 0.89, + "content": "a _ { 0 } = x", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 268, + 506, + 282 + ], + "score": 1.0, + "content": "and the output of the neural network", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 280, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 117, + 293 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 118, + 280, + 130, + 291 + ], + "score": 0.88, + "content": "h _ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 280, + 505, + 293 + ], + "score": 1.0, + "content": ". As the input passes through each layer of the neural network, we have the pre-activation for", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 290, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 128, + 304 + ], + "score": 1.0, + "content": "layer", + "type": "text" + }, + { + "bbox": [ + 129, + 291, + 134, + 301 + ], + "score": 0.73, + "content": "\\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 290, + 145, + 304 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 145, + 291, + 201, + 302 + ], + "score": 0.92, + "content": "h _ { \\ell } = W _ { \\ell } a _ { \\ell - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 290, + 285, + 304 + ], + "score": 1.0, + "content": "and the activation as", + "type": "text" + }, + { + "bbox": [ + 286, + 291, + 334, + 303 + ], + "score": 0.93, + "content": "a _ { \\ell } = f _ { \\ell } ( h _ { \\ell } )", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 290, + 362, + 304 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 362, + 291, + 372, + 302 + ], + "score": 0.87, + "content": "f _ { \\ell }", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 290, + 505, + 304 + ], + "score": 1.0, + "content": "is the activation function of layer", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 300, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 112, + 312 + ], + "score": 0.45, + "content": "\\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 112, + 300, + 505, + 315 + ], + "score": 1.0, + "content": ". If a bias vector is applicable in calculating the pre-activation of a layer, we append the bias vector", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 312, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 505, + 326 + ], + "score": 1.0, + "content": "to the last column of the weight matrix and append a scalar one to the last element of the activation.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 323, + 504, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 160, + 337 + ], + "score": 1.0, + "content": "The gradient", + "type": "text" + }, + { + "bbox": [ + 160, + 325, + 170, + 335 + ], + "score": 0.83, + "content": "g _ { \\ell }", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 323, + 200, + 337 + ], + "score": 1.0, + "content": "of loss", + "type": "text" + }, + { + "bbox": [ + 201, + 324, + 310, + 336 + ], + "score": 0.91, + "content": "L _ { \\theta } ( \\dot { x _ { \\star } } y ) = - \\log p ( \\bar { y } | \\dot { x } , \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 323, + 373, + 337 + ], + "score": 1.0, + "content": "with respect to", + "type": "text" + }, + { + "bbox": [ + 373, + 324, + 384, + 335 + ], + "score": 0.88, + "content": "h _ { \\ell }", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 323, + 480, + 337 + ], + "score": 1.0, + "content": "for an input-target pair", + "type": "text" + }, + { + "bbox": [ + 480, + 324, + 504, + 336 + ], + "score": 0.91, + "content": "( x , y )", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 335, + 268, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 259, + 348 + ], + "score": 1.0, + "content": "is the pre-activation gradient for layer", + "type": "text" + }, + { + "bbox": [ + 259, + 336, + 264, + 344 + ], + "score": 0.69, + "content": "\\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 335, + 268, + 348 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 245, + 506, + 348 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 351, + 505, + 385 + ], + "lines": [ + { + "bbox": [ + 105, + 351, + 504, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 142, + 364 + ], + "score": 1.0, + "content": "Martens", + "type": "text" + }, + { + "bbox": [ + 142, + 352, + 151, + 362 + ], + "score": 0.28, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 351, + 269, + 364 + ], + "score": 1.0, + "content": "Grosse (2015) show that the", + "type": "text" + }, + { + "bbox": [ + 269, + 352, + 274, + 362 + ], + "score": 0.69, + "content": "\\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 351, + 349, + 364 + ], + "score": 1.0, + "content": "-th diagonal block", + "type": "text" + }, + { + "bbox": [ + 349, + 352, + 360, + 363 + ], + "score": 0.87, + "content": "F _ { \\ell }", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 351, + 495, + 364 + ], + "score": 1.0, + "content": "of the Fisher information matrix", + "type": "text" + }, + { + "bbox": [ + 495, + 352, + 504, + 362 + ], + "score": 0.81, + "content": "F", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 362, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 505, + 375 + ], + "score": 1.0, + "content": "can be approximated by the Kronecker product between the expectation of the outer product of the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 107, + 373, + 380, + 387 + ], + "spans": [ + { + "bbox": [ + 107, + 374, + 136, + 386 + ], + "score": 0.91, + "content": "( \\ell - 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 373, + 244, + 387 + ], + "score": 1.0, + "content": "-th layer activation and the", + "type": "text" + }, + { + "bbox": [ + 245, + 374, + 250, + 384 + ], + "score": 0.78, + "content": "\\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 373, + 380, + 387 + ], + "score": 1.0, + "content": "-th layer pre-activation gradient:", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 351, + 505, + 387 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 236, + 390, + 375, + 440 + ], + "lines": [ + { + "bbox": [ + 236, + 390, + 375, + 440 + ], + "spans": [ + { + "bbox": [ + 236, + 390, + 375, + 440 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { F _ { \\ell } = \\mathbb { E } _ { x , y } \\bigl [ a _ { \\ell - 1 } a _ { \\ell - 1 } ^ { T } \\otimes g _ { \\ell } g _ { \\ell } ^ { T } \\bigr ] } \\\\ & { \\qquad \\approx \\mathbb { E } _ { x } \\bigl [ a _ { \\ell - 1 } a _ { \\ell - 1 } ^ { T } \\bigr ] \\otimes \\mathbb { E } _ { y | x } \\bigl [ g _ { \\ell } g _ { \\ell } ^ { T } \\bigr ] } \\\\ & { \\qquad = A _ { \\ell - 1 } \\otimes G _ { \\ell } , } \\end{array}", + "type": "interline_equation", + "image_path": "01d6f1816d037e2fc2773e2e0641af57f957eeb4d764a0fa28da0a46ab8d5996.jpg" + } + ] + } + ], + "index": 24.5, + "virtual_lines": [ + { + "bbox": [ + 236, + 390, + 375, + 415.0 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 236, + 415.0, + 375, + 440.0 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 445, + 504, + 491 + ], + "lines": [ + { + "bbox": [ + 105, + 445, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 134, + 460 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 446, + 228, + 459 + ], + "score": 0.92, + "content": "A _ { \\ell - 1 } = \\mathbb { E } _ { x } [ a _ { \\ell - 1 } a _ { \\ell - 1 } ^ { T } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 445, + 247, + 460 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 248, + 446, + 319, + 459 + ], + "score": 0.92, + "content": "G _ { \\ell } = \\mathbb { E } _ { y | x } [ g _ { \\ell } g _ { \\ell } ^ { T } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 445, + 356, + 460 + ], + "score": 1.0, + "content": ". Grosse", + "type": "text" + }, + { + "bbox": [ + 356, + 447, + 365, + 457 + ], + "score": 0.32, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 445, + 506, + 460 + ], + "score": 1.0, + "content": "Martens (2016) extend the block-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 456, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 506, + 470 + ], + "score": 1.0, + "content": "diagonal Kronecker-factored Fisher approximation for fully-connected layers to that for convolution", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 468, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 505, + 482 + ], + "score": 1.0, + "content": "layers. The Gaussian log-probability term can be calculated efficiently without expanding the Kro-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 480, + 239, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 239, + 492 + ], + "score": 1.0, + "content": "necker product using the identity", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 445, + 506, + 492 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 497, + 425, + 513 + ], + "lines": [ + { + "bbox": [ + 186, + 497, + 425, + 513 + ], + "spans": [ + { + "bbox": [ + 186, + 497, + 425, + 513 + ], + "score": 0.86, + "content": "\\begin{array} { r } { ( A _ { \\ell - 1 } \\otimes G _ { \\ell } ) \\operatorname { v e c } ( W _ { \\ell } - W _ { \\ell } ^ { * } ) = \\operatorname { v e c } ( G _ { \\ell } ( W _ { \\ell } - W _ { \\ell } ^ { * } ) A _ { \\ell - 1 } ^ { T } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "8f8bc2f05c3b8eb69e818f06083bed3fdcb836a3458238e31051d0c193a81042.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 186, + 497, + 425, + 513 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 524, + 505, + 560 + ], + "lines": [ + { + "bbox": [ + 105, + 523, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 505, + 538 + ], + "score": 1.0, + "content": "As we mentioned in Section 4.2, approximating the Hessian with the one-step SGD inner loop", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 536, + 505, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 487, + 548 + ], + "score": 1.0, + "content": "assumption results in having terms that multiply two or more Kronecker products together. The", + "type": "text" + }, + { + "bbox": [ + 488, + 537, + 493, + 545 + ], + "score": 0.72, + "content": "\\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 536, + 505, + 548 + ], + "score": 1.0, + "content": "-th", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 548, + 244, + 561 + ], + "spans": [ + { + "bbox": [ + 106, + 549, + 179, + 561 + ], + "score": 1.0, + "content": "diagonal block of", + "type": "text" + }, + { + "bbox": [ + 179, + 548, + 187, + 558 + ], + "score": 0.88, + "content": "\\widetilde { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 549, + 244, + 561 + ], + "score": 1.0, + "content": "in Eq. (11) is", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 523, + 505, + 561 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 169, + 566, + 442, + 601 + ], + "lines": [ + { + "bbox": [ + 169, + 566, + 442, + 601 + ], + "spans": [ + { + "bbox": [ + 169, + 566, + 442, + 601 + ], + "score": 0.94, + "content": "\\widetilde { F } _ { \\ell } = \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } ( I - A _ { \\ell - 1 } ^ { m } \\otimes G _ { \\ell } ^ { m } ) ( \\widetilde { A } _ { \\ell - 1 } ^ { m } \\otimes \\widetilde { G } _ { \\ell } ^ { m } ) ( I - A _ { \\ell - 1 } ^ { m } \\otimes G _ { \\ell } ^ { m } ) ^ { T } ,", + "type": "interline_equation", + "image_path": "c0cc31057c73ef43fe3c70286e31fc7ef0fd43efcf4487b653b25d8250b1bc59.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 169, + 566, + 442, + 577.6666666666666 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 169, + 577.6666666666666, + 442, + 589.3333333333333 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 169, + 589.3333333333333, + 442, + 600.9999999999999 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 606, + 504, + 633 + ], + "lines": [ + { + "bbox": [ + 106, + 605, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 134, + 621 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 607, + 185, + 620 + ], + "score": 0.91, + "content": "A _ { \\ell - 1 } ^ { m } \\otimes G _ { \\ell } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 605, + 506, + 621 + ], + "score": 1.0, + "content": "is the Kronecker product corresponding to the Hessian in Eq. (13) for task or", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 618, + 360, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 130, + 635 + ], + "score": 1.0, + "content": "batch", + "type": "text" + }, + { + "bbox": [ + 131, + 622, + 140, + 631 + ], + "score": 0.72, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 618, + 191, + 635 + ], + "score": 1.0, + "content": ". We expand", + "type": "text" + }, + { + "bbox": [ + 192, + 619, + 203, + 632 + ], + "score": 0.9, + "content": "\\widetilde { F } _ { \\ell }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 618, + 360, + 635 + ], + "score": 1.0, + "content": "using the Kronecker product property:", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 605, + 506, + 635 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 196, + 639, + 415, + 656 + ], + "lines": [ + { + "bbox": [ + 196, + 639, + 415, + 656 + ], + "spans": [ + { + "bbox": [ + 196, + 639, + 415, + 656 + ], + "score": 0.9, + "content": "\\begin{array} { r } { ( A _ { \\ell - 1 } ^ { m } \\otimes G _ { \\ell } ^ { m } ) ( \\widetilde { A } _ { \\ell - 1 } ^ { m } \\otimes \\widetilde { G } _ { \\ell } ^ { m } ) = A _ { \\ell - 1 } ^ { m } \\widetilde { A } _ { \\ell - 1 } ^ { m } \\otimes G _ { \\ell } ^ { m } \\widetilde { G } _ { \\ell } ^ { m } . } \\end{array}", + "type": "interline_equation", + "image_path": "b9369fd3cf80040f481e2e2351109b05137f442bca53c0c61fab746d7ecd9e03.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 196, + 639, + 415, + 656 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 661, + 150, + 673 + ], + "lines": [ + { + "bbox": [ + 105, + 659, + 151, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 151, + 675 + ], + "score": 1.0, + "content": "This gives", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 659, + 151, + 675 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 127, + 680, + 466, + 737 + ], + "lines": [ + { + "bbox": [ + 127, + 680, + 466, + 737 + ], + "spans": [ + { + "bbox": [ + 127, + 680, + 466, + 737 + ], + "score": 0.93, + "content": "\\begin{array} { r l r } { \\widetilde { F } _ { \\ell } = \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } \\Big \\{ \\widetilde { A } _ { \\ell - 1 } ^ { m } \\otimes \\widetilde { G } _ { \\ell } ^ { m } - A _ { \\ell - 1 } ^ { m } \\widetilde { A } _ { \\ell - 1 } ^ { m } \\otimes G _ { \\ell } ^ { m } \\widetilde { G } _ { \\ell } ^ { m } - \\widetilde { A } _ { \\ell - 1 } ^ { m } ( A _ { \\ell - 1 } ^ { m } ) ^ { T } \\otimes \\widetilde { G } _ { \\ell } ^ { m } ( G _ { \\ell } ^ { m } ) ^ { T } } \\\\ & { } & { + A _ { \\ell - 1 } ^ { m } \\widetilde { A } _ { \\ell - 1 } ^ { m } ( A _ { \\ell - 1 } ^ { m } ) ^ { T } \\otimes G _ { \\ell } ^ { m } \\widetilde { G } _ { \\ell } ^ { m } ( G _ { \\ell } ^ { m } ) ^ { T } \\Big \\} . } \\end{array}", + "type": "interline_equation", + "image_path": "0d88d94963f128eab55eecbc9315a4c835701fc077ce460c2229d058604d9c5d.jpg" + } + ] + } + ], + "index": 42, + "virtual_lines": [ + { + "bbox": [ + 127, + 680, + 466, + 699.0 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 127, + 699.0, + 466, + 718.0 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 127, + 718.0, + 466, + 737.0 + ], + "spans": [], + "index": 43 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Finally, moving the meta-batch (or batch) averaging into the Kronecker factors gives the approxi-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 140, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 140, + 106 + ], + "score": 1.0, + "content": "mation:", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 160, + 108, + 451, + 143 + ], + "lines": [ + { + "bbox": [ + 160, + 108, + 451, + 143 + ], + "spans": [ + { + "bbox": [ + 160, + 108, + 451, + 143 + ], + "score": 0.91, + "content": "\\begin{array} { r l } & { \\widetilde { F } _ { \\ell } \\approx \\widetilde { A } _ { \\ell - 1 } \\otimes \\widetilde { G } _ { \\ell } - A _ { \\ell - 1 } \\widetilde { A } _ { \\ell - 1 } \\otimes G _ { \\ell } \\widetilde { G } _ { \\ell } - \\widetilde { A } _ { \\ell - 1 } ( A _ { \\ell - 1 } ) ^ { T } \\otimes \\widetilde { G } _ { \\ell } ( G _ { \\ell } ) ^ { T } } \\\\ & { \\qquad + A _ { \\ell - 1 } \\widetilde { A } _ { \\ell - 1 } ( A _ { \\ell - 1 } ) ^ { T } \\otimes G _ { \\ell } \\widetilde { G } _ { \\ell } ( G _ { \\ell } ) ^ { T } , } \\end{array}", + "type": "interline_equation", + "image_path": "79017d6ac10f7bd4d154b80b7a499facd06abe7c9ae7a9273c24d017271f9433.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 160, + 108, + 451, + 119.66666666666667 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 160, + 119.66666666666667, + 451, + 131.33333333333334 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 160, + 131.33333333333334, + 451, + 143.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 148, + 487, + 166 + ], + "lines": [ + { + "bbox": [ + 104, + 146, + 490, + 168 + ], + "spans": [ + { + "bbox": [ + 104, + 146, + 133, + 168 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 148, + 442, + 165 + ], + "score": 0.51, + "content": "\\begin{array} { r } { \\tilde { A } _ { \\ell - 1 } = \\frac { 1 } { M } \\sum _ { m } \\tilde { A } _ { \\ell - 1 } ^ { m } , \\tilde { G } _ { \\ell } = \\frac { 1 } { M } \\sum _ { m } \\tilde { G } _ { \\ell } ^ { m } , A _ { \\ell - 1 } \\tilde { A } _ { \\ell - 1 } = \\frac { 1 } { M } \\sum _ { m } A _ { \\ell - 1 } ^ { m } \\tilde { A } _ { \\ell - 1 } ^ { m } . } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 146, + 490, + 168 + ], + "score": 1.0, + "content": "and so on.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 176, + 445, + 188 + ], + "lines": [ + { + "bbox": [ + 106, + 177, + 446, + 188 + ], + "spans": [ + { + "bbox": [ + 106, + 177, + 446, + 188 + ], + "score": 1.0, + "content": "A.3.2 POSTERIOR REGULARISING HYPERPARAMETER FOR PRECISION UPDATE", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 195, + 503, + 217 + ], + "lines": [ + { + "bbox": [ + 105, + 195, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 195, + 275, + 209 + ], + "score": 1.0, + "content": "Ritter et al. (2018a) use a hyperparameter", + "type": "text" + }, + { + "bbox": [ + 276, + 197, + 282, + 206 + ], + "score": 0.82, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 195, + 505, + 209 + ], + "score": 1.0, + "content": "as a multiplier to the Hessian when updating the preci-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 207, + 129, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 207, + 129, + 219 + ], + "score": 1.0, + "content": "sion:", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "interline_equation", + "bbox": [ + 261, + 218, + 350, + 232 + ], + "lines": [ + { + "bbox": [ + 261, + 218, + 350, + 232 + ], + "spans": [ + { + "bbox": [ + 261, + 218, + 350, + 232 + ], + "score": 0.92, + "content": "\\Lambda _ { t + 1 } = \\lambda H _ { t + 1 } + \\Lambda _ { t } .", + "type": "interline_equation", + "image_path": "6bf45a96e5aabdd9e5a0e8a4301df23f10090ac658485151fff6efd9fe5c8268.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 261, + 218, + 350, + 232 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 235, + 505, + 313 + ], + "lines": [ + { + "bbox": [ + 105, + 235, + 506, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 506, + 249 + ], + "score": 1.0, + "content": "In the large-scale supervised classification setting, this hyperparameter has a regularising effect on", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 247, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 106, + 247, + 505, + 260 + ], + "score": 1.0, + "content": "the Gaussian posterior approximation for a balance between having a good performance on a new", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 468, + 271 + ], + "score": 1.0, + "content": "dataset and maintaining the performance on previous datasets (Ritter et al., 2018a). A large", + "type": "text" + }, + { + "bbox": [ + 469, + 258, + 475, + 268 + ], + "score": 0.74, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 258, + 505, + 271 + ], + "score": 1.0, + "content": "results", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 269, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 269, + 505, + 282 + ], + "score": 1.0, + "content": "in a sharply peaked Gaussian posterior and is therefore unable to learn new datasets well, but can", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 279, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 327, + 293 + ], + "score": 1.0, + "content": "prevent forgetting previously learned datasets. A small", + "type": "text" + }, + { + "bbox": [ + 328, + 280, + 335, + 290 + ], + "score": 0.79, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 279, + 505, + 293 + ], + "score": 1.0, + "content": "on the other hand gives a dispersed Gaus-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 291, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 505, + 303 + ], + "score": 1.0, + "content": "sian posterior and allows better performance on new datasets by sacrificing the performance on the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 303, + 180, + 314 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 180, + 314 + ], + "score": 1.0, + "content": "previous datasets.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13 + }, + { + "type": "title", + "bbox": [ + 108, + 328, + 293, + 339 + ], + "lines": [ + { + "bbox": [ + 106, + 327, + 295, + 341 + ], + "spans": [ + { + "bbox": [ + 106, + 327, + 295, + 341 + ], + "score": 1.0, + "content": "A.4 VARIATIONAL CONTINUAL LEARNING", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 108, + 348, + 504, + 405 + ], + "lines": [ + { + "bbox": [ + 106, + 348, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 348, + 505, + 362 + ], + "score": 1.0, + "content": "The variational continual learning method (Nguyen et al., 2018) also provides a suitable meta-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 359, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 505, + 373 + ], + "score": 1.0, + "content": "training framework for Bayesian online meta-learning in Eq. (5). Consider approximating the pos-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 370, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 131, + 384 + ], + "score": 1.0, + "content": "terior", + "type": "text" + }, + { + "bbox": [ + 131, + 372, + 137, + 383 + ], + "score": 0.77, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 370, + 372, + 384 + ], + "score": 1.0, + "content": "by minimising the KL-divergence between the parametric", + "type": "text" + }, + { + "bbox": [ + 372, + 372, + 379, + 383 + ], + "score": 0.79, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 370, + 505, + 384 + ], + "score": 1.0, + "content": "and the new posterior as in the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 381, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 245, + 394 + ], + "score": 1.0, + "content": "projection step in Eq. (17), where", + "type": "text" + }, + { + "bbox": [ + 245, + 383, + 252, + 393 + ], + "score": 0.79, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 381, + 505, + 394 + ], + "score": 1.0, + "content": "belongs to some pre-determined approximate posterior family", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 107, + 392, + 199, + 407 + ], + "spans": [ + { + "bbox": [ + 107, + 393, + 116, + 403 + ], + "score": 0.83, + "content": "\\mathcal { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 392, + 183, + 407 + ], + "score": 1.0, + "content": "with parameters", + "type": "text" + }, + { + "bbox": [ + 184, + 394, + 194, + 405 + ], + "score": 0.88, + "content": "\\phi _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 392, + 199, + 407 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20 + }, + { + "type": "interline_equation", + "bbox": [ + 151, + 409, + 458, + 456 + ], + "lines": [ + { + "bbox": [ + 151, + 409, + 458, + 456 + ], + "spans": [ + { + "bbox": [ + 151, + 409, + 458, + 456 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { q ( \\theta | \\phi _ { t + 1 } ) = \\underset { q \\in \\mathcal { Q } } { \\arg \\operatorname* { m i n } } D _ { \\mathrm { K L } } ( q ( \\theta | \\phi ) \\| p ( \\mathcal { D } _ { t + 1 } | \\theta ) q ( \\theta | \\phi _ { t } ) ) } \\\\ & { \\qquad = \\underset { q \\in \\mathcal { Q } } { \\arg \\operatorname* { m i n } } \\big \\{ - \\mathbb { E } _ { q ( \\theta | \\phi ) } [ \\log p ( \\mathcal { D } _ { t + 1 } | \\theta ) ] + D _ { \\mathrm { K L } } ( q ( \\theta | \\phi ) \\| q ( \\theta | \\phi _ { t } ) ) \\big \\} . } \\end{array}", + "type": "interline_equation", + "image_path": "d9274b26e342e6942600d43106c57c106ad5c5fc74a1e9cf7cb8f03a8668d6e4.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 151, + 409, + 458, + 424.6666666666667 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 151, + 424.6666666666667, + 458, + 440.33333333333337 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 151, + 440.33333333333337, + 458, + 456.00000000000006 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 466, + 309, + 479 + ], + "lines": [ + { + "bbox": [ + 106, + 466, + 309, + 481 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 309, + 481 + ], + "score": 1.0, + "content": "The optimisation in Eq. (32) leads to the objective", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "interline_equation", + "bbox": [ + 162, + 484, + 450, + 507 + ], + "lines": [ + { + "bbox": [ + 162, + 484, + 450, + 507 + ], + "spans": [ + { + "bbox": [ + 162, + 484, + 450, + 507 + ], + "score": 0.9, + "content": "\\phi _ { t + 1 } = \\underset { \\phi } { \\arg \\operatorname* { m i n } } \\big \\{ - \\mathbb { E } _ { q ( \\theta | \\phi ) } [ \\log p ( \\mathcal { D } _ { t + 1 } | \\theta ) ] + D _ { \\mathrm { K L } } ( q ( \\theta | \\phi ) \\| q ( \\theta | \\phi _ { t } ) ) \\big \\} .", + "type": "interline_equation", + "image_path": "2e930ae7499d5b3ec81d6291b95368d3720d81d32369c6162a5a05c122d07e72.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 162, + 484, + 450, + 507 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 514, + 505, + 563 + ], + "lines": [ + { + "bbox": [ + 105, + 514, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 347, + 530 + ], + "score": 1.0, + "content": "One can use a Gaussian mean-field approximate posterior", + "type": "text" + }, + { + "bbox": [ + 347, + 514, + 473, + 529 + ], + "score": 0.91, + "content": "\\begin{array} { r } { q ( \\theta | \\phi _ { t } ) = \\prod _ { d = 1 } ^ { D } N ( \\mu _ { t , d } , \\sigma _ { t , d } ^ { 2 } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 514, + 506, + 530 + ], + "score": 1.0, + "content": ", where", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 524, + 508, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 191, + 542 + ], + "score": 0.92, + "content": "\\phi _ { t } = \\{ \\mu _ { t , d } , \\sigma _ { t , d } \\} _ { d = 1 } ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 524, + 209, + 547 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 210, + 529, + 261, + 541 + ], + "score": 0.91, + "content": "D = \\dim ( \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 524, + 508, + 547 + ], + "score": 1.0, + "content": ". The first term in Eq. (33) can be estimated via Monte Carlo", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 540, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 506, + 553 + ], + "score": 1.0, + "content": "with local reparameterisation trick (Kingma et al., 2015), and the second KL-divergence term has a", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 551, + 264, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 264, + 563 + ], + "score": 1.0, + "content": "closed form for Gaussian distributions.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5 + }, + { + "type": "title", + "bbox": [ + 108, + 580, + 199, + 593 + ], + "lines": [ + { + "bbox": [ + 104, + 578, + 200, + 595 + ], + "spans": [ + { + "bbox": [ + 104, + 578, + 200, + 595 + ], + "score": 1.0, + "content": "B ALGORITHMS", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "title", + "bbox": [ + 108, + 605, + 225, + 617 + ], + "lines": [ + { + "bbox": [ + 105, + 605, + 226, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 226, + 618 + ], + "score": 1.0, + "content": "B.1 BOMLA AND BOMVI", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 626, + 505, + 682 + ], + "lines": [ + { + "bbox": [ + 106, + 627, + 504, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 504, + 639 + ], + "score": 1.0, + "content": "Algorithm 1 gives the pseudo-code of the BOMLA algorithm for the sequential datasets setting, with", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "score": 1.0, + "content": "the corresponding variation for the sequential tasks setting in brackets. The algorithm is formed of", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 649, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 662 + ], + "score": 1.0, + "content": "three main elements: meta-training on a specific dataset or task (line 4 – 11), updating the Gaussian", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 660, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 506, + 673 + ], + "score": 1.0, + "content": "mean (line 12) and updating the Gaussian precision (line 13 – 16). For the precision update, we", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 670, + 482, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 482, + 684 + ], + "score": 1.0, + "content": "approximate the Hessian using block-diagonal Kronecker-factored approximation (BD-KFA).", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "Algorithm 2 gives the pseudo-code of the BOMVI algorithm for the sequential datasets setting, with", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "the corresponding variation for the sequential tasks setting in brackets. The algorithm is formed", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "of two main elements: meta-training on a specific dataset or task (line 4 – 11) and updating the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 721, + 391, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 391, + 733 + ], + "score": 1.0, + "content": "parameters of the Gaussian mean-field approximate posterior (line 12).", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40.5 + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 307, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "15", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Finally, moving the meta-batch (or batch) averaging into the Kronecker factors gives the approxi-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 140, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 140, + 106 + ], + "score": 1.0, + "content": "mation:", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 82, + 505, + 106 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 160, + 108, + 451, + 143 + ], + "lines": [ + { + "bbox": [ + 160, + 108, + 451, + 143 + ], + "spans": [ + { + "bbox": [ + 160, + 108, + 451, + 143 + ], + "score": 0.91, + "content": "\\begin{array} { r l } & { \\widetilde { F } _ { \\ell } \\approx \\widetilde { A } _ { \\ell - 1 } \\otimes \\widetilde { G } _ { \\ell } - A _ { \\ell - 1 } \\widetilde { A } _ { \\ell - 1 } \\otimes G _ { \\ell } \\widetilde { G } _ { \\ell } - \\widetilde { A } _ { \\ell - 1 } ( A _ { \\ell - 1 } ) ^ { T } \\otimes \\widetilde { G } _ { \\ell } ( G _ { \\ell } ) ^ { T } } \\\\ & { \\qquad + A _ { \\ell - 1 } \\widetilde { A } _ { \\ell - 1 } ( A _ { \\ell - 1 } ) ^ { T } \\otimes G _ { \\ell } \\widetilde { G } _ { \\ell } ( G _ { \\ell } ) ^ { T } , } \\end{array}", + "type": "interline_equation", + "image_path": "79017d6ac10f7bd4d154b80b7a499facd06abe7c9ae7a9273c24d017271f9433.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 160, + 108, + 451, + 119.66666666666667 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 160, + 119.66666666666667, + 451, + 131.33333333333334 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 160, + 131.33333333333334, + 451, + 143.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 148, + 487, + 166 + ], + "lines": [ + { + "bbox": [ + 104, + 146, + 490, + 168 + ], + "spans": [ + { + "bbox": [ + 104, + 146, + 133, + 168 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 148, + 442, + 165 + ], + "score": 0.51, + "content": "\\begin{array} { r } { \\tilde { A } _ { \\ell - 1 } = \\frac { 1 } { M } \\sum _ { m } \\tilde { A } _ { \\ell - 1 } ^ { m } , \\tilde { G } _ { \\ell } = \\frac { 1 } { M } \\sum _ { m } \\tilde { G } _ { \\ell } ^ { m } , A _ { \\ell - 1 } \\tilde { A } _ { \\ell - 1 } = \\frac { 1 } { M } \\sum _ { m } A _ { \\ell - 1 } ^ { m } \\tilde { A } _ { \\ell - 1 } ^ { m } . } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 146, + 490, + 168 + ], + "score": 1.0, + "content": "and so on.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 104, + 146, + 490, + 168 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 176, + 445, + 188 + ], + "lines": [ + { + "bbox": [ + 106, + 177, + 446, + 188 + ], + "spans": [ + { + "bbox": [ + 106, + 177, + 446, + 188 + ], + "score": 1.0, + "content": "A.3.2 POSTERIOR REGULARISING HYPERPARAMETER FOR PRECISION UPDATE", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6, + "bbox_fs": [ + 106, + 177, + 446, + 188 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 195, + 503, + 217 + ], + "lines": [ + { + "bbox": [ + 105, + 195, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 195, + 275, + 209 + ], + "score": 1.0, + "content": "Ritter et al. (2018a) use a hyperparameter", + "type": "text" + }, + { + "bbox": [ + 276, + 197, + 282, + 206 + ], + "score": 0.82, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 195, + 505, + 209 + ], + "score": 1.0, + "content": "as a multiplier to the Hessian when updating the preci-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 207, + 129, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 207, + 129, + 219 + ], + "score": 1.0, + "content": "sion:", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 195, + 505, + 219 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 261, + 218, + 350, + 232 + ], + "lines": [ + { + "bbox": [ + 261, + 218, + 350, + 232 + ], + "spans": [ + { + "bbox": [ + 261, + 218, + 350, + 232 + ], + "score": 0.92, + "content": "\\Lambda _ { t + 1 } = \\lambda H _ { t + 1 } + \\Lambda _ { t } .", + "type": "interline_equation", + "image_path": "6bf45a96e5aabdd9e5a0e8a4301df23f10090ac658485151fff6efd9fe5c8268.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 261, + 218, + 350, + 232 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 235, + 505, + 313 + ], + "lines": [ + { + "bbox": [ + 105, + 235, + 506, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 506, + 249 + ], + "score": 1.0, + "content": "In the large-scale supervised classification setting, this hyperparameter has a regularising effect on", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 247, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 106, + 247, + 505, + 260 + ], + "score": 1.0, + "content": "the Gaussian posterior approximation for a balance between having a good performance on a new", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 468, + 271 + ], + "score": 1.0, + "content": "dataset and maintaining the performance on previous datasets (Ritter et al., 2018a). A large", + "type": "text" + }, + { + "bbox": [ + 469, + 258, + 475, + 268 + ], + "score": 0.74, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 258, + 505, + 271 + ], + "score": 1.0, + "content": "results", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 269, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 269, + 505, + 282 + ], + "score": 1.0, + "content": "in a sharply peaked Gaussian posterior and is therefore unable to learn new datasets well, but can", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 279, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 327, + 293 + ], + "score": 1.0, + "content": "prevent forgetting previously learned datasets. A small", + "type": "text" + }, + { + "bbox": [ + 328, + 280, + 335, + 290 + ], + "score": 0.79, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 279, + 505, + 293 + ], + "score": 1.0, + "content": "on the other hand gives a dispersed Gaus-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 291, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 505, + 303 + ], + "score": 1.0, + "content": "sian posterior and allows better performance on new datasets by sacrificing the performance on the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 303, + 180, + 314 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 180, + 314 + ], + "score": 1.0, + "content": "previous datasets.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 235, + 506, + 314 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 328, + 293, + 339 + ], + "lines": [ + { + "bbox": [ + 106, + 327, + 295, + 341 + ], + "spans": [ + { + "bbox": [ + 106, + 327, + 295, + 341 + ], + "score": 1.0, + "content": "A.4 VARIATIONAL CONTINUAL LEARNING", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 108, + 348, + 504, + 405 + ], + "lines": [ + { + "bbox": [ + 106, + 348, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 348, + 505, + 362 + ], + "score": 1.0, + "content": "The variational continual learning method (Nguyen et al., 2018) also provides a suitable meta-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 359, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 505, + 373 + ], + "score": 1.0, + "content": "training framework for Bayesian online meta-learning in Eq. (5). Consider approximating the pos-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 370, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 131, + 384 + ], + "score": 1.0, + "content": "terior", + "type": "text" + }, + { + "bbox": [ + 131, + 372, + 137, + 383 + ], + "score": 0.77, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 370, + 372, + 384 + ], + "score": 1.0, + "content": "by minimising the KL-divergence between the parametric", + "type": "text" + }, + { + "bbox": [ + 372, + 372, + 379, + 383 + ], + "score": 0.79, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 370, + 505, + 384 + ], + "score": 1.0, + "content": "and the new posterior as in the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 381, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 245, + 394 + ], + "score": 1.0, + "content": "projection step in Eq. (17), where", + "type": "text" + }, + { + "bbox": [ + 245, + 383, + 252, + 393 + ], + "score": 0.79, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 381, + 505, + 394 + ], + "score": 1.0, + "content": "belongs to some pre-determined approximate posterior family", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 107, + 392, + 199, + 407 + ], + "spans": [ + { + "bbox": [ + 107, + 393, + 116, + 403 + ], + "score": 0.83, + "content": "\\mathcal { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 392, + 183, + 407 + ], + "score": 1.0, + "content": "with parameters", + "type": "text" + }, + { + "bbox": [ + 184, + 394, + 194, + 405 + ], + "score": 0.88, + "content": "\\phi _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 392, + 199, + 407 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 348, + 505, + 407 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 151, + 409, + 458, + 456 + ], + "lines": [ + { + "bbox": [ + 151, + 409, + 458, + 456 + ], + "spans": [ + { + "bbox": [ + 151, + 409, + 458, + 456 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { q ( \\theta | \\phi _ { t + 1 } ) = \\underset { q \\in \\mathcal { Q } } { \\arg \\operatorname* { m i n } } D _ { \\mathrm { K L } } ( q ( \\theta | \\phi ) \\| p ( \\mathcal { D } _ { t + 1 } | \\theta ) q ( \\theta | \\phi _ { t } ) ) } \\\\ & { \\qquad = \\underset { q \\in \\mathcal { Q } } { \\arg \\operatorname* { m i n } } \\big \\{ - \\mathbb { E } _ { q ( \\theta | \\phi ) } [ \\log p ( \\mathcal { D } _ { t + 1 } | \\theta ) ] + D _ { \\mathrm { K L } } ( q ( \\theta | \\phi ) \\| q ( \\theta | \\phi _ { t } ) ) \\big \\} . } \\end{array}", + "type": "interline_equation", + "image_path": "d9274b26e342e6942600d43106c57c106ad5c5fc74a1e9cf7cb8f03a8668d6e4.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 151, + 409, + 458, + 424.6666666666667 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 151, + 424.6666666666667, + 458, + 440.33333333333337 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 151, + 440.33333333333337, + 458, + 456.00000000000006 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 466, + 309, + 479 + ], + "lines": [ + { + "bbox": [ + 106, + 466, + 309, + 481 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 309, + 481 + ], + "score": 1.0, + "content": "The optimisation in Eq. (32) leads to the objective", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26, + "bbox_fs": [ + 106, + 466, + 309, + 481 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 162, + 484, + 450, + 507 + ], + "lines": [ + { + "bbox": [ + 162, + 484, + 450, + 507 + ], + "spans": [ + { + "bbox": [ + 162, + 484, + 450, + 507 + ], + "score": 0.9, + "content": "\\phi _ { t + 1 } = \\underset { \\phi } { \\arg \\operatorname* { m i n } } \\big \\{ - \\mathbb { E } _ { q ( \\theta | \\phi ) } [ \\log p ( \\mathcal { D } _ { t + 1 } | \\theta ) ] + D _ { \\mathrm { K L } } ( q ( \\theta | \\phi ) \\| q ( \\theta | \\phi _ { t } ) ) \\big \\} .", + "type": "interline_equation", + "image_path": "2e930ae7499d5b3ec81d6291b95368d3720d81d32369c6162a5a05c122d07e72.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 162, + 484, + 450, + 507 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 514, + 505, + 563 + ], + "lines": [ + { + "bbox": [ + 105, + 514, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 347, + 530 + ], + "score": 1.0, + "content": "One can use a Gaussian mean-field approximate posterior", + "type": "text" + }, + { + "bbox": [ + 347, + 514, + 473, + 529 + ], + "score": 0.91, + "content": "\\begin{array} { r } { q ( \\theta | \\phi _ { t } ) = \\prod _ { d = 1 } ^ { D } N ( \\mu _ { t , d } , \\sigma _ { t , d } ^ { 2 } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 514, + 506, + 530 + ], + "score": 1.0, + "content": ", where", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 524, + 508, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 191, + 542 + ], + "score": 0.92, + "content": "\\phi _ { t } = \\{ \\mu _ { t , d } , \\sigma _ { t , d } \\} _ { d = 1 } ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 524, + 209, + 547 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 210, + 529, + 261, + 541 + ], + "score": 0.91, + "content": "D = \\dim ( \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 524, + 508, + 547 + ], + "score": 1.0, + "content": ". The first term in Eq. (33) can be estimated via Monte Carlo", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 540, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 506, + 553 + ], + "score": 1.0, + "content": "with local reparameterisation trick (Kingma et al., 2015), and the second KL-divergence term has a", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 551, + 264, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 264, + 563 + ], + "score": 1.0, + "content": "closed form for Gaussian distributions.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 514, + 508, + 563 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 580, + 199, + 593 + ], + "lines": [ + { + "bbox": [ + 104, + 578, + 200, + 595 + ], + "spans": [ + { + "bbox": [ + 104, + 578, + 200, + 595 + ], + "score": 1.0, + "content": "B ALGORITHMS", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "title", + "bbox": [ + 108, + 605, + 225, + 617 + ], + "lines": [ + { + "bbox": [ + 105, + 605, + 226, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 226, + 618 + ], + "score": 1.0, + "content": "B.1 BOMLA AND BOMVI", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 626, + 505, + 682 + ], + "lines": [ + { + "bbox": [ + 106, + 627, + 504, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 504, + 639 + ], + "score": 1.0, + "content": "Algorithm 1 gives the pseudo-code of the BOMLA algorithm for the sequential datasets setting, with", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "score": 1.0, + "content": "the corresponding variation for the sequential tasks setting in brackets. The algorithm is formed of", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 649, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 662 + ], + "score": 1.0, + "content": "three main elements: meta-training on a specific dataset or task (line 4 – 11), updating the Gaussian", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 660, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 506, + 673 + ], + "score": 1.0, + "content": "mean (line 12) and updating the Gaussian precision (line 13 – 16). For the precision update, we", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 670, + 482, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 482, + 684 + ], + "score": 1.0, + "content": "approximate the Hessian using block-diagonal Kronecker-factored approximation (BD-KFA).", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 627, + 506, + 684 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "Algorithm 2 gives the pseudo-code of the BOMVI algorithm for the sequential datasets setting, with", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "the corresponding variation for the sequential tasks setting in brackets. The algorithm is formed", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "of two main elements: meta-training on a specific dataset or task (line 4 – 11) and updating the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 721, + 391, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 391, + 733 + ], + "score": 1.0, + "content": "parameters of the Gaussian mean-field approximate posterior (line 12).", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 687, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 95, + 506, + 302 + ], + "lines": [ + { + "bbox": [ + 110, + 96, + 506, + 111 + ], + "spans": [ + { + "bbox": [ + 110, + 97, + 287, + 111 + ], + "score": 1.0, + "content": "1: Require: sequential datasets (or tasks)", + "type": "text" + }, + { + "bbox": [ + 288, + 96, + 336, + 110 + ], + "score": 0.91, + "content": "\\widetilde { \\mathcal { D } } _ { 1 } , \\ldots , \\widetilde { \\mathcal { D } } _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 97, + 396, + 111 + ], + "score": 1.0, + "content": ", learning rate", + "type": "text" + }, + { + "bbox": [ + 396, + 101, + 404, + 109 + ], + "score": 0.72, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 97, + 494, + 111 + ], + "score": 1.0, + "content": ", posterior regulariser", + "type": "text" + }, + { + "bbox": [ + 494, + 99, + 501, + 108 + ], + "score": 0.73, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 97, + 506, + 111 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 122, + 109, + 492, + 121 + ], + "spans": [ + { + "bbox": [ + 122, + 109, + 311, + 121 + ], + "score": 1.0, + "content": "number of meta-training iterations (or epochs)", + "type": "text" + }, + { + "bbox": [ + 311, + 110, + 318, + 119 + ], + "score": 0.78, + "content": "J", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 109, + 480, + 121 + ], + "score": 1.0, + "content": ", meta-batch size (or number of batches)", + "type": "text" + }, + { + "bbox": [ + 480, + 110, + 492, + 119 + ], + "score": 0.69, + "content": "M", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 110, + 119, + 205, + 132 + ], + "spans": [ + { + "bbox": [ + 110, + 119, + 167, + 132 + ], + "score": 1.0, + "content": "2: Initialise:", + "type": "text" + }, + { + "bbox": [ + 167, + 120, + 195, + 132 + ], + "score": 0.66, + "content": "\\mu _ { 0 } , \\Lambda _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 119, + 198, + 132 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 199, + 121, + 205, + 130 + ], + "score": 0.48, + "content": "\\theta", + "type": "inline_equation" + } + ], + "index": 2 + }, + { + "bbox": [ + 110, + 131, + 197, + 143 + ], + "spans": [ + { + "bbox": [ + 110, + 131, + 138, + 143 + ], + "score": 1.0, + "content": "3: for", + "type": "text" + }, + { + "bbox": [ + 138, + 132, + 162, + 141 + ], + "score": 0.89, + "content": "t = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 131, + 173, + 143 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 173, + 132, + 182, + 141 + ], + "score": 0.76, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 131, + 197, + 143 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 110, + 140, + 504, + 154 + ], + "spans": [ + { + "bbox": [ + 110, + 142, + 122, + 154 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 137, + 142, + 153, + 154 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 154, + 143, + 205, + 154 + ], + "score": 0.82, + "content": "i = 1 , \\dots , J", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 142, + 220, + 154 + ], + "score": 1.0, + "content": "do", + "type": "text" + }, + { + "bbox": [ + 266, + 144, + 273, + 152 + ], + "score": 0.32, + "content": "\\triangleright", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 141, + 401, + 154 + ], + "score": 1.0, + "content": "meta-training on dataset or task", + "type": "text" + }, + { + "bbox": [ + 402, + 140, + 444, + 153 + ], + "score": 0.44, + "content": "\\widetilde { \\cal D } _ { t } \\quad", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 141, + 496, + 154 + ], + "score": 1.0, + "content": "New: added", + "type": "text" + }, + { + "bbox": [ + 496, + 143, + 504, + 153 + ], + "score": 0.69, + "content": "\\cdot", + "type": "inline_equation" + } + ], + "index": 4 + }, + { + "bbox": [ + 110, + 153, + 235, + 165 + ], + "spans": [ + { + "bbox": [ + 110, + 154, + 122, + 165 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 153, + 153, + 168, + 164 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 168, + 154, + 196, + 164 + ], + "score": 0.89, + "content": "m = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 153, + 208, + 164 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 209, + 154, + 221, + 163 + ], + "score": 0.72, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 153, + 235, + 164 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 110, + 160, + 383, + 177 + ], + "spans": [ + { + "bbox": [ + 110, + 164, + 122, + 176 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 165, + 160, + 295, + 177 + ], + "score": 1.0, + "content": "Sample task (or split the batch)", + "type": "text" + }, + { + "bbox": [ + 295, + 162, + 383, + 176 + ], + "score": 0.81, + "content": "\\widetilde { \\mathcal { D } } _ { t } ^ { m } = \\widetilde { \\mathcal { D } } _ { t } ^ { m , S } \\cup \\widetilde { \\mathcal { D } } _ { t } ^ { m , Q }", + "type": "inline_equation" + } + ], + "index": 6 + }, + { + "bbox": [ + 110, + 174, + 329, + 191 + ], + "spans": [ + { + "bbox": [ + 110, + 177, + 122, + 189 + ], + "score": 1.0, + "content": "7:", + "type": "text" + }, + { + "bbox": [ + 167, + 174, + 221, + 191 + ], + "score": 1.0, + "content": "Inner update", + "type": "text" + }, + { + "bbox": [ + 221, + 176, + 329, + 190 + ], + "score": 0.87, + "content": "\\tilde { \\theta } ^ { m } = S G D _ { k } ( \\mathcal { L } ( \\theta , \\widetilde { D } _ { t } ^ { m , S } ) )", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 110, + 188, + 186, + 200 + ], + "spans": [ + { + "bbox": [ + 110, + 188, + 122, + 200 + ], + "score": 1.0, + "content": "8:", + "type": "text" + }, + { + "bbox": [ + 153, + 188, + 186, + 200 + ], + "score": 1.0, + "content": "end for", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 109, + 195, + 346, + 213 + ], + "spans": [ + { + "bbox": [ + 109, + 198, + 122, + 211 + ], + "score": 1.0, + "content": "9:", + "type": "text" + }, + { + "bbox": [ + 150, + 195, + 209, + 213 + ], + "score": 1.0, + "content": "Evaluate loss", + "type": "text" + }, + { + "bbox": [ + 209, + 198, + 303, + 210 + ], + "score": 0.89, + "content": "f _ { t } ^ { \\mathrm { B o u L A } } ( \\theta , \\mu _ { t - 1 } , \\Lambda _ { t - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 195, + 346, + 213 + ], + "score": 1.0, + "content": "in Eq. (8)", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 205, + 359, + 225 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 122, + 222 + ], + "score": 1.0, + "content": "10:", + "type": "text" + }, + { + "bbox": [ + 151, + 205, + 207, + 225 + ], + "score": 1.0, + "content": "Outer update", + "type": "text" + }, + { + "bbox": [ + 208, + 210, + 359, + 222 + ], + "score": 0.82, + "content": "\\theta \\gets \\theta - \\alpha \\nabla _ { \\theta } f _ { t } ^ { \\mathrm { B o M L A } } ( \\theta , \\mu _ { t - 1 } , \\Lambda _ { t - 1 } )", + "type": "inline_equation" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 221, + 172, + 233 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 122, + 233 + ], + "score": 1.0, + "content": "11:", + "type": "text" + }, + { + "bbox": [ + 137, + 221, + 172, + 233 + ], + "score": 1.0, + "content": "end for", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 231, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 122, + 245 + ], + "score": 1.0, + "content": "12:", + "type": "text" + }, + { + "bbox": [ + 138, + 232, + 194, + 244 + ], + "score": 1.0, + "content": "Update mean", + "type": "text" + }, + { + "bbox": [ + 194, + 233, + 225, + 244 + ], + "score": 0.9, + "content": "\\mu _ { t } \\gets \\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 234, + 414, + 243 + ], + "score": 0.47, + "content": "\\triangleright", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 232, + 505, + 245 + ], + "score": 1.0, + "content": "update posterior mean", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 243, + 409, + 255 + ], + "spans": [ + { + "bbox": [ + 106, + 243, + 122, + 255 + ], + "score": 1.0, + "content": "13:", + "type": "text" + }, + { + "bbox": [ + 137, + 243, + 264, + 255 + ], + "score": 1.0, + "content": "For sequential datasets, sample", + "type": "text" + }, + { + "bbox": [ + 265, + 244, + 277, + 253 + ], + "score": 0.79, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 243, + 409, + 255 + ], + "score": 1.0, + "content": "tasks for Hessian approximation", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 254, + 374, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 122, + 266 + ], + "score": 1.0, + "content": "14:", + "type": "text" + }, + { + "bbox": [ + 137, + 254, + 374, + 266 + ], + "score": 1.0, + "content": "Run inner update in line 7 for each task (or for each batch)", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 264, + 333, + 280 + ], + "spans": [ + { + "bbox": [ + 106, + 267, + 122, + 279 + ], + "score": 1.0, + "content": "15:", + "type": "text" + }, + { + "bbox": [ + 137, + 266, + 193, + 280 + ], + "score": 1.0, + "content": "Approximate", + "type": "text" + }, + { + "bbox": [ + 194, + 264, + 207, + 278 + ], + "score": 0.9, + "content": "\\widetilde { H } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 266, + 277, + 280 + ], + "score": 1.0, + "content": "with BD-KFA to", + "type": "text" + }, + { + "bbox": [ + 277, + 265, + 286, + 277 + ], + "score": 0.85, + "content": "\\widetilde { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 266, + 333, + 280 + ], + "score": 1.0, + "content": "in Eq. (11)", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 277, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 279, + 122, + 292 + ], + "score": 1.0, + "content": "16:", + "type": "text" + }, + { + "bbox": [ + 137, + 279, + 209, + 293 + ], + "score": 1.0, + "content": "Update precision", + "type": "text" + }, + { + "bbox": [ + 209, + 277, + 286, + 291 + ], + "score": 0.92, + "content": "\\Lambda _ { t } \\gets \\lambda \\widetilde { H } _ { t } + \\Lambda _ { t - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 281, + 398, + 290 + ], + "score": 0.31, + "content": "\\triangleright", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 280, + 505, + 293 + ], + "score": 1.0, + "content": "update posterior precision", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 289, + 158, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 158, + 304 + ], + "score": 1.0, + "content": "17: end for", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 8.5 + }, + { + "type": "title", + "bbox": [ + 106, + 316, + 431, + 329 + ], + "lines": [ + { + "bbox": [ + 105, + 315, + 432, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 432, + 331 + ], + "score": 1.0, + "content": "Algorithm 2 Bayesian online meta-learning with variational inference (BOMVI)", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 109, + 331, + 506, + 491 + ], + "lines": [ + { + "bbox": [ + 109, + 330, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 109, + 330, + 284, + 347 + ], + "score": 1.0, + "content": "1: Require: sequential datasets (or tasks)", + "type": "text" + }, + { + "bbox": [ + 284, + 330, + 334, + 344 + ], + "score": 0.91, + "content": "\\widetilde { \\mathcal { D } } _ { 1 } , \\ldots , \\widetilde { \\mathcal { D } } _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 330, + 392, + 347 + ], + "score": 1.0, + "content": ", learning rate", + "type": "text" + }, + { + "bbox": [ + 392, + 335, + 399, + 343 + ], + "score": 0.76, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 330, + 506, + 347 + ], + "score": 1.0, + "content": ", number of meta-training", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 122, + 343, + 393, + 356 + ], + "spans": [ + { + "bbox": [ + 122, + 343, + 210, + 356 + ], + "score": 1.0, + "content": "iterations (or epochs)", + "type": "text" + }, + { + "bbox": [ + 211, + 344, + 218, + 354 + ], + "score": 0.79, + "content": "J", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 343, + 380, + 356 + ], + "score": 1.0, + "content": ", meta-batch size (or number of batches)", + "type": "text" + }, + { + "bbox": [ + 380, + 344, + 393, + 354 + ], + "score": 0.77, + "content": "M", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 109, + 354, + 227, + 368 + ], + "spans": [ + { + "bbox": [ + 109, + 354, + 167, + 368 + ], + "score": 1.0, + "content": "2: Initialise:", + "type": "text" + }, + { + "bbox": [ + 167, + 355, + 227, + 367 + ], + "score": 0.91, + "content": "\\phi _ { 0 } = \\{ \\mu _ { 0 } , \\sigma _ { 0 } \\}", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 110, + 365, + 198, + 378 + ], + "spans": [ + { + "bbox": [ + 110, + 365, + 138, + 378 + ], + "score": 1.0, + "content": "3: for", + "type": "text" + }, + { + "bbox": [ + 138, + 366, + 162, + 376 + ], + "score": 0.89, + "content": "t = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 365, + 173, + 378 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 173, + 367, + 182, + 376 + ], + "score": 0.58, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 365, + 198, + 378 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 110, + 375, + 504, + 389 + ], + "spans": [ + { + "bbox": [ + 110, + 377, + 122, + 388 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 136, + 376, + 153, + 389 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 154, + 377, + 214, + 388 + ], + "score": 0.86, + "content": "i = 1 , 2 , \\dots , J", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 376, + 230, + 389 + ], + "score": 1.0, + "content": "do", + "type": "text" + }, + { + "bbox": [ + 265, + 379, + 273, + 387 + ], + "score": 0.35, + "content": "\\triangleright", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 376, + 401, + 388 + ], + "score": 1.0, + "content": "meta-training on dataset or task", + "type": "text" + }, + { + "bbox": [ + 402, + 375, + 444, + 388 + ], + "score": 0.51, + "content": "\\widetilde { \\cal D } _ { t } \\quad", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 376, + 496, + 388 + ], + "score": 1.0, + "content": "New: added", + "type": "text" + }, + { + "bbox": [ + 496, + 377, + 504, + 387 + ], + "score": 0.67, + "content": "\\cdot", + "type": "inline_equation" + } + ], + "index": 23 + }, + { + "bbox": [ + 109, + 387, + 234, + 400 + ], + "spans": [ + { + "bbox": [ + 109, + 387, + 122, + 400 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 152, + 387, + 168, + 398 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 168, + 389, + 196, + 398 + ], + "score": 0.87, + "content": "m = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 387, + 208, + 398 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 209, + 388, + 221, + 398 + ], + "score": 0.71, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 387, + 234, + 398 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 110, + 396, + 384, + 411 + ], + "spans": [ + { + "bbox": [ + 110, + 399, + 122, + 411 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 165, + 396, + 295, + 411 + ], + "score": 1.0, + "content": "Sample task (or split the batch)", + "type": "text" + }, + { + "bbox": [ + 295, + 396, + 384, + 411 + ], + "score": 0.87, + "content": "\\widetilde { \\mathcal { D } } _ { t } ^ { m } = \\widetilde { \\mathcal { D } } _ { t } ^ { m , S } \\cup \\widetilde { \\mathcal { D } } _ { t } ^ { m , Q }", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 110, + 408, + 330, + 425 + ], + "spans": [ + { + "bbox": [ + 110, + 412, + 122, + 424 + ], + "score": 1.0, + "content": "7:", + "type": "text" + }, + { + "bbox": [ + 166, + 408, + 221, + 425 + ], + "score": 1.0, + "content": "Inner update", + "type": "text" + }, + { + "bbox": [ + 221, + 410, + 330, + 424 + ], + "score": 0.89, + "content": "\\tilde { \\theta } ^ { m } = S G D _ { k } ( \\mathcal { L } ( \\theta , \\widetilde { D } _ { t } ^ { m , S } ) )", + "type": "inline_equation" + } + ], + "index": 26 + }, + { + "bbox": [ + 109, + 421, + 187, + 435 + ], + "spans": [ + { + "bbox": [ + 109, + 423, + 122, + 435 + ], + "score": 1.0, + "content": "8:", + "type": "text" + }, + { + "bbox": [ + 152, + 421, + 187, + 435 + ], + "score": 1.0, + "content": "end for", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 109, + 429, + 325, + 448 + ], + "spans": [ + { + "bbox": [ + 109, + 434, + 122, + 446 + ], + "score": 1.0, + "content": "9:", + "type": "text" + }, + { + "bbox": [ + 151, + 429, + 209, + 448 + ], + "score": 1.0, + "content": "Evaluate loss", + "type": "text" + }, + { + "bbox": [ + 209, + 433, + 276, + 446 + ], + "score": 0.88, + "content": "f _ { t } ^ { \\mathrm { B o u V I } } ( \\phi , \\phi _ { t - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 429, + 325, + 448 + ], + "score": 1.0, + "content": "in Eq. (15)", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 440, + 484, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 445, + 122, + 457 + ], + "score": 1.0, + "content": "10:", + "type": "text" + }, + { + "bbox": [ + 149, + 440, + 207, + 460 + ], + "score": 1.0, + "content": "Outer update", + "type": "text" + }, + { + "bbox": [ + 208, + 444, + 335, + 457 + ], + "score": 0.89, + "content": "\\bar { \\mu } \\mu - \\alpha \\nabla _ { \\mu } f _ { t } ^ { \\mathrm { B o M V I } } ( \\phi , \\phi _ { t - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 440, + 356, + 460 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 356, + 443, + 484, + 457 + ], + "score": 0.89, + "content": "\\sigma \\gets \\sigma - \\alpha \\nabla _ { \\sigma } f _ { t } ^ { \\mathrm { B o M V I } } ( \\phi , \\phi _ { t - 1 } )", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 455, + 172, + 467 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 122, + 467 + ], + "score": 1.0, + "content": "11:", + "type": "text" + }, + { + "bbox": [ + 137, + 455, + 172, + 467 + ], + "score": 1.0, + "content": "end for", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 123, + 479 + ], + "score": 1.0, + "content": "12:", + "type": "text" + }, + { + "bbox": [ + 137, + 466, + 169, + 479 + ], + "score": 1.0, + "content": "Update", + "type": "text" + }, + { + "bbox": [ + 170, + 468, + 202, + 478 + ], + "score": 0.89, + "content": "\\mu _ { t } \\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 466, + 220, + 479 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 220, + 468, + 252, + 478 + ], + "score": 0.83, + "content": "\\sigma _ { t } \\gets \\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 466, + 505, + 479 + ], + "score": 1.0, + "content": ". update posterior parameters", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 477, + 157, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 157, + 489 + ], + "score": 1.0, + "content": "13: end for", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 25.5 + }, + { + "type": "title", + "bbox": [ + 108, + 511, + 286, + 523 + ], + "lines": [ + { + "bbox": [ + 105, + 511, + 287, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 287, + 524 + ], + "score": 1.0, + "content": "B.2 BOMVI MONTE CARLO ESTIMATOR", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 532, + 251, + 544 + ], + "lines": [ + { + "bbox": [ + 105, + 531, + 252, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 252, + 546 + ], + "score": 1.0, + "content": "Recall that the BOMVI objective is:", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "interline_equation", + "bbox": [ + 123, + 548, + 486, + 599 + ], + "lines": [ + { + "bbox": [ + 123, + 548, + 486, + 599 + ], + "spans": [ + { + "bbox": [ + 123, + 548, + 486, + 599 + ], + "score": 0.93, + "content": "f _ { t + 1 } ^ { \\mathrm { B o M V I } } ( \\phi , \\phi _ { t } ) = - \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } \\mathbb { E } _ { q ( \\theta | \\phi ) } \\big [ \\log p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { m , Q } | \\widetilde { \\theta } ^ { m } ) \\big ] - \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } \\mathbb { E } _ { q ( \\theta | \\phi ) } \\big [ \\log p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { m , S } | \\theta ) \\big ]", + "type": "interline_equation", + "image_path": "678b43c1f0a68aeca4af82d036852f4b1f5ef45bccb79aff2378b8efe0c30363.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 123, + 548, + 486, + 565.0 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 123, + 565.0, + 486, + 582.0 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 123, + 582.0, + 486, + 599.0 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 603, + 506, + 672 + ], + "lines": [ + { + "bbox": [ + 102, + 597, + 510, + 629 + ], + "spans": [ + { + "bbox": [ + 102, + 597, + 134, + 629 + ], + "score": 1.0, + "content": "where term o", + "type": "text" + }, + { + "bbox": [ + 135, + 603, + 248, + 618 + ], + "score": 0.91, + "content": "\\tilde { \\theta } ^ { m } = S G D _ { k } ( \\mathcal { L } ( \\theta , \\widetilde { D } _ { t + 1 } ^ { m , S } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 597, + 266, + 629 + ], + "score": 1.0, + "content": "for diffic", + "type": "text" + }, + { + "bbox": [ + 267, + 605, + 332, + 617 + ], + "score": 0.91, + "content": "m = 1 , \\ldots , M", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 597, + 478, + 629 + ], + "score": 1.0, + "content": ". The Monte Carlo estimator for th as every sampled meta-parameters", + "type": "text" + }, + { + "bbox": [ + 488, + 597, + 510, + 629 + ], + "score": 1.0, + "content": "firstfor", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 478, + 617, + 488, + 627 + ], + "spans": [ + { + "bbox": [ + 478, + 617, + 488, + 627 + ], + "score": 0.87, + "content": "\\theta _ { r }", + "type": "inline_equation" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 628, + 160, + 639 + ], + "score": 0.92, + "content": "r = 1 , \\ldots , R", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 626, + 506, + 640 + ], + "score": 1.0, + "content": "has to undergo a few-shot quick adaptation prior to the log-likelihood evaluation. As a", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 637, + 504, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 493, + 651 + ], + "score": 1.0, + "content": "consequence the estimator is prone to a large variance. Moreover, every quickly-adapted sample", + "type": "text" + }, + { + "bbox": [ + 493, + 639, + 504, + 649 + ], + "score": 0.86, + "content": "\\theta _ { r }", + "type": "inline_equation" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 650, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 106, + 650, + 505, + 661 + ], + "score": 1.0, + "content": "contributes to the meta-learning gradients of the posterior mean and covariance, resulting in a high", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 660, + 315, + 673 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 315, + 673 + ], + "score": 1.0, + "content": "computational cost when taking the meta-gradients.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 107, + 678, + 505, + 713 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 473, + 691 + ], + "score": 1.0, + "content": "To solve these impediments, we introduce a slight modification to the SGD quick adaptation", + "type": "text" + }, + { + "bbox": [ + 473, + 677, + 486, + 689 + ], + "score": 0.87, + "content": "{ \\widetilde { \\theta } } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 678, + 505, + 691 + ], + "score": 1.0, + "content": ". In-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 691, + 504, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 691, + 504, + 702 + ], + "score": 1.0, + "content": "stead of taking the gradients with respect to the sampled meta-parameters, we consider the gradients", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 701, + 480, + 714 + ], + "spans": [ + { + "bbox": [ + 105, + 701, + 480, + 714 + ], + "score": 1.0, + "content": "with respect to the posterior mean. A one-step SGD quick adaptation, for instance, becomes:", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45 + }, + { + "type": "interline_equation", + "bbox": [ + 244, + 717, + 367, + 734 + ], + "lines": [ + { + "bbox": [ + 244, + 717, + 367, + 734 + ], + "spans": [ + { + "bbox": [ + 244, + 717, + 367, + 734 + ], + "score": 0.93, + "content": "\\tilde { \\theta } ^ { m } = \\theta - \\alpha \\nabla _ { \\mu _ { t } } \\mathcal { L } ( \\mu _ { t } , \\mathcal { \\tilde { D } } _ { t + 1 } ^ { m , S } ) .", + "type": "interline_equation", + "image_path": "77ca9b68f79603d9329d84362522d23df65f4bb92faed2f1cf7c9cf9d6a699ef.jpg" + } + ] + } + ], + "index": 47, + "virtual_lines": [ + { + "bbox": [ + 244, + 717, + 367, + 734 + ], + "spans": [], + "index": 47 + } + ] + } + ], + "page_idx": 15, + "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": "16", + "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": "index", + "bbox": [ + 108, + 95, + 506, + 302 + ], + "lines": [ + { + "bbox": [ + 110, + 96, + 506, + 111 + ], + "spans": [ + { + "bbox": [ + 110, + 97, + 287, + 111 + ], + "score": 1.0, + "content": "1: Require: sequential datasets (or tasks)", + "type": "text" + }, + { + "bbox": [ + 288, + 96, + 336, + 110 + ], + "score": 0.91, + "content": "\\widetilde { \\mathcal { D } } _ { 1 } , \\ldots , \\widetilde { \\mathcal { D } } _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 97, + 396, + 111 + ], + "score": 1.0, + "content": ", learning rate", + "type": "text" + }, + { + "bbox": [ + 396, + 101, + 404, + 109 + ], + "score": 0.72, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 97, + 494, + 111 + ], + "score": 1.0, + "content": ", posterior regulariser", + "type": "text" + }, + { + "bbox": [ + 494, + 99, + 501, + 108 + ], + "score": 0.73, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 97, + 506, + 111 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 122, + 109, + 492, + 121 + ], + "spans": [ + { + "bbox": [ + 122, + 109, + 311, + 121 + ], + "score": 1.0, + "content": "number of meta-training iterations (or epochs)", + "type": "text" + }, + { + "bbox": [ + 311, + 110, + 318, + 119 + ], + "score": 0.78, + "content": "J", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 109, + 480, + 121 + ], + "score": 1.0, + "content": ", meta-batch size (or number of batches)", + "type": "text" + }, + { + "bbox": [ + 480, + 110, + 492, + 119 + ], + "score": 0.69, + "content": "M", + "type": "inline_equation" + } + ], + "index": 1, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 119, + 205, + 132 + ], + "spans": [ + { + "bbox": [ + 110, + 119, + 167, + 132 + ], + "score": 1.0, + "content": "2: Initialise:", + "type": "text" + }, + { + "bbox": [ + 167, + 120, + 195, + 132 + ], + "score": 0.66, + "content": "\\mu _ { 0 } , \\Lambda _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 119, + 198, + 132 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 199, + 121, + 205, + 130 + ], + "score": 0.48, + "content": "\\theta", + "type": "inline_equation" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 131, + 197, + 143 + ], + "spans": [ + { + "bbox": [ + 110, + 131, + 138, + 143 + ], + "score": 1.0, + "content": "3: for", + "type": "text" + }, + { + "bbox": [ + 138, + 132, + 162, + 141 + ], + "score": 0.89, + "content": "t = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 131, + 173, + 143 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 173, + 132, + 182, + 141 + ], + "score": 0.76, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 131, + 197, + 143 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 140, + 504, + 154 + ], + "spans": [ + { + "bbox": [ + 110, + 142, + 122, + 154 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 137, + 142, + 153, + 154 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 154, + 143, + 205, + 154 + ], + "score": 0.82, + "content": "i = 1 , \\dots , J", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 142, + 220, + 154 + ], + "score": 1.0, + "content": "do", + "type": "text" + }, + { + "bbox": [ + 266, + 144, + 273, + 152 + ], + "score": 0.32, + "content": "\\triangleright", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 141, + 401, + 154 + ], + "score": 1.0, + "content": "meta-training on dataset or task", + "type": "text" + }, + { + "bbox": [ + 402, + 140, + 444, + 153 + ], + "score": 0.44, + "content": "\\widetilde { \\cal D } _ { t } \\quad", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 141, + 496, + 154 + ], + "score": 1.0, + "content": "New: added", + "type": "text" + }, + { + "bbox": [ + 496, + 143, + 504, + 153 + ], + "score": 0.69, + "content": "\\cdot", + "type": "inline_equation" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 153, + 235, + 165 + ], + "spans": [ + { + "bbox": [ + 110, + 154, + 122, + 165 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 153, + 153, + 168, + 164 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 168, + 154, + 196, + 164 + ], + "score": 0.89, + "content": "m = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 153, + 208, + 164 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 209, + 154, + 221, + 163 + ], + "score": 0.72, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 153, + 235, + 164 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 160, + 383, + 177 + ], + "spans": [ + { + "bbox": [ + 110, + 164, + 122, + 176 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 165, + 160, + 295, + 177 + ], + "score": 1.0, + "content": "Sample task (or split the batch)", + "type": "text" + }, + { + "bbox": [ + 295, + 162, + 383, + 176 + ], + "score": 0.81, + "content": "\\widetilde { \\mathcal { D } } _ { t } ^ { m } = \\widetilde { \\mathcal { D } } _ { t } ^ { m , S } \\cup \\widetilde { \\mathcal { D } } _ { t } ^ { m , Q }", + "type": "inline_equation" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 174, + 329, + 191 + ], + "spans": [ + { + "bbox": [ + 110, + 177, + 122, + 189 + ], + "score": 1.0, + "content": "7:", + "type": "text" + }, + { + "bbox": [ + 167, + 174, + 221, + 191 + ], + "score": 1.0, + "content": "Inner update", + "type": "text" + }, + { + "bbox": [ + 221, + 176, + 329, + 190 + ], + "score": 0.87, + "content": "\\tilde { \\theta } ^ { m } = S G D _ { k } ( \\mathcal { L } ( \\theta , \\widetilde { D } _ { t } ^ { m , S } ) )", + "type": "inline_equation" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 188, + 186, + 200 + ], + "spans": [ + { + "bbox": [ + 110, + 188, + 122, + 200 + ], + "score": 1.0, + "content": "8:", + "type": "text" + }, + { + "bbox": [ + 153, + 188, + 186, + 200 + ], + "score": 1.0, + "content": "end for", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 109, + 195, + 346, + 213 + ], + "spans": [ + { + "bbox": [ + 109, + 198, + 122, + 211 + ], + "score": 1.0, + "content": "9:", + "type": "text" + }, + { + "bbox": [ + 150, + 195, + 209, + 213 + ], + "score": 1.0, + "content": "Evaluate loss", + "type": "text" + }, + { + "bbox": [ + 209, + 198, + 303, + 210 + ], + "score": 0.89, + "content": "f _ { t } ^ { \\mathrm { B o u L A } } ( \\theta , \\mu _ { t - 1 } , \\Lambda _ { t - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 195, + 346, + 213 + ], + "score": 1.0, + "content": "in Eq. (8)", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 205, + 359, + 225 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 122, + 222 + ], + "score": 1.0, + "content": "10:", + "type": "text" + }, + { + "bbox": [ + 151, + 205, + 207, + 225 + ], + "score": 1.0, + "content": "Outer update", + "type": "text" + }, + { + "bbox": [ + 208, + 210, + 359, + 222 + ], + "score": 0.82, + "content": "\\theta \\gets \\theta - \\alpha \\nabla _ { \\theta } f _ { t } ^ { \\mathrm { B o M L A } } ( \\theta , \\mu _ { t - 1 } , \\Lambda _ { t - 1 } )", + "type": "inline_equation" + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 221, + 172, + 233 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 122, + 233 + ], + "score": 1.0, + "content": "11:", + "type": "text" + }, + { + "bbox": [ + 137, + 221, + 172, + 233 + ], + "score": 1.0, + "content": "end for", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 105, + 231, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 122, + 245 + ], + "score": 1.0, + "content": "12:", + "type": "text" + }, + { + "bbox": [ + 138, + 232, + 194, + 244 + ], + "score": 1.0, + "content": "Update mean", + "type": "text" + }, + { + "bbox": [ + 194, + 233, + 225, + 244 + ], + "score": 0.9, + "content": "\\mu _ { t } \\gets \\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 234, + 414, + 243 + ], + "score": 0.47, + "content": "\\triangleright", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 232, + 505, + 245 + ], + "score": 1.0, + "content": "update posterior mean", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 243, + 409, + 255 + ], + "spans": [ + { + "bbox": [ + 106, + 243, + 122, + 255 + ], + "score": 1.0, + "content": "13:", + "type": "text" + }, + { + "bbox": [ + 137, + 243, + 264, + 255 + ], + "score": 1.0, + "content": "For sequential datasets, sample", + "type": "text" + }, + { + "bbox": [ + 265, + 244, + 277, + 253 + ], + "score": 0.79, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 243, + 409, + 255 + ], + "score": 1.0, + "content": "tasks for Hessian approximation", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 254, + 374, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 122, + 266 + ], + "score": 1.0, + "content": "14:", + "type": "text" + }, + { + "bbox": [ + 137, + 254, + 374, + 266 + ], + "score": 1.0, + "content": "Run inner update in line 7 for each task (or for each batch)", + "type": "text" + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 264, + 333, + 280 + ], + "spans": [ + { + "bbox": [ + 106, + 267, + 122, + 279 + ], + "score": 1.0, + "content": "15:", + "type": "text" + }, + { + "bbox": [ + 137, + 266, + 193, + 280 + ], + "score": 1.0, + "content": "Approximate", + "type": "text" + }, + { + "bbox": [ + 194, + 264, + 207, + 278 + ], + "score": 0.9, + "content": "\\widetilde { H } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 266, + 277, + 280 + ], + "score": 1.0, + "content": "with BD-KFA to", + "type": "text" + }, + { + "bbox": [ + 277, + 265, + 286, + 277 + ], + "score": 0.85, + "content": "\\widetilde { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 266, + 333, + 280 + ], + "score": 1.0, + "content": "in Eq. (11)", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 277, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 279, + 122, + 292 + ], + "score": 1.0, + "content": "16:", + "type": "text" + }, + { + "bbox": [ + 137, + 279, + 209, + 293 + ], + "score": 1.0, + "content": "Update precision", + "type": "text" + }, + { + "bbox": [ + 209, + 277, + 286, + 291 + ], + "score": 0.92, + "content": "\\Lambda _ { t } \\gets \\lambda \\widetilde { H } _ { t } + \\Lambda _ { t - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 281, + 398, + 290 + ], + "score": 0.31, + "content": "\\triangleright", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 280, + 505, + 293 + ], + "score": 1.0, + "content": "update posterior precision", + "type": "text" + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 289, + 158, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 158, + 304 + ], + "score": 1.0, + "content": "17: end for", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 96, + 506, + 304 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 316, + 431, + 329 + ], + "lines": [ + { + "bbox": [ + 105, + 315, + 432, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 432, + 331 + ], + "score": 1.0, + "content": "Algorithm 2 Bayesian online meta-learning with variational inference (BOMVI)", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "index", + "bbox": [ + 109, + 331, + 506, + 491 + ], + "lines": [ + { + "bbox": [ + 109, + 330, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 109, + 330, + 284, + 347 + ], + "score": 1.0, + "content": "1: Require: sequential datasets (or tasks)", + "type": "text" + }, + { + "bbox": [ + 284, + 330, + 334, + 344 + ], + "score": 0.91, + "content": "\\widetilde { \\mathcal { D } } _ { 1 } , \\ldots , \\widetilde { \\mathcal { D } } _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 330, + 392, + 347 + ], + "score": 1.0, + "content": ", learning rate", + "type": "text" + }, + { + "bbox": [ + 392, + 335, + 399, + 343 + ], + "score": 0.76, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 330, + 506, + 347 + ], + "score": 1.0, + "content": ", number of meta-training", + "type": "text" + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 122, + 343, + 393, + 356 + ], + "spans": [ + { + "bbox": [ + 122, + 343, + 210, + 356 + ], + "score": 1.0, + "content": "iterations (or epochs)", + "type": "text" + }, + { + "bbox": [ + 211, + 344, + 218, + 354 + ], + "score": 0.79, + "content": "J", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 343, + 380, + 356 + ], + "score": 1.0, + "content": ", meta-batch size (or number of batches)", + "type": "text" + }, + { + "bbox": [ + 380, + 344, + 393, + 354 + ], + "score": 0.77, + "content": "M", + "type": "inline_equation" + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 109, + 354, + 227, + 368 + ], + "spans": [ + { + "bbox": [ + 109, + 354, + 167, + 368 + ], + "score": 1.0, + "content": "2: Initialise:", + "type": "text" + }, + { + "bbox": [ + 167, + 355, + 227, + 367 + ], + "score": 0.91, + "content": "\\phi _ { 0 } = \\{ \\mu _ { 0 } , \\sigma _ { 0 } \\}", + "type": "inline_equation" + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 365, + 198, + 378 + ], + "spans": [ + { + "bbox": [ + 110, + 365, + 138, + 378 + ], + "score": 1.0, + "content": "3: for", + "type": "text" + }, + { + "bbox": [ + 138, + 366, + 162, + 376 + ], + "score": 0.89, + "content": "t = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 365, + 173, + 378 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 173, + 367, + 182, + 376 + ], + "score": 0.58, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 365, + 198, + 378 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 375, + 504, + 389 + ], + "spans": [ + { + "bbox": [ + 110, + 377, + 122, + 388 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 136, + 376, + 153, + 389 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 154, + 377, + 214, + 388 + ], + "score": 0.86, + "content": "i = 1 , 2 , \\dots , J", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 376, + 230, + 389 + ], + "score": 1.0, + "content": "do", + "type": "text" + }, + { + "bbox": [ + 265, + 379, + 273, + 387 + ], + "score": 0.35, + "content": "\\triangleright", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 376, + 401, + 388 + ], + "score": 1.0, + "content": "meta-training on dataset or task", + "type": "text" + }, + { + "bbox": [ + 402, + 375, + 444, + 388 + ], + "score": 0.51, + "content": "\\widetilde { \\cal D } _ { t } \\quad", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 376, + 496, + 388 + ], + "score": 1.0, + "content": "New: added", + "type": "text" + }, + { + "bbox": [ + 496, + 377, + 504, + 387 + ], + "score": 0.67, + "content": "\\cdot", + "type": "inline_equation" + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 109, + 387, + 234, + 400 + ], + "spans": [ + { + "bbox": [ + 109, + 387, + 122, + 400 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 152, + 387, + 168, + 398 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 168, + 389, + 196, + 398 + ], + "score": 0.87, + "content": "m = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 387, + 208, + 398 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 209, + 388, + 221, + 398 + ], + "score": 0.71, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 387, + 234, + 398 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 396, + 384, + 411 + ], + "spans": [ + { + "bbox": [ + 110, + 399, + 122, + 411 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 165, + 396, + 295, + 411 + ], + "score": 1.0, + "content": "Sample task (or split the batch)", + "type": "text" + }, + { + "bbox": [ + 295, + 396, + 384, + 411 + ], + "score": 0.87, + "content": "\\widetilde { \\mathcal { D } } _ { t } ^ { m } = \\widetilde { \\mathcal { D } } _ { t } ^ { m , S } \\cup \\widetilde { \\mathcal { D } } _ { t } ^ { m , Q }", + "type": "inline_equation" + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 408, + 330, + 425 + ], + "spans": [ + { + "bbox": [ + 110, + 412, + 122, + 424 + ], + "score": 1.0, + "content": "7:", + "type": "text" + }, + { + "bbox": [ + 166, + 408, + 221, + 425 + ], + "score": 1.0, + "content": "Inner update", + "type": "text" + }, + { + "bbox": [ + 221, + 410, + 330, + 424 + ], + "score": 0.89, + "content": "\\tilde { \\theta } ^ { m } = S G D _ { k } ( \\mathcal { L } ( \\theta , \\widetilde { D } _ { t } ^ { m , S } ) )", + "type": "inline_equation" + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 109, + 421, + 187, + 435 + ], + "spans": [ + { + "bbox": [ + 109, + 423, + 122, + 435 + ], + "score": 1.0, + "content": "8:", + "type": "text" + }, + { + "bbox": [ + 152, + 421, + 187, + 435 + ], + "score": 1.0, + "content": "end for", + "type": "text" + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 109, + 429, + 325, + 448 + ], + "spans": [ + { + "bbox": [ + 109, + 434, + 122, + 446 + ], + "score": 1.0, + "content": "9:", + "type": "text" + }, + { + "bbox": [ + 151, + 429, + 209, + 448 + ], + "score": 1.0, + "content": "Evaluate loss", + "type": "text" + }, + { + "bbox": [ + 209, + 433, + 276, + 446 + ], + "score": 0.88, + "content": "f _ { t } ^ { \\mathrm { B o u V I } } ( \\phi , \\phi _ { t - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 429, + 325, + 448 + ], + "score": 1.0, + "content": "in Eq. (15)", + "type": "text" + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 440, + 484, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 445, + 122, + 457 + ], + "score": 1.0, + "content": "10:", + "type": "text" + }, + { + "bbox": [ + 149, + 440, + 207, + 460 + ], + "score": 1.0, + "content": "Outer update", + "type": "text" + }, + { + "bbox": [ + 208, + 444, + 335, + 457 + ], + "score": 0.89, + "content": "\\bar { \\mu } \\mu - \\alpha \\nabla _ { \\mu } f _ { t } ^ { \\mathrm { B o M V I } } ( \\phi , \\phi _ { t - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 440, + 356, + 460 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 356, + 443, + 484, + 457 + ], + "score": 0.89, + "content": "\\sigma \\gets \\sigma - \\alpha \\nabla _ { \\sigma } f _ { t } ^ { \\mathrm { B o M V I } } ( \\phi , \\phi _ { t - 1 } )", + "type": "inline_equation" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 455, + 172, + 467 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 122, + 467 + ], + "score": 1.0, + "content": "11:", + "type": "text" + }, + { + "bbox": [ + 137, + 455, + 172, + 467 + ], + "score": 1.0, + "content": "end for", + "type": "text" + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 123, + 479 + ], + "score": 1.0, + "content": "12:", + "type": "text" + }, + { + "bbox": [ + 137, + 466, + 169, + 479 + ], + "score": 1.0, + "content": "Update", + "type": "text" + }, + { + "bbox": [ + 170, + 468, + 202, + 478 + ], + "score": 0.89, + "content": "\\mu _ { t } \\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 466, + 220, + 479 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 220, + 468, + 252, + 478 + ], + "score": 0.83, + "content": "\\sigma _ { t } \\gets \\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 466, + 505, + 479 + ], + "score": 1.0, + "content": ". update posterior parameters", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 477, + 157, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 157, + 489 + ], + "score": 1.0, + "content": "13: end for", + "type": "text" + } + ], + "index": 32, + "is_list_start_line": true + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 330, + 506, + 489 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 511, + 286, + 523 + ], + "lines": [ + { + "bbox": [ + 105, + 511, + 287, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 287, + 524 + ], + "score": 1.0, + "content": "B.2 BOMVI MONTE CARLO ESTIMATOR", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 532, + 251, + 544 + ], + "lines": [ + { + "bbox": [ + 105, + 531, + 252, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 252, + 546 + ], + "score": 1.0, + "content": "Recall that the BOMVI objective is:", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 531, + 252, + 546 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 123, + 548, + 486, + 599 + ], + "lines": [ + { + "bbox": [ + 123, + 548, + 486, + 599 + ], + "spans": [ + { + "bbox": [ + 123, + 548, + 486, + 599 + ], + "score": 0.93, + "content": "f _ { t + 1 } ^ { \\mathrm { B o M V I } } ( \\phi , \\phi _ { t } ) = - \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } \\mathbb { E } _ { q ( \\theta | \\phi ) } \\big [ \\log p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { m , Q } | \\widetilde { \\theta } ^ { m } ) \\big ] - \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } \\mathbb { E } _ { q ( \\theta | \\phi ) } \\big [ \\log p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { m , S } | \\theta ) \\big ]", + "type": "interline_equation", + "image_path": "678b43c1f0a68aeca4af82d036852f4b1f5ef45bccb79aff2378b8efe0c30363.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 123, + 548, + 486, + 565.0 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 123, + 565.0, + 486, + 582.0 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 123, + 582.0, + 486, + 599.0 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 603, + 506, + 672 + ], + "lines": [ + { + "bbox": [ + 102, + 597, + 510, + 629 + ], + "spans": [ + { + "bbox": [ + 102, + 597, + 134, + 629 + ], + "score": 1.0, + "content": "where term o", + "type": "text" + }, + { + "bbox": [ + 135, + 603, + 248, + 618 + ], + "score": 0.91, + "content": "\\tilde { \\theta } ^ { m } = S G D _ { k } ( \\mathcal { L } ( \\theta , \\widetilde { D } _ { t + 1 } ^ { m , S } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 597, + 266, + 629 + ], + "score": 1.0, + "content": "for diffic", + "type": "text" + }, + { + "bbox": [ + 267, + 605, + 332, + 617 + ], + "score": 0.91, + "content": "m = 1 , \\ldots , M", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 597, + 478, + 629 + ], + "score": 1.0, + "content": ". The Monte Carlo estimator for th as every sampled meta-parameters", + "type": "text" + }, + { + "bbox": [ + 488, + 597, + 510, + 629 + ], + "score": 1.0, + "content": "firstfor", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 478, + 617, + 488, + 627 + ], + "spans": [ + { + "bbox": [ + 478, + 617, + 488, + 627 + ], + "score": 0.87, + "content": "\\theta _ { r }", + "type": "inline_equation" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 628, + 160, + 639 + ], + "score": 0.92, + "content": "r = 1 , \\ldots , R", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 626, + 506, + 640 + ], + "score": 1.0, + "content": "has to undergo a few-shot quick adaptation prior to the log-likelihood evaluation. As a", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 637, + 504, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 493, + 651 + ], + "score": 1.0, + "content": "consequence the estimator is prone to a large variance. Moreover, every quickly-adapted sample", + "type": "text" + }, + { + "bbox": [ + 493, + 639, + 504, + 649 + ], + "score": 0.86, + "content": "\\theta _ { r }", + "type": "inline_equation" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 650, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 106, + 650, + 505, + 661 + ], + "score": 1.0, + "content": "contributes to the meta-learning gradients of the posterior mean and covariance, resulting in a high", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 660, + 315, + 673 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 315, + 673 + ], + "score": 1.0, + "content": "computational cost when taking the meta-gradients.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40.5, + "bbox_fs": [ + 102, + 597, + 510, + 673 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 678, + 505, + 713 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 473, + 691 + ], + "score": 1.0, + "content": "To solve these impediments, we introduce a slight modification to the SGD quick adaptation", + "type": "text" + }, + { + "bbox": [ + 473, + 677, + 486, + 689 + ], + "score": 0.87, + "content": "{ \\widetilde { \\theta } } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 678, + 505, + 691 + ], + "score": 1.0, + "content": ". In-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 691, + 504, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 691, + 504, + 702 + ], + "score": 1.0, + "content": "stead of taking the gradients with respect to the sampled meta-parameters, we consider the gradients", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 701, + 480, + 714 + ], + "spans": [ + { + "bbox": [ + 105, + 701, + 480, + 714 + ], + "score": 1.0, + "content": "with respect to the posterior mean. A one-step SGD quick adaptation, for instance, becomes:", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 677, + 505, + 714 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 244, + 717, + 367, + 734 + ], + "lines": [ + { + "bbox": [ + 244, + 717, + 367, + 734 + ], + "spans": [ + { + "bbox": [ + 244, + 717, + 367, + 734 + ], + "score": 0.93, + "content": "\\tilde { \\theta } ^ { m } = \\theta - \\alpha \\nabla _ { \\mu _ { t } } \\mathcal { L } ( \\mu _ { t } , \\mathcal { \\tilde { D } } _ { t + 1 } ^ { m , S } ) .", + "type": "interline_equation", + "image_path": "77ca9b68f79603d9329d84362522d23df65f4bb92faed2f1cf7c9cf9d6a699ef.jpg" + } + ] + } + ], + "index": 47, + "virtual_lines": [ + { + "bbox": [ + 244, + 717, + 367, + 734 + ], + "spans": [], + "index": 47 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 81, + 271, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 272, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 150, + 97 + ], + "score": 1.0, + "content": "This gives", + "type": "text" + }, + { + "bbox": [ + 150, + 80, + 243, + 95 + ], + "score": 0.87, + "content": "\\widetilde { \\theta } ^ { m } \\sim N ( \\widetilde { \\mu } _ { t } , \\mathrm { d i a g } ( \\sigma _ { t } ^ { 2 } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 78, + 272, + 97 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 243, + 96, + 367, + 113 + ], + "lines": [ + { + "bbox": [ + 243, + 96, + 367, + 113 + ], + "spans": [ + { + "bbox": [ + 243, + 96, + 367, + 113 + ], + "score": 0.93, + "content": "\\widetilde { \\mu } _ { t } = \\mu _ { t } - \\alpha \\nabla _ { \\mu _ { t } } \\mathcal { L } ( \\mu _ { t } , \\widetilde { D } _ { t + 1 } ^ { m , S } ) ,", + "type": "interline_equation", + "image_path": "bc98546152e2a855f7709b260cba28d4761b62fd3ccf9110ad7afd71d3b6ae7a.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 243, + 96, + 367, + 113 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 115, + 505, + 149 + ], + "lines": [ + { + "bbox": [ + 106, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 130, + 128 + ], + "score": 1.0, + "content": "since", + "type": "text" + }, + { + "bbox": [ + 130, + 115, + 217, + 128 + ], + "score": 0.91, + "content": "\\theta \\sim N ( \\mu _ { t } , \\mathrm { d i a g } ( \\sigma _ { t } ^ { 2 } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 116, + 505, + 128 + ], + "score": 1.0, + "content": ". A quick adaptation with more steps works in a similar fashion. With", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 127, + 504, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 504, + 138 + ], + "score": 1.0, + "content": "this modification, we can calculate the Monte Carlo estimator for the first term using the local", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 138, + 240, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 240, + 149 + ], + "score": 1.0, + "content": "reparameterisation trick as usual.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "title", + "bbox": [ + 108, + 165, + 203, + 178 + ], + "lines": [ + { + "bbox": [ + 105, + 163, + 204, + 180 + ], + "spans": [ + { + "bbox": [ + 105, + 163, + 204, + 180 + ], + "score": 1.0, + "content": "C EXPERIMENTS", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "title", + "bbox": [ + 108, + 189, + 271, + 201 + ], + "lines": [ + { + "bbox": [ + 106, + 189, + 272, + 202 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 272, + 202 + ], + "score": 1.0, + "content": "C.1 OMNIGLOT: SEQUENTIAL TASKS", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 209, + 505, + 254 + ], + "lines": [ + { + "bbox": [ + 105, + 210, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 506, + 222 + ], + "score": 1.0, + "content": "In this experiment, we use the model architecture proposed by Vinyals et al. (2016) that takes 4", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 221, + 506, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 232, + 233 + ], + "score": 1.0, + "content": "modules with 64 filters of size", + "type": "text" + }, + { + "bbox": [ + 232, + 221, + 257, + 232 + ], + "score": 0.89, + "content": "3 \\times 3", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 221, + 506, + 233 + ], + "score": 1.0, + "content": ", followed by a batch normalisation, a ReLU activation and a", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 107, + 232, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 107, + 232, + 129, + 243 + ], + "score": 0.87, + "content": "2 \\times 2", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 232, + 505, + 244 + ], + "score": 1.0, + "content": "max-pooling. A fully-connected layer is appended to the final module before getting the class", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 243, + 456, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 456, + 256 + ], + "score": 1.0, + "content": "probabilities with softmax. Table 1 shows the hyperparameters used in this experiment.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 107, + 259, + 505, + 315 + ], + "lines": [ + { + "bbox": [ + 106, + 260, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 260, + 505, + 272 + ], + "score": 1.0, + "content": "The Omniglot dataset comprises 50 alphabets (super-classes). Each alphabet has numerous charac-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 270, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 505, + 284 + ], + "score": 1.0, + "content": "ters (classes) and each character has 20 instances. As the meta-training alphabets arrive sequentially,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 282, + 505, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 505, + 294 + ], + "score": 1.0, + "content": "we form non-overlapping sequential tasks from each arriving alphabet, and the tasks also do not", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 293, + 506, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 506, + 306 + ], + "score": 1.0, + "content": "overlap in the characters. We use 35 alphabets for meta-training, 7 alphabets for validation and 8", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 303, + 369, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 369, + 317 + ], + "score": 1.0, + "content": "alphabets for meta-evaluation. The alphabet splits are as follows:", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13 + }, + { + "type": "title", + "bbox": [ + 108, + 321, + 231, + 332 + ], + "lines": [ + { + "bbox": [ + 106, + 319, + 232, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 319, + 232, + 334 + ], + "score": 1.0, + "content": "35 alphabets for meta-training:", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 340, + 491, + 429 + ], + "lines": [ + { + "bbox": [ + 105, + 340, + 460, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 460, + 353 + ], + "score": 1.0, + "content": "Kannada, Burmese_(Myanmar), Malay_(Jawi_-_Arabic), Grantha,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 352, + 466, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 466, + 364 + ], + "score": 1.0, + "content": "Atlantean, Ojibwe_(Canadian_Aboriginal_Syllabics), Balinese,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 362, + 442, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 362, + 442, + 375 + ], + "score": 1.0, + "content": "Japanese_(katakana), Hebrew, Japanese_(hiragana), Keble,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 372, + 441, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 441, + 385 + ], + "score": 1.0, + "content": "’Old_Church_Slavonic_(Cyrillic), Asomtavruli_(Georgian),", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 384, + 479, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 479, + 397 + ], + "score": 1.0, + "content": "Tengwar, Aurek-Besh, Sanskrit, Manipuri, Early_Aramaic, Oriya,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 395, + 490, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 490, + 407 + ], + "score": 1.0, + "content": "Mongolian, Avesta, Malayalam, Tifinagh, Angelic, Latin, Braille,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 407, + 490, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 490, + 419 + ], + "score": 1.0, + "content": "Inuktitut_(Canadian_Aboriginal_Syllabics), Alphabet_of_the_Magi,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 417, + 468, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 468, + 429 + ], + "score": 1.0, + "content": "Armenian, Korean, Gurmukhi, ULOG, Bengali, Gujarati, Sylheti", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 108, + 434, + 212, + 445 + ], + "lines": [ + { + "bbox": [ + 106, + 433, + 213, + 446 + ], + "spans": [ + { + "bbox": [ + 106, + 433, + 213, + 446 + ], + "score": 1.0, + "content": "7 alphabets for validation:", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 108, + 454, + 495, + 476 + ], + "lines": [ + { + "bbox": [ + 105, + 452, + 496, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 496, + 468 + ], + "score": 1.0, + "content": "Ge_ez, Cyrillic, Glagolitic, N_Ko, Arcadian, Anglo-Saxon_Futhorc,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 463, + 352, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 352, + 478 + ], + "score": 1.0, + "content": "Blackfoot_(Canadian_Aboriginal_Syllabics)", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 107, + 482, + 236, + 492 + ], + "lines": [ + { + "bbox": [ + 106, + 482, + 237, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 237, + 493 + ], + "score": 1.0, + "content": "8 alphabets for meta-evaluation:", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 502, + 450, + 524 + ], + "lines": [ + { + "bbox": [ + 106, + 501, + 430, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 430, + 514 + ], + "score": 1.0, + "content": "Syriac_(Serto), Atemayar_Qelisayer, Tibetan, Futurama,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 512, + 450, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 450, + 525 + ], + "score": 1.0, + "content": "Mkhedruli_(Georgian), Syriac_(Estrangelo), Tagalog, Greek", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "table", + "bbox": [ + 134, + 556, + 477, + 726 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 161, + 542, + 450, + 554 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 160, + 541, + 450, + 556 + ], + "spans": [ + { + "bbox": [ + 160, + 541, + 450, + 556 + ], + "score": 1.0, + "content": "Table 1: Hyperparameters for the Omniglot sequential tasks experiment", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "table_body", + "bbox": [ + 134, + 556, + 477, + 726 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 134, + 556, + 477, + 726 + ], + "spans": [ + { + "bbox": [ + 134, + 556, + 477, + 726 + ], + "score": 0.98, + "html": "
HyperparameterBOMLABOMVI
Posterior regulariser 入0.1
Precision initialisation values10-4~10-2
Covariance initialisation values1exp(-10)
NumberofMonte Carlo samples=5
Number of batch M11
Number of query samples per class (meta-evaluation)1515
Number of epochs per task5050
Number of inner SGD steps in meta-training (k)55
Inner SGD learning rate (α)0.10.1
Outer loop optimiserAdamAdam
Outer loop learning rate0.0010.001
Number of tasks sampled for meta-evaluation100100
Number of inner SGD steps in meta-evaluation (k)1010
", + "type": "table", + "image_path": "abfc71c479179f152a296dc801a02e8baf1b4db935788c253f7ca12863ee2625.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 134, + 556, + 477, + 612.6666666666666 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 134, + 612.6666666666666, + 477, + 669.3333333333333 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 134, + 669.3333333333333, + 477, + 725.9999999999999 + ], + "spans": [], + "index": 34 + } + ] + } + ], + "index": 32.0 + } + ], + "page_idx": 16, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "17", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 106, + 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": [ + 108, + 81, + 271, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 272, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 150, + 97 + ], + "score": 1.0, + "content": "This gives", + "type": "text" + }, + { + "bbox": [ + 150, + 80, + 243, + 95 + ], + "score": 0.87, + "content": "\\widetilde { \\theta } ^ { m } \\sim N ( \\widetilde { \\mu } _ { t } , \\mathrm { d i a g } ( \\sigma _ { t } ^ { 2 } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 78, + 272, + 97 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 78, + 272, + 97 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 243, + 96, + 367, + 113 + ], + "lines": [ + { + "bbox": [ + 243, + 96, + 367, + 113 + ], + "spans": [ + { + "bbox": [ + 243, + 96, + 367, + 113 + ], + "score": 0.93, + "content": "\\widetilde { \\mu } _ { t } = \\mu _ { t } - \\alpha \\nabla _ { \\mu _ { t } } \\mathcal { L } ( \\mu _ { t } , \\widetilde { D } _ { t + 1 } ^ { m , S } ) ,", + "type": "interline_equation", + "image_path": "bc98546152e2a855f7709b260cba28d4761b62fd3ccf9110ad7afd71d3b6ae7a.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 243, + 96, + 367, + 113 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 115, + 505, + 149 + ], + "lines": [ + { + "bbox": [ + 106, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 130, + 128 + ], + "score": 1.0, + "content": "since", + "type": "text" + }, + { + "bbox": [ + 130, + 115, + 217, + 128 + ], + "score": 0.91, + "content": "\\theta \\sim N ( \\mu _ { t } , \\mathrm { d i a g } ( \\sigma _ { t } ^ { 2 } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 116, + 505, + 128 + ], + "score": 1.0, + "content": ". A quick adaptation with more steps works in a similar fashion. With", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 127, + 504, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 504, + 138 + ], + "score": 1.0, + "content": "this modification, we can calculate the Monte Carlo estimator for the first term using the local", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 138, + 240, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 240, + 149 + ], + "score": 1.0, + "content": "reparameterisation trick as usual.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 115, + 505, + 149 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 165, + 203, + 178 + ], + "lines": [ + { + "bbox": [ + 105, + 163, + 204, + 180 + ], + "spans": [ + { + "bbox": [ + 105, + 163, + 204, + 180 + ], + "score": 1.0, + "content": "C EXPERIMENTS", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "title", + "bbox": [ + 108, + 189, + 271, + 201 + ], + "lines": [ + { + "bbox": [ + 106, + 189, + 272, + 202 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 272, + 202 + ], + "score": 1.0, + "content": "C.1 OMNIGLOT: SEQUENTIAL TASKS", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 209, + 505, + 254 + ], + "lines": [ + { + "bbox": [ + 105, + 210, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 506, + 222 + ], + "score": 1.0, + "content": "In this experiment, we use the model architecture proposed by Vinyals et al. (2016) that takes 4", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 221, + 506, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 232, + 233 + ], + "score": 1.0, + "content": "modules with 64 filters of size", + "type": "text" + }, + { + "bbox": [ + 232, + 221, + 257, + 232 + ], + "score": 0.89, + "content": "3 \\times 3", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 221, + 506, + 233 + ], + "score": 1.0, + "content": ", followed by a batch normalisation, a ReLU activation and a", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 107, + 232, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 107, + 232, + 129, + 243 + ], + "score": 0.87, + "content": "2 \\times 2", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 232, + 505, + 244 + ], + "score": 1.0, + "content": "max-pooling. A fully-connected layer is appended to the final module before getting the class", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 243, + 456, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 456, + 256 + ], + "score": 1.0, + "content": "probabilities with softmax. Table 1 shows the hyperparameters used in this experiment.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 210, + 506, + 256 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 259, + 505, + 315 + ], + "lines": [ + { + "bbox": [ + 106, + 260, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 260, + 505, + 272 + ], + "score": 1.0, + "content": "The Omniglot dataset comprises 50 alphabets (super-classes). Each alphabet has numerous charac-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 270, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 505, + 284 + ], + "score": 1.0, + "content": "ters (classes) and each character has 20 instances. As the meta-training alphabets arrive sequentially,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 282, + 505, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 505, + 294 + ], + "score": 1.0, + "content": "we form non-overlapping sequential tasks from each arriving alphabet, and the tasks also do not", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 293, + 506, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 506, + 306 + ], + "score": 1.0, + "content": "overlap in the characters. We use 35 alphabets for meta-training, 7 alphabets for validation and 8", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 303, + 369, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 369, + 317 + ], + "score": 1.0, + "content": "alphabets for meta-evaluation. The alphabet splits are as follows:", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 260, + 506, + 317 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 321, + 231, + 332 + ], + "lines": [ + { + "bbox": [ + 106, + 319, + 232, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 319, + 232, + 334 + ], + "score": 1.0, + "content": "35 alphabets for meta-training:", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 340, + 491, + 429 + ], + "lines": [ + { + "bbox": [ + 105, + 340, + 460, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 460, + 353 + ], + "score": 1.0, + "content": "Kannada, Burmese_(Myanmar), Malay_(Jawi_-_Arabic), Grantha,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 352, + 466, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 466, + 364 + ], + "score": 1.0, + "content": "Atlantean, Ojibwe_(Canadian_Aboriginal_Syllabics), Balinese,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 362, + 442, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 362, + 442, + 375 + ], + "score": 1.0, + "content": "Japanese_(katakana), Hebrew, Japanese_(hiragana), Keble,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 372, + 441, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 441, + 385 + ], + "score": 1.0, + "content": "’Old_Church_Slavonic_(Cyrillic), Asomtavruli_(Georgian),", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 384, + 479, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 479, + 397 + ], + "score": 1.0, + "content": "Tengwar, Aurek-Besh, Sanskrit, Manipuri, Early_Aramaic, Oriya,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 395, + 490, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 490, + 407 + ], + "score": 1.0, + "content": "Mongolian, Avesta, Malayalam, Tifinagh, Angelic, Latin, Braille,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 407, + 490, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 490, + 419 + ], + "score": 1.0, + "content": "Inuktitut_(Canadian_Aboriginal_Syllabics), Alphabet_of_the_Magi,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 417, + 468, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 468, + 429 + ], + "score": 1.0, + "content": "Armenian, Korean, Gurmukhi, ULOG, Bengali, Gujarati, Sylheti", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 340, + 490, + 429 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 434, + 212, + 445 + ], + "lines": [ + { + "bbox": [ + 106, + 433, + 213, + 446 + ], + "spans": [ + { + "bbox": [ + 106, + 433, + 213, + 446 + ], + "score": 1.0, + "content": "7 alphabets for validation:", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25, + "bbox_fs": [ + 106, + 433, + 213, + 446 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 454, + 495, + 476 + ], + "lines": [ + { + "bbox": [ + 105, + 452, + 496, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 496, + 468 + ], + "score": 1.0, + "content": "Ge_ez, Cyrillic, Glagolitic, N_Ko, Arcadian, Anglo-Saxon_Futhorc,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 463, + 352, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 352, + 478 + ], + "score": 1.0, + "content": "Blackfoot_(Canadian_Aboriginal_Syllabics)", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 452, + 496, + 478 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 482, + 236, + 492 + ], + "lines": [ + { + "bbox": [ + 106, + 482, + 237, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 237, + 493 + ], + "score": 1.0, + "content": "8 alphabets for meta-evaluation:", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28, + "bbox_fs": [ + 106, + 482, + 237, + 493 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 502, + 450, + 524 + ], + "lines": [ + { + "bbox": [ + 106, + 501, + 430, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 430, + 514 + ], + "score": 1.0, + "content": "Syriac_(Serto), Atemayar_Qelisayer, Tibetan, Futurama,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 512, + 450, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 450, + 525 + ], + "score": 1.0, + "content": "Mkhedruli_(Georgian), Syriac_(Estrangelo), Tagalog, Greek", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 501, + 450, + 525 + ] + }, + { + "type": "table", + "bbox": [ + 134, + 556, + 477, + 726 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 161, + 542, + 450, + 554 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 160, + 541, + 450, + 556 + ], + "spans": [ + { + "bbox": [ + 160, + 541, + 450, + 556 + ], + "score": 1.0, + "content": "Table 1: Hyperparameters for the Omniglot sequential tasks experiment", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "table_body", + "bbox": [ + 134, + 556, + 477, + 726 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 134, + 556, + 477, + 726 + ], + "spans": [ + { + "bbox": [ + 134, + 556, + 477, + 726 + ], + "score": 0.98, + "html": "
HyperparameterBOMLABOMVI
Posterior regulariser 入0.1
Precision initialisation values10-4~10-2
Covariance initialisation values1exp(-10)
NumberofMonte Carlo samples=5
Number of batch M11
Number of query samples per class (meta-evaluation)1515
Number of epochs per task5050
Number of inner SGD steps in meta-training (k)55
Inner SGD learning rate (α)0.10.1
Outer loop optimiserAdamAdam
Outer loop learning rate0.0010.001
Number of tasks sampled for meta-evaluation100100
Number of inner SGD steps in meta-evaluation (k)1010
", + "type": "table", + "image_path": "abfc71c479179f152a296dc801a02e8baf1b4db935788c253f7ca12863ee2625.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 134, + 556, + 477, + 612.6666666666666 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 134, + 612.6666666666666, + 477, + 669.3333333333333 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 134, + 669.3333333333333, + 477, + 725.9999999999999 + ], + "spans": [], + "index": 34 + } + ] + } + ], + "index": 32.0 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 83, + 296, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 298, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 298, + 95 + ], + "score": 1.0, + "content": "C.2 PENTATHLON: SEQUENTIAL DATASETS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 102, + 504, + 126 + ], + "lines": [ + { + "bbox": [ + 106, + 102, + 506, + 115 + ], + "spans": [ + { + "bbox": [ + 106, + 102, + 506, + 115 + ], + "score": 1.0, + "content": "We use the model architecture proposed by Vinyals et al. (2016) in this experiment, as we did for", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 114, + 492, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 114, + 492, + 127 + ], + "score": 1.0, + "content": "the sequential tasks experiment. Tables 2 and 3 are the hyperparameters used in this experiment.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 107, + 137, + 505, + 182 + ], + "lines": [ + { + "bbox": [ + 106, + 137, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 505, + 149 + ], + "score": 1.0, + "content": "Omniglot: The Omniglot dataset (Lake et al., 2011) comprises 1623 characters from 50 alphabets", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 149, + 505, + 160 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 441, + 160 + ], + "score": 1.0, + "content": "and each character has 20 instances. New classes with rotations in the multiples of", + "type": "text" + }, + { + "bbox": [ + 442, + 149, + 457, + 159 + ], + "score": 0.87, + "content": "9 0 °", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 149, + 505, + 160 + ], + "score": 1.0, + "content": "are formed", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 160, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 106, + 160, + 505, + 172 + ], + "score": 1.0, + "content": "after splitting the classes for meta-training, validation and meta-evaluation. We use 1100 characters", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 171, + 452, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 452, + 183 + ], + "score": 1.0, + "content": "for meta-training, 100 characters for validation and the remaining for meta-evaluation.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 107, + 194, + 505, + 227 + ], + "lines": [ + { + "bbox": [ + 106, + 194, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 505, + 206 + ], + "score": 1.0, + "content": "CIFAR-FS: The CIFAR-FS dataset (Bertinetto et al., 2019) has 100 classes of objects and each", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 205, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 205, + 505, + 217 + ], + "score": 1.0, + "content": "class comprises 600 images. We use the same split as Bertinetto et al. (2019): 64 classes for meta-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 216, + 383, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 383, + 228 + ], + "score": 1.0, + "content": "training, 16 classes for validation and 20 classes for meta-evaluation.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 108, + 239, + 503, + 273 + ], + "lines": [ + { + "bbox": [ + 106, + 240, + 504, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 240, + 504, + 252 + ], + "score": 1.0, + "content": "miniImageNet: The miniImageNet dataset (Vinyals et al., 2016) takes 100 classes and 600 in-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 251, + 504, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 251, + 504, + 262 + ], + "score": 1.0, + "content": "stances in each class from the ImageNet dataset. We use the same split as Ravi & Larochelle (2017):", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 261, + 464, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 464, + 275 + ], + "score": 1.0, + "content": "64 classes for meta-training, 16 classes for validation and 20 classes for meta-evaluation.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 285, + 505, + 318 + ], + "lines": [ + { + "bbox": [ + 105, + 284, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 505, + 298 + ], + "score": 1.0, + "content": "VGG-Flowers: The VGG-Flowers dataset (Nilsback & Zisserman, 2008) comprises 102 different", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 296, + 506, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 506, + 309 + ], + "score": 1.0, + "content": "types of flowers as the classes. This dataset has 8,189 instances in total. We randomly split 66", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 307, + 450, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 450, + 319 + ], + "score": 1.0, + "content": "classes for meta-training, 16 classes for validation and 20 classes for meta-evaluation.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 330, + 505, + 364 + ], + "lines": [ + { + "bbox": [ + 106, + 331, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 106, + 331, + 505, + 343 + ], + "score": 1.0, + "content": "Aircraft: The Aircraft dataset (Maji et al., 2013) is a fine-grained dataset consisting of 100 differ-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 342, + 505, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 505, + 354 + ], + "score": 1.0, + "content": "ent aircraft models as the classes and each class has 100 instances. We randomly split 64 classes for", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 353, + 406, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 406, + 365 + ], + "score": 1.0, + "content": "meta-training, 16 classes for validation and 20 classes for meta-evaluation.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17 + }, + { + "type": "table", + "bbox": [ + 143, + 398, + 472, + 545 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 135, + 384, + 475, + 395 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 135, + 383, + 476, + 397 + ], + "spans": [ + { + "bbox": [ + 135, + 383, + 476, + 397 + ], + "score": 1.0, + "content": "Table 2: Hyperparameters for the pentathlon experiment (same value for all datasets)", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "table_body", + "bbox": [ + 143, + 398, + 472, + 545 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 143, + 398, + 472, + 545 + ], + "spans": [ + { + "bbox": [ + 143, + 398, + 472, + 545 + ], + "score": 0.969, + "html": "
HyperparameterBOMLABOMVI
Posterior regulariser 入(various values)
Precision initialisation values10-4~ 10-2
Number of tasks sampled for Hessian approx.5000
Covariance initialisation valuesexp(-5)
Number of Monte Carlo samples=20
Meta-batch size M= 3232
Number of query samples per class1515
Number of iterations per dataset5000
Outer loop optimiserAdam5000
Outer loop learning rateAdam
Number of tasks sampled for meta-evaluation0.001 1000.001 100
", + "type": "table", + "image_path": "0c04a6f448fd725ce5decae0ec7f8f61c218a242e7997579f16fd45972d36a60.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 143, + 398, + 472, + 447.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 143, + 447.0, + 472, + 496.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 143, + 496.0, + 472, + 545.0 + ], + "spans": [], + "index": 22 + } + ] + } + ], + "index": 20.0 + }, + { + "type": "table", + "bbox": [ + 109, + 597, + 526, + 709 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 111, + 574, + 500, + 587 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 111, + 573, + 500, + 588 + ], + "spans": [ + { + "bbox": [ + 111, + 573, + 500, + 588 + ], + "score": 1.0, + "content": "Table 3: Hyperparameters for the pentathlon sequential datasets experiment (individual datasets)", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "table_body", + "bbox": [ + 109, + 597, + 526, + 709 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 109, + 597, + 526, + 709 + ], + "spans": [ + { + "bbox": [ + 109, + 597, + 526, + 709 + ], + "score": 0.969, + "html": "
HyperparameterOmniglotCIFAR-FSminiImageNetVGG-FlowersAircraft
Number of inner SGD steps in meta-training (k)15555
Inner SGD learning rate0.40.10.10.10.1
(a) Outer learning rate decay-×0.1×0.1 halfway×0.1 per 1000x0.1
schedule Number of inner SGD steps in meta-evaluation3halfway 1010iterations 10halfway 10
", + "type": "table", + "image_path": "792d3d021b75bc928e7ebb45cd35d3377b79f40b295a20a86dd3e8b6f4bad6ab.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 109, + 597, + 526, + 634.3333333333334 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 109, + 634.3333333333334, + 526, + 671.6666666666667 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 109, + 671.6666666666667, + 526, + 709.0000000000001 + ], + "spans": [], + "index": 26 + } + ] + } + ], + "index": 24.0 + } + ], + "page_idx": 17, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "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" + } + ] + } + ] + }, + { + "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, + 83, + 296, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 298, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 298, + 95 + ], + "score": 1.0, + "content": "C.2 PENTATHLON: SEQUENTIAL DATASETS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 102, + 504, + 126 + ], + "lines": [ + { + "bbox": [ + 106, + 102, + 506, + 115 + ], + "spans": [ + { + "bbox": [ + 106, + 102, + 506, + 115 + ], + "score": 1.0, + "content": "We use the model architecture proposed by Vinyals et al. (2016) in this experiment, as we did for", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 114, + 492, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 114, + 492, + 127 + ], + "score": 1.0, + "content": "the sequential tasks experiment. Tables 2 and 3 are the hyperparameters used in this experiment.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5, + "bbox_fs": [ + 106, + 102, + 506, + 127 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 137, + 505, + 182 + ], + "lines": [ + { + "bbox": [ + 106, + 137, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 505, + 149 + ], + "score": 1.0, + "content": "Omniglot: The Omniglot dataset (Lake et al., 2011) comprises 1623 characters from 50 alphabets", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 149, + 505, + 160 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 441, + 160 + ], + "score": 1.0, + "content": "and each character has 20 instances. New classes with rotations in the multiples of", + "type": "text" + }, + { + "bbox": [ + 442, + 149, + 457, + 159 + ], + "score": 0.87, + "content": "9 0 °", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 149, + 505, + 160 + ], + "score": 1.0, + "content": "are formed", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 160, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 106, + 160, + 505, + 172 + ], + "score": 1.0, + "content": "after splitting the classes for meta-training, validation and meta-evaluation. We use 1100 characters", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 171, + 452, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 452, + 183 + ], + "score": 1.0, + "content": "for meta-training, 100 characters for validation and the remaining for meta-evaluation.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 137, + 505, + 183 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 194, + 505, + 227 + ], + "lines": [ + { + "bbox": [ + 106, + 194, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 505, + 206 + ], + "score": 1.0, + "content": "CIFAR-FS: The CIFAR-FS dataset (Bertinetto et al., 2019) has 100 classes of objects and each", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 205, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 205, + 505, + 217 + ], + "score": 1.0, + "content": "class comprises 600 images. We use the same split as Bertinetto et al. (2019): 64 classes for meta-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 216, + 383, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 383, + 228 + ], + "score": 1.0, + "content": "training, 16 classes for validation and 20 classes for meta-evaluation.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 194, + 505, + 228 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 239, + 503, + 273 + ], + "lines": [ + { + "bbox": [ + 106, + 240, + 504, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 240, + 504, + 252 + ], + "score": 1.0, + "content": "miniImageNet: The miniImageNet dataset (Vinyals et al., 2016) takes 100 classes and 600 in-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 251, + 504, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 251, + 504, + 262 + ], + "score": 1.0, + "content": "stances in each class from the ImageNet dataset. We use the same split as Ravi & Larochelle (2017):", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 261, + 464, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 464, + 275 + ], + "score": 1.0, + "content": "64 classes for meta-training, 16 classes for validation and 20 classes for meta-evaluation.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 240, + 504, + 275 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 285, + 505, + 318 + ], + "lines": [ + { + "bbox": [ + 105, + 284, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 505, + 298 + ], + "score": 1.0, + "content": "VGG-Flowers: The VGG-Flowers dataset (Nilsback & Zisserman, 2008) comprises 102 different", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 296, + 506, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 506, + 309 + ], + "score": 1.0, + "content": "types of flowers as the classes. This dataset has 8,189 instances in total. We randomly split 66", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 307, + 450, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 450, + 319 + ], + "score": 1.0, + "content": "classes for meta-training, 16 classes for validation and 20 classes for meta-evaluation.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 284, + 506, + 319 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 330, + 505, + 364 + ], + "lines": [ + { + "bbox": [ + 106, + 331, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 106, + 331, + 505, + 343 + ], + "score": 1.0, + "content": "Aircraft: The Aircraft dataset (Maji et al., 2013) is a fine-grained dataset consisting of 100 differ-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 342, + 505, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 505, + 354 + ], + "score": 1.0, + "content": "ent aircraft models as the classes and each class has 100 instances. We randomly split 64 classes for", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 353, + 406, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 406, + 365 + ], + "score": 1.0, + "content": "meta-training, 16 classes for validation and 20 classes for meta-evaluation.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 331, + 505, + 365 + ] + }, + { + "type": "table", + "bbox": [ + 143, + 398, + 472, + 545 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 135, + 384, + 475, + 395 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 135, + 383, + 476, + 397 + ], + "spans": [ + { + "bbox": [ + 135, + 383, + 476, + 397 + ], + "score": 1.0, + "content": "Table 2: Hyperparameters for the pentathlon experiment (same value for all datasets)", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "table_body", + "bbox": [ + 143, + 398, + 472, + 545 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 143, + 398, + 472, + 545 + ], + "spans": [ + { + "bbox": [ + 143, + 398, + 472, + 545 + ], + "score": 0.969, + "html": "
HyperparameterBOMLABOMVI
Posterior regulariser 入(various values)
Precision initialisation values10-4~ 10-2
Number of tasks sampled for Hessian approx.5000
Covariance initialisation valuesexp(-5)
Number of Monte Carlo samples=20
Meta-batch size M= 3232
Number of query samples per class1515
Number of iterations per dataset5000
Outer loop optimiserAdam5000
Outer loop learning rateAdam
Number of tasks sampled for meta-evaluation0.001 1000.001 100
", + "type": "table", + "image_path": "0c04a6f448fd725ce5decae0ec7f8f61c218a242e7997579f16fd45972d36a60.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 143, + 398, + 472, + 447.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 143, + 447.0, + 472, + 496.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 143, + 496.0, + 472, + 545.0 + ], + "spans": [], + "index": 22 + } + ] + } + ], + "index": 20.0 + }, + { + "type": "table", + "bbox": [ + 109, + 597, + 526, + 709 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 111, + 574, + 500, + 587 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 111, + 573, + 500, + 588 + ], + "spans": [ + { + "bbox": [ + 111, + 573, + 500, + 588 + ], + "score": 1.0, + "content": "Table 3: Hyperparameters for the pentathlon sequential datasets experiment (individual datasets)", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "table_body", + "bbox": [ + 109, + 597, + 526, + 709 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 109, + 597, + 526, + 709 + ], + "spans": [ + { + "bbox": [ + 109, + 597, + 526, + 709 + ], + "score": 0.969, + "html": "
HyperparameterOmniglotCIFAR-FSminiImageNetVGG-FlowersAircraft
Number of inner SGD steps in meta-training (k)15555
Inner SGD learning rate0.40.10.10.10.1
(a) Outer learning rate decay-×0.1×0.1 halfway×0.1 per 1000x0.1
schedule Number of inner SGD steps in meta-evaluation3halfway 1010iterations 10halfway 10
", + "type": "table", + "image_path": "792d3d021b75bc928e7ebb45cd35d3377b79f40b295a20a86dd3e8b6f4bad6ab.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 109, + 597, + 526, + 634.3333333333334 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 109, + 634.3333333333334, + 526, + 671.6666666666667 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 109, + 671.6666666666667, + 526, + 709.0000000000001 + ], + "spans": [], + "index": 26 + } + ] + } + ], + "index": 24.0 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 141, + 83, + 481, + 628 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 141, + 83, + 481, + 628 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 141, + 83, + 481, + 628 + ], + "spans": [ + { + "bbox": [ + 141, + 83, + 481, + 628 + ], + "score": 0.952, + "type": "image", + "image_path": "e4c0f6de57d020e55a0adba80739413b67359f38476dfa77ec263a2bdb85913e.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 141, + 83, + 481, + 264.66666666666663 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 141, + 264.66666666666663, + 481, + 446.33333333333326 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 141, + 446.33333333333326, + 481, + 627.9999999999999 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 644, + 505, + 732 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 644, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 505, + 657 + ], + "score": 1.0, + "content": "Figure 3: Meta-evaluation accuracy across 3 seed runs on each dataset along meta-training. Higher", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "accuracy values indicate better results with less forgetting as we proceed to new datasets. BOMLA", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 126, + 678 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 126, + 666, + 162, + 677 + ], + "score": 0.9, + "content": "\\lambda = 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "gives better performance in the off-diagonal plots (retains performances on previously", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "learned datasets), and has a minor performance trade-off in the diagonal plots (learns less well on", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "new datasets). Sequential MAML gives better performance in the diagonal plots (learns well on", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "new datasets) but worse performance in the off-diagonal plots (forgets previously learned datasets).", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "BOMVI is also able to retain performance on previous datasets, although it may be unable to perform", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 721, + 349, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 349, + 733 + ], + "score": 1.0, + "content": "as good as BOMLA due to sampling and estimator variance.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6.5 + } + ], + "index": 3.75 + } + ], + "page_idx": 18, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 301, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 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": "image", + "bbox": [ + 141, + 83, + 481, + 628 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 141, + 83, + 481, + 628 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 141, + 83, + 481, + 628 + ], + "spans": [ + { + "bbox": [ + 141, + 83, + 481, + 628 + ], + "score": 0.952, + "type": "image", + "image_path": "e4c0f6de57d020e55a0adba80739413b67359f38476dfa77ec263a2bdb85913e.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 141, + 83, + 481, + 264.66666666666663 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 141, + 264.66666666666663, + 481, + 446.33333333333326 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 141, + 446.33333333333326, + 481, + 627.9999999999999 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 644, + 505, + 732 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 644, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 505, + 657 + ], + "score": 1.0, + "content": "Figure 3: Meta-evaluation accuracy across 3 seed runs on each dataset along meta-training. Higher", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "accuracy values indicate better results with less forgetting as we proceed to new datasets. BOMLA", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 126, + 678 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 126, + 666, + 162, + 677 + ], + "score": 0.9, + "content": "\\lambda = 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "gives better performance in the off-diagonal plots (retains performances on previously", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "learned datasets), and has a minor performance trade-off in the diagonal plots (learns less well on", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "new datasets). Sequential MAML gives better performance in the diagonal plots (learns well on", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "new datasets) but worse performance in the off-diagonal plots (forgets previously learned datasets).", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "BOMVI is also able to retain performance on previous datasets, although it may be unable to perform", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 721, + 349, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 349, + 733 + ], + "score": 1.0, + "content": "as good as BOMLA due to sampling and estimator variance.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6.5 + } + ], + "index": 3.75 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 140, + 83, + 478, + 631 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 140, + 83, + 478, + 631 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 140, + 83, + 478, + 631 + ], + "spans": [ + { + "bbox": [ + 140, + 83, + 478, + 631 + ], + "score": 0.935, + "type": "image", + "image_path": "8b2b41f7bbda229777423d37569a5dc851b7bef2d0b560bb5db9e6b27a775de1.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 140, + 83, + 478, + 265.66666666666663 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 140, + 265.66666666666663, + 478, + 448.33333333333326 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 140, + 448.33333333333326, + 478, + 630.9999999999999 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 644, + 505, + 732 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 644, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 505, + 657 + ], + "score": 1.0, + "content": "Figure 4: Meta-evaluation accuracy across 3 seed runs on each dataset along meta-training. Higher", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "accuracy values indicate better results with less forgetting as we proceed to new datasets. BOMLA", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 666, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 156, + 679 + ], + "score": 1.0, + "content": "with a large", + "type": "text" + }, + { + "bbox": [ + 157, + 666, + 199, + 677 + ], + "score": 0.91, + "content": "\\lambda = 1 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 666, + 506, + 679 + ], + "score": 1.0, + "content": "gives better performance in the off-diagonal plots (retains performances on", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 677, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 104, + 677, + 506, + 689 + ], + "score": 1.0, + "content": "previously learned datasets) but worse performance in the diagonal plots (does not learn well on new", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 180, + 700 + ], + "score": 1.0, + "content": "datasets). A small", + "type": "text" + }, + { + "bbox": [ + 180, + 688, + 205, + 698 + ], + "score": 0.9, + "content": "\\lambda = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "gives better performance in the diagonal plots (learns well on new datasets)", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "but worse performance in the off-diagonal plots (forgets previously learned datasets). BOMVI is also", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "able to retain performance on previous datasets, although it may be unable to learn new datasets as", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 721, + 338, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 338, + 733 + ], + "score": 1.0, + "content": "good as BOMLA due to sampling and estimator variance.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6.5 + } + ], + "index": 3.75 + } + ], + "page_idx": 19, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 15 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 306, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 140, + 83, + 478, + 631 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 140, + 83, + 478, + 631 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 140, + 83, + 478, + 631 + ], + "spans": [ + { + "bbox": [ + 140, + 83, + 478, + 631 + ], + "score": 0.935, + "type": "image", + "image_path": "8b2b41f7bbda229777423d37569a5dc851b7bef2d0b560bb5db9e6b27a775de1.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 140, + 83, + 478, + 265.66666666666663 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 140, + 265.66666666666663, + 478, + 448.33333333333326 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 140, + 448.33333333333326, + 478, + 630.9999999999999 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 644, + 505, + 732 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 644, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 505, + 657 + ], + "score": 1.0, + "content": "Figure 4: Meta-evaluation accuracy across 3 seed runs on each dataset along meta-training. Higher", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "accuracy values indicate better results with less forgetting as we proceed to new datasets. BOMLA", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 666, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 156, + 679 + ], + "score": 1.0, + "content": "with a large", + "type": "text" + }, + { + "bbox": [ + 157, + 666, + 199, + 677 + ], + "score": 0.91, + "content": "\\lambda = 1 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 666, + 506, + 679 + ], + "score": 1.0, + "content": "gives better performance in the off-diagonal plots (retains performances on", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 677, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 104, + 677, + 506, + 689 + ], + "score": 1.0, + "content": "previously learned datasets) but worse performance in the diagonal plots (does not learn well on new", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 180, + 700 + ], + "score": 1.0, + "content": "datasets). A small", + "type": "text" + }, + { + "bbox": [ + 180, + 688, + 205, + 698 + ], + "score": 0.9, + "content": "\\lambda = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "gives better performance in the diagonal plots (learns well on new datasets)", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "but worse performance in the off-diagonal plots (forgets previously learned datasets). BOMVI is also", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "able to retain performance on previous datasets, although it may be unable to learn new datasets as", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 721, + 338, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 338, + 733 + ], + "score": 1.0, + "content": "good as BOMLA due to sampling and estimator variance.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6.5 + } + ], + "index": 3.75 + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/ucEXZQncukK/ucEXZQncukK_model.json b/parse/train/ucEXZQncukK/ucEXZQncukK_model.json new file mode 100644 index 0000000000000000000000000000000000000000..2bd09e854833b99392d3fd0b7de5c5845619cc87 --- /dev/null +++ b/parse/train/ucEXZQncukK/ucEXZQncukK_model.json @@ -0,0 +1,28960 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 539, + 1302, + 539, + 1302, + 995, + 398, + 995 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1145, + 1404, + 1145, + 1404, + 1540, + 298, + 1540 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 302, + 1942, + 1401, + 1942, + 1401, + 2034, + 302, + 2034 + ], + "score": 0.963 + }, + { + "category_id": 0, + "poly": [ + 299, + 220, + 1062, + 220, + 1062, + 269, + 299, + 269 + ], + "score": 0.938 + }, + { + "category_id": 1, + "poly": [ + 298, + 1556, + 1399, + 1556, + 1399, + 1617, + 298, + 1617 + ], + "score": 0.934 + }, + { + "category_id": 1, + "poly": [ + 313, + 322, + 680, + 322, + 680, + 383, + 313, + 383 + ], + "score": 0.894 + }, + { + "category_id": 0, + "poly": [ + 302, + 1069, + 573, + 1069, + 573, + 1104, + 302, + 1104 + ], + "score": 0.891 + }, + { + "category_id": 0, + "poly": [ + 773, + 464, + 927, + 464, + 927, + 497, + 773, + 497 + ], + "score": 0.882 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 104, + 298, + 104 + ], + "score": 0.878 + }, + { + "category_id": 1, + "poly": [ + 362, + 1647, + 1403, + 1647, + 1403, + 1912, + 362, + 1912 + ], + "score": 0.856 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 857, + 2088, + 857, + 2112, + 842, + 2112 + ], + "score": 0.599 + }, + { + "category_id": 15, + "poly": [ + 291.0, + 215.0, + 1069.0, + 215.0, + 1069.0, + 275.0, + 291.0, + 275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1066.0, + 579.0, + 1066.0, + 579.0, + 1113.0, + 294.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 460.0, + 934.0, + 460.0, + 934.0, + 503.0, + 768.0, + 503.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": [ + 393.0, + 538.0, + 1305.0, + 538.0, + 1305.0, + 574.0, + 393.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 569.0, + 1305.0, + 569.0, + 1305.0, + 603.0, + 393.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 601.0, + 1306.0, + 601.0, + 1306.0, + 634.0, + 393.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 631.0, + 1306.0, + 631.0, + 1306.0, + 666.0, + 393.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 663.0, + 1306.0, + 663.0, + 1306.0, + 694.0, + 394.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 690.0, + 1305.0, + 690.0, + 1305.0, + 726.0, + 394.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 724.0, + 1306.0, + 724.0, + 1306.0, + 755.0, + 394.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 754.0, + 1305.0, + 754.0, + 1305.0, + 785.0, + 394.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 783.0, + 1306.0, + 783.0, + 1306.0, + 815.0, + 394.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 815.0, + 1305.0, + 815.0, + 1305.0, + 850.0, + 393.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 846.0, + 1305.0, + 846.0, + 1305.0, + 875.0, + 393.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 875.0, + 1305.0, + 875.0, + 1305.0, + 907.0, + 393.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 906.0, + 1305.0, + 906.0, + 1305.0, + 937.0, + 394.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 936.0, + 1304.0, + 936.0, + 1304.0, + 969.0, + 394.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 964.0, + 1250.0, + 964.0, + 1250.0, + 1001.0, + 392.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1144.0, + 1404.0, + 1144.0, + 1404.0, + 1179.0, + 295.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1176.0, + 1404.0, + 1176.0, + 1404.0, + 1208.0, + 294.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1207.0, + 1405.0, + 1207.0, + 1405.0, + 1239.0, + 294.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1237.0, + 1404.0, + 1237.0, + 1404.0, + 1269.0, + 294.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1265.0, + 1405.0, + 1265.0, + 1405.0, + 1300.0, + 293.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1295.0, + 1404.0, + 1295.0, + 1404.0, + 1332.0, + 292.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1327.0, + 1405.0, + 1327.0, + 1405.0, + 1363.0, + 294.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1357.0, + 1404.0, + 1357.0, + 1404.0, + 1393.0, + 293.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1388.0, + 1406.0, + 1388.0, + 1406.0, + 1424.0, + 294.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1413.0, + 1405.0, + 1413.0, + 1405.0, + 1459.0, + 292.0, + 1459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1448.0, + 1404.0, + 1448.0, + 1404.0, + 1484.0, + 294.0, + 1484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1477.0, + 1404.0, + 1477.0, + 1404.0, + 1515.0, + 293.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1509.0, + 1078.0, + 1509.0, + 1078.0, + 1545.0, + 295.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1939.0, + 1401.0, + 1939.0, + 1401.0, + 1978.0, + 296.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1971.0, + 1405.0, + 1971.0, + 1405.0, + 2008.0, + 297.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 2002.0, + 963.0, + 2002.0, + 963.0, + 2040.0, + 297.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1555.0, + 1403.0, + 1555.0, + 1403.0, + 1590.0, + 296.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1585.0, + 612.0, + 1585.0, + 612.0, + 1619.0, + 294.0, + 1619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 322.0, + 560.0, + 322.0, + 560.0, + 355.0, + 315.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 352.0, + 682.0, + 352.0, + 682.0, + 385.0, + 311.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 1651.0, + 1403.0, + 1651.0, + 1403.0, + 1683.0, + 363.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1679.0, + 1403.0, + 1679.0, + 1403.0, + 1714.0, + 394.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1711.0, + 1281.0, + 1711.0, + 1281.0, + 1746.0, + 394.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1756.0, + 1405.0, + 1756.0, + 1405.0, + 1794.0, + 356.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1787.0, + 1404.0, + 1787.0, + 1404.0, + 1822.0, + 394.0, + 1822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1822.0, + 1404.0, + 1822.0, + 1404.0, + 1851.0, + 393.0, + 1851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1848.0, + 1405.0, + 1848.0, + 1405.0, + 1886.0, + 392.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1878.0, + 1157.0, + 1878.0, + 1157.0, + 1920.0, + 392.0, + 1920.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 613, + 1404, + 613, + 1404, + 1131, + 298, + 1131 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 230, + 1404, + 230, + 1404, + 595, + 298, + 595 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1675, + 1403, + 1675, + 1403, + 1859, + 298, + 1859 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1874, + 1403, + 1874, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 368, + 1202, + 1404, + 1202, + 1404, + 1566, + 368, + 1566 + ], + "score": 0.968 + }, + { + "category_id": 2, + "poly": [ + 1428, + 614, + 1505, + 614, + 1505, + 670, + 1428, + 670 + ], + "score": 0.918 + }, + { + "category_id": 1, + "poly": [ + 299, + 1146, + 863, + 1146, + 863, + 1177, + 299, + 1177 + ], + "score": 0.91 + }, + { + "category_id": 0, + "poly": [ + 299, + 1608, + 599, + 1608, + 599, + 1643, + 299, + 1643 + ], + "score": 0.881 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 852, + 76, + 852, + 104, + 300, + 104 + ], + "score": 0.73 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.708 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 854, + 76, + 854, + 104, + 299, + 104 + ], + "score": 0.149 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.113 + }, + { + "category_id": 13, + "poly": [ + 677, + 1973, + 739, + 1973, + 739, + 2005, + 677, + 2005 + ], + "score": 0.91, + "latex": "\\mathcal { D } _ { t + 1 }" + }, + { + "category_id": 13, + "poly": [ + 650, + 1908, + 711, + 1908, + 711, + 1939, + 650, + 1939 + ], + "score": 0.91, + "latex": "\\mathcal { D } _ { t + 1 }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1907, + 360, + 1907, + 360, + 1940, + 298, + 1940 + ], + "score": 0.9, + "latex": "\\mathcal { D } _ { t + 1 }" + }, + { + "category_id": 13, + "poly": [ + 596, + 1938, + 661, + 1938, + 661, + 1966, + 596, + 1966 + ], + "score": 0.89, + "latex": "t + 1" + }, + { + "category_id": 13, + "poly": [ + 1150, + 1967, + 1176, + 1967, + 1176, + 2000, + 1150, + 2000 + ], + "score": 0.86, + "latex": "\\widetilde { \\mathcal { D } }" + }, + { + "category_id": 13, + "poly": [ + 1375, + 1966, + 1402, + 1966, + 1402, + 2000, + 1375, + 2000 + ], + "score": 0.84, + "latex": "\\widehat { \\mathcal { D } }" + }, + { + "category_id": 13, + "poly": [ + 1227, + 1769, + 1256, + 1769, + 1256, + 1795, + 1227, + 1795 + ], + "score": 0.82, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 1317, + 1769, + 1345, + 1769, + 1345, + 1796, + 1317, + 1796 + ], + "score": 0.81, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 943, + 1799, + 972, + 1799, + 972, + 1826, + 943, + 1826 + ], + "score": 0.79, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 711, + 1799, + 739, + 1799, + 739, + 1826, + 711, + 1826 + ], + "score": 0.77, + "latex": "N" + }, + { + "category_id": 15, + "poly": [ + 1428.0, + 612.0, + 1509.0, + 612.0, + 1509.0, + 644.0, + 1428.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1425.0, + 639.0, + 1488.0, + 639.0, + 1488.0, + 677.0, + 1425.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1605.0, + 603.0, + 1605.0, + 603.0, + 1649.0, + 292.0, + 1649.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, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 839.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": [ + 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, + 615.0, + 1404.0, + 615.0, + 1404.0, + 647.0, + 297.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 644.0, + 1405.0, + 644.0, + 1405.0, + 676.0, + 296.0, + 676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 672.0, + 1406.0, + 672.0, + 1406.0, + 710.0, + 293.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 699.0, + 1405.0, + 699.0, + 1405.0, + 741.0, + 292.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 734.0, + 1405.0, + 734.0, + 1405.0, + 772.0, + 293.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 764.0, + 1405.0, + 764.0, + 1405.0, + 801.0, + 293.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 792.0, + 1408.0, + 792.0, + 1408.0, + 833.0, + 292.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 824.0, + 1404.0, + 824.0, + 1404.0, + 860.0, + 293.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 855.0, + 1405.0, + 855.0, + 1405.0, + 891.0, + 294.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 886.0, + 1404.0, + 886.0, + 1404.0, + 922.0, + 293.0, + 922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 917.0, + 1406.0, + 917.0, + 1406.0, + 953.0, + 294.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 947.0, + 1406.0, + 947.0, + 1406.0, + 983.0, + 292.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 978.0, + 1405.0, + 978.0, + 1405.0, + 1014.0, + 293.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1003.0, + 1405.0, + 1003.0, + 1405.0, + 1047.0, + 292.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1035.0, + 1405.0, + 1035.0, + 1405.0, + 1078.0, + 292.0, + 1078.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": [ + 294.0, + 1100.0, + 1384.0, + 1100.0, + 1384.0, + 1136.0, + 294.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 231.0, + 1405.0, + 231.0, + 1405.0, + 265.0, + 296.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 262.0, + 1404.0, + 262.0, + 1404.0, + 296.0, + 296.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 290.0, + 1404.0, + 290.0, + 1404.0, + 327.0, + 293.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 322.0, + 1404.0, + 322.0, + 1404.0, + 356.0, + 294.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 352.0, + 1406.0, + 352.0, + 1406.0, + 388.0, + 292.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 383.0, + 1405.0, + 383.0, + 1405.0, + 417.0, + 294.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 415.0, + 1404.0, + 415.0, + 1404.0, + 449.0, + 296.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 443.0, + 1405.0, + 443.0, + 1405.0, + 477.0, + 293.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 474.0, + 1405.0, + 474.0, + 1405.0, + 508.0, + 292.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 501.0, + 1404.0, + 501.0, + 1404.0, + 541.0, + 292.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 532.0, + 1405.0, + 532.0, + 1405.0, + 571.0, + 292.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 566.0, + 851.0, + 566.0, + 851.0, + 600.0, + 294.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1676.0, + 1405.0, + 1676.0, + 1405.0, + 1711.0, + 294.0, + 1711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1709.0, + 1404.0, + 1709.0, + 1404.0, + 1740.0, + 296.0, + 1740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1737.0, + 1405.0, + 1737.0, + 1405.0, + 1772.0, + 294.0, + 1772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1767.0, + 1226.0, + 1767.0, + 1226.0, + 1803.0, + 294.0, + 1803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1257.0, + 1767.0, + 1316.0, + 1767.0, + 1316.0, + 1803.0, + 1257.0, + 1803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1346.0, + 1767.0, + 1405.0, + 1767.0, + 1405.0, + 1803.0, + 1346.0, + 1803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1796.0, + 710.0, + 1796.0, + 710.0, + 1833.0, + 293.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 1796.0, + 942.0, + 1796.0, + 942.0, + 1833.0, + 740.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 1796.0, + 1405.0, + 1796.0, + 1405.0, + 1833.0, + 973.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1828.0, + 427.0, + 1828.0, + 427.0, + 1865.0, + 294.0, + 1865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1875.0, + 1404.0, + 1875.0, + 1404.0, + 1909.0, + 296.0, + 1909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1905.0, + 297.0, + 1905.0, + 297.0, + 1943.0, + 294.0, + 1943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 1905.0, + 649.0, + 1905.0, + 649.0, + 1943.0, + 361.0, + 1943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 1905.0, + 1405.0, + 1905.0, + 1405.0, + 1943.0, + 712.0, + 1943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1938.0, + 595.0, + 1938.0, + 595.0, + 1972.0, + 296.0, + 1972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 662.0, + 1938.0, + 1405.0, + 1938.0, + 1405.0, + 1972.0, + 662.0, + 1972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1969.0, + 676.0, + 1969.0, + 676.0, + 2008.0, + 293.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 1969.0, + 1149.0, + 1969.0, + 1149.0, + 2008.0, + 740.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 1969.0, + 1374.0, + 1969.0, + 1374.0, + 2008.0, + 1177.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 2001.0, + 1405.0, + 2001.0, + 1405.0, + 2038.0, + 292.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 1202.0, + 1404.0, + 1202.0, + 1404.0, + 1235.0, + 382.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1232.0, + 1404.0, + 1232.0, + 1404.0, + 1267.0, + 394.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1261.0, + 1404.0, + 1261.0, + 1404.0, + 1301.0, + 394.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1292.0, + 808.0, + 1292.0, + 808.0, + 1327.0, + 394.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1332.0, + 1405.0, + 1332.0, + 1405.0, + 1369.0, + 393.0, + 1369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1363.0, + 1402.0, + 1363.0, + 1402.0, + 1394.0, + 396.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1394.0, + 933.0, + 1394.0, + 933.0, + 1432.0, + 393.0, + 1432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 1432.0, + 1404.0, + 1432.0, + 1404.0, + 1469.0, + 390.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1465.0, + 1111.0, + 1465.0, + 1111.0, + 1499.0, + 394.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 1501.0, + 1404.0, + 1501.0, + 1404.0, + 1539.0, + 370.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1533.0, + 964.0, + 1533.0, + 964.0, + 1570.0, + 394.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1141.0, + 867.0, + 1141.0, + 867.0, + 1184.0, + 294.0, + 1184.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 438, + 1405, + 438, + 1405, + 699, + 296, + 699 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 296, + 996, + 1405, + 996, + 1405, + 1335, + 296, + 1335 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1575, + 1405, + 1575, + 1405, + 1744, + 297, + 1744 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1774, + 1404, + 1774, + 1404, + 1945, + 297, + 1945 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 221, + 1404, + 221, + 1404, + 407, + 297, + 407 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1448, + 1402, + 1448, + 1402, + 1542, + 298, + 1542 + ], + "score": 0.974 + }, + { + "category_id": 8, + "poly": [ + 575, + 877, + 1126, + 877, + 1126, + 968, + 575, + 968 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 300, + 743, + 1404, + 743, + 1404, + 812, + 300, + 812 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 299, + 1957, + 1402, + 1957, + 1402, + 2037, + 299, + 2037 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 691, + 697, + 1005, + 697, + 1005, + 736, + 691, + 736 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 300, + 825, + 801, + 825, + 801, + 858, + 300, + 858 + ], + "score": 0.93 + }, + { + "category_id": 0, + "poly": [ + 296, + 1380, + 1305, + 1380, + 1305, + 1415, + 296, + 1415 + ], + "score": 0.903 + }, + { + "category_id": 2, + "poly": [ + 1428, + 1577, + 1505, + 1577, + 1505, + 1636, + 1428, + 1636 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.898 + }, + { + "category_id": 9, + "poly": [ + 1366, + 907, + 1400, + 907, + 1400, + 936, + 1366, + 936 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 1428, + 1777, + 1505, + 1777, + 1505, + 1835, + 1428, + 1835 + ], + "score": 0.876 + }, + { + "category_id": 9, + "poly": [ + 1366, + 703, + 1400, + 703, + 1400, + 732, + 1366, + 732 + ], + "score": 0.874 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.618 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.542 + }, + { + "category_id": 13, + "poly": [ + 1076, + 629, + 1208, + 629, + 1208, + 667, + 1076, + 667 + ], + "score": 0.96, + "latex": "\\mathcal { L } ( \\boldsymbol { \\theta } , \\widetilde { \\mathcal { D } } ^ { m , S } )" + }, + { + "category_id": 14, + "poly": [ + 573, + 873, + 1129, + 873, + 1129, + 969, + 573, + 969 + ], + "score": 0.94, + "latex": "\\underset { \\theta } { \\arg \\operatorname* { m i n } } \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } \\mathcal { L } ( S G D _ { k } ( \\mathcal { L } ( \\theta , \\widetilde { \\mathcal { D } } ^ { m , S } ) ) , \\widetilde { \\mathcal { D } } ^ { m , Q } ) ." + }, + { + "category_id": 13, + "poly": [ + 661, + 1913, + 720, + 1913, + 720, + 1944, + 661, + 1944 + ], + "score": 0.94, + "latex": "p ( \\tau )" + }, + { + "category_id": 13, + "poly": [ + 432, + 1837, + 589, + 1837, + 589, + 1876, + 432, + 1876 + ], + "score": 0.93, + "latex": "\\widetilde { \\cal D } _ { 1 } , \\ldots , \\widetilde { \\cal D } _ { t + 1 }" + }, + { + "category_id": 13, + "poly": [ + 861, + 1875, + 1018, + 1875, + 1018, + 1912, + 861, + 1912 + ], + "score": 0.93, + "latex": "\\widetilde { \\mathcal { D } } _ { 1 } , \\ldots , \\widetilde { \\mathcal { D } } _ { t + 1 }" + }, + { + "category_id": 13, + "poly": [ + 1188, + 296, + 1394, + 296, + 1394, + 336, + 1188, + 336 + ], + "score": 0.93, + "latex": "\\hat { \\mathcal { D } } ^ { * , Q } = \\widehat { \\mathcal { D } } ^ { * } \\backslash \\widehat { \\mathcal { D } } ^ { * , S }" + }, + { + "category_id": 13, + "poly": [ + 1292, + 1637, + 1354, + 1637, + 1354, + 1677, + 1292, + 1677 + ], + "score": 0.93, + "latex": "\\widetilde { \\mathcal { D } } _ { t + 1 }" + }, + { + "category_id": 14, + "poly": [ + 691, + 693, + 1005, + 693, + 1005, + 736, + 691, + 736 + ], + "score": 0.93, + "latex": "\\tilde { \\theta } ^ { m } = S G D _ { k } ( \\mathcal { L } ( \\theta , \\widetilde { D } ^ { m , S } ) ) ," + }, + { + "category_id": 13, + "poly": [ + 461, + 1674, + 522, + 1674, + 522, + 1712, + 461, + 1712 + ], + "score": 0.93, + "latex": "\\widehat { \\mathcal { D } } _ { t + 1 }" + }, + { + "category_id": 13, + "poly": [ + 605, + 774, + 761, + 774, + 761, + 813, + 605, + 813 + ], + "score": 0.93, + "latex": "\\mathcal { L } ( \\tilde { \\theta } ^ { m } , \\widetilde { D } ^ { m , Q } )" + }, + { + "category_id": 13, + "poly": [ + 1142, + 1998, + 1388, + 1998, + 1388, + 2039, + 1142, + 2039 + ], + "score": 0.93, + "latex": "\\widetilde { D } _ { t + 1 } = \\widetilde { D } _ { t + 1 } ^ { S } \\cup \\widetilde { D } _ { t + 1 } ^ { Q }" + }, + { + "category_id": 13, + "poly": [ + 376, + 745, + 557, + 745, + 557, + 775, + 376, + 775 + ], + "score": 0.92, + "latex": "m = 1 , \\ldots , M" + }, + { + "category_id": 13, + "poly": [ + 776, + 1710, + 866, + 1710, + 866, + 1744, + 776, + 1744 + ], + "score": 0.92, + "latex": "p ( \\mathcal T _ { t + 1 } )" + }, + { + "category_id": 13, + "poly": [ + 394, + 1608, + 530, + 1608, + 530, + 1640, + 394, + 1640 + ], + "score": 0.92, + "latex": "\\mathcal { D } _ { 1 } , \\ldots , \\mathcal { D } _ { T }" + }, + { + "category_id": 13, + "poly": [ + 989, + 2000, + 1049, + 2000, + 1049, + 2037, + 989, + 2037 + ], + "score": 0.92, + "latex": "\\widetilde { \\mathcal { D } } _ { t + 1 }" + }, + { + "category_id": 13, + "poly": [ + 667, + 1807, + 727, + 1807, + 727, + 1840, + 667, + 1840 + ], + "score": 0.92, + "latex": "p ( \\mathcal { T } )" + }, + { + "category_id": 13, + "poly": [ + 1139, + 1957, + 1201, + 1957, + 1201, + 1998, + 1139, + 1998 + ], + "score": 0.92, + "latex": "\\mathcal { \\widetilde { D } } _ { t + 1 } ^ { S }" + }, + { + "category_id": 13, + "poly": [ + 1256, + 1957, + 1318, + 1957, + 1318, + 1998, + 1256, + 1998 + ], + "score": 0.92, + "latex": "\\widetilde { \\mathcal { D } } _ { t + 1 } ^ { Q }" + }, + { + "category_id": 13, + "poly": [ + 844, + 1643, + 906, + 1643, + 906, + 1677, + 844, + 1677 + ], + "score": 0.92, + "latex": "\\mathcal { D } _ { t + 1 }" + }, + { + "category_id": 13, + "poly": [ + 582, + 1642, + 644, + 1642, + 644, + 1677, + 582, + 1677 + ], + "score": 0.92, + "latex": "p ( \\mathcal T _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 949, + 773, + 1018, + 773, + 1018, + 807, + 949, + 807 + ], + "score": 0.9, + "latex": "\\bar { \\mathcal { D } } ^ { m , Q }" + }, + { + "category_id": 13, + "poly": [ + 335, + 664, + 401, + 664, + 401, + 698, + 335, + 698 + ], + "score": 0.9, + "latex": "\\widetilde { \\mathcal { D } } ^ { m , S }" + }, + { + "category_id": 13, + "poly": [ + 1040, + 296, + 1101, + 296, + 1101, + 331, + 1040, + 331 + ], + "score": 0.9, + "latex": "\\widehat { \\mathcal { D } } ^ { * , Q }" + }, + { + "category_id": 13, + "poly": [ + 954, + 260, + 1014, + 260, + 1014, + 295, + 954, + 295 + ], + "score": 0.89, + "latex": "\\widehat { \\mathcal { D } } ^ { * , S }" + }, + { + "category_id": 13, + "poly": [ + 1356, + 260, + 1393, + 260, + 1393, + 294, + 1356, + 294 + ], + "score": 0.89, + "latex": "\\widehat { \\mathcal { D } } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 427, + 629, + 465, + 629, + 465, + 661, + 427, + 661 + ], + "score": 0.89, + "latex": "\\tilde { \\theta } ^ { m }" + }, + { + "category_id": 13, + "poly": [ + 696, + 1608, + 730, + 1608, + 730, + 1638, + 696, + 1638 + ], + "score": 0.88, + "latex": "\\mathcal { D } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1161, + 224, + 1200, + 224, + 1200, + 259, + 1161, + 259 + ], + "score": 0.88, + "latex": "{ \\widehat { \\mathcal { D } } } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 1020, + 532, + 1047, + 532, + 1047, + 565, + 1020, + 565 + ], + "score": 0.86, + "latex": "\\widetilde { \\mathcal { D } }" + }, + { + "category_id": 13, + "poly": [ + 396, + 369, + 422, + 369, + 422, + 402, + 396, + 402 + ], + "score": 0.86, + "latex": "\\widetilde { \\mathcal { D } }" + }, + { + "category_id": 13, + "poly": [ + 368, + 332, + 395, + 332, + 395, + 366, + 368, + 366 + ], + "score": 0.86, + "latex": "\\widehat { \\mathcal { D } }" + }, + { + "category_id": 13, + "poly": [ + 462, + 261, + 489, + 261, + 489, + 295, + 462, + 295 + ], + "score": 0.85, + "latex": "\\widehat { \\mathcal { D } }" + }, + { + "category_id": 13, + "poly": [ + 335, + 224, + 361, + 224, + 361, + 258, + 335, + 258 + ], + "score": 0.83, + "latex": "\\widetilde { \\mathcal { D } }" + }, + { + "category_id": 13, + "poly": [ + 816, + 1808, + 842, + 1808, + 842, + 1834, + 816, + 1834 + ], + "score": 0.82, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 553, + 634, + 572, + 634, + 572, + 661, + 553, + 661 + ], + "score": 0.81, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1202, + 1778, + 1228, + 1778, + 1228, + 1804, + 1202, + 1804 + ], + "score": 0.8, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 426, + 781, + 443, + 781, + 443, + 807, + 426, + 807 + ], + "score": 0.8, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 596, + 671, + 613, + 671, + 613, + 698, + 596, + 698 + ], + "score": 0.8, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 925, + 603, + 952, + 603, + 952, + 627, + 925, + 627 + ], + "score": 0.74, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 669, + 538, + 702, + 538, + 702, + 565, + 669, + 565 + ], + "score": 0.74, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 1430, + 1576, + 1507, + 1576, + 1507, + 1605, + 1430, + 1605 + ], + "score": 0.64, + "latex": "@ \\ @ \\left( { \\widehat { a } } \\right)" + }, + { + "category_id": 13, + "poly": [ + 1430, + 1776, + 1507, + 1776, + 1507, + 1805, + 1430, + 1805 + ], + "score": 0.42, + "latex": "\\cdot" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1377.0, + 1311.0, + 1377.0, + 1311.0, + 1420.0, + 290.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1425.0, + 1604.0, + 1488.0, + 1604.0, + 1488.0, + 1643.0, + 1425.0, + 1643.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": [ + 1425.0, + 1802.0, + 1488.0, + 1802.0, + 1488.0, + 1841.0, + 1425.0, + 1841.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, + 438.0, + 1403.0, + 438.0, + 1403.0, + 476.0, + 294.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 468.0, + 1406.0, + 468.0, + 1406.0, + 508.0, + 291.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 502.0, + 1405.0, + 502.0, + 1405.0, + 536.0, + 293.0, + 536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 538.0, + 668.0, + 538.0, + 668.0, + 570.0, + 295.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 538.0, + 1019.0, + 538.0, + 1019.0, + 570.0, + 703.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 538.0, + 1402.0, + 538.0, + 1402.0, + 570.0, + 1048.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 567.0, + 1405.0, + 567.0, + 1405.0, + 602.0, + 294.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 597.0, + 924.0, + 597.0, + 924.0, + 635.0, + 291.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 953.0, + 597.0, + 1406.0, + 597.0, + 1406.0, + 635.0, + 953.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 629.0, + 426.0, + 629.0, + 426.0, + 671.0, + 291.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 629.0, + 552.0, + 629.0, + 552.0, + 671.0, + 466.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 629.0, + 1075.0, + 629.0, + 1075.0, + 671.0, + 573.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 629.0, + 1406.0, + 629.0, + 1406.0, + 671.0, + 1209.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 665.0, + 334.0, + 665.0, + 334.0, + 705.0, + 293.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 665.0, + 595.0, + 665.0, + 595.0, + 705.0, + 402.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 665.0, + 626.0, + 665.0, + 626.0, + 705.0, + 614.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 996.0, + 1406.0, + 996.0, + 1406.0, + 1035.0, + 293.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1030.0, + 1402.0, + 1030.0, + 1402.0, + 1061.0, + 295.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1058.0, + 1405.0, + 1058.0, + 1405.0, + 1094.0, + 293.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1088.0, + 1406.0, + 1088.0, + 1406.0, + 1128.0, + 291.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1121.0, + 1405.0, + 1121.0, + 1405.0, + 1156.0, + 294.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1151.0, + 1405.0, + 1151.0, + 1405.0, + 1185.0, + 294.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1180.0, + 1406.0, + 1180.0, + 1406.0, + 1217.0, + 293.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1213.0, + 1403.0, + 1213.0, + 1403.0, + 1244.0, + 295.0, + 1244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1242.0, + 1405.0, + 1242.0, + 1405.0, + 1278.0, + 293.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1273.0, + 1405.0, + 1273.0, + 1405.0, + 1308.0, + 294.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1301.0, + 950.0, + 1301.0, + 950.0, + 1339.0, + 293.0, + 1339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1574.0, + 1405.0, + 1574.0, + 1405.0, + 1610.0, + 295.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1605.0, + 393.0, + 1605.0, + 393.0, + 1642.0, + 294.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 1605.0, + 695.0, + 1605.0, + 695.0, + 1642.0, + 531.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.0, + 1605.0, + 1405.0, + 1605.0, + 1405.0, + 1642.0, + 731.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1641.0, + 581.0, + 1641.0, + 581.0, + 1679.0, + 292.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 1641.0, + 843.0, + 1641.0, + 843.0, + 1679.0, + 645.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 1641.0, + 1291.0, + 1641.0, + 1291.0, + 1679.0, + 907.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1355.0, + 1641.0, + 1406.0, + 1641.0, + 1406.0, + 1679.0, + 1355.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1678.0, + 460.0, + 1678.0, + 460.0, + 1715.0, + 294.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 523.0, + 1678.0, + 1406.0, + 1678.0, + 1406.0, + 1715.0, + 523.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1709.0, + 775.0, + 1709.0, + 775.0, + 1746.0, + 294.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 1709.0, + 877.0, + 1709.0, + 877.0, + 1746.0, + 867.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1776.0, + 1201.0, + 1776.0, + 1201.0, + 1810.0, + 296.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1229.0, + 1776.0, + 1404.0, + 1776.0, + 1404.0, + 1810.0, + 1229.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1806.0, + 666.0, + 1806.0, + 666.0, + 1840.0, + 295.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 1806.0, + 815.0, + 1806.0, + 815.0, + 1840.0, + 728.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 1806.0, + 1404.0, + 1806.0, + 1404.0, + 1840.0, + 843.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1838.0, + 431.0, + 1838.0, + 431.0, + 1883.0, + 291.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 590.0, + 1838.0, + 1406.0, + 1838.0, + 1406.0, + 1883.0, + 590.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1878.0, + 860.0, + 1878.0, + 860.0, + 1914.0, + 294.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 1878.0, + 1404.0, + 1878.0, + 1404.0, + 1914.0, + 1019.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1910.0, + 660.0, + 1910.0, + 660.0, + 1944.0, + 295.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 721.0, + 1910.0, + 730.0, + 1910.0, + 730.0, + 1944.0, + 721.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 226.0, + 334.0, + 226.0, + 334.0, + 265.0, + 294.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 226.0, + 1160.0, + 226.0, + 1160.0, + 265.0, + 362.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1201.0, + 226.0, + 1405.0, + 226.0, + 1405.0, + 265.0, + 1201.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 260.0, + 461.0, + 260.0, + 461.0, + 301.0, + 291.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 490.0, + 260.0, + 953.0, + 260.0, + 953.0, + 301.0, + 490.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1015.0, + 260.0, + 1355.0, + 260.0, + 1355.0, + 301.0, + 1015.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 260.0, + 1404.0, + 260.0, + 1404.0, + 301.0, + 1394.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 296.0, + 1039.0, + 296.0, + 1039.0, + 336.0, + 292.0, + 336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1102.0, + 296.0, + 1187.0, + 296.0, + 1187.0, + 336.0, + 1102.0, + 336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 296.0, + 1405.0, + 296.0, + 1405.0, + 336.0, + 1395.0, + 336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 331.0, + 367.0, + 331.0, + 367.0, + 377.0, + 292.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 331.0, + 1406.0, + 331.0, + 1406.0, + 377.0, + 396.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 369.0, + 395.0, + 369.0, + 395.0, + 411.0, + 295.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 369.0, + 627.0, + 369.0, + 627.0, + 411.0, + 423.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1446.0, + 1403.0, + 1446.0, + 1403.0, + 1484.0, + 294.0, + 1484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1479.0, + 1402.0, + 1479.0, + 1402.0, + 1517.0, + 293.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1508.0, + 911.0, + 1508.0, + 911.0, + 1547.0, + 292.0, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 739.0, + 375.0, + 739.0, + 375.0, + 779.0, + 295.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 739.0, + 1403.0, + 739.0, + 1403.0, + 779.0, + 558.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 776.0, + 425.0, + 776.0, + 425.0, + 813.0, + 293.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 776.0, + 604.0, + 776.0, + 604.0, + 813.0, + 444.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 776.0, + 948.0, + 776.0, + 948.0, + 813.0, + 762.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 776.0, + 1030.0, + 776.0, + 1030.0, + 813.0, + 1019.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 1941.0, + 1138.0, + 1941.0, + 1138.0, + 2015.0, + 285.0, + 2015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1202.0, + 1941.0, + 1255.0, + 1941.0, + 1255.0, + 2015.0, + 1202.0, + 2015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1319.0, + 1941.0, + 1407.0, + 1941.0, + 1407.0, + 2015.0, + 1319.0, + 2015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 284.0, + 1980.0, + 988.0, + 1980.0, + 988.0, + 2055.0, + 284.0, + 2055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 1980.0, + 1141.0, + 1980.0, + 1141.0, + 2055.0, + 1050.0, + 2055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1389.0, + 2015.0, + 1399.0, + 2015.0, + 1399.0, + 2042.0, + 1389.0, + 2042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1286.0, + 1988.0, + 1383.0, + 1988.0, + 1383.0, + 2041.5, + 1286.0, + 2041.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 823.0, + 802.0, + 823.0, + 802.0, + 863.0, + 295.0, + 863.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1371, + 1405, + 1371, + 1405, + 1527, + 297, + 1527 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 984, + 1404, + 984, + 1404, + 1139, + 298, + 1139 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1233, + 1404, + 1233, + 1404, + 1357, + 298, + 1357 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 538, + 1405, + 538, + 1405, + 677, + 297, + 677 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 747, + 1404, + 747, + 1404, + 873, + 297, + 873 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 1875, + 1403, + 1875, + 1403, + 2036, + 297, + 2036 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1647, + 1406, + 1647, + 1406, + 1744, + 298, + 1744 + ], + "score": 0.975 + }, + { + "category_id": 8, + "poly": [ + 592, + 692, + 1104, + 692, + 1104, + 737, + 592, + 737 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 295, + 225, + 1402, + 225, + 1402, + 294, + 295, + 294 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 600, + 404, + 1239, + 404, + 1239, + 477, + 600, + 477 + ], + "score": 0.936 + }, + { + "category_id": 0, + "poly": [ + 299, + 917, + 1130, + 917, + 1130, + 953, + 299, + 953 + ], + "score": 0.93 + }, + { + "category_id": 8, + "poly": [ + 305, + 1540, + 1334, + 1540, + 1334, + 1614, + 305, + 1614 + ], + "score": 0.921 + }, + { + "category_id": 1, + "poly": [ + 293, + 489, + 1230, + 489, + 1230, + 524, + 293, + 524 + ], + "score": 0.916 + }, + { + "category_id": 8, + "poly": [ + 600, + 355, + 1057, + 355, + 1057, + 399, + 600, + 399 + ], + "score": 0.896 + }, + { + "category_id": 9, + "poly": [ + 1366, + 702, + 1400, + 702, + 1400, + 731, + 1366, + 731 + ], + "score": 0.885 + }, + { + "category_id": 9, + "poly": [ + 1365, + 317, + 1400, + 317, + 1400, + 347, + 1365, + 347 + ], + "score": 0.869 + }, + { + "category_id": 9, + "poly": [ + 1365, + 424, + 1401, + 424, + 1401, + 455, + 1365, + 455 + ], + "score": 0.866 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1848, + 1400, + 1848, + 1400, + 1877, + 1365, + 1877 + ], + "score": 0.859 + }, + { + "category_id": 8, + "poly": [ + 298, + 1760, + 1403, + 1760, + 1403, + 1852, + 298, + 1852 + ], + "score": 0.854 + }, + { + "category_id": 9, + "poly": [ + 1365, + 364, + 1401, + 364, + 1401, + 393, + 1365, + 393 + ], + "score": 0.847 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 854, + 74, + 854, + 106, + 297, + 106 + ], + "score": 0.844 + }, + { + "category_id": 0, + "poly": [ + 298, + 1176, + 1188, + 1176, + 1188, + 1209, + 298, + 1209 + ], + "score": 0.788 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2111, + 841, + 2111 + ], + "score": 0.786 + }, + { + "category_id": 8, + "poly": [ + 461, + 307, + 935, + 307, + 935, + 351, + 461, + 351 + ], + "score": 0.773 + }, + { + "category_id": 9, + "poly": [ + 1368, + 1562, + 1399, + 1562, + 1399, + 1594, + 1368, + 1594 + ], + "score": 0.372 + }, + { + "category_id": 9, + "poly": [ + 1368, + 1562, + 1400, + 1562, + 1400, + 1594, + 1368, + 1594 + ], + "score": 0.299 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 854, + 74, + 854, + 106, + 298, + 106 + ], + "score": 0.122 + }, + { + "category_id": 1, + "poly": [ + 298, + 1176, + 1188, + 1176, + 1188, + 1209, + 298, + 1209 + ], + "score": 0.12 + }, + { + "category_id": 14, + "poly": [ + 458, + 303, + 1239, + 303, + 1239, + 481, + 458, + 481 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { p ( \\theta | \\widetilde { D } _ { 1 : t + 1 } ) \\propto p ( \\widetilde { D } _ { t + 1 } ^ { S } , \\widetilde { D } _ { t + 1 } ^ { Q } | \\theta ) p ( \\theta | \\widetilde { D } _ { 1 : t } ) } \\\\ & { \\qquad = p ( \\widetilde { D } _ { t + 1 } ^ { Q } | \\theta , \\widetilde { D } _ { t + 1 } ^ { S } ) p ( \\widetilde { D } _ { t + 1 } ^ { S } | \\theta ) p ( \\theta | \\widetilde { D } _ { 1 : t } ) } \\\\ & { \\qquad = \\bigg \\{ \\int p ( \\widetilde { D } _ { t + 1 } ^ { Q } | \\widetilde { \\theta } ) p ( \\widetilde { \\theta } | \\theta , \\widetilde { D } _ { t + 1 } ^ { S } ) d \\widetilde { \\theta } \\bigg \\} p ( \\widetilde { D } _ { t + 1 } ^ { S } | \\theta ) p ( \\theta | \\widetilde { D } _ { 1 : t } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1131, + 1463, + 1297, + 1463, + 1297, + 1497, + 1131, + 1497 + ], + "score": 0.94, + "latex": "\\phi _ { t } = \\{ \\mu _ { t } , \\Lambda _ { t } \\}" + }, + { + "category_id": 13, + "poly": [ + 1226, + 572, + 1369, + 572, + 1369, + 612, + 1226, + 612 + ], + "score": 0.93, + "latex": "p ( \\tilde { \\theta } | \\theta , \\widetilde { D } _ { t + 1 } ^ { S } )" + }, + { + "category_id": 14, + "poly": [ + 306, + 1539, + 1360, + 1539, + 1360, + 1616, + 306, + 1616 + ], + "score": 0.93, + "latex": "\\theta ^ { * } = \\arg \\operatorname* { m a x } _ { \\theta } \\Bigg \\{ \\log \\int p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { Q } | \\widetilde { \\theta } ) p ( \\widetilde { \\theta } | \\theta , \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { S } ) d \\widetilde { \\theta } + \\log p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { S } | \\theta ) - \\frac { 1 } { 2 } ( \\theta - \\mu _ { t } ) ^ { T } \\Lambda _ { t } ( \\theta - \\mu _ { t } ) \\Bigg \\} ." + }, + { + "category_id": 13, + "poly": [ + 811, + 638, + 873, + 638, + 873, + 680, + 811, + 680 + ], + "score": 0.93, + "latex": "\\mathcal { \\widetilde { D } } _ { t + 1 } ^ { S }" + }, + { + "category_id": 14, + "poly": [ + 592, + 691, + 1106, + 691, + 1106, + 738, + 592, + 738 + ], + "score": 0.93, + "latex": "p ( { \\tilde { \\theta } } | \\theta , { \\widetilde { \\mathcal { D } } } _ { t + 1 } ^ { S } ) = \\mathbb { 1 } \\{ { \\tilde { \\theta } } = S G D _ { k } ( { \\mathcal { L } } ( \\theta , { \\widetilde { \\mathcal { D } } } _ { t + 1 } ^ { S } ) ) \\} ." + }, + { + "category_id": 13, + "poly": [ + 373, + 1875, + 677, + 1875, + 677, + 1916, + 373, + 1916 + ], + "score": 0.92, + "latex": "\\tilde { \\theta } ^ { m } = S G D _ { k } ( \\mathcal { L } ( \\theta , \\widetilde { D } _ { t + 1 } ^ { m , S } ) )" + }, + { + "category_id": 14, + "poly": [ + 310, + 1757, + 1403, + 1757, + 1403, + 1853, + 310, + 1853 + ], + "score": 0.91, + "latex": "\\mathsf { \\Pi } _ { t + 1 } ^ { \\mathsf { R O M L A } } ( \\theta , \\mu _ { t } , \\Lambda _ { t } ) = - \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } \\log p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { m , Q } | \\widetilde { \\theta } ^ { m } ) - \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } \\log p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { m , S } | \\theta ) + \\frac { 1 } { 2 } ( \\theta - \\mu _ { t } ) ^ { T } \\Lambda _ { t } ( \\theta - \\mu _ { t } ) ," + }, + { + "category_id": 13, + "poly": [ + 700, + 225, + 1012, + 225, + 1012, + 265, + 700, + 265 + ], + "score": 0.88, + "latex": "\\theta ^ { * } = \\arg \\operatorname* { m a x } _ { \\theta } p ( \\theta | \\widetilde { D } _ { 1 : t + 1 } )" + }, + { + "category_id": 13, + "poly": [ + 724, + 1884, + 893, + 1884, + 893, + 1913, + 724, + 1913 + ], + "score": 0.87, + "latex": "m = 1 , \\ldots , M" + }, + { + "category_id": 13, + "poly": [ + 889, + 538, + 907, + 538, + 907, + 569, + 889, + 569 + ], + "score": 0.84, + "latex": "\\tilde { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 906, + 1647, + 923, + 1647, + 923, + 1679, + 906, + 1679 + ], + "score": 0.84, + "latex": "\\tilde { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 1067, + 645, + 1083, + 645, + 1083, + 671, + 1067, + 671 + ], + "score": 0.8, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 1276, + 1883, + 1309, + 1883, + 1309, + 1910, + 1276, + 1910 + ], + "score": 0.79, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 851, + 1470, + 869, + 1470, + 869, + 1495, + 851, + 1495 + ], + "score": 0.79, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 1205, + 493, + 1221, + 493, + 1221, + 518, + 1205, + 518 + ], + "score": 0.79, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 445, + 644, + 466, + 644, + 466, + 671, + 445, + 671 + ], + "score": 0.79, + "latex": "\\mathcal { L }" + }, + { + "category_id": 13, + "poly": [ + 1231, + 1913, + 1264, + 1913, + 1264, + 1939, + 1231, + 1939 + ], + "score": 0.78, + "latex": "M" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 915.0, + 1134.0, + 915.0, + 1134.0, + 957.0, + 293.0, + 957.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": [ + 295.0, + 1178.0, + 1192.0, + 1178.0, + 1192.0, + 1210.0, + 295.0, + 1210.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": [ + 297.0, + 72.0, + 857.0, + 72.0, + 857.0, + 109.0, + 297.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1370.0, + 1403.0, + 1370.0, + 1403.0, + 1409.0, + 294.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1400.0, + 1403.0, + 1400.0, + 1403.0, + 1437.0, + 295.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1432.0, + 1405.0, + 1432.0, + 1405.0, + 1468.0, + 292.0, + 1468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1460.0, + 850.0, + 1460.0, + 850.0, + 1502.0, + 291.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 1460.0, + 1130.0, + 1460.0, + 1130.0, + 1502.0, + 870.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1298.0, + 1460.0, + 1406.0, + 1460.0, + 1406.0, + 1502.0, + 1298.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1496.0, + 815.0, + 1496.0, + 815.0, + 1529.0, + 296.0, + 1529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 983.0, + 1404.0, + 983.0, + 1404.0, + 1022.0, + 293.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1015.0, + 1406.0, + 1015.0, + 1406.0, + 1052.0, + 294.0, + 1052.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1047.0, + 1402.0, + 1047.0, + 1402.0, + 1084.0, + 294.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1076.0, + 1403.0, + 1076.0, + 1403.0, + 1112.0, + 295.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1108.0, + 1391.0, + 1108.0, + 1391.0, + 1141.0, + 294.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1231.0, + 1405.0, + 1231.0, + 1405.0, + 1271.0, + 293.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1263.0, + 1404.0, + 1263.0, + 1404.0, + 1299.0, + 293.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1295.0, + 1406.0, + 1295.0, + 1406.0, + 1331.0, + 293.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1327.0, + 875.0, + 1327.0, + 875.0, + 1360.0, + 293.0, + 1360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 539.0, + 888.0, + 539.0, + 888.0, + 578.0, + 294.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 908.0, + 539.0, + 1406.0, + 539.0, + 1406.0, + 578.0, + 908.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 574.0, + 1225.0, + 574.0, + 1225.0, + 612.0, + 294.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1370.0, + 574.0, + 1406.0, + 574.0, + 1406.0, + 612.0, + 1370.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 608.0, + 1406.0, + 608.0, + 1406.0, + 642.0, + 295.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 632.0, + 444.0, + 632.0, + 444.0, + 687.0, + 289.0, + 687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 467.0, + 632.0, + 810.0, + 632.0, + 810.0, + 687.0, + 467.0, + 687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 632.0, + 1066.0, + 632.0, + 1066.0, + 687.0, + 874.0, + 687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1084.0, + 632.0, + 1198.0, + 632.0, + 1198.0, + 687.0, + 1084.0, + 687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 750.0, + 1404.0, + 750.0, + 1404.0, + 783.0, + 296.0, + 783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 779.0, + 1405.0, + 779.0, + 1405.0, + 815.0, + 292.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 811.0, + 1405.0, + 811.0, + 1405.0, + 848.0, + 295.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 838.0, + 945.0, + 838.0, + 945.0, + 878.0, + 292.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 1863.0, + 372.0, + 1863.0, + 372.0, + 1931.0, + 287.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 1863.0, + 723.0, + 1863.0, + 723.0, + 1931.0, + 678.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 1863.0, + 1275.0, + 1863.0, + 1275.0, + 1931.0, + 894.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1310.0, + 1863.0, + 1415.0, + 1863.0, + 1415.0, + 1931.0, + 1310.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1909.0, + 1230.0, + 1909.0, + 1230.0, + 1947.0, + 295.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1265.0, + 1909.0, + 1405.0, + 1909.0, + 1405.0, + 1947.0, + 1265.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1941.0, + 1405.0, + 1941.0, + 1405.0, + 1977.0, + 292.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1969.0, + 1405.0, + 1969.0, + 1405.0, + 2010.0, + 294.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2003.0, + 1054.0, + 2003.0, + 1054.0, + 2037.0, + 295.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1647.0, + 905.0, + 1647.0, + 905.0, + 1686.0, + 293.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 924.0, + 1647.0, + 1404.0, + 1647.0, + 1404.0, + 1686.0, + 924.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1677.0, + 1407.0, + 1677.0, + 1407.0, + 1719.0, + 292.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1709.0, + 447.0, + 1709.0, + 447.0, + 1749.0, + 294.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 225.0, + 699.0, + 225.0, + 699.0, + 270.0, + 294.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 225.0, + 1407.0, + 225.0, + 1407.0, + 270.0, + 1013.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 262.0, + 604.0, + 262.0, + 604.0, + 292.0, + 295.0, + 292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 488.0, + 1204.0, + 488.0, + 1204.0, + 528.0, + 296.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 488.0, + 1232.0, + 488.0, + 1232.0, + 528.0, + 1222.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1178.0, + 1192.0, + 1178.0, + 1192.0, + 1210.0, + 295.0, + 1210.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1404, + 1405, + 1404, + 1405, + 1663, + 297, + 1663 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 285, + 1405, + 285, + 1405, + 411, + 297, + 411 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 1862, + 1404, + 1862, + 1404, + 1957, + 299, + 1957 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 1105, + 1404, + 1105, + 1404, + 1228, + 297, + 1228 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 1753, + 1404, + 1753, + 1404, + 1849, + 299, + 1849 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 299, + 569, + 1404, + 569, + 1404, + 662, + 299, + 662 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 295, + 834, + 1401, + 834, + 1401, + 905, + 295, + 905 + ], + "score": 0.96 + }, + { + "category_id": 8, + "poly": [ + 585, + 751, + 1114, + 751, + 1114, + 824, + 585, + 824 + ], + "score": 0.957 + }, + { + "category_id": 8, + "poly": [ + 612, + 1315, + 1090, + 1315, + 1090, + 1396, + 612, + 1396 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 294, + 676, + 1400, + 676, + 1400, + 740, + 294, + 740 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 388, + 918, + 1314, + 918, + 1314, + 1004, + 388, + 1004 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 296, + 1020, + 1405, + 1020, + 1405, + 1090, + 296, + 1090 + ], + "score": 0.942 + }, + { + "category_id": 8, + "poly": [ + 314, + 1964, + 1332, + 1964, + 1332, + 2043, + 314, + 2043 + ], + "score": 0.939 + }, + { + "category_id": 8, + "poly": [ + 698, + 1228, + 995, + 1228, + 995, + 1269, + 698, + 1269 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 293, + 424, + 1283, + 424, + 1283, + 458, + 293, + 458 + ], + "score": 0.926 + }, + { + "category_id": 1, + "poly": [ + 304, + 1271, + 1300, + 1271, + 1300, + 1306, + 304, + 1306 + ], + "score": 0.911 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1344, + 1400, + 1344, + 1400, + 1376, + 1352, + 1376 + ], + "score": 0.909 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1235, + 1400, + 1235, + 1400, + 1265, + 1351, + 1265 + ], + "score": 0.904 + }, + { + "category_id": 9, + "poly": [ + 1352, + 771, + 1400, + 771, + 1400, + 802, + 1352, + 802 + ], + "score": 0.897 + }, + { + "category_id": 9, + "poly": [ + 1365, + 500, + 1400, + 500, + 1400, + 530, + 1365, + 530 + ], + "score": 0.885 + }, + { + "category_id": 9, + "poly": [ + 1352, + 946, + 1400, + 946, + 1400, + 977, + 1352, + 977 + ], + "score": 0.877 + }, + { + "category_id": 0, + "poly": [ + 299, + 229, + 679, + 229, + 679, + 261, + 299, + 261 + ], + "score": 0.874 + }, + { + "category_id": 0, + "poly": [ + 299, + 1699, + 1177, + 1699, + 1177, + 1730, + 299, + 1730 + ], + "score": 0.853 + }, + { + "category_id": 9, + "poly": [ + 1353, + 1987, + 1400, + 1987, + 1400, + 2017, + 1353, + 2017 + ], + "score": 0.816 + }, + { + "category_id": 8, + "poly": [ + 530, + 471, + 1163, + 471, + 1163, + 559, + 530, + 559 + ], + "score": 0.799 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.758 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 854, + 74, + 854, + 105, + 297, + 105 + ], + "score": 0.734 + }, + { + "category_id": 8, + "poly": [ + 530, + 471, + 1163, + 471, + 1163, + 560, + 530, + 560 + ], + "score": 0.327 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 854, + 74, + 854, + 105, + 298, + 105 + ], + "score": 0.249 + }, + { + "category_id": 14, + "poly": [ + 531, + 466, + 1168, + 466, + 1168, + 562, + 531, + 562 + ], + "score": 0.95, + "latex": "\\widetilde { H } _ { t + 1 } ^ { i j } = \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } - \\frac { \\partial ^ { 2 } } { \\partial \\theta ^ { ( i ) } \\partial \\theta ^ { ( j ) } } \\log p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { m , Q } | \\widetilde { \\theta } ^ { m } ) ) \\Bigg | _ { \\theta = \\mu _ { t + 1 } } ." + }, + { + "category_id": 14, + "poly": [ + 585, + 750, + 1114, + 750, + 1114, + 826, + 585, + 826 + ], + "score": 0.94, + "latex": "F = \\mathbb { E } _ { x , y } \\bigg [ \\frac { d } { d \\theta } \\log p ( y | x , \\theta ) \\frac { d } { d \\theta } \\log p ( y | x , \\theta ) ^ { T } \\bigg ] ." + }, + { + "category_id": 14, + "poly": [ + 608, + 1314, + 1089, + 1314, + 1089, + 1399, + 608, + 1399 + ], + "score": 0.94, + "latex": "\\left( \\frac { \\partial \\tilde { \\theta } ^ { m } } { \\partial \\theta } \\right) ^ { i j } = I ^ { i j } - \\frac { \\partial ^ { 2 } ( - \\log p ( \\widetilde { D } _ { t + 1 } ^ { m , S } | \\theta ) ) } { \\partial \\theta ^ { ( i ) } \\partial \\theta ^ { ( j ) } } ," + }, + { + "category_id": 14, + "poly": [ + 388, + 912, + 1310, + 912, + 1310, + 1009, + 388, + 1009 + ], + "score": 0.93, + "latex": "\\widetilde { F } = \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } \\mathbb { E } _ { x , y } \\bigg [ \\bigg ( \\frac { \\partial \\widetilde { \\theta } ^ { m } } { \\partial \\theta } \\bigg ) \\frac { d } { d \\widetilde { \\theta } ^ { m } } \\log p ( y | x , \\widetilde { \\theta } ^ { m } ) \\frac { d } { d \\widetilde { \\theta } ^ { m } } \\log p ( y | x , \\widetilde { \\theta } ^ { m } ) ^ { T } \\bigg ( \\frac { \\partial \\widetilde { \\theta } ^ { m } } { \\partial \\theta } \\bigg ) ^ { T } \\bigg ] ." + }, + { + "category_id": 14, + "poly": [ + 314, + 1964, + 1337, + 1964, + 1337, + 2042, + 314, + 2042 + ], + "score": 0.93, + "latex": "q ( \\theta | \\phi _ { t + 1 } ) = \\underset { q \\in \\mathcal { Q } } { \\operatorname { a r g m i n } } D _ { \\mathrm { K L } } \\Bigg ( q ( \\theta | \\phi ) \\bigg | \\bigg | \\bigg \\{ \\int p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { Q } | \\widetilde { \\theta } ) p ( \\widetilde { \\theta } | \\theta , \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { S } ) d \\widetilde { \\theta } \\bigg \\} p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { S } | \\theta ) q ( \\theta | \\phi _ { t } ) \\Bigg ) ." + }, + { + "category_id": 13, + "poly": [ + 905, + 1563, + 1157, + 1563, + 1157, + 1602, + 905, + 1602 + ], + "score": 0.93, + "latex": "\\Lambda _ { t + 1 } = \\lambda { \\widetilde { \\cal H } } _ { t + 1 } + \\Lambda _ { t }" + }, + { + "category_id": 14, + "poly": [ + 698, + 1225, + 1000, + 1225, + 1000, + 1272, + 698, + 1272 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\tilde { \\theta } ^ { m } = \\theta - \\nabla _ { \\theta } \\mathcal { L } ( \\theta , \\widetilde { D } _ { t + 1 } ^ { m , S } ) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 675, + 1273, + 733, + 1273, + 733, + 1306, + 675, + 1306 + ], + "score": 0.92, + "latex": "( i , j )" + }, + { + "category_id": 13, + "poly": [ + 362, + 837, + 427, + 837, + 427, + 869, + 362, + 869 + ], + "score": 0.91, + "latex": "( x , y )" + }, + { + "category_id": 13, + "poly": [ + 653, + 1019, + 703, + 1019, + 703, + 1063, + 653, + 1063 + ], + "score": 0.91, + "latex": "\\frac { \\partial \\tilde { \\theta } ^ { m } } { \\partial \\theta }" + }, + { + "category_id": 13, + "poly": [ + 1193, + 1103, + 1231, + 1103, + 1231, + 1135, + 1193, + 1135 + ], + "score": 0.89, + "latex": "\\tilde { \\theta } ^ { m }" + }, + { + "category_id": 13, + "poly": [ + 405, + 319, + 436, + 319, + 436, + 349, + 405, + 349 + ], + "score": 0.88, + "latex": "\\Lambda _ { t }" + }, + { + "category_id": 13, + "poly": [ + 461, + 869, + 485, + 869, + 485, + 898, + 461, + 898 + ], + "score": 0.88, + "latex": "\\widetilde { F }" + }, + { + "category_id": 13, + "poly": [ + 807, + 1528, + 832, + 1528, + 832, + 1561, + 807, + 1561 + ], + "score": 0.87, + "latex": "\\widetilde { F }" + }, + { + "category_id": 13, + "poly": [ + 332, + 1468, + 357, + 1468, + 357, + 1494, + 332, + 1494 + ], + "score": 0.84, + "latex": "F" + }, + { + "category_id": 13, + "poly": [ + 298, + 713, + 322, + 713, + 322, + 735, + 298, + 735 + ], + "score": 0.83, + "latex": "F" + }, + { + "category_id": 13, + "poly": [ + 1036, + 1408, + 1060, + 1408, + 1060, + 1434, + 1036, + 1434 + ], + "score": 0.81, + "latex": "\\mathcal { L }" + }, + { + "category_id": 13, + "poly": [ + 935, + 1896, + 959, + 1896, + 959, + 1924, + 935, + 1924 + ], + "score": 0.79, + "latex": "\\mathcal { Q }" + }, + { + "category_id": 13, + "poly": [ + 433, + 1601, + 453, + 1601, + 453, + 1627, + 433, + 1627 + ], + "score": 0.78, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 376, + 1408, + 395, + 1408, + 395, + 1434, + 376, + 1434 + ], + "score": 0.76, + "latex": "I" + }, + { + "category_id": 13, + "poly": [ + 533, + 1570, + 554, + 1570, + 554, + 1596, + 533, + 1596 + ], + "score": 0.75, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 1164, + 841, + 1192, + 841, + 1192, + 863, + 1164, + 863 + ], + "score": 0.72, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 866, + 710, + 891, + 710, + 891, + 737, + 866, + 737 + ], + "score": 0.48, + "latex": "\\&" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 229.0, + 682.0, + 229.0, + 682.0, + 265.0, + 294.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1697.0, + 1179.0, + 1697.0, + 1179.0, + 1732.0, + 294.0, + 1732.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": [ + 297.0, + 72.0, + 856.0, + 72.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 857.0, + 72.0, + 857.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1401.0, + 375.0, + 1401.0, + 375.0, + 1445.0, + 292.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1401.0, + 1035.0, + 1401.0, + 1035.0, + 1445.0, + 396.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 1401.0, + 1405.0, + 1401.0, + 1405.0, + 1445.0, + 1061.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1435.0, + 1405.0, + 1435.0, + 1405.0, + 1472.0, + 294.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1465.0, + 331.0, + 1465.0, + 331.0, + 1502.0, + 294.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1465.0, + 1403.0, + 1465.0, + 1403.0, + 1502.0, + 358.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1496.0, + 1405.0, + 1496.0, + 1405.0, + 1532.0, + 294.0, + 1532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1531.0, + 806.0, + 1531.0, + 806.0, + 1570.0, + 291.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 1531.0, + 1406.0, + 1531.0, + 1406.0, + 1570.0, + 833.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1566.0, + 532.0, + 1566.0, + 532.0, + 1605.0, + 292.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 1566.0, + 904.0, + 1566.0, + 904.0, + 1605.0, + 555.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 1566.0, + 1406.0, + 1566.0, + 1406.0, + 1605.0, + 1158.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1600.0, + 432.0, + 1600.0, + 432.0, + 1634.0, + 295.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 1600.0, + 1403.0, + 1600.0, + 1403.0, + 1634.0, + 454.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1629.0, + 568.0, + 1629.0, + 568.0, + 1664.0, + 295.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 284.0, + 1405.0, + 284.0, + 1405.0, + 322.0, + 295.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 320.0, + 404.0, + 320.0, + 404.0, + 353.0, + 295.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 437.0, + 320.0, + 1405.0, + 320.0, + 1405.0, + 353.0, + 437.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 347.0, + 1406.0, + 347.0, + 1406.0, + 386.0, + 292.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 377.0, + 1283.0, + 377.0, + 1283.0, + 413.0, + 294.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1862.0, + 1404.0, + 1862.0, + 1404.0, + 1900.0, + 294.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1895.0, + 934.0, + 1895.0, + 934.0, + 1929.0, + 294.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 1895.0, + 1403.0, + 1895.0, + 1403.0, + 1929.0, + 960.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1925.0, + 939.0, + 1925.0, + 939.0, + 1959.0, + 295.0, + 1959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1105.0, + 1192.0, + 1105.0, + 1192.0, + 1141.0, + 292.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1232.0, + 1105.0, + 1405.0, + 1105.0, + 1405.0, + 1141.0, + 1232.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1140.0, + 1402.0, + 1140.0, + 1402.0, + 1172.0, + 295.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1168.0, + 1405.0, + 1168.0, + 1405.0, + 1204.0, + 292.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1198.0, + 589.0, + 1198.0, + 589.0, + 1234.0, + 294.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1753.0, + 1405.0, + 1753.0, + 1405.0, + 1791.0, + 294.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1784.0, + 1404.0, + 1784.0, + 1404.0, + 1821.0, + 294.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1817.0, + 839.0, + 1817.0, + 839.0, + 1851.0, + 297.0, + 1851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 565.0, + 1403.0, + 565.0, + 1403.0, + 607.0, + 291.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 600.0, + 1406.0, + 600.0, + 1406.0, + 635.0, + 293.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 629.0, + 450.0, + 629.0, + 450.0, + 667.0, + 293.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 833.0, + 361.0, + 833.0, + 361.0, + 871.0, + 295.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 428.0, + 833.0, + 1163.0, + 833.0, + 1163.0, + 871.0, + 428.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 833.0, + 1403.0, + 833.0, + 1403.0, + 871.0, + 1193.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 870.0, + 460.0, + 870.0, + 460.0, + 907.0, + 297.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 486.0, + 870.0, + 1309.0, + 870.0, + 1309.0, + 907.0, + 486.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 676.0, + 1404.0, + 676.0, + 1404.0, + 712.0, + 296.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 709.0, + 865.0, + 709.0, + 865.0, + 741.0, + 323.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 709.0, + 1063.0, + 709.0, + 1063.0, + 741.0, + 892.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1020.0, + 652.0, + 1020.0, + 652.0, + 1064.0, + 295.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 1020.0, + 1403.0, + 1020.0, + 1403.0, + 1064.0, + 704.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1056.0, + 869.0, + 1056.0, + 869.0, + 1090.0, + 296.0, + 1090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 422.0, + 1284.0, + 422.0, + 1284.0, + 462.0, + 295.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1268.0, + 674.0, + 1268.0, + 674.0, + 1311.0, + 295.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 1268.0, + 1302.0, + 1268.0, + 1302.0, + 1311.0, + 734.0, + 1311.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 492, + 1405, + 492, + 1405, + 662, + 299, + 662 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 675, + 1404, + 675, + 1404, + 831, + 298, + 831 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 300, + 1788, + 1402, + 1788, + 1402, + 1942, + 300, + 1942 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 300, + 226, + 1402, + 226, + 1402, + 324, + 300, + 324 + ], + "score": 0.969 + }, + { + "category_id": 8, + "poly": [ + 321, + 340, + 1325, + 340, + 1325, + 475, + 321, + 475 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 295, + 946, + 1399, + 946, + 1399, + 1009, + 295, + 1009 + ], + "score": 0.94 + }, + { + "category_id": 1, + "poly": [ + 370, + 1972, + 1402, + 1972, + 1402, + 2034, + 370, + 2034 + ], + "score": 0.94 + }, + { + "category_id": 2, + "poly": [ + 1428, + 1790, + 1505, + 1790, + 1505, + 1847, + 1428, + 1847 + ], + "score": 0.923 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.893 + }, + { + "category_id": 0, + "poly": [ + 301, + 877, + 581, + 877, + 581, + 911, + 301, + 911 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 1427, + 948, + 1505, + 948, + 1505, + 1005, + 1427, + 1005 + ], + "score": 0.888 + }, + { + "category_id": 9, + "poly": [ + 1353, + 392, + 1400, + 392, + 1400, + 423, + 1353, + 423 + ], + "score": 0.867 + }, + { + "category_id": 1, + "poly": [ + 369, + 1417, + 1403, + 1417, + 1403, + 1753, + 369, + 1753 + ], + "score": 0.838 + }, + { + "category_id": 1, + "poly": [ + 369, + 1039, + 1402, + 1039, + 1402, + 1406, + 369, + 1406 + ], + "score": 0.783 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2112, + 840, + 2112 + ], + "score": 0.771 + }, + { + "category_id": 14, + "poly": [ + 324, + 338, + 1328, + 338, + 1328, + 478, + 324, + 478 + ], + "score": 0.93, + "latex": "f _ { t + 1 } ^ { \\mathrm { B o n v I } } ( \\phi , \\phi _ { t } ) = - \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } \\mathbb { E } _ { q ( \\theta | \\phi ) } \\big [ \\log p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { m , Q } | \\widetilde { \\theta } ^ { m } ) \\big ] - \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } \\mathbb { E } _ { q ( \\theta | \\phi ) } \\big [ \\log p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { m , S } | \\theta ) \\big ]" + }, + { + "category_id": 13, + "poly": [ + 707, + 1282, + 902, + 1282, + 902, + 1316, + 707, + 1316 + ], + "score": 0.93, + "latex": "p ( { \\bar { \\mathcal { T } } } _ { 1 } ) , \\dots , p ( { \\mathcal { T } } _ { T } )" + }, + { + "category_id": 13, + "poly": [ + 372, + 492, + 677, + 492, + 677, + 534, + 372, + 534 + ], + "score": 0.93, + "latex": "\\tilde { \\theta } ^ { m } = S G D _ { k } ( \\mathcal { L } ( \\theta , \\widetilde { D } _ { t + 1 } ^ { m , S } ) )" + }, + { + "category_id": 13, + "poly": [ + 1279, + 559, + 1403, + 559, + 1403, + 594, + 1279, + 594 + ], + "score": 0.92, + "latex": "q ( \\theta | \\phi _ { t } ) =" + }, + { + "category_id": 13, + "poly": [ + 705, + 1070, + 764, + 1070, + 764, + 1103, + 705, + 1103 + ], + "score": 0.92, + "latex": "p ( \\mathcal { T } )" + }, + { + "category_id": 13, + "poly": [ + 937, + 708, + 1089, + 708, + 1089, + 739, + 937, + 739 + ], + "score": 0.92, + "latex": "r = 1 , \\ldots , R" + }, + { + "category_id": 13, + "poly": [ + 297, + 591, + 519, + 591, + 519, + 632, + 297, + 632 + ], + "score": 0.92, + "latex": "\\textstyle \\prod _ { d = 1 } ^ { D } N ( \\mu _ { t , d } , \\sigma _ { t , d } ^ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 723, + 499, + 894, + 499, + 894, + 530, + 723, + 530 + ], + "score": 0.92, + "latex": "m = 1 , \\ldots , M" + }, + { + "category_id": 13, + "poly": [ + 613, + 594, + 859, + 594, + 859, + 631, + 613, + 631 + ], + "score": 0.91, + "latex": "\\phi _ { t } ~ = ~ \\{ \\mu _ { t , d } , \\sigma _ { t , d } \\} _ { d = 1 } ^ { D }" + }, + { + "category_id": 13, + "poly": [ + 810, + 708, + 892, + 708, + 892, + 739, + 810, + 739 + ], + "score": 0.91, + "latex": "\\theta _ { r } \\sim q" + }, + { + "category_id": 13, + "poly": [ + 876, + 595, + 1029, + 595, + 1029, + 630, + 876, + 630 + ], + "score": 0.89, + "latex": "D = \\dim ( \\theta )" + }, + { + "category_id": 13, + "poly": [ + 686, + 739, + 714, + 739, + 714, + 768, + 686, + 768 + ], + "score": 0.89, + "latex": "\\theta _ { r }" + }, + { + "category_id": 13, + "poly": [ + 477, + 633, + 496, + 633, + 496, + 661, + 477, + 661 + ], + "score": 0.83, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 825, + 226, + 843, + 226, + 843, + 258, + 825, + 258 + ], + "score": 0.83, + "latex": "\\tilde { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 1276, + 500, + 1309, + 500, + 1309, + 527, + 1276, + 527 + ], + "score": 0.78, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 1231, + 530, + 1264, + 530, + 1264, + 557, + 1231, + 557 + ], + "score": 0.75, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 1430, + 947, + 1507, + 947, + 1507, + 975, + 1430, + 975 + ], + "score": 0.37, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 1430, + 1787, + 1507, + 1787, + 1507, + 1817, + 1430, + 1817 + ], + "score": 0.31, + "latex": "@ \\ @ \\left( { \\widehat { a } } \\right)" + }, + { + "category_id": 15, + "poly": [ + 1425.0, + 1816.0, + 1488.0, + 1816.0, + 1488.0, + 1854.0, + 1425.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 872.0, + 587.0, + 872.0, + 587.0, + 917.0, + 292.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1424.0, + 974.0, + 1488.0, + 974.0, + 1488.0, + 1011.0, + 1424.0, + 1011.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": [ + 288.0, + 487.0, + 371.0, + 487.0, + 371.0, + 543.0, + 288.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 487.0, + 722.0, + 487.0, + 722.0, + 543.0, + 678.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 895.0, + 487.0, + 1275.0, + 487.0, + 1275.0, + 543.0, + 895.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1310.0, + 487.0, + 1412.0, + 487.0, + 1412.0, + 543.0, + 1310.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 529.0, + 1230.0, + 529.0, + 1230.0, + 563.0, + 295.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1265.0, + 529.0, + 1405.0, + 529.0, + 1405.0, + 563.0, + 1265.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 558.0, + 1278.0, + 558.0, + 1278.0, + 595.0, + 293.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 579.0, + 296.0, + 579.0, + 296.0, + 643.0, + 287.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 579.0, + 612.0, + 579.0, + 612.0, + 643.0, + 520.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 579.0, + 875.0, + 579.0, + 875.0, + 643.0, + 860.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1030.0, + 579.0, + 1415.0, + 579.0, + 1415.0, + 643.0, + 1030.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 626.0, + 476.0, + 626.0, + 476.0, + 664.0, + 293.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 497.0, + 626.0, + 1334.0, + 626.0, + 1334.0, + 664.0, + 497.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 673.0, + 1404.0, + 673.0, + 1404.0, + 712.0, + 296.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 702.0, + 809.0, + 702.0, + 809.0, + 746.0, + 293.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 702.0, + 936.0, + 702.0, + 936.0, + 746.0, + 893.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 702.0, + 1405.0, + 702.0, + 1405.0, + 746.0, + 1090.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 737.0, + 685.0, + 737.0, + 685.0, + 774.0, + 293.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 737.0, + 1402.0, + 737.0, + 1402.0, + 774.0, + 715.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 768.0, + 1404.0, + 768.0, + 1404.0, + 805.0, + 294.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 800.0, + 1190.0, + 800.0, + 1190.0, + 833.0, + 297.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1787.0, + 1406.0, + 1787.0, + 1406.0, + 1824.0, + 295.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1820.0, + 1403.0, + 1820.0, + 1403.0, + 1853.0, + 296.0, + 1853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1849.0, + 1402.0, + 1849.0, + 1402.0, + 1885.0, + 293.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1877.0, + 1406.0, + 1877.0, + 1406.0, + 1919.0, + 291.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1905.0, + 1091.0, + 1905.0, + 1091.0, + 1951.0, + 293.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 227.0, + 824.0, + 227.0, + 824.0, + 264.0, + 295.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 227.0, + 1404.0, + 227.0, + 1404.0, + 264.0, + 844.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 256.0, + 1407.0, + 256.0, + 1407.0, + 299.0, + 293.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 290.0, + 444.0, + 290.0, + 444.0, + 326.0, + 294.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 942.0, + 1404.0, + 942.0, + 1404.0, + 984.0, + 293.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 978.0, + 477.0, + 978.0, + 477.0, + 1011.0, + 295.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 1969.0, + 1404.0, + 1969.0, + 1404.0, + 2007.0, + 370.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 2000.0, + 1404.0, + 2000.0, + 1404.0, + 2038.0, + 394.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 1417.0, + 1406.0, + 1417.0, + 1406.0, + 1452.0, + 369.0, + 1452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1449.0, + 1406.0, + 1449.0, + 1406.0, + 1481.0, + 395.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1477.0, + 1407.0, + 1477.0, + 1407.0, + 1513.0, + 393.0, + 1513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1510.0, + 1406.0, + 1510.0, + 1406.0, + 1542.0, + 395.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1540.0, + 1405.0, + 1540.0, + 1405.0, + 1571.0, + 395.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1570.0, + 1405.0, + 1570.0, + 1405.0, + 1602.0, + 393.0, + 1602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1600.0, + 1406.0, + 1600.0, + 1406.0, + 1635.0, + 393.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1630.0, + 1406.0, + 1630.0, + 1406.0, + 1666.0, + 395.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1662.0, + 1405.0, + 1662.0, + 1405.0, + 1694.0, + 396.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1691.0, + 1402.0, + 1691.0, + 1402.0, + 1727.0, + 393.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1722.0, + 955.0, + 1722.0, + 955.0, + 1756.0, + 395.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 1038.0, + 1404.0, + 1038.0, + 1404.0, + 1074.0, + 380.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1070.0, + 704.0, + 1070.0, + 704.0, + 1105.0, + 395.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 1070.0, + 1402.0, + 1070.0, + 1402.0, + 1105.0, + 765.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1101.0, + 1405.0, + 1101.0, + 1405.0, + 1134.0, + 395.0, + 1134.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1131.0, + 1404.0, + 1131.0, + 1404.0, + 1165.0, + 395.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1162.0, + 1405.0, + 1162.0, + 1405.0, + 1196.0, + 395.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1191.0, + 1405.0, + 1191.0, + 1405.0, + 1229.0, + 392.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1220.0, + 1404.0, + 1220.0, + 1404.0, + 1260.0, + 393.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1253.0, + 1404.0, + 1253.0, + 1404.0, + 1287.0, + 395.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 1282.0, + 706.0, + 1282.0, + 706.0, + 1319.0, + 390.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 1282.0, + 1405.0, + 1282.0, + 1405.0, + 1319.0, + 903.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1311.0, + 1405.0, + 1311.0, + 1405.0, + 1348.0, + 393.0, + 1348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1344.0, + 1405.0, + 1344.0, + 1405.0, + 1378.0, + 395.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1373.0, + 1405.0, + 1373.0, + 1405.0, + 1410.0, + 393.0, + 1410.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 680, + 1404, + 680, + 1404, + 1047, + 298, + 1047 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 300, + 1227, + 1403, + 1227, + 1403, + 1350, + 300, + 1350 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 298, + 1820, + 1403, + 1820, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 372, + 397, + 1403, + 397, + 1403, + 641, + 372, + 641 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 393, + 229, + 1403, + 229, + 1403, + 382, + 393, + 382 + ], + "score": 0.958 + }, + { + "category_id": 1, + "poly": [ + 301, + 1365, + 907, + 1365, + 907, + 1396, + 301, + 1396 + ], + "score": 0.909 + }, + { + "category_id": 0, + "poly": [ + 301, + 1169, + 748, + 1169, + 748, + 1199, + 301, + 1199 + ], + "score": 0.862 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 852, + 76, + 852, + 104, + 300, + 104 + ], + "score": 0.832 + }, + { + "category_id": 0, + "poly": [ + 299, + 1096, + 557, + 1096, + 557, + 1132, + 299, + 1132 + ], + "score": 0.751 + }, + { + "category_id": 2, + "poly": [ + 1428, + 1668, + 1520, + 1668, + 1520, + 1818, + 1428, + 1818 + ], + "score": 0.69 + }, + { + "category_id": 1, + "poly": [ + 362, + 1424, + 1403, + 1424, + 1403, + 1792, + 362, + 1792 + ], + "score": 0.656 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 858, + 2088, + 858, + 2111, + 842, + 2111 + ], + "score": 0.632 + }, + { + "category_id": 0, + "poly": [ + 300, + 1096, + 557, + 1096, + 557, + 1132, + 300, + 1132 + ], + "score": 0.408 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 858, + 2088, + 858, + 2111, + 842, + 2111 + ], + "score": 0.234 + }, + { + "category_id": 1, + "poly": [ + 1428, + 1668, + 1520, + 1668, + 1520, + 1818, + 1428, + 1818 + ], + "score": 0.219 + }, + { + "category_id": 13, + "poly": [ + 1205, + 1973, + 1297, + 1973, + 1297, + 2002, + 1205, + 2002 + ], + "score": 0.9, + "latex": "\\lambda = 0 . 1" + }, + { + "category_id": 13, + "poly": [ + 1430, + 1668, + 1507, + 1668, + 1507, + 1697, + 1430, + 1697 + ], + "score": 0.26, + "latex": "@ \\ @ \\left( { \\widehat { a } } \\right)" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1168.0, + 752.0, + 1168.0, + 752.0, + 1203.0, + 295.0, + 1203.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, + 1094.0, + 561.0, + 1094.0, + 561.0, + 1137.0, + 293.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1424.0, + 1698.0, + 1508.0, + 1698.0, + 1508.0, + 1731.0, + 1424.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1423.0, + 1727.0, + 1510.0, + 1727.0, + 1510.0, + 1761.0, + 1423.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1425.0, + 1758.0, + 1525.0, + 1758.0, + 1525.0, + 1794.0, + 1425.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1423.0, + 1789.0, + 1491.0, + 1789.0, + 1491.0, + 1822.0, + 1423.0, + 1822.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": [ + 293.0, + 1093.0, + 561.0, + 1093.0, + 561.0, + 1136.0, + 293.0, + 1136.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, + 681.0, + 1406.0, + 681.0, + 1406.0, + 715.0, + 296.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 709.0, + 1408.0, + 709.0, + 1408.0, + 748.0, + 292.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 738.0, + 1405.0, + 738.0, + 1405.0, + 778.0, + 291.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 772.0, + 1408.0, + 772.0, + 1408.0, + 810.0, + 293.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 804.0, + 1404.0, + 804.0, + 1404.0, + 838.0, + 294.0, + 838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 834.0, + 1405.0, + 834.0, + 1405.0, + 868.0, + 294.0, + 868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 865.0, + 1404.0, + 865.0, + 1404.0, + 899.0, + 294.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 890.0, + 1406.0, + 890.0, + 1406.0, + 933.0, + 291.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 926.0, + 1402.0, + 926.0, + 1402.0, + 960.0, + 294.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 952.0, + 1405.0, + 952.0, + 1405.0, + 992.0, + 292.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 988.0, + 1404.0, + 988.0, + 1404.0, + 1022.0, + 294.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1017.0, + 1176.0, + 1017.0, + 1176.0, + 1051.0, + 294.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1228.0, + 1404.0, + 1228.0, + 1404.0, + 1261.0, + 296.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1257.0, + 1405.0, + 1257.0, + 1405.0, + 1292.0, + 294.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1290.0, + 1407.0, + 1290.0, + 1407.0, + 1322.0, + 294.0, + 1322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1320.0, + 1299.0, + 1320.0, + 1299.0, + 1352.0, + 296.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1820.0, + 1403.0, + 1820.0, + 1403.0, + 1855.0, + 294.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1851.0, + 1404.0, + 1851.0, + 1404.0, + 1885.0, + 293.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1882.0, + 1405.0, + 1882.0, + 1405.0, + 1916.0, + 294.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1912.0, + 1405.0, + 1912.0, + 1405.0, + 1945.0, + 293.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1943.0, + 1405.0, + 1943.0, + 1405.0, + 1976.0, + 293.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1972.0, + 1204.0, + 1972.0, + 1204.0, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1298.0, + 1972.0, + 1404.0, + 1972.0, + 1404.0, + 2007.0, + 1298.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2004.0, + 709.0, + 2004.0, + 709.0, + 2039.0, + 296.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 396.0, + 1406.0, + 396.0, + 1406.0, + 433.0, + 369.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 427.0, + 1405.0, + 427.0, + 1405.0, + 463.0, + 393.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 459.0, + 1405.0, + 459.0, + 1405.0, + 493.0, + 395.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 489.0, + 1404.0, + 489.0, + 1404.0, + 523.0, + 394.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 520.0, + 1405.0, + 520.0, + 1405.0, + 554.0, + 394.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 549.0, + 1405.0, + 549.0, + 1405.0, + 584.0, + 393.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 582.0, + 1404.0, + 582.0, + 1404.0, + 612.0, + 395.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 611.0, + 1028.0, + 611.0, + 1028.0, + 644.0, + 394.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 229.0, + 1406.0, + 229.0, + 1406.0, + 266.0, + 393.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 261.0, + 1407.0, + 261.0, + 1407.0, + 296.0, + 393.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 290.0, + 1404.0, + 290.0, + 1404.0, + 326.0, + 394.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 322.0, + 1406.0, + 322.0, + 1406.0, + 357.0, + 394.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 354.0, + 933.0, + 354.0, + 933.0, + 385.0, + 394.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1362.0, + 912.0, + 1362.0, + 912.0, + 1403.0, + 295.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 1423.0, + 1405.0, + 1423.0, + 1405.0, + 1463.0, + 360.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1458.0, + 1404.0, + 1458.0, + 1404.0, + 1492.0, + 395.0, + 1492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1487.0, + 1404.0, + 1487.0, + 1404.0, + 1521.0, + 395.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1518.0, + 1334.0, + 1518.0, + 1334.0, + 1552.0, + 393.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 1562.0, + 1403.0, + 1562.0, + 1403.0, + 1597.0, + 362.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1596.0, + 1402.0, + 1596.0, + 1402.0, + 1626.0, + 396.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1621.0, + 1240.0, + 1621.0, + 1240.0, + 1660.0, + 394.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1666.0, + 1404.0, + 1666.0, + 1404.0, + 1704.0, + 358.0, + 1704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1699.0, + 1405.0, + 1699.0, + 1405.0, + 1735.0, + 393.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1730.0, + 1404.0, + 1730.0, + 1404.0, + 1764.0, + 395.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1763.0, + 1403.0, + 1763.0, + 1403.0, + 1793.0, + 396.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1424.0, + 1698.0, + 1508.0, + 1698.0, + 1508.0, + 1731.0, + 1424.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1423.0, + 1727.0, + 1510.0, + 1727.0, + 1510.0, + 1761.0, + 1423.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1425.0, + 1758.0, + 1525.0, + 1758.0, + 1525.0, + 1794.0, + 1425.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1423.0, + 1789.0, + 1491.0, + 1789.0, + 1491.0, + 1822.0, + 1423.0, + 1822.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1437, + 1403, + 1437, + 1403, + 1713, + 298, + 1713 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1116, + 1403, + 1116, + 1403, + 1423, + 298, + 1423 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1727, + 1404, + 1727, + 1404, + 2035, + 298, + 2035 + ], + "score": 0.981 + }, + { + "category_id": 3, + "poly": [ + 298, + 229, + 1401, + 229, + 1401, + 592, + 298, + 592 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 299, + 1008, + 1402, + 1008, + 1402, + 1102, + 299, + 1102 + ], + "score": 0.966 + }, + { + "category_id": 4, + "poly": [ + 299, + 670, + 1404, + 670, + 1404, + 764, + 299, + 764 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 1427, + 1439, + 1551, + 1439, + 1551, + 1623, + 1427, + 1623 + ], + "score": 0.919 + }, + { + "category_id": 1, + "poly": [ + 290, + 880, + 1324, + 880, + 1324, + 913, + 290, + 913 + ], + "score": 0.904 + }, + { + "category_id": 1, + "poly": [ + 1428, + 1118, + 1505, + 1118, + 1505, + 1238, + 1428, + 1238 + ], + "score": 0.865 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 852, + 76, + 852, + 104, + 299, + 104 + ], + "score": 0.82 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2112, + 840, + 2112 + ], + "score": 0.79 + }, + { + "category_id": 0, + "poly": [ + 302, + 822, + 819, + 822, + 819, + 853, + 302, + 853 + ], + "score": 0.706 + }, + { + "category_id": 1, + "poly": [ + 446, + 935, + 1255, + 935, + 1255, + 969, + 446, + 969 + ], + "score": 0.542 + }, + { + "category_id": 1, + "poly": [ + 1428, + 1730, + 1506, + 1730, + 1506, + 1788, + 1428, + 1788 + ], + "score": 0.425 + }, + { + "category_id": 8, + "poly": [ + 446, + 935, + 1255, + 935, + 1255, + 969, + 446, + 969 + ], + "score": 0.363 + }, + { + "category_id": 2, + "poly": [ + 1428, + 1730, + 1506, + 1730, + 1506, + 1788, + 1428, + 1788 + ], + "score": 0.291 + }, + { + "category_id": 1, + "poly": [ + 302, + 822, + 819, + 822, + 819, + 853, + 302, + 853 + ], + "score": 0.238 + }, + { + "category_id": 13, + "poly": [ + 694, + 1500, + 807, + 1500, + 807, + 1529, + 694, + 1529 + ], + "score": 0.91, + "latex": "\\lambda = 1 0 0 0" + }, + { + "category_id": 13, + "poly": [ + 410, + 1621, + 522, + 1621, + 522, + 1650, + 410, + 1650 + ], + "score": 0.9, + "latex": "\\lambda = 1 0 0" + }, + { + "category_id": 13, + "poly": [ + 581, + 1561, + 652, + 1561, + 652, + 1589, + 581, + 1589 + ], + "score": 0.9, + "latex": "\\lambda = 1" + }, + { + "category_id": 13, + "poly": [ + 1123, + 941, + 1159, + 941, + 1159, + 965, + 1123, + 965 + ], + "score": 0.8, + "latex": "" + }, + { + "category_id": 13, + "poly": [ + 922, + 940, + 960, + 940, + 960, + 966, + 922, + 966 + ], + "score": 0.77, + "latex": "" + }, + { + "category_id": 13, + "poly": [ + 560, + 734, + 580, + 734, + 580, + 760, + 560, + 760 + ], + "score": 0.76, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 948, + 1730, + 968, + 1730, + 968, + 1756, + 948, + 1756 + ], + "score": 0.76, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 559, + 940, + 596, + 940, + 596, + 966, + 559, + 966 + ], + "score": 0.75, + "latex": "" + }, + { + "category_id": 13, + "poly": [ + 721, + 940, + 758, + 940, + 758, + 965, + 721, + 965 + ], + "score": 0.7, + "latex": "" + }, + { + "category_id": 13, + "poly": [ + 667, + 1440, + 687, + 1440, + 687, + 1466, + 667, + 1466 + ], + "score": 0.7, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 1430, + 1117, + 1507, + 1117, + 1507, + 1146, + 1430, + 1146 + ], + "score": 0.49, + "latex": "@ \\ @ \\left( { \\widehat { a } } \\right)" + }, + { + "category_id": 13, + "poly": [ + 1430, + 1438, + 1507, + 1438, + 1507, + 1467, + 1430, + 1467 + ], + "score": 0.38, + "latex": "@ \\ @ \\left( { \\widehat { a } } \\right)" + }, + { + "category_id": 13, + "poly": [ + 1427, + 1500, + 1448, + 1500, + 1448, + 1528, + 1427, + 1528 + ], + "score": 0.36, + "latex": "\\lambda { \\cdot }" + }, + { + "category_id": 13, + "poly": [ + 1430, + 1728, + 1507, + 1728, + 1507, + 1757, + 1430, + 1757 + ], + "score": 0.36, + "latex": "@ \\ @ \\left( { \\widehat { a } } \\right)" + }, + { + "category_id": 13, + "poly": [ + 1332, + 468, + 1383, + 468, + 1383, + 486, + 1332, + 486 + ], + "score": 0.35, + "latex": "\\lambda = 0 . 1" + }, + { + "category_id": 13, + "poly": [ + 1332, + 489, + 1383, + 489, + 1383, + 508, + 1332, + 508 + ], + "score": 0.32, + "latex": "\\lambda = 1 . 0" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 227.0, + 1090.0, + 227.0, + 1090.0, + 257.0, + 1055.0, + 257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 231.0, + 348.0, + 231.0, + 348.0, + 254.0, + 321.0, + 254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 233.0, + 329.0, + 233.0, + 329.0, + 547.0, + 294.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 260.0, + 718.0, + 260.0, + 718.0, + 285.0, + 689.0, + 285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 263.0, + 351.0, + 263.0, + 351.0, + 307.0, + 318.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 265.0, + 1088.0, + 265.0, + 1088.0, + 298.0, + 1056.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 303.0, + 351.0, + 303.0, + 351.0, + 344.0, + 318.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 300.0, + 717.0, + 300.0, + 717.0, + 325.0, + 689.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 307.0, + 1089.0, + 307.0, + 1089.0, + 336.0, + 1056.0, + 336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 345.0, + 350.0, + 345.0, + 350.0, + 374.0, + 318.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 342.0, + 718.0, + 342.0, + 718.0, + 367.0, + 689.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 347.0, + 1089.0, + 347.0, + 1089.0, + 377.0, + 1055.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 386.0, + 351.0, + 386.0, + 351.0, + 415.0, + 319.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 687.0, + 382.0, + 720.0, + 382.0, + 720.0, + 411.0, + 687.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 386.0, + 1089.0, + 386.0, + 1089.0, + 415.0, + 1056.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 425.0, + 351.0, + 425.0, + 351.0, + 454.0, + 319.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 420.0, + 722.0, + 420.0, + 722.0, + 454.0, + 685.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 425.0, + 1088.0, + 425.0, + 1088.0, + 455.0, + 1055.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 444.0, + 653.0, + 444.0, + 653.0, + 472.0, + 586.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 443.0, + 1021.0, + 443.0, + 1021.0, + 472.0, + 959.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 466.0, + 348.0, + 466.0, + 348.0, + 492.0, + 321.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 464.0, + 639.0, + 464.0, + 639.0, + 492.0, + 586.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 687.0, + 464.0, + 720.0, + 464.0, + 720.0, + 494.0, + 687.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 464.0, + 1011.0, + 464.0, + 1011.0, + 492.0, + 957.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 465.0, + 1090.0, + 465.0, + 1090.0, + 495.0, + 1055.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1268.0, + 464.0, + 1331.0, + 464.0, + 1331.0, + 490.0, + 1268.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1384.0, + 464.0, + 1390.0, + 464.0, + 1390.0, + 490.0, + 1384.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 485.0, + 630.0, + 485.0, + 630.0, + 512.0, + 586.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 485.0, + 1002.0, + 485.0, + 1002.0, + 512.0, + 959.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1268.0, + 484.0, + 1331.0, + 484.0, + 1331.0, + 512.0, + 1268.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1384.0, + 484.0, + 1390.0, + 484.0, + 1390.0, + 512.0, + 1384.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 506.0, + 348.0, + 506.0, + 348.0, + 532.0, + 321.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 506.0, + 628.0, + 506.0, + 628.0, + 533.0, + 588.0, + 533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 687.0, + 505.0, + 720.0, + 505.0, + 720.0, + 533.0, + 687.0, + 533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 506.0, + 1000.0, + 506.0, + 1000.0, + 532.0, + 957.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 506.0, + 1090.0, + 506.0, + 1090.0, + 535.0, + 1055.0, + 535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1268.0, + 506.0, + 1328.0, + 506.0, + 1328.0, + 531.0, + 1268.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 538.0, + 373.0, + 538.0, + 373.0, + 561.0, + 353.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 401.0, + 537.0, + 436.0, + 537.0, + 436.0, + 564.0, + 401.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 537.0, + 496.0, + 537.0, + 496.0, + 564.0, + 451.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 537.0, + 551.0, + 537.0, + 551.0, + 564.0, + 505.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 537.0, + 605.0, + 537.0, + 605.0, + 564.0, + 560.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 537.0, + 660.0, + 537.0, + 660.0, + 564.0, + 615.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 719.0, + 538.0, + 744.0, + 538.0, + 744.0, + 564.0, + 719.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 537.0, + 806.0, + 537.0, + 806.0, + 565.0, + 769.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 819.0, + 537.0, + 866.0, + 537.0, + 866.0, + 564.0, + 819.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 536.0, + 921.0, + 536.0, + 921.0, + 565.0, + 870.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 536.0, + 976.0, + 536.0, + 976.0, + 565.0, + 925.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 537.0, + 1029.0, + 537.0, + 1029.0, + 564.0, + 985.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 540.0, + 1111.0, + 540.0, + 1111.0, + 562.0, + 1090.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1138.0, + 537.0, + 1174.0, + 537.0, + 1174.0, + 564.0, + 1138.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 537.0, + 1233.0, + 537.0, + 1233.0, + 564.0, + 1188.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1243.0, + 537.0, + 1288.0, + 537.0, + 1288.0, + 564.0, + 1243.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1297.0, + 537.0, + 1343.0, + 537.0, + 1343.0, + 564.0, + 1297.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1353.0, + 537.0, + 1397.0, + 537.0, + 1397.0, + 564.0, + 1353.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 564.0, + 996.0, + 564.0, + 996.0, + 590.0, + 738.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 671.0, + 1401.0, + 671.0, + 1401.0, + 705.0, + 295.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 702.0, + 1404.0, + 702.0, + 1404.0, + 736.0, + 294.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 733.0, + 559.0, + 733.0, + 559.0, + 763.0, + 297.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 733.0, + 793.0, + 733.0, + 793.0, + 763.0, + 581.0, + 763.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": [ + 836.0, + 2085.0, + 859.0, + 2085.0, + 859.0, + 2116.0, + 836.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 822.0, + 823.0, + 822.0, + 823.0, + 857.0, + 296.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1424.0, + 1755.0, + 1489.0, + 1755.0, + 1489.0, + 1794.0, + 1424.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1437.0, + 666.0, + 1437.0, + 666.0, + 1474.0, + 294.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 1437.0, + 1408.0, + 1437.0, + 1408.0, + 1474.0, + 688.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1468.0, + 1404.0, + 1468.0, + 1404.0, + 1503.0, + 294.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1501.0, + 693.0, + 1501.0, + 693.0, + 1533.0, + 296.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 808.0, + 1501.0, + 1404.0, + 1501.0, + 1404.0, + 1533.0, + 808.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1527.0, + 1405.0, + 1527.0, + 1405.0, + 1566.0, + 293.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1558.0, + 580.0, + 1558.0, + 580.0, + 1596.0, + 294.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 653.0, + 1558.0, + 1404.0, + 1558.0, + 1404.0, + 1596.0, + 653.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1588.0, + 1405.0, + 1588.0, + 1405.0, + 1627.0, + 293.0, + 1627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1621.0, + 409.0, + 1621.0, + 409.0, + 1653.0, + 296.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 523.0, + 1621.0, + 1405.0, + 1621.0, + 1405.0, + 1653.0, + 523.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1648.0, + 1408.0, + 1648.0, + 1408.0, + 1693.0, + 293.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1682.0, + 1405.0, + 1682.0, + 1405.0, + 1719.0, + 294.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1118.0, + 1404.0, + 1118.0, + 1404.0, + 1150.0, + 296.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1149.0, + 1404.0, + 1149.0, + 1404.0, + 1180.0, + 294.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1177.0, + 1405.0, + 1177.0, + 1405.0, + 1214.0, + 292.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1206.0, + 1407.0, + 1206.0, + 1407.0, + 1244.0, + 293.0, + 1244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1242.0, + 1404.0, + 1242.0, + 1404.0, + 1273.0, + 296.0, + 1273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1270.0, + 1407.0, + 1270.0, + 1407.0, + 1305.0, + 294.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1297.0, + 1404.0, + 1297.0, + 1404.0, + 1333.0, + 293.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1331.0, + 1405.0, + 1331.0, + 1405.0, + 1366.0, + 294.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1361.0, + 1408.0, + 1361.0, + 1408.0, + 1397.0, + 294.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1392.0, + 1338.0, + 1392.0, + 1338.0, + 1427.0, + 294.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1729.0, + 947.0, + 1729.0, + 947.0, + 1761.0, + 297.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 1729.0, + 1405.0, + 1729.0, + 1405.0, + 1761.0, + 969.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1759.0, + 1406.0, + 1759.0, + 1406.0, + 1794.0, + 294.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1789.0, + 1406.0, + 1789.0, + 1406.0, + 1824.0, + 293.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1820.0, + 1404.0, + 1820.0, + 1404.0, + 1854.0, + 293.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1848.0, + 1404.0, + 1848.0, + 1404.0, + 1885.0, + 293.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1882.0, + 1402.0, + 1882.0, + 1402.0, + 1914.0, + 296.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1913.0, + 1405.0, + 1913.0, + 1405.0, + 1945.0, + 294.0, + 1945.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": [ + 296.0, + 1972.0, + 1406.0, + 1972.0, + 1406.0, + 2007.0, + 296.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2003.0, + 1257.0, + 2003.0, + 1257.0, + 2039.0, + 296.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1009.0, + 1402.0, + 1009.0, + 1402.0, + 1043.0, + 295.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1039.0, + 1404.0, + 1039.0, + 1404.0, + 1073.0, + 295.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1068.0, + 462.0, + 1068.0, + 462.0, + 1107.0, + 295.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1425.0, + 1434.0, + 1429.0, + 1434.0, + 1429.0, + 1471.0, + 1425.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1508.0, + 1434.0, + 1511.0, + 1434.0, + 1511.0, + 1471.0, + 1508.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1421.0, + 1462.0, + 1511.0, + 1462.0, + 1511.0, + 1505.0, + 1421.0, + 1505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1421.0, + 1495.0, + 1426.0, + 1495.0, + 1426.0, + 1534.0, + 1421.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1449.0, + 1495.0, + 1465.0, + 1495.0, + 1465.0, + 1534.0, + 1449.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1422.0, + 1527.0, + 1555.0, + 1527.0, + 1555.0, + 1566.0, + 1422.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1419.0, + 1557.0, + 1509.0, + 1557.0, + 1509.0, + 1593.0, + 1419.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1421.0, + 1587.0, + 1537.0, + 1587.0, + 1537.0, + 1625.0, + 1421.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 876.0, + 1329.0, + 876.0, + 1329.0, + 920.0, + 293.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1423.0, + 1145.0, + 1509.0, + 1145.0, + 1509.0, + 1180.0, + 1423.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1425.0, + 1180.0, + 1499.0, + 1180.0, + 1499.0, + 1209.0, + 1425.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1426.0, + 1208.0, + 1490.0, + 1208.0, + 1490.0, + 1239.0, + 1426.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 933.0, + 558.0, + 933.0, + 558.0, + 975.0, + 444.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 933.0, + 720.0, + 933.0, + 720.0, + 975.0, + 597.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 759.0, + 933.0, + 921.0, + 933.0, + 921.0, + 975.0, + 759.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 933.0, + 1122.0, + 933.0, + 1122.0, + 975.0, + 961.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 933.0, + 1256.0, + 933.0, + 1256.0, + 975.0, + 1160.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1424.0, + 1755.0, + 1489.0, + 1755.0, + 1489.0, + 1794.0, + 1424.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 822.0, + 823.0, + 822.0, + 823.0, + 857.0, + 296.0, + 857.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1438, + 1404, + 1438, + 1404, + 1775, + 298, + 1775 + ], + "score": 0.981 + }, + { + "category_id": 4, + "poly": [ + 295, + 1037, + 1405, + 1037, + 1405, + 1313, + 295, + 1313 + ], + "score": 0.919 + }, + { + "category_id": 0, + "poly": [ + 301, + 1364, + 543, + 1364, + 543, + 1400, + 301, + 1400 + ], + "score": 0.887 + }, + { + "category_id": 3, + "poly": [ + 299, + 246, + 1394, + 246, + 1394, + 958, + 299, + 958 + ], + "score": 0.87 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 852, + 76, + 852, + 104, + 300, + 104 + ], + "score": 0.859 + }, + { + "category_id": 0, + "poly": [ + 299, + 1826, + 488, + 1826, + 488, + 1859, + 299, + 1859 + ], + "score": 0.85 + }, + { + "category_id": 1, + "poly": [ + 296, + 1879, + 1403, + 1879, + 1403, + 2035, + 296, + 2035 + ], + "score": 0.821 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.775 + }, + { + "category_id": 5, + "poly": [ + 299, + 246, + 1394, + 246, + 1394, + 958, + 299, + 958 + ], + "score": 0.142, + "html": "
100 noiminii 80 60 40 maribeiiinit 35 30 25 Eerereress 70 60 Veireit
30 45 40
BOML
50 40 50 40BOMLA,λ=100 BOMVI Baseline Sequential MAML
30TOE (BOMLA) TOE (BOMVI)
Omniglot meta-trainCIFAR-FS meta-train VGG-Flowers meta-train Meta-training timeminilmagenet meta-trainAircraftmeta-train
" + }, + { + "category_id": 6, + "poly": [ + 298, + 230, + 564, + 230, + 564, + 251, + 298, + 251 + ], + "score": 0.098 + }, + { + "category_id": 13, + "poly": [ + 916, + 1100, + 1016, + 1100, + 1016, + 1129, + 916, + 1129 + ], + "score": 0.91, + "latex": "\\lambda = 1 0 0" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1039.0, + 1403.0, + 1039.0, + 1403.0, + 1072.0, + 295.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1071.0, + 1403.0, + 1071.0, + 1403.0, + 1103.0, + 294.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1099.0, + 915.0, + 1099.0, + 915.0, + 1136.0, + 294.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1017.0, + 1099.0, + 1403.0, + 1099.0, + 1403.0, + 1136.0, + 1017.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1127.0, + 1405.0, + 1127.0, + 1405.0, + 1166.0, + 294.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1161.0, + 1406.0, + 1161.0, + 1406.0, + 1197.0, + 294.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1189.0, + 1405.0, + 1189.0, + 1405.0, + 1225.0, + 293.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1221.0, + 1405.0, + 1221.0, + 1405.0, + 1257.0, + 294.0, + 1257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1252.0, + 1406.0, + 1252.0, + 1406.0, + 1286.0, + 293.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1286.0, + 511.0, + 1286.0, + 511.0, + 1315.0, + 297.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1358.0, + 550.0, + 1358.0, + 550.0, + 1411.0, + 291.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 251.0, + 349.0, + 251.0, + 349.0, + 272.0, + 312.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 260.0, + 427.0, + 260.0, + 427.0, + 271.0, + 371.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 277.0, + 325.0, + 277.0, + 325.0, + 365.0, + 295.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 292.0, + 344.0, + 292.0, + 344.0, + 313.0, + 321.0, + 313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 937.0, + 310.0, + 967.0, + 310.0, + 967.0, + 323.0, + 937.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 334.0, + 345.0, + 334.0, + 345.0, + 356.0, + 322.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 399.0, + 359.0, + 399.0, + 359.0, + 506.0, + 291.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 455.0, + 346.0, + 455.0, + 346.0, + 475.0, + 321.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 493.0, + 347.0, + 493.0, + 347.0, + 517.0, + 320.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 516.0, + 346.0, + 516.0, + 346.0, + 541.0, + 320.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 518.0, + 330.0, + 518.0, + 330.0, + 645.0, + 301.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 545.0, + 345.0, + 545.0, + 345.0, + 565.0, + 321.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 572.0, + 345.0, + 572.0, + 345.0, + 592.0, + 321.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 597.0, + 346.0, + 597.0, + 346.0, + 621.0, + 322.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 624.0, + 344.0, + 624.0, + 344.0, + 645.0, + 321.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 641.0, + 361.0, + 641.0, + 361.0, + 785.0, + 294.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 698.0, + 896.0, + 698.0, + 896.0, + 724.0, + 838.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 717.0, + 346.0, + 717.0, + 346.0, + 743.0, + 320.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 822.0, + 719.0, + 955.0, + 719.0, + 955.0, + 747.0, + 822.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 748.0, + 345.0, + 748.0, + 345.0, + 768.0, + 321.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 820.0, + 740.0, + 886.0, + 740.0, + 886.0, + 769.0, + 820.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 790.0, + 347.0, + 790.0, + 347.0, + 814.0, + 320.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 786.0, + 907.0, + 786.0, + 907.0, + 810.0, + 827.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 806.0, + 328.0, + 806.0, + 328.0, + 883.0, + 298.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 814.0, + 806.0, + 958.0, + 806.0, + 958.0, + 831.0, + 814.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 830.0, + 345.0, + 830.0, + 345.0, + 851.0, + 321.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 815.0, + 829.0, + 931.0, + 829.0, + 931.0, + 857.0, + 815.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 851.0, + 926.0, + 851.0, + 926.0, + 880.0, + 817.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 867.0, + 346.0, + 867.0, + 346.0, + 889.0, + 322.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 912.0, + 530.0, + 912.0, + 530.0, + 936.0, + 362.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 569.0, + 909.0, + 738.0, + 909.0, + 738.0, + 933.0, + 569.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 913.0, + 968.0, + 913.0, + 968.0, + 933.0, + 764.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 982.0, + 910.0, + 1181.0, + 910.0, + 1181.0, + 934.0, + 982.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 913.0, + 1362.0, + 913.0, + 1362.0, + 933.0, + 1209.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 928.0, + 956.0, + 928.0, + 956.0, + 959.0, + 777.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 983.0, + 316.5, + 999.0, + 316.5, + 999.0, + 327.5, + 983.0, + 327.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.25, + 797.5, + 1228.25, + 797.5, + 1228.25, + 806.5, + 1204.25, + 806.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1179.25, + 874.5, + 1380.25, + 874.5, + 1380.25, + 895.0, + 1179.25, + 895.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, + 1826.0, + 490.0, + 1826.0, + 490.0, + 1863.0, + 297.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2087.0, + 860.0, + 2087.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 226.0, + 566.0, + 226.0, + 566.0, + 255.0, + 296.0, + 255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1438.0, + 1402.0, + 1438.0, + 1402.0, + 1472.0, + 294.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1469.0, + 1402.0, + 1469.0, + 1402.0, + 1503.0, + 294.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1500.0, + 1404.0, + 1500.0, + 1404.0, + 1534.0, + 293.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1531.0, + 1404.0, + 1531.0, + 1404.0, + 1566.0, + 294.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1559.0, + 1404.0, + 1559.0, + 1404.0, + 1594.0, + 294.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1589.0, + 1408.0, + 1589.0, + 1408.0, + 1628.0, + 293.0, + 1628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1621.0, + 1405.0, + 1621.0, + 1405.0, + 1656.0, + 294.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1650.0, + 1405.0, + 1650.0, + 1405.0, + 1686.0, + 293.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1682.0, + 1404.0, + 1682.0, + 1404.0, + 1717.0, + 294.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1715.0, + 1402.0, + 1715.0, + 1402.0, + 1746.0, + 296.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1743.0, + 1293.0, + 1743.0, + 1293.0, + 1780.0, + 293.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1876.0, + 1404.0, + 1876.0, + 1404.0, + 1917.0, + 294.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1912.0, + 726.0, + 1912.0, + 726.0, + 1945.0, + 324.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1973.0, + 1401.0, + 1973.0, + 1401.0, + 2006.0, + 295.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 2004.0, + 1209.0, + 2004.0, + 1209.0, + 2037.0, + 323.0, + 2037.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.843 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.803 + }, + { + "category_id": 1, + "poly": [ + 289, + 191, + 1409, + 191, + 1409, + 2056, + 289, + 2056 + ], + "score": 0.778 + }, + { + "category_id": 2, + "poly": [ + 297, + 75, + 854, + 75, + 854, + 105, + 297, + 105 + ], + "score": 0.09 + }, + { + "category_id": 13, + "poly": [ + 741, + 901, + 760, + 901, + 760, + 923, + 741, + 923 + ], + "score": 0.54, + "latex": "{ . } = { }" + }, + { + "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": [ + 291.0, + 227.0, + 1407.0, + 227.0, + 1407.0, + 268.0, + 291.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 264.0, + 1202.0, + 264.0, + 1202.0, + 297.0, + 323.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 311.0, + 1405.0, + 311.0, + 1405.0, + 350.0, + 293.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 344.0, + 993.0, + 344.0, + 993.0, + 383.0, + 321.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 391.0, + 1407.0, + 391.0, + 1407.0, + 432.0, + 289.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 426.0, + 1012.0, + 426.0, + 1012.0, + 464.0, + 319.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 468.0, + 1407.0, + 468.0, + 1407.0, + 520.0, + 289.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 507.0, + 1359.0, + 507.0, + 1359.0, + 546.0, + 319.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 554.0, + 1407.0, + 554.0, + 1407.0, + 595.0, + 291.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 589.0, + 799.0, + 589.0, + 799.0, + 628.0, + 321.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 636.0, + 1407.0, + 636.0, + 1407.0, + 679.0, + 291.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 671.0, + 991.0, + 671.0, + 991.0, + 710.0, + 319.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 722.0, + 1403.0, + 722.0, + 1403.0, + 755.0, + 293.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 753.0, + 1407.0, + 753.0, + 1407.0, + 792.0, + 321.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 782.0, + 400.0, + 782.0, + 400.0, + 823.0, + 319.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 833.0, + 1407.0, + 833.0, + 1407.0, + 874.0, + 289.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 859.0, + 1405.0, + 859.0, + 1405.0, + 909.0, + 315.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 896.0, + 740.0, + 896.0, + 740.0, + 935.0, + 321.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 761.0, + 896.0, + 941.0, + 896.0, + 941.0, + 935.0, + 761.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 939.0, + 1407.0, + 939.0, + 1407.0, + 991.0, + 287.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 978.0, + 1302.0, + 978.0, + 1302.0, + 1017.0, + 319.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 1023.0, + 1405.0, + 1023.0, + 1405.0, + 1072.0, + 287.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1060.0, + 1284.0, + 1060.0, + 1284.0, + 1099.0, + 319.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1111.0, + 1407.0, + 1111.0, + 1407.0, + 1150.0, + 291.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1142.0, + 714.0, + 1142.0, + 714.0, + 1179.0, + 317.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1193.0, + 1407.0, + 1193.0, + 1407.0, + 1232.0, + 291.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1224.0, + 1112.0, + 1224.0, + 1112.0, + 1263.0, + 321.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1275.0, + 1403.0, + 1275.0, + 1403.0, + 1314.0, + 293.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1306.0, + 1407.0, + 1306.0, + 1407.0, + 1345.0, + 319.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1338.0, + 396.0, + 1338.0, + 396.0, + 1373.0, + 321.0, + 1373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1385.0, + 1405.0, + 1385.0, + 1405.0, + 1424.0, + 291.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1422.0, + 727.0, + 1422.0, + 727.0, + 1455.0, + 321.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1469.0, + 1407.0, + 1469.0, + 1407.0, + 1508.0, + 291.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1504.0, + 1128.0, + 1504.0, + 1128.0, + 1537.0, + 323.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1551.0, + 1405.0, + 1551.0, + 1405.0, + 1590.0, + 291.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1582.0, + 1405.0, + 1582.0, + 1405.0, + 1621.0, + 321.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1609.0, + 1411.0, + 1609.0, + 1411.0, + 1656.0, + 317.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1643.0, + 508.0, + 1643.0, + 508.0, + 1682.0, + 319.0, + 1682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1693.0, + 1403.0, + 1693.0, + 1403.0, + 1733.0, + 291.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1723.0, + 1373.0, + 1723.0, + 1373.0, + 1764.0, + 317.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1776.0, + 1405.0, + 1776.0, + 1405.0, + 1815.0, + 291.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1811.0, + 1405.0, + 1811.0, + 1405.0, + 1844.0, + 323.0, + 1844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1858.0, + 1405.0, + 1858.0, + 1405.0, + 1897.0, + 291.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1891.0, + 1278.0, + 1891.0, + 1278.0, + 1930.0, + 319.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1944.0, + 1403.0, + 1944.0, + 1403.0, + 1977.0, + 293.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1973.0, + 1407.0, + 1973.0, + 1407.0, + 2012.0, + 321.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 2002.0, + 1371.0, + 2002.0, + 1371.0, + 2040.0, + 321.0, + 2040.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 835, + 2087, + 863, + 2087, + 863, + 2114, + 835, + 2114 + ], + "score": 0.721 + }, + { + "category_id": 1, + "poly": [ + 290, + 145, + 1410, + 145, + 1410, + 2045, + 290, + 2045 + ], + "score": 0.708 + }, + { + "category_id": 2, + "poly": [ + 297, + 75, + 854, + 75, + 854, + 106, + 297, + 106 + ], + "score": 0.577 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.325 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2114, + 835, + 2114 + ], + "score": 0.291 + }, + { + "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, + 72.0, + 856.0, + 72.0, + 856.0, + 108.0, + 298.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": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 233.0, + 1407.0, + 233.0, + 1407.0, + 266.0, + 293.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 262.0, + 878.0, + 262.0, + 878.0, + 295.0, + 323.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 310.0, + 1403.0, + 310.0, + 1403.0, + 353.0, + 291.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 343.0, + 784.0, + 343.0, + 784.0, + 380.0, + 316.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 391.0, + 1403.0, + 391.0, + 1403.0, + 435.0, + 289.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 428.0, + 473.0, + 428.0, + 473.0, + 462.0, + 320.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 476.0, + 1409.0, + 476.0, + 1409.0, + 516.0, + 293.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 507.0, + 873.0, + 507.0, + 873.0, + 547.0, + 320.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 557.0, + 1407.0, + 557.0, + 1407.0, + 599.0, + 289.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 591.0, + 1371.0, + 591.0, + 1371.0, + 630.0, + 320.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 645.0, + 1405.0, + 645.0, + 1405.0, + 678.0, + 293.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 668.0, + 1411.0, + 668.0, + 1411.0, + 716.0, + 316.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 701.0, + 543.0, + 701.0, + 543.0, + 741.0, + 318.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 755.0, + 1407.0, + 755.0, + 1407.0, + 795.0, + 293.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 787.0, + 863.0, + 787.0, + 863.0, + 826.0, + 320.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 835.0, + 1407.0, + 835.0, + 1407.0, + 878.0, + 291.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 866.0, + 611.0, + 866.0, + 611.0, + 905.0, + 316.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 918.0, + 1405.0, + 918.0, + 1405.0, + 960.0, + 291.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 951.0, + 1367.0, + 951.0, + 1367.0, + 991.0, + 318.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1005.0, + 1288.0, + 1005.0, + 1288.0, + 1039.0, + 295.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1051.0, + 1407.0, + 1051.0, + 1407.0, + 1095.0, + 289.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1089.0, + 861.0, + 1089.0, + 861.0, + 1122.0, + 323.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1130.0, + 1409.0, + 1130.0, + 1409.0, + 1183.0, + 289.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1168.0, + 1346.0, + 1168.0, + 1346.0, + 1207.0, + 320.0, + 1207.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1222.0, + 1405.0, + 1222.0, + 1405.0, + 1255.0, + 295.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 1251.0, + 1028.0, + 1251.0, + 1028.0, + 1289.0, + 316.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1303.0, + 1407.0, + 1303.0, + 1407.0, + 1343.0, + 293.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1332.0, + 515.0, + 1332.0, + 515.0, + 1372.0, + 318.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1382.0, + 1405.0, + 1382.0, + 1405.0, + 1424.0, + 291.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1416.0, + 1403.0, + 1416.0, + 1403.0, + 1455.0, + 318.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 1447.0, + 521.0, + 1447.0, + 521.0, + 1482.0, + 316.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1495.0, + 1405.0, + 1495.0, + 1405.0, + 1537.0, + 291.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1526.0, + 1405.0, + 1526.0, + 1405.0, + 1566.0, + 320.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1562.0, + 509.0, + 1562.0, + 509.0, + 1595.0, + 323.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1614.0, + 1403.0, + 1614.0, + 1403.0, + 1647.0, + 295.0, + 1647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1645.0, + 1405.0, + 1645.0, + 1405.0, + 1678.0, + 323.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1674.0, + 515.0, + 1674.0, + 515.0, + 1707.0, + 323.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1724.0, + 1407.0, + 1724.0, + 1407.0, + 1764.0, + 291.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1758.0, + 882.0, + 1758.0, + 882.0, + 1791.0, + 320.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1810.0, + 1405.0, + 1810.0, + 1405.0, + 1843.0, + 295.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1855.0, + 1407.0, + 1855.0, + 1407.0, + 1897.0, + 291.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1889.0, + 1407.0, + 1889.0, + 1407.0, + 1928.0, + 318.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1920.0, + 520.0, + 1920.0, + 520.0, + 1960.0, + 323.0, + 1960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1974.0, + 1405.0, + 1974.0, + 1405.0, + 2008.0, + 295.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 2001.0, + 1229.0, + 2001.0, + 1229.0, + 2041.0, + 320.0, + 2041.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.837 + }, + { + "category_id": 1, + "poly": [ + 289, + 226, + 1407, + 226, + 1407, + 544, + 289, + 544 + ], + "score": 0.564 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 854, + 74, + 854, + 106, + 298, + 106 + ], + "score": 0.546 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 854, + 74, + 854, + 106, + 298, + 106 + ], + "score": 0.318 + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 857.0, + 72.0, + 857.0, + 109.0, + 297.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 857.0, + 72.0, + 857.0, + 109.0, + 297.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 230.0, + 1404.0, + 230.0, + 1404.0, + 267.0, + 292.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 264.0, + 713.0, + 264.0, + 713.0, + 296.0, + 320.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 309.0, + 1402.0, + 309.0, + 1402.0, + 354.0, + 290.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 345.0, + 1054.0, + 345.0, + 1054.0, + 381.0, + 321.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 393.0, + 1405.0, + 393.0, + 1405.0, + 435.0, + 291.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 427.0, + 1116.0, + 427.0, + 1116.0, + 466.0, + 320.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 476.0, + 1405.0, + 476.0, + 1405.0, + 518.0, + 291.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 513.0, + 715.0, + 513.0, + 715.0, + 547.0, + 320.0, + 547.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 401, + 1403, + 401, + 1403, + 587, + 298, + 587 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1511, + 1404, + 1511, + 1404, + 1633, + 298, + 1633 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1004, + 1403, + 1004, + 1403, + 1157, + 298, + 1157 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 806, + 1403, + 806, + 1403, + 958, + 297, + 958 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1879, + 1403, + 1879, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 293, + 1402, + 293, + 1402, + 388, + 298, + 388 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 677, + 1403, + 677, + 1403, + 768, + 298, + 768 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 296, + 1347, + 1398, + 1347, + 1398, + 1440, + 296, + 1440 + ], + "score": 0.974 + }, + { + "category_id": 8, + "poly": [ + 500, + 1446, + 1201, + 1446, + 1201, + 1507, + 500, + 1507 + ], + "score": 0.957 + }, + { + "category_id": 8, + "poly": [ + 599, + 1782, + 1093, + 1782, + 1093, + 1858, + 599, + 1858 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 301, + 1711, + 1396, + 1711, + 1396, + 1776, + 301, + 1776 + ], + "score": 0.948 + }, + { + "category_id": 8, + "poly": [ + 518, + 1641, + 1177, + 1641, + 1177, + 1704, + 518, + 1704 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 649, + 769, + 1047, + 769, + 1047, + 805, + 649, + 805 + ], + "score": 0.942 + }, + { + "category_id": 8, + "poly": [ + 639, + 964, + 1058, + 964, + 1058, + 1000, + 639, + 1000 + ], + "score": 0.94 + }, + { + "category_id": 0, + "poly": [ + 301, + 620, + 725, + 620, + 725, + 652, + 301, + 652 + ], + "score": 0.912 + }, + { + "category_id": 0, + "poly": [ + 300, + 1193, + 689, + 1193, + 689, + 1225, + 300, + 1225 + ], + "score": 0.911 + }, + { + "category_id": 0, + "poly": [ + 301, + 226, + 565, + 226, + 565, + 262, + 301, + 262 + ], + "score": 0.91 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1290, + 1399, + 1290, + 1399, + 1320, + 1352, + 1320 + ], + "score": 0.909 + }, + { + "category_id": 8, + "poly": [ + 431, + 1286, + 1260, + 1286, + 1260, + 1339, + 431, + 1339 + ], + "score": 0.907 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1801, + 1400, + 1801, + 1400, + 1832, + 1352, + 1832 + ], + "score": 0.896 + }, + { + "category_id": 9, + "poly": [ + 1352, + 771, + 1399, + 771, + 1399, + 801, + 1352, + 801 + ], + "score": 0.892 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1657, + 1399, + 1657, + 1399, + 1687, + 1352, + 1687 + ], + "score": 0.89 + }, + { + "category_id": 9, + "poly": [ + 1352, + 965, + 1399, + 965, + 1399, + 996, + 1352, + 996 + ], + "score": 0.889 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1463, + 1399, + 1463, + 1399, + 1493, + 1352, + 1493 + ], + "score": 0.888 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.864 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.816 + }, + { + "category_id": 1, + "poly": [ + 299, + 1249, + 1000, + 1249, + 1000, + 1283, + 299, + 1283 + ], + "score": 0.806 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.107 + }, + { + "category_id": 13, + "poly": [ + 1007, + 896, + 1092, + 896, + 1092, + 930, + 1007, + 930 + ], + "score": 0.93, + "latex": "q ( \\theta | \\phi _ { t } )" + }, + { + "category_id": 14, + "poly": [ + 598, + 1779, + 1101, + 1779, + 1101, + 1863, + 598, + 1863 + ], + "score": 0.93, + "latex": "H _ { t + 1 } ^ { i j } = - \\frac { \\partial ^ { 2 } } { \\partial \\theta ^ { ( i ) } \\partial \\theta ^ { ( j ) } } \\log p ( \\mathcal { D } _ { t + 1 } \\vert \\theta ) \\bigg \\vert _ { \\theta = \\mu _ { t + 1 } } ." + }, + { + "category_id": 14, + "poly": [ + 502, + 1444, + 1199, + 1444, + 1199, + 1509, + 502, + 1509 + ], + "score": 0.92, + "latex": "\\log \\tilde { p } ( \\theta | \\mathcal { D } _ { 1 : t } ) \\simeq \\log \\tilde { p } ( \\theta | \\mathcal { D } _ { 1 : t } ) \\big | _ { \\theta = \\theta _ { t } ^ { * } } - \\frac { 1 } { 2 } ( \\theta - \\theta _ { t } ^ { * } ) ^ { T } A _ { t } ( \\theta - \\theta _ { t } ^ { * } ) ," + }, + { + "category_id": 13, + "poly": [ + 1271, + 1004, + 1355, + 1004, + 1355, + 1036, + 1271, + 1036 + ], + "score": 0.92, + "latex": "q ( \\theta | \\phi _ { t } )" + }, + { + "category_id": 13, + "poly": [ + 496, + 835, + 604, + 835, + 604, + 868, + 496, + 868 + ], + "score": 0.92, + "latex": "p ( \\theta | \\mathcal { D } _ { 1 : t } )" + }, + { + "category_id": 13, + "poly": [ + 512, + 1004, + 684, + 1004, + 684, + 1038, + 512, + 1038 + ], + "score": 0.92, + "latex": "p ( \\theta | \\mathcal { D } _ { 1 : t + 1 } , \\phi _ { t } )" + }, + { + "category_id": 13, + "poly": [ + 1213, + 1542, + 1373, + 1542, + 1373, + 1576, + 1213, + 1576 + ], + "score": 0.92, + "latex": "\\phi _ { t } = \\{ \\mu _ { t } , \\Lambda _ { t } \\}" + }, + { + "category_id": 14, + "poly": [ + 637, + 962, + 1060, + 962, + 1060, + 1001, + 637, + 1001 + ], + "score": 0.92, + "latex": "p ( \\theta | \\mathcal { D } _ { 1 : t + 1 } , \\phi _ { t } ) \\propto p ( \\mathcal { D } _ { t + 1 } | \\theta ) q ( \\theta | \\phi _ { t } ) ." + }, + { + "category_id": 13, + "poly": [ + 1281, + 1036, + 1392, + 1036, + 1392, + 1068, + 1281, + 1068 + ], + "score": 0.92, + "latex": "q ( \\theta | \\phi _ { t + 1 } )" + }, + { + "category_id": 14, + "poly": [ + 520, + 1637, + 1180, + 1637, + 1180, + 1708, + 520, + 1708 + ], + "score": 0.92, + "latex": "\\mu _ { t + 1 } = \\arg \\operatorname* { m a x } _ { \\boldsymbol { \\theta } } \\log p ( \\mathcal { D } _ { t + 1 } | \\boldsymbol { \\theta } ) - \\frac { 1 } { 2 } ( \\boldsymbol { \\theta } - \\boldsymbol { \\mu } _ { t } ) ^ { T } \\Lambda _ { t } ( \\boldsymbol { \\theta } - \\boldsymbol { \\mu } _ { t } ) ." + }, + { + "category_id": 14, + "poly": [ + 649, + 767, + 1049, + 767, + 1049, + 805, + 649, + 805 + ], + "score": 0.92, + "latex": "p ( \\theta | \\mathcal { D } _ { 1 : t + 1 } ) \\propto p ( \\mathcal { D } _ { t + 1 } | \\theta ) p ( \\theta | \\mathcal { D } _ { 1 : t } )" + }, + { + "category_id": 13, + "poly": [ + 608, + 680, + 669, + 680, + 669, + 712, + 608, + 712 + ], + "score": 0.92, + "latex": "\\mathcal { D } _ { t + 1 }" + }, + { + "category_id": 13, + "poly": [ + 600, + 1745, + 661, + 1745, + 661, + 1776, + 600, + 1776 + ], + "score": 0.91, + "latex": "\\mathcal { D } _ { t + 1 }" + }, + { + "category_id": 13, + "poly": [ + 1016, + 1713, + 1079, + 1713, + 1079, + 1745, + 1016, + 1745 + ], + "score": 0.91, + "latex": "H _ { t + 1 }" + }, + { + "category_id": 13, + "poly": [ + 532, + 1380, + 639, + 1380, + 639, + 1411, + 532, + 1411 + ], + "score": 0.91, + "latex": "\\tilde { p } ( \\theta | \\mathcal { D } _ { 1 : t } )" + }, + { + "category_id": 13, + "poly": [ + 696, + 1712, + 925, + 1712, + 925, + 1745, + 696, + 1745 + ], + "score": 0.91, + "latex": "\\Lambda _ { t + 1 } = H _ { t + 1 } + \\Lambda _ { t }" + }, + { + "category_id": 13, + "poly": [ + 509, + 1348, + 616, + 1348, + 616, + 1380, + 509, + 1380 + ], + "score": 0.91, + "latex": "p ( \\theta | \\mathcal { D } _ { 1 : t } )" + }, + { + "category_id": 13, + "poly": [ + 1089, + 678, + 1400, + 678, + 1400, + 713, + 1089, + 713 + ], + "score": 0.91, + "latex": "\\theta ^ { * } = \\arg \\operatorname* { m a x } _ { \\theta } p ( \\theta | \\mathcal { D } _ { 1 : t + 1 } )" + }, + { + "category_id": 14, + "poly": [ + 434, + 1285, + 1265, + 1285, + 1265, + 1341, + 434, + 1341 + ], + "score": 0.91, + "latex": "\\theta _ { t + 1 } ^ { * } = \\arg \\operatorname* { m a x } _ { \\theta } p ( \\theta | \\mathcal { D } _ { 1 : t + 1 } ) = \\arg \\operatorname* { m a x } _ { \\theta } \\{ \\log p ( \\mathcal { D } _ { t + 1 } | \\theta ) + \\log p ( \\theta | \\mathcal { D } _ { 1 : t } ) \\} ." + }, + { + "category_id": 13, + "poly": [ + 804, + 1749, + 861, + 1749, + 861, + 1776, + 804, + 1776 + ], + "score": 0.89, + "latex": "\\mu _ { t + 1 }" + }, + { + "category_id": 13, + "poly": [ + 374, + 1513, + 406, + 1513, + 406, + 1542, + 374, + 1542 + ], + "score": 0.88, + "latex": "A _ { t }" + }, + { + "category_id": 13, + "poly": [ + 802, + 1409, + 832, + 1409, + 832, + 1441, + 802, + 1441 + ], + "score": 0.88, + "latex": "{ \\boldsymbol { \\theta } } _ { t } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 1189, + 1513, + 1217, + 1513, + 1217, + 1544, + 1189, + 1544 + ], + "score": 0.87, + "latex": "\\theta _ { t } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 547, + 868, + 575, + 868, + 575, + 898, + 547, + 898 + ], + "score": 0.87, + "latex": "\\phi _ { t }" + }, + { + "category_id": 13, + "poly": [ + 516, + 1575, + 575, + 1575, + 575, + 1602, + 516, + 1602 + ], + "score": 0.85, + "latex": "t + 1" + }, + { + "category_id": 13, + "poly": [ + 365, + 1581, + 420, + 1581, + 420, + 1606, + 365, + 1606 + ], + "score": 0.81, + "latex": "\\mu _ { t + 1 }" + }, + { + "category_id": 13, + "poly": [ + 513, + 711, + 531, + 711, + 531, + 737, + 513, + 737 + ], + "score": 0.81, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 514, + 1101, + 532, + 1101, + 532, + 1128, + 514, + 1128 + ], + "score": 0.79, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 348, + 871, + 366, + 871, + 366, + 898, + 348, + 898 + ], + "score": 0.77, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 1237, + 807, + 1254, + 807, + 1254, + 833, + 1237, + 833 + ], + "score": 0.7, + "latex": "\\theta" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 622.0, + 729.0, + 622.0, + 729.0, + 655.0, + 297.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1192.0, + 691.0, + 1192.0, + 691.0, + 1227.0, + 296.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 223.0, + 570.0, + 223.0, + 570.0, + 269.0, + 294.0, + 269.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, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 403.0, + 1404.0, + 403.0, + 1404.0, + 435.0, + 297.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 430.0, + 1404.0, + 430.0, + 1404.0, + 468.0, + 293.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 462.0, + 1404.0, + 462.0, + 1404.0, + 502.0, + 292.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 491.0, + 1407.0, + 491.0, + 1407.0, + 530.0, + 292.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 523.0, + 1405.0, + 523.0, + 1405.0, + 559.0, + 294.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 554.0, + 714.0, + 554.0, + 714.0, + 590.0, + 294.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1511.0, + 373.0, + 1511.0, + 373.0, + 1547.0, + 294.0, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 1511.0, + 1188.0, + 1511.0, + 1188.0, + 1547.0, + 407.0, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1218.0, + 1511.0, + 1402.0, + 1511.0, + 1402.0, + 1547.0, + 1218.0, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1540.0, + 1212.0, + 1540.0, + 1212.0, + 1579.0, + 292.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1374.0, + 1540.0, + 1404.0, + 1540.0, + 1404.0, + 1579.0, + 1374.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1573.0, + 364.0, + 1573.0, + 364.0, + 1609.0, + 293.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 421.0, + 1573.0, + 515.0, + 1573.0, + 515.0, + 1609.0, + 421.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 1573.0, + 1405.0, + 1573.0, + 1405.0, + 1609.0, + 576.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1602.0, + 759.0, + 1602.0, + 759.0, + 1637.0, + 295.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1001.0, + 511.0, + 1001.0, + 511.0, + 1042.0, + 294.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 1001.0, + 1270.0, + 1001.0, + 1270.0, + 1042.0, + 685.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1356.0, + 1001.0, + 1407.0, + 1001.0, + 1407.0, + 1042.0, + 1356.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1032.0, + 1280.0, + 1032.0, + 1280.0, + 1071.0, + 293.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1393.0, + 1032.0, + 1405.0, + 1032.0, + 1405.0, + 1071.0, + 1393.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1065.0, + 1407.0, + 1065.0, + 1407.0, + 1102.0, + 294.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1092.0, + 513.0, + 1092.0, + 513.0, + 1132.0, + 292.0, + 1132.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 533.0, + 1092.0, + 1405.0, + 1092.0, + 1405.0, + 1132.0, + 533.0, + 1132.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1124.0, + 662.0, + 1124.0, + 662.0, + 1161.0, + 295.0, + 1161.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 805.0, + 1236.0, + 805.0, + 1236.0, + 841.0, + 295.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1255.0, + 805.0, + 1405.0, + 805.0, + 1405.0, + 841.0, + 1255.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 835.0, + 495.0, + 835.0, + 495.0, + 868.0, + 295.0, + 868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 835.0, + 1403.0, + 835.0, + 1403.0, + 868.0, + 605.0, + 868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 861.0, + 347.0, + 861.0, + 347.0, + 904.0, + 292.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 861.0, + 546.0, + 861.0, + 546.0, + 904.0, + 367.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 861.0, + 1405.0, + 861.0, + 1405.0, + 904.0, + 576.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 895.0, + 1006.0, + 895.0, + 1006.0, + 932.0, + 295.0, + 932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 895.0, + 1405.0, + 895.0, + 1405.0, + 932.0, + 1093.0, + 932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 927.0, + 765.0, + 927.0, + 765.0, + 959.0, + 296.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1881.0, + 1404.0, + 1881.0, + 1404.0, + 1915.0, + 294.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1910.0, + 1405.0, + 1910.0, + 1405.0, + 1947.0, + 296.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1939.0, + 1405.0, + 1939.0, + 1405.0, + 1978.0, + 293.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1970.0, + 1405.0, + 1970.0, + 1405.0, + 2010.0, + 293.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 2003.0, + 421.0, + 2003.0, + 421.0, + 2036.0, + 292.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 289.0, + 1402.0, + 289.0, + 1402.0, + 332.0, + 293.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 323.0, + 1403.0, + 323.0, + 1403.0, + 360.0, + 292.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 353.0, + 969.0, + 353.0, + 969.0, + 392.0, + 294.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 671.0, + 607.0, + 671.0, + 607.0, + 719.0, + 292.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 671.0, + 1088.0, + 671.0, + 1088.0, + 719.0, + 670.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 671.0, + 1404.0, + 671.0, + 1404.0, + 719.0, + 1401.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 706.0, + 512.0, + 706.0, + 512.0, + 745.0, + 291.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 706.0, + 1407.0, + 706.0, + 1407.0, + 745.0, + 532.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 739.0, + 392.0, + 739.0, + 392.0, + 771.0, + 291.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1344.0, + 508.0, + 1344.0, + 508.0, + 1385.0, + 294.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 1344.0, + 1403.0, + 1344.0, + 1403.0, + 1385.0, + 617.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1378.0, + 531.0, + 1378.0, + 531.0, + 1412.0, + 295.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 640.0, + 1378.0, + 1402.0, + 1378.0, + 1402.0, + 1412.0, + 640.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1407.0, + 801.0, + 1407.0, + 801.0, + 1443.0, + 295.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 1407.0, + 900.0, + 1407.0, + 900.0, + 1443.0, + 833.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1710.0, + 695.0, + 1710.0, + 695.0, + 1746.0, + 296.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 1710.0, + 1015.0, + 1710.0, + 1015.0, + 1746.0, + 926.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1080.0, + 1710.0, + 1402.0, + 1710.0, + 1402.0, + 1746.0, + 1080.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1741.0, + 599.0, + 1741.0, + 599.0, + 1780.0, + 295.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 662.0, + 1741.0, + 803.0, + 1741.0, + 803.0, + 1780.0, + 662.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 1741.0, + 1004.0, + 1741.0, + 1004.0, + 1780.0, + 862.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1244.0, + 991.0, + 1244.0, + 991.0, + 1290.0, + 294.0, + 1290.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 288, + 1404, + 288, + 1404, + 595, + 297, + 595 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 684, + 1404, + 684, + 1404, + 964, + 297, + 964 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 299, + 1457, + 1405, + 1457, + 1405, + 1558, + 299, + 1558 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 1237, + 1401, + 1237, + 1401, + 1365, + 298, + 1365 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 977, + 1403, + 977, + 1403, + 1072, + 298, + 1072 + ], + "score": 0.969 + }, + { + "category_id": 8, + "poly": [ + 354, + 1891, + 1299, + 1891, + 1299, + 2045, + 354, + 2045 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 300, + 1684, + 1402, + 1684, + 1402, + 1760, + 300, + 1760 + ], + "score": 0.954 + }, + { + "category_id": 8, + "poly": [ + 470, + 1578, + 1228, + 1578, + 1228, + 1667, + 470, + 1667 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 516, + 1383, + 1180, + 1383, + 1180, + 1425, + 516, + 1425 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 546, + 1776, + 1152, + 1776, + 1152, + 1824, + 546, + 1824 + ], + "score": 0.937 + }, + { + "category_id": 1, + "poly": [ + 297, + 1838, + 417, + 1838, + 417, + 1870, + 297, + 1870 + ], + "score": 0.927 + }, + { + "category_id": 0, + "poly": [ + 300, + 632, + 887, + 632, + 887, + 663, + 300, + 663 + ], + "score": 0.917 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1785, + 1400, + 1785, + 1400, + 1816, + 1351, + 1816 + ], + "score": 0.897 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1388, + 1400, + 1388, + 1400, + 1419, + 1352, + 1419 + ], + "score": 0.895 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1607, + 1400, + 1607, + 1400, + 1638, + 1352, + 1638 + ], + "score": 0.894 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1097, + 1400, + 1097, + 1400, + 1127, + 1352, + 1127 + ], + "score": 0.886 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1951, + 1401, + 1951, + 1401, + 1982, + 1351, + 1982 + ], + "score": 0.885 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1185, + 1400, + 1185, + 1400, + 1214, + 1352, + 1214 + ], + "score": 0.88 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1142, + 1400, + 1142, + 1400, + 1172, + 1352, + 1172 + ], + "score": 0.876 + }, + { + "category_id": 2, + "poly": [ + 836, + 2087, + 865, + 2087, + 865, + 2113, + 836, + 2113 + ], + "score": 0.864 + }, + { + "category_id": 8, + "poly": [ + 661, + 1091, + 994, + 1091, + 994, + 1132, + 661, + 1132 + ], + "score": 0.845 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 854, + 75, + 854, + 104, + 299, + 104 + ], + "score": 0.793 + }, + { + "category_id": 8, + "poly": [ + 693, + 1137, + 1040, + 1137, + 1040, + 1178, + 693, + 1178 + ], + "score": 0.542 + }, + { + "category_id": 8, + "poly": [ + 694, + 1184, + 863, + 1184, + 863, + 1217, + 694, + 1217 + ], + "score": 0.536 + }, + { + "category_id": 0, + "poly": [ + 302, + 230, + 908, + 230, + 908, + 261, + 302, + 261 + ], + "score": 0.447 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 853, + 76, + 853, + 104, + 300, + 104 + ], + "score": 0.248 + }, + { + "category_id": 8, + "poly": [ + 660, + 1090, + 1042, + 1090, + 1042, + 1217, + 660, + 1217 + ], + "score": 0.172 + }, + { + "category_id": 14, + "poly": [ + 471, + 1573, + 1228, + 1573, + 1228, + 1670, + 471, + 1670 + ], + "score": 0.94, + "latex": "\\widetilde { F } _ { \\ell } = \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } ( I - A _ { \\ell - 1 } ^ { m } \\otimes G _ { \\ell } ^ { m } ) ( \\widetilde { A } _ { \\ell - 1 } ^ { m } \\otimes \\widetilde { G } _ { \\ell } ^ { m } ) ( I - A _ { \\ell - 1 } ^ { m } \\otimes G _ { \\ell } ^ { m } ) ^ { T } ," + }, + { + "category_id": 14, + "poly": [ + 658, + 1086, + 1042, + 1086, + 1042, + 1224, + 658, + 1224 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { F _ { \\ell } = \\mathbb { E } _ { x , y } \\bigl [ a _ { \\ell - 1 } a _ { \\ell - 1 } ^ { T } \\otimes g _ { \\ell } g _ { \\ell } ^ { T } \\bigr ] } \\\\ & { \\qquad \\approx \\mathbb { E } _ { x } \\bigl [ a _ { \\ell - 1 } a _ { \\ell - 1 } ^ { T } \\bigr ] \\otimes \\mathbb { E } _ { y | x } \\bigl [ g _ { \\ell } g _ { \\ell } ^ { T } \\bigr ] } \\\\ & { \\qquad = A _ { \\ell - 1 } \\otimes G _ { \\ell } , } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 355, + 1889, + 1297, + 1889, + 1297, + 2048, + 355, + 2048 + ], + "score": 0.93, + "latex": "\\begin{array} { r l r } { \\widetilde { F } _ { \\ell } = \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } \\Big \\{ \\widetilde { A } _ { \\ell - 1 } ^ { m } \\otimes \\widetilde { G } _ { \\ell } ^ { m } - A _ { \\ell - 1 } ^ { m } \\widetilde { A } _ { \\ell - 1 } ^ { m } \\otimes G _ { \\ell } ^ { m } \\widetilde { G } _ { \\ell } ^ { m } - \\widetilde { A } _ { \\ell - 1 } ^ { m } ( A _ { \\ell - 1 } ^ { m } ) ^ { T } \\otimes \\widetilde { G } _ { \\ell } ^ { m } ( G _ { \\ell } ^ { m } ) ^ { T } } \\\\ & { } & { + A _ { \\ell - 1 } ^ { m } \\widetilde { A } _ { \\ell - 1 } ^ { m } ( A _ { \\ell - 1 } ^ { m } ) ^ { T } \\otimes G _ { \\ell } ^ { m } \\widetilde { G } _ { \\ell } ^ { m } ( G _ { \\ell } ^ { m } ) ^ { T } \\Big \\} . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 795, + 809, + 930, + 809, + 930, + 843, + 795, + 843 + ], + "score": 0.93, + "latex": "a _ { \\ell } = f _ { \\ell } ( h _ { \\ell } )" + }, + { + "category_id": 13, + "poly": [ + 405, + 810, + 561, + 810, + 561, + 841, + 405, + 841 + ], + "score": 0.92, + "latex": "h _ { \\ell } = W _ { \\ell } a _ { \\ell - 1 }" + }, + { + "category_id": 13, + "poly": [ + 374, + 1239, + 634, + 1239, + 634, + 1277, + 374, + 1277 + ], + "score": 0.92, + "latex": "A _ { \\ell - 1 } = \\mathbb { E } _ { x } [ a _ { \\ell - 1 } a _ { \\ell - 1 } ^ { T } ]" + }, + { + "category_id": 13, + "poly": [ + 933, + 684, + 1323, + 684, + 1323, + 721, + 933, + 721 + ], + "score": 0.92, + "latex": "\\theta = [ \\mathrm { v e c } ( W _ { 1 } ) ^ { T } , \\dots , \\mathrm { v e c } ( W _ { L } ) ^ { T } ] ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 689, + 1239, + 887, + 1239, + 887, + 1277, + 689, + 1277 + ], + "score": 0.92, + "latex": "G _ { \\ell } = \\mathbb { E } _ { y | x } [ g _ { \\ell } g _ { \\ell } ^ { T } ]" + }, + { + "category_id": 13, + "poly": [ + 633, + 718, + 805, + 718, + 805, + 752, + 633, + 752 + ], + "score": 0.92, + "latex": "\\ell = \\{ 1 , \\dots , L \\}" + }, + { + "category_id": 13, + "poly": [ + 374, + 1687, + 516, + 1687, + 516, + 1723, + 374, + 1723 + ], + "score": 0.91, + "latex": "A _ { \\ell - 1 } ^ { m } \\otimes G _ { \\ell } ^ { m }" + }, + { + "category_id": 13, + "poly": [ + 559, + 900, + 862, + 900, + 862, + 934, + 559, + 934 + ], + "score": 0.91, + "latex": "L _ { \\theta } ( \\dot { x _ { \\star } } y ) = - \\log p ( \\bar { y } | \\dot { x } , \\theta )" + }, + { + "category_id": 13, + "poly": [ + 1335, + 902, + 1400, + 902, + 1400, + 934, + 1335, + 934 + ], + "score": 0.91, + "latex": "( x , y )" + }, + { + "category_id": 13, + "poly": [ + 299, + 1039, + 380, + 1039, + 380, + 1073, + 299, + 1073 + ], + "score": 0.91, + "latex": "( \\ell - 1 )" + }, + { + "category_id": 14, + "poly": [ + 547, + 1775, + 1153, + 1775, + 1153, + 1823, + 547, + 1823 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { ( A _ { \\ell - 1 } ^ { m } \\otimes G _ { \\ell } ^ { m } ) ( \\widetilde { A } _ { \\ell - 1 } ^ { m } \\otimes \\widetilde { G } _ { \\ell } ^ { m } ) = A _ { \\ell - 1 } ^ { m } \\widetilde { A } _ { \\ell - 1 } ^ { m } \\otimes G _ { \\ell } ^ { m } \\widetilde { G } _ { \\ell } ^ { m } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 534, + 1722, + 564, + 1722, + 564, + 1757, + 534, + 1757 + ], + "score": 0.9, + "latex": "\\widetilde { F } _ { \\ell }" + }, + { + "category_id": 13, + "poly": [ + 905, + 753, + 989, + 753, + 989, + 779, + 905, + 779 + ], + "score": 0.89, + "latex": "a _ { 0 } = x" + }, + { + "category_id": 13, + "poly": [ + 499, + 1524, + 522, + 1524, + 522, + 1552, + 499, + 1552 + ], + "score": 0.88, + "latex": "\\widetilde { F }" + }, + { + "category_id": 13, + "poly": [ + 328, + 780, + 363, + 780, + 363, + 810, + 328, + 810 + ], + "score": 0.88, + "latex": "h _ { L }" + }, + { + "category_id": 13, + "poly": [ + 1038, + 902, + 1068, + 902, + 1068, + 931, + 1038, + 931 + ], + "score": 0.88, + "latex": "h _ { \\ell }" + }, + { + "category_id": 13, + "poly": [ + 1007, + 810, + 1034, + 810, + 1034, + 841, + 1007, + 841 + ], + "score": 0.87, + "latex": "f _ { \\ell }" + }, + { + "category_id": 13, + "poly": [ + 971, + 980, + 1002, + 980, + 1002, + 1009, + 971, + 1009 + ], + "score": 0.87, + "latex": "F _ { \\ell }" + }, + { + "category_id": 13, + "poly": [ + 298, + 719, + 337, + 719, + 337, + 749, + 298, + 749 + ], + "score": 0.86, + "latex": "W _ { \\ell }" + }, + { + "category_id": 14, + "poly": [ + 518, + 1383, + 1183, + 1383, + 1183, + 1426, + 518, + 1426 + ], + "score": 0.86, + "latex": "\\begin{array} { r } { ( A _ { \\ell - 1 } \\otimes G _ { \\ell } ) \\operatorname { v e c } ( W _ { \\ell } - W _ { \\ell } ^ { * } ) = \\operatorname { v e c } ( G _ { \\ell } ( W _ { \\ell } - W _ { \\ell } ^ { * } ) A _ { \\ell - 1 } ^ { T } ) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 446, + 904, + 473, + 904, + 473, + 933, + 446, + 933 + ], + "score": 0.83, + "latex": "g _ { \\ell }" + }, + { + "category_id": 13, + "poly": [ + 1376, + 980, + 1401, + 980, + 1401, + 1006, + 1376, + 1006 + ], + "score": 0.81, + "latex": "F" + }, + { + "category_id": 13, + "poly": [ + 662, + 689, + 685, + 689, + 685, + 715, + 662, + 715 + ], + "score": 0.79, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 681, + 1041, + 695, + 1041, + 695, + 1067, + 681, + 1067 + ], + "score": 0.78, + "latex": "\\ell" + }, + { + "category_id": 13, + "poly": [ + 359, + 811, + 374, + 811, + 374, + 838, + 359, + 838 + ], + "score": 0.73, + "latex": "\\ell" + }, + { + "category_id": 13, + "poly": [ + 1356, + 1492, + 1370, + 1492, + 1370, + 1516, + 1356, + 1516 + ], + "score": 0.72, + "latex": "\\ell" + }, + { + "category_id": 13, + "poly": [ + 364, + 1730, + 391, + 1730, + 391, + 1754, + 364, + 1754 + ], + "score": 0.72, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 749, + 980, + 763, + 980, + 763, + 1006, + 749, + 1006 + ], + "score": 0.69, + "latex": "\\ell" + }, + { + "category_id": 13, + "poly": [ + 722, + 934, + 736, + 934, + 736, + 958, + 722, + 958 + ], + "score": 0.69, + "latex": "\\ell" + }, + { + "category_id": 13, + "poly": [ + 577, + 720, + 592, + 720, + 592, + 747, + 577, + 747 + ], + "score": 0.67, + "latex": "\\ell" + }, + { + "category_id": 13, + "poly": [ + 297, + 841, + 312, + 841, + 312, + 867, + 297, + 867 + ], + "score": 0.45, + "latex": "\\ell" + }, + { + "category_id": 13, + "poly": [ + 991, + 1243, + 1016, + 1243, + 1016, + 1270, + 991, + 1270 + ], + "score": 0.32, + "latex": "\\&" + }, + { + "category_id": 13, + "poly": [ + 396, + 980, + 421, + 980, + 421, + 1007, + 396, + 1007 + ], + "score": 0.28, + "latex": "\\&" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 633.0, + 889.0, + 633.0, + 889.0, + 665.0, + 297.0, + 665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 857.0, + 72.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 229.0, + 914.0, + 229.0, + 914.0, + 265.0, + 296.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 289.0, + 1404.0, + 289.0, + 1404.0, + 324.0, + 295.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 319.0, + 1406.0, + 319.0, + 1406.0, + 355.0, + 295.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 350.0, + 1406.0, + 350.0, + 1406.0, + 386.0, + 295.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 380.0, + 1405.0, + 380.0, + 1405.0, + 417.0, + 292.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 412.0, + 1406.0, + 412.0, + 1406.0, + 444.0, + 295.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 442.0, + 1404.0, + 442.0, + 1404.0, + 473.0, + 295.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 469.0, + 1406.0, + 469.0, + 1406.0, + 506.0, + 292.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 501.0, + 1404.0, + 501.0, + 1404.0, + 536.0, + 295.0, + 536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 531.0, + 1407.0, + 531.0, + 1407.0, + 567.0, + 292.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 565.0, + 1025.0, + 565.0, + 1025.0, + 597.0, + 296.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 682.0, + 661.0, + 682.0, + 661.0, + 722.0, + 295.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 682.0, + 932.0, + 682.0, + 932.0, + 722.0, + 686.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1324.0, + 682.0, + 1405.0, + 682.0, + 1405.0, + 722.0, + 1324.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 717.0, + 576.0, + 717.0, + 576.0, + 754.0, + 338.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 717.0, + 632.0, + 717.0, + 632.0, + 754.0, + 593.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 806.0, + 717.0, + 1406.0, + 717.0, + 1406.0, + 754.0, + 806.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 747.0, + 904.0, + 747.0, + 904.0, + 784.0, + 292.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 747.0, + 1406.0, + 747.0, + 1406.0, + 784.0, + 990.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 778.0, + 327.0, + 778.0, + 327.0, + 815.0, + 294.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 778.0, + 1405.0, + 778.0, + 1405.0, + 815.0, + 364.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 808.0, + 358.0, + 808.0, + 358.0, + 845.0, + 294.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 808.0, + 404.0, + 808.0, + 404.0, + 845.0, + 375.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 808.0, + 794.0, + 808.0, + 794.0, + 845.0, + 562.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 808.0, + 1006.0, + 808.0, + 1006.0, + 845.0, + 931.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 808.0, + 1405.0, + 808.0, + 1405.0, + 845.0, + 1035.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 836.0, + 296.0, + 836.0, + 296.0, + 875.0, + 292.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 836.0, + 1405.0, + 836.0, + 1405.0, + 875.0, + 313.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 869.0, + 1404.0, + 869.0, + 1404.0, + 906.0, + 292.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 898.0, + 445.0, + 898.0, + 445.0, + 937.0, + 292.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 898.0, + 558.0, + 898.0, + 558.0, + 937.0, + 474.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 898.0, + 1037.0, + 898.0, + 1037.0, + 937.0, + 863.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1069.0, + 898.0, + 1334.0, + 898.0, + 1334.0, + 937.0, + 1069.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 898.0, + 1404.0, + 898.0, + 1404.0, + 937.0, + 1401.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 931.0, + 721.0, + 931.0, + 721.0, + 968.0, + 294.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 931.0, + 747.0, + 931.0, + 747.0, + 968.0, + 737.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1453.0, + 1405.0, + 1453.0, + 1405.0, + 1496.0, + 293.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1489.0, + 1355.0, + 1489.0, + 1355.0, + 1524.0, + 294.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1371.0, + 1489.0, + 1403.0, + 1489.0, + 1403.0, + 1524.0, + 1371.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1525.0, + 498.0, + 1525.0, + 498.0, + 1560.0, + 297.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 523.0, + 1525.0, + 680.0, + 1525.0, + 680.0, + 1560.0, + 523.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1238.0, + 373.0, + 1238.0, + 373.0, + 1278.0, + 293.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 1238.0, + 688.0, + 1238.0, + 688.0, + 1278.0, + 635.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 1238.0, + 990.0, + 1238.0, + 990.0, + 1278.0, + 888.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1017.0, + 1238.0, + 1406.0, + 1238.0, + 1406.0, + 1278.0, + 1017.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1269.0, + 1406.0, + 1269.0, + 1406.0, + 1307.0, + 293.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1302.0, + 1405.0, + 1302.0, + 1405.0, + 1339.0, + 293.0, + 1339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1334.0, + 665.0, + 1334.0, + 665.0, + 1368.0, + 294.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 976.0, + 395.0, + 976.0, + 395.0, + 1012.0, + 292.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 422.0, + 976.0, + 748.0, + 976.0, + 748.0, + 1012.0, + 422.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 976.0, + 970.0, + 976.0, + 970.0, + 1012.0, + 764.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 976.0, + 1375.0, + 976.0, + 1375.0, + 1012.0, + 1003.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 976.0, + 1405.0, + 976.0, + 1405.0, + 1012.0, + 1402.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1007.0, + 1403.0, + 1007.0, + 1403.0, + 1042.0, + 294.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1038.0, + 298.0, + 1038.0, + 298.0, + 1076.0, + 294.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 1038.0, + 680.0, + 1038.0, + 680.0, + 1076.0, + 381.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 1038.0, + 1056.0, + 1038.0, + 1056.0, + 1076.0, + 696.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1681.0, + 373.0, + 1681.0, + 373.0, + 1727.0, + 295.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 517.0, + 1681.0, + 1408.0, + 1681.0, + 1408.0, + 1727.0, + 517.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1719.0, + 363.0, + 1719.0, + 363.0, + 1766.0, + 294.0, + 1766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1719.0, + 533.0, + 1719.0, + 533.0, + 1766.0, + 392.0, + 1766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 1719.0, + 1000.0, + 1719.0, + 1000.0, + 1766.0, + 565.0, + 1766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1832.0, + 421.0, + 1832.0, + 421.0, + 1876.0, + 294.0, + 1876.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 654, + 1404, + 654, + 1404, + 871, + 297, + 871 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1741, + 1404, + 1741, + 1404, + 1897, + 298, + 1897 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1428, + 1405, + 1428, + 1405, + 1565, + 297, + 1565 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 300, + 968, + 1401, + 968, + 1401, + 1125, + 300, + 1125 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1910, + 1403, + 1910, + 1403, + 2035, + 299, + 2035 + ], + "score": 0.975 + }, + { + "category_id": 8, + "poly": [ + 447, + 304, + 1251, + 304, + 1251, + 396, + 447, + 396 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 292, + 228, + 1401, + 228, + 1401, + 294, + 292, + 294 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 297, + 543, + 1398, + 543, + 1398, + 605, + 297, + 605 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 726, + 608, + 971, + 608, + 971, + 647, + 726, + 647 + ], + "score": 0.934 + }, + { + "category_id": 8, + "poly": [ + 448, + 1347, + 1248, + 1347, + 1248, + 1403, + 448, + 1403 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 298, + 1297, + 859, + 1297, + 859, + 1332, + 298, + 1332 + ], + "score": 0.923 + }, + { + "category_id": 0, + "poly": [ + 300, + 1682, + 626, + 1682, + 626, + 1716, + 300, + 1716 + ], + "score": 0.918 + }, + { + "category_id": 0, + "poly": [ + 300, + 1612, + 554, + 1612, + 554, + 1648, + 300, + 1648 + ], + "score": 0.917 + }, + { + "category_id": 0, + "poly": [ + 302, + 912, + 816, + 912, + 816, + 943, + 302, + 943 + ], + "score": 0.91 + }, + { + "category_id": 1, + "poly": [ + 296, + 413, + 1353, + 413, + 1353, + 462, + 296, + 462 + ], + "score": 0.89 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1352, + 1400, + 1352, + 1400, + 1384, + 1352, + 1384 + ], + "score": 0.885 + }, + { + "category_id": 9, + "poly": [ + 1352, + 611, + 1399, + 611, + 1399, + 641, + 1352, + 641 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 854, + 74, + 854, + 106, + 297, + 106 + ], + "score": 0.882 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1146, + 1400, + 1146, + 1400, + 1177, + 1352, + 1177 + ], + "score": 0.876 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1210, + 1400, + 1210, + 1400, + 1240, + 1351, + 1240 + ], + "score": 0.875 + }, + { + "category_id": 9, + "poly": [ + 1352, + 336, + 1400, + 336, + 1400, + 366, + 1352, + 366 + ], + "score": 0.867 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.858 + }, + { + "category_id": 1, + "poly": [ + 298, + 491, + 1238, + 491, + 1238, + 523, + 298, + 523 + ], + "score": 0.817 + }, + { + "category_id": 8, + "poly": [ + 539, + 1205, + 1272, + 1205, + 1272, + 1264, + 539, + 1264 + ], + "score": 0.653 + }, + { + "category_id": 8, + "poly": [ + 423, + 1142, + 1036, + 1142, + 1036, + 1200, + 423, + 1200 + ], + "score": 0.649 + }, + { + "category_id": 8, + "poly": [ + 422, + 1141, + 1273, + 1141, + 1273, + 1265, + 422, + 1265 + ], + "score": 0.207 + }, + { + "category_id": 14, + "poly": [ + 421, + 1138, + 1274, + 1138, + 1274, + 1268, + 421, + 1268 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { q ( \\theta | \\phi _ { t + 1 } ) = \\underset { q \\in \\mathcal { Q } } { \\arg \\operatorname* { m i n } } D _ { \\mathrm { K L } } ( q ( \\theta | \\phi ) \\| p ( \\mathcal { D } _ { t + 1 } | \\theta ) q ( \\theta | \\phi _ { t } ) ) } \\\\ & { \\qquad = \\underset { q \\in \\mathcal { Q } } { \\arg \\operatorname* { m i n } } \\big \\{ - \\mathbb { E } _ { q ( \\theta | \\phi ) } [ \\log p ( \\mathcal { D } _ { t + 1 } | \\theta ) ] + D _ { \\mathrm { K L } } ( q ( \\theta | \\phi ) \\| q ( \\theta | \\phi _ { t } ) ) \\big \\} . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 725, + 608, + 974, + 608, + 974, + 646, + 725, + 646 + ], + "score": 0.92, + "latex": "\\Lambda _ { t + 1 } = \\lambda H _ { t + 1 } + \\Lambda _ { t } ." + }, + { + "category_id": 13, + "poly": [ + 297, + 1469, + 533, + 1469, + 533, + 1507, + 297, + 1507 + ], + "score": 0.92, + "latex": "\\phi _ { t } = \\{ \\mu _ { t , d } , \\sigma _ { t , d } \\} _ { d = 1 } ^ { D }" + }, + { + "category_id": 13, + "poly": [ + 965, + 1428, + 1316, + 1428, + 1316, + 1472, + 965, + 1472 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { q ( \\theta | \\phi _ { t } ) = \\prod _ { d = 1 } ^ { D } N ( \\mu _ { t , d } , \\sigma _ { t , d } ^ { 2 } ) } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 446, + 301, + 1253, + 301, + 1253, + 398, + 446, + 398 + ], + "score": 0.91, + "latex": "\\begin{array} { r l } & { \\widetilde { F } _ { \\ell } \\approx \\widetilde { A } _ { \\ell - 1 } \\otimes \\widetilde { G } _ { \\ell } - A _ { \\ell - 1 } \\widetilde { A } _ { \\ell - 1 } \\otimes G _ { \\ell } \\widetilde { G } _ { \\ell } - \\widetilde { A } _ { \\ell - 1 } ( A _ { \\ell - 1 } ) ^ { T } \\otimes \\widetilde { G } _ { \\ell } ( G _ { \\ell } ) ^ { T } } \\\\ & { \\qquad + A _ { \\ell - 1 } \\widetilde { A } _ { \\ell - 1 } ( A _ { \\ell - 1 } ) ^ { T } \\otimes G _ { \\ell } \\widetilde { G } _ { \\ell } ( G _ { \\ell } ) ^ { T } , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 584, + 1471, + 726, + 1471, + 726, + 1505, + 584, + 1505 + ], + "score": 0.91, + "latex": "D = \\dim ( \\theta )" + }, + { + "category_id": 14, + "poly": [ + 450, + 1346, + 1250, + 1346, + 1250, + 1409, + 450, + 1409 + ], + "score": 0.9, + "latex": "\\phi _ { t + 1 } = \\underset { \\phi } { \\arg \\operatorname* { m i n } } \\big \\{ - \\mathbb { E } _ { q ( \\theta | \\phi ) } [ \\log p ( \\mathcal { D } _ { t + 1 } | \\theta ) ] + D _ { \\mathrm { K L } } ( q ( \\theta | \\phi ) \\| q ( \\theta | \\phi _ { t } ) ) \\big \\} ." + }, + { + "category_id": 13, + "poly": [ + 512, + 1095, + 540, + 1095, + 540, + 1125, + 512, + 1125 + ], + "score": 0.88, + "latex": "\\phi _ { t }" + }, + { + "category_id": 13, + "poly": [ + 299, + 1094, + 324, + 1094, + 324, + 1122, + 299, + 1122 + ], + "score": 0.83, + "latex": "\\mathcal { Q }" + }, + { + "category_id": 13, + "poly": [ + 767, + 548, + 786, + 548, + 786, + 573, + 767, + 573 + ], + "score": 0.82, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 1035, + 1036, + 1053, + 1036, + 1053, + 1064, + 1035, + 1064 + ], + "score": 0.79, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 683, + 1066, + 700, + 1066, + 700, + 1093, + 683, + 1093 + ], + "score": 0.79, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 912, + 780, + 932, + 780, + 932, + 806, + 912, + 806 + ], + "score": 0.79, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 365, + 1036, + 382, + 1036, + 382, + 1064, + 365, + 1064 + ], + "score": 0.77, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 1303, + 719, + 1322, + 719, + 1322, + 746, + 1303, + 746 + ], + "score": 0.74, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 372, + 414, + 622, + 414, + 622, + 459, + 372, + 459 + ], + "score": 0.67, + "latex": "\\begin{array} { r } { \\widetilde { A } _ { \\ell - 1 } = \\frac { 1 } { M } \\sum _ { m } \\widetilde { A } _ { \\ell - 1 } ^ { m } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 852, + 414, + 1227, + 414, + 1227, + 459, + 852, + 459 + ], + "score": 0.63, + "latex": "\\begin{array} { r } { \\pmb { A } _ { \\ell - 1 } \\pmb { \\widetilde { A } } _ { \\ell - 1 } = \\frac { 1 } { M } \\sum _ { m } \\pmb { A } _ { \\ell - 1 } ^ { m } \\widetilde { \\pmb { A } } _ { \\ell - 1 } ^ { m } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 371, + 412, + 1230, + 412, + 1230, + 460, + 371, + 460 + ], + "score": 0.51, + "latex": "\\begin{array} { r } { \\tilde { A } _ { \\ell - 1 } = \\frac { 1 } { M } \\sum _ { m } \\tilde { A } _ { \\ell - 1 } ^ { m } , \\tilde { G } _ { \\ell } = \\frac { 1 } { M } \\sum _ { m } \\tilde { G } _ { \\ell } ^ { m } , A _ { \\ell - 1 } \\tilde { A } _ { \\ell - 1 } = \\frac { 1 } { M } \\sum _ { m } A _ { \\ell - 1 } ^ { m } \\tilde { A } _ { \\ell - 1 } ^ { m } . } \\end{array}" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1681.0, + 630.0, + 1681.0, + 630.0, + 1718.0, + 294.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1608.0, + 558.0, + 1608.0, + 558.0, + 1655.0, + 291.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 910.0, + 820.0, + 910.0, + 820.0, + 949.0, + 296.0, + 949.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": [ + 832.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 654.0, + 1406.0, + 654.0, + 1406.0, + 693.0, + 292.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 688.0, + 1405.0, + 688.0, + 1405.0, + 723.0, + 295.0, + 723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 718.0, + 1302.0, + 718.0, + 1302.0, + 753.0, + 295.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1323.0, + 718.0, + 1404.0, + 718.0, + 1404.0, + 753.0, + 1323.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 749.0, + 1404.0, + 749.0, + 1404.0, + 784.0, + 295.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 777.0, + 911.0, + 777.0, + 911.0, + 814.0, + 292.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 777.0, + 1405.0, + 777.0, + 1405.0, + 814.0, + 933.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 810.0, + 1404.0, + 810.0, + 1404.0, + 844.0, + 295.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 842.0, + 501.0, + 842.0, + 501.0, + 874.0, + 295.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1743.0, + 1402.0, + 1743.0, + 1402.0, + 1776.0, + 296.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1772.0, + 1406.0, + 1772.0, + 1406.0, + 1810.0, + 294.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1803.0, + 1405.0, + 1803.0, + 1405.0, + 1840.0, + 294.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1834.0, + 1406.0, + 1834.0, + 1406.0, + 1871.0, + 293.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1863.0, + 1341.0, + 1863.0, + 1341.0, + 1902.0, + 293.0, + 1902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1429.0, + 964.0, + 1429.0, + 964.0, + 1474.0, + 292.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1317.0, + 1429.0, + 1407.0, + 1429.0, + 1407.0, + 1474.0, + 1317.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 1456.0, + 296.0, + 1456.0, + 296.0, + 1521.0, + 286.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 1456.0, + 583.0, + 1456.0, + 583.0, + 1521.0, + 534.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 1456.0, + 1413.0, + 1456.0, + 1413.0, + 1521.0, + 727.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1500.0, + 1407.0, + 1500.0, + 1407.0, + 1537.0, + 294.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1532.0, + 734.0, + 1532.0, + 734.0, + 1566.0, + 295.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 968.0, + 1405.0, + 968.0, + 1405.0, + 1006.0, + 295.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 998.0, + 1403.0, + 998.0, + 1403.0, + 1037.0, + 294.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1030.0, + 364.0, + 1030.0, + 364.0, + 1068.0, + 294.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 383.0, + 1030.0, + 1034.0, + 1030.0, + 1034.0, + 1068.0, + 383.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 1030.0, + 1405.0, + 1030.0, + 1405.0, + 1068.0, + 1054.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1061.0, + 682.0, + 1061.0, + 682.0, + 1097.0, + 294.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 701.0, + 1061.0, + 1403.0, + 1061.0, + 1403.0, + 1097.0, + 701.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1091.0, + 298.0, + 1091.0, + 298.0, + 1131.0, + 295.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1091.0, + 511.0, + 1091.0, + 511.0, + 1131.0, + 325.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 1091.0, + 554.0, + 1091.0, + 554.0, + 1131.0, + 541.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1910.0, + 1405.0, + 1910.0, + 1405.0, + 1947.0, + 294.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1942.0, + 1407.0, + 1942.0, + 1407.0, + 1978.0, + 294.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1972.0, + 1404.0, + 1972.0, + 1404.0, + 2009.0, + 294.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2003.0, + 1088.0, + 2003.0, + 1088.0, + 2038.0, + 293.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 229.0, + 1403.0, + 229.0, + 1403.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 261.0, + 389.0, + 261.0, + 389.0, + 295.0, + 292.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 542.0, + 766.0, + 542.0, + 766.0, + 582.0, + 293.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 542.0, + 1403.0, + 542.0, + 1403.0, + 582.0, + 787.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 577.0, + 361.0, + 577.0, + 361.0, + 611.0, + 292.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1295.0, + 859.0, + 1295.0, + 859.0, + 1337.0, + 295.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 408.0, + 370.0, + 408.0, + 370.0, + 467.0, + 291.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1231.0, + 408.0, + 1362.0, + 408.0, + 1362.0, + 467.0, + 1231.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 492.0, + 1240.0, + 492.0, + 1240.0, + 523.0, + 297.0, + 523.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1676, + 1406, + 1676, + 1406, + 1868, + 296, + 1868 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1886, + 1403, + 1886, + 1403, + 1981, + 298, + 1981 + ], + "score": 0.974 + }, + { + "category_id": 8, + "poly": [ + 347, + 1528, + 1350, + 1528, + 1350, + 1662, + 347, + 1662 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 304, + 921, + 1406, + 921, + 1406, + 1366, + 304, + 1366 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 678, + 1994, + 1020, + 1994, + 1020, + 2040, + 678, + 2040 + ], + "score": 0.941 + }, + { + "category_id": 1, + "poly": [ + 300, + 266, + 1406, + 266, + 1406, + 839, + 300, + 839 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 299, + 1479, + 699, + 1479, + 699, + 1512, + 299, + 1512 + ], + "score": 0.921 + }, + { + "category_id": 9, + "poly": [ + 1351, + 2003, + 1400, + 2003, + 1400, + 2033, + 1351, + 2033 + ], + "score": 0.895 + }, + { + "category_id": 0, + "poly": [ + 302, + 1421, + 795, + 1421, + 795, + 1455, + 302, + 1455 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 866, + 2088, + 866, + 2113, + 836, + 2113 + ], + "score": 0.869 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.82 + }, + { + "category_id": 0, + "poly": [ + 295, + 880, + 1199, + 880, + 1199, + 914, + 295, + 914 + ], + "score": 0.547 + }, + { + "category_id": 6, + "poly": [ + 297, + 228, + 1234, + 228, + 1234, + 262, + 297, + 262 + ], + "score": 0.378 + }, + { + "category_id": 7, + "poly": [ + 300, + 812, + 433, + 812, + 433, + 839, + 300, + 839 + ], + "score": 0.361 + }, + { + "category_id": 6, + "poly": [ + 295, + 880, + 1199, + 880, + 1199, + 914, + 295, + 914 + ], + "score": 0.324 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.097 + }, + { + "category_id": 14, + "poly": [ + 344, + 1524, + 1351, + 1524, + 1351, + 1666, + 344, + 1666 + ], + "score": 0.93, + "latex": "f _ { t + 1 } ^ { \\mathrm { B o M V I } } ( \\phi , \\phi _ { t } ) = - \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } \\mathbb { E } _ { q ( \\theta | \\phi ) } \\big [ \\log p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { m , Q } | \\widetilde { \\theta } ^ { m } ) \\big ] - \\frac { 1 } { M } \\sum _ { m = 1 } ^ { M } \\mathbb { E } _ { q ( \\theta | \\phi ) } \\big [ \\log p ( \\widetilde { \\mathcal { D } } _ { t + 1 } ^ { m , S } | \\theta ) \\big ]" + }, + { + "category_id": 14, + "poly": [ + 678, + 1993, + 1021, + 1993, + 1021, + 2040, + 678, + 2040 + ], + "score": 0.93, + "latex": "\\tilde { \\theta } ^ { m } = \\theta - \\alpha \\nabla _ { \\mu _ { t } } \\mathcal { L } ( \\mu _ { t } , \\mathcal { \\tilde { D } } _ { t + 1 } ^ { m , S } ) ." + }, + { + "category_id": 13, + "poly": [ + 582, + 772, + 796, + 772, + 796, + 811, + 582, + 811 + ], + "score": 0.92, + "latex": "\\Lambda _ { t } \\gets \\lambda \\widetilde { H } _ { t } + \\Lambda _ { t - 1 }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1745, + 447, + 1745, + 447, + 1775, + 297, + 1775 + ], + "score": 0.92, + "latex": "r = 1 , \\ldots , R" + }, + { + "category_id": 13, + "poly": [ + 791, + 919, + 928, + 919, + 928, + 958, + 791, + 958 + ], + "score": 0.91, + "latex": "\\widetilde { \\mathcal { D } } _ { 1 } , \\ldots , \\widetilde { \\mathcal { D } } _ { T }" + }, + { + "category_id": 13, + "poly": [ + 742, + 1683, + 924, + 1683, + 924, + 1715, + 742, + 1715 + ], + "score": 0.91, + "latex": "m = 1 , \\ldots , M" + }, + { + "category_id": 13, + "poly": [ + 375, + 1676, + 690, + 1676, + 690, + 1719, + 375, + 1719 + ], + "score": 0.91, + "latex": "\\tilde { \\theta } ^ { m } = S G D _ { k } ( \\mathcal { L } ( \\theta , \\widetilde { D } _ { t + 1 } ^ { m , S } ) )" + }, + { + "category_id": 13, + "poly": [ + 465, + 987, + 632, + 987, + 632, + 1021, + 465, + 1021 + ], + "score": 0.91, + "latex": "\\phi _ { 0 } = \\{ \\mu _ { 0 } , \\sigma _ { 0 } \\}" + }, + { + "category_id": 13, + "poly": [ + 800, + 267, + 936, + 267, + 936, + 306, + 800, + 306 + ], + "score": 0.91, + "latex": "\\widetilde { \\mathcal { D } } _ { 1 } , \\ldots , \\widetilde { \\mathcal { D } } _ { T }" + }, + { + "category_id": 13, + "poly": [ + 539, + 736, + 575, + 736, + 575, + 774, + 539, + 774 + ], + "score": 0.9, + "latex": "\\widetilde { H } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 540, + 648, + 627, + 648, + 627, + 678, + 540, + 678 + ], + "score": 0.9, + "latex": "\\mu _ { t } \\gets \\theta" + }, + { + "category_id": 13, + "poly": [ + 385, + 368, + 450, + 368, + 450, + 394, + 385, + 394 + ], + "score": 0.89, + "latex": "t = 1" + }, + { + "category_id": 13, + "poly": [ + 385, + 1019, + 450, + 1019, + 450, + 1046, + 385, + 1046 + ], + "score": 0.89, + "latex": "t = 1" + }, + { + "category_id": 13, + "poly": [ + 578, + 1236, + 932, + 1236, + 932, + 1272, + 578, + 1272 + ], + "score": 0.89, + "latex": "\\bar { \\mu } \\mu - \\alpha \\nabla _ { \\mu } f _ { t } ^ { \\mathrm { B o M V I } } ( \\phi , \\phi _ { t - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 990, + 1233, + 1346, + 1233, + 1346, + 1271, + 990, + 1271 + ], + "score": 0.89, + "latex": "\\sigma \\gets \\sigma - \\alpha \\nabla _ { \\sigma } f _ { t } ^ { \\mathrm { B o M V I } } ( \\phi , \\phi _ { t - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 615, + 1141, + 917, + 1141, + 917, + 1179, + 615, + 1179 + ], + "score": 0.89, + "latex": "\\tilde { \\theta } ^ { m } = S G D _ { k } ( \\mathcal { L } ( \\theta , \\widetilde { D } _ { t } ^ { m , S } ) )" + }, + { + "category_id": 13, + "poly": [ + 473, + 1302, + 563, + 1302, + 563, + 1330, + 473, + 1330 + ], + "score": 0.89, + "latex": "\\mu _ { t } \\mu" + }, + { + "category_id": 13, + "poly": [ + 468, + 430, + 547, + 430, + 547, + 456, + 468, + 456 + ], + "score": 0.89, + "latex": "m = 1" + }, + { + "category_id": 13, + "poly": [ + 582, + 552, + 842, + 552, + 842, + 586, + 582, + 586 + ], + "score": 0.89, + "latex": "f _ { t } ^ { \\mathrm { B o u L A } } ( \\theta , \\mu _ { t - 1 } , \\Lambda _ { t - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 582, + 1204, + 768, + 1204, + 768, + 1239, + 582, + 1239 + ], + "score": 0.88, + "latex": "f _ { t } ^ { \\mathrm { B o u V I } } ( \\phi , \\phi _ { t - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 1329, + 1714, + 1357, + 1714, + 1357, + 1744, + 1329, + 1744 + ], + "score": 0.87, + "latex": "\\theta _ { r }" + }, + { + "category_id": 13, + "poly": [ + 469, + 1081, + 547, + 1081, + 547, + 1107, + 469, + 1107 + ], + "score": 0.87, + "latex": "m = 1" + }, + { + "category_id": 13, + "poly": [ + 615, + 489, + 916, + 489, + 916, + 528, + 615, + 528 + ], + "score": 0.87, + "latex": "\\tilde { \\theta } ^ { m } = S G D _ { k } ( \\mathcal { L } ( \\theta , \\widetilde { D } _ { t } ^ { m , S } ) )" + }, + { + "category_id": 13, + "poly": [ + 821, + 1102, + 1067, + 1102, + 1067, + 1142, + 821, + 1142 + ], + "score": 0.87, + "latex": "\\widetilde { \\mathcal { D } } _ { t } ^ { m } = \\widetilde { \\mathcal { D } } _ { t } ^ { m , S } \\cup \\widetilde { \\mathcal { D } } _ { t } ^ { m , Q }" + }, + { + "category_id": 13, + "poly": [ + 1316, + 1882, + 1352, + 1882, + 1352, + 1915, + 1316, + 1915 + ], + "score": 0.87, + "latex": "{ \\widetilde { \\theta } } ^ { m }" + }, + { + "category_id": 13, + "poly": [ + 1372, + 1776, + 1400, + 1776, + 1400, + 1805, + 1372, + 1805 + ], + "score": 0.86, + "latex": "\\theta _ { r }" + }, + { + "category_id": 13, + "poly": [ + 428, + 1049, + 597, + 1049, + 597, + 1079, + 428, + 1079 + ], + "score": 0.86, + "latex": "i = 1 , 2 , \\dots , J" + }, + { + "category_id": 13, + "poly": [ + 771, + 737, + 796, + 737, + 796, + 770, + 771, + 770 + ], + "score": 0.85, + "latex": "\\widetilde { F }" + }, + { + "category_id": 13, + "poly": [ + 613, + 1302, + 701, + 1302, + 701, + 1329, + 613, + 1329 + ], + "score": 0.83, + "latex": "\\sigma _ { t } \\gets \\sigma" + }, + { + "category_id": 13, + "poly": [ + 578, + 586, + 998, + 586, + 998, + 619, + 578, + 619 + ], + "score": 0.82, + "latex": "\\theta \\gets \\theta - \\alpha \\nabla _ { \\theta } f _ { t } ^ { \\mathrm { B o M L A } } ( \\theta , \\mu _ { t - 1 } , \\Lambda _ { t - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 428, + 398, + 571, + 398, + 571, + 428, + 428, + 428 + ], + "score": 0.82, + "latex": "i = 1 , \\dots , J" + }, + { + "category_id": 13, + "poly": [ + 1117, + 390, + 1152, + 390, + 1152, + 427, + 1117, + 427 + ], + "score": 0.81, + "latex": "\\widetilde { \\mathcal { D } } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 821, + 450, + 1066, + 450, + 1066, + 491, + 821, + 491 + ], + "score": 0.81, + "latex": "\\widetilde { \\mathcal { D } } _ { t } ^ { m } = \\widetilde { \\mathcal { D } } _ { t } ^ { m , S } \\cup \\widetilde { \\mathcal { D } } _ { t } ^ { m , Q }" + }, + { + "category_id": 13, + "poly": [ + 1117, + 1042, + 1152, + 1042, + 1152, + 1079, + 1117, + 1079 + ], + "score": 0.81, + "latex": "\\widetilde { \\mathcal { D } } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 587, + 958, + 608, + 958, + 608, + 985, + 587, + 985 + ], + "score": 0.79, + "latex": "J" + }, + { + "category_id": 13, + "poly": [ + 737, + 678, + 770, + 678, + 770, + 705, + 737, + 705 + ], + "score": 0.79, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 865, + 308, + 885, + 308, + 885, + 333, + 865, + 333 + ], + "score": 0.78, + "latex": "J" + }, + { + "category_id": 13, + "poly": [ + 1058, + 958, + 1092, + 958, + 1092, + 985, + 1058, + 985 + ], + "score": 0.77, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 483, + 369, + 507, + 369, + 507, + 394, + 483, + 394 + ], + "score": 0.76, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 1090, + 933, + 1111, + 933, + 1111, + 955, + 1090, + 955 + ], + "score": 0.76, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 1374, + 276, + 1394, + 276, + 1394, + 302, + 1374, + 302 + ], + "score": 0.73, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 581, + 429, + 614, + 429, + 614, + 455, + 581, + 455 + ], + "score": 0.72, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 1102, + 281, + 1124, + 281, + 1124, + 303, + 1102, + 303 + ], + "score": 0.72, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 581, + 1080, + 614, + 1080, + 614, + 1106, + 581, + 1106 + ], + "score": 0.71, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 1379, + 398, + 1401, + 398, + 1401, + 425, + 1379, + 425 + ], + "score": 0.69, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 1336, + 306, + 1369, + 306, + 1369, + 333, + 1336, + 333 + ], + "score": 0.69, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 1379, + 1049, + 1401, + 1049, + 1401, + 1077, + 1379, + 1077 + ], + "score": 0.67, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 465, + 336, + 542, + 336, + 542, + 367, + 465, + 367 + ], + "score": 0.66, + "latex": "\\mu _ { 0 } , \\Lambda _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 483, + 1020, + 507, + 1020, + 507, + 1045, + 483, + 1045 + ], + "score": 0.58, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 1118, + 1042, + 1234, + 1042, + 1234, + 1079, + 1118, + 1079 + ], + "score": 0.51, + "latex": "\\widetilde { \\cal D } _ { t } \\quad" + }, + { + "category_id": 13, + "poly": [ + 553, + 337, + 571, + 337, + 571, + 363, + 553, + 363 + ], + "score": 0.48, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 1127, + 652, + 1150, + 652, + 1150, + 675, + 1127, + 675 + ], + "score": 0.47, + "latex": "\\triangleright" + }, + { + "category_id": 13, + "poly": [ + 1117, + 390, + 1234, + 390, + 1234, + 427, + 1117, + 427 + ], + "score": 0.44, + "latex": "\\widetilde { \\cal D } _ { t } \\quad" + }, + { + "category_id": 13, + "poly": [ + 738, + 1054, + 759, + 1054, + 759, + 1076, + 738, + 1076 + ], + "score": 0.35, + "latex": "\\triangleright" + }, + { + "category_id": 13, + "poly": [ + 739, + 402, + 759, + 402, + 759, + 424, + 739, + 424 + ], + "score": 0.32, + "latex": "\\triangleright" + }, + { + "category_id": 13, + "poly": [ + 1086, + 783, + 1108, + 783, + 1108, + 807, + 1086, + 807 + ], + "score": 0.31, + "latex": "\\triangleright" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1420.0, + 799.0, + 1420.0, + 799.0, + 1458.0, + 294.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 876.0, + 1201.0, + 876.0, + 1201.0, + 920.0, + 294.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 223.0, + 1238.0, + 223.0, + 1238.0, + 270.0, + 293.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 803.0, + 440.0, + 803.0, + 440.0, + 845.0, + 296.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 876.0, + 1201.0, + 876.0, + 1201.0, + 920.0, + 294.0, + 920.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": [ + 284.0, + 1660.0, + 374.0, + 1660.0, + 374.0, + 1749.0, + 284.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 1660.0, + 741.0, + 1660.0, + 741.0, + 1749.0, + 691.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 1660.0, + 1328.0, + 1660.0, + 1328.0, + 1749.0, + 925.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1358.0, + 1660.0, + 1419.0, + 1660.0, + 1419.0, + 1749.0, + 1358.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1741.0, + 296.0, + 1741.0, + 296.0, + 1780.0, + 291.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 448.0, + 1741.0, + 1406.0, + 1741.0, + 1406.0, + 1780.0, + 448.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1772.0, + 1371.0, + 1772.0, + 1371.0, + 1811.0, + 293.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1806.0, + 1403.0, + 1806.0, + 1403.0, + 1838.0, + 295.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1835.0, + 875.0, + 1835.0, + 875.0, + 1871.0, + 295.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1885.0, + 1315.0, + 1885.0, + 1315.0, + 1921.0, + 293.0, + 1921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1353.0, + 1885.0, + 1403.0, + 1885.0, + 1403.0, + 1921.0, + 1353.0, + 1921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1920.0, + 1402.0, + 1920.0, + 1402.0, + 1951.0, + 296.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1948.0, + 1336.0, + 1948.0, + 1336.0, + 1986.0, + 294.0, + 1986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 917.0, + 790.0, + 917.0, + 790.0, + 965.0, + 304.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 917.0, + 1089.0, + 917.0, + 1089.0, + 965.0, + 929.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1112.0, + 917.0, + 1407.0, + 917.0, + 1407.0, + 965.0, + 1112.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 954.0, + 586.0, + 954.0, + 586.0, + 991.0, + 340.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 954.0, + 1057.0, + 954.0, + 1057.0, + 991.0, + 609.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 984.0, + 464.0, + 984.0, + 464.0, + 1024.0, + 304.0, + 1024.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1016.0, + 384.0, + 1016.0, + 384.0, + 1050.0, + 307.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 1016.0, + 482.0, + 1016.0, + 482.0, + 1050.0, + 451.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 1016.0, + 551.0, + 1016.0, + 551.0, + 1050.0, + 508.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1049.0, + 339.0, + 1049.0, + 339.0, + 1080.0, + 307.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 1046.0, + 427.0, + 1046.0, + 427.0, + 1081.0, + 378.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 1046.0, + 640.0, + 1046.0, + 640.0, + 1081.0, + 598.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 760.0, + 1045.0, + 1116.0, + 1045.0, + 1116.0, + 1080.0, + 760.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1235.0, + 1045.0, + 1378.0, + 1045.0, + 1378.0, + 1080.0, + 1235.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1045.0, + 1405.0, + 1045.0, + 1405.0, + 1080.0, + 1402.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 1077.0, + 340.0, + 1077.0, + 340.0, + 1112.0, + 305.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 1077.0, + 468.0, + 1077.0, + 468.0, + 1107.0, + 423.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 1077.0, + 580.0, + 1077.0, + 580.0, + 1107.0, + 548.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 1077.0, + 652.0, + 1077.0, + 652.0, + 1107.0, + 615.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 1109.0, + 339.0, + 1109.0, + 339.0, + 1142.0, + 308.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 460.0, + 1101.0, + 820.0, + 1101.0, + 820.0, + 1143.0, + 460.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1068.0, + 1101.0, + 1072.0, + 1101.0, + 1072.0, + 1143.0, + 1068.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 1145.0, + 339.0, + 1145.0, + 339.0, + 1179.0, + 308.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 1136.0, + 614.0, + 1136.0, + 614.0, + 1182.0, + 463.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 1136.0, + 926.0, + 1136.0, + 926.0, + 1182.0, + 918.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 1175.0, + 340.0, + 1175.0, + 340.0, + 1210.0, + 305.0, + 1210.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 1170.0, + 522.0, + 1170.0, + 522.0, + 1210.0, + 423.0, + 1210.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 1206.0, + 340.0, + 1206.0, + 340.0, + 1241.0, + 304.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 1193.0, + 581.0, + 1193.0, + 581.0, + 1246.0, + 420.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 1193.0, + 904.0, + 1193.0, + 904.0, + 1246.0, + 769.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1237.0, + 340.0, + 1237.0, + 340.0, + 1270.0, + 297.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 1224.0, + 577.0, + 1224.0, + 577.0, + 1280.0, + 414.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 1224.0, + 989.0, + 1224.0, + 989.0, + 1280.0, + 933.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1347.0, + 1224.0, + 1356.0, + 1224.0, + 1356.0, + 1280.0, + 1347.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1268.0, + 340.0, + 1268.0, + 340.0, + 1299.0, + 297.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 383.0, + 1266.0, + 479.0, + 1266.0, + 479.0, + 1299.0, + 383.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1296.0, + 342.0, + 1296.0, + 342.0, + 1332.0, + 294.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 1295.0, + 472.0, + 1295.0, + 472.0, + 1333.0, + 382.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 1295.0, + 612.0, + 1295.0, + 612.0, + 1333.0, + 564.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 1295.0, + 705.0, + 1295.0, + 705.0, + 1333.0, + 702.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1067.0, + 1297.0, + 1405.0, + 1297.0, + 1405.0, + 1332.0, + 1067.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1327.0, + 437.0, + 1327.0, + 437.0, + 1361.0, + 295.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 270.0, + 799.0, + 270.0, + 799.0, + 309.0, + 308.0, + 309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 937.0, + 270.0, + 1101.0, + 270.0, + 1101.0, + 309.0, + 937.0, + 309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1125.0, + 270.0, + 1373.0, + 270.0, + 1373.0, + 309.0, + 1125.0, + 309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 270.0, + 1406.0, + 270.0, + 1406.0, + 309.0, + 1395.0, + 309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 304.0, + 864.0, + 304.0, + 864.0, + 338.0, + 340.0, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 304.0, + 1335.0, + 304.0, + 1335.0, + 338.0, + 886.0, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 332.0, + 464.0, + 332.0, + 464.0, + 368.0, + 307.0, + 368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 332.0, + 552.0, + 332.0, + 552.0, + 368.0, + 543.0, + 368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 332.0, + 577.0, + 332.0, + 577.0, + 368.0, + 572.0, + 368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 364.0, + 384.0, + 364.0, + 384.0, + 399.0, + 307.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 364.0, + 482.0, + 364.0, + 482.0, + 399.0, + 451.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 364.0, + 548.0, + 364.0, + 548.0, + 399.0, + 508.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 397.0, + 339.0, + 397.0, + 339.0, + 428.0, + 308.0, + 428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 383.0, + 395.0, + 427.0, + 395.0, + 427.0, + 428.0, + 383.0, + 428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 395.0, + 612.0, + 395.0, + 612.0, + 428.0, + 572.0, + 428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 735.0, + 393.0, + 738.0, + 393.0, + 738.0, + 429.0, + 735.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 760.0, + 393.0, + 1116.0, + 393.0, + 1116.0, + 429.0, + 760.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1235.0, + 393.0, + 1378.0, + 393.0, + 1378.0, + 429.0, + 1235.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 428.0, + 339.0, + 428.0, + 339.0, + 460.0, + 307.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 426.0, + 467.0, + 426.0, + 467.0, + 458.0, + 425.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 426.0, + 580.0, + 426.0, + 580.0, + 458.0, + 548.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 426.0, + 655.0, + 426.0, + 655.0, + 458.0, + 615.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 458.0, + 339.0, + 458.0, + 339.0, + 491.0, + 308.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 460.0, + 446.0, + 820.0, + 446.0, + 820.0, + 492.0, + 460.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1067.0, + 446.0, + 1073.0, + 446.0, + 1073.0, + 492.0, + 1067.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 493.0, + 339.0, + 493.0, + 339.0, + 527.0, + 308.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 484.0, + 614.0, + 484.0, + 614.0, + 531.0, + 464.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 917.0, + 484.0, + 926.0, + 484.0, + 926.0, + 531.0, + 917.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 524.0, + 339.0, + 524.0, + 339.0, + 556.0, + 308.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 523.0, + 519.0, + 523.0, + 519.0, + 556.0, + 425.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 552.0, + 340.0, + 552.0, + 340.0, + 588.0, + 305.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 542.0, + 581.0, + 542.0, + 581.0, + 593.0, + 419.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 542.0, + 962.0, + 542.0, + 962.0, + 593.0, + 843.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 585.0, + 339.0, + 585.0, + 339.0, + 618.0, + 295.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 571.0, + 577.0, + 571.0, + 577.0, + 626.0, + 420.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 571.0, + 1004.0, + 571.0, + 1004.0, + 626.0, + 999.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 616.0, + 339.0, + 616.0, + 339.0, + 648.0, + 295.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 383.0, + 614.0, + 479.0, + 614.0, + 479.0, + 648.0, + 383.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 644.0, + 340.0, + 644.0, + 340.0, + 681.0, + 294.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 645.0, + 539.0, + 645.0, + 539.0, + 680.0, + 384.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 628.0, + 645.0, + 633.0, + 645.0, + 633.0, + 680.0, + 628.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 647.0, + 1404.0, + 647.0, + 1404.0, + 681.0, + 1151.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 676.0, + 339.0, + 676.0, + 339.0, + 710.0, + 295.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 383.0, + 675.0, + 736.0, + 675.0, + 736.0, + 710.0, + 383.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 771.0, + 675.0, + 1138.0, + 675.0, + 1138.0, + 710.0, + 771.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 707.0, + 339.0, + 707.0, + 339.0, + 739.0, + 295.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 383.0, + 706.0, + 1041.0, + 706.0, + 1041.0, + 741.0, + 383.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 742.0, + 339.0, + 742.0, + 339.0, + 775.0, + 295.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 383.0, + 739.0, + 538.0, + 739.0, + 538.0, + 778.0, + 383.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 739.0, + 770.0, + 739.0, + 770.0, + 778.0, + 576.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 739.0, + 927.0, + 739.0, + 927.0, + 778.0, + 797.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 776.0, + 340.0, + 776.0, + 340.0, + 813.0, + 296.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 775.0, + 581.0, + 775.0, + 581.0, + 814.0, + 382.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 778.0, + 1404.0, + 778.0, + 1404.0, + 814.0, + 1109.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 809.0, + 437.0, + 809.0, + 437.0, + 842.0, + 295.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1475.0, + 701.0, + 1475.0, + 701.0, + 1517.0, + 294.0, + 1517.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 15, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 947, + 1364, + 947, + 1364, + 1192, + 297, + 1192 + ], + "score": 0.981 + }, + { + "category_id": 5, + "poly": [ + 374, + 1547, + 1327, + 1547, + 1327, + 2017, + 374, + 2017 + ], + "score": 0.98, + "html": "
HyperparameterBOMLABOMVI
Posterior regulariser 入0.1
Precision initialisation values10-4~10-2
Covariance initialisation values1exp(-10)
NumberofMonte Carlo samples=5
Number of batch M11
Number of query samples per class (meta-evaluation)1515
Number of epochs per task5050
Number of inner SGD steps in meta-training (k)55
Inner SGD learning rate (α)0.10.1
Outer loop optimiserAdamAdam
Outer loop learning rate0.0010.001
Number of tasks sampled for meta-evaluation100100
Number of inner SGD steps in meta-evaluation (k)1010
" + }, + { + "category_id": 1, + "poly": [ + 298, + 583, + 1404, + 583, + 1404, + 708, + 298, + 708 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 722, + 1403, + 722, + 1403, + 876, + 298, + 876 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 322, + 1404, + 322, + 1404, + 416, + 297, + 416 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 300, + 1263, + 1375, + 1263, + 1375, + 1324, + 300, + 1324 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 298, + 1395, + 1250, + 1395, + 1250, + 1457, + 298, + 1457 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 676, + 271, + 1021, + 271, + 1021, + 316, + 676, + 316 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 300, + 225, + 753, + 225, + 753, + 264, + 300, + 264 + ], + "score": 0.916 + }, + { + "category_id": 6, + "poly": [ + 448, + 1507, + 1252, + 1507, + 1252, + 1540, + 448, + 1540 + ], + "score": 0.909 + }, + { + "category_id": 0, + "poly": [ + 300, + 459, + 564, + 459, + 564, + 495, + 300, + 495 + ], + "score": 0.906 + }, + { + "category_id": 9, + "poly": [ + 1352, + 278, + 1400, + 278, + 1400, + 309, + 1352, + 309 + ], + "score": 0.902 + }, + { + "category_id": 0, + "poly": [ + 300, + 892, + 643, + 892, + 643, + 923, + 300, + 923 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.861 + }, + { + "category_id": 0, + "poly": [ + 301, + 527, + 753, + 527, + 753, + 559, + 301, + 559 + ], + "score": 0.821 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 854, + 74, + 854, + 106, + 297, + 106 + ], + "score": 0.782 + }, + { + "category_id": 1, + "poly": [ + 299, + 1339, + 656, + 1339, + 656, + 1369, + 299, + 1369 + ], + "score": 0.645 + }, + { + "category_id": 1, + "poly": [ + 300, + 1207, + 590, + 1207, + 590, + 1237, + 300, + 1237 + ], + "score": 0.475 + }, + { + "category_id": 0, + "poly": [ + 300, + 1207, + 590, + 1207, + 590, + 1237, + 300, + 1237 + ], + "score": 0.46 + }, + { + "category_id": 0, + "poly": [ + 299, + 1339, + 656, + 1339, + 656, + 1369, + 299, + 1369 + ], + "score": 0.303 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 854, + 74, + 854, + 106, + 297, + 106 + ], + "score": 0.201 + }, + { + "category_id": 1, + "poly": [ + 301, + 527, + 753, + 527, + 753, + 559, + 301, + 559 + ], + "score": 0.102 + }, + { + "category_id": 14, + "poly": [ + 676, + 269, + 1021, + 269, + 1021, + 315, + 676, + 315 + ], + "score": 0.93, + "latex": "\\widetilde { \\mu } _ { t } = \\mu _ { t } - \\alpha \\nabla _ { \\mu _ { t } } \\mathcal { L } ( \\mu _ { t } , \\widetilde { D } _ { t + 1 } ^ { m , S } ) ," + }, + { + "category_id": 13, + "poly": [ + 363, + 322, + 605, + 322, + 605, + 357, + 363, + 357 + ], + "score": 0.91, + "latex": "\\theta \\sim N ( \\mu _ { t } , \\mathrm { d i a g } ( \\sigma _ { t } ^ { 2 } ) )" + }, + { + "category_id": 13, + "poly": [ + 646, + 616, + 714, + 616, + 714, + 645, + 646, + 645 + ], + "score": 0.89, + "latex": "3 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 298, + 646, + 361, + 646, + 361, + 675, + 298, + 675 + ], + "score": 0.87, + "latex": "2 \\times 2" + }, + { + "category_id": 13, + "poly": [ + 418, + 224, + 675, + 224, + 675, + 265, + 418, + 265 + ], + "score": 0.87, + "latex": "\\widetilde { \\theta } ^ { m } \\sim N ( \\widetilde { \\mu } _ { t } , \\mathrm { d i a g } ( \\sigma _ { t } ^ { 2 } ) )" + }, + { + "category_id": 13, + "poly": [ + 580, + 1737, + 614, + 1737, + 614, + 1764, + 580, + 1764 + ], + "score": 0.56, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 617, + 1614, + 637, + 1614, + 637, + 1642, + 617, + 1642 + ], + "score": 0.55, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 887, + 1828, + 923, + 1828, + 923, + 1859, + 887, + 1859 + ], + "score": 0.52, + "latex": "( k )" + }, + { + "category_id": 13, + "poly": [ + 661, + 1861, + 698, + 1861, + 698, + 1889, + 661, + 1889 + ], + "score": 0.51, + "latex": "( \\alpha )" + }, + { + "category_id": 13, + "poly": [ + 916, + 1981, + 951, + 1981, + 951, + 2010, + 916, + 2010 + ], + "score": 0.43, + "latex": "( k )" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 1504.0, + 1252.0, + 1504.0, + 1252.0, + 1546.0, + 447.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 455.0, + 568.0, + 455.0, + 568.0, + 500.0, + 293.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 887.0, + 646.0, + 887.0, + 646.0, + 929.0, + 295.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 526.0, + 757.0, + 526.0, + 757.0, + 563.0, + 296.0, + 563.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": [ + 295.0, + 1205.0, + 593.0, + 1205.0, + 593.0, + 1240.0, + 295.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1339.0, + 659.0, + 1339.0, + 659.0, + 1371.0, + 296.0, + 1371.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": [ + 293.0, + 945.0, + 1280.0, + 945.0, + 1280.0, + 982.0, + 293.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 978.0, + 1296.0, + 978.0, + 1296.0, + 1012.0, + 293.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1008.0, + 1228.0, + 1008.0, + 1228.0, + 1042.0, + 296.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1036.0, + 1227.0, + 1036.0, + 1227.0, + 1072.0, + 294.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1067.0, + 1331.0, + 1067.0, + 1331.0, + 1105.0, + 292.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1099.0, + 1363.0, + 1099.0, + 1363.0, + 1133.0, + 293.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1131.0, + 1363.0, + 1131.0, + 1363.0, + 1164.0, + 296.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1161.0, + 1300.0, + 1161.0, + 1300.0, + 1194.0, + 294.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 585.0, + 1406.0, + 585.0, + 1406.0, + 617.0, + 294.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 616.0, + 645.0, + 616.0, + 645.0, + 649.0, + 294.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 616.0, + 1406.0, + 616.0, + 1406.0, + 649.0, + 715.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 647.0, + 297.0, + 647.0, + 297.0, + 679.0, + 293.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 647.0, + 1404.0, + 647.0, + 1404.0, + 679.0, + 362.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 676.0, + 1269.0, + 676.0, + 1269.0, + 712.0, + 293.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 724.0, + 1404.0, + 724.0, + 1404.0, + 757.0, + 297.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 750.0, + 1405.0, + 750.0, + 1405.0, + 790.0, + 293.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 784.0, + 1405.0, + 784.0, + 1405.0, + 818.0, + 296.0, + 818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 814.0, + 1407.0, + 814.0, + 1407.0, + 851.0, + 294.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 843.0, + 1025.0, + 843.0, + 1025.0, + 881.0, + 293.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 323.0, + 362.0, + 323.0, + 362.0, + 357.0, + 295.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 323.0, + 1404.0, + 323.0, + 1404.0, + 357.0, + 606.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 354.0, + 1402.0, + 354.0, + 1402.0, + 385.0, + 296.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 386.0, + 669.0, + 386.0, + 669.0, + 415.0, + 293.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1258.0, + 1380.0, + 1258.0, + 1380.0, + 1300.0, + 293.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1288.0, + 978.0, + 1288.0, + 978.0, + 1328.0, + 293.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1393.0, + 1197.0, + 1393.0, + 1197.0, + 1429.0, + 295.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1423.0, + 1251.0, + 1423.0, + 1251.0, + 1459.0, + 292.0, + 1459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 219.0, + 417.0, + 219.0, + 417.0, + 271.0, + 293.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 219.0, + 756.0, + 219.0, + 756.0, + 271.0, + 676.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1339.0, + 659.0, + 1339.0, + 659.0, + 1371.0, + 296.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1205.0, + 593.0, + 1205.0, + 593.0, + 1240.0, + 295.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 526.0, + 757.0, + 526.0, + 757.0, + 563.0, + 296.0, + 563.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 16, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 382, + 1404, + 382, + 1404, + 507, + 298, + 507 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 540, + 1403, + 540, + 1403, + 632, + 298, + 632 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 793, + 1403, + 793, + 1403, + 885, + 298, + 885 + ], + "score": 0.972 + }, + { + "category_id": 5, + "poly": [ + 303, + 1659, + 1462, + 1659, + 1462, + 1970, + 303, + 1970 + ], + "score": 0.969, + "html": "
HyperparameterOmniglotCIFAR-FSminiImageNetVGG-FlowersAircraft
Number of inner SGD steps in meta-training (k)15555
Inner SGD learning rate0.40.10.10.10.1
(a) Outer learning rate decay-×0.1×0.1 halfway×0.1 per 1000x0.1
schedule Number of inner SGD steps in meta-evaluation3halfway 1010iterations 10halfway 10
" + }, + { + "category_id": 5, + "poly": [ + 398, + 1107, + 1313, + 1107, + 1313, + 1515, + 398, + 1515 + ], + "score": 0.969, + "html": "
HyperparameterBOMLABOMVI
Posterior regulariser 入(various values)
Precision initialisation values10-4~ 10-2
Number of tasks sampled for Hessian approx.5000
Covariance initialisation valuesexp(-5)
Number of Monte Carlo samples=20
Meta-batch size M= 3232
Number of query samples per class1515
Number of iterations per dataset5000
Outer loop optimiserAdam5000
Outer loop learning rateAdam
Number of tasks sampled for meta-evaluation0.001 1000.001 100
" + }, + { + "category_id": 1, + "poly": [ + 297, + 919, + 1403, + 919, + 1403, + 1013, + 297, + 1013 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 300, + 666, + 1399, + 666, + 1399, + 759, + 300, + 759 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 296, + 286, + 1402, + 286, + 1402, + 350, + 296, + 350 + ], + "score": 0.953 + }, + { + "category_id": 6, + "poly": [ + 311, + 1597, + 1389, + 1597, + 1389, + 1632, + 311, + 1632 + ], + "score": 0.903 + }, + { + "category_id": 6, + "poly": [ + 377, + 1067, + 1320, + 1067, + 1320, + 1099, + 377, + 1099 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.855 + }, + { + "category_id": 0, + "poly": [ + 301, + 231, + 823, + 231, + 823, + 261, + 301, + 261 + ], + "score": 0.699 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.654 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.259 + }, + { + "category_id": 1, + "poly": [ + 301, + 231, + 823, + 231, + 823, + 261, + 301, + 261 + ], + "score": 0.16 + }, + { + "category_id": 13, + "poly": [ + 1228, + 415, + 1271, + 415, + 1271, + 443, + 1228, + 443 + ], + "score": 0.87, + "latex": "9 0 °" + }, + { + "category_id": 13, + "poly": [ + 1350, + 1850, + 1412, + 1850, + 1412, + 1881, + 1350, + 1881 + ], + "score": 0.71, + "latex": "\\times 0 . 1" + }, + { + "category_id": 13, + "poly": [ + 1143, + 1850, + 1205, + 1850, + 1205, + 1881, + 1143, + 1881 + ], + "score": 0.54, + "latex": "\\times 0 . 1" + }, + { + "category_id": 13, + "poly": [ + 655, + 1175, + 675, + 1175, + 675, + 1201, + 655, + 1201 + ], + "score": 0.53, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 606, + 1327, + 640, + 1327, + 640, + 1354, + 606, + 1354 + ], + "score": 0.52, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 314, + 1820, + 354, + 1820, + 354, + 1851, + 314, + 1851 + ], + "score": 0.4, + "latex": "( \\alpha )" + }, + { + "category_id": 13, + "poly": [ + 557, + 1760, + 592, + 1760, + 592, + 1790, + 557, + 1790 + ], + "score": 0.36, + "latex": "( k )" + }, + { + "category_id": 13, + "poly": [ + 767, + 1850, + 830, + 1850, + 830, + 1881, + 767, + 1881 + ], + "score": 0.33, + "latex": "\\times 0 . 1" + }, + { + "category_id": 13, + "poly": [ + 943, + 1850, + 1004, + 1850, + 1004, + 1881, + 943, + 1881 + ], + "score": 0.28, + "latex": "\\times 0 . 1" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 1593.0, + 1389.0, + 1593.0, + 1389.0, + 1636.0, + 310.0, + 1636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 1065.0, + 1324.0, + 1065.0, + 1324.0, + 1104.0, + 375.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2122.0, + 832.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 230.0, + 829.0, + 230.0, + 829.0, + 265.0, + 296.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 382.0, + 1404.0, + 382.0, + 1404.0, + 415.0, + 297.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 414.0, + 1227.0, + 414.0, + 1227.0, + 447.0, + 296.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 414.0, + 1405.0, + 414.0, + 1405.0, + 447.0, + 1272.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 446.0, + 1404.0, + 446.0, + 1404.0, + 478.0, + 296.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 476.0, + 1258.0, + 476.0, + 1258.0, + 509.0, + 294.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 540.0, + 1404.0, + 540.0, + 1404.0, + 574.0, + 297.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 572.0, + 1404.0, + 572.0, + 1404.0, + 605.0, + 296.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 602.0, + 1066.0, + 602.0, + 1066.0, + 634.0, + 294.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 791.0, + 1404.0, + 791.0, + 1404.0, + 828.0, + 294.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 823.0, + 1406.0, + 823.0, + 1406.0, + 859.0, + 293.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 855.0, + 1251.0, + 855.0, + 1251.0, + 888.0, + 294.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 920.0, + 1403.0, + 920.0, + 1403.0, + 954.0, + 296.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 950.0, + 1404.0, + 950.0, + 1404.0, + 985.0, + 294.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 982.0, + 1130.0, + 982.0, + 1130.0, + 1014.0, + 293.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 667.0, + 1402.0, + 667.0, + 1402.0, + 700.0, + 296.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 699.0, + 1402.0, + 699.0, + 1402.0, + 729.0, + 296.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 726.0, + 1289.0, + 726.0, + 1289.0, + 764.0, + 294.0, + 764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 285.0, + 1406.0, + 285.0, + 1406.0, + 322.0, + 295.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 318.0, + 1367.0, + 318.0, + 1367.0, + 354.0, + 295.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 230.0, + 829.0, + 230.0, + 829.0, + 265.0, + 296.0, + 265.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 17, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 4, + "poly": [ + 296, + 1789, + 1405, + 1789, + 1405, + 2036, + 296, + 2036 + ], + "score": 0.954 + }, + { + "category_id": 3, + "poly": [ + 393, + 232, + 1337, + 232, + 1337, + 1745, + 393, + 1745 + ], + "score": 0.952 + }, + { + "category_id": 2, + "poly": [ + 837, + 2088, + 865, + 2088, + 865, + 2112, + 837, + 2112 + ], + "score": 0.851 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 852, + 76, + 852, + 104, + 299, + 104 + ], + "score": 0.815 + }, + { + "category_id": 13, + "poly": [ + 352, + 1852, + 452, + 1852, + 452, + 1881, + 352, + 1881 + ], + "score": 0.9, + "latex": "\\lambda = 1 0 0" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1791.0, + 1405.0, + 1791.0, + 1405.0, + 1825.0, + 295.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1821.0, + 1405.0, + 1821.0, + 1405.0, + 1855.0, + 294.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1852.0, + 351.0, + 1852.0, + 351.0, + 1886.0, + 295.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 1852.0, + 1403.0, + 1852.0, + 1403.0, + 1886.0, + 453.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1882.0, + 1405.0, + 1882.0, + 1405.0, + 1916.0, + 295.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1913.0, + 1405.0, + 1913.0, + 1405.0, + 1945.0, + 294.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1943.0, + 1403.0, + 1943.0, + 1403.0, + 1976.0, + 294.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1972.0, + 1405.0, + 1972.0, + 1405.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2005.0, + 971.0, + 2005.0, + 971.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 227.0, + 565.0, + 227.0, + 565.0, + 522.0, + 504.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 231.0, + 1112.0, + 231.0, + 1112.0, + 493.0, + 1061.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 235.0, + 750.0, + 235.0, + 750.0, + 497.0, + 708.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 236.0, + 924.0, + 236.0, + 924.0, + 470.0, + 884.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 399.0, + 237.0, + 438.0, + 237.0, + 438.0, + 474.0, + 399.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 239.0, + 963.0, + 239.0, + 963.0, + 404.0, + 930.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 242.0, + 879.0, + 242.0, + 879.0, + 369.0, + 839.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 242.0, + 1247.0, + 242.0, + 1247.0, + 520.0, + 1209.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 243.0, + 691.0, + 243.0, + 691.0, + 420.0, + 659.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 244.0, + 415.0, + 244.0, + 415.0, + 369.0, + 400.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 244.0, + 473.0, + 244.0, + 473.0, + 325.0, + 451.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 482.0, + 244.0, + 504.0, + 244.0, + 504.0, + 405.0, + 482.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1107.0, + 244.0, + 1147.0, + 244.0, + 1147.0, + 348.0, + 1107.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 245.0, + 714.0, + 245.0, + 714.0, + 428.0, + 681.0, + 428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 245.0, + 1186.0, + 245.0, + 1186.0, + 313.0, + 1156.0, + 313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 246.0, + 637.0, + 246.0, + 637.0, + 387.0, + 602.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 248.0, + 890.0, + 248.0, + 890.0, + 368.0, + 863.0, + 368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 253.0, + 990.0, + 253.0, + 990.0, + 271.0, + 978.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 788.0, + 268.0, + 815.0, + 268.0, + 815.0, + 390.0, + 788.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1279.0, + 274.0, + 1311.0, + 274.0, + 1311.0, + 486.0, + 1279.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 325.0, + 473.0, + 325.0, + 473.0, + 374.0, + 451.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 362.0, + 862.0, + 362.0, + 862.0, + 375.0, + 850.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 370.0, + 891.0, + 370.0, + 891.0, + 446.0, + 868.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 375.0, + 638.0, + 375.0, + 638.0, + 402.0, + 619.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 389.0, + 863.0, + 389.0, + 863.0, + 464.0, + 846.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.0, + 410.0, + 641.0, + 410.0, + 641.0, + 448.0, + 616.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 414.0, + 420.0, + 414.0, + 420.0, + 488.0, + 403.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 677.0, + 422.0, + 710.0, + 422.0, + 710.0, + 520.0, + 677.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 436.0, + 689.0, + 436.0, + 689.0, + 605.0, + 650.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 439.0, + 1141.0, + 439.0, + 1141.0, + 479.0, + 1115.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 486.0, + 491.0, + 486.0, + 491.0, + 508.0, + 477.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 488.0, + 851.0, + 488.0, + 851.0, + 508.0, + 839.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 518.0, + 865.0, + 518.0, + 865.0, + 586.0, + 829.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 519.0, + 511.0, + 519.0, + 511.0, + 653.0, + 483.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 521.0, + 956.0, + 521.0, + 956.0, + 666.0, + 929.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 953.0, + 521.0, + 982.0, + 521.0, + 982.0, + 588.0, + 953.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.0, + 523.0, + 1310.0, + 523.0, + 1310.0, + 790.0, + 1277.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 525.0, + 807.0, + 525.0, + 807.0, + 567.0, + 783.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 528.0, + 834.0, + 528.0, + 834.0, + 562.0, + 817.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 468.0, + 533.0, + 491.0, + 533.0, + 491.0, + 610.0, + 468.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 534.0, + 633.0, + 534.0, + 633.0, + 695.0, + 595.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 553.0, + 705.0, + 553.0, + 705.0, + 601.0, + 681.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 820.0, + 557.0, + 834.0, + 557.0, + 834.0, + 575.0, + 820.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 668.0, + 568.0, + 685.0, + 568.0, + 685.0, + 602.0, + 668.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 472.0, + 626.0, + 484.0, + 626.0, + 484.0, + 652.0, + 472.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 626.0, + 662.0, + 626.0, + 662.0, + 647.0, + 649.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 610.0, + 698.0, + 610.0, + 698.0, + 627.0, + 686.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 820.0, + 624.0, + 834.0, + 624.0, + 834.0, + 642.0, + 820.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 951.0, + 612.0, + 978.0, + 612.0, + 978.0, + 693.0, + 951.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 481.0, + 644.0, + 509.0, + 644.0, + 509.0, + 726.0, + 481.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 647.0, + 436.0, + 647.0, + 436.0, + 753.0, + 413.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 698.0, + 456.0, + 698.0, + 456.0, + 716.0, + 444.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 489.0, + 726.0, + 506.0, + 726.0, + 506.0, + 760.0, + 489.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 730.0, + 662.0, + 730.0, + 662.0, + 755.0, + 650.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 725.0, + 697.0, + 725.0, + 697.0, + 752.0, + 685.0, + 752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 479.0, + 757.0, + 501.0, + 757.0, + 501.0, + 795.0, + 479.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 437.0, + 773.0, + 451.0, + 773.0, + 451.0, + 792.0, + 437.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1275.0, + 802.0, + 1313.0, + 802.0, + 1313.0, + 1089.0, + 1275.0, + 1089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 462.0, + 805.0, + 501.0, + 805.0, + 501.0, + 1001.0, + 462.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 805.0, + 609.0, + 805.0, + 609.0, + 873.0, + 579.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 807.0, + 463.0, + 807.0, + 463.0, + 869.0, + 451.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 810.0, + 417.0, + 810.0, + 417.0, + 886.0, + 400.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1305.0, + 819.0, + 1348.0, + 819.0, + 1348.0, + 1071.0, + 1305.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1138.0, + 824.0, + 1176.0, + 824.0, + 1176.0, + 1017.0, + 1138.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1020.0, + 827.0, + 1059.0, + 827.0, + 1059.0, + 1010.0, + 1020.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 857.0, + 1207.0, + 857.0, + 1207.0, + 1015.0, + 1169.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1198.0, + 866.0, + 1238.0, + 866.0, + 1238.0, + 1014.0, + 1198.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1111.0, + 886.0, + 1143.0, + 886.0, + 1143.0, + 1004.0, + 1111.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 891.0, + 417.0, + 891.0, + 417.0, + 943.0, + 400.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 893.0, + 461.0, + 893.0, + 461.0, + 936.0, + 449.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 901.0, + 1027.0, + 901.0, + 1027.0, + 991.0, + 993.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 592.0, + 918.0, + 609.0, + 918.0, + 609.0, + 945.0, + 592.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 921.0, + 1085.0, + 921.0, + 1085.0, + 1007.0, + 1056.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 938.0, + 680.0, + 938.0, + 680.0, + 953.0, + 666.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 940.0, + 420.0, + 940.0, + 420.0, + 1063.0, + 396.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 963.0, + 446.0, + 963.0, + 446.0, + 999.0, + 434.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 669.0, + 978.0, + 683.0, + 978.0, + 683.0, + 999.0, + 669.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 1011.0, + 900.0, + 1011.0, + 900.0, + 1083.0, + 870.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 433.0, + 1015.0, + 488.0, + 1015.0, + 488.0, + 1359.0, + 433.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 1015.0, + 1198.0, + 1015.0, + 1198.0, + 1062.0, + 1176.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 1020.0, + 1165.0, + 1020.0, + 1165.0, + 1067.0, + 1148.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 1025.0, + 626.0, + 1025.0, + 626.0, + 1041.0, + 614.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 1037.0, + 630.0, + 1037.0, + 630.0, + 1083.0, + 606.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 1057.0, + 786.0, + 1057.0, + 786.0, + 1084.0, + 769.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 421.0, + 1063.0, + 455.0, + 1063.0, + 455.0, + 1295.0, + 421.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 1082.0, + 422.0, + 1082.0, + 422.0, + 1334.0, + 389.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 592.0, + 1111.0, + 616.0, + 1111.0, + 616.0, + 1150.0, + 592.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1279.0, + 1121.0, + 1311.0, + 1121.0, + 1311.0, + 1346.0, + 1279.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 1125.0, + 637.0, + 1125.0, + 637.0, + 1200.0, + 619.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 1157.0, + 668.0, + 1157.0, + 668.0, + 1183.0, + 649.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 1178.0, + 676.0, + 1178.0, + 676.0, + 1202.0, + 657.0, + 1202.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 1205.0, + 614.0, + 1205.0, + 614.0, + 1225.0, + 602.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 607.0, + 1227.0, + 619.0, + 1227.0, + 619.0, + 1257.0, + 607.0, + 1257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 1259.0, + 607.0, + 1259.0, + 607.0, + 1274.0, + 595.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 683.0, + 1328.0, + 697.0, + 1328.0, + 697.0, + 1341.0, + 683.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 1391.0, + 420.0, + 1391.0, + 420.0, + 1630.0, + 387.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1279.0, + 1402.0, + 1311.0, + 1402.0, + 1311.0, + 1629.0, + 1279.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 1640.0, + 549.0, + 1640.0, + 549.0, + 1657.0, + 520.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 590.0, + 1634.0, + 731.0, + 1634.0, + 731.0, + 1724.0, + 590.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 1632.0, + 1105.0, + 1632.0, + 1105.0, + 1726.0, + 920.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 1649.0, + 417.0, + 1649.0, + 417.0, + 1696.0, + 388.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 446.0, + 1651.0, + 473.0, + 1651.0, + 473.0, + 1686.0, + 446.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 499.0, + 1649.0, + 532.0, + 1649.0, + 532.0, + 1687.0, + 499.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 662.0, + 1652.0, + 692.0, + 1652.0, + 692.0, + 1684.0, + 662.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 719.0, + 1651.0, + 779.0, + 1651.0, + 779.0, + 1691.0, + 719.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 1652.0, + 812.0, + 1652.0, + 812.0, + 1684.0, + 784.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 822.0, + 1652.0, + 850.0, + 1652.0, + 850.0, + 1686.0, + 822.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 1652.0, + 884.0, + 1652.0, + 884.0, + 1684.0, + 856.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 1651.0, + 922.0, + 1651.0, + 922.0, + 1691.0, + 891.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 982.0, + 1652.0, + 1009.0, + 1652.0, + 1009.0, + 1684.0, + 982.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 1651.0, + 1049.0, + 1651.0, + 1049.0, + 1686.0, + 1021.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1117.0, + 1651.0, + 1145.0, + 1651.0, + 1145.0, + 1686.0, + 1117.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 1651.0, + 1196.0, + 1651.0, + 1196.0, + 1686.0, + 1169.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 1651.0, + 1248.0, + 1651.0, + 1248.0, + 1684.0, + 1222.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 1682.0, + 540.0, + 1682.0, + 540.0, + 1721.0, + 425.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 1673.0, + 918.0, + 1673.0, + 918.0, + 1707.0, + 750.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1136.0, + 1673.0, + 1236.0, + 1673.0, + 1236.0, + 1709.0, + 1136.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 771.5, + 1014.0, + 771.5, + 1014.0, + 781.5, + 1008.0, + 781.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.75, + 1331.5, + 627.75, + 1331.5, + 627.75, + 1347.5, + 605.75, + 1347.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 1326.0, + 661.0, + 1326.0, + 661.0, + 1350.0, + 632.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 18, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 4, + "poly": [ + 297, + 1789, + 1404, + 1789, + 1404, + 2036, + 297, + 2036 + ], + "score": 0.955 + }, + { + "category_id": 3, + "poly": [ + 391, + 232, + 1330, + 232, + 1330, + 1753, + 391, + 1753 + ], + "score": 0.935 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 865, + 2088, + 865, + 2112, + 835, + 2112 + ], + "score": 0.857 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 852, + 76, + 852, + 104, + 299, + 104 + ], + "score": 0.788 + }, + { + "category_id": 13, + "poly": [ + 437, + 1852, + 555, + 1852, + 555, + 1881, + 437, + 1881 + ], + "score": 0.91, + "latex": "\\lambda = 1 0 0 0" + }, + { + "category_id": 13, + "poly": [ + 501, + 1912, + 572, + 1912, + 572, + 1940, + 501, + 1940 + ], + "score": 0.9, + "latex": "\\lambda = 1" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1791.0, + 1404.0, + 1791.0, + 1404.0, + 1825.0, + 296.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1821.0, + 1404.0, + 1821.0, + 1404.0, + 1855.0, + 295.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1851.0, + 436.0, + 1851.0, + 436.0, + 1887.0, + 295.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 1851.0, + 1406.0, + 1851.0, + 1406.0, + 1887.0, + 556.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1881.0, + 1407.0, + 1881.0, + 1407.0, + 1916.0, + 291.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1913.0, + 500.0, + 1913.0, + 500.0, + 1946.0, + 295.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 1913.0, + 1405.0, + 1913.0, + 1405.0, + 1946.0, + 573.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1941.0, + 1406.0, + 1941.0, + 1406.0, + 1979.0, + 294.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1970.0, + 1406.0, + 1970.0, + 1406.0, + 2009.0, + 294.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2004.0, + 941.0, + 2004.0, + 941.0, + 2038.0, + 293.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 512.0, + 231.0, + 566.0, + 231.0, + 566.0, + 511.0, + 512.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 233.0, + 1110.0, + 233.0, + 1110.0, + 482.0, + 1063.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 981.0, + 235.0, + 1018.0, + 235.0, + 1018.0, + 500.0, + 981.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 820.0, + 237.0, + 854.0, + 237.0, + 854.0, + 338.0, + 820.0, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 239.0, + 746.0, + 239.0, + 746.0, + 503.0, + 702.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 239.0, + 1038.0, + 239.0, + 1038.0, + 410.0, + 1006.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1155.0, + 239.0, + 1196.0, + 239.0, + 1196.0, + 321.0, + 1155.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 244.0, + 919.0, + 244.0, + 919.0, + 391.0, + 879.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1113.0, + 246.0, + 1148.0, + 246.0, + 1148.0, + 326.0, + 1113.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1059.0, + 248.0, + 1071.0, + 248.0, + 1071.0, + 270.0, + 1059.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 248.0, + 1236.0, + 248.0, + 1236.0, + 332.0, + 1207.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 253.0, + 872.0, + 253.0, + 872.0, + 369.0, + 845.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 258.0, + 888.0, + 258.0, + 888.0, + 310.0, + 866.0, + 310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 259.0, + 478.0, + 259.0, + 478.0, + 398.0, + 452.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 669.0, + 266.0, + 686.0, + 266.0, + 686.0, + 342.0, + 669.0, + 342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 268.0, + 510.0, + 268.0, + 510.0, + 412.0, + 483.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 270.0, + 712.0, + 270.0, + 712.0, + 425.0, + 684.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 642.0, + 273.0, + 664.0, + 273.0, + 664.0, + 337.0, + 642.0, + 337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.0, + 273.0, + 1310.0, + 273.0, + 1310.0, + 486.0, + 1277.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 306.0, + 884.0, + 306.0, + 884.0, + 362.0, + 869.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1165.0, + 324.0, + 1180.0, + 324.0, + 1180.0, + 341.0, + 1165.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 463.0, + 505.0, + 463.0, + 505.0, + 499.0, + 487.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 375.0, + 689.0, + 375.0, + 689.0, + 523.0, + 635.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 447.0, + 708.0, + 447.0, + 708.0, + 483.0, + 690.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 361.0, + 857.0, + 361.0, + 857.0, + 519.0, + 817.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 376.0, + 924.0, + 376.0, + 924.0, + 523.0, + 884.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 396.0, + 1149.0, + 396.0, + 1149.0, + 498.0, + 1120.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1166.0, + 391.0, + 1194.0, + 391.0, + 1194.0, + 481.0, + 1166.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1210.0, + 417.0, + 1244.0, + 417.0, + 1244.0, + 505.0, + 1210.0, + 505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 489.0, + 714.0, + 489.0, + 714.0, + 506.0, + 700.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 641.0, + 504.0, + 675.0, + 504.0, + 675.0, + 638.0, + 641.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 811.0, + 505.0, + 838.0, + 505.0, + 838.0, + 648.0, + 811.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 486.0, + 511.0, + 524.0, + 511.0, + 524.0, + 765.0, + 486.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 663.0, + 511.0, + 708.0, + 511.0, + 708.0, + 657.0, + 663.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 511.0, + 874.0, + 511.0, + 874.0, + 523.0, + 861.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 515.0, + 867.0, + 515.0, + 867.0, + 667.0, + 830.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1276.0, + 520.0, + 1313.0, + 520.0, + 1313.0, + 793.0, + 1276.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 944.0, + 524.0, + 971.0, + 524.0, + 971.0, + 629.0, + 944.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 538.0, + 490.0, + 538.0, + 490.0, + 565.0, + 473.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 476.0, + 560.0, + 488.0, + 560.0, + 488.0, + 577.0, + 476.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 574.0, + 488.0, + 574.0, + 488.0, + 596.0, + 474.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 626.0, + 488.0, + 626.0, + 488.0, + 646.0, + 474.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 662.0, + 486.0, + 662.0, + 486.0, + 670.0, + 478.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 687.0, + 705.0, + 687.0, + 705.0, + 778.0, + 678.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 707.0, + 666.0, + 707.0, + 666.0, + 736.0, + 645.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 729.0, + 666.0, + 729.0, + 666.0, + 775.0, + 643.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 485.0, + 752.0, + 507.0, + 752.0, + 507.0, + 805.0, + 485.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 471.0, + 797.0, + 493.0, + 797.0, + 493.0, + 876.0, + 471.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1276.0, + 802.0, + 1319.0, + 802.0, + 1319.0, + 1094.0, + 1276.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 813.0, + 822.0, + 813.0, + 822.0, + 1088.0, + 780.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 819.0, + 999.0, + 819.0, + 999.0, + 1016.0, + 960.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1303.0, + 822.0, + 1341.0, + 822.0, + 1341.0, + 1072.0, + 1303.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 825.0, + 1177.0, + 825.0, + 1177.0, + 1020.0, + 1137.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 830.0, + 792.0, + 830.0, + 792.0, + 881.0, + 775.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 830.0, + 1030.0, + 830.0, + 1030.0, + 1016.0, + 990.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 835.0, + 466.0, + 835.0, + 466.0, + 878.0, + 454.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 859.0, + 1059.0, + 859.0, + 1059.0, + 1016.0, + 1021.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 468.0, + 860.0, + 501.0, + 860.0, + 501.0, + 1000.0, + 468.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 757.0, + 876.0, + 808.0, + 876.0, + 808.0, + 1094.0, + 757.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1112.0, + 881.0, + 1146.0, + 881.0, + 1146.0, + 1005.0, + 1112.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 886.0, + 466.0, + 886.0, + 466.0, + 930.0, + 449.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 901.0, + 967.0, + 901.0, + 967.0, + 990.0, + 933.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 927.0, + 1086.0, + 927.0, + 1086.0, + 1014.0, + 1052.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 1032.0, + 473.0, + 1032.0, + 473.0, + 1091.0, + 451.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 1063.0, + 625.0, + 1063.0, + 625.0, + 1079.0, + 613.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 1020.0, + 1168.0, + 1020.0, + 1168.0, + 1070.0, + 1146.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 1081.0, + 648.0, + 1081.0, + 648.0, + 1311.0, + 598.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 1091.0, + 466.0, + 1091.0, + 466.0, + 1113.0, + 450.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 1099.0, + 447.0, + 1099.0, + 447.0, + 1266.0, + 425.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 569.0, + 1107.0, + 620.0, + 1107.0, + 620.0, + 1293.0, + 569.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1276.0, + 1117.0, + 1313.0, + 1117.0, + 1313.0, + 1350.0, + 1276.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 1251.0, + 623.0, + 1251.0, + 623.0, + 1295.0, + 606.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 1255.0, + 436.0, + 1255.0, + 436.0, + 1296.0, + 419.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 1307.0, + 437.0, + 1307.0, + 437.0, + 1320.0, + 425.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 1367.0, + 419.0, + 1367.0, + 419.0, + 1643.0, + 380.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.0, + 1398.0, + 1315.0, + 1398.0, + 1315.0, + 1632.0, + 1277.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 1653.0, + 414.0, + 1653.0, + 414.0, + 1695.0, + 389.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 1653.0, + 476.0, + 1653.0, + 476.0, + 1686.0, + 449.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 507.0, + 1651.0, + 538.0, + 1651.0, + 538.0, + 1692.0, + 507.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 592.0, + 1631.0, + 773.0, + 1631.0, + 773.0, + 1728.0, + 592.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 1653.0, + 809.0, + 1653.0, + 809.0, + 1685.0, + 784.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 819.0, + 1653.0, + 847.0, + 1653.0, + 847.0, + 1685.0, + 819.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 1654.0, + 883.0, + 1654.0, + 883.0, + 1685.0, + 854.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 1631.0, + 1103.0, + 1631.0, + 1103.0, + 1728.0, + 893.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 1630.0, + 1266.0, + 1630.0, + 1266.0, + 1726.0, + 1122.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 1680.0, + 541.0, + 1680.0, + 541.0, + 1724.0, + 425.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 751.0, + 1673.0, + 917.0, + 1673.0, + 917.0, + 1710.0, + 751.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.25, + 1327.0, + 613.25, + 1327.0, + 613.25, + 1339.0, + 609.25, + 1339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2123.0, + 829.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 19, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/zQTezqCCtNx/images/18e1d8c7ba1cf3b9991368ce394242186e77b96e3e517249470495b55d592dd8.jpg b/parse/train/zQTezqCCtNx/images/18e1d8c7ba1cf3b9991368ce394242186e77b96e3e517249470495b55d592dd8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b783789819ff9ed0afdfd023f3c9b0b7fede042f --- /dev/null +++ b/parse/train/zQTezqCCtNx/images/18e1d8c7ba1cf3b9991368ce394242186e77b96e3e517249470495b55d592dd8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:000aa2ee9bde245c10904b635898c09bc9ddd4d82b0f7ac73f8ea9d4825ce7de +size 25140 diff --git a/parse/train/zQTezqCCtNx/images/2069b39ae42fa04df46516c56eb6f5c866fa2c062665aea8a5d4d0f5c6ee5a17.jpg b/parse/train/zQTezqCCtNx/images/2069b39ae42fa04df46516c56eb6f5c866fa2c062665aea8a5d4d0f5c6ee5a17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bfc7014c85f4b2d41a845fc5d4dee0e0a85ce7a2 --- /dev/null +++ b/parse/train/zQTezqCCtNx/images/2069b39ae42fa04df46516c56eb6f5c866fa2c062665aea8a5d4d0f5c6ee5a17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1fc00eec68be3ce591ecc53f9a8137498dbc7cd504013a8ffef12a08f2a77e9 +size 7738 diff --git a/parse/train/zQTezqCCtNx/images/3161e0ca965a494fa7cf3b5c952055395d4ed45f9124226ba66840200da372e5.jpg b/parse/train/zQTezqCCtNx/images/3161e0ca965a494fa7cf3b5c952055395d4ed45f9124226ba66840200da372e5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c80a2851adae26965fbc7104a4e4beab33aceb79 --- /dev/null +++ b/parse/train/zQTezqCCtNx/images/3161e0ca965a494fa7cf3b5c952055395d4ed45f9124226ba66840200da372e5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ce4f77a53ce91ae4d60216958cd74974a53f269bea8c6667055aa0e6cace44e +size 57884 diff --git a/parse/train/zQTezqCCtNx/images/38259e1e532dd2048869d7d28a4f0777d237805d29cbf3e71af4e4d9ba6d2e76.jpg b/parse/train/zQTezqCCtNx/images/38259e1e532dd2048869d7d28a4f0777d237805d29cbf3e71af4e4d9ba6d2e76.jpg new file mode 100644 index 0000000000000000000000000000000000000000..663fb33bd9c7f603974711ee519612f1acd388a6 --- /dev/null +++ b/parse/train/zQTezqCCtNx/images/38259e1e532dd2048869d7d28a4f0777d237805d29cbf3e71af4e4d9ba6d2e76.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f2f42eba3cc465650f99ad666c014f929c53233fded945b4c4e52cd57e830cf +size 30581 diff --git a/parse/train/zQTezqCCtNx/images/39afbdc581ee2ca49719899aa1da21be423ae16886ebd4b2dfbc7311c4dee48d.jpg b/parse/train/zQTezqCCtNx/images/39afbdc581ee2ca49719899aa1da21be423ae16886ebd4b2dfbc7311c4dee48d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aae87a3e57425d20e3fd7c111c3e3811759470cb --- /dev/null +++ b/parse/train/zQTezqCCtNx/images/39afbdc581ee2ca49719899aa1da21be423ae16886ebd4b2dfbc7311c4dee48d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1c6b29a22347a3d5dd210ef6fe467abdeccc753d63c581a6b046701cf543107 +size 27800 diff --git a/parse/train/zQTezqCCtNx/images/3c92944e3f95d623447c9a867617b3a7fe60c921de5384a7c24f53a5c0e2e37a.jpg b/parse/train/zQTezqCCtNx/images/3c92944e3f95d623447c9a867617b3a7fe60c921de5384a7c24f53a5c0e2e37a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..12437b004ecb188322a19cbbfad581426d3e9d52 --- /dev/null +++ b/parse/train/zQTezqCCtNx/images/3c92944e3f95d623447c9a867617b3a7fe60c921de5384a7c24f53a5c0e2e37a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bd351486ab367b992b663db6585e32339290daabb8999e70e474c796256652f +size 4489 diff --git a/parse/train/zQTezqCCtNx/images/42f9036d854116bd6f8a042c809207d4b2ad68bfd4edd09a976c66fbb02f2495.jpg b/parse/train/zQTezqCCtNx/images/42f9036d854116bd6f8a042c809207d4b2ad68bfd4edd09a976c66fbb02f2495.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ef64917deb2738d1c300dd3a1f0d1dfce21dd973 --- /dev/null +++ b/parse/train/zQTezqCCtNx/images/42f9036d854116bd6f8a042c809207d4b2ad68bfd4edd09a976c66fbb02f2495.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:515e77ae340e086a0fbfcb50fb610c4be0badd8776b33ba73385996b502c14e4 +size 61921 diff --git a/parse/train/zQTezqCCtNx/images/47a833a7a40cca062cb3213a7a87ad8619cece6b069a16874ca987feae04c484.jpg b/parse/train/zQTezqCCtNx/images/47a833a7a40cca062cb3213a7a87ad8619cece6b069a16874ca987feae04c484.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d26d752b672f53ee1a287106002eb142d8d7a9aa --- /dev/null +++ b/parse/train/zQTezqCCtNx/images/47a833a7a40cca062cb3213a7a87ad8619cece6b069a16874ca987feae04c484.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00265abe4605c9c0c699a50da74ca93cc79ab309421981ecf4c6c19fd0b97c0b +size 57732 diff --git a/parse/train/zQTezqCCtNx/images/4d266e5c76d22fdc454bbb8764e0c58f24b0593c8a77fae12041a9cade48a6f1.jpg b/parse/train/zQTezqCCtNx/images/4d266e5c76d22fdc454bbb8764e0c58f24b0593c8a77fae12041a9cade48a6f1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..55bb5fb30a99ebbd23bdc82deecb8ff6081f135f --- /dev/null +++ b/parse/train/zQTezqCCtNx/images/4d266e5c76d22fdc454bbb8764e0c58f24b0593c8a77fae12041a9cade48a6f1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15479cd678911c28338436d51a2fb171dc7b6dc42967657c86a638039287ee25 +size 44478 diff --git a/parse/train/zQTezqCCtNx/images/55a2b9bc8a106b11d71f43773fdf520b7788e11539d5822b8288d1c7b2f9fc80.jpg b/parse/train/zQTezqCCtNx/images/55a2b9bc8a106b11d71f43773fdf520b7788e11539d5822b8288d1c7b2f9fc80.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8762ba2d658efafb74e84a209a3002dd60e95b7a --- /dev/null +++ b/parse/train/zQTezqCCtNx/images/55a2b9bc8a106b11d71f43773fdf520b7788e11539d5822b8288d1c7b2f9fc80.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dbafe11ae3c99b89420a70c2f12a1a2ef1290126a605f090c983991e9d8c88f +size 60728 diff --git a/parse/train/zQTezqCCtNx/images/5712a6274707d13327f1ae2423c3a4f5e1dd18066c5b81eb5d113c19d8caf442.jpg b/parse/train/zQTezqCCtNx/images/5712a6274707d13327f1ae2423c3a4f5e1dd18066c5b81eb5d113c19d8caf442.jpg new file mode 100644 index 0000000000000000000000000000000000000000..486b9558a50d2cc6cc226a09f178d5cbbbc4a0ec --- /dev/null +++ b/parse/train/zQTezqCCtNx/images/5712a6274707d13327f1ae2423c3a4f5e1dd18066c5b81eb5d113c19d8caf442.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcc6634f9662227e2adef30fb1fa4745b02ee1cb7106dd84143891e2b6e6242f +size 78199 diff --git a/parse/train/zQTezqCCtNx/images/5c761eabde17603ca995eaa1a9fd0b3a060d2db74d7c919b80ede289a720fbfa.jpg b/parse/train/zQTezqCCtNx/images/5c761eabde17603ca995eaa1a9fd0b3a060d2db74d7c919b80ede289a720fbfa.jpg new file mode 100644 index 0000000000000000000000000000000000000000..896c565d7a9c4e453181b2bbff104bb2a64be5a5 --- /dev/null +++ b/parse/train/zQTezqCCtNx/images/5c761eabde17603ca995eaa1a9fd0b3a060d2db74d7c919b80ede289a720fbfa.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3449098398dd665f919a30b3b83aabf7e36a995cf84202061b51065abc6805b +size 50591 diff --git a/parse/train/zQTezqCCtNx/images/5f96b6ba5b4de00d48719bdad57f507a6c4a90830c4782e968bbe57a27040312.jpg b/parse/train/zQTezqCCtNx/images/5f96b6ba5b4de00d48719bdad57f507a6c4a90830c4782e968bbe57a27040312.jpg new file mode 100644 index 0000000000000000000000000000000000000000..411f80ef7df82ad2b620eca266135e0e1c762097 --- /dev/null +++ b/parse/train/zQTezqCCtNx/images/5f96b6ba5b4de00d48719bdad57f507a6c4a90830c4782e968bbe57a27040312.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:314bf945867c3fc390e2753c93561ef7569fd691a89ae01fa6f91ac87ce680f1 +size 29479 diff --git a/parse/train/zQTezqCCtNx/images/7060594fb4147b280d8d74c3e18804282953c38f8619898d7baa5c7532a2704b.jpg b/parse/train/zQTezqCCtNx/images/7060594fb4147b280d8d74c3e18804282953c38f8619898d7baa5c7532a2704b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..05f9b47836423340759728db121d535aa22f8832 --- /dev/null +++ b/parse/train/zQTezqCCtNx/images/7060594fb4147b280d8d74c3e18804282953c38f8619898d7baa5c7532a2704b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb7caacc5578f777ce92afcd42e1c24b3e0ceb88f3647097a4fed3bb6f04c317 +size 70787 diff --git a/parse/train/zQTezqCCtNx/images/722211487c523bec2fc6222b2b8af321ef532bfb1ffb411973b8c55d9515ab88.jpg b/parse/train/zQTezqCCtNx/images/722211487c523bec2fc6222b2b8af321ef532bfb1ffb411973b8c55d9515ab88.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0e00aeeb3e0bb8e4bba1794dadd1c49ddc5ab4e2 --- /dev/null +++ b/parse/train/zQTezqCCtNx/images/722211487c523bec2fc6222b2b8af321ef532bfb1ffb411973b8c55d9515ab88.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:511c2b9d36434127782bca70083a4571e9fb05f2d5e82224b14a61480971229d +size 16541 diff --git a/parse/train/zQTezqCCtNx/images/92cb77aeddab75e6e31c1f5554257ddf96158d32e28018fc9723264b64444df0.jpg b/parse/train/zQTezqCCtNx/images/92cb77aeddab75e6e31c1f5554257ddf96158d32e28018fc9723264b64444df0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b0e1c896a1331620a0cd3438d366df9cce696c2a --- /dev/null +++ b/parse/train/zQTezqCCtNx/images/92cb77aeddab75e6e31c1f5554257ddf96158d32e28018fc9723264b64444df0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a714d8500cbb3026e203ffebd88e7269132c6b3ad893074fad1f33b58c6a2f5 +size 153353 diff --git a/parse/train/zQTezqCCtNx/images/93216d57ba7ca1860fef99e905768f93b41ad5bc0729f92cc535f88d8c94c6f6.jpg b/parse/train/zQTezqCCtNx/images/93216d57ba7ca1860fef99e905768f93b41ad5bc0729f92cc535f88d8c94c6f6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..56c578d4796a2b614fa9c55b2a92923d2b0bc8f1 --- /dev/null +++ b/parse/train/zQTezqCCtNx/images/93216d57ba7ca1860fef99e905768f93b41ad5bc0729f92cc535f88d8c94c6f6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15954575ab3ae1e3e9dcce45d3bb541c9c4f189f1f603c20f5e0b4ba5293c0dc +size 49611 diff --git a/parse/train/zQTezqCCtNx/images/a4f8365f1b4ca2a145bd1448a208fe86038fbf69c4a559711028a2f35ebb242d.jpg b/parse/train/zQTezqCCtNx/images/a4f8365f1b4ca2a145bd1448a208fe86038fbf69c4a559711028a2f35ebb242d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e0b040748f7a74e97b96cdd2e7fadffba4269942 --- /dev/null +++ b/parse/train/zQTezqCCtNx/images/a4f8365f1b4ca2a145bd1448a208fe86038fbf69c4a559711028a2f35ebb242d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6718e6abef1231e79a842ee5213639d9170d3940a6c654cfeae67287ceffce54 +size 41423 diff --git a/parse/train/zQTezqCCtNx/images/ac567005521b34a208252b25992d300fb563ee34e09b6b7a0a75ebcebb3d67d5.jpg b/parse/train/zQTezqCCtNx/images/ac567005521b34a208252b25992d300fb563ee34e09b6b7a0a75ebcebb3d67d5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..200ba63a9a23472d21d3fce687c132482b2d234b --- /dev/null +++ b/parse/train/zQTezqCCtNx/images/ac567005521b34a208252b25992d300fb563ee34e09b6b7a0a75ebcebb3d67d5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89567757980c335e193e92a7667b144ec8f6ed5f306f9737048a534a6940682b +size 5426 diff --git a/parse/train/zQTezqCCtNx/images/acb23f0554a4fb7f8d09ec7f39af9e765978add6b159b512fc6774215b3d8395.jpg b/parse/train/zQTezqCCtNx/images/acb23f0554a4fb7f8d09ec7f39af9e765978add6b159b512fc6774215b3d8395.jpg new file mode 100644 index 0000000000000000000000000000000000000000..82b5f029876965bb55e852c39672a0a487704ee0 --- /dev/null +++ b/parse/train/zQTezqCCtNx/images/acb23f0554a4fb7f8d09ec7f39af9e765978add6b159b512fc6774215b3d8395.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fc9c04bf8ca229cadc5a54458bfd374351be61318013ccf28e5fb169c5c933a +size 45472 diff --git a/parse/train/zQTezqCCtNx/images/b74cbee82fe9154dd9f905a8f91c183438e0ca659d8708800b928ccc39a54ed2.jpg b/parse/train/zQTezqCCtNx/images/b74cbee82fe9154dd9f905a8f91c183438e0ca659d8708800b928ccc39a54ed2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..88b8f492e11aaf203c08191de54f0880904d5b11 --- /dev/null +++ b/parse/train/zQTezqCCtNx/images/b74cbee82fe9154dd9f905a8f91c183438e0ca659d8708800b928ccc39a54ed2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5437c4b2eaf09abdcccfe176832e5fc7ab29ed5a8e4828213c9e89982000467b +size 9764 diff --git a/parse/train/zQTezqCCtNx/images/bf5291b3f532a69e821aba349ae4b4d8f1bc665c8e80895809db085e542a92e2.jpg b/parse/train/zQTezqCCtNx/images/bf5291b3f532a69e821aba349ae4b4d8f1bc665c8e80895809db085e542a92e2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..930650073d2848435020a6c855eec3c489d90619 --- /dev/null +++ b/parse/train/zQTezqCCtNx/images/bf5291b3f532a69e821aba349ae4b4d8f1bc665c8e80895809db085e542a92e2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:773bd49a066f326436bdc98a0ff33d1df5c4efe7a824d2444471687cf71aba7d +size 22556 diff --git a/parse/train/zQTezqCCtNx/images/c023f892026703004320d11112db00d47d897c5162c644f187c1d4505744298b.jpg b/parse/train/zQTezqCCtNx/images/c023f892026703004320d11112db00d47d897c5162c644f187c1d4505744298b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0bfb46b041121309a9425426c5f981863b15da20 --- /dev/null +++ b/parse/train/zQTezqCCtNx/images/c023f892026703004320d11112db00d47d897c5162c644f187c1d4505744298b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbdee029b7e9f2ac15add14d9869344408a829f0b2d8b357512c4e4b92c86e62 +size 33970 diff --git a/parse/train/zQTezqCCtNx/images/d109e69b59b4b5a5de06979125a015103e86b6a00d32f1b68d55eda8468cafa2.jpg b/parse/train/zQTezqCCtNx/images/d109e69b59b4b5a5de06979125a015103e86b6a00d32f1b68d55eda8468cafa2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d4a9ca3485a66352b8bdda59477fdac05283e3c5 --- /dev/null +++ b/parse/train/zQTezqCCtNx/images/d109e69b59b4b5a5de06979125a015103e86b6a00d32f1b68d55eda8468cafa2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16615e97c3517aa832279c44015e02a2b580acbc53af08fc65f6c61cfb68a9a0 +size 70171 diff --git a/parse/train/zQTezqCCtNx/images/d5587c2136185ea3ebd67fd62864182f31b1b34cc64c6cbf59efeb4aa14ed761.jpg b/parse/train/zQTezqCCtNx/images/d5587c2136185ea3ebd67fd62864182f31b1b34cc64c6cbf59efeb4aa14ed761.jpg new file mode 100644 index 0000000000000000000000000000000000000000..38579550e4c20151b337210869f5c2bc619d2a2b --- /dev/null +++ b/parse/train/zQTezqCCtNx/images/d5587c2136185ea3ebd67fd62864182f31b1b34cc64c6cbf59efeb4aa14ed761.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd31035d77f94dd72c892b2f2313840232cbeed56f307d11d093c5d197965881 +size 51170 diff --git a/parse/train/zQTezqCCtNx/images/dd51b9b5110904fb75a2c6a0364b2dc04de39638a36fc3a322497daeca8335da.jpg b/parse/train/zQTezqCCtNx/images/dd51b9b5110904fb75a2c6a0364b2dc04de39638a36fc3a322497daeca8335da.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6cd4c2e7e0f512d4c332a42a0fa4f8660948ff79 --- /dev/null +++ b/parse/train/zQTezqCCtNx/images/dd51b9b5110904fb75a2c6a0364b2dc04de39638a36fc3a322497daeca8335da.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ed8699495e2f5a98bb0a064cc2aa236cd6dda879c81ff1ab078899eea244178 +size 68222 diff --git a/parse/train/zQTezqCCtNx/images/e98015c1b627336b3eadaacf1a386a739a10b5f97b2909a2fd940866834491f5.jpg b/parse/train/zQTezqCCtNx/images/e98015c1b627336b3eadaacf1a386a739a10b5f97b2909a2fd940866834491f5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0c1356488c2e31a68c04e82a0f1dae00336f9c9e --- /dev/null +++ b/parse/train/zQTezqCCtNx/images/e98015c1b627336b3eadaacf1a386a739a10b5f97b2909a2fd940866834491f5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65c481445e61e4a279b0f4a75cf074d63be83e495522b3433b472132cfdd8af4 +size 7740 diff --git a/parse/train/zQTezqCCtNx/images/ec3544995ed919576cd371c1b2e1fed573ad3e359b1459115f7d4d690f33bd4b.jpg b/parse/train/zQTezqCCtNx/images/ec3544995ed919576cd371c1b2e1fed573ad3e359b1459115f7d4d690f33bd4b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c86064190d51f9e6f86d1abdb451d4f5083fa6ea --- /dev/null +++ b/parse/train/zQTezqCCtNx/images/ec3544995ed919576cd371c1b2e1fed573ad3e359b1459115f7d4d690f33bd4b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0465625d170e7a38ce8c7578c7989955686be4a81dbc5b233686632322c031e +size 30678 diff --git a/parse/train/zQTezqCCtNx/images/ef4349ff8a0c104e410a229157aaa38ccfeb73c1f9ad00a89f9bc642778f6a61.jpg b/parse/train/zQTezqCCtNx/images/ef4349ff8a0c104e410a229157aaa38ccfeb73c1f9ad00a89f9bc642778f6a61.jpg new file mode 100644 index 0000000000000000000000000000000000000000..44ef020eb7ddabd901297e141a7cbf8f8ea59b43 --- /dev/null +++ b/parse/train/zQTezqCCtNx/images/ef4349ff8a0c104e410a229157aaa38ccfeb73c1f9ad00a89f9bc642778f6a61.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a89bc698d53ad8790d67ad365c52faa52c5545f9bdb07abc6c03f599041feb6f +size 112153 diff --git a/parse/train/zbEupOtJFF/images/02fd16f0dedb0053fc55c0029a2ecafc93203d63623c1b5c8f2a0feda8e12ac0.jpg b/parse/train/zbEupOtJFF/images/02fd16f0dedb0053fc55c0029a2ecafc93203d63623c1b5c8f2a0feda8e12ac0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c08410b652262d1d8a951b8321446e8c5ff9d542 --- /dev/null +++ b/parse/train/zbEupOtJFF/images/02fd16f0dedb0053fc55c0029a2ecafc93203d63623c1b5c8f2a0feda8e12ac0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3790a84e8342856d43ae1e07b591302ffdd6c36c01ece35c85cecbdfb1127941 +size 52752 diff --git a/parse/train/zbEupOtJFF/images/03ba5522c7dcf83bdbf6d98b1659d59df4126495639ab11d138c5ee051b6e3b8.jpg b/parse/train/zbEupOtJFF/images/03ba5522c7dcf83bdbf6d98b1659d59df4126495639ab11d138c5ee051b6e3b8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ebaf1b7a5fff1379db269585a3da5edda4fbf43 --- /dev/null +++ b/parse/train/zbEupOtJFF/images/03ba5522c7dcf83bdbf6d98b1659d59df4126495639ab11d138c5ee051b6e3b8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebc4d21cfebec1f27c6f1506388db0cb7317e99924c4b29b828c82b382ea7942 +size 323725 diff --git a/parse/train/zbEupOtJFF/images/07121fe456bb975fbd8dd005cc5b2247ab41d12f70cb4547f135cb87369cb6c2.jpg b/parse/train/zbEupOtJFF/images/07121fe456bb975fbd8dd005cc5b2247ab41d12f70cb4547f135cb87369cb6c2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3cda1b9dc5e1ee1f3386ce9365f800ad4d99f701 --- /dev/null +++ b/parse/train/zbEupOtJFF/images/07121fe456bb975fbd8dd005cc5b2247ab41d12f70cb4547f135cb87369cb6c2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:836d9122daefbe6537ca068309d0506e764fe15c9c1fc72f1b56661879be540b +size 33959 diff --git a/parse/train/zbEupOtJFF/images/07b1aff37a7df6346b7740bcac468e52eb99b81f440fb7679d338367b83f8c33.jpg b/parse/train/zbEupOtJFF/images/07b1aff37a7df6346b7740bcac468e52eb99b81f440fb7679d338367b83f8c33.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2159b770fd22c0e900aa28a23c12761bb9f3bb19 --- /dev/null +++ b/parse/train/zbEupOtJFF/images/07b1aff37a7df6346b7740bcac468e52eb99b81f440fb7679d338367b83f8c33.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d74024ce7abb1a87dcc6e80d380a3535527e5042106574f2a9214ddbadbbed4f +size 20865 diff --git a/parse/train/zbEupOtJFF/images/35e808661dda5786cd7880b88d6d396cde2be6ca8eef8c5353011cb2352c33c9.jpg b/parse/train/zbEupOtJFF/images/35e808661dda5786cd7880b88d6d396cde2be6ca8eef8c5353011cb2352c33c9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..44e99c05d236160564f943f00740ce6fcde3ab2f --- /dev/null +++ b/parse/train/zbEupOtJFF/images/35e808661dda5786cd7880b88d6d396cde2be6ca8eef8c5353011cb2352c33c9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dd8d1e80d071f153c2456dd51c83b86f8135de5a7530a8e49805a63a938266 +size 102275 diff --git a/parse/train/zbEupOtJFF/images/451a1032afcd36f0e4b21c77cdf97ef75326d437980b248a5c0ca98b2670d6f6.jpg b/parse/train/zbEupOtJFF/images/451a1032afcd36f0e4b21c77cdf97ef75326d437980b248a5c0ca98b2670d6f6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..54da61e53212588f6b46912aa7db08412cbe3bd9 --- /dev/null +++ b/parse/train/zbEupOtJFF/images/451a1032afcd36f0e4b21c77cdf97ef75326d437980b248a5c0ca98b2670d6f6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1291e66dbbf36d78d48e4dc2d874b4ee944e1597d79f170884e8607f996ac4dd +size 173127 diff --git a/parse/train/zbEupOtJFF/images/47fb7461136abf8c8398c9a43b79372e38dd7831a48298a525ea4d4dabac3bcb.jpg b/parse/train/zbEupOtJFF/images/47fb7461136abf8c8398c9a43b79372e38dd7831a48298a525ea4d4dabac3bcb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..193645d792285cfffadecfccc501968820131d26 --- /dev/null +++ b/parse/train/zbEupOtJFF/images/47fb7461136abf8c8398c9a43b79372e38dd7831a48298a525ea4d4dabac3bcb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8aa1541cbb261869406230b095079ff8c7c13693241a4dafe072ebb93e8ca3ed +size 91803 diff --git a/parse/train/zbEupOtJFF/images/4d948c9890abec1e08a2b634489e3d3924b541c8f1d0cc8c54c2087f23beea59.jpg b/parse/train/zbEupOtJFF/images/4d948c9890abec1e08a2b634489e3d3924b541c8f1d0cc8c54c2087f23beea59.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f0ee63cb0cb2a496850de8255d2a9c471df82ebf --- /dev/null +++ b/parse/train/zbEupOtJFF/images/4d948c9890abec1e08a2b634489e3d3924b541c8f1d0cc8c54c2087f23beea59.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:451e2ec2f5cd658f4127d3b45e054baf78805abb15d0b774f43503c136cd860b +size 7061 diff --git a/parse/train/zbEupOtJFF/images/5194aced9dfc73bda2ea53c7a3fe7d6975a441904adcaafb96f4c763305e59cb.jpg b/parse/train/zbEupOtJFF/images/5194aced9dfc73bda2ea53c7a3fe7d6975a441904adcaafb96f4c763305e59cb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e589c384adee58fff7d613c2e42506b452aa0975 --- /dev/null +++ b/parse/train/zbEupOtJFF/images/5194aced9dfc73bda2ea53c7a3fe7d6975a441904adcaafb96f4c763305e59cb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a6eb27835f5bde4b7fbfcd855eb0e598c204f318574c16578a983ea77417113 +size 45615 diff --git a/parse/train/zbEupOtJFF/images/54a9db239d5963c947e3a2cd15f213da3b18209b52079c326778ba21d2426ae4.jpg b/parse/train/zbEupOtJFF/images/54a9db239d5963c947e3a2cd15f213da3b18209b52079c326778ba21d2426ae4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ce5d3a9fcf16664070be468da6254a7fda78b741 --- /dev/null +++ b/parse/train/zbEupOtJFF/images/54a9db239d5963c947e3a2cd15f213da3b18209b52079c326778ba21d2426ae4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a99e6eccbe95907ede774fb10e3291e699ae2b1862adf3010cf380ab2c043699 +size 46698 diff --git a/parse/train/zbEupOtJFF/images/60b1423408618b539c886fb4a8aba40fa2369833151617cb9105b3c2f7dd91a0.jpg b/parse/train/zbEupOtJFF/images/60b1423408618b539c886fb4a8aba40fa2369833151617cb9105b3c2f7dd91a0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3587e77707e8fd1b3fbef08d091ec75d7a758d54 --- /dev/null +++ b/parse/train/zbEupOtJFF/images/60b1423408618b539c886fb4a8aba40fa2369833151617cb9105b3c2f7dd91a0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:460894649e8e7d19a853e6b6d5f2826f9719d5b7f5541bc0c979772e28d3e516 +size 31708 diff --git a/parse/train/zbEupOtJFF/images/6a7741df1206400333813bc862269c028f640b5dc7c529ce64f0acc2051c3f95.jpg b/parse/train/zbEupOtJFF/images/6a7741df1206400333813bc862269c028f640b5dc7c529ce64f0acc2051c3f95.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9d62abd9c976149953aadd979d8f86b452b38dda --- /dev/null +++ b/parse/train/zbEupOtJFF/images/6a7741df1206400333813bc862269c028f640b5dc7c529ce64f0acc2051c3f95.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5514604509531e70b58a1d4ef7c2c763c858290654ade211108ffe7b1b8b86dd +size 19357 diff --git a/parse/train/zbEupOtJFF/images/84e71a0fbb624a3c4a29129ffd3c4970caa55a8e04f5627c88cbc2fa0003d4c9.jpg b/parse/train/zbEupOtJFF/images/84e71a0fbb624a3c4a29129ffd3c4970caa55a8e04f5627c88cbc2fa0003d4c9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..96b6708f5d50ce2a3447bb3b7ee56e266a885c34 --- /dev/null +++ b/parse/train/zbEupOtJFF/images/84e71a0fbb624a3c4a29129ffd3c4970caa55a8e04f5627c88cbc2fa0003d4c9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aec52bf3553f45cd9c5d5a5e470f76094408bb8448a6f1f87d2b340d738257b +size 44202 diff --git a/parse/train/zbEupOtJFF/images/88157e0bb24612850605b10463cda56c75d13ad3590802eec42ed55d4f7072b7.jpg b/parse/train/zbEupOtJFF/images/88157e0bb24612850605b10463cda56c75d13ad3590802eec42ed55d4f7072b7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..556bbfb7d280267f1d6c739a073dc7925c49fc4a --- /dev/null +++ b/parse/train/zbEupOtJFF/images/88157e0bb24612850605b10463cda56c75d13ad3590802eec42ed55d4f7072b7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9866256209e1ac9975a7b340febae6d2aa8a875fa512c4f775a47813bb18154 +size 62337 diff --git a/parse/train/zbEupOtJFF/images/9f9bec02fddf1be925170f504d7f07bb0879b86bf73fbe6c09299d8bf7e8d2e6.jpg b/parse/train/zbEupOtJFF/images/9f9bec02fddf1be925170f504d7f07bb0879b86bf73fbe6c09299d8bf7e8d2e6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7633dd3d6c5e8caf9953c197df2ceba6e42bfc1b --- /dev/null +++ b/parse/train/zbEupOtJFF/images/9f9bec02fddf1be925170f504d7f07bb0879b86bf73fbe6c09299d8bf7e8d2e6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1df1949021bf8f0a7ba017279fdb385f6efe4e26e584fa439675a2e3940fd100 +size 92998 diff --git a/parse/train/zbEupOtJFF/images/bd6b34b81d8c9354cc4603833cb48d6a2ad2a61afb3b7a5dd0ac4cb0b2365da3.jpg b/parse/train/zbEupOtJFF/images/bd6b34b81d8c9354cc4603833cb48d6a2ad2a61afb3b7a5dd0ac4cb0b2365da3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..20e6fa09e772446260ed63a929dadb17af6e1639 --- /dev/null +++ b/parse/train/zbEupOtJFF/images/bd6b34b81d8c9354cc4603833cb48d6a2ad2a61afb3b7a5dd0ac4cb0b2365da3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f936187458fb94996142bb929e61434fd036d24dcb7e2d9275e8091bdb6c8492 +size 103141 diff --git a/parse/train/zbEupOtJFF/images/c513fe8d60f6af6b89702dab561694cda55bc30ca0ae2e91da0601111e359ce1.jpg b/parse/train/zbEupOtJFF/images/c513fe8d60f6af6b89702dab561694cda55bc30ca0ae2e91da0601111e359ce1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b39b59f5c412fc85f459b994b8d8195d9fec26a7 --- /dev/null +++ b/parse/train/zbEupOtJFF/images/c513fe8d60f6af6b89702dab561694cda55bc30ca0ae2e91da0601111e359ce1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b675e7f27b96ea9250716138347968f8254da79e6ac521e0ee4801423c47b3f4 +size 145660 diff --git a/parse/train/zbEupOtJFF/images/cff38999ee79985ab76f48948fcfd76a315812ed0f1e2aa2494ad55e4f30a882.jpg b/parse/train/zbEupOtJFF/images/cff38999ee79985ab76f48948fcfd76a315812ed0f1e2aa2494ad55e4f30a882.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5d27e5f54c2cef3c3b0947f58a19033da21196e3 --- /dev/null +++ b/parse/train/zbEupOtJFF/images/cff38999ee79985ab76f48948fcfd76a315812ed0f1e2aa2494ad55e4f30a882.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3095c9e15b57b753dde2d1d117bc91e130d66198bfac50a38482a61c0835c68 +size 51210 diff --git a/parse/train/zbEupOtJFF/images/d100412d48f92d363f175e7c6c1f7eec5eec6229d75e3372e63b491645c346b2.jpg b/parse/train/zbEupOtJFF/images/d100412d48f92d363f175e7c6c1f7eec5eec6229d75e3372e63b491645c346b2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..803dc097562822091de26d364ca0080be2aed0d8 --- /dev/null +++ b/parse/train/zbEupOtJFF/images/d100412d48f92d363f175e7c6c1f7eec5eec6229d75e3372e63b491645c346b2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5a31b8530f889f3d7f4a11ca1a9616fb898b1482b83f876789791aa75113776 +size 6103 diff --git a/parse/train/zbEupOtJFF/images/d64e851ccfd50809d3263248bbf0a2843fcb50fddd88c10ad5e4542378997fad.jpg b/parse/train/zbEupOtJFF/images/d64e851ccfd50809d3263248bbf0a2843fcb50fddd88c10ad5e4542378997fad.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ce563be2123f829dc4bee76aba109d6f1b387c5e --- /dev/null +++ b/parse/train/zbEupOtJFF/images/d64e851ccfd50809d3263248bbf0a2843fcb50fddd88c10ad5e4542378997fad.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30dcf04ef9e235c575a7fb6a9318cad66f2afc3c58e7b4f483d3649fcc4194f1 +size 61707 diff --git a/parse/train/zbEupOtJFF/images/ddac8a1449bc953aedc70707eede3a45f3eb5f2c49b06af80550150814f068fe.jpg b/parse/train/zbEupOtJFF/images/ddac8a1449bc953aedc70707eede3a45f3eb5f2c49b06af80550150814f068fe.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f4f43e4c8d333bc9f267a5ad018feec95dc1d89f --- /dev/null +++ b/parse/train/zbEupOtJFF/images/ddac8a1449bc953aedc70707eede3a45f3eb5f2c49b06af80550150814f068fe.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50d762e1dff6d738561048fe1a13edbd1272dc6e1389d81021f9fe9e2c9c8703 +size 86077 diff --git a/parse/train/zbEupOtJFF/images/e596ac11e5ef00289444e4750fe4f90004f6818481661de931311b0f825fd368.jpg b/parse/train/zbEupOtJFF/images/e596ac11e5ef00289444e4750fe4f90004f6818481661de931311b0f825fd368.jpg new file mode 100644 index 0000000000000000000000000000000000000000..34ae16bd770e001c0f2b5a841abfbbb90aadc67f --- /dev/null +++ b/parse/train/zbEupOtJFF/images/e596ac11e5ef00289444e4750fe4f90004f6818481661de931311b0f825fd368.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:791a3707dda531a48e9c5503ffec07b67fd62f4449092f17833a4265c2335730 +size 47811 diff --git a/parse/train/zbEupOtJFF/images/e6b9d0c136a8732c39f369d8a700ac6f7761943e3d3abb842676cd44eb87dbc4.jpg b/parse/train/zbEupOtJFF/images/e6b9d0c136a8732c39f369d8a700ac6f7761943e3d3abb842676cd44eb87dbc4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..34ee32d434e693660e0411ad9233574984fa5230 --- /dev/null +++ b/parse/train/zbEupOtJFF/images/e6b9d0c136a8732c39f369d8a700ac6f7761943e3d3abb842676cd44eb87dbc4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06f670c7dcbc3b44dfc869966f90293c5a5bb5e5f776aa6e0951c2a36e33e42b +size 43245 diff --git a/parse/train/zbEupOtJFF/images/e98996ab0b60dc017a6bfe2bdcf366fddffcbab91e746e1a2ec02e60b161306e.jpg b/parse/train/zbEupOtJFF/images/e98996ab0b60dc017a6bfe2bdcf366fddffcbab91e746e1a2ec02e60b161306e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9b22237f14bfde18a98158273c6aa296a4fffb2b --- /dev/null +++ b/parse/train/zbEupOtJFF/images/e98996ab0b60dc017a6bfe2bdcf366fddffcbab91e746e1a2ec02e60b161306e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a19486c055cbada57f467951d8c274602b9afaa1c337cdd5daa8025d8921ae3 +size 87779